function parseUri(str){var o=parseUri.options,m=o.parser[o.strictMode?"strict":"loose"].exec(str),uri={},i=14;while(i--)uri[o.key[i]]=m[i]||"";uri[o.q.name]={};uri[o.key[12]].replace(o.q.parser,function($0,$1,$2){if($1)uri[o.q.name][$1]=$2;});return uri;};parseUri.options={strictMode:false,key:["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],q:{name:"queryKey",parser:/(?:^|&)([^&=]*)=?([^&]*)/g},parser:{strict:/^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,loose:/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/}};(function($){$.fn.jcarousel=function(o){return this.each(function(){new $jc(this,o);});};var defaults={vertical:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:'normal',easing:'swing',auto:0,wrap:null,initCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null,itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,buttonNextHTML:'<div></div>',buttonPrevHTML:'<div></div>',buttonNextEvent:'click',buttonPrevEvent:'click',buttonNextCallback:null,buttonPrevCallback:null};$.jcarousel=function(e,o){this.options=$.extend({},defaults,o||{});this.locked=false;this.container=null;this.clip=null;this.list=null;this.buttonNext=null;this.buttonPrev=null;this.wh=!this.options.vertical?'width':'height';this.lt=!this.options.vertical?'left':'top';var skin='',split=e.className.split(' ');for(var i=0;i<split.length;i++){if(split[i].indexOf('jcarousel-skin')!=-1){$(e).removeClass(split[i]);var skin=split[i];break;}}
if(e.nodeName=='UL'||e.nodeName=='OL'){this.list=$(e);this.container=this.list.parent();if(this.container.hasClass('jcarousel-clip')){if(!this.container.parent().hasClass('jcarousel-container'))
this.container=this.container.wrap('<div></div>');this.container=this.container.parent();}else if(!this.container.hasClass('jcarousel-container'))
this.container=this.list.wrap('<div></div>').parent();}else{this.container=$(e);this.list=$(e).find('>ul,>ol,div>ul,div>ol');}
if(skin!=''&&this.container.parent()[0].className.indexOf('jcarousel-skin')==-1)
this.container.wrap('<div class=" '+skin+'"></div>');this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass('jcarousel-clip'))
this.clip=this.list.wrap('<div></div>').parent();this.buttonPrev=$('.jcarousel-prev',this.container);if(this.buttonPrev.size()==0&&this.options.buttonPrevHTML!=null)
this.buttonPrev=this.clip.before(this.options.buttonPrevHTML).prev();this.buttonPrev.addClass(this.className('jcarousel-prev'));this.buttonNext=$('.jcarousel-next',this.container);if(this.buttonNext.size()==0&&this.options.buttonNextHTML!=null)
this.buttonNext=this.clip.before(this.options.buttonNextHTML).prev();this.buttonNext.addClass(this.className('jcarousel-next'));this.clip.addClass(this.className('jcarousel-clip'));this.list.addClass(this.className('jcarousel-list'));this.container.addClass(this.className('jcarousel-container'));var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var li=this.list.children('li');var self=this;if(li.size()>0){var wh=0,i=this.options.offset;li.each(function(){self.format(this,i++);wh+=self.dimension(this,di);});this.list.css(this.wh,wh+'px');if(!o||o.size===undefined)
this.options.size=li.size();}
this.container.css('display','block');this.buttonNext.css('display','block');this.buttonPrev.css('display','block');this.funcNext=function(){self.next();return false;};this.funcPrev=function(){self.prev();return false;};this.funcResize=function(){self.reload();};if(this.options.initCallback!=null)
this.options.initCallback(this,'init');if($.browser.safari){this.buttons(false,false);$(window).bind('load',function(){self.setup();});}else
this.setup();};var $jc=$.jcarousel;$jc.fn=$jc.prototype={jcarousel:'0.2.3'};$jc.fn.extend=$jc.extend=$.extend;$jc.fn.extend({setup:function(){this.first=null;this.last=null;this.prevFirst=null;this.prevLast=null;this.animating=false;this.timer=null;this.tail=null;this.inTail=false;if(this.locked)
return;this.list.css(this.lt,this.pos(this.options.offset)+'px');var p=this.pos(this.options.start);this.prevFirst=this.prevLast=null;this.animate(p,false);$(window).unbind('resize',this.funcResize).bind('resize',this.funcResize);},reset:function(){this.list.empty();this.list.css(this.lt,'0px');this.list.css(this.wh,'10px');if(this.options.initCallback!=null)
this.options.initCallback(this,'reset');this.setup();},reload:function(){if(this.tail!=null&&this.inTail)
this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=false;if(this.options.reloadCallback!=null)
this.options.reloadCallback(this);if(this.options.visible!=null){var self=this;var di=Math.ceil(this.clipping()/this.options.visible),wh=0,lt=0;$('li',this.list).each(function(i){wh+=self.dimension(this,di);if(i+1<self.first)
lt=wh;});this.list.css(this.wh,wh+'px');this.list.css(this.lt,-lt+'px');}
this.scroll(this.first,false);},lock:function(){this.locked=true;this.buttons();},unlock:function(){this.locked=false;this.buttons();},size:function(s){if(s!=undefined){this.options.size=s;if(!this.locked)
this.buttons();}
return this.options.size;},has:function(i,i2){if(i2==undefined||!i2)
i2=i;if(this.options.size!==null&&i2>this.options.size)
i2=this.options.size;for(var j=i;j<=i2;j++){var e=this.get(j);if(!e.length||e.hasClass('jcarousel-item-placeholder'))
return false;}
return true;},get:function(i){return $('.jcarousel-item-'+i,this.list);},add:function(i,s){var e=this.get(i),old=0,add=0;if(e.length==0){var c,e=this.create(i),j=$jc.intval(i);while(c=this.get(--j)){if(j<=0||c.length){j<=0?this.list.prepend(e):c.after(e);break;}}}else
old=this.dimension(e);e.removeClass(this.className('jcarousel-item-placeholder'));typeof s=='string'?e.html(s):e.empty().append(s);var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var wh=this.dimension(e,di)-old;if(i>0&&i<this.first)
this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-wh+'px');this.list.css(this.wh,$jc.intval(this.list.css(this.wh))+wh+'px');return e;},remove:function(i){var e=this.get(i);if(!e.length||(i>=this.first&&i<=this.last))
return;var d=this.dimension(e);if(i<this.first)
this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+d+'px');e.remove();this.list.css(this.wh,$jc.intval(this.list.css(this.wh))-d+'px');},next:function(){this.stopAuto();if(this.tail!=null&&!this.inTail)
this.scrollTail(false);else
this.scroll(((this.options.wrap=='both'||this.options.wrap=='last')&&this.options.size!=null&&this.last==this.options.size)?1:this.first+this.options.scroll);},prev:function(){this.stopAuto();if(this.tail!=null&&this.inTail)
this.scrollTail(true);else
this.scroll(((this.options.wrap=='both'||this.options.wrap=='first')&&this.options.size!=null&&this.first==1)?this.options.size:this.first-this.options.scroll);},scrollTail:function(b){if(this.locked||this.animating||!this.tail)
return;var pos=$jc.intval(this.list.css(this.lt));!b?pos-=this.tail:pos+=this.tail;this.inTail=!b;this.prevFirst=this.first;this.prevLast=this.last;this.animate(pos);},scroll:function(i,a){if(this.locked||this.animating)
return;this.animate(this.pos(i),a);},pos:function(i){if(this.locked||this.animating)
return;i=$jc.intval(i);if(this.options.wrap!='circular')
i=i<1?1:(this.options.size&&i>this.options.size?this.options.size:i);var back=this.first>i;var pos=$jc.intval(this.list.css(this.lt));var f=this.options.wrap!='circular'&&this.first<=1?1:this.first;var c=back?this.get(f):this.get(this.last);var j=back?f:f-1;var e=null,l=0,p=false,d=0;while(back?--j>=i:++j<i){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c[back?'before':'after'](e);}
c=e;d=this.dimension(e);if(p)
l+=d;if(this.first!=null&&(this.options.wrap=='circular'||(j>=1&&(this.options.size==null||j<=this.options.size))))
pos=back?pos+d:pos-d;}
var clipping=this.clipping();var cache=[];var visible=0,j=i,v=0;var c=this.get(i-1);while(++visible){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c.length==0?this.list.prepend(e):c[back?'before':'after'](e);}
c=e;var d=this.dimension(e);if(d==0){alert('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...');return 0;}
if(this.options.wrap!='circular'&&this.options.size!==null&&j>this.options.size)
cache.push(e);else if(p)
l+=d;v+=d;if(v>=clipping)
break;j++;}
for(var x=0;x<cache.length;x++)
cache[x].remove();if(l>0){this.list.css(this.wh,this.dimension(this.list)+l+'px');if(back){pos-=l;this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-l+'px');}}
var last=i+visible-1;if(this.options.wrap!='circular'&&this.options.size&&last>this.options.size)
last=this.options.size;if(j>last){visible=0,j=last,v=0;while(++visible){var e=this.get(j--);if(!e.length)
break;v+=this.dimension(e);if(v>=clipping)
break;}}
var first=last-visible+1;if(this.options.wrap!='circular'&&first<1)
first=1;if(this.inTail&&back){pos+=this.tail;this.inTail=false;}
this.tail=null;if(this.options.wrap!='circular'&&last==this.options.size&&(last-visible+1)>=1){var m=$jc.margin(this.get(last),!this.options.vertical?'marginRight':'marginBottom');if((v-m)>clipping)
this.tail=v-clipping-m;}
while(i-->first)
pos+=this.dimension(this.get(i));this.prevFirst=this.first;this.prevLast=this.last;this.first=first;this.last=last;return pos;},animate:function(p,a){if(this.locked||this.animating)
return;this.animating=true;var self=this;var scrolled=function(){self.animating=false;if(p==0)
self.list.css(self.lt,0);if(self.options.wrap=='both'||self.options.wrap=='last'||self.options.size==null||self.last<self.options.size)
self.startAuto();self.buttons();self.notify('onAfterAnimation');};this.notify('onBeforeAnimation');if(!this.options.animation||a==false){this.list.css(this.lt,p+'px');scrolled();}else{var o=!this.options.vertical?{'left':p}:{'top':p};this.list.animate(o,this.options.animation,this.options.easing,scrolled);}},startAuto:function(s){if(s!=undefined)
this.options.auto=s;if(this.options.auto==0)
return this.stopAuto();if(this.timer!=null)
return;var self=this;this.timer=setTimeout(function(){self.next();},this.options.auto*1000);},stopAuto:function(){if(this.timer==null)
return;clearTimeout(this.timer);this.timer=null;},buttons:function(n,p){if(n==undefined||n==null){var n=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='first')||this.options.size==null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap=='first')&&this.options.size!=null&&this.last>=this.options.size)
n=this.tail!=null&&!this.inTail;}
if(p==undefined||p==null){var p=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='last')||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=='last')&&this.options.size!=null&&this.first==1)
p=this.tail!=null&&this.inTail;}
var self=this;this.buttonNext[n?'bind':'unbind'](this.options.buttonNextEvent,this.funcNext)[n?'removeClass':'addClass'](this.className('jcarousel-next-disabled')).attr('disabled',n?false:true);this.buttonPrev[p?'bind':'unbind'](this.options.buttonPrevEvent,this.funcPrev)[p?'removeClass':'addClass'](this.className('jcarousel-prev-disabled')).attr('disabled',p?false:true);if(this.buttonNext.length>0&&(this.buttonNext[0].jcarouselstate==undefined||this.buttonNext[0].jcarouselstate!=n)&&this.options.buttonNextCallback!=null){this.buttonNext.each(function(){self.options.buttonNextCallback(self,this,n);});this.buttonNext[0].jcarouselstate=n;}
if(this.buttonPrev.length>0&&(this.buttonPrev[0].jcarouselstate==undefined||this.buttonPrev[0].jcarouselstate!=p)&&this.options.buttonPrevCallback!=null){this.buttonPrev.each(function(){self.options.buttonPrevCallback(self,this,p);});this.buttonPrev[0].jcarouselstate=p;}},notify:function(evt){var state=this.prevFirst==null?'init':(this.prevFirst<this.first?'next':'prev');this.callback('itemLoadCallback',evt,state);if(this.prevFirst!==this.first){this.callback('itemFirstInCallback',evt,state,this.first);this.callback('itemFirstOutCallback',evt,state,this.prevFirst);}
if(this.prevLast!==this.last){this.callback('itemLastInCallback',evt,state,this.last);this.callback('itemLastOutCallback',evt,state,this.prevLast);}
this.callback('itemVisibleInCallback',evt,state,this.first,this.last,this.prevFirst,this.prevLast);this.callback('itemVisibleOutCallback',evt,state,this.prevFirst,this.prevLast,this.first,this.last);},callback:function(cb,evt,state,i1,i2,i3,i4){if(this.options[cb]==undefined||(typeof this.options[cb]!='object'&&evt!='onAfterAnimation'))
return;var callback=typeof this.options[cb]=='object'?this.options[cb][evt]:this.options[cb];if(!$.isFunction(callback))
return;var self=this;if(i1===undefined)
callback(self,state,evt);else if(i2===undefined)
this.get(i1).each(function(){callback(self,this,i1,state,evt);});else{for(var i=i1;i<=i2;i++)
if(i!==null&&!(i>=i3&&i<=i4))
this.get(i).each(function(){callback(self,this,i,state,evt);});}},create:function(i){return this.format('<li></li>',i);},format:function(e,i){var $e=$(e).addClass(this.className('jcarousel-item')).addClass(this.className('jcarousel-item-'+i));$e.attr('jcarouselindex',i);return $e;},className:function(c){return c+' '+c+(!this.options.vertical?'-horizontal':'-vertical');},dimension:function(e,d){var el=e.jquery!=undefined?e[0]:e;var old=!this.options.vertical?el.offsetWidth+$jc.margin(el,'marginLeft')+$jc.margin(el,'marginRight'):el.offsetHeight+$jc.margin(el,'marginTop')+$jc.margin(el,'marginBottom');if(d==undefined||old==d)
return old;var w=!this.options.vertical?d-$jc.margin(el,'marginLeft')-$jc.margin(el,'marginRight'):d-$jc.margin(el,'marginTop')-$jc.margin(el,'marginBottom');$(el).css(this.wh,w+'px');return this.dimension(el);},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-$jc.intval(this.clip.css('borderLeftWidth'))-$jc.intval(this.clip.css('borderRightWidth')):this.clip[0].offsetHeight-$jc.intval(this.clip.css('borderTopWidth'))-$jc.intval(this.clip.css('borderBottomWidth'));},index:function(i,s){if(s==undefined)
s=this.options.size;return Math.round((((i-1)/s)-Math.floor((i-1)/s))*s)+1;}});$jc.extend({defaults:function(d){return $.extend(defaults,d||{});},margin:function(e,p){if(!e)
return 0;var el=e.jquery!=undefined?e[0]:e;if(p=='marginRight'&&$.browser.safari){var old={'display':'block','float':'none','width':'auto'},oWidth,oWidth2;$.swap(el,old,function(){oWidth=el.offsetWidth;});old['marginRight']=0;$.swap(el,old,function(){oWidth2=el.offsetWidth;});return oWidth2-oWidth;}
return $jc.intval($.css(el,p));},intval:function(v){v=parseInt(v);return isNaN(v)?0:v;}});})(jQuery);Number.prototype.pxToEm=String.prototype.pxToEm=function(settings){settings=jQuery.extend({scope:'body',reverse:false},settings);var pxVal=(this=='')?0:parseFloat(this);var scopeVal;var getWindowWidth=function(){var de=document.documentElement;return self.innerWidth||(de&&de.clientWidth)||document.body.clientWidth};if(settings.scope=='body'&&$.browser.msie&&(parseFloat($('body').css('font-size'))/getWindowWidth()).toFixed(1)>0.0){var calcFontSize=function(){return(parseFloat($('body').css('font-size'))/getWindowWidth()).toFixed(3)*16};scopeVal=calcFontSize()}else{scopeVal=parseFloat(jQuery(settings.scope).css("font-size"))};var result=(settings.reverse==true)?(pxVal*scopeVal).toFixed(2)+'px':(pxVal/scopeVal).toFixed(2)+'em';return result};$.fn.equalHeights=function(px){$(this).each(function(){var currentTallest=0;$(this).children().each(function(i){if($(this).height()>currentTallest){currentTallest=$(this).height()}});if(!px||!Number.prototype.pxToEm)currentTallest=currentTallest.pxToEm();if($.browser.msie&&$.browser.version==6.0){$(this).children().css({'height':currentTallest})}$(this).children().css({'min-height':currentTallest})});return this};(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);(function(c){function r(b,d){d=d==="x"?m.width():m.height();return typeof b==="string"?Math.round(b.match(/%/)?d/100*parseInt(b,10):parseInt(b,10)):b}function M(b){b=c.isFunction(b)?b.call(i):b;return a.photo||b.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i)}function Y(){for(var b in a)if(c.isFunction(a[b])&&b.substring(0,2)!=="on")a[b]=a[b].call(i);a.rel=a.rel||i.rel;a.href=a.href||i.href;a.title=a.title||i.title}function Z(b){i=b;a=c(i).data(q);Y();if(a.rel&&a.rel!=="nofollow"){g=c(".cboxElement").filter(function(){return(c(this).data(q).rel||this.rel)===a.rel});j=g.index(i);if(j<0){g=g.add(i);j=g.length-1}}else{g=c(i);j=0}if(!B){C=B=n;N=i;N.blur();c(document).bind("keydown.cbox_close",function(d){if(d.keyCode===27){d.preventDefault();e.close()}}).bind("keydown.cbox_arrows",function(d){if(g.length>1)if(d.keyCode===37){d.preventDefault();D.click()}else if(d.keyCode===39){d.preventDefault();E.click()}});a.overlayClose&&s.css({cursor:"pointer"}).one("click",e.close);c.event.trigger(aa);a.onOpen&&a.onOpen.call(i);s.css({opacity:a.opacity}).show();a.w=r(a.initialWidth,"x");a.h=r(a.initialHeight,"y");e.position(0);O&&m.bind("resize.cboxie6 scroll.cboxie6",function(){s.css({width:m.width(),height:m.height(),top:m.scrollTop(),left:m.scrollLeft()})}).trigger("scroll.cboxie6")}P.add(D).add(E).add(t).add(Q).hide();R.html(a.close).show();e.slideshow();e.load()}var q="colorbox",F="hover",n=true,e,x=!c.support.opacity,O=x&&!window.XMLHttpRequest,aa="cbox_open",H="cbox_load",S="cbox_complete",T="resize.cbox_resize",s,k,u,p,U,V,W,X,g,m,l,I,J,K,Q,P,t,E,D,R,y,z,v,w,i,N,j,a,B,C,$={transition:"elastic",speed:350,width:false,height:false,innerWidth:false,innerHeight:false,initialWidth:"400",initialHeight:"400",maxWidth:false,maxHeight:false,scalePhotos:n,scrolling:n,inline:false,html:false,iframe:false,photo:false,href:false,title:false,rel:false,opacity:0.9,preloading:n,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:false,overlayClose:n,slideshow:false,slideshowAuto:n,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:false,onLoad:false,onComplete:false,onCleanup:false,onClosed:false};e=c.fn.colorbox=function(b,d){var h=this;if(!h.length)if(h.selector===""){h=c("<a/>");b.open=n}else return this;h.each(function(){var f=c.extend({},c(this).data(q)?c(this).data(q):$,b);c(this).data(q,f).addClass("cboxElement");if(d)c(this).data(q).onComplete=d});b&&b.open&&Z(h);return this};e.init=function(){function b(d){return c('<div id="cbox'+d+'"/>')}m=c(window);k=c('<div id="colorbox"/>');s=b("Overlay").hide();u=b("Wrapper");p=b("Content").append(l=b("LoadedContent").css({width:0,height:0}),J=b("LoadingOverlay"),K=b("LoadingGraphic"),Q=b("Title"),P=b("Current"),t=b("Slideshow"),E=b("Next"),D=b("Previous"),R=b("Close"));u.append(c("<div/>").append(b("TopLeft"),U=b("TopCenter"),b("TopRight")),c("<div/>").append(V=b("MiddleLeft"),p,W=b("MiddleRight")),c("<div/>").append(b("BottomLeft"),X=b("BottomCenter"),b("BottomRight"))).children().children().css({"float":"left"});I=c("<div style='position:absolute; top:0; left:0; width:9999px; height:0;'/>");c("body").prepend(s,k.append(u,I));if(x){k.addClass("cboxIE");O&&s.css("position","absolute")}p.children().bind("mouseover mouseout",function(){c(this).toggleClass(F)}).addClass(F);y=U.height()+X.height()+p.outerHeight(n)-p.height();z=V.width()+W.width()+p.outerWidth(n)-p.width();v=l.outerHeight(n);w=l.outerWidth(n);k.css({"padding-bottom":y,"padding-right":z}).hide();E.click(e.next);D.click(e.prev);R.click(e.close);p.children().removeClass(F);c(".cboxElement").live("click",function(d){if(d.button!==0&&typeof d.button!=="undefined")return n;else{Z(this);return false}})};e.position=function(b,d){function h(A){U[0].style.width=X[0].style.width=p[0].style.width=A.style.width;K[0].style.height=J[0].style.height=p[0].style.height=V[0].style.height=W[0].style.height=A.style.height}var f=m.height();f=Math.max(f-a.h-v-y,0)/2+m.scrollTop();var o=Math.max(document.documentElement.clientWidth-a.w-w-z,0)/2+m.scrollLeft();b=k.width()===a.w+w&&k.height()===a.h+v?0:b;u[0].style.width=u[0].style.height="9999px";k.dequeue().animate({width:a.w+w,height:a.h+v,top:f,left:o},{duration:b,complete:function(){h(this);C=false;u[0].style.width=a.w+w+z+"px";u[0].style.height=a.h+v+y+"px";d&&d()},step:function(){h(this)}})};e.resize=function(b){function d(){a.w=a.w||l.width();a.w=a.mw&&a.mw<a.w?a.mw:a.w;return a.w}function h(){a.h=a.h||l.height();a.h=a.mh&&a.mh<a.h?a.mh:a.h;return a.h}function f(G){e.position(G,function(){if(B){if(x){A&&l.fadeIn(100);k[0].style.removeAttribute("filter")}if(a.iframe)l.append("<iframe id='cboxIframe'"+(a.scrolling?" ":"scrolling='no'")+" name='iframe_"+(new Date).getTime()+"' frameborder=0 src='"+a.href+"' "+(x?"allowtransparency='true'":"")+" />");l.show();Q.show().html(a.title);if(g.length>1){P.html(a.current.replace(/\{current\}/,j+1).replace(/\{total\}/,g.length)).show();E.html(a.next).show();D.html(a.previous).show();a.slideshow&&t.show()}J.hide();K.hide();c.event.trigger(S);a.onComplete&&a.onComplete.call(i);a.transition==="fade"&&k.fadeTo(L,1,function(){x&&k[0].style.removeAttribute("filter")});m.bind(T,function(){e.position(0)})}})}if(B){var o,A,L=a.transition==="none"?0:a.speed;m.unbind(T);if(b){l.remove();l=c('<div id="cboxLoadedContent"/>').html(b);l.hide().appendTo(I).css({width:d(),overflow:a.scrolling?"auto":"hidden"}).css({height:h()}).prependTo(p);c("#cboxPhoto").css({cssFloat:"none"});O&&c("select:not(#colorbox select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("cbox_cleanup",function(){this.style.visibility="inherit"});a.transition==="fade"&&k.fadeTo(L,0,function(){f(0)})||f(L);if(a.preloading&&g.length>1){b=j>0?g[j-1]:g[g.length-1];o=j<g.length-1?g[j+1]:g[0];o=c(o).data(q).href||o.href;b=c(b).data(q).href||b.href;M(o)&&c("<img />").attr("src",o);M(b)&&c("<img />").attr("src",b)}}else setTimeout(function(){var G=l.wrapInner("<div style='overflow:auto'></div>").children();a.h=G.height();l.css({height:a.h});G.replaceWith(G.children());e.position(L)},1)}};e.load=function(){var b,d,h,f=e.resize;C=n;i=g[j];a=c(i).data(q);Y();c.event.trigger(H);a.onLoad&&a.onLoad.call(i);a.h=a.height?r(a.height,"y")-v-y:a.innerHeight?r(a.innerHeight,"y"):false;a.w=a.width?r(a.width,"x")-w-z:a.innerWidth?r(a.innerWidth,"x"):false;a.mw=a.w;a.mh=a.h;if(a.maxWidth){a.mw=r(a.maxWidth,"x")-w-z;a.mw=a.w&&a.w<a.mw?a.w:a.mw}if(a.maxHeight){a.mh=r(a.maxHeight,"y")-v-y;a.mh=a.h&&a.h<a.mh?a.h:a.mh}b=a.href;J.show();K.show();if(a.inline){c('<div id="cboxInlineTemp" />').hide().insertBefore(c(b)[0]).bind(H+" cbox_cleanup",function(){c(this).replaceWith(l.children())});f(c(b))}else if(a.iframe)f(" ");else if(a.html)f(a.html);else if(M(b)){d=new Image;d.onload=function(){var o;d.onload=null;d.id="cboxPhoto";c(d).css({margin:"auto",border:"none",display:"block",cssFloat:"left"});if(a.scalePhotos){h=function(){d.height-=d.height*o;d.width-=d.width*o};if(a.mw&&d.width>a.mw){o=(d.width-a.mw)/d.width;h()}if(a.mh&&d.height>a.mh){o=(d.height-a.mh)/d.height;h()}}if(a.h)d.style.marginTop=Math.max(a.h-d.height,0)/2+"px";f(d);g.length>1&&c(d).css({cursor:"pointer"}).click(e.next);if(x)d.style.msInterpolationMode="bicubic"};d.src=b}else c("<div />").appendTo(I).load(b,function(o,A){A==="success"?f(this):f(c("<p>Request unsuccessful.</p>"))})};e.next=function(){if(!C){j=j<g.length-1?j+1:0;e.load()}};e.prev=function(){if(!C){j=j>0?j-1:g.length-1;e.load()}};e.slideshow=function(){function b(){t.text(a.slideshowStop).bind(S,function(){h=setTimeout(e.next,a.slideshowSpeed)}).bind(H,function(){clearTimeout(h)}).one("click",function(){d();c(this).removeClass(F)});k.removeClass(f+"off").addClass(f+"on")}var d,h,f="cboxSlideshow_";t.bind("cbox_closed",function(){t.unbind();clearTimeout(h);k.removeClass(f+"off "+f+"on")});d=function(){clearTimeout(h);t.text(a.slideshowStart).unbind(S+" "+H).one("click",function(){b();h=setTimeout(e.next,a.slideshowSpeed);c(this).removeClass(F)});k.removeClass(f+"on").addClass(f+"off")};if(a.slideshow&&g.length>1)a.slideshowAuto?b():d()};e.close=function(){c.event.trigger("cbox_cleanup");a.onCleanup&&a.onCleanup.call(i);B=false;c(document).unbind("keydown.cbox_close keydown.cbox_arrows");m.unbind(T+" resize.cboxie6 scroll.cboxie6");s.css({cursor:"auto"}).fadeOut("fast");k.stop(n,false).fadeOut("fast",function(){c("#colorbox iframe").attr("src","about:blank");l.remove();k.css({opacity:1});try{N.focus()}catch(b){}c.event.trigger("cbox_closed");a.onClosed&&a.onClosed.call(i)})};e.element=function(){return c(i)};e.settings=$;c(e.init)})(jQuery);(function($){var ver="2.78";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(opts2.currSlide,opts2.nextSlide,opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts2.rev);},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;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 removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).find("a").removeClass(clsName).filter("a:eq("+currSlide+")").addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});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);}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);}}$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;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pagerEvent!="click"){$a.click(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){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:"click",pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null};})(jQuery);var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerFont({"w":232,"face":{"font-family":"Mareen's Print","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-23 -347.345 442 188","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+0148"},"glyphs":{" ":{"w":180},"!":{"d":"40,-205v4,-21,-31,-75,3,-78v23,7,20,52,25,78r-2,99v0,10,-5,14,-15,14v-9,0,-14,-4,-14,-14xm67,-15v-5,22,-36,12,-33,-7v1,-10,8,-12,16,-15v8,-1,18,13,17,22","w":95},"\"":{"d":"51,-229v9,-36,-33,-44,-31,-9v6,18,-10,44,15,44v11,0,16,-12,16,-35xm76,-195v22,-1,11,-26,18,-41v0,-16,-6,-24,-17,-25v-12,-2,-18,5,-18,23v0,19,3,40,17,43","w":107},"#":{"d":"183,-94v-1,22,11,60,-12,62v-26,-3,-10,-36,-18,-63r-53,-2r-2,84v1,9,-7,15,-15,15v-17,1,-15,-18,-15,-34v0,-14,2,-36,4,-66v-15,-1,-32,2,-32,-15v0,-18,18,-15,34,-14v1,-10,2,-20,2,-28v-18,-3,-73,27,-73,-4v0,-7,3,-12,11,-14v25,-6,47,-10,64,-12v0,-32,-1,-64,-8,-86v0,-7,7,-14,15,-14v29,10,19,59,22,99r37,-1v2,-19,-12,-61,14,-60v25,0,10,41,15,61v31,0,54,1,66,2v9,1,13,6,13,14v-7,28,-34,9,-76,13v1,13,2,24,5,34v21,0,39,3,59,4v9,1,14,5,14,14v-3,28,-45,8,-71,11xm103,-126r48,2v-2,-11,-3,-22,-4,-34r-42,1v-1,14,-1,14,-2,31","w":257},"$":{"d":"92,-237v3,-20,-12,-66,14,-66v26,1,12,42,16,65v56,-9,84,46,29,58v-13,3,-20,-17,-10,-26v-5,0,-11,-1,-18,-1r2,84v28,27,79,76,19,101v-7,3,-15,5,-21,7v-2,13,-4,30,-18,30v-15,0,-19,-15,-13,-29v-46,-6,-82,-36,-89,-81v-2,-17,26,-22,30,-4v8,29,29,51,62,55v3,-9,-1,-27,0,-65v-27,-26,-52,-48,-52,-85v0,-24,16,-39,49,-43xm93,-206v-35,7,-16,27,1,50v0,-14,-1,-30,-1,-50xm126,-48v21,-7,15,-14,0,-32r0,32","w":182},"%":{"d":"150,-63v0,-47,63,-79,104,-50v45,31,-6,102,-52,102v-29,0,-52,-22,-52,-52xm24,-4v-9,10,-26,3,-25,-10v0,-4,1,-7,4,-10v84,-85,129,-144,190,-255v7,-13,28,-8,27,6v-59,119,-112,179,-196,269xm103,-228v23,32,-31,80,-64,80v-24,0,-41,-27,-41,-51v0,-54,89,-80,105,-29xm242,-82v-11,-24,-67,-9,-63,19v-2,30,39,28,51,10v6,-8,11,-17,12,-29xm62,-226v-30,-4,-48,36,-23,49v22,-1,29,-14,39,-35v-3,-8,-1,-15,-16,-14","w":275},"&":{"d":"169,-246v0,57,-52,61,-86,104v24,21,51,39,87,62v9,-13,7,-21,8,-40v-14,-3,-12,-28,5,-28v34,0,27,61,14,85v27,17,49,33,67,45v11,8,5,27,-8,26v-25,-8,-39,-27,-78,-48v-24,22,-64,37,-102,37v-40,0,-71,-17,-73,-53v-1,-23,22,-64,41,-85v-16,-21,-25,-45,-25,-72v-1,-40,52,-67,97,-66v26,0,53,9,53,33xm150,-57v-37,-23,-59,-39,-86,-63v-21,26,-31,47,-31,62v-1,23,31,29,51,30v24,0,45,-10,66,-29xm63,-164v25,-32,64,-44,76,-82v-28,-15,-90,5,-90,33v0,18,4,34,14,49","w":272},"'":{"d":"29,-200v9,3,17,-27,18,-43v0,-16,-5,-23,-16,-22v-23,2,-11,34,-14,56v1,3,8,9,12,9","w":60},"(":{"d":"9,-124v0,-84,38,-136,105,-153v17,0,15,22,2,26v-53,17,-78,55,-78,128v0,63,30,91,78,106v6,2,10,6,10,10v0,7,-11,12,-18,12v-69,-16,-99,-53,-99,-129","w":130},")":{"d":"16,-249v-11,-8,-2,-26,11,-25v106,46,114,208,14,273v-13,9,-29,15,-32,-3v4,-19,20,-21,30,-33v49,-39,59,-163,0,-197","w":120},"*":{"d":"68,-240v28,3,7,37,18,70v24,-14,34,-30,53,-41v7,0,16,7,15,15v-7,22,-28,30,-45,46v18,9,55,-5,56,19v0,10,-5,15,-15,15v-18,0,-37,-3,-57,-9v2,17,16,48,-8,49v-21,1,-14,-30,-20,-46v-12,6,-23,14,-37,18v-7,0,-15,-8,-14,-16v2,-16,20,-16,32,-25v-14,-10,-30,-16,-36,-33v7,-31,36,0,47,6v-2,-19,-3,-33,-3,-44v0,-13,2,-25,14,-24","w":174},"+":{"d":"3,-84v4,-26,36,-6,63,-9v1,-33,-19,-59,9,-66v23,6,13,33,19,64v23,1,66,-17,70,9v-3,25,-44,12,-68,19v-3,26,11,65,-14,65v-26,0,-9,-38,-14,-63v-27,-2,-61,5,-65,-19","w":167},",":{"d":"44,-41v-11,1,-23,6,-23,18v0,13,15,20,20,28v0,0,-13,29,4,29v19,0,22,-32,23,-42v1,-15,-10,-35,-24,-33","w":86},"-":{"d":"12,-125v0,-10,7,-20,18,-18v12,2,40,5,83,1v16,-2,26,28,7,29v-34,2,-57,4,-70,4v-21,0,-36,2,-38,-16","w":140},"\u2010":{"d":"12,-125v0,-10,7,-20,18,-18v12,2,40,5,83,1v16,-2,26,28,7,29v-34,2,-57,4,-70,4v-21,0,-36,2,-38,-16","w":140},".":{"d":"49,-40v-11,0,-23,7,-23,18v0,11,9,24,21,23v23,0,30,-41,2,-41","w":87},"\/":{"d":"138,-276v8,-18,36,-7,28,12v-43,104,-88,189,-132,257v-8,13,-29,6,-28,-8v41,-76,90,-152,132,-261","w":174},"0":{"d":"237,-162v7,0,12,7,11,15v0,77,-70,145,-147,145v-59,0,-97,-42,-95,-102v3,-82,61,-170,140,-174v62,-3,111,49,91,116xm188,-122v9,-26,23,-51,23,-71v0,-34,-29,-55,-65,-55v-50,0,-110,91,-110,144v0,82,94,91,141,41v13,-14,26,-28,32,-45v-10,4,-22,-3,-21,-14","w":250},"1":{"d":"156,-87v-7,39,14,81,-16,85v-25,-7,-19,-46,-15,-88r12,-114v-44,48,-73,87,-119,108v-13,0,-21,-20,-8,-28v38,-25,119,-109,135,-149v5,-12,17,-16,26,-7v3,3,4,9,3,15","w":177},"2":{"d":"193,-17v-34,6,-195,47,-189,-24v6,-71,119,-122,110,-207v-18,-11,-58,2,-70,11v-2,9,-6,13,-13,13v-9,1,-18,-9,-18,-18v5,-43,141,-67,134,3v-7,64,-37,99,-83,152v-19,22,-29,37,-29,45v0,8,10,12,30,12v29,1,95,-14,125,-18v17,-2,21,28,3,31","w":208},"3":{"d":"45,-171v-5,-36,47,-47,58,-78v-23,-4,-56,3,-66,14v0,11,-5,16,-16,16v-10,0,-16,-5,-16,-16v-1,-30,48,-48,82,-47v32,1,47,7,47,32v0,36,-43,51,-57,75v32,34,91,60,91,117v0,42,-37,67,-82,54v-33,-10,-72,-43,-74,-84v0,-17,11,-35,30,-39v8,0,16,8,15,16v2,9,-15,16,-14,25v2,24,58,72,86,49v34,-62,-79,-96,-84,-134","w":173},"4":{"d":"111,-173v35,-11,37,-11,69,-16v14,-2,20,25,4,29v-17,5,-57,10,-72,18r0,129v0,10,-5,14,-15,14v-10,0,-15,-4,-15,-14r0,-120v-29,7,-80,11,-78,-20v2,-23,60,-86,80,-108v17,-19,29,-24,29,12v0,24,-4,48,-2,76xm37,-158v12,0,27,-1,45,-6v-2,-15,-2,-31,-1,-49v-22,24,-36,42,-44,55","w":198},"5":{"d":"27,-155v-21,-15,-9,-42,-19,-63v0,-12,15,-16,22,-20v8,-15,27,-46,44,-22v26,-10,53,-17,87,-21v11,-1,18,6,18,16v0,9,-5,14,-14,15v-53,7,-74,14,-115,36v-26,35,20,49,40,65v27,21,55,55,57,93v1,25,-19,54,-46,54v-31,0,-92,-52,-93,-78v-1,-14,0,-21,5,-21v9,-4,72,78,85,70v49,-26,-17,-92,-42,-104v-15,-7,-23,-16,-29,-20","w":183},"6":{"d":"132,-279v32,0,49,45,17,45v-6,0,-11,-4,-12,-14v-33,-12,-81,74,-91,99v-5,14,-7,32,-8,52v33,-39,112,-70,112,12v0,73,-96,120,-132,52v-8,-2,-9,-12,-7,-21v-15,-76,9,-130,49,-177v26,-32,50,-48,72,-48xm42,-52v4,15,17,22,34,22v26,1,44,-33,44,-60v0,-11,-2,-17,-7,-17v-23,-4,-64,36,-71,55","w":170},"7":{"d":"113,-1v-28,-5,-19,-64,-18,-97v-31,1,-62,4,-76,14v-7,0,-15,-8,-15,-15v8,-29,59,-23,97,-28v3,-18,40,-83,10,-102v-43,-7,-68,16,-94,26v-4,0,-6,-3,-6,-8v0,-40,56,-52,100,-46v59,7,40,88,19,129v12,4,8,30,-8,27v-2,31,1,58,5,84v1,9,-6,17,-14,16","w":158},"8":{"d":"9,-220v-3,-61,53,-71,104,-57v15,-1,23,19,22,38v-1,44,-33,100,-53,134v11,26,26,33,29,65v2,22,-19,41,-41,39v-46,-4,-38,-62,-22,-101v-21,-38,-37,-80,-39,-118xm103,-246v-28,-10,-63,-11,-63,24v0,19,8,47,26,84v14,-31,44,-80,37,-108xm68,-64v-9,16,3,46,12,24v-1,-4,-7,-15,-12,-24","w":139},"9":{"d":"69,-50v-3,-36,39,-79,35,-114v-18,1,-37,10,-54,10v-25,0,-47,-22,-48,-51v-2,-40,56,-83,98,-83v60,0,66,69,35,105v13,65,-50,102,-28,166v0,9,-8,15,-17,15v-21,1,-19,-33,-21,-48xm34,-202v3,30,56,7,74,2v9,-17,14,-30,14,-38v1,-11,-10,-18,-24,-18v-26,0,-66,32,-64,54","w":156},":":{"d":"49,-144v-37,0,-25,37,2,37v11,0,17,-6,19,-19v2,-12,-5,-18,-21,-18xm27,-30v-6,31,41,36,43,10v2,-25,-40,-41,-43,-10","w":89},";":{"d":"29,-117v-1,20,24,35,38,17v11,-13,4,-33,-14,-33v-16,0,-24,5,-24,16xm49,39v39,-8,32,-82,-7,-79v-9,1,-16,10,-17,19v-1,15,24,14,24,26v2,5,-17,38,0,34","w":97},"<":{"d":"102,-154v1,-6,-7,-11,-13,-11v-23,-2,-86,46,-82,69v-3,27,58,89,85,85v21,-3,11,-27,-4,-34v-34,-16,-49,-34,-48,-48v2,-29,58,-33,62,-61","w":109},"=":{"d":"28,-145v-10,0,-16,-7,-16,-17v0,-10,5,-16,15,-16v48,-2,87,0,118,4v15,2,18,20,9,29v-32,8,-74,0,-126,0xm21,-92v-18,-4,-14,-32,4,-32v30,9,78,4,121,4v9,0,18,6,17,16v0,29,-56,19,-76,19v-29,0,-51,-3,-66,-7","w":174},">":{"d":"11,-140v-2,23,52,47,60,62v-4,24,-58,32,-60,60v0,6,4,9,10,9v27,-3,79,-43,86,-62v1,-13,-21,-36,-64,-71v-7,-6,-32,-10,-32,2","w":113},"?":{"d":"75,-15v0,-12,6,-18,15,-19v9,0,13,8,13,19v0,9,-3,14,-13,14v-10,0,-15,-5,-15,-14xm89,-174v46,41,136,-24,71,-62v-37,-22,-89,-17,-120,2v14,6,7,28,-6,28v-14,-4,-27,-14,-26,-25v4,-34,59,-47,96,-49v45,-2,115,34,109,76v-6,46,-64,93,-116,65v-1,24,3,59,10,73v0,7,-7,14,-15,14v-24,-4,-24,-52,-24,-79v0,-26,3,-41,21,-43","w":217},"@":{"d":"204,-276v94,0,199,55,193,140v-4,48,-90,95,-146,70v-15,20,-38,40,-67,42v-26,1,-51,-28,-53,-62v-2,-44,55,-97,99,-97v38,0,62,28,46,61v-1,6,-2,21,0,26v32,19,78,-17,88,-37v6,-66,-87,-108,-162,-108v-102,0,-169,63,-168,164v1,93,43,152,131,154v72,2,158,-50,171,-105v5,-20,39,-27,39,-2v0,83,-113,138,-207,138v-107,0,-169,-69,-169,-181v0,-124,82,-203,205,-203xm240,-142v-28,-25,-77,30,-75,62v2,36,50,19,57,-2v7,-10,11,-51,18,-60","w":412},"A":{"d":"30,-89v-12,-7,-9,-33,10,-29v41,-109,76,-164,103,-164v38,0,56,95,71,142v17,0,21,28,4,32v7,40,10,70,10,89v0,11,-5,16,-16,16v-11,0,-15,-5,-15,-16v0,-22,-3,-49,-9,-81v-41,9,-72,11,-125,13v-9,24,-19,50,-27,79v-5,17,-35,12,-31,-5v8,-39,14,-43,25,-76xm141,-248v-19,19,-41,62,-66,128v38,-2,83,-6,107,-12v-13,-50,-26,-99,-41,-116"},"B":{"d":"-4,-217v6,-42,108,-69,157,-69v37,0,56,13,55,40v-1,21,-38,52,-112,93v54,12,129,17,137,66v8,49,-93,88,-147,88v-37,1,-58,-12,-63,-42v13,-25,12,-65,17,-98v-6,-7,-5,-17,3,-22v4,-30,7,-52,8,-66v-24,9,-20,21,-38,25v-9,2,-18,-7,-17,-15xm57,-40v40,31,212,-41,113,-64r-99,-23v-6,28,-3,65,-14,87xm77,-179v30,-14,90,-53,99,-68v0,-8,-21,-7,-32,-7v-14,0,-34,3,-60,13v-1,10,-3,30,-7,62","w":237},"C":{"d":"190,-222v-20,0,-16,-30,-39,-27v-118,-14,-165,206,-29,218v23,3,88,-11,103,-13v20,-2,31,31,8,33r-114,12v-71,-4,-118,-56,-119,-130v-1,-85,66,-156,151,-156v23,0,61,24,59,47v0,9,-10,16,-20,16","w":249},"D":{"d":"4,-155v-11,1,-16,-14,-16,-24v4,-49,81,-86,131,-87v89,-2,159,66,159,152v0,75,-57,114,-135,118v-43,2,-77,-29,-85,-66v14,-47,9,-112,19,-167v-21,10,-64,30,-57,59v0,8,-8,16,-16,15xm248,-116v0,-70,-60,-130,-141,-118v1,21,-10,80,-11,104r-4,77v10,19,27,28,51,28v60,0,105,-32,105,-91","w":280},"E":{"d":"3,-82v-16,1,-34,-22,-14,-30v16,-6,45,-13,89,-20r13,-99v-16,6,-45,14,-46,-9v5,-19,32,-17,51,-25v2,-11,21,-15,31,-7v41,-8,93,-13,135,-12v33,1,88,-3,67,30v-17,10,-40,1,-67,1v-40,0,-94,5,-133,13v-3,25,-16,79,-15,103v3,0,6,-1,9,-1v64,-9,110,-14,139,-14v12,0,18,6,18,16v0,10,-6,15,-18,15v-23,-1,-94,8,-146,16v12,107,153,68,224,34v16,-1,23,22,8,30v-119,60,-244,53,-268,-58","w":361},"F":{"d":"-4,-105v4,-25,28,-9,49,-13r0,-85v0,-9,4,-13,12,-14v25,-49,86,-70,165,-67v24,0,36,6,36,20v0,10,-7,16,-19,16v-94,-25,-169,11,-156,123v31,-6,59,-16,94,-18v10,0,17,6,17,16v-9,30,-65,13,-97,32v-6,1,-7,1,-13,2r3,74v0,12,-4,18,-14,18v-28,-7,-27,-49,-27,-85v-24,1,-47,0,-50,-19","w":248},"G":{"d":"229,-70v-32,38,-98,77,-159,78v-86,1,-77,-105,-39,-167v35,-56,100,-124,176,-124v22,0,58,9,58,29v0,17,-23,23,-31,8v-9,-3,-18,-5,-28,-5v-86,8,-172,100,-172,188v0,27,13,40,37,40v30,7,135,-52,143,-82v-1,-24,-85,-4,-85,-30v0,-32,59,-16,91,-25v55,3,42,71,37,129v-1,14,-20,18,-28,9v-9,-10,1,-33,0,-48","w":266},"H":{"d":"147,-271v-13,45,-25,91,-29,148r57,3v0,-24,0,-62,1,-113v0,-11,5,-16,16,-16v11,0,16,5,16,16r-1,111v20,2,62,-18,62,11v0,25,-30,14,-62,21v0,39,2,57,6,73v0,9,-8,15,-16,15v-29,-8,-16,-40,-22,-87r-59,-2v-7,26,14,84,-16,88v-31,-5,-13,-56,-16,-90v-36,-6,-80,17,-85,-14v6,-28,52,-14,86,-18v4,-61,16,-111,32,-152v6,-16,30,-10,30,6","w":272},"I":{"d":"32,-280v10,-1,17,6,16,16v-13,89,18,176,-9,253v-6,16,-31,12,-31,-5v27,-69,9,-169,9,-250v0,-10,5,-14,15,-14","w":60},"J":{"d":"104,-244v-11,-15,2,-34,18,-34v6,0,11,2,15,8v45,72,65,119,46,213v-13,68,-49,129,-118,129v-51,0,-85,-111,-37,-132v18,27,4,94,47,94v71,-18,98,-137,66,-214v-7,-17,-19,-39,-37,-64","w":193},"K":{"d":"37,-277v29,2,13,59,14,86v33,-27,65,-51,113,-56v19,-3,37,16,39,30v-4,13,-29,2,-41,2v-40,0,-116,54,-119,101v22,33,53,69,114,66r72,-3v11,0,16,5,16,16v0,11,-6,16,-16,16r-79,3v-58,-1,-83,-18,-113,-52v-4,35,-5,42,-3,66v0,9,-8,15,-16,15v-14,0,-17,-13,-17,-29v0,-59,25,-171,19,-246v0,-9,7,-15,17,-15","w":248},"L":{"d":"3,-68v-8,-51,43,-156,41,-197v0,-11,4,-15,15,-15v10,0,16,4,16,15v0,26,-42,149,-42,176v0,39,25,59,75,59v17,1,75,-22,89,-22v10,0,17,6,17,16v-7,26,-28,15,-60,28v-65,26,-142,0,-151,-60","w":218},"M":{"d":"167,15v-26,-6,-24,-52,-24,-78v0,-30,6,-63,16,-99v-45,43,-98,54,-114,-18v-6,32,-9,85,-8,156v0,10,-7,16,-17,16v-11,0,-16,-5,-16,-16v-2,-118,3,-165,32,-249v7,-19,34,-16,32,6v4,35,0,97,27,106v18,0,52,-26,93,-82v10,-13,30,-10,30,7v-27,83,-55,143,-34,235v0,9,-8,16,-17,16","w":218},"N":{"d":"229,-273v29,10,34,41,36,85v1,33,-13,119,-27,158v-6,17,-15,25,-25,25v-33,0,-76,-56,-129,-169v-7,55,-30,112,-51,170v-6,16,-31,15,-29,-6v29,-81,57,-164,54,-248v-2,-20,29,-25,31,-3v6,59,78,199,119,222v20,-49,43,-179,5,-218v0,-8,8,-16,16,-16","w":270},"O":{"d":"140,-279v46,2,73,34,79,78v25,-7,37,27,37,54v1,96,-148,206,-225,117v-72,-82,-4,-254,109,-249xm164,-112v8,-23,26,-32,26,-62v0,-37,-15,-78,-51,-75v-60,6,-106,70,-106,140v0,78,89,102,141,51v26,-26,61,-63,47,-109v-3,30,-12,43,-29,65v-9,12,-28,4,-28,-10","w":259},"P":{"d":"32,-169v4,7,29,4,25,20v0,10,-8,18,-18,16v-25,-3,-38,-14,-38,-32v0,-72,89,-108,164,-112v59,-3,89,37,85,98v-3,38,-82,96,-133,85v0,34,-2,87,-31,95v-9,0,-14,-6,-14,-18v0,-50,29,-134,31,-215v-26,12,-75,45,-71,63xm117,-127v28,18,100,-33,102,-53v5,-57,-34,-77,-85,-63v2,44,-8,87,-17,116","w":254},"Q":{"d":"187,-280v36,-1,72,54,69,89v-6,64,-3,66,-38,93v-5,9,-10,18,-16,26v16,24,36,49,59,77v10,11,0,29,-14,29v-5,0,-9,-3,-13,-7v-21,-26,-40,-50,-55,-72v-52,70,-182,47,-176,-54v6,-101,79,-178,184,-181xm144,-168v26,5,20,38,37,59v10,-18,28,-87,40,-90v2,-17,-21,-46,-34,-46v-75,-5,-150,72,-150,144v0,70,94,82,124,28v-17,-30,-31,-50,-35,-79v-1,-9,10,-15,18,-16","w":263},"R":{"d":"68,-259v63,-28,174,-36,167,52v-4,52,-110,91,-139,135v7,46,113,63,160,42v9,1,15,9,16,17v-7,29,-59,20,-96,22v-40,2,-94,-28,-107,-58v3,25,-7,52,-30,35v-8,-23,1,-46,1,-93v0,-51,4,-71,14,-108v-14,7,-21,16,-40,22v-14,1,-21,-21,-8,-29v27,-16,46,-30,62,-37xm203,-207v6,-57,-75,-43,-112,-27v-10,44,-22,87,-20,143v27,-41,111,-76,132,-116","w":275},"S":{"d":"7,-49v-11,-9,-2,-28,11,-28v38,29,113,53,185,40v-35,-46,-146,-72,-146,-148v0,-59,77,-107,139,-99v32,4,48,18,48,42v0,13,-4,34,-19,33v-32,-2,6,-54,-36,-48v-37,-2,-103,38,-100,72v6,66,139,90,149,154v4,25,-55,31,-98,28v-61,-5,-105,-19,-133,-46","w":246},"T":{"d":"178,2v-24,1,-14,-70,-18,-69v0,-47,12,-114,19,-161r-164,25v-10,0,-14,-5,-14,-15v0,-10,4,-13,14,-14r181,-27v57,4,139,-3,153,37v1,8,-8,15,-15,15v-25,-17,-72,-28,-125,-23r-20,167v-4,23,17,63,-11,65","w":345},"U":{"d":"55,-220v0,49,-59,186,26,186v74,0,100,-57,109,-131v6,-47,10,-71,11,-75v2,-10,7,-15,16,-15v10,0,17,7,16,18r-8,223v0,11,-5,15,-15,15v-29,-1,-13,-44,-15,-69v-18,35,-65,67,-112,67v-53,0,-82,-39,-80,-95v2,-52,26,-115,21,-177v0,-11,5,-16,16,-16v28,0,15,38,15,69","w":236},"V":{"d":"227,-241v9,-11,29,-4,29,10v-42,64,-62,80,-98,145v-31,56,-43,79,-66,85v-22,-8,-24,-29,-32,-73v-11,-59,-24,-157,-48,-186v-21,-3,-13,-34,5,-31v32,6,42,52,53,89v9,28,22,124,28,151v45,-71,71,-121,129,-190","w":255},"W":{"d":"346,10v-69,0,-126,-64,-114,-151v5,-35,2,-71,-3,-92v-40,27,-61,97,-124,148v-44,36,-58,61,-84,61v-13,0,-20,-7,-20,-19v0,-50,39,-159,36,-212v-16,-10,-20,-30,5,-30v26,-1,30,25,26,52v2,35,-31,141,-32,165v23,-17,92,-81,104,-102v50,-85,88,-117,115,-86v15,17,10,115,9,153v-1,36,44,81,81,81v47,0,64,-61,64,-131v0,-64,-8,-95,-23,-93v-6,14,-33,19,-32,-5v0,-16,13,-28,35,-27v44,3,53,64,53,122v0,89,-20,166,-96,166","w":446},"X":{"d":"18,-12v-17,1,-23,-24,-8,-32v34,-18,74,-45,122,-80v-20,-27,-69,-94,-64,-105v-1,-20,32,-24,34,-3v0,10,41,66,57,88v68,-52,127,-102,135,-124v7,-16,35,-10,32,7v-7,40,-75,84,-146,143v20,25,46,56,44,96v-1,26,-3,45,-22,48v-24,-4,-14,-23,-12,-47v1,-34,-21,-58,-37,-77v-53,36,-89,69,-135,86","w":320},"Y":{"d":"31,-7v-6,14,-30,6,-30,-8v24,-51,51,-94,92,-128v-29,-8,-76,-73,-81,-105v-2,-11,6,-17,16,-18v9,0,16,5,16,14v0,19,46,80,64,80v22,0,64,-79,72,-104v5,-17,32,-13,31,5v-27,112,-130,156,-180,264","w":211},"Z":{"d":"32,-64v2,-29,22,-60,49,-82v-20,-1,-42,-2,-67,-2v-10,0,-15,-5,-15,-16v0,-10,5,-15,15,-15v30,0,63,1,98,5v26,-20,74,-65,74,-73v-28,-11,-87,-6,-111,5v-8,0,-16,-8,-15,-16v8,-27,42,-23,83,-26v35,-2,76,8,76,35v4,19,-43,64,-66,80r78,12v21,4,15,33,-5,31v-22,-2,-79,-13,-104,-16v-23,17,-63,59,-59,75v-2,46,132,35,173,23v16,0,21,25,4,30v-51,17,-213,31,-208,-50","w":254},"[":{"d":"147,-258v-4,33,-43,0,-66,10v-6,8,-38,187,-34,204v2,8,-2,15,7,14v15,2,52,-13,93,-25v16,0,21,25,5,31v-44,16,-75,25,-95,25v-28,-1,-40,-11,-41,-39v-2,-51,26,-231,54,-240v23,-8,68,-5,77,20","w":170},"\\":{"d":"17,-287v24,8,79,124,95,146r84,115v9,9,1,24,-11,24v-4,0,-7,-1,-10,-5v-63,-79,-112,-158,-170,-255v-6,-11,1,-25,12,-25","w":203},"]":{"d":"95,-35v31,-17,12,-167,7,-216v-25,-4,-69,23,-73,-9v7,-28,59,-25,88,-21v22,16,26,93,26,143v0,91,7,136,-50,136v-27,0,-71,-15,-76,-39v13,-38,46,13,78,6","w":156},"^":{"d":"122,-218v-3,-22,-38,-51,-56,-55v-18,2,-91,51,-51,69v20,-5,30,-34,51,-37v16,3,24,40,42,38v7,0,14,-7,14,-15","w":126},"_":{"d":"12,15v0,-14,20,-14,35,-14v53,0,83,2,143,-1v7,-1,11,2,11,9v-1,8,-9,20,-18,20v-15,1,-54,3,-117,3v-25,0,-54,3,-54,-17","w":215},"`":{"d":"31,-200v18,-9,8,-67,-11,-62v-8,0,-16,7,-15,17v-2,17,17,19,18,34v0,7,3,11,8,11","w":47},"a":{"d":"211,12v-51,-2,-66,-21,-79,-64v-34,32,-79,76,-120,38v-38,-77,44,-169,106,-177v30,-4,67,37,65,67v-1,18,-12,39,-24,39v-5,40,13,66,52,65v11,0,16,5,16,16v0,11,-5,16,-16,16xm118,-159v-35,0,-87,67,-87,108v0,31,32,19,49,3v17,-16,44,-37,50,-63v3,-10,10,-15,20,-12v-2,-18,-14,-36,-32,-36","w":228,"k":{"a":-66}},"b":{"d":"15,-283v25,-18,33,17,31,42r-6,93v50,-41,154,-53,157,26v2,64,-71,120,-121,123v-43,2,-91,-63,-68,-118v-4,-35,8,-122,4,-152v-1,-6,-1,-10,3,-14xm80,-33v43,-6,86,-46,86,-87v0,-40,-60,-31,-87,-14v-21,13,-42,20,-44,49v-1,27,19,56,45,52","w":197},"c":{"d":"91,-166v-66,3,-85,146,2,133v43,-7,53,-21,90,-33v14,2,24,21,10,29v-40,23,-60,32,-113,36v-47,3,-79,-38,-77,-86v2,-57,34,-110,91,-110v16,0,35,6,36,26v2,29,-34,5,-39,5","w":204},"d":{"d":"187,-153v3,26,5,37,5,89v0,22,14,53,-11,55v-22,-5,-11,-21,-15,-55v-19,36,-57,68,-112,62v-52,-6,-69,-79,-38,-127v23,-36,72,-72,134,-59v-5,-24,-7,-38,-6,-45v1,-10,6,-16,13,-16v30,7,26,68,30,96xm45,-42v63,27,116,-34,115,-97v0,-14,-15,-23,-31,-22v-52,5,-99,38,-99,87v0,14,5,25,15,32","w":196},"e":{"d":"32,-130v6,-31,27,-69,54,-69v28,0,50,28,59,73v4,23,-43,32,-88,30v-4,36,4,61,39,63v25,1,52,-29,60,3v-13,39,-97,33,-116,2v-11,-18,-18,-42,-15,-71v-17,1,-26,-16,-15,-28v5,-5,14,-4,22,-3xm112,-132v-7,-24,-16,-36,-26,-36v-9,6,-17,19,-23,40v18,0,37,0,49,-4","w":167},"f":{"d":"117,-266v30,0,41,34,50,68v-1,20,-29,17,-32,-1v-4,-10,-7,-34,-19,-31v-9,2,-18,41,-25,113v30,-1,49,-8,52,13v3,21,-35,13,-54,16v-5,52,-7,93,-7,124v0,11,-6,21,-17,20v-9,0,-13,-5,-13,-16v0,-28,2,-68,6,-120v-19,11,-49,25,-55,-1v5,-20,43,-24,57,-31v5,-54,9,-90,14,-110v7,-29,21,-44,43,-44","w":168},"g":{"d":"155,-70v-15,68,41,228,-51,232v-30,1,-59,-29,-58,-59v1,-12,5,-26,19,-26v30,0,7,49,38,49v16,1,20,-25,20,-49v0,-8,-2,-42,-6,-104v-22,17,-44,25,-63,25v-24,1,-50,-18,-50,-44v0,-71,60,-113,106,-116v46,-3,85,56,45,92xm106,-64v-5,-15,39,-32,29,-50v-6,-6,-13,-18,-22,-18v-37,0,-72,33,-80,66v0,9,8,33,23,31v14,1,40,-17,50,-29","w":179},"h":{"d":"159,-8v-54,3,-65,-52,-60,-113v-23,14,-56,113,-83,123v-26,-8,-5,-54,-5,-80v0,-36,34,-129,40,-178v2,-18,11,-27,20,-27v26,10,12,43,3,78r-31,114v15,-21,30,-64,57,-65v35,-2,30,49,29,85v0,24,7,36,24,34v19,-2,28,28,6,29","w":177},"i":{"d":"17,-77v6,-12,-17,-87,16,-85v27,-4,18,48,19,63v2,27,-6,57,-7,80v2,13,-8,19,-18,19v-33,1,-10,-59,-10,-77xm39,-184v-22,1,-31,-40,-4,-41v22,-1,31,40,4,41","w":69},"j":{"d":"67,61v28,-1,12,-34,8,-55v-12,-25,-14,-133,-18,-155v-2,-11,7,-22,18,-21v10,0,17,5,18,15v3,21,6,126,16,151v19,47,12,101,-44,101v-37,0,-84,-24,-83,-58v-5,-28,36,-44,40,-13v-14,24,23,35,45,35xm63,-209v3,-22,45,-26,40,4v-3,20,-42,27,-41,-2v0,-1,1,-1,1,-2","w":128},"k":{"d":"109,-173v11,-4,21,4,21,15v0,7,-4,12,-11,14v-39,13,-64,28,-75,42r0,30v25,19,73,36,108,36v10,0,16,5,16,15v0,10,-6,16,-16,16v-50,-1,-62,-11,-111,-31v0,16,2,36,-15,34v-26,-2,-13,-32,-14,-61v-7,-15,-7,-34,1,-48v2,-46,17,-111,5,-154v0,-8,8,-16,16,-15v22,3,17,35,19,59v1,16,-4,53,-6,77v16,-11,36,-20,62,-29","w":172},"l":{"d":"66,-221v0,44,-22,147,-17,184v12,-12,28,-19,30,2v3,34,-54,47,-60,10v-11,-73,29,-179,8,-239v0,-8,8,-15,16,-15v19,-3,23,32,23,58","w":86},"m":{"d":"231,-100v-4,54,20,92,-16,102v-5,0,-9,-2,-9,-7r-2,-102v0,-9,-1,-14,-5,-14v-29,11,-51,55,-67,96v-5,12,-27,16,-27,0v-2,-37,5,-83,-4,-113v-13,-5,-66,93,-69,134v-1,7,-5,10,-11,10v-8,0,-11,-5,-11,-13v1,-24,2,-49,2,-75v0,-39,-18,-69,14,-75v20,5,8,24,13,60v23,-50,45,-74,66,-74v29,0,32,41,28,81v20,-33,28,-57,68,-61v19,-2,32,29,30,51","w":253},"n":{"d":"32,-180v27,8,23,57,19,84v19,-27,32,-70,76,-63v53,9,-19,134,53,139v12,1,11,18,3,25v-39,10,-70,-17,-70,-67v0,-12,14,-56,1,-64v-18,-1,-33,30,-42,45v-15,23,-29,49,-42,76v-7,14,-25,1,-24,-11v12,-42,31,-109,9,-150v0,-8,10,-14,17,-14","w":189},"o":{"d":"101,-162v42,0,79,33,72,80v0,6,-3,9,-8,11v-5,37,-45,70,-85,71v-40,2,-79,-36,-77,-73v2,-50,58,-89,98,-89xm132,-67v13,-27,-3,-62,-33,-62v-23,0,-62,27,-64,57v-2,33,52,50,77,26v11,-10,18,-17,20,-21","w":177},"p":{"d":"25,-111v7,-30,30,-55,66,-52v45,4,95,40,93,95v-1,53,-88,89,-138,55r-13,127v-1,11,-6,16,-16,16v-29,0,-13,-50,-13,-76v0,-47,12,-93,3,-137v1,-18,2,-32,18,-28xm152,-68v6,-37,-33,-54,-61,-63v-34,-3,-39,45,-41,80v27,35,96,18,102,-17","w":188},"q":{"d":"97,90v4,-22,28,-30,46,-42r4,-70v-43,38,-137,24,-137,-41v0,-43,54,-111,98,-111v56,0,102,51,77,107r-6,95v19,-10,20,-12,41,-28v11,-9,24,-1,22,12v-5,32,-36,44,-61,60v-1,22,15,69,-14,71v-24,2,-19,-34,-22,-53v-13,12,-43,29,-48,0xm84,-32v35,0,72,-31,72,-67v0,-24,-24,-47,-50,-45v-39,3,-104,112,-22,112","w":219},"r":{"d":"23,-183v20,2,17,28,19,48v18,-30,42,-47,72,-50v10,-1,17,7,17,15v0,9,-4,13,-13,14v-50,5,-78,81,-81,143v-1,11,-5,16,-14,16v-27,0,-13,-46,-12,-69v2,-33,7,-74,-3,-100v-1,-10,7,-17,15,-17","w":132},"s":{"d":"5,-32v-5,-17,23,-30,30,-13v4,21,62,19,70,4v-25,-16,-91,-22,-88,-66v-6,-39,32,-65,81,-65v25,0,38,9,38,26v1,16,-7,31,-23,30v-17,-1,-10,-13,-8,-26v-21,-11,-63,3,-56,32v7,35,88,26,88,67v0,58,-119,56,-132,11","w":142},"t":{"d":"-23,-134v0,-10,8,-18,20,-15v12,3,32,6,61,6v4,-37,11,-72,9,-115v0,-10,6,-15,16,-15v24,0,12,30,14,53v1,17,-5,50,-9,75v17,-2,46,-13,46,10v0,22,-33,17,-50,21v-1,37,2,67,12,99v1,15,-24,21,-29,4v-9,-34,-16,-65,-13,-102v-39,-3,-69,4,-77,-21","w":134},"u":{"d":"120,-148v6,-19,31,-15,29,5v-1,43,0,109,26,107v14,-1,18,19,9,27v-35,14,-61,-21,-64,-66v-29,54,-55,82,-77,79v-62,-9,-20,-118,-36,-181v0,-8,8,-16,16,-15v22,3,17,34,19,58v2,31,-10,89,4,107v24,-13,62,-83,74,-121","w":192},"v":{"d":"7,-152v-9,-8,-1,-23,10,-22v24,10,32,37,42,62v4,10,10,31,18,63v19,-29,47,-79,66,-114v7,-13,25,-5,25,7v-16,37,-39,67,-57,102v-18,35,-33,52,-43,52v-5,0,-8,-3,-10,-11v-12,-49,-23,-109,-51,-139","w":173},"w":{"d":"17,-183v34,12,19,84,24,130v21,-34,53,-86,85,-96v52,8,1,118,69,123v24,1,25,-76,25,-119v0,-10,4,-15,14,-15v24,-1,15,34,15,55v0,72,-14,110,-60,110v-53,0,-63,-63,-67,-119v-17,15,-38,44,-61,86v-19,35,-43,38,-49,-6v-4,-32,4,-113,-11,-134v0,-8,8,-16,16,-15","w":256},"x":{"d":"4,1v15,-39,44,-63,72,-90v-14,-24,-30,-46,-53,-50v-9,-1,-13,-5,-13,-14v6,-29,43,-10,59,7v7,7,18,20,31,39v31,-21,66,-44,113,-60v14,0,20,22,5,28v-41,17,-74,37,-101,56v19,27,46,34,62,62v-13,36,-48,-10,-64,-22v-8,-7,-16,-14,-22,-22v-25,22,-46,46,-62,73v-7,13,-28,7,-27,-7","w":231},"y":{"d":"59,-137v-9,27,-22,55,-20,79v0,14,4,21,12,21v15,0,68,-49,65,-74v-3,-24,27,-30,33,-5v12,51,21,100,21,147v0,80,-19,157,-86,157v-42,0,-71,-41,-64,-88v1,-10,6,-15,15,-15v14,1,20,14,18,31v-2,19,12,36,29,36v67,-16,59,-130,47,-205v-18,21,-50,52,-80,53v-32,1,-48,-37,-40,-72r15,-69v3,-22,36,-15,35,4","w":178},"z":{"d":"4,-82v11,-41,92,8,113,-26v16,-11,28,-22,37,-31v-25,-11,-70,-8,-107,-2v-9,1,-14,-2,-14,-10v0,-27,38,-22,69,-22v51,0,80,5,88,30v3,11,-28,34,-52,52v15,5,3,27,-9,26r-27,-1v-17,12,-33,30,-38,41r118,-13v19,-3,23,27,7,29r-117,12v-77,-4,-48,-33,-6,-71r-52,-3v-7,0,-10,-4,-10,-11","w":204},"{":{"d":"58,-150v17,41,-35,109,9,123v20,0,5,-13,5,-21v-1,-7,7,-15,14,-14v42,16,17,64,-22,62v-64,-3,-36,-78,-31,-126v2,-19,-12,-32,-15,-46v0,-22,39,4,39,-12v0,-31,-40,-36,-41,-64v0,-18,17,-39,41,-37v16,2,46,4,46,21v0,34,-46,-9,-58,16v14,20,40,33,40,66v0,18,-11,31,-27,32","w":117},"|":{"d":"11,-134v0,-55,-10,-148,18,-164v12,-3,12,30,12,49r1,249v-2,21,-23,14,-27,1v-3,-15,-4,-59,-4,-135","w":52},"}":{"d":"103,-120v3,47,29,120,-31,121v-25,1,-57,-21,-60,-47v-2,-20,31,-34,33,-8v-10,14,11,27,26,28v32,-13,-10,-87,7,-126v-30,1,-45,-8,-45,-28v0,-27,49,-60,53,-78v-14,-10,-33,5,-42,9v-7,0,-17,-7,-15,-15v6,-32,69,-33,82,-7v17,34,-42,59,-49,92v12,-3,63,-7,61,7v-5,14,-22,24,-20,52","w":136},"~":{"d":"105,-71v-27,2,-36,-28,-56,-37v-17,0,-15,29,-35,29v-15,0,-14,-16,-6,-25v12,-14,18,-39,43,-39v17,-4,39,46,55,43v24,4,13,-39,35,-38v9,0,14,5,14,16v0,28,-22,49,-50,51","w":158},"\u0145":{"d":"33,-186v23,-9,25,-76,-4,-77v-22,7,-19,73,4,77","w":68},"\u0146":{"d":"33,-199v-23,-9,-28,-77,2,-77v20,5,14,44,11,64v-2,9,-7,13,-13,13","w":63},"\u0147":{"d":"34,-275v-25,8,-30,77,1,79v25,-2,14,-85,-1,-79xm76,-278v-20,10,-28,76,3,77v30,-4,14,-74,-3,-77","w":105},"\u0148":{"d":"33,-199v-23,-9,-28,-77,2,-77v20,5,14,44,11,64v-2,9,-7,13,-13,13xm77,-198v-21,-5,-31,-76,2,-76v28,3,18,73,-2,76","w":105},"\u00a1":{"d":"40,-75v4,21,-30,74,3,78v23,-7,20,-52,25,-78r-2,-99v0,-10,-5,-14,-15,-14v-9,0,-14,4,-14,14xm67,-265v-5,-22,-35,-12,-33,7v1,10,8,12,16,15v8,1,18,-13,17,-22","w":95},"\u00a2":{"d":"189,-59v-28,8,-45,32,-86,31v-72,-2,-53,-128,2,-138v14,-3,44,26,44,-6v0,-20,-19,-26,-36,-26v-55,0,-90,51,-92,108v-1,55,40,96,96,90v22,-3,79,-23,89,-45v0,-8,-10,-14,-17,-14xm220,-113v-23,2,-58,3,-61,-19v4,-27,35,-3,64,-11r10,-115v0,-10,5,-15,15,-15v25,-2,13,33,14,53v1,17,-3,51,-8,75v17,-2,46,-13,46,10v-1,21,-32,17,-50,21v-1,34,-4,69,3,99v0,7,-7,15,-16,14v-36,-10,-14,-72,-17,-112","w":307},"\u00a3":{"d":"19,-2v-15,-1,-17,-21,-4,-29v15,-16,25,-62,21,-95v-24,9,-38,-23,-15,-28r7,0v-24,-75,69,-109,126,-77v17,9,15,46,-5,46v-26,0,3,-30,-40,-30v-37,0,-68,24,-50,65v19,6,48,-9,49,14v1,18,-28,19,-42,17v0,25,-1,47,-10,69v36,-9,66,10,91,28v6,-6,33,-28,33,1v0,14,-14,25,-33,27v-15,1,-55,-34,-74,-30v-18,-3,-36,17,-54,22","w":186},"\u00a4":{"d":"14,-61v11,-21,29,-37,42,-59v1,-33,-23,-52,-45,-65v-13,-7,-6,-27,7,-27v27,8,40,31,60,49v12,-5,24,-6,34,2v18,-14,38,-28,49,-44v8,-12,27,-4,26,9v-10,25,-34,40,-57,57v5,9,3,16,0,26v19,7,33,19,58,37v11,8,4,26,-9,26v-24,-9,-43,-31,-58,-35v-4,-2,-6,-5,-7,-8v-12,8,-29,3,-40,-4v-15,20,-22,42,-45,51v-7,0,-15,-8,-15,-15xm79,-130v-1,4,9,13,18,13v5,0,6,-2,6,-6v2,-14,-22,-20,-24,-7","w":198},"\u00a5":{"d":"109,0v-20,-3,-18,-18,-22,-43v-16,2,-37,6,-37,-12v0,-16,20,-14,33,-17v0,-5,-1,-9,-1,-14v-14,4,-36,9,-36,-10v0,-18,23,-15,36,-19v1,-7,3,-16,4,-28v-29,-8,-76,-73,-81,-105v-2,-11,6,-17,16,-18v9,0,14,5,15,14v0,19,46,80,64,80v23,0,65,-78,73,-104v5,-17,32,-13,31,5v-21,65,-35,85,-83,124v-2,3,-2,17,-1,26v15,-3,34,-3,34,13v1,16,-18,14,-33,16r2,17v22,1,52,-8,53,15v0,21,-30,12,-51,14v-1,18,2,48,-16,46","w":208},"\u00a6":{"d":"30,-168v-8,0,-16,-7,-15,-17v5,-40,-5,-72,2,-96v9,-8,24,-5,25,9v2,24,4,53,2,89v0,10,-5,15,-14,15xm31,-132v8,-1,16,6,14,16v-2,28,-1,60,0,97v1,9,-7,16,-15,16v-9,0,-14,-5,-14,-15v-1,-38,-1,-71,1,-100v0,-9,5,-14,14,-14","w":65},"\u00a7":{"d":"118,-251v0,27,-35,6,-50,7v-28,-4,-44,34,-24,50v33,16,95,16,95,72v0,23,-18,45,-37,53v54,20,19,106,-29,101v-22,-2,-55,-12,-65,-38v10,-35,46,13,65,9v16,0,28,-14,28,-29v-11,-39,-84,-36,-84,-87v0,-19,12,-39,25,-50v-42,-6,-46,-70,-19,-95v10,-10,25,-15,43,-15v17,0,52,3,52,22xm69,-88v35,-4,63,-51,16,-64v-19,6,-55,29,-31,53v3,3,8,7,15,11","w":144},"\u00a8":{"d":"32,-246v-12,1,-22,6,-22,20v0,12,8,20,20,20v11,0,24,-9,23,-21v0,-10,-10,-19,-21,-19xm89,-206v11,1,24,-15,23,-27v4,-19,-31,-13,-38,-8v-11,11,-2,37,15,35","w":122},"\u00a9":{"d":"129,-165v-55,2,-96,47,-96,100v0,47,38,85,87,85v58,0,102,-44,102,-91v0,-48,-45,-96,-93,-94xm3,-64v0,-71,54,-130,126,-132v64,-2,123,61,123,125v0,64,-56,121,-134,121v-64,0,-115,-51,-115,-114xm95,-66v5,49,77,-18,84,24v-2,21,-37,23,-61,25v-32,2,-53,-19,-54,-48v-2,-28,29,-68,60,-69v23,-1,45,16,54,43v0,8,-8,15,-16,15v-15,-1,-22,-30,-37,-26v-15,-1,-31,21,-30,36","w":258},"\u00ab":{"d":"95,-158v10,-14,34,3,22,18v-20,24,-62,51,-89,73v6,9,46,31,61,41v16,11,-2,34,-16,24v-26,-18,-93,-43,-68,-81v10,-16,78,-59,90,-75xm194,-141v8,-7,23,2,21,12v-4,21,-34,23,-50,34v-30,21,-53,19,-27,43v10,8,26,18,45,25v14,5,9,30,-5,27v-41,-10,-105,-52,-68,-93v17,-19,57,-35,84,-48","w":216},"\u00ac":{"d":"200,-122v23,-1,21,37,23,51v4,20,-10,54,-30,34v-12,-12,4,-35,-5,-52v-66,3,-121,3,-167,1v-10,0,-15,-6,-15,-16v-1,-10,7,-17,17,-16v48,2,107,2,177,-2","w":233},"\u00ae":{"d":"278,-145v0,69,-62,133,-149,133v-72,0,-127,-54,-127,-124v0,-80,58,-146,140,-148v70,-3,136,69,136,139xm130,-36v73,0,123,-53,123,-110v0,-57,-53,-116,-110,-114v-68,3,-117,57,-117,124v0,57,43,100,104,100xm208,-198v1,33,-70,44,-88,71v1,34,40,45,74,45v10,0,15,2,15,8v0,10,-15,14,-26,14v-26,-1,-71,-15,-81,-38v-2,15,3,35,-12,36v-23,-6,-8,-32,-11,-65v-4,-38,-1,-46,8,-74v-6,10,-25,12,-27,-3v25,-28,46,-40,85,-40v41,0,62,10,63,46xm182,-198v6,-37,-50,-27,-71,-17v-8,39,-8,36,-9,69v19,-18,69,-30,80,-52","w":282},"\u00af":{"d":"12,-211v0,-14,19,-16,35,-15r62,2v20,0,47,0,81,-2v7,0,11,2,11,9v-1,8,-9,19,-18,19v-15,1,-54,3,-117,3v-25,0,-54,3,-54,-16","w":211},"\u02c9":{"d":"12,-211v0,-14,19,-16,35,-15r62,2v20,0,47,0,81,-2v7,0,11,2,11,9v-1,8,-9,19,-18,19v-15,1,-54,3,-117,3v-25,0,-54,3,-54,-16","w":211},"\u00b0":{"d":"31,-199v0,2,7,9,13,9v5,-4,-1,-14,-7,-12v-4,0,-6,1,-6,3xm67,-176v-17,29,-63,3,-63,-24v0,-25,44,-43,60,-17v9,14,13,24,3,41","w":77},"\u00b1":{"d":"3,-138v4,-26,36,-6,63,-9v1,-33,-19,-59,9,-66v23,6,13,33,19,64v23,1,66,-17,70,9v-3,25,-44,12,-68,19v-3,26,11,65,-14,65v-26,0,-9,-38,-14,-63v-27,-2,-61,5,-65,-19xm80,-50v41,0,75,-12,82,16v0,6,-4,10,-10,10v-50,3,-85,4,-107,4v-36,8,-48,-22,-22,-33v13,0,23,3,57,3","w":167},"\u00b2":{"d":"42,-235v-4,-22,-29,12,-31,-9v3,-19,47,-29,51,1v4,30,-21,39,-29,60v16,-1,43,-12,47,6v-2,15,-70,23,-71,-1v-3,-10,35,-46,33,-57","w":88},"\u00b3":{"d":"23,-218v-1,-4,40,-26,17,-30v-9,-1,-7,11,-16,10v-5,1,-13,-4,-12,-9v-1,-19,52,-31,57,-10v4,19,-16,31,-23,41v13,14,39,23,39,46v0,18,-13,28,-31,28v-30,0,-61,-42,-26,-57v29,2,-11,35,23,34v6,-1,9,-4,9,-10v4,-13,-37,-32,-37,-43","w":99},"\u00b4":{"d":"43,-246v1,-12,-19,-21,-25,-5v-4,11,-17,21,-17,34v0,4,2,5,5,5v16,-3,35,-19,37,-34","w":46},"\u00b5":{"d":"134,-148v6,-19,32,-15,30,5v-3,42,0,109,26,107v14,-1,16,19,8,27v-35,14,-61,-21,-64,-66v-34,57,-50,86,-85,77v-2,40,-6,56,-15,101v-3,17,-29,12,-29,-3v17,-69,15,-139,21,-212v1,-18,-15,-51,11,-51v20,0,18,32,19,49v1,24,-9,76,4,87v24,-13,62,-83,74,-121","w":205},"\u03bc":{"d":"134,-148v6,-19,32,-15,30,5v-3,42,0,109,26,107v14,-1,16,19,8,27v-35,14,-61,-21,-64,-66v-34,57,-50,86,-85,77v-2,40,-6,56,-15,101v-3,17,-29,12,-29,-3v17,-69,15,-139,21,-212v1,-18,-15,-51,11,-51v20,0,18,32,19,49v1,24,-9,76,4,87v24,-13,62,-83,74,-121","w":205},"\u00b6":{"d":"139,-283v-54,0,-129,-7,-131,45v-2,58,29,64,77,80v-1,83,-1,132,1,149v1,11,7,17,16,17v9,-1,15,-10,15,-21r0,-232v5,-1,9,-1,13,0r3,233v0,16,34,34,33,4v-1,-75,-3,-154,-4,-238v7,-6,25,-2,23,-17v1,-22,-11,-20,-46,-20","w":191},"\u00b7":{"d":"106,-127v-1,-29,-55,-30,-55,1v0,12,13,28,24,27v15,0,31,-12,31,-28","w":151},"\u2219":{"d":"106,-127v-1,-29,-55,-30,-55,1v0,12,13,28,24,27v15,0,31,-12,31,-28","w":151},"\u00b8":{"d":"81,-4v4,2,-7,15,-5,19v-2,18,45,17,40,33v-10,31,-46,-30,-52,7v7,33,77,31,79,-6v1,-11,-10,-29,-19,-28v-20,3,-15,-18,-7,-21v-2,-31,-19,-19,-36,-4","w":307},"\u00b9":{"d":"49,-229v-4,5,-17,25,-32,30v-12,1,-13,-15,-3,-19v13,-6,26,-19,37,-39v4,-8,22,-10,21,0r-5,81v0,6,-3,9,-9,9v-24,-2,-10,-42,-9,-62","w":79},"\u00ba":{"d":"31,-199v0,2,7,9,13,9v5,-4,-1,-14,-7,-12v-4,0,-6,1,-6,3xm67,-176v-17,29,-63,3,-63,-24v0,-25,44,-43,60,-17v9,14,13,24,3,41","w":77},"\u00bb":{"d":"33,-10v-9,13,-31,4,-30,-11v10,-33,51,-44,81,-60v-20,-10,-96,-13,-71,-48v20,-11,46,3,70,11v44,15,61,39,26,62v-22,15,-63,28,-76,46xm90,-148v0,-10,6,-18,18,-17v29,1,106,40,104,65v-3,31,-59,68,-80,93v-10,12,-30,2,-30,-12v6,-25,64,-57,73,-79v-13,-13,-48,-31,-70,-33v-10,-1,-15,-7,-15,-17","w":216},"\u00bf":{"d":"147,-264v1,11,-5,19,-15,19v-9,0,-13,-8,-13,-19v0,-9,3,-14,13,-14v10,0,15,5,15,14xm133,-105v-47,-40,-138,24,-71,63v37,21,90,15,120,-3v-14,-6,-8,-29,6,-27v16,2,27,14,26,24v-4,36,-60,48,-100,50v-44,2,-111,-35,-105,-77v6,-46,65,-94,116,-64v0,-23,-3,-59,-10,-74v0,-7,8,-13,15,-13v25,3,22,53,24,79v2,26,-3,40,-21,42","w":222},"\u00c0":{"d":"32,-88v-17,-7,-10,-36,13,-30v24,-57,73,-141,98,-131v32,1,56,68,66,110v11,-4,21,5,20,16v0,8,-5,13,-13,15v7,31,13,70,12,89v0,11,-5,16,-16,16v-11,0,-15,-5,-15,-16v0,-23,-4,-50,-11,-81v-38,9,-69,10,-120,12v-12,27,-23,54,-30,80v-5,17,-34,12,-31,-5v5,-27,17,-49,27,-75xm141,-215v-19,19,-38,51,-60,95r97,-11v-11,-38,-24,-66,-37,-84xm100,-329v39,13,71,26,77,49v-12,41,-77,-17,-88,-23v-10,-9,-3,-27,11,-26"},"\u00c1":{"d":"32,-88v-17,-7,-10,-36,13,-30v24,-57,73,-141,98,-131v32,1,56,68,66,110v11,-4,21,5,20,16v0,8,-5,13,-13,15v7,31,13,70,12,89v0,11,-5,16,-16,16v-11,0,-15,-5,-15,-16v0,-23,-4,-50,-11,-81v-38,9,-69,10,-120,12v-12,27,-23,54,-30,80v-5,17,-34,12,-31,-5v5,-27,17,-49,27,-75xm141,-215v-19,19,-38,51,-60,95r97,-11v-11,-38,-24,-66,-37,-84xm184,-306v-11,24,-46,35,-90,53v-13,-1,-11,-21,-2,-27v15,-9,58,-48,83,-37v6,2,9,6,9,11"},"\u00c2":{"d":"32,-88v-17,-7,-10,-36,13,-30v24,-57,73,-141,98,-131v32,1,56,68,66,110v11,-4,21,5,20,16v0,8,-5,13,-13,15v7,31,13,70,12,89v0,11,-5,16,-16,16v-11,0,-15,-5,-15,-16v0,-23,-4,-50,-11,-81v-38,9,-69,10,-120,12v-12,27,-23,54,-30,80v-5,17,-34,12,-31,-5v5,-27,17,-49,27,-75xm141,-215v-19,19,-38,51,-60,95r97,-11v-11,-38,-24,-66,-37,-84xm95,-262v-27,-10,-3,-30,14,-49v41,-44,75,2,92,35v1,8,-6,16,-14,15v-19,4,-26,-35,-42,-38v-20,2,-30,32,-50,37"},"\u00c3":{"d":"32,-88v-17,-7,-10,-36,13,-30v24,-57,73,-141,98,-131v32,1,56,68,66,110v11,-4,21,5,20,16v0,8,-5,13,-13,15v7,31,13,70,12,89v0,11,-5,16,-16,16v-11,0,-15,-5,-15,-16v0,-23,-4,-50,-11,-81v-38,9,-69,10,-120,12v-12,27,-23,54,-30,80v-5,17,-34,12,-31,-5v5,-27,17,-49,27,-75xm141,-215v-19,19,-38,51,-60,95r97,-11v-11,-38,-24,-66,-37,-84xm71,-274v8,-20,16,-45,43,-47v15,-4,35,41,49,38v22,4,12,-36,32,-35v8,0,12,5,12,15v-2,30,-22,46,-45,46v-24,0,-33,-26,-50,-34v-13,2,-15,28,-31,27v-7,0,-10,-3,-10,-10"},"\u00c4":{"d":"30,-89v-12,-7,-8,-33,11,-29v23,-59,77,-165,102,-153v35,3,59,83,68,132v9,-4,19,6,18,16v3,10,-13,12,-11,18v7,38,10,67,10,86v0,11,-5,16,-16,16v-11,0,-15,-5,-15,-16v0,-22,-4,-49,-10,-81v-40,9,-71,11,-124,13v-9,24,-19,50,-27,79v-5,17,-34,12,-31,-5v5,-28,17,-51,25,-76xm141,-237v-20,21,-42,60,-65,117v37,-3,82,-5,104,-13v-12,-50,-25,-85,-39,-104xm188,-271v-2,-29,39,-31,39,-3v0,10,-7,15,-21,16v-12,0,-18,-4,-18,-13xm97,-280v0,20,-37,25,-38,7v-1,-18,3,-21,22,-21v10,0,16,5,16,14"},"\u00c5":{"d":"32,-88v-17,-7,-10,-36,13,-30v24,-57,73,-141,98,-131v32,1,56,68,66,110v11,-4,21,5,20,16v0,8,-5,13,-13,15v7,31,13,70,12,89v0,11,-5,16,-16,16v-11,0,-15,-5,-15,-16v0,-23,-4,-50,-11,-81v-38,9,-69,10,-120,12v-12,27,-23,54,-30,80v-5,17,-34,12,-31,-5v5,-27,17,-49,27,-75xm141,-215v-19,19,-38,51,-60,95r97,-11v-11,-38,-24,-66,-37,-84xm164,-277v-17,29,-66,3,-62,-24v-3,-25,43,-41,59,-17v9,14,13,24,3,41xm129,-300v-1,2,6,10,12,9v5,-4,-1,-14,-7,-12v-4,0,-5,1,-5,3"},"\u00c6":{"d":"31,-92v-20,-8,-11,-31,11,-31v40,-106,74,-159,101,-159v15,0,29,17,42,50v10,-4,21,-7,31,-10v2,-9,18,-12,27,-7v33,-7,67,-11,101,-11v29,1,90,-1,68,31v-17,10,-44,0,-68,0v-33,0,-64,4,-96,12r-17,73v69,-5,121,-8,154,-8v12,0,18,6,18,16v0,10,-6,15,-18,15v-31,0,-83,3,-156,8v-5,59,70,101,130,69v23,-7,65,-47,78,-10v0,6,-4,10,-10,13v-41,18,-61,28,-62,28v-52,21,-106,11,-137,-20v1,16,1,31,-16,30v-11,0,-15,-5,-15,-16v0,-24,-4,-54,-11,-90v-58,5,-98,9,-120,14v-9,26,-21,55,-30,87v-5,17,-34,12,-31,-5v5,-29,18,-55,26,-79xm141,-248v-18,18,-39,59,-63,119v25,-4,60,-7,102,-11v-12,-53,-25,-90,-39,-108xm210,-207r-14,5v2,8,5,17,7,26","w":441},"\u00c7":{"d":"209,-243v2,11,-5,21,-16,21v-19,-1,-16,-31,-42,-31v-66,0,-121,59,-120,124v1,60,39,98,104,98v21,0,82,-10,96,-11v10,0,17,6,17,16v-6,27,-28,14,-64,22v-24,6,-39,5,-59,5v4,-28,-13,-23,-33,-5v-54,-14,-92,-60,-92,-125v0,-85,66,-159,151,-156v25,0,53,20,58,42xm92,-4v4,2,-7,15,-5,19v-2,18,45,17,40,33v-10,31,-46,-30,-52,7v6,33,76,31,78,-6v1,-11,-9,-29,-18,-28v-17,2,-16,-12,-10,-20v-12,0,-23,-3,-33,-5","w":250},"\u00c8":{"d":"28,-85v-16,3,-34,-22,-14,-30v13,-5,33,-10,61,-15v1,-23,8,-55,12,-76v-16,7,-44,15,-46,-9v4,-19,33,-17,52,-25v2,-11,21,-14,30,-7v42,-7,93,-13,135,-12v33,1,87,-3,68,30v-17,11,-40,1,-68,1v-40,0,-94,5,-133,13r-13,79v49,-9,121,-17,150,-16v12,0,18,6,18,16v0,10,-6,15,-18,15v-27,-1,-105,9,-149,16v6,42,39,69,93,73v27,2,79,-18,130,-39v17,-1,24,22,8,30v-120,60,-241,53,-268,-57v-23,4,-32,10,-48,13xm176,-333v39,13,70,26,77,49v-13,41,-78,-17,-89,-23v-9,-10,-1,-27,12,-26","w":355},"\u00c9":{"d":"28,-85v-16,3,-34,-22,-14,-30v13,-5,33,-10,61,-15v1,-23,8,-55,12,-76v-16,7,-44,15,-46,-9v4,-19,33,-17,52,-25v2,-11,21,-14,30,-7v42,-7,93,-13,135,-12v33,1,87,-3,68,30v-17,11,-40,1,-68,1v-40,0,-94,5,-133,13r-13,79v49,-9,121,-17,150,-16v12,0,18,6,18,16v0,10,-6,15,-18,15v-27,-1,-105,9,-149,16v6,42,39,69,93,73v27,2,79,-18,130,-39v17,-1,24,22,8,30v-120,60,-241,53,-268,-57v-23,4,-32,10,-48,13xm252,-314v-9,27,-45,35,-90,53v-14,0,-9,-21,-1,-27v14,-9,57,-47,82,-36v6,2,9,5,9,10","w":355},"\u00ca":{"d":"28,-85v-16,3,-34,-22,-14,-30v13,-5,33,-10,61,-15v1,-23,8,-55,12,-76v-16,7,-44,15,-46,-9v4,-19,33,-17,52,-25v2,-11,21,-14,30,-7v41,-7,93,-13,135,-12v33,1,87,-3,68,30v-17,11,-40,1,-68,1v-40,0,-94,5,-133,13r-13,79v49,-9,121,-17,150,-16v12,0,18,6,18,16v0,10,-6,15,-18,15v-27,-1,-105,9,-149,16v6,42,39,69,93,73v27,2,79,-18,130,-39v17,-1,24,22,8,30v-120,60,-241,53,-268,-57v-23,4,-32,10,-48,13xm159,-276v-26,-12,-2,-30,15,-49v40,-44,76,1,92,35v-18,43,-37,-17,-56,-23v-20,3,-31,32,-51,37","w":355},"\u00cb":{"d":"28,-85v-16,3,-34,-22,-14,-30v13,-5,33,-10,61,-15v1,-23,8,-55,12,-76v-16,7,-44,15,-46,-9v4,-19,33,-17,52,-25v2,-11,21,-14,30,-7v41,-7,93,-13,135,-12v33,1,87,-3,68,30v-17,11,-40,1,-68,1v-40,0,-94,5,-133,13r-13,79v49,-9,121,-17,150,-16v12,0,18,6,18,16v0,10,-6,15,-18,15v-27,-1,-105,9,-149,16v6,42,39,69,93,73v27,2,79,-18,130,-39v17,-1,24,22,8,30v-120,60,-241,53,-268,-57v-23,4,-32,10,-48,13xm175,-274v-21,0,-30,-41,-3,-41v22,0,32,41,3,41xm253,-292v0,-21,-36,-31,-39,-6v-3,23,37,30,39,6","w":358},"\u00cc":{"d":"46,-77v6,-12,-17,-87,16,-85v27,-4,18,48,19,63v2,27,-8,55,-7,80v0,12,-8,19,-18,19v-33,1,-10,-59,-10,-77xm69,-188v-23,0,-53,-48,-60,-68v-1,-8,8,-15,15,-15v27,7,56,49,62,70v0,9,-5,13,-17,13","w":104},"\u00cd":{"d":"24,-81v6,-12,-17,-87,16,-85v27,-4,18,48,19,63v2,27,-6,56,-6,80v0,12,-8,19,-18,19v-34,2,-11,-70,-11,-77xm67,-262v-19,5,-45,40,-51,58v0,8,7,16,15,16v26,-9,52,-48,50,-59v1,-9,-6,-15,-14,-15","w":92},"\u00ce":{"d":"126,-215v-4,-21,-39,-51,-57,-55v-15,1,-61,36,-63,55v15,39,42,-23,63,-23v16,0,24,42,42,38v8,1,17,-7,15,-15xm49,-85v6,-12,-15,-87,17,-84v26,-4,16,49,19,62v1,27,-8,56,-7,81v0,12,-8,19,-18,19v-35,1,-9,-58,-11,-78","w":131},"\u00cf":{"d":"35,-77v6,-12,-17,-87,16,-85v27,-4,18,48,19,63v2,27,-6,57,-7,80v2,13,-8,19,-18,19v-33,1,-10,-59,-10,-77xm24,-184v-23,1,-29,-41,-3,-41v21,0,30,42,3,41xm102,-202v0,-21,-36,-31,-39,-6v-3,23,37,30,39,6","w":104},"\u00d0":{"d":"66,-121v-14,2,-37,5,-37,-12v0,-19,24,-15,38,-17r10,-79v-21,10,-64,30,-57,59v0,8,-8,16,-16,15v-11,1,-16,-14,-16,-24v4,-49,81,-86,131,-87v89,-2,159,66,159,152v0,75,-57,114,-135,118v-43,2,-77,-29,-85,-66v7,-12,9,-41,8,-59xm248,-116v0,-70,-60,-130,-141,-118v1,16,-8,59,-10,81v25,1,60,-5,60,18v0,28,-38,3,-61,12r-4,70v10,19,27,28,51,28v60,0,105,-32,105,-91","w":280},"\u00d1":{"d":"167,-262v-31,5,-50,-57,-72,-13v-6,8,-25,9,-25,-3v9,-18,20,-41,47,-44v16,-2,36,38,51,35v22,4,15,-32,34,-32v9,0,13,5,13,14v0,28,-22,44,-48,43xm215,-248v26,9,32,38,33,78v1,29,-12,108,-24,143v-5,15,-15,23,-24,23v-30,0,-69,-52,-117,-154v-7,50,-27,103,-46,154v-6,15,-29,15,-27,-5v28,-72,53,-149,50,-226v0,-10,5,-15,14,-15v8,0,13,4,14,13v6,53,72,181,108,202v17,-46,39,-163,5,-198v-1,-8,6,-16,14,-15","w":254},"\u00d2":{"d":"136,-270v45,2,69,34,75,75v23,-7,35,27,35,51v1,91,-140,196,-214,111v-68,-79,-4,-241,104,-237xm159,-111v8,-23,26,-30,25,-59v-1,-34,-15,-74,-50,-71v-56,5,-100,67,-100,133v0,50,33,79,82,75v42,-4,119,-74,97,-129v-2,28,-13,41,-28,61v-9,12,-27,4,-26,-10xm99,-337v38,14,72,27,79,50v-14,34,-74,-21,-86,-27v-8,-7,-7,-24,7,-23","w":254},"\u00d3":{"d":"140,-272v46,2,73,34,79,78v27,-5,36,28,37,54v1,95,-150,195,-225,111v-72,-81,-3,-248,109,-243xm164,-112v9,-25,26,-27,26,-56v0,-37,-17,-76,-54,-76v-82,0,-147,153,-70,203v60,39,132,-24,152,-68v9,-19,10,-37,3,-51v-4,28,-12,35,-29,58v-9,12,-28,4,-28,-10xm93,-291v7,-18,39,-46,57,-53v7,0,15,8,15,15v-4,23,-28,41,-56,54v-9,0,-15,-8,-16,-16","w":259},"\u00d4":{"d":"140,-272v46,2,73,34,79,78v27,-5,36,28,37,54v1,95,-150,195,-225,111v-72,-81,-3,-248,109,-243xm164,-112v9,-25,26,-27,26,-56v0,-37,-17,-76,-54,-76v-82,0,-147,153,-70,203v60,39,132,-24,152,-68v9,-19,10,-37,3,-51v-4,28,-12,35,-29,58v-9,12,-28,4,-28,-10xm91,-280v-26,-11,-3,-30,14,-49v41,-45,75,3,93,35v1,8,-7,16,-15,15v-19,4,-26,-36,-42,-38v-20,2,-30,32,-50,37","w":259},"\u00d5":{"d":"140,-265v47,1,73,35,79,79v24,-7,37,27,37,52v1,93,-151,187,-225,106v-73,-80,0,-240,109,-237xm180,-96v-39,-15,11,-39,10,-66v-2,-39,-16,-77,-58,-77v-83,0,-140,150,-66,198v59,38,132,-21,152,-63v9,-18,10,-35,3,-49v-5,28,-8,24,-29,51v-3,4,-7,6,-12,6xm162,-279v-28,7,-38,-49,-60,-26v-6,6,-11,20,-21,19v-25,-8,6,-36,10,-46v6,-7,13,-11,23,-11v15,-4,35,41,49,38v21,4,12,-35,32,-34v8,0,12,5,12,15v-3,29,-23,45,-45,45","w":259},"\u00d6":{"d":"140,-279v46,2,73,34,79,78v25,-7,37,27,37,54v1,96,-148,206,-225,117v-72,-82,-4,-254,109,-249xm164,-112v8,-23,26,-32,26,-62v0,-37,-15,-78,-51,-75v-60,6,-106,70,-106,140v0,78,89,102,141,51v26,-26,61,-63,47,-109v-3,30,-12,43,-29,65v-9,12,-28,4,-28,-10xm245,-283v0,22,-46,30,-46,7v0,-15,7,-22,22,-22v16,0,24,5,24,15xm49,-258v-27,0,-32,-38,-7,-40v13,-1,28,8,26,22v-1,12,-8,18,-19,18","w":259},"\u00d7":{"d":"9,-18v6,-21,29,-21,43,-41v-20,-22,-36,-22,-44,-42v0,-8,7,-15,14,-15v20,6,26,18,49,36v16,-15,25,-36,46,-46v11,-1,19,13,11,23r-36,43v16,17,33,25,40,46v0,7,-7,14,-15,14v-20,-7,-26,-27,-44,-40v-19,17,-29,32,-50,36v-7,1,-15,-7,-14,-14","w":138},"\u00d8":{"d":"31,-31v-9,9,-26,4,-26,-10v-1,-6,5,-12,11,-14v-34,-102,30,-224,131,-224v29,-1,57,12,75,31v10,-10,15,-28,31,-31v11,-2,20,13,12,23r-26,31v30,60,30,119,-23,174v-51,53,-134,72,-185,20xm45,-76v46,-35,117,-103,157,-149v-12,-15,-29,-22,-50,-22v-73,0,-129,87,-107,171xm216,-199v-41,45,-112,113,-157,147v32,30,87,29,122,-6v18,-18,34,-35,43,-55v-12,-11,2,-35,1,-51v-1,-13,-6,-24,-9,-35","w":272},"\u00d9":{"d":"55,-220v0,49,-59,186,26,186v74,0,100,-57,109,-131v6,-47,10,-71,11,-75v2,-10,7,-15,16,-15v10,0,17,7,16,18r-8,223v0,10,-5,15,-15,15v-29,-1,-13,-44,-15,-69v-18,35,-65,67,-112,67v-53,0,-82,-39,-80,-95v2,-52,26,-115,21,-177v0,-11,5,-16,16,-16v28,0,15,38,15,69xm96,-326v40,12,70,28,78,49v-14,42,-77,-17,-89,-23v-9,-9,-2,-27,11,-26","w":236},"\u00da":{"d":"55,-220v0,49,-59,186,26,186v74,0,100,-57,109,-131v6,-47,10,-71,11,-75v2,-10,7,-15,16,-15v10,0,17,7,16,18r-8,223v0,10,-5,15,-16,15v-27,-2,-12,-45,-14,-69v-18,35,-65,67,-112,67v-53,0,-82,-39,-80,-95v2,-52,26,-115,21,-177v0,-11,5,-16,16,-16v28,0,15,38,15,69xm165,-307v0,-9,-10,-19,-19,-14v-13,8,-49,34,-53,52v0,8,7,16,16,15v29,-10,50,-33,56,-53","w":236},"\u00db":{"d":"194,-272v-3,-22,-38,-51,-56,-55v-18,2,-91,51,-51,69v20,-5,30,-34,51,-37v16,3,24,40,42,38v7,0,14,-7,14,-15xm55,-220v0,49,-59,186,26,186v74,0,100,-57,109,-131v6,-47,10,-71,11,-75v2,-10,7,-15,16,-15v10,0,17,7,16,18r-8,223v0,10,-5,15,-16,15v-27,-2,-12,-45,-14,-69v-18,35,-65,67,-112,67v-53,0,-82,-39,-80,-95v2,-52,26,-115,21,-177v0,-11,5,-16,16,-16v28,0,15,38,15,69","w":237},"\u00dc":{"d":"55,-220v0,49,-59,186,26,186v74,0,100,-57,109,-131v6,-47,10,-71,11,-75v2,-10,7,-15,16,-15v10,0,17,7,16,18r-8,223v0,10,-5,15,-15,15v-29,-1,-13,-44,-15,-69v-18,35,-65,67,-112,67v-53,0,-82,-39,-80,-95v2,-52,26,-115,21,-177v0,-11,5,-16,16,-16v28,0,15,38,15,69xm79,-277v3,20,41,16,41,-7v0,-12,-7,-18,-20,-18v-15,0,-24,8,-21,25xm164,-253v14,1,19,-12,21,-25v3,-21,-30,-20,-36,-11v-8,11,-5,39,15,36","w":236},"\u00dd":{"d":"31,-7v-6,14,-30,6,-30,-8v24,-51,51,-94,92,-128v-29,-8,-76,-73,-81,-105v-2,-11,6,-17,16,-18v9,0,16,5,16,14v0,19,46,80,64,80v22,0,64,-79,72,-104v5,-17,32,-13,31,5v-27,112,-130,156,-180,264xm72,-257v45,-17,80,-29,90,-53v1,-9,-17,-14,-24,-13v-18,10,-74,29,-75,56v0,7,3,10,9,10","w":211},"\u00de":{"d":"31,-263v23,-1,16,33,14,51v51,-5,79,27,80,74v1,52,-36,99,-84,101v3,16,-1,36,-14,35v-23,-2,-18,-35,-21,-58v-5,-34,6,-93,2,-130v10,-20,-5,-72,23,-73xm42,-176r-4,104v49,4,86,-103,16,-105v-4,0,-8,0,-12,1","w":131},"\u00df":{"d":"175,-70v-1,40,-88,85,-138,70v0,30,-1,54,-2,73v0,9,-5,14,-14,14v-8,0,-16,-6,-15,-15v5,-63,-2,-222,3,-279v3,-35,37,-51,61,-52v32,-1,65,32,64,64v0,25,-15,46,-45,61v57,18,86,39,86,64xm37,-56v15,3,7,20,14,31v26,4,146,-42,70,-66v-11,-8,-75,-21,-85,-32v2,21,0,45,1,67xm36,-143v33,-17,69,-19,69,-58v0,-33,-50,-37,-66,-10v-3,15,-3,47,-3,68","w":179},"\u00e0":{"d":"210,6v-52,-1,-64,-16,-78,-58v-34,32,-79,76,-120,38v-38,-77,44,-169,106,-177v49,-6,91,83,41,106v-2,40,15,61,54,61v10,0,15,4,15,13v-1,10,-7,17,-18,17xm118,-159v-35,0,-87,67,-87,108v0,31,32,19,49,3v17,-16,44,-37,50,-63v3,-10,10,-15,20,-12v-2,-18,-14,-36,-32,-36xm89,-279v39,13,71,26,78,49v-13,41,-78,-16,-89,-23v-11,-8,-2,-26,11,-26","w":228},"\u00e1":{"d":"210,6v-52,-1,-64,-16,-78,-58v-34,32,-79,76,-120,38v-38,-77,44,-169,106,-177v49,-6,91,83,41,106v-2,40,15,61,54,61v10,0,15,4,15,13v-1,10,-7,17,-18,17xm118,-159v-35,0,-87,67,-87,108v0,31,32,19,49,3v17,-16,44,-37,50,-63v3,-10,10,-15,20,-12v-2,-18,-14,-36,-32,-36xm86,-226v6,-19,39,-46,57,-53v8,-1,15,7,14,15v-3,24,-27,41,-55,53v-10,1,-16,-6,-16,-15","w":228},"\u00e2":{"d":"210,6v-52,-1,-64,-16,-78,-58v-34,32,-79,76,-120,38v-38,-77,44,-169,106,-177v49,-6,91,83,41,106v-2,40,15,61,54,61v10,0,15,4,15,13v-1,10,-7,17,-18,17xm118,-159v-35,0,-87,67,-87,108v0,31,32,19,49,3v17,-16,44,-37,50,-63v3,-10,10,-15,20,-12v-2,-18,-14,-36,-32,-36xm62,-212v-27,-10,-2,-30,15,-48v41,-44,75,2,92,35v1,8,-7,15,-15,14v-18,4,-25,-37,-41,-37v-21,0,-30,32,-51,36","w":228},"\u00e3":{"d":"210,6v-52,-1,-64,-16,-78,-58v-34,32,-79,76,-120,38v-38,-77,44,-169,106,-177v49,-6,91,83,41,106v-2,40,15,61,54,61v10,0,15,4,15,13v-1,10,-7,17,-18,17xm118,-159v-35,0,-87,67,-87,108v0,31,32,19,49,3v17,-16,44,-37,50,-63v3,-10,10,-15,20,-12v-2,-18,-14,-36,-32,-36xm40,-225v10,-22,20,-49,49,-53v18,-2,38,46,55,43v24,4,13,-39,35,-38v9,0,14,5,14,16v0,28,-22,49,-50,51v-27,2,-36,-28,-57,-37v-15,1,-15,31,-34,29v-8,0,-12,-4,-12,-11","w":228},"\u00e4":{"d":"210,6v-52,-1,-64,-16,-78,-58v-34,32,-79,76,-120,38v-38,-77,44,-169,106,-177v49,-6,91,83,41,106v-2,40,15,61,54,61v10,0,15,4,15,13v-1,10,-7,17,-18,17xm118,-159v-35,0,-87,67,-87,108v0,31,32,19,49,3v17,-16,44,-37,50,-63v3,-10,10,-15,20,-12v-2,-18,-14,-36,-32,-36xm64,-204v-24,-3,-24,-45,4,-47v10,-1,19,15,19,26v0,12,-12,22,-23,21xm138,-226v-4,-22,39,-41,39,-8v0,10,-3,32,-17,30v-9,-1,-23,-10,-22,-22","w":228},"\u00e5":{"d":"210,6v-52,-1,-64,-16,-78,-58v-34,32,-79,76,-120,38v-38,-77,44,-169,106,-177v49,-6,91,83,41,106v-2,40,15,61,54,61v10,0,15,4,15,13v-1,10,-7,17,-18,17xm118,-159v-35,0,-87,67,-87,108v0,31,32,19,49,3v17,-16,44,-37,50,-63v3,-10,10,-15,20,-12v-2,-18,-14,-36,-32,-36xm139,-227v-17,30,-63,4,-63,-23v0,-26,44,-42,60,-17v9,14,13,23,3,40xm103,-249v0,2,7,8,13,8v5,-4,-2,-13,-7,-12v-4,0,-6,2,-6,4","w":228},"\u00e6":{"d":"264,-19v-14,38,-96,34,-116,2v-6,-10,-12,-20,-14,-32v-28,32,-83,71,-122,35v-38,-77,44,-169,106,-177v16,-2,34,10,43,23v37,-45,81,-9,92,53v5,23,-44,31,-88,29v-4,36,3,63,39,63v26,0,52,-28,60,4xm146,-138v-4,-10,-16,-22,-28,-21v-34,3,-86,66,-86,106v0,33,35,22,54,7v25,-20,55,-52,60,-92xm220,-121v-7,-24,-16,-36,-26,-36v-9,6,-18,22,-21,40v17,0,35,0,47,-4","w":269},"\u00e7":{"d":"198,-41v-24,-36,-51,17,-95,13v-72,-6,-53,-128,2,-138v14,-3,44,26,44,-6v0,-20,-19,-24,-36,-26v-54,6,-89,48,-91,103v-1,45,27,78,60,92v0,2,-7,14,-6,18v-2,18,45,17,40,33v-10,31,-46,-30,-52,7v7,33,77,31,79,-6v1,-11,-10,-29,-19,-28v-20,3,-16,-20,-7,-21v27,-5,71,-18,81,-41","w":307},"\u00e8":{"d":"32,-130v6,-31,27,-69,54,-69v28,0,50,28,59,73v5,23,-46,32,-88,30v-4,36,4,61,39,63v25,1,52,-29,60,3v-13,39,-97,33,-116,2v-11,-18,-18,-42,-15,-71v-17,1,-26,-16,-15,-28v5,-5,14,-4,22,-3xm60,-268v39,13,71,26,78,49v-13,41,-78,-17,-89,-23v-9,-9,-3,-28,11,-26xm112,-132v-7,-24,-16,-36,-26,-36v-9,6,-17,19,-23,40v18,0,37,0,49,-4","w":167},"\u00e9":{"d":"32,-130v6,-31,27,-69,54,-69v28,0,50,28,59,73v5,23,-46,32,-88,30v-4,36,4,61,39,63v25,1,52,-29,60,3v-13,39,-97,33,-116,2v-11,-18,-18,-42,-15,-71v-17,1,-26,-16,-15,-28v5,-5,14,-4,22,-3xm130,-252v-11,24,-46,35,-90,53v-13,-1,-11,-21,-2,-27v15,-9,58,-48,83,-37v6,2,9,6,9,11xm112,-132v-7,-24,-16,-36,-26,-36v-9,6,-17,19,-23,40v18,0,37,0,49,-4","w":167},"\u00ea":{"d":"32,-130v6,-31,27,-69,54,-69v28,0,50,28,59,73v5,23,-46,32,-88,30v-4,36,4,61,39,63v25,1,52,-29,60,3v-13,39,-97,33,-116,2v-11,-18,-18,-42,-15,-71v-17,1,-26,-16,-15,-28v5,-5,14,-4,22,-3xm44,-212v-27,-10,-2,-30,15,-48v41,-44,75,2,92,35v1,8,-7,15,-15,14v-18,4,-25,-37,-41,-37v-21,0,-30,32,-51,36xm112,-132v-7,-24,-16,-36,-26,-36v-9,6,-17,19,-23,40v18,0,37,0,49,-4","w":167},"\u00eb":{"d":"32,-130v6,-31,27,-69,54,-69v28,0,50,28,59,73v5,23,-46,32,-88,30v-4,36,4,61,39,63v25,1,52,-29,60,3v-13,39,-97,33,-116,2v-11,-18,-18,-42,-15,-71v-17,1,-26,-16,-15,-28v5,-5,14,-4,22,-3xm112,-132v-7,-24,-16,-36,-26,-36v-9,6,-17,19,-23,40v18,0,37,0,49,-4xm129,-210v-24,0,-32,-35,-7,-38v15,-1,23,7,23,22v0,11,-5,16,-16,16xm47,-207v-20,1,-36,-35,-8,-37v24,-2,32,33,8,37","w":167},"\u00ec":{"d":"46,-77v6,-12,-17,-87,16,-85v27,-4,18,48,19,63v2,27,-8,55,-7,80v0,12,-8,19,-18,19v-33,1,-10,-59,-10,-77xm69,-188v-23,0,-53,-48,-60,-68v-1,-8,8,-15,15,-15v27,7,56,49,62,70v0,9,-5,13,-17,13","w":104},"\u00ed":{"d":"24,-81v6,-12,-17,-87,16,-85v27,-4,18,48,19,63v2,27,-6,56,-6,80v0,12,-8,19,-18,19v-34,2,-11,-70,-11,-77xm67,-262v-19,5,-45,40,-51,58v0,8,7,16,15,16v26,-9,52,-48,50,-59v1,-9,-6,-15,-14,-15","w":92},"\u00ee":{"d":"126,-215v-4,-21,-39,-51,-57,-55v-15,1,-61,36,-63,55v15,39,42,-23,63,-23v16,0,24,42,42,38v8,1,17,-7,15,-15xm49,-85v6,-12,-15,-87,17,-84v26,-4,16,49,19,62v1,27,-8,56,-7,81v0,12,-8,19,-18,19v-35,1,-9,-58,-11,-78","w":131},"\u00ef":{"d":"35,-77v6,-12,-17,-87,16,-85v27,-4,18,48,19,63v2,27,-6,57,-7,80v2,13,-8,19,-18,19v-33,1,-10,-59,-10,-77xm24,-184v-23,1,-29,-41,-3,-41v21,0,30,42,3,41xm102,-202v0,-21,-36,-31,-39,-6v-3,23,37,30,39,6","w":104},"\u00f0":{"d":"58,-181v-20,5,-25,-23,-8,-28r39,-12v-7,-12,-18,-22,-21,-37v-3,-14,19,-21,27,-8r21,34v13,-4,22,-13,37,-15v8,-1,15,7,14,15v-2,16,-24,17,-35,25v16,25,25,41,33,63v11,3,17,18,7,26v21,57,-26,118,-76,120v-98,4,-126,-174,-18,-175v14,0,30,4,47,10v-4,-13,-14,-22,-20,-33v-15,6,-31,11,-47,15xm95,-27v39,-3,67,-53,46,-98v-43,-27,-102,-30,-105,26v-2,33,28,74,59,72","w":185},"\u00f1":{"d":"24,-117v4,-25,-19,-51,11,-54v27,5,19,49,16,75v19,-27,32,-70,76,-63v53,9,-19,134,53,139v12,1,11,18,3,25v-39,10,-70,-17,-70,-67v0,-12,14,-56,1,-64v-18,-1,-33,30,-42,45v-15,23,-29,49,-42,76v-7,14,-25,1,-24,-11v9,-29,19,-70,18,-101xm20,-202v10,-19,17,-45,44,-47v15,-4,35,41,49,38v22,4,12,-35,31,-35v8,0,13,5,13,15v0,28,-22,47,-45,46v-28,7,-39,-51,-61,-26v-2,12,-26,30,-31,9","w":189},"\u00f2":{"d":"101,-162v42,0,79,33,72,80v0,6,-3,9,-8,11v-5,37,-45,70,-85,71v-40,2,-79,-36,-77,-73v2,-50,58,-89,98,-89xm132,-67v13,-27,-3,-62,-33,-62v-23,0,-62,27,-64,57v-2,33,52,50,77,26v11,-10,18,-17,20,-21xm64,-257v39,13,71,26,77,49v-12,41,-77,-17,-88,-23v-10,-9,-3,-27,11,-26","w":177},"\u00f3":{"d":"101,-162v42,0,79,33,72,80v0,6,-3,9,-8,11v-5,37,-45,70,-85,71v-40,2,-79,-36,-77,-73v2,-50,58,-89,98,-89xm132,-67v13,-27,-3,-62,-33,-62v-23,0,-62,27,-64,57v-2,33,52,50,77,26v11,-10,18,-17,20,-21xm46,-201v4,-23,46,-43,65,-52v8,0,17,7,15,16v-4,25,-32,41,-64,53v-9,0,-16,-8,-16,-17","w":177},"\u00f4":{"d":"101,-162v42,0,79,33,72,80v0,6,-3,9,-8,11v-5,37,-45,70,-85,71v-40,2,-79,-36,-77,-73v2,-50,58,-89,98,-89xm132,-67v13,-27,-3,-62,-33,-62v-23,0,-62,27,-64,57v-2,33,52,50,77,26v11,-10,18,-17,20,-21xm44,-194v-27,-10,-2,-30,15,-48v41,-44,75,2,92,35v1,8,-7,15,-15,14v-18,4,-25,-37,-41,-37v-21,0,-30,32,-51,36","w":177},"\u00f5":{"d":"101,-162v42,0,79,33,72,80v0,6,-3,9,-8,11v-5,37,-45,70,-85,71v-40,2,-79,-36,-77,-73v2,-50,58,-89,98,-89xm132,-67v13,-27,-3,-62,-33,-62v-23,0,-62,27,-64,57v-2,33,52,50,77,26v11,-10,18,-17,20,-21xm15,-199v9,-23,20,-49,49,-53v18,-3,37,45,54,42v24,5,14,-39,36,-38v9,0,14,5,14,16v0,28,-23,50,-51,51v-27,2,-36,-28,-56,-37v-15,2,-16,30,-34,29v-8,0,-12,-3,-12,-10","w":177},"\u00f6":{"d":"101,-162v42,0,79,33,72,80v0,6,-3,9,-8,11v-5,37,-45,70,-85,71v-40,2,-79,-36,-77,-73v2,-50,58,-89,98,-89xm132,-67v13,-27,-3,-62,-33,-62v-23,0,-62,27,-64,57v-2,33,52,50,77,26v11,-10,18,-17,20,-21xm152,-199v0,17,-40,14,-40,-6v0,-11,12,-25,23,-22v11,2,17,11,17,28xm78,-206v-3,26,-44,20,-42,-4v4,-24,38,-21,42,4","w":177},"\u00f7":{"d":"9,-94v4,-19,14,-14,39,-13v40,2,63,-10,82,0v9,8,5,25,-8,25v-21,0,-110,19,-113,-12xm94,-152v-2,-25,-43,-18,-43,4v0,8,9,15,19,16v11,1,25,-9,24,-20xm93,-37v-2,-26,-41,-26,-40,2v0,13,6,20,18,20v12,0,22,-10,22,-22","w":141},"\u00f8":{"d":"24,7v-21,0,-15,-26,-4,-35v-53,-65,40,-164,114,-126v13,-10,14,-20,31,-23v29,7,5,31,-8,40v53,64,-35,169,-115,127v-6,6,-8,17,-18,17xm64,-37v46,11,91,-35,67,-75v-23,23,-45,50,-67,75xm106,-128v-32,-8,-83,34,-66,74v19,-24,45,-51,66,-74","w":182},"\u00f9":{"d":"119,-153v7,-19,31,-8,30,10v-2,43,0,109,26,107v14,-1,18,19,9,27v-35,14,-61,-21,-64,-66v-29,54,-55,81,-77,79v-48,-3,-33,-78,-31,-126v2,-18,-12,-47,10,-48v21,-1,19,32,20,50v1,26,-9,80,4,93v20,-11,44,-53,73,-126xm57,-257v40,11,70,26,77,49v-12,41,-78,-18,-89,-23v-9,-10,-2,-30,12,-26","w":192},"\u00fa":{"d":"119,-153v7,-19,31,-8,30,10v-2,43,0,109,26,107v14,-1,18,19,9,27v-35,14,-61,-21,-64,-66v-29,54,-55,81,-77,79v-48,-3,-33,-78,-31,-126v2,-18,-12,-47,10,-48v21,-1,19,32,20,50v1,26,-9,80,4,93v20,-11,44,-53,73,-126xm126,-237v2,-10,-10,-19,-18,-15v-16,8,-62,29,-62,51v0,9,7,17,16,17v32,-12,60,-28,64,-53","w":192},"\u00fb":{"d":"119,-153v7,-19,31,-8,30,10v-2,43,0,109,26,107v14,-1,18,19,9,27v-35,14,-61,-21,-64,-66v-29,54,-55,81,-77,79v-48,-3,-33,-78,-31,-126v2,-18,-12,-47,10,-48v21,-1,19,32,20,50v1,26,-9,80,4,93v20,-11,44,-53,73,-126xm140,-207v-3,-23,-39,-51,-56,-55v-17,0,-60,38,-64,54v14,38,43,-21,64,-22v16,2,24,41,42,37v7,1,15,-7,14,-14","w":192},"\u00fc":{"d":"119,-153v7,-19,31,-8,30,10v-2,43,0,109,26,107v14,-1,18,19,9,27v-35,14,-61,-21,-64,-66v-29,54,-55,81,-77,79v-48,-3,-33,-78,-31,-126v2,-18,-12,-47,10,-48v21,-1,19,32,20,50v1,26,-9,80,4,93v20,-11,44,-53,73,-126xm69,-209v0,-26,-38,-20,-36,2v-1,8,9,19,19,19v10,1,17,-12,17,-21xm116,-188v21,-2,25,-34,-2,-38v-11,-2,-20,1,-19,14v0,13,6,25,21,24","w":192},"\u00fd":{"d":"21,-138v2,-22,37,-16,36,3v-2,26,-17,61,-17,84v0,9,3,13,8,13v10,3,68,-50,65,-71v-3,-23,30,-30,36,-5v29,109,45,296,-70,296v-41,0,-74,-37,-66,-84v1,-11,7,-16,18,-16v14,0,20,11,18,28v-2,19,13,34,30,35v67,-13,58,-125,46,-198v-18,22,-51,52,-80,52v-31,0,-49,-36,-40,-70xm46,-201v4,-23,46,-43,65,-52v8,0,17,7,15,16v-4,25,-32,41,-64,53v-9,0,-16,-8,-16,-17","w":176},"\u00fe":{"d":"31,-263v23,-1,16,33,14,51v51,-5,79,27,80,74v1,52,-36,99,-84,101v3,16,-1,36,-14,35v-23,-2,-18,-35,-21,-58v-5,-34,6,-93,2,-130v10,-20,-5,-72,23,-73xm42,-176r-4,104v49,4,86,-103,16,-105v-4,0,-8,0,-12,1","w":131},"\u00ff":{"d":"21,-138v2,-22,37,-16,36,3v-2,26,-17,61,-17,84v0,9,3,13,8,13v10,3,68,-50,65,-71v-3,-23,30,-30,36,-5v29,109,45,296,-70,296v-41,0,-74,-37,-66,-84v1,-11,7,-16,18,-16v14,0,20,11,18,28v-2,19,13,34,30,35v67,-13,58,-125,46,-198v-18,22,-51,52,-80,52v-31,0,-49,-36,-40,-70xm129,-170v-23,2,-32,-35,-7,-38v15,-1,23,7,23,22v0,11,-5,16,-16,16xm23,-201v0,-8,6,-16,16,-14v23,-2,33,33,8,36v-11,0,-25,-12,-24,-22","w":176},"\u0100":{"d":"31,-89v-14,-6,-9,-34,11,-29v23,-59,77,-158,101,-146v34,2,58,79,68,125v9,-4,19,6,18,16v3,11,-14,10,-11,20v7,37,10,65,10,84v0,11,-5,16,-16,16v-11,0,-15,-5,-15,-16v0,-23,-4,-50,-10,-81v-40,9,-71,11,-123,13v-10,25,-20,51,-28,79v-5,17,-34,12,-31,-5v5,-27,17,-51,26,-76xm141,-230v-19,19,-41,58,-63,110v36,-2,78,-7,102,-11v-12,-47,-25,-80,-39,-99xm86,-280v-9,1,-15,-7,-15,-15v0,-9,5,-14,14,-14v35,-1,69,-1,104,0v9,0,14,5,14,14v0,8,-6,16,-15,15v-34,-1,-68,-1,-102,0"},"\u0101":{"d":"210,6v-52,-1,-64,-16,-78,-58v-34,32,-79,76,-120,38v-38,-77,44,-169,106,-177v49,-6,91,83,41,106v-2,40,15,61,54,61v10,0,15,4,15,13v-1,10,-7,17,-18,17xm118,-159v-35,0,-87,67,-87,108v0,31,32,19,49,3v17,-16,44,-37,50,-63v3,-10,10,-15,20,-12v-2,-18,-14,-36,-32,-36xm54,-212v-9,1,-15,-6,-15,-14v0,-9,5,-15,14,-15v35,-1,69,-1,104,0v9,0,14,6,14,15v0,8,-6,15,-15,14v-34,-1,-68,-1,-102,0"},"\u00a0":{"w":180}}});Cufon.replace('.map-dialog .tab-panel-content h2, .highlights h2, .customfont, .page-content h1, .listing .item table th h5');(function($){$.fn.sentosaMapDialog=function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't create, returning nothing");return;}
var mapDialog=$.data(this[0],'mapDialog');if(mapDialog){return mapDialog;}
mapDialog=new $.mapDialog(options);$.data(this[0],'mapDialog',mapDialog);return mapDialog;};$.mapDialog=function(options){var obj=this;var settings=$.extend({},$.mapDialog.defaults,options);var dialog=$('<div/>').addClass('map-dialog').addClass('map-dialog-'+settings.dialogClass).addClass(settings.dialogClass).prependTo(document.body);var dialogContent=$('<div/>').addClass('map-dialog-content').appendTo(dialog);var tabsContent=$('<div/>').addClass('tabs').appendTo(dialogContent);var dialogClose=$('<div/>').addClass('map-dialog-close').append($('<a>Close</a>').attr('href','#')).appendTo(dialogContent).click(function(){obj.close();return false;});var moreInfo=$('<div/>').addClass('moreinfo hide').append($('<a title="Tell me more">Tell me more</a>').attr('href','#')).appendTo(dialogContent);var isHomepage=$('body').hasClass('homepage');this.open=function(zone,data_url,tab){settings.onDialogOpening.call(dialog,tabsContent);var zoneClass=dialog.attr('class').replace(/beach|otherbeaches|imbiah|resort|serapong|siloso/gi,zone);var mapPosition={'top':isHomepage?$('#flashcontent').offset().top+100:$('#colorbox:has(#flashcontent)').offset().top+150,'left':$(document).width()/2-(dialog.width()/2)}
dialog.css(mapPosition).attr('class',zoneClass).addClass('loading').show();$.ajax({type:'GET',url:data_url+'&noCache='+new Date().getTime(),dataType:'json',success:function(data,textStatus){settings.onDataLoaded.call(dialog,tabsContent,data);data=data.object;tabsContent.tabs('destroy');var html='';var panels='';var tabs='<ul>';var tabsCount=data.tabs.length;$.each(data.tabs,function(index,value){var firstClassName=(index==0)?' first':' ';var lastClassName=(index==(tabsCount-1))?' last':' ';panels+='<div>';panels+='<div id="tabs-'+index+'" class="'+firstClassName+lastClassName+'panel">';panels+=value.content;panels+='</div>';panels+='</div>';tabs+='<li class="'+firstClassName+lastClassName+'"><a href="#tabs-'+index+'">'+value.name+'</a></li>';});tabs+='</ul>';html=tabs+panels;dialog.removeClass('loading');tabsContent.html(html);if(data.moreinfo.length){var moreInfoElement=moreInfo.removeClass('hide').find('a').attr('href',data.moreinfo).removeAttr('target').removeClass('colorbox-webpage cboxElement');var uri=parseUri(data.moreinfo);if(/(www\.){0,1}sentosadining\.com\.sg/.test(uri.host)){moreInfoElement.addClass('colorbox-webpage');}
else{if(uri.protocol.length){moreInfoElement.attr('target','_blank');}}}
else{moreInfo.addClass('hide');}
var theTabs=tabsContent.tabs();if(tab=='has_dining'){var selectedTabIndex=0;selectedTabIndex=tabsContent.find('.ui-tabs-nav li').filter(function(){return/dine|dining/i.test($(this).text());}).index();selectedTabIndex=(selectedTabIndex<0)?0:selectedTabIndex;theTabs.tabs('option','selected',selectedTabIndex);}
else if(tab=='has_shopping'){var selectedTabIndex=0;selectedTabIndex=tabsContent.find('.ui-tabs-nav li').filter(function(){return/shop|shopping|shops/i.test($(this).text());}).index();selectedTabIndex=(selectedTabIndex<0)?0:selectedTabIndex;theTabs.tabs('option','selected',selectedTabIndex);}
if(isHomepage){dialog.find('a.colorbox-webpage').each(function(){$(this).colorbox({iframe:true,innerWidth:620,innerHeight:620,opacity:0,href:$(this).attr('href')});});}
else{$('a.colorbox-webpage',$('.map-dialog')[0]).live('click',function(){window.open(this.href,'opener','height=620, width=620, menubar=0, resizable=0, scrollbars=1, status=1, toolbar=0');return false;});}
Cufon.refresh();},error:function(XMLHttpRequest,textStatus,errorThrown){trace(errorThrown);}});settings.onDialogOpened.call(dialog,tabsContent);};this.close=function(zone,data_url,tab){settings.onDialogClosing.call(dialog,tabsContent);tabsContent.empty();dialog.hide();settings.onDialogClosed.call(dialog,tabsContent);};};$.mapDialog.defaults={dialogClass:'imbiah',onDialogOpening:function(tabsContent){trace('Dialog opening...');},onDialogOpened:function(tabsContent){trace('Dialog opened.');},onDialogClosing:function(tabsContent){trace('Dialog closing...');},onDialogClosed:function(tabsContent){trace('Dialog closed.');},onDataLoading:function(){trace('Data loading...');return true;},onDataLoaded:function(tabsContent,data){trace('Data loaded.');}};$.fn.sentosaMegaMenu=function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't create, returning nothing");return;}
var megaMenu=$.data(this[0],'megaMenu');if(megaMenu){return megaMenu;}
megaMenu=new $.megaMenu(options);$.data(this[0],'megaMenu',megaMenu);return megaMenu;};$.megaMenu=function(options){var obj=this;var settings=$.extend({},$.megaMenu.defaults,options);var mainMenu=$(settings.mainMenu);var mainMenuItems=mainMenu.find(settings.mainMenuItem);var subMenus=mainMenu.find(settings.subMenu);var subMenuCSS=settings.subMenuCSS;var header=$('.header');var headerWidth=header.width();subMenuCSS.top=($.browser.msie&&$.browser.version==6)?header.height()+2:header.height();subMenus.each(function(index,subMenu){$(subMenu).wrapInner('<div class="secondary-nav-left"><div class="secondary-nav-right"><div class="secondary-nav-center clearfix"></div></div></div>');$(subMenu).append('<div class="secondary-nav-bottomleft"><div class="secondary-nav-bottomright"><div class="secondary-nav-bottomcenter"></div></div></div>');});mainMenuItems.hoverIntent({over:function(event){var mainMenuItem=$(this);var subMenu=mainMenuItem.find(settings.subMenu);settings.onMouseOver.call(obj,mainMenuItem,subMenu);obj.open(mainMenuItem,subMenu);settings.onSubMenuShow.call(obj,mainMenuItem,subMenu);},out:function(event){var mainMenuItem=$(this);var subMenu=mainMenuItem.find(settings.subMenu);settings.onMouseOut.call(obj,mainMenuItem,subMenu);obj.close(mainMenuItem,subMenu);settings.onSubMenuHide.call(obj,mainMenuItem,subMenu);},interval:settings.delaySubMenuOpen,timeout:settings.delaySubMenuClose});this.open=function(mainMenuItem,subMenu){if(!subMenu.hasClass('loaded')){var subMenuSections=subMenu.find(settings.subMenuSection);subMenuCSS.width=(subMenuSections.length*settings.subMenuSectionWidth)+settings.subMenuBorderWidth;subMenu.css(subMenuCSS);trace('No. of sections for this submenu: '+subMenuSections.length);trace('Total width for submenu: '+subMenuCSS.width);var mainMenuItemOffsetRight=headerWidth-mainMenuItem.position().left;var isSubMenuTooLong=(subMenuCSS.width>mainMenuItemOffsetRight);isSubMenuTooLong?subMenu.addClass('alignRight loaded'):subMenu.addClass('alignLeft loaded');trace('Main menu item offset right: '+mainMenuItemOffsetRight);trace('Is submenu too long? '+isSubMenuTooLong);}
mainMenuItem.addClass('hover');subMenu.show().find(settings.subMenuSection).parent().equalHeights();};this.close=function(mainMenuItem,subMenu){mainMenuItem.removeClass('hover');subMenu.hide();};};$.megaMenu.defaults={mainMenu:'.primary-nav',mainMenuItem:'li.primary',subMenu:'.secondary-nav',subMenuCSS:{},subMenuSection:'.section',subMenuSectionWidth:160,subMenuBorderWidth:20,onMouseOver:function(){trace('onMouseOver triggered.');},onSubMenuShow:function(){trace('onSubMenuShow triggered.');},onMouseOut:function(){trace('onMouseOut triggered.');},onSubMenuHide:function(){trace('onSubMenuHide triggered.');},delaySubMenuOpen:250,delaySubMenuClose:300};$.fn.sentosaToggleContent=function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't create, returning nothing");return;}
else{return this.each(function(){var toggleContent=$.data(this,'toggleContent');if(toggleContent){return toggleContent;}
var toggleContent=$.data(this,'toggleContent');if(toggleContent){return toggleContent;}
toggleContent=new $.toggleContent(this,options);$.data(this,'toggleContent',toggleContent);});}};$.toggleContent=function(element,options){var obj=this;var settings=$.extend({},$.toggleContent.defaults,options);var element=$(element);var items=element.children('li:gt('+(settings.display-1)+')');if(items.length){$(element).after(settings.togglerHtml);var toggler=element.parent().find(settings.toggler);this.expand=function(){settings.onExpanding.call(obj,element);($.browser.msie&&$.browser.version<8)?items.show():items.slideDown();toggler.text(settings.expandedText).addClass('expanded').removeClass('collapsed');settings.onExpanded.call(obj,element);Cufon.refresh();return false;};this.collapse=function(fx){settings.onCollapsing.call(obj,element);if(typeof fx!=='undefined'&&!fx){items.hide();}
else{($.browser.msie&&$.browser.version<8)?items.hide():items.slideUp();}
toggler.text(settings.collapsedText).removeClass('expanded').addClass('collapsed');settings.onCollapsed.call(obj,element);Cufon.refresh();return false;};toggler.toggle(obj.expand,obj.collapse);this.collapse(false);}};$.toggleContent.defaults={display:2,expandedText:'less',expandedClass:'expanded',onExpanding:function(element){},onExpanded:function(element){},collapsedText:'more',collapsedClass:'collapsed',onCollapsing:function(element){},onCollapsed:function(element){},togglerHtml:'<p class="toggler"><a href="#"></a></p>',toggler:'.toggler a'};$.fn.inputHints=function(){$(this).focus(function(){if($(this).val()==$(this).attr('title')){$(this).val('').removeClass('quiet');}}).blur(function(){if($(this).val()==''){$(this).addClass('quiet').val($(this).attr('title'));}}).blur();};})(jQuery);jQuery(function($){$('.primary-nav').sentosaMegaMenu();$('.more a').each(function(){$(this).after(' &raquo;');});if($.browser.msie&&($.browser.version==7||$.browser.version==6)){$('.page-content p+ul, .page-content p+ol').css({'margin-top':'-1.5em'});}
$('input[type=text][title]').inputHints();$('a[href^=http://]').each(function(){var element=$(this);if(!element.is('[class^=colorbox]')){element.attr('target','_blank');}});$('a.colorbox-sentosadinning, .sidebar a[href^=http://sentosadining.com], .sidebar a[href^=http://www.sentosadining.com]').colorbox({iframe:true,innerWidth:620,innerHeight:620,opacity:0});$('li.primary:eq(0)').addClass('primarynav-attractions');$('li.primary:eq(1)').addClass('primarynav-beaches');$('li.primary:eq(2)').addClass('primarynav-nature');$('li.primary:eq(3)').addClass('primarynav-hotels_spas');$('li.primary:eq(4)').addClass('primarynav-dine_shop');$('li.primary:eq(5)').addClass('primarynav-golf');$('li.primary:eq(6)').addClass('primarynav-whats_on');$('li.primary:eq(7)').addClass('primarynav-islander');$('li.primary:eq(8)').addClass('primarynav-gallery');$('li.primary:eq(9)').addClass('primarynav-corporate_events');$('li.primary.primarynav-attractions .section:eq(0)').addClass('imbiah_lookout');$('li.primary.primarynav-attractions .section:eq(1)').addClass('siloso_point');$('li.primary.primarynav-attractions .section:eq(2)').addClass('beaches');$('li.primary.primarynav-attractions .section:eq(3)').addClass('resorts_world_sentosa');$('li.primary.primarynav-attractions .section:eq(4)').addClass('serapong');});function showPopUp(zone,data_url,tab){var mapDialog=$('#popup').sentosaMapDialog();trace(zone+''+data_url+''+tab);mapDialog.open(zone.toLowerCase(),data_url,tab);};function closePopUp(){var mapDialog=$('#popup').sentosaMapDialog();mapDialog.close();}
function trace(value){if(window.console){window.console.log(value);}};$('html').addClass('js');