;(function($){var _remove=$.fn.remove;$.fn.remove=function(){$("*",this).add(this).triggerHandler("remove");return _remove.apply(this,arguments);};function isVisible(element){function checkStyles(element){var style=element.style;return(style.display!='none'&&style.visibility!='hidden');}
var visible=checkStyles(element);(visible&&$.each($.dir(element,'parentNode'),function(){return(visible=checkStyles(this));}));return visible;}
$.extend($.expr[':'],{data:function(a,i,m){return $.data(a,m[3]);},tabbable:function(a,i,m){var nodeName=a.nodeName.toLowerCase();return(a.tabIndex>=0&&(('a'==nodeName&&a.href)||(/input|select|textarea|button/.test(nodeName)&&'hidden'!=a.type&&!a.disabled))&&isVisible(a));}});$.keyCode={BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38};function getter(namespace,plugin,method,args){function getMethods(type){var methods=$[namespace][plugin][type]||[];return(typeof methods=='string'?methods.split(/,?\s+/):methods);}
var methods=getMethods('getter');if(args.length==1&&typeof args[0]=='string'){methods=methods.concat(getMethods('getterSetter'));}
return($.inArray(method,methods)!=-1);}
$.widget=function(name,prototype){var namespace=name.split(".")[0];name=name.split(".")[1];$.fn[name]=function(options){var isMethodCall=(typeof options=='string'),args=Array.prototype.slice.call(arguments,1);if(isMethodCall&&options.substring(0,1)=='_'){return this;}
if(isMethodCall&&getter(namespace,name,options,args)){var instance=$.data(this[0],name);return(instance?instance[options].apply(instance,args):undefined);}
return this.each(function(){var instance=$.data(this,name);(!instance&&!isMethodCall&&$.data(this,name,new $[namespace][name](this,options)));(instance&&isMethodCall&&$.isFunction(instance[options])&&instance[options].apply(instance,args));});};$[namespace][name]=function(element,options){var self=this;this.widgetName=name;this.widgetEventPrefix=$[namespace][name].eventPrefix||name;this.widgetBaseClass=namespace+'-'+name;this.options=$.extend({},$.widget.defaults,$[namespace][name].defaults,$.metadata&&$.metadata.get(element)[name],options);this.element=$(element).bind('setData.'+name,function(e,key,value){return self._setData(key,value);}).bind('getData.'+name,function(e,key){return self._getData(key);}).bind('remove',function(){return self.destroy();});this._init();};$[namespace][name].prototype=$.extend({},$.widget.prototype,prototype);$[namespace][name].getterSetter='option';};$.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName);},option:function(key,value){var options=key,self=this;if(typeof key=="string"){if(value===undefined){return this._getData(key);}
options={};options[key]=value;}
$.each(options,function(key,value){self._setData(key,value);});},_getData:function(key){return this.options[key];},_setData:function(key,value){this.options[key]=value;if(key=='disabled'){this.element[value?'addClass':'removeClass'](this.widgetBaseClass+'-disabled');}},enable:function(){this._setData('disabled',false);},disable:function(){this._setData('disabled',true);},_trigger:function(type,e,data){var eventName=(type==this.widgetEventPrefix?type:this.widgetEventPrefix+type);e=e||$.event.fix({type:eventName,target:this.element[0]});return this.element.triggerHandler(eventName,[e,data],this.options[type]);}};$.widget.defaults={disabled:false};$.ui={plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]]);}},call:function(instance,name,args){var set=instance.plugins[name];if(!set){return;}
for(var i=0;i<set.length;i++){if(instance.options[set[i][0]]){set[i][1].apply(instance.element,args);}}}},cssCache:{},css:function(name){if($.ui.cssCache[name]){return $.ui.cssCache[name];}
var tmp=$('<div class="ui-gen">').addClass(name).css({position:'absolute',top:'-5000px',left:'-5000px',display:'block'}).appendTo('body');$.ui.cssCache[name]=!!((!(/auto|default/).test(tmp.css('cursor'))||(/^[1-9]/).test(tmp.css('height'))||(/^[1-9]/).test(tmp.css('width'))||!(/none/).test(tmp.css('backgroundImage'))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(tmp.css('backgroundColor'))));try{$('body').get(0).removeChild(tmp.get(0));}catch(e){}
return $.ui.cssCache[name];},disableSelection:function(el){return $(el).attr('unselectable','on').css('MozUserSelect','none').bind('selectstart.ui',function(){return false;});},enableSelection:function(el){return $(el).attr('unselectable','off').css('MozUserSelect','').unbind('selectstart.ui');},hasScroll:function(e,a){if($(e).css('overflow')=='hidden'){return false;}
var scroll=(a&&a=='left')?'scrollLeft':'scrollTop',has=false;if(e[scroll]>0){return true;}
e[scroll]=1;has=(e[scroll]>0);e[scroll]=0;return has;}};$.ui.mouse={_mouseInit:function(){var self=this;this.element.bind('mousedown.'+this.widgetName,function(e){return self._mouseDown(e);});if($.browser.msie){this._mouseUnselectable=this.element.attr('unselectable');this.element.attr('unselectable','on');}
this.started=false;},_mouseDestroy:function(){this.element.unbind('.'+this.widgetName);($.browser.msie&&this.element.attr('unselectable',this._mouseUnselectable));},_mouseDown:function(e){(this._mouseStarted&&this._mouseUp(e));this._mouseDownEvent=e;var self=this,btnIsLeft=(e.which==1),elIsCancel=(typeof this.options.cancel=="string"?$(e.target).parents().add(e.target).filter(this.options.cancel).length:false);if(!btnIsLeft||elIsCancel||!this._mouseCapture(e)){return true;}
this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){self.mouseDelayMet=true;},this.options.delay);}
if(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)){this._mouseStarted=(this._mouseStart(e)!==false);if(!this._mouseStarted){e.preventDefault();return true;}}
this._mouseMoveDelegate=function(e){return self._mouseMove(e);};this._mouseUpDelegate=function(e){return self._mouseUp(e);};$(document).bind('mousemove.'+this.widgetName,this._mouseMoveDelegate).bind('mouseup.'+this.widgetName,this._mouseUpDelegate);return false;},_mouseMove:function(e){if($.browser.msie&&!e.button){return this._mouseUp(e);}
if(this._mouseStarted){this._mouseDrag(e);return false;}
if(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,e)!==false);(this._mouseStarted?this._mouseDrag(e):this._mouseUp(e));}
return!this._mouseStarted;},_mouseUp:function(e){$(document).unbind('mousemove.'+this.widgetName,this._mouseMoveDelegate).unbind('mouseup.'+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._mouseStop(e);}
return false;},_mouseDistanceMet:function(e){return(Math.max(Math.abs(this._mouseDownEvent.pageX-e.pageX),Math.abs(this._mouseDownEvent.pageY-e.pageY))>=this.options.distance);},_mouseDelayMet:function(e){return this.mouseDelayMet;},_mouseStart:function(e){},_mouseDrag:function(e){},_mouseStop:function(e){},_mouseCapture:function(e){return true;}};$.ui.mouse.defaults={cancel:null,distance:1,delay:0};})(jQuery);(function($){$.widget("ui.tabs",{_init:function(){this.options.event+='.tabs';this._tabify(true);},_setData:function(key,value){if((/^selected/).test(key))
this.select(value);else{this.options[key]=value;this._tabify();}},length:function(){return this.$tabs.length;},_tabId:function(a){return a.title&&a.title.replace(/\s/g,'_').replace(/[^A-Za-z0-9\-_:\.]/g,'')||this.options.idPrefix+$.data(a);},ui:function(tab,panel){return{options:this.options,tab:tab,panel:panel,index:this.$tabs.index(tab)};},_tabify:function(init){this.$lis=$('li:has(a[href])',this.element);this.$tabs=this.$lis.map(function(){return $('a',this)[0];});this.$panels=$([]);var self=this,o=this.options;this.$tabs.each(function(i,a){if(a.hash&&a.hash.replace('#',''))
self.$panels=self.$panels.add(a.hash);else if($(a).attr('href')!='#'){$.data(a,'href.tabs',a.href);$.data(a,'load.tabs',a.href);var id=self._tabId(a);a.href='#'+id;var $panel=$('#'+id);if(!$panel.length){$panel=$(o.panelTemplate).attr('id',id).addClass(o.panelClass).insertAfter(self.$panels[i-1]||self.element);$panel.data('destroy.tabs',true);}
self.$panels=self.$panels.add($panel);}
else
o.disabled.push(i+1);});if(init){this.element.addClass(o.navClass);this.$panels.each(function(){var $this=$(this);$this.addClass(o.panelClass);});if(o.selected===undefined){if(location.hash){this.$tabs.each(function(i,a){if(a.hash==location.hash){o.selected=i;if($.browser.msie||$.browser.opera){var $toShow=$(location.hash),toShowId=$toShow.attr('id');$toShow.attr('id','');setTimeout(function(){$toShow.attr('id',toShowId);},500);}
scrollTo(0,0);return false;}});}
else if(o.cookie){var index=parseInt($.cookie('ui-tabs-'+$.data(self.element[0])),10);if(index&&self.$tabs[index])
o.selected=index;}
else if(self.$lis.filter('.'+o.selectedClass).length)
o.selected=self.$lis.index(self.$lis.filter('.'+o.selectedClass)[0]);}
o.selected=o.selected===null||o.selected!==undefined?o.selected:0;o.disabled=$.unique(o.disabled.concat($.map(this.$lis.filter('.'+o.disabledClass),function(n,i){return self.$lis.index(n);}))).sort();if($.inArray(o.selected,o.disabled)!=-1)
o.disabled.splice($.inArray(o.selected,o.disabled),1);this.$panels.addClass(o.hideClass);this.$lis.removeClass(o.selectedClass);if(o.selected!==null){this.$panels.eq(o.selected).show().removeClass(o.hideClass);this.$lis.eq(o.selected).addClass(o.selectedClass);var onShow=function(){self._trigger('show',null,self.ui(self.$tabs[o.selected],self.$panels[o.selected]));};if($.data(this.$tabs[o.selected],'load.tabs'))
this.load(o.selected,onShow);else
onShow();}
$(window).bind('unload',function(){self.$tabs.unbind('.tabs');self.$lis=self.$tabs=self.$panels=null;});}
else
o.selected=this.$lis.index(this.$lis.filter('.'+o.selectedClass)[0]);if(o.cookie)
$.cookie('ui-tabs-'+$.data(self.element[0]),o.selected,o.cookie);for(var i=0,li;li=this.$lis[i];i++)
$(li)[$.inArray(i,o.disabled)!=-1&&!$(li).hasClass(o.selectedClass)?'addClass':'removeClass'](o.disabledClass);if(o.cache===false)
this.$tabs.removeData('cache.tabs');var hideFx,showFx,baseFx={'min-width':0,duration:1},baseDuration='normal';if(o.fx&&o.fx.constructor==Array)
hideFx=o.fx[0]||baseFx,showFx=o.fx[1]||baseFx;else
hideFx=showFx=o.fx||baseFx;var resetCSS={display:'',overflow:'',height:''};if(!$.browser.msie)
resetCSS.opacity='';function hideTab(clicked,$hide,$show){$hide.animate(hideFx,hideFx.duration||baseDuration,function(){$hide.addClass(o.hideClass).css(resetCSS);if($.browser.msie&&hideFx.opacity)
$hide[0].style.filter='';if($show)
showTab(clicked,$show,$hide);});}
function showTab(clicked,$show,$hide){if(showFx===baseFx)
$show.css('display','block');$show.animate(showFx,showFx.duration||baseDuration,function(){$show.removeClass(o.hideClass).css(resetCSS);if($.browser.msie&&showFx.opacity)
$show[0].style.filter='';self._trigger('show',null,self.ui(clicked,$show[0]));});}
function switchTab(clicked,$li,$hide,$show){$li.addClass(o.selectedClass).siblings().removeClass(o.selectedClass);hideTab(clicked,$hide,$show);}
this.$tabs.unbind('.tabs').bind(o.event,function(){var $li=$(this).parents('li:eq(0)'),$hide=self.$panels.filter(':visible'),$show=$(this.hash);if(($li.hasClass(o.selectedClass)&&!o.unselect)||$li.hasClass(o.disabledClass)||$(this).hasClass(o.loadingClass)||self._trigger('select',null,self.ui(this,$show[0]))===false){this.blur();return false;}
self.options.selected=self.$tabs.index(this);if(o.unselect){if($li.hasClass(o.selectedClass)){self.options.selected=null;$li.removeClass(o.selectedClass);self.$panels.stop();hideTab(this,$hide);this.blur();return false;}else if(!$hide.length){self.$panels.stop();var a=this;self.load(self.$tabs.index(this),function(){$li.addClass(o.selectedClass).addClass(o.unselectClass);showTab(a,$show);});this.blur();return false;}}
if(o.cookie)
$.cookie('ui-tabs-'+$.data(self.element[0]),self.options.selected,o.cookie);self.$panels.stop();if($show.length){var a=this;self.load(self.$tabs.index(this),$hide.length?function(){switchTab(a,$li,$hide,$show);}:function(){$li.addClass(o.selectedClass);showTab(a,$show);});}else
throw'jQuery UI Tabs: Mismatching fragment identifier.';if($.browser.msie)
this.blur();return false;});if(!(/^click/).test(o.event))
this.$tabs.bind('click.tabs',function(){return false;});},add:function(url,label,index){if(index==undefined)
index=this.$tabs.length;var o=this.options;var $li=$(o.tabTemplate.replace(/#\{href\}/g,url).replace(/#\{label\}/g,label));$li.data('destroy.tabs',true);var id=url.indexOf('#')==0?url.replace('#',''):this._tabId($('a:first-child',$li)[0]);var $panel=$('#'+id);if(!$panel.length){$panel=$(o.panelTemplate).attr('id',id).addClass(o.hideClass).data('destroy.tabs',true);}
$panel.addClass(o.panelClass);if(index>=this.$lis.length){$li.appendTo(this.element);$panel.appendTo(this.element[0].parentNode);}else{$li.insertBefore(this.$lis[index]);$panel.insertBefore(this.$panels[index]);}
o.disabled=$.map(o.disabled,function(n,i){return n>=index?++n:n});this._tabify();if(this.$tabs.length==1){$li.addClass(o.selectedClass);$panel.removeClass(o.hideClass);var href=$.data(this.$tabs[0],'load.tabs');if(href)
this.load(index,href);}
this._trigger('add',null,this.ui(this.$tabs[index],this.$panels[index]));},remove:function(index){var o=this.options,$li=this.$lis.eq(index).remove(),$panel=this.$panels.eq(index).remove();if($li.hasClass(o.selectedClass)&&this.$tabs.length>1)
this.select(index+(index+1<this.$tabs.length?1:-1));o.disabled=$.map($.grep(o.disabled,function(n,i){return n!=index;}),function(n,i){return n>=index?--n:n});this._tabify();this._trigger('remove',null,this.ui($li.find('a')[0],$panel[0]));},enable:function(index){var o=this.options;if($.inArray(index,o.disabled)==-1)
return;var $li=this.$lis.eq(index).removeClass(o.disabledClass);if($.browser.safari){$li.css('display','inline-block');setTimeout(function(){$li.css('display','block');},0);}
o.disabled=$.grep(o.disabled,function(n,i){return n!=index;});this._trigger('enable',null,this.ui(this.$tabs[index],this.$panels[index]));},disable:function(index){var self=this,o=this.options;if(index!=o.selected){this.$lis.eq(index).addClass(o.disabledClass);o.disabled.push(index);o.disabled.sort();this._trigger('disable',null,this.ui(this.$tabs[index],this.$panels[index]));}},select:function(index){if(typeof index=='string')
index=this.$tabs.index(this.$tabs.filter('[href$='+index+']')[0]);this.$tabs.eq(index).trigger(this.options.event);},load:function(index,callback){var self=this,o=this.options,$a=this.$tabs.eq(index),a=$a[0],bypassCache=callback==undefined||callback===false,url=$a.data('load.tabs');callback=callback||function(){};if(!url||!bypassCache&&$.data(a,'cache.tabs')){callback();return;}
var inner=function(parent){var $parent=$(parent),$inner=$parent.find('*:last');return $inner.length&&$inner.is(':not(img)')&&$inner||$parent;};var cleanup=function(){self.$tabs.filter('.'+o.loadingClass).removeClass(o.loadingClass).each(function(){if(o.spinner)
inner(this).parent().html(inner(this).data('label.tabs'));});self.xhr=null;};if(o.spinner){var label=inner(a).html();inner(a).wrapInner('<em></em>').find('em').data('label.tabs',label).html(o.spinner);}
var ajaxOptions=$.extend({},o.ajaxOptions,{url:url,success:function(r,s){$(a.hash).html(r);cleanup();if(o.cache)
$.data(a,'cache.tabs',true);self._trigger('load',null,self.ui(self.$tabs[index],self.$panels[index]));o.ajaxOptions.success&&o.ajaxOptions.success(r,s);callback();}});if(this.xhr){this.xhr.abort();cleanup();}
$a.addClass(o.loadingClass);setTimeout(function(){self.xhr=$.ajax(ajaxOptions);},0);},url:function(index,url){this.$tabs.eq(index).removeData('cache.tabs').data('load.tabs',url);},destroy:function(){var o=this.options;this.element.unbind('.tabs').removeClass(o.navClass).removeData('tabs');this.$tabs.each(function(){var href=$.data(this,'href.tabs');if(href)
this.href=href;var $this=$(this).unbind('.tabs');$.each(['href','load','cache'],function(i,prefix){$this.removeData(prefix+'.tabs');});});this.$lis.add(this.$panels).each(function(){if($.data(this,'destroy.tabs'))
$(this).remove();else
$(this).removeClass([o.selectedClass,o.unselectClass,o.disabledClass,o.panelClass,o.hideClass].join(' '));});}});$.ui.tabs.defaults={unselect:false,event:'click',disabled:[],cookie:null,spinner:'Loading&#8230;',cache:false,idPrefix:'ui-tabs-',ajaxOptions:{},fx:null,tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>',panelTemplate:'<div></div>',navClass:'ui-tabs-nav',selectedClass:'ui-tabs-selected',unselectClass:'ui-tabs-unselect',disabledClass:'ui-tabs-disabled',panelClass:'ui-tabs-panel',hideClass:'ui-tabs-hide',loadingClass:'ui-tabs-loading'};$.ui.tabs.getter="length";$.extend($.ui.tabs.prototype,{rotation:null,rotate:function(ms,continuing){continuing=continuing||false;var self=this,t=this.options.selected;function start(){self.rotation=setInterval(function(){t=++t<self.$tabs.length?t:0;self.select(t);},ms);}
function stop(e){if(!e||e.clientX){clearInterval(self.rotation);}}
if(ms){start();if(!continuing)
this.$tabs.bind(this.options.event,stop);else
this.$tabs.bind(this.options.event,function(){stop();t=self.options.selected;start();});}
else{stop();this.$tabs.unbind(this.options.event,stop);}}});})(jQuery);


/*font replacement*/
/*
 * Copyright (c) 2008 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var J=function(){return J.replace.apply(null,arguments)};var R=J.DOM={ready:(function(){var W=false,Y={loaded:1,complete:1};var V=[],X=function(){if(W){return}W=true;for(var Z;Z=V.shift();Z()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",X,false);window.addEventListener("pageshow",X,false)}if(!window.opera&&document.readyState){(function(){Y[document.readyState]?X():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");X()}catch(Z){setTimeout(arguments.callee,1)}})()}N(window,"load",X);return function(Z){if(!arguments.length){X()}else{W?Z():V.push(Z)}}})()};var K=J.CSS={Size:function(W,V){this.value=parseFloat(W);this.unit=String(W).match(/[a-z%]*$/)[0]||"px";this.convert=function(X){return X/V*this.value};this.convertFrom=function(X){return X/this.value*V};this.toString=function(){return this.value+this.unit}},getStyle:function(W){var V=document.defaultView;if(V&&V.getComputedStyle){return new A(V.getComputedStyle(W,null))}if(W.currentStyle){return new A(W.currentStyle)}return new A(W.style)},ready:(function(){var X=false;var W=[],Y=function(){X=true;for(var a;a=W.shift();a()){}};var V=Object.prototype.propertyIsEnumerable?E("style"):{length:0};var Z=E("link");R.ready(function(){var d=0,c;for(var b=0,a=Z.length;c=Z[b],b<a;++b){if(!c.disabled&&c.rel.toLowerCase()=="stylesheet"){++d}}if(document.styleSheets.length>=V.length+d){Y()}else{setTimeout(arguments.callee,10)}});return function(a){if(X){a()}else{W.push(a)}}})(),supports:function(X,W){var V=document.createElement("span").style;if(V[X]===undefined){return false}V[X]=W;return V[X]===W},textAlign:function(Y,X,V,W){if(X.get("textAlign")=="right"){if(V>0){Y=" "+Y}}else{if(V<W-1){Y+=" "}}return Y},textDecoration:function(a,Z){if(!Z){Z=this.getStyle(a)}var W={underline:null,overline:null,"line-through":null};for(var V=a;V.parentNode&&V.parentNode.nodeType==1;){var Y=true;for(var X in W){if(W[X]){continue}if(Z.get("textDecoration").indexOf(X)!=-1){W[X]=Z.get("color")}Y=false}if(Y){break}Z=this.getStyle(V=V.parentNode)}return W},textShadow:H(function(Z){if(Z=="none"){return null}var Y=[],a={},V,W=0;var X=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(V=X.exec(Z)){if(V[0]==","){Y.push(a);a={},W=0}else{if(V[1]){a.color=V[1]}else{a[["offX","offY","blur"][W++]]=V[2]}}}Y.push(a);return Y}),color:H(function(W){var V={};V.color=W.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(Y,X,Z){V.opacity=parseFloat(Z);return"rgb("+X+")"});return V}),textTransform:function(W,V){return W[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[V.get("textTransform")]||"toString"]()}};J.VML={parsePath:function(Y){var V=[],X=/([mrvxe])([^a-z]*)/g,W;while(W=X.exec(Y)){V.push({type:W[1],coords:W[2].split(",")})}return V}};function O(W){var V=this.face=W.face;this.glyphs=W.glyphs;this.w=W.w;this.baseSize=parseInt(V["units-per-em"],10);this.family=V["font-family"].toLowerCase();this.weight=V["font-weight"];this.style=V["font-style"]||"normal";this.viewBox=(function(){var X=V.bbox.split(/\s+/);return{minX:parseInt(X[0],10),minY:parseInt(X[1],10),width:parseInt(X[2],10)-parseInt(X[0],10),height:parseInt(X[3],10)-parseInt(X[1],10),toString:function(){return[this.minX,this.minY,this.width,this.height].join(" ")}}})();this.ascent=-parseInt(V.ascent,10);this.descent=-parseInt(V.descent,10);this.height=-this.ascent+this.descent}function D(){var W={},V={oblique:"italic",italic:"oblique"};this.add=function(X){(W[X.style]||(W[X.style]={}))[X.weight]=X};this.get=function(b,c){var a=W[b]||W[V[b]]||W.normal||W.italic||W.oblique;if(!a){return null}c={normal:400,bold:700}[c]||parseInt(c,10);if(a[c]){return a[c]}var Y={1:1,99:0}[c%100],e=[],Z,X;if(Y===undefined){Y=c>400}if(c==500){c=400}for(var d in a){d=parseInt(d,10);if(!Z||d<Z){Z=d}if(!X||d>X){X=d}e.push(d)}if(c<Z){c=Z}if(c>X){c=X}e.sort(function(g,f){return(Y?(g>c&&f>c)?g<f:g>f:(g<c&&f<c)?g>f:g<f)?-1:1});return a[e[0]]}}function U(){var X={},V=0;function W(Y){return Y.cufid||(Y.cufid=++V)}this.get=function(Y){var Z=W(Y);return X[Z]||(X[Z]={})}}function A(V){var X={},W={};this.get=function(Y){return X[Y]!=undefined?X[Y]:V[Y]};this.getSize=function(Z,Y){return W[Z]||(W[Z]=new K.Size(this.get(Z),Y))};this.extend=function(Y){for(var Z in Y){X[Z]=Y[Z]}return this}}function N(W,V,X){if(W.addEventListener){W.addEventListener(V,X,false)}else{if(W.attachEvent){W.attachEvent("on"+V,function(){return X.apply(W,arguments)})}}}function H(V){var W={};return function(X){if(!W.hasOwnProperty(X)){W[X]=V.apply(null,arguments)}return W[X]}}function B(a,Z){if(!Z){Z=K.getStyle(a)}var W=Z.get("fontFamily").split(/\s*,\s*/),Y;for(var X=0,V=W.length;X<V;++X){Y=W[X].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(G[Y]){return G[Y].get(Z.get("fontStyle"),Z.get("fontWeight"))}}return null}function E(V){return document.getElementsByTagName(V)}function F(){var V={},Y;for(var X=0,W=arguments.length;X<W;++X){for(Y in arguments[X]){V[Y]=arguments[X][Y]}}return V}function L(Y,g,W,h,Z,X){var f=h.separate;if(f=="none"){return T[h.engine].apply(null,arguments)}var e=document.createDocumentFragment(),b;var c=g.split(M[f]),V=(f=="words");if(V&&P){if(/^\s/.test(g)){c.unshift("")}if(/\s$/.test(g)){c.push("")}}for(var d=0,a=c.length;d<a;++d){b=T[h.engine](Y,V?K.textAlign(c[d],W,d,a):c[d],W,h,Z,X,d<a-1);if(b){e.appendChild(b)}}return e}function I(W,d){var b=C.get(W);if(!d){d=b.options}var X,V,a;for(var Y=W.firstChild;Y;Y=a){a=Y.nextSibling;if(Y.nodeType==1){if(!Y.firstChild){continue}if(!/cufon/.test(Y.className)){arguments.callee(Y,d);continue}}var c=Y.nodeType==3?Y.data:Y.alt;if(c===""){continue}if(!V){V=K.getStyle(W).extend(d)}if(!X){X=B(W,V)}if(!X){continue}var Z=L(X,c,V,d,Y,W);if(Z){Y.parentNode.replaceChild(Z,Y)}else{Y.parentNode.removeChild(Y)}}if(!b.options){b.options=d}}var P=" ".split(/\s+/).length==0;var C=new U();var S=[];var T={},G={},Q={enableTextDecoration:false,engine:null,printable:true,selector:(window.Sizzle||(window.dojo&&dojo.query)||(window.$$&&function(V){return $$(V)})||(window.$&&function(V){return $(V)})||(document.querySelectorAll&&function(V){return document.querySelectorAll(V)})||E),separate:"words",textShadow:"none"};var M={words:/\s+/,characters:""};J.now=function(){R.ready();return J};J.refresh=function(){var X=S.splice(0,S.length);for(var W=0,V=X.length;W<V;++W){J.replace.apply(null,X[W])}return J};J.registerEngine=function(W,V){if(!V){return J}T[W]=V;return J.set("engine",W)};J.registerFont=function(X){var V=new O(X),W=V.family;if(!G[W]){G[W]=new D()}G[W].add(V);return J.set("fontFamily",W)};J.replace=function(X,W,V){W=F(Q,W);if(!W.engine){return J}if(typeof W.textShadow=="string"){W.textShadow=K.textShadow(W.textShadow)}if(!V){S.push(arguments)}if(X.nodeType||typeof X=="string"){X=[X]}K.ready(function(){for(var Z=0,Y=X.length;Z<Y;++Z){var a=X[Z];if(typeof a=="string"){J.replace(W.selector(a),W,true)}else{I(a,W)}}});return J};J.set=function(V,W){Q[V]=W;return J};return J})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}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("@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:none}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,I){var N=0,M=0;var G=Cufon.VML.parsePath(O);var H=new Array(G.length-1);generate:for(var K=0,J=G.length;K<J;++K){var L=G[K].coords;switch(G[K].type){case"v":H[K]={m:"bezierCurveTo",a:[N+Number(L[0]),M+Number(L[1]),N+Number(L[2]),M+Number(L[3]),N+=Number(L[4]),M+=Number(L[5])]};break;case"r":H[K]={m:"lineTo",a:[N+=Number(L[0]),M+=Number(L[1])]};break;case"m":H[K]={m:"moveTo",a:[N=Number(L[0]),M=Number(L[1])]};break;case"x":H[K]={m:"closePath"};break;case"e":break generate}I[H[K].m].apply(I,H[K].a)}return H}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(p,S,j,O,W,q){var U=p.viewBox;var I=j.getSize("fontSize",p.baseSize);var f=j.get("letterSpacing");f=(f=="normal")?0:I.convertFrom(parseInt(f,10));var V=0,h=0,e=0,Q=0;var T=O.textShadow,c=[];if(T){for(var o=0,k=T.length;o<k;++o){var Y=T[o];var b=I.convertFrom(parseFloat(Y.offX));var a=I.convertFrom(parseFloat(Y.offY));c[o]=[b,a];if(a<V){V=a}if(b>h){h=b}if(a>e){e=a}if(b<Q){Q=b}}}var t=Cufon.CSS.textTransform(S,j).split("");var G=0,R=null;for(var o=0,k=t.length;o<k;++o){var P=p.glyphs[t[o]]||p.missingGlyph;if(!P){continue}G+=R=Number(P.w||p.w)+f}if(R===null){return null}h+=(U.width-R);Q+=U.minX;var N=document.createElement("span");N.className="cufon cufon-canvas";N.alt=S;var J=document.createElement("canvas");var u=N.style;var Z=J.style;var H=I.convert(U.height-V+e);var s=Math.ceil(H);var d=s/H;J.width=Math.ceil(I.convert(G+h-Q)*d);J.height=s;V+=U.minY;Z.top=Math.round(I.convert(V-p.ascent))+"px";Z.left=Math.round(I.convert(Q))+"px";var M=Math.ceil(I.convert(G*d))+"px";if(A){u.width=M;u.height=I.convert(p.height)+"px"}else{u.paddingLeft=M;u.paddingBottom=(I.convert(p.height)-1)+"px"}var r=J.getContext("2d"),X=s/U.height;r.scale(X,X);r.translate(-Q,-V);r.lineWidth=p.face["underline-thickness"];r.save();function K(i,g){r.strokeStyle=g;r.beginPath();r.moveTo(0,i);r.lineTo(G,i);r.stroke()}var L=O.enableTextDecoration?Cufon.CSS.textDecoration(q,j):{};if(L.underline){K(-p.face["underline-position"],L.underline)}if(L.overline){K(p.ascent,L.overline)}r.fillStyle=j.get("color");function n(){for(var v=0,g=t.length;v<g;++v){var w=p.glyphs[t[v]]||p.missingGlyph;if(!w){continue}r.beginPath();if(w.d){if(w.code){C(w.code,r)}else{w.code=D("m"+w.d,r)}}r.fill();r.translate(Number(w.w||p.w)+f,0)}}if(T){for(var o=0,k=T.length;o<k;++o){var Y=T[o];r.save();r.fillStyle=Y.color;r.translate.apply(r,c[o]);n();r.restore()}}n();r.restore();if(L["line-through"]){K(-p.descent,L["line-through"])}N.appendChild(J);if(O.printable){var m=document.createElement("span");m.className="cufon-alt";m.appendChild(document.createTextNode(S));N.appendChild(m)}return N}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{display:none}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}var C=0;function B(E,F){return A(E,/(?:em|ex|%)$/i.test(F)?"1em":F)}function A(H,I){if(/px$/i.test(I)){return parseFloat(I)}var G=H.style.left,F=H.runtimeStyle.left;H.runtimeStyle.left=H.currentStyle.left;H.style.left=I;var E=H.style.pixelLeft;H.style.left=G;H.runtimeStyle.left=F;return E}function D(F,H){var E=document.createElement("cvml:shapetype");E.id="cufon-glyph-"+C++;F.typeRef="#"+E.id;E.stroked="f";E.coordsize=H.width+","+H.height;E.coordorigin=H.minX+","+H.minY;var G="m"+H.minX+","+H.minY+" r"+H.width+","+H.height;E.path=(F.d?"m"+F.d+"x":"")+G;document.body.insertBefore(E,document.body.firstChild)}return function(j,R,e,O,V,k,c){var U=j.viewBox;var G=e.computedFontSize||(e.computedFontSize=new Cufon.CSS.Size(B(k,e.get("fontSize"))+"px",j.baseSize));var b=e.computedLSpacing;if(b==undefined){b=e.get("letterSpacing");e.computedLSpacing=b=(b=="normal")?0:G.convertFrom(A(k,b))}var N=document.createElement("span");N.className="cufon cufon-vml";N.alt=R;var H=document.createElement("cvml:group");var r=N.runtimeStyle;var X=H.runtimeStyle;var F=G.convert(U.height);X.height=Math.ceil(F);X.top=Math.round(G.convert(U.minY-j.ascent));X.left=Math.round(G.convert(U.minX));var a=parseInt(X.height,10)/F;r.height=G.convert(-j.ascent+j.descent)+"px";var J=O.enableTextDecoration?Cufon.CSS.textDecoration(k,e):{};var Q=e.get("color");var o=Cufon.CSS.textTransform(R,e).split("");var E=0,Z=0,K=null;var T=O.textShadow;for(var h=0,f=o.length;h<f;++h){var P=j.glyphs[o[h]]||j.missingGlyph;if(!P){continue}if(!P.typeRef){D(P,U)}var L=document.createElement("cvml:shape");L.type=P.typeRef;var m=L.runtimeStyle;m.width=U.width;m.height=U.height;m.top=0;m.left=Z;m.zIndex=1;L.fillcolor=Q;H.appendChild(L);if(T){for(var Y=0,d=T.length;Y<d;++Y){var W=T[Y];var q=Cufon.CSS.color(W.color);var I=L.cloneNode(false),S=I.runtimeStyle;S.top=G.convertFrom(parseFloat(W.offY));S.left=Z+G.convertFrom(parseFloat(W.offX));S.zIndex=0;I.fillcolor=q.color;if(q.opacity){var n=document.createElement("cvml:fill");n.opacity=q.opacity;I.appendChild(n)}H.appendChild(I)}}K=Number(P.w||j.w)+b;E+=K;Z+=K}if(K===null){return null}var M=-U.minX+E+(U.width-K);H.coordsize=M+","+U.height;X.width=G.convert(M*a);r.width=Math.max(Math.ceil(G.convert(E*a)),0);N.appendChild(H);if(O.printable){var g=document.createElement("span");g.className="cufon-alt";g.innerText=R;N.appendChild(g)}if(!c){N.appendChild(document.createElement("cvml:group"))}return N}})());


/*font to embed*/
Cufon.registerFont({"w":200,"face":{"font-family":"Frutiger LT Std","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 2 2 2 4 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-9 -290 359 90","underline-thickness":"18","underline-position":"-36","stemh":"27","stemv":"34","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"!":{"d":"90,-251r-4,180r-31,0r-5,-180r40,0xm50,0r0,-40r40,0r0,40r-40,0","w":140},"\"":{"d":"111,-163r0,-88r32,0r0,88r-32,0xm57,-163r0,-88r32,0r0,88r-32,0"},"#":{"d":"34,0r10,-75r-34,0r0,-27r38,0r7,-47r-35,0r0,-27r39,0r10,-75r27,0r-10,75r43,0r10,-75r27,0r-10,75r34,0r0,27r-38,0r-7,47r35,0r0,27r-39,0r-10,75r-27,0r10,-75r-42,0r-11,75r-27,0xm118,-102r7,-47r-43,0r-6,47r42,0"},"$":{"d":"89,-157r0,-64v-33,8,-29,54,0,64xm110,-104r0,73v33,-10,32,-65,0,-73xm89,38r0,-34v-23,0,-42,-3,-59,-10r4,-35v15,11,31,14,55,14r0,-88v-31,-14,-63,-33,-62,-72v0,-37,27,-62,62,-67r0,-36r21,0r0,34v17,1,35,4,51,9r-5,34v-13,-8,-27,-11,-46,-11r0,78v30,17,66,33,63,76v0,39,-25,66,-63,72r0,36r-21,0"},"%":{"d":"94,-112v-42,0,-54,-35,-54,-72v0,-38,10,-72,54,-72v43,0,54,34,54,72v0,37,-13,72,-54,72xm94,-137v21,0,22,-32,22,-47v0,-16,1,-46,-22,-46v-23,0,-23,31,-23,46v0,15,1,47,23,47xm266,-21v22,0,23,-32,23,-47v0,-16,1,-46,-23,-46v-22,0,-22,31,-22,46v0,15,1,47,22,47xm266,4v-41,0,-54,-35,-54,-72v0,-38,10,-72,54,-72v44,0,54,34,54,72v0,37,-12,72,-54,72xm89,8r156,-267r26,0r-156,267r-26,0","w":360},"&":{"d":"199,-136r34,0v-3,41,-14,64,-29,86r44,50r-45,0r-20,-24v-39,50,-161,31,-153,-42v0,-38,22,-60,56,-73v-13,-17,-26,-33,-26,-58v0,-40,30,-59,66,-59v32,0,62,18,62,57v0,32,-29,54,-55,66r51,58v10,-15,14,-32,15,-61xm68,-68v-3,53,80,54,96,21r-61,-71v-19,13,-35,25,-35,50xm124,-228v-39,0,-34,59,-8,75v15,-8,38,-23,38,-44v0,-23,-13,-31,-30,-31","w":259},"(":{"d":"115,50r-33,0v-32,-49,-59,-100,-59,-161v0,-61,27,-111,59,-161r33,0v-28,49,-56,103,-56,161v0,58,27,112,56,161","w":119},")":{"d":"5,-272r32,0v33,49,59,101,59,161v0,62,-26,111,-59,161r-32,0v28,-49,55,-103,55,-161v0,-58,-26,-112,-55,-161","w":119},"*":{"d":"129,-112r-29,-49r-29,49r-27,-18r40,-44r-58,-12r10,-30r54,22r-5,-57r32,0r-5,57r53,-22r9,30r-56,12r38,44"},"+":{"d":"17,-75r0,-32r75,0r0,-75r32,0r0,75r75,0r0,32r-75,0r0,75r-32,0r0,-75r-75,0","w":216},",":{"d":"7,48r23,-88r40,0r-30,88r-33,0","w":100},"-":{"d":"14,-83r0,-28r92,0r0,28r-92,0","w":119},".":{"d":"30,0r0,-40r40,0r0,40r-40,0","w":100},"\/":{"d":"-9,4r86,-260r32,0r-86,260r-32,0","w":100},"0":{"d":"15,-126v0,-55,16,-130,85,-130v70,0,85,75,85,130v0,55,-15,130,-85,130v-69,0,-85,-75,-85,-130xm53,-126v0,32,4,101,47,101v43,0,47,-69,47,-101v0,-31,-6,-100,-47,-100v-41,0,-47,69,-47,100"},"1":{"d":"97,0r0,-210r-39,33r-19,-24r62,-50r32,0r0,251r-36,0"},"2":{"d":"174,-184v-6,64,-77,116,-117,154r120,0r0,30r-159,0r0,-39v38,-37,111,-84,117,-147v2,-49,-77,-45,-105,-24r-4,-31v58,-29,149,-17,148,57"},"3":{"d":"52,-116r0,-29v38,1,80,-2,83,-41v0,-52,-74,-45,-105,-26r-3,-32v56,-23,148,-16,146,57v1,32,-27,50,-54,58v33,7,56,26,56,62v0,79,-95,78,-157,62r3,-34v32,20,114,24,116,-29v-1,-45,-41,-50,-85,-48"},"4":{"d":"124,-87r-1,-135r-78,135r79,0xm124,0r0,-57r-117,0r0,-30r101,-164r52,0r0,164r32,0r0,30r-32,0r0,57r-36,0"},"5":{"d":"172,-251r0,29r-104,0r-2,68v55,-16,115,18,113,74v5,75,-89,97,-150,76r1,-34v38,24,111,16,111,-37v4,-55,-70,-64,-109,-44r2,-132r138,0"},"6":{"d":"172,-248r-5,32v-60,-31,-120,14,-114,81v46,-50,138,-13,131,56v0,52,-35,83,-81,83v-70,0,-84,-63,-84,-120v0,-68,22,-140,102,-140v17,0,42,4,51,8xm101,-25v58,1,61,-102,3,-104v-30,0,-47,23,-47,51v0,24,15,53,44,53"},"7":{"d":"177,-251r0,29r-93,222r-40,0r96,-222r-122,0r0,-29r159,0"},"8":{"d":"99,4v-42,0,-85,-23,-85,-70v-1,-34,25,-55,53,-67v-79,-30,-56,-124,34,-123v92,2,103,89,33,122v30,10,52,33,52,66v0,51,-39,72,-87,72xm148,-65v1,-35,-27,-41,-54,-54v-21,15,-42,21,-42,51v-2,54,96,58,96,3xm56,-190v0,17,18,29,52,45v29,-22,33,-32,33,-49v-5,-46,-81,-42,-85,4"},"9":{"d":"148,-117v-45,50,-140,16,-132,-55v0,-52,35,-84,81,-84v70,0,84,64,84,121v0,68,-22,139,-101,139v-18,0,-43,-4,-52,-8r5,-32v59,33,119,-13,115,-81xm99,-226v-58,-1,-61,101,-3,103v30,0,47,-22,47,-50v0,-24,-14,-53,-44,-53"},":":{"d":"70,-184r0,41r-40,0r0,-41r40,0xm30,0r0,-40r40,0r0,40r-40,0","w":100},";":{"d":"7,48r23,-88r40,0r-30,88r-33,0xm70,-184r0,41r-40,0r0,-41r40,0","w":100},"<":{"d":"199,-185r0,32r-141,62r141,62r0,32r-182,-80r0,-28","w":216},"=":{"d":"17,-113r0,-32r182,0r0,32r-182,0xm17,-37r0,-32r182,0r0,32r-182,0","w":216},">":{"d":"17,3r0,-32r141,-62r-141,-62r0,-32r182,80r0,28","w":216},"?":{"d":"164,-190v2,51,-56,64,-57,119r-34,0v-8,-53,51,-69,53,-117v1,-47,-73,-40,-97,-22r-2,-34v49,-24,139,-12,137,54xm70,0r0,-40r41,0r0,40r-41,0","w":180},"@":{"d":"132,-78v40,1,70,-84,18,-89v-28,0,-48,31,-48,56v0,19,11,33,30,33xm221,-192r-27,107v1,5,2,9,7,9v21,0,44,-31,44,-67v0,-56,-43,-87,-96,-87v-60,0,-101,46,-101,105v-7,104,124,133,183,72r27,0v-60,99,-248,63,-240,-73v0,-78,60,-130,132,-130v63,0,120,44,120,107v0,69,-58,100,-85,100v-12,1,-19,-8,-22,-20v-29,38,-92,14,-92,-37v0,-63,77,-127,118,-67r5,-19r27,0","w":288},"A":{"d":"4,0r108,-251r37,0r107,251r-40,0r-25,-63r-123,0r-26,63r-38,0xm179,-93r-50,-124r-50,124r100,0","w":259},"B":{"d":"30,0r0,-251v72,-1,159,-7,156,63v1,36,-22,51,-52,61v34,2,59,25,59,60v-1,78,-87,67,-163,67xm66,-114r0,84v43,0,88,4,88,-40v-2,-47,-45,-44,-88,-44xm66,-222r0,78v42,0,84,4,84,-40v-3,-45,-43,-38,-84,-38","w":219},"C":{"d":"208,-245r-2,35v-67,-39,-154,8,-149,84v-2,81,82,122,150,86r2,35v-101,32,-192,-22,-190,-122v-3,-96,96,-155,189,-118","w":219},"D":{"d":"30,0r0,-251v115,-10,207,18,208,123v2,112,-89,138,-208,128xm66,-220r0,188v81,6,136,-15,134,-94v-2,-75,-55,-102,-134,-94","w":259},"E":{"d":"34,0r0,-251r141,0r0,31r-105,0r0,74r95,0r0,32r-95,0r0,82r105,0r0,32r-141,0"},"F":{"d":"30,0r0,-251r133,0r0,31r-97,0r0,74r93,0r0,32r-93,0r0,114r-36,0","w":180},"G":{"d":"226,-243r-3,36v-18,-11,-37,-17,-69,-17v-58,0,-97,42,-97,98v-3,74,69,114,135,94r0,-76r-53,0r0,-30r89,0r0,131v-13,5,-37,11,-76,11v-80,0,-133,-51,-133,-131v-7,-105,115,-154,207,-116","w":259},"H":{"d":"34,0r0,-251r36,0r0,105r120,0r0,-105r36,0r0,251r-36,0r0,-114r-120,0r0,114r-36,0","w":259},"I":{"d":"32,0r0,-251r36,0r0,251r-36,0","w":100},"J":{"d":"8,0r0,-31v36,13,68,-6,63,-45r0,-175r36,0r0,186v8,44,-44,82,-99,65","w":140},"K":{"d":"34,0r0,-251r36,0r0,110r107,-110r48,0r-118,119r127,132r-52,0r-112,-123r0,123r-36,0","w":240},"L":{"d":"32,0r0,-251r36,0r0,219r105,0r0,32r-141,0","w":180},"M":{"d":"32,0r0,-251r60,0r79,209r77,-209r59,0r0,251r-36,0r0,-217r-83,217r-36,0r-84,-217r0,217r-36,0","w":339},"N":{"d":"32,0r0,-251r49,0r111,202r0,-202r36,0r0,251r-46,0r-114,-207r0,207r-36,0","w":259},"O":{"d":"57,-126v0,50,25,99,83,99v58,0,83,-49,83,-99v0,-51,-28,-98,-83,-98v-55,0,-83,47,-83,98xm19,-126v0,-74,45,-130,121,-130v76,0,121,56,121,130v0,77,-44,130,-121,130v-77,0,-121,-53,-121,-130","w":280},"P":{"d":"66,-220r0,88v44,1,86,4,86,-44v0,-43,-44,-46,-86,-44xm30,0r0,-251v79,-1,159,-7,160,75v-2,69,-57,80,-124,76r0,100r-36,0"},"Q":{"d":"57,-126v0,50,25,99,83,99v58,0,83,-49,83,-99v0,-51,-28,-98,-83,-98v-55,0,-83,47,-83,98xm207,46r-47,-43v-89,9,-141,-45,-141,-129v0,-74,45,-130,121,-130v137,-10,160,208,53,250r59,52r-45,0","w":280},"R":{"d":"30,0r0,-251v75,2,157,-14,159,68v1,31,-25,51,-52,58v11,4,17,9,25,25r47,100r-41,0r-38,-87v-15,-32,-31,-24,-64,-25r0,112r-36,0xm66,-220r0,77v43,3,85,-5,85,-40v0,-33,-44,-40,-85,-37","w":219},"S":{"d":"151,-247r-5,34v-32,-16,-86,-22,-91,23v0,48,108,37,108,119v2,73,-82,87,-143,65r3,-34v33,16,98,25,102,-28v0,-57,-108,-41,-108,-119v-1,-65,75,-82,134,-60","w":180},"T":{"d":"82,0r0,-220r-78,0r0,-31r192,0r0,31r-78,0r0,220r-36,0"},"U":{"d":"228,-251r0,147v0,71,-36,108,-98,108v-62,0,-98,-37,-98,-108r0,-147r36,0v7,87,-30,223,62,224v92,0,54,-138,62,-224r36,0","w":259},"V":{"d":"238,-251r-96,251r-45,0r-95,-251r40,0r79,219r79,-219r38,0","w":240},"W":{"d":"77,0r-76,-251r39,0r61,215r54,-215r51,0r55,215r60,-215r38,0r-77,251r-47,0r-55,-220r-55,220r-48,0","w":360},"X":{"d":"3,0r92,-131r-84,-120r43,0r67,96r67,-96r41,0r-85,120r93,131r-45,0r-74,-107r-72,107r-43,0","w":240},"Y":{"d":"102,0r0,-105r-98,-146r42,0r75,112r73,-112r42,0r-98,146r0,105r-36,0","w":240},"Z":{"d":"12,0r0,-32r130,-188r-126,0r0,-31r167,0r0,32r-130,187r132,0r0,32r-173,0"},"[":{"d":"34,50r0,-322r68,0r0,25r-36,0r0,272r36,0r0,25r-68,0","w":119},"\\":{"d":"77,4r-86,-260r32,0r86,260r-32,0","w":100},"]":{"d":"86,-272r0,322r-68,0r0,-25r36,0r0,-272r-36,0r0,-25r68,0","w":119},"^":{"d":"22,-106r71,-145r30,0r71,145r-32,0r-54,-112r-54,112r-32,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"39,-142r-2,-29v51,-33,134,-20,135,59r1,112r-32,0r0,-24v-8,11,-26,28,-57,28v-40,0,-67,-17,-67,-57v5,-59,64,-62,121,-60v7,-58,-69,-56,-99,-29xm87,-23v39,-1,55,-25,51,-64v-33,-2,-85,-6,-85,34v0,20,18,30,34,30"},"b":{"d":"29,0r0,-270r34,0r0,112v11,-17,29,-30,61,-30v53,0,79,44,79,93v0,50,-23,99,-78,99v-34,1,-53,-17,-64,-30r0,26r-32,0xm117,-23v67,-5,70,-136,0,-138v-71,1,-75,135,0,138","w":219},"c":{"d":"148,-181r-3,28v-50,-25,-95,11,-95,61v0,47,50,89,97,59r3,30v-71,26,-138,-21,-136,-89v-3,-71,65,-114,134,-89","w":159},"d":{"d":"159,0v-1,-8,2,-20,-1,-26v-9,14,-30,30,-63,30v-55,0,-78,-49,-78,-99v0,-49,25,-93,79,-93v32,0,50,13,61,30r0,-112r34,0r0,270r-32,0xm53,-93v-1,29,14,70,50,70v74,-3,71,-137,0,-138v-37,0,-51,35,-50,68","w":219},"e":{"d":"170,-41r0,33v-13,5,-28,12,-58,12v-66,0,-95,-39,-95,-99v0,-54,34,-93,86,-93v61,0,81,45,81,104r-131,0v0,36,28,61,60,61v22,0,48,-12,57,-18xm53,-109r95,0v0,-29,-17,-52,-46,-52v-33,0,-47,28,-49,52"},"f":{"d":"51,0r0,-156r-43,0r0,-28r43,0v-7,-62,18,-101,84,-88r-1,27v-41,-10,-55,17,-49,61r48,0r0,28r-48,0r0,156r-34,0","w":140},"g":{"d":"191,-184v-9,115,41,271,-95,264v-19,0,-36,-3,-65,-13r3,-31v58,34,134,19,123,-64v-15,19,-39,28,-62,28v-53,0,-78,-43,-78,-90v0,-48,26,-98,82,-98v33,-1,49,14,61,32r0,-28r31,0xm104,-27v31,0,53,-28,53,-63v0,-38,-17,-71,-53,-71v-68,2,-67,134,0,134","w":219},"h":{"d":"29,0r0,-270r34,0r0,113v13,-20,34,-31,59,-31v88,-4,67,105,69,188r-34,0v-4,-59,18,-161,-39,-161v-67,-2,-55,92,-55,161r-34,0","w":219},"i":{"d":"33,0r0,-184r34,0r0,184r-34,0xm69,-263r0,38r-38,0r0,-38r38,0","w":100},"j":{"d":"-6,78r1,-29v26,6,38,-8,38,-37r0,-196r34,0r0,190v0,27,-1,74,-52,74v-7,0,-16,0,-21,-2xm69,-263r0,38r-38,0r0,-38r38,0","w":100},"k":{"d":"29,0r0,-270r34,0r0,161r73,-75r47,0r-86,82r96,102r-48,0r-82,-94r0,94r-34,0"},"l":{"d":"33,0r0,-270r34,0r0,270r-34,0","w":100},"m":{"d":"28,0r0,-184r32,0v1,8,-2,21,1,27v22,-40,92,-45,110,5v33,-64,130,-36,121,34r0,118r-34,0r0,-109v0,-23,-5,-52,-33,-52v-64,4,-45,96,-48,161r-34,0r0,-109v0,-23,-5,-52,-32,-52v-66,4,-46,95,-49,161r-34,0","w":320},"n":{"d":"29,0r0,-184r33,0r0,30v10,-21,35,-34,60,-34v88,-4,67,105,69,188r-34,0v-4,-59,18,-161,-39,-161v-67,-2,-55,92,-55,161r-34,0","w":219},"o":{"d":"17,-92v0,-56,37,-96,93,-96v56,0,93,40,93,96v0,53,-38,96,-93,96v-55,0,-93,-43,-93,-96xm110,-161v-73,0,-79,137,0,138v79,-1,73,-138,0,-138","w":219},"p":{"d":"29,76r0,-260r32,0v1,8,-2,20,1,26v9,-13,30,-30,62,-30v53,0,79,44,79,93v0,50,-23,99,-78,99v-33,0,-51,-12,-62,-29r0,101r-34,0xm117,-23v67,-5,70,-136,0,-138v-71,1,-75,135,0,138","w":219},"q":{"d":"191,-184r0,260r-34,0r0,-100v-11,17,-35,28,-62,28v-55,0,-78,-49,-78,-99v0,-49,25,-93,79,-93v33,-1,52,18,63,31r0,-27r32,0xm53,-93v-1,29,14,70,50,70v74,-3,71,-137,0,-138v-37,0,-51,35,-50,68","w":219},"r":{"d":"29,0r0,-184r31,0v1,9,-2,22,1,29v12,-25,40,-40,70,-30r0,30v-73,-24,-71,79,-68,155r-34,0","w":140},"s":{"d":"13,-6r2,-30v28,17,77,23,77,-13v0,-34,-80,-31,-80,-82v-2,-55,61,-66,107,-50r-3,30v-20,-13,-67,-16,-68,13v0,37,80,26,80,85v-1,59,-68,69,-115,47","w":140},"t":{"d":"126,-184r0,28r-48,0v2,53,-17,160,51,126r0,29v-39,13,-89,1,-85,-48r0,-107r-41,0r0,-28r41,0r0,-42r34,-11r0,53r48,0","w":140},"u":{"d":"191,-184r0,184r-33,0r0,-29v-10,21,-35,33,-60,33v-88,5,-67,-105,-69,-188r34,0v4,59,-18,161,39,161v67,2,55,-92,55,-161r34,0","w":219},"v":{"d":"176,-184r-66,184r-40,0r-66,-184r37,0r50,150r51,-150r34,0","w":180},"w":{"d":"296,-184r-59,184r-40,0r-48,-154r-46,154r-40,0r-59,-184r37,0r43,152r47,-152r40,0r47,152r44,-152r34,0","w":299},"x":{"d":"4,0r66,-96r-60,-88r42,0r40,66r41,-66r38,0r-59,88r64,96r-41,0r-46,-72r-45,72r-40,0","w":180},"y":{"d":"13,77r2,-27v4,1,10,3,16,3v30,0,40,-42,40,-46r-68,-191r37,0r50,152r50,-152r34,0r-67,188v-13,42,-37,89,-94,73","w":180},"z":{"d":"15,0r0,-30r106,-126r-100,0r0,-28r140,0r0,30r-106,127r110,0r0,27r-150,0","w":180},"{":{"d":"113,-272r0,25v-53,-11,-34,49,-37,93v0,31,-24,41,-33,43v9,2,33,10,33,45v0,38,-21,100,37,91r0,25v-39,3,-65,-3,-69,-45v0,-41,7,-105,-31,-103r0,-25v39,1,31,-63,31,-104v4,-42,30,-48,69,-45","w":119},"|":{"d":"24,-270r32,0r0,360r-32,0r0,-360","w":79},"}":{"d":"7,50r0,-25v52,11,34,-49,37,-92v0,-32,24,-42,33,-44v-9,-1,-33,-10,-33,-45v0,-38,21,-100,-37,-91r0,-25v39,-3,65,3,69,45v0,41,-7,105,31,104r0,25v-38,-2,-31,62,-31,103v-4,42,-30,48,-69,45","w":119},"~":{"d":"70,-118v24,-1,56,23,77,24v14,0,23,-13,31,-26r13,25v-8,15,-21,31,-45,31v-24,1,-56,-23,-77,-25v-14,0,-23,14,-31,27r-13,-25v8,-16,21,-31,45,-31","w":216},"'":{"d":"34,-163r0,-88r32,0r0,88r-32,0","w":100},"`":{"d":"42,-261r32,52r-24,0r-47,-52r39,0","w":100}}});

