// jQuery SWFObject v1.1.1 MIT/GPL @jon_neal
// http://jquery.thewikies.com/swfobject
(function(f,h,i){function k(a,c){var b=(a[0]||0)-(c[0]||0);return b>0||!b&&a.length>0&&k(a.slice(1),c.slice(1))}function l(a){if(typeof a!=g)return a;var c=[],b="";for(var d in a){b=typeof a[d]==g?l(a[d]):[d,m?encodeURI(a[d]):a[d]].join("=");c.push(b)}return c.join("&")}function n(a){var c=[];for(var b in a)a[b]&&c.push([b,'="',a[b],'"'].join(""));return c.join(" ")}function o(a){var c=[];for(var b in a)c.push(['<param name="',b,'" value="',l(a[b]),'" />'].join(""));return c.join("")}var g="object",m=true;try{var j=i.description||function(){return(new i("ShockwaveFlash.ShockwaveFlash")).GetVariable("$version")}()}catch(p){j="Unavailable"}var e=j.match(/\d+/g)||[0];f[h]={available:e[0]>0,activeX:i&&!i.name,version:{original:j,array:e,string:e.join("."),major:parseInt(e[0],10)||0,minor:parseInt(e[1],10)||0,release:parseInt(e[2],10)||0},hasVersion:function(a){a=/string|number/.test(typeof a)?a.toString().split("."):/object/.test(typeof a)?[a.major,a.minor]:a||[0,0];return k(e,a)},encodeParams:true,expressInstall:"expressInstall.swf",expressInstallIsActive:false,create:function(a){if(!a.swf||this.expressInstallIsActive||!this.available&&!a.hasVersionFail)return false;if(!this.hasVersion(a.hasVersion||1)){this.expressInstallIsActive=true;if(typeof a.hasVersionFail=="function")if(!a.hasVersionFail.apply(a))return false;a={swf:a.expressInstall||this.expressInstall,height:137,width:214,flashvars:{MMredirectURL:location.href,MMplayerType:this.activeX?"ActiveX":"PlugIn",MMdoctitle:document.title.slice(0,47)+" - Flash Player Installation"}}}attrs={data:a.swf,type:"application/x-shockwave-flash",id:a.id||"flash_"+Math.floor(Math.random()*999999999),width:a.width||320,height:a.height||180,style:a.style||""};m=typeof a.useEncode!=="undefined"?a.useEncode:this.encodeParams;a.movie=a.swf;a.wmode=a.wmode||"opaque";delete a.fallback;delete a.hasVersion;delete a.hasVersionFail;delete a.height;delete a.id;delete a.swf;delete a.useEncode;delete a.width;var c=document.createElement("div");c.innerHTML=["<object ",n(attrs),">",o(a),"</object>"].join("");return c.firstChild}};f.fn[h]=function(a){var c=this.find(g).andSelf().filter(g);/string|object/.test(typeof a)&&this.each(function(){var b=f(this),d;a=typeof a==g?a:{swf:a};a.fallback=this;if(d=f[h].create(a)){b.children().remove();b.html(d)}});typeof a=="function"&&c.each(function(){var b=this;b.jsInteractionTimeoutMs=b.jsInteractionTimeoutMs||0;if(b.jsInteractionTimeoutMs<660)b.clientWidth||b.clientHeight?a.call(b):setTimeout(function(){f(b)[h](a)},b.jsInteractionTimeoutMs+66)});return c}})(jQuery,"flash",navigator.plugins["Shockwave Flash"]||window.ActiveXObject);
(function($){
	
	$.fn.youTubeEmbed = function(settings){
		
		// Settings can be either a URL string,
		// or an object
		
		if(typeof settings == 'string'){
			settings = {'video' : settings}
		}
		
		// Default values
		
		var def = {
			width		: 640,
			progressBar	: true
		};
		
		settings = $.extend(def,settings);
		
		var elements = {
			originalDIV	: this,	// The "this" of the plugin
			container	: null,	// A container div, inserted by the plugin
			control		: null,	// The control play/pause button
			player		: null,	// The flash player
			progress	: null,	// Progress bar
			elapsed		: null	// The light blue elapsed bar
		};
		

		try{	

			settings.videoID = settings.video.match(/v=(.{11})/)[1];
			
			// The safeID is a stripped version of the
			// videoID, ready for use as a function name

			settings.safeID = settings.videoID.replace(/[^a-z0-9]/ig,'');
		
		} catch (e){
			// If the url was invalid, just return the "this"
			return elements.originalDIV;
		}

		// Fetch data about the video from YouTube's API

		var youtubeAPI = 'http://gdata.youtube.com/feeds/api/videos?v=2&alt=jsonc';

		$.get(youtubeAPI,{'q':settings.videoID},function(response){
			
			var data = response.data;
	
			if(!data.totalItems || data.items[0].accessControl.embed!="allowed"){
				
				// If the video was not found, or embedding is not allowed;
				
				return elements.originalDIV;
			}

			// data holds API info about the video:
			
			data = data.items[0];
			
			settings.ratio = 3/4;
			if(data.aspectRatio == "widescreen"){
				settings.ratio = 9/16;
			}
			
			settings.height = Math.round(settings.width*settings.ratio);

			// Creating a container inside the original div, which will
			// hold the object/embed code of the video

			elements.container = $('<div>',{className:'flashContainer',css:{
				width	: settings.width,
				height	: settings.height
			}}).appendTo(elements.originalDIV);

			// Embedding the YouTube chromeless player
			// and loading the video inside it:

			elements.container.flash({
				swf			: 'http://www.youtube.com/apiplayer?enablejsapi=1&version=3',
				id			: 'video_'+settings.safeID,
				height		: settings.height,
				width		: settings.width,
				allowScriptAccess:'always',
				wmode		: 'transparent',
				flashvars	: {
					"video_id"		: settings.videoID,
					"playerapiid"	: settings.safeID
				}
			});

			// We use get, because we need the DOM element
			// itself, and not a jquery object:
			
			elements.player = elements.container.flash().get(0);

			// Creating the control Div. It will act as a ply/pause button

			elements.control = $('<div>',{className:'controlDiv play'})
							   .appendTo(elements.container);

			// If the user wants to show the progress bar:

			if(settings.progressBar){
				elements.progress =	$('<div>',{className:'progressBar'})
									.appendTo(elements.container);

				elements.elapsed =	$('<div>',{className:'elapsed'})
									.appendTo(elements.progress);
				
				elements.progress.click(function(e){
					
					// When a click occurs on the progress bar, seek to the
					// appropriate moment of the video.
					
					var ratio = (e.pageX-elements.progress.offset().left)/elements.progress.outerWidth();
					
					elements.elapsed.width(ratio*100+'%');
					elements.player.seekTo(Math.round(data.duration*ratio), true);
					return false;
				});

			}

			var initialized = false;
			
			// Creating a global event listening function for the video
			// (required by YouTube's player API):
			
			window['eventListener_'+settings.safeID] = function(status){

				var interval;
				
				if(status==-1)	// video is loaded
				{
					if(!initialized)
					{
						// Listen for a click on the control button:
						
						elements.control.click(function(){
							if(!elements.container.hasClass('playing')){
								
								// If the video is not currently playing, start it:

								elements.control.removeClass('play replay').addClass('pause');
								elements.container.addClass('playing');
								elements.player.playVideo();
								
								if(settings.progressBar){
									interval = window.setInterval(function(){
										elements.elapsed.width(
											((elements.player.getCurrentTime()/data.duration)*100)+'%'
										);
									},1000);
								}
								
							} else {
								
								// If the video is currently playing, pause it:
								
								elements.control.removeClass('pause').addClass('play');
								elements.container.removeClass('playing');
								elements.player.pauseVideo();
								
								if(settings.progressBar){
									window.clearInterval(interval);
								}
							}
						});
						
						initialized = true;
					}
					else{
						// This will happen if the user has clicked on the
						// YouTube logo and has been redirected to youtube.com

						if(elements.container.hasClass('playing'))
						{
							elements.control.click();
						}
					}
				}
				
				if(status==0){ // video has ended
					elements.control.removeClass('pause').addClass('replay');
					elements.container.removeClass('playing');
				}
			}
			
			// This global function is called when the player is loaded.
			// It is shared by all the videos on the page:
			
			if(!window.onYouTubePlayerReady)
			{				
				window.onYouTubePlayerReady = function(playerID){
					document.getElementById('video_'+playerID).addEventListener('onStateChange','eventListener_'+playerID);
				}
			}
		},'jsonp');

		return elements.originalDIV;
	}

})(jQuery);

/*
 * jScrollPane - v2.0.0beta11 - 2011-06-11
 * http://jscrollpane.kelvinluck.com/
 *
 * Copyright (c) 2010 Kelvin Luck
 * Dual licensed under the MIT and GPL licenses.
 */
(function(b,a,c){b.fn.jScrollPane=function(e){function d(D,O){var az,Q=this,Y,ak,v,am,T,Z,y,q,aA,aF,av,i,I,h,j,aa,U,aq,X,t,A,ar,af,an,G,l,au,ay,x,aw,aI,f,L,aj=true,P=true,aH=false,k=false,ap=D.clone(false,false).empty(),ac=b.fn.mwheelIntent?"mwheelIntent.jsp":"mousewheel.jsp";aI=D.css("paddingTop")+" "+D.css("paddingRight")+" "+D.css("paddingBottom")+" "+D.css("paddingLeft");f=(parseInt(D.css("paddingLeft"),10)||0)+(parseInt(D.css("paddingRight"),10)||0);function at(aR){var aM,aO,aN,aK,aJ,aQ,aP=false,aL=false;az=aR;if(Y===c){aJ=D.scrollTop();aQ=D.scrollLeft();D.css({overflow:"hidden",padding:0});ak=D.innerWidth()+f;v=D.innerHeight();D.width(ak);Y=b('<div class="jspPane" />').css("padding",aI).append(D.children());am=b('<div class="jspContainer" />').css({width:ak+"px",height:v+"px"}).append(Y).appendTo(D)}else{D.css("width","");aP=az.stickToBottom&&K();aL=az.stickToRight&&B();aK=D.innerWidth()+f!=ak||D.outerHeight()!=v;if(aK){ak=D.innerWidth()+f;v=D.innerHeight();am.css({width:ak+"px",height:v+"px"})}if(!aK&&L==T&&Y.outerHeight()==Z){D.width(ak);return}L=T;Y.css("width","");D.width(ak);am.find(">.jspVerticalBar,>.jspHorizontalBar").remove().end()}Y.css("overflow","auto");if(aR.contentWidth){T=aR.contentWidth}else{T=Y[0].scrollWidth}Z=Y[0].scrollHeight;Y.css("overflow","");y=T/ak;q=Z/v;aA=q>1;aF=y>1;if(!(aF||aA)){D.removeClass("jspScrollable");Y.css({top:0,width:am.width()-f});n();E();R();w();ai()}else{D.addClass("jspScrollable");aM=az.maintainPosition&&(I||aa);if(aM){aO=aD();aN=aB()}aG();z();F();if(aM){N(aL?(T-ak):aO,false);M(aP?(Z-v):aN,false)}J();ag();ao();if(az.enableKeyboardNavigation){S()}if(az.clickOnTrack){p()}C();if(az.hijackInternalLinks){m()}}if(az.autoReinitialise&&!aw){aw=setInterval(function(){at(az)},az.autoReinitialiseDelay)}else{if(!az.autoReinitialise&&aw){clearInterval(aw)}}aJ&&D.scrollTop(0)&&M(aJ,false);aQ&&D.scrollLeft(0)&&N(aQ,false);D.trigger("jsp-initialised",[aF||aA])}function aG(){if(aA){am.append(b('<div class="jspVerticalBar" />').append(b('<div class="jspCap jspCapTop" />'),b('<div class="jspTrack" />').append(b('<div class="jspDrag" />').append(b('<div class="jspDragTop" />'),b('<div class="jspDragBottom" />'))),b('<div class="jspCap jspCapBottom" />')));U=am.find(">.jspVerticalBar");aq=U.find(">.jspTrack");av=aq.find(">.jspDrag");if(az.showArrows){ar=b('<a class="jspArrow jspArrowUp" />').bind("mousedown.jsp",aE(0,-1)).bind("click.jsp",aC);af=b('<a class="jspArrow jspArrowDown" />').bind("mousedown.jsp",aE(0,1)).bind("click.jsp",aC);if(az.arrowScrollOnHover){ar.bind("mouseover.jsp",aE(0,-1,ar));af.bind("mouseover.jsp",aE(0,1,af))}al(aq,az.verticalArrowPositions,ar,af)}t=v;am.find(">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow").each(function(){t-=b(this).outerHeight()});av.hover(function(){av.addClass("jspHover")},function(){av.removeClass("jspHover")}).bind("mousedown.jsp",function(aJ){b("html").bind("dragstart.jsp selectstart.jsp",aC);av.addClass("jspActive");var s=aJ.pageY-av.position().top;b("html").bind("mousemove.jsp",function(aK){V(aK.pageY-s,false)}).bind("mouseup.jsp mouseleave.jsp",ax);return false});o()}}function o(){aq.height(t+"px");I=0;X=az.verticalGutter+aq.outerWidth();Y.width(ak-X-f);try{if(U.position().left===0){Y.css("margin-left",X+"px")}}catch(s){}}function z(){if(aF){am.append(b('<div class="jspHorizontalBar" />').append(b('<div class="jspCap jspCapLeft" />'),b('<div class="jspTrack" />').append(b('<div class="jspDrag" />').append(b('<div class="jspDragLeft" />'),b('<div class="jspDragRight" />'))),b('<div class="jspCap jspCapRight" />')));an=am.find(">.jspHorizontalBar");G=an.find(">.jspTrack");h=G.find(">.jspDrag");if(az.showArrows){ay=b('<a class="jspArrow jspArrowLeft" />').bind("mousedown.jsp",aE(-1,0)).bind("click.jsp",aC);x=b('<a class="jspArrow jspArrowRight" />').bind("mousedown.jsp",aE(1,0)).bind("click.jsp",aC);
if(az.arrowScrollOnHover){ay.bind("mouseover.jsp",aE(-1,0,ay));x.bind("mouseover.jsp",aE(1,0,x))}al(G,az.horizontalArrowPositions,ay,x)}h.hover(function(){h.addClass("jspHover")},function(){h.removeClass("jspHover")}).bind("mousedown.jsp",function(aJ){b("html").bind("dragstart.jsp selectstart.jsp",aC);h.addClass("jspActive");var s=aJ.pageX-h.position().left;b("html").bind("mousemove.jsp",function(aK){W(aK.pageX-s,false)}).bind("mouseup.jsp mouseleave.jsp",ax);return false});l=am.innerWidth();ah()}}function ah(){am.find(">.jspHorizontalBar>.jspCap:visible,>.jspHorizontalBar>.jspArrow").each(function(){l-=b(this).outerWidth()});G.width(l+"px");aa=0}function F(){if(aF&&aA){var aJ=G.outerHeight(),s=aq.outerWidth();t-=aJ;b(an).find(">.jspCap:visible,>.jspArrow").each(function(){l+=b(this).outerWidth()});l-=s;v-=s;ak-=aJ;G.parent().append(b('<div class="jspCorner" />').css("width",aJ+"px"));o();ah()}if(aF){Y.width((am.outerWidth()-f)+"px")}Z=Y.outerHeight();q=Z/v;if(aF){au=Math.ceil(1/y*l);if(au>az.horizontalDragMaxWidth){au=az.horizontalDragMaxWidth}else{if(au<az.horizontalDragMinWidth){au=az.horizontalDragMinWidth}}h.width(au+"px");j=l-au;ae(aa)}if(aA){A=Math.ceil(1/q*t);if(A>az.verticalDragMaxHeight){A=az.verticalDragMaxHeight}else{if(A<az.verticalDragMinHeight){A=az.verticalDragMinHeight}}av.height(A+"px");i=t-A;ad(I)}}function al(aK,aM,aJ,s){var aO="before",aL="after",aN;if(aM=="os"){aM=/Mac/.test(navigator.platform)?"after":"split"}if(aM==aO){aL=aM}else{if(aM==aL){aO=aM;aN=aJ;aJ=s;s=aN}}aK[aO](aJ)[aL](s)}function aE(aJ,s,aK){return function(){H(aJ,s,this,aK);this.blur();return false}}function H(aM,aL,aP,aO){aP=b(aP).addClass("jspActive");var aN,aK,aJ=true,s=function(){if(aM!==0){Q.scrollByX(aM*az.arrowButtonSpeed)}if(aL!==0){Q.scrollByY(aL*az.arrowButtonSpeed)}aK=setTimeout(s,aJ?az.initialDelay:az.arrowRepeatFreq);aJ=false};s();aN=aO?"mouseout.jsp":"mouseup.jsp";aO=aO||b("html");aO.bind(aN,function(){aP.removeClass("jspActive");aK&&clearTimeout(aK);aK=null;aO.unbind(aN)})}function p(){w();if(aA){aq.bind("mousedown.jsp",function(aO){if(aO.originalTarget===c||aO.originalTarget==aO.currentTarget){var aM=b(this),aP=aM.offset(),aN=aO.pageY-aP.top-I,aK,aJ=true,s=function(){var aS=aM.offset(),aT=aO.pageY-aS.top-A/2,aQ=v*az.scrollPagePercent,aR=i*aQ/(Z-v);if(aN<0){if(I-aR>aT){Q.scrollByY(-aQ)}else{V(aT)}}else{if(aN>0){if(I+aR<aT){Q.scrollByY(aQ)}else{V(aT)}}else{aL();return}}aK=setTimeout(s,aJ?az.initialDelay:az.trackClickRepeatFreq);aJ=false},aL=function(){aK&&clearTimeout(aK);aK=null;b(document).unbind("mouseup.jsp",aL)};s();b(document).bind("mouseup.jsp",aL);return false}})}if(aF){G.bind("mousedown.jsp",function(aO){if(aO.originalTarget===c||aO.originalTarget==aO.currentTarget){var aM=b(this),aP=aM.offset(),aN=aO.pageX-aP.left-aa,aK,aJ=true,s=function(){var aS=aM.offset(),aT=aO.pageX-aS.left-au/2,aQ=ak*az.scrollPagePercent,aR=j*aQ/(T-ak);if(aN<0){if(aa-aR>aT){Q.scrollByX(-aQ)}else{W(aT)}}else{if(aN>0){if(aa+aR<aT){Q.scrollByX(aQ)}else{W(aT)}}else{aL();return}}aK=setTimeout(s,aJ?az.initialDelay:az.trackClickRepeatFreq);aJ=false},aL=function(){aK&&clearTimeout(aK);aK=null;b(document).unbind("mouseup.jsp",aL)};s();b(document).bind("mouseup.jsp",aL);return false}})}}function w(){if(G){G.unbind("mousedown.jsp")}if(aq){aq.unbind("mousedown.jsp")}}function ax(){b("html").unbind("dragstart.jsp selectstart.jsp mousemove.jsp mouseup.jsp mouseleave.jsp");if(av){av.removeClass("jspActive")}if(h){h.removeClass("jspActive")}}function V(s,aJ){if(!aA){return}if(s<0){s=0}else{if(s>i){s=i}}if(aJ===c){aJ=az.animateScroll}if(aJ){Q.animate(av,"top",s,ad)}else{av.css("top",s);ad(s)}}function ad(aJ){if(aJ===c){aJ=av.position().top}am.scrollTop(0);I=aJ;var aM=I===0,aK=I==i,aL=aJ/i,s=-aL*(Z-v);if(aj!=aM||aH!=aK){aj=aM;aH=aK;D.trigger("jsp-arrow-change",[aj,aH,P,k])}u(aM,aK);Y.css("top",s);D.trigger("jsp-scroll-y",[-s,aM,aK]).trigger("scroll")}function W(aJ,s){if(!aF){return}if(aJ<0){aJ=0}else{if(aJ>j){aJ=j}}if(s===c){s=az.animateScroll}if(s){Q.animate(h,"left",aJ,ae)
}else{h.css("left",aJ);ae(aJ)}}function ae(aJ){if(aJ===c){aJ=h.position().left}am.scrollTop(0);aa=aJ;var aM=aa===0,aL=aa==j,aK=aJ/j,s=-aK*(T-ak);if(P!=aM||k!=aL){P=aM;k=aL;D.trigger("jsp-arrow-change",[aj,aH,P,k])}r(aM,aL);Y.css("left",s);D.trigger("jsp-scroll-x",[-s,aM,aL]).trigger("scroll")}function u(aJ,s){if(az.showArrows){ar[aJ?"addClass":"removeClass"]("jspDisabled");af[s?"addClass":"removeClass"]("jspDisabled")}}function r(aJ,s){if(az.showArrows){ay[aJ?"addClass":"removeClass"]("jspDisabled");x[s?"addClass":"removeClass"]("jspDisabled")}}function M(s,aJ){var aK=s/(Z-v);V(aK*i,aJ)}function N(aJ,s){var aK=aJ/(T-ak);W(aK*j,s)}function ab(aW,aR,aK){var aO,aL,aM,s=0,aV=0,aJ,aQ,aP,aT,aS,aU;try{aO=b(aW)}catch(aN){return}aL=aO.outerHeight();aM=aO.outerWidth();am.scrollTop(0);am.scrollLeft(0);while(!aO.is(".jspPane")){s+=aO.position().top;aV+=aO.position().left;aO=aO.offsetParent();if(/^body|html$/i.test(aO[0].nodeName)){return}}aJ=aB();aP=aJ+v;if(s<aJ||aR){aS=s-az.verticalGutter}else{if(s+aL>aP){aS=s-v+aL+az.verticalGutter}}if(aS){M(aS,aK)}aQ=aD();aT=aQ+ak;if(aV<aQ||aR){aU=aV-az.horizontalGutter}else{if(aV+aM>aT){aU=aV-ak+aM+az.horizontalGutter}}if(aU){N(aU,aK)}}function aD(){return -Y.position().left}function aB(){return -Y.position().top}function K(){var s=Z-v;return(s>20)&&(s-aB()<10)}function B(){var s=T-ak;return(s>20)&&(s-aD()<10)}function ag(){am.unbind(ac).bind(ac,function(aM,aN,aL,aJ){var aK=aa,s=I;Q.scrollBy(aL*az.mouseWheelSpeed,-aJ*az.mouseWheelSpeed,false);return aK==aa&&s==I})}function n(){am.unbind(ac)}function aC(){return false}function J(){Y.find(":input,a").unbind("focus.jsp").bind("focus.jsp",function(s){ab(s.target,false)})}function E(){Y.find(":input,a").unbind("focus.jsp")}function S(){var s,aJ,aL=[];aF&&aL.push(an[0]);aA&&aL.push(U[0]);Y.focus(function(){D.focus()});D.attr("tabindex",0).unbind("keydown.jsp keypress.jsp").bind("keydown.jsp",function(aO){if(aO.target!==this&&!(aL.length&&b(aO.target).closest(aL).length)){return}var aN=aa,aM=I;switch(aO.keyCode){case 40:case 38:case 34:case 32:case 33:case 39:case 37:s=aO.keyCode;aK();break;case 35:M(Z-v);s=null;break;case 36:M(0);s=null;break}aJ=aO.keyCode==s&&aN!=aa||aM!=I;return !aJ}).bind("keypress.jsp",function(aM){if(aM.keyCode==s){aK()}return !aJ});if(az.hideFocus){D.css("outline","none");if("hideFocus" in am[0]){D.attr("hideFocus",true)}}else{D.css("outline","");if("hideFocus" in am[0]){D.attr("hideFocus",false)}}function aK(){var aN=aa,aM=I;switch(s){case 40:Q.scrollByY(az.keyboardSpeed,false);break;case 38:Q.scrollByY(-az.keyboardSpeed,false);break;case 34:case 32:Q.scrollByY(v*az.scrollPagePercent,false);break;case 33:Q.scrollByY(-v*az.scrollPagePercent,false);break;case 39:Q.scrollByX(az.keyboardSpeed,false);break;case 37:Q.scrollByX(-az.keyboardSpeed,false);break}aJ=aN!=aa||aM!=I;return aJ}}function R(){D.attr("tabindex","-1").removeAttr("tabindex").unbind("keydown.jsp keypress.jsp")}function C(){if(location.hash&&location.hash.length>1){var aL,aJ,aK=escape(location.hash);try{aL=b(aK)}catch(s){return}if(aL.length&&Y.find(aK)){if(am.scrollTop()===0){aJ=setInterval(function(){if(am.scrollTop()>0){ab(aK,true);b(document).scrollTop(am.position().top);clearInterval(aJ)}},50)}else{ab(aK,true);b(document).scrollTop(am.position().top)}}}}function ai(){b("a.jspHijack").unbind("click.jsp-hijack").removeClass("jspHijack")}function m(){ai();b("a[href^=#]").addClass("jspHijack").bind("click.jsp-hijack",function(){var s=this.href.split("#"),aJ;if(s.length>1){aJ=s[1];if(aJ.length>0&&Y.find("#"+aJ).length>0){ab("#"+aJ,true);return false}}})}function ao(){var aK,aJ,aM,aL,aN,s=false;am.unbind("touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick").bind("touchstart.jsp",function(aO){var aP=aO.originalEvent.touches[0];aK=aD();aJ=aB();aM=aP.pageX;aL=aP.pageY;aN=false;s=true}).bind("touchmove.jsp",function(aR){if(!s){return}var aQ=aR.originalEvent.touches[0],aP=aa,aO=I;Q.scrollTo(aK+aM-aQ.pageX,aJ+aL-aQ.pageY);aN=aN||Math.abs(aM-aQ.pageX)>5||Math.abs(aL-aQ.pageY)>5;
return aP==aa&&aO==I}).bind("touchend.jsp",function(aO){s=false}).bind("click.jsp-touchclick",function(aO){if(aN){aN=false;return false}})}function g(){var s=aB(),aJ=aD();D.removeClass("jspScrollable").unbind(".jsp");D.replaceWith(ap.append(Y.children()));ap.scrollTop(s);ap.scrollLeft(aJ)}b.extend(Q,{reinitialise:function(aJ){aJ=b.extend({},az,aJ);at(aJ)},scrollToElement:function(aK,aJ,s){ab(aK,aJ,s)},scrollTo:function(aK,s,aJ){N(aK,aJ);M(s,aJ)},scrollToX:function(aJ,s){N(aJ,s)},scrollToY:function(s,aJ){M(s,aJ)},scrollToPercentX:function(aJ,s){N(aJ*(T-ak),s)},scrollToPercentY:function(aJ,s){M(aJ*(Z-v),s)},scrollBy:function(aJ,s,aK){Q.scrollByX(aJ,aK);Q.scrollByY(s,aK)},scrollByX:function(s,aK){var aJ=aD()+Math[s<0?"floor":"ceil"](s),aL=aJ/(T-ak);W(aL*j,aK)},scrollByY:function(s,aK){var aJ=aB()+Math[s<0?"floor":"ceil"](s),aL=aJ/(Z-v);V(aL*i,aK)},positionDragX:function(s,aJ){W(s,aJ)},positionDragY:function(aJ,s){V(aJ,s)},animate:function(aJ,aM,s,aL){var aK={};aK[aM]=s;aJ.animate(aK,{duration:az.animateDuration,ease:az.animateEase,queue:false,step:aL})},getContentPositionX:function(){return aD()},getContentPositionY:function(){return aB()},getContentWidth:function(){return T},getContentHeight:function(){return Z},getPercentScrolledX:function(){return aD()/(T-ak)},getPercentScrolledY:function(){return aB()/(Z-v)},getIsScrollableH:function(){return aF},getIsScrollableV:function(){return aA},getContentPane:function(){return Y},scrollToBottom:function(s){V(i,s)},hijackInternalLinks:function(){m()},destroy:function(){g()}});at(O)}e=b.extend({},b.fn.jScrollPane.defaults,e);b.each(["mouseWheelSpeed","arrowButtonSpeed","trackClickSpeed","keyboardSpeed"],function(){e[this]=e[this]||e.speed});return this.each(function(){var f=b(this),g=f.data("jsp");if(g){g.reinitialise(e)}else{g=new d(f,e);f.data("jsp",g)}})};b.fn.jScrollPane.defaults={showArrows:false,maintainPosition:true,stickToBottom:false,stickToRight:false,clickOnTrack:true,autoReinitialise:false,autoReinitialiseDelay:500,verticalDragMinHeight:0,verticalDragMaxHeight:99999,horizontalDragMinWidth:0,horizontalDragMaxWidth:99999,contentWidth:c,animateScroll:false,animateDuration:300,animateEase:"linear",hijackInternalLinks:false,verticalGutter:4,horizontalGutter:4,mouseWheelSpeed:0,arrowButtonSpeed:0,arrowRepeatFreq:50,arrowScrollOnHover:false,trackClickSpeed:0,trackClickRepeatFreq:70,verticalArrowPositions:"split",horizontalArrowPositions:"split",enableKeyboardNavigation:true,hideFocus:false,keyboardSpeed:0,initialDelay:300,speed:30,scrollPagePercent:0.8}})(jQuery,this);

/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright Â© 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

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

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright Â© 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */
/*
* Slides, A Slideshow Plugin for jQuery
* Intructions: http://slidesjs.com
* By: Nathan Searles, http://nathansearles.com
* Version: 1.0.9
* Updated: January 4th, 2011
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

(function($){$.fn.slides=function(option){option=$.extend({},$.fn.slides.option,option);return this.each(function(){$('.'+option.container,$(this)).children().wrapAll('<div class="slides_control"/>');var elem=$(this),control=$('.slides_control',elem),total=control.children().size(),width=control.children().outerWidth(),height=control.children().outerHeight(),start=option.start-1,effect=option.effect.indexOf(',')<0?option.effect:option.effect.replace(' ','').split(',')[0],paginationEffect=option.effect.indexOf(',')<0?effect:option.effect.replace(' ','').split(',')[1],next=0,prev=0,number=0,current=0,loaded,active,clicked,position,direction;if(total<2){return;}
if(start<0){start=0;};if(start>total){start=total-1;};if(option.start){current=start;};if(option.randomize){control.randomize();}
$('.'+option.container,elem).css({overflow:'hidden',position:'relative'});control.css({position:'relative',width:(width*3),height:height,left:-width});control.children().css({position:'absolute',top:0,left:width,zIndex:0,display:'none'});if(option.autoHeight){control.animate({height:control.children(':eq('+start+')').outerHeight()},option.autoHeightSpeed);}
if(option.preload&&control.children()[0].tagName=='IMG'){elem.css({background:'url('+option.preloadImage+') no-repeat 50% 50%'});var img=$('img:eq('+start+')',elem).attr('src')+'?'+(new Date()).getTime();$('img:eq('+start+')',elem).attr('src',img).load(function(){$(this).fadeIn(option.fadeSpeed,function(){$(this).css({zIndex:5});elem.css({background:''});loaded=true;});});}else{control.children(':eq('+start+')').fadeIn(option.fadeSpeed,function(){loaded=true;});}
if(option.bigTarget){control.children().css({cursor:'pointer'});control.children().click(function(){animate('next',effect);return false;});}
if(option.hoverPause&&option.play){control.children().bind('mouseover',function(){stop();});control.children().bind('mouseleave',function(){pause();});}
if(option.generateNextPrev){$('.'+option.container,elem).after('<a href="#" class="'+option.prev+'">Prev</a>');$('.'+option.prev,elem).after('<a href="#" class="'+option.next+'">Next</a>');}
$('.'+option.next,elem).click(function(e){e.preventDefault();if(option.play){pause();};animate('next',effect);});$('.'+option.prev,elem).click(function(e){e.preventDefault();if(option.play){pause();};animate('prev',effect);});if(option.generatePagination){elem.append('<ul class='+option.paginationClass+'></ul>');control.children().each(function(){$('.'+option.paginationClass,elem).append('<li><a href="#'+number+'">'+(number+1)+'</a></li>');number++;});}else{$('.'+option.paginationClass+' li a',elem).each(function(){$(this).attr('href','#'+number);number++;});}
$('.'+option.paginationClass+' li:eq('+start+')',elem).addClass('current');$('.'+option.paginationClass+' li a',elem).click(function(){if(option.play){pause();};clicked=$(this).attr('href').match('[^#/]+$');if(current!=clicked){animate('pagination',paginationEffect,clicked);}
return false;});$('a.link',elem).click(function(){if(option.play){pause();};clicked=$(this).attr('href').match('[^#/]+$')-1;if(current!=clicked){animate('pagination',paginationEffect,clicked);}
return false;});if(option.play){playInterval=setInterval(function(){animate('next',effect);},option.play);elem.data('interval',playInterval);};function stop(){clearInterval(elem.data('interval'));};function pause(){if(option.pause){clearTimeout(elem.data('pause'));clearInterval(elem.data('interval'));pauseTimeout=setTimeout(function(){clearTimeout(elem.data('pause'));playInterval=setInterval(function(){animate("next",effect);},option.play);elem.data('interval',playInterval);},option.pause);elem.data('pause',pauseTimeout);}else{stop();}};function animate(direction,effect,clicked){if(!active&&loaded){active=true;switch(direction){case'next':prev=current;next=current+1;next=total===next?0:next;position=width*2;direction=-width*2;current=next;break;case'prev':prev=current;next=current-1;next=next===-1?total-1:next;position=0;direction=0;current=next;break;case'pagination':next=parseInt(clicked,10);prev=$('.'+option.paginationClass+' li.current a',elem).attr('href').match('[^#/]+$');if(next>prev){position=width*2;direction=-width*2;}else{position=0;direction=0;}
current=next;break;}
if(effect==='fade'){option.animationStart();if(option.crossfade){control.children(':eq('+next+')',elem).css({zIndex:10}).fadeIn(option.fadeSpeed,function(){if(option.autoHeight){control.animate({height:control.children(':eq('+next+')',elem).outerHeight()},option.autoHeightSpeed,function(){control.children(':eq('+prev+')',elem).css({display:'none',zIndex:0});control.children(':eq('+next+')',elem).css({zIndex:0});option.animationComplete(next+1);active=false;});}else{control.children(':eq('+prev+')',elem).css({display:'none',zIndex:0});control.children(':eq('+next+')',elem).css({zIndex:0});option.animationComplete(next+1);active=false;}});}else{option.animationStart();control.children(':eq('+prev+')',elem).fadeOut(option.fadeSpeed,function(){if(option.autoHeight){control.animate({height:control.children(':eq('+next+')',elem).outerHeight()},option.autoHeightSpeed,function(){control.children(':eq('+next+')',elem).fadeIn(option.fadeSpeed);});}else{control.children(':eq('+next+')',elem).fadeIn(option.fadeSpeed,function(){if($.browser.msie){$(this).get(0).style.removeAttribute('filter');}});}
option.animationComplete(next+1);active=false;});}}else{control.children(':eq('+next+')').css({left:position,display:'block'});if(option.autoHeight){option.animationStart();control.animate({left:direction,height:control.children(':eq('+next+')').outerHeight()},option.slideSpeed, "easeInOutExpo",function(){control.css({left:-width});control.children(':eq('+next+')').css({left:width,zIndex:5});control.children(':eq('+prev+')').css({left:width,display:'none',zIndex:0});option.animationComplete(next+1);active=false;});}else{option.animationStart();control.animate({left:direction},option.slideSpeed, "easeInOutExpo",function(){control.css({left:-width});control.children(':eq('+next+')').css({left:width,zIndex:5});control.children(':eq('+prev+')').css({left:width,display:'none',zIndex:0});option.animationComplete(next+1);active=false;});}}
if(option.pagination){$('.'+option.paginationClass+' li.current',elem).removeClass('current');$('.'+option.paginationClass+' li:eq('+next+')',elem).addClass('current');}}};});};$.fn.slides.option={preload:false,preloadImage:'/img/loading.gif',container:'slides_container',generateNextPrev:false,next:'next',prev:'prev',pagination:true,generatePagination:true,paginationClass:'pagination',fadeSpeed:350,slideSpeed:350,start:1,effect:'slide',crossfade:false,randomize:false,play:0,pause:0,hoverPause:false,autoHeight:false,autoHeightSpeed:350,bigTarget:false,animationStart:function(){},animationComplete:function(){}};$.fn.randomize=function(callback){function randomizeOrder(){return(Math.round(Math.random())-0.5);}
return($(this).each(function(){var $this=$(this);var $children=$this.children();var childCount=$children.length;if(childCount>1){$children.hide();var indices=[];for(i=0;i<childCount;i++){indices[indices.length]=i;}
indices=indices.sort(randomizeOrder);$.each(indices,function(j,k){var $child=$children.eq(k);var $clone=$child.clone(true);$clone.show().appendTo($this);if(callback!==undefined){callback($child,$clone);}
$child.remove();});}}));};})(jQuery);



/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * \251 Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont({"w":187,"face":{"font-family":"DIN-Regular","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","bbox":"-5 -355 350 81.0017","underline-thickness":"18.36","underline-position":"-41.04","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":89},"!":{"d":"73,-72r-22,0r-3,-184r29,0xm47,0r0,-30r31,0r0,30r-31,0","w":113},"\"":{"d":"92,-195r0,-61r29,0r0,61r-29,0xm32,-195r0,-61r28,0r0,61r-28,0","w":152},"#":{"d":"182,-156r-8,51r32,0r0,23r-36,0r-13,82r-26,0r13,-82r-58,0r-13,82r-26,0r13,-82r-32,0r0,-23r36,0r8,-51r-33,0r0,-23r36,0r12,-78r27,0r-12,78r57,0r12,-78r27,0r-13,78r32,0r0,23r-35,0xm98,-156r-8,51r57,0r9,-51r-58,0","w":235},"$":{"d":"154,-132v67,23,42,146,-38,133r0,40r-22,0r0,-39v-30,0,-56,-11,-79,-34r19,-18v18,18,39,27,62,27r0,-95v-41,-5,-74,-19,-74,-68v0,-41,29,-74,72,-72r0,-32r22,0r0,32v32,0,47,13,67,28r-18,17v-14,-12,-25,-21,-50,-21r0,93v13,2,31,6,39,9xm96,-234v-50,-5,-64,73,-20,86v6,2,13,3,20,4r0,-90xm115,-23v55,8,71,-77,21,-89v-6,-1,-13,-2,-21,-3r0,92","w":214},"%":{"d":"277,-84v0,48,-6,87,-49,87v-43,0,-48,-39,-48,-87v0,-29,20,-48,48,-48v28,0,49,20,49,48xm101,0r-22,0r120,-256r22,0xm121,-210v0,48,-6,86,-49,86v-43,0,-49,-38,-49,-86v0,-29,20,-49,49,-49v29,0,49,20,49,49xm228,-15v33,1,28,-36,28,-68v0,-19,-9,-31,-28,-31v-33,0,-28,35,-28,67v1,20,8,31,28,32xm72,-142v33,2,28,-36,28,-68v0,-19,-9,-31,-28,-31v-34,0,-28,36,-28,68v0,20,9,31,28,31","w":299},"&":{"d":"226,-126v0,35,-8,60,-24,79r40,47r-35,0r-23,-28v-38,49,-163,38,-156,-44v4,-42,20,-52,55,-77v-14,-19,-27,-29,-28,-56v-1,-31,26,-53,57,-53v55,0,76,76,27,99r-19,13r66,79v11,-18,14,-30,14,-59r26,0xm119,-172v31,-11,30,-65,-7,-63v-41,2,-34,51,-7,72xm54,-73v-3,59,84,65,115,26r-71,-85v-24,20,-42,25,-44,59","w":266},"'":{"d":"32,-195r0,-61r28,0r0,61r-28,0","w":91},"(":{"d":"59,-36v0,31,11,36,25,52r-17,18v-17,-15,-35,-34,-34,-68r2,-208v2,-19,21,-39,32,-48r17,17v-13,14,-25,24,-25,53r0,184","w":107},")":{"d":"41,-290v16,16,33,32,33,68r-1,208v-2,20,-22,37,-32,48r-19,-19v13,-13,25,-24,25,-51r0,-184v-1,-33,-8,-33,-25,-52","w":107},"*":{"d":"136,-152r-42,-26r2,49r-21,0r1,-49r-41,26r-11,-18r43,-23r-43,-24r11,-17r41,25r-1,-49r21,0r-2,49r42,-25r11,17r-44,24r44,23","w":170},"+":{"d":"106,-84r0,63r-24,0r0,-63r-63,0r0,-24r63,0r0,-63r24,0r0,63r63,0r0,24r-63,0"},",":{"d":"32,52r0,-84r31,0r0,55","w":95},"-":{"d":"27,-85r0,-24r99,0r0,24r-99,0","w":153},".":{"d":"32,0r0,-34r34,0r0,34r-34,0","w":97},"\/":{"d":"26,27r-26,0r103,-310r25,0","w":127},"0":{"d":"164,-68v1,41,-30,70,-70,70v-40,0,-71,-29,-70,-70r0,-120v-1,-41,30,-70,70,-70v40,0,71,29,70,70r0,120xm94,-21v68,0,39,-102,44,-165v2,-28,-16,-49,-44,-49v-68,0,-39,102,-44,165v-2,28,16,49,44,49"},"1":{"d":"93,0r0,-228r-48,43r0,-30r48,-41r26,0r0,256r-26,0"},"2":{"d":"95,-258v65,0,87,72,50,120r-89,115r110,0r0,23r-142,0r0,-23r102,-129v27,-30,14,-83,-31,-83v-28,0,-45,16,-44,46r-26,0v-1,-40,29,-69,70,-69"},"3":{"d":"166,-70v0,66,-84,94,-129,55v-14,-12,-22,-28,-22,-50r26,0v-1,29,23,43,49,44v29,1,51,-20,50,-49v-1,-34,-19,-52,-56,-50r0,-23v33,1,52,-14,51,-46v0,-28,-17,-47,-45,-47v-26,0,-44,18,-46,43r-26,0v-1,-39,33,-66,72,-66v71,0,98,101,36,127v26,10,40,30,40,62"},"4":{"d":"142,-41r0,41r-25,0r0,-41r-103,0r0,-23r93,-192r28,0r-93,192r75,0r0,-73r25,0r0,73r32,0r0,23r-32,0"},"5":{"d":"166,-85v11,92,-103,116,-136,49v-3,-7,-5,-15,-5,-24r26,0v3,25,16,40,44,39v37,-1,45,-23,45,-64v0,-37,-7,-62,-43,-62v-22,1,-36,9,-42,25r-24,0r0,-134r130,0r0,23r-106,0r0,81v11,-12,26,-18,46,-18v51,0,59,33,65,85"},"6":{"d":"166,-74v0,43,-28,76,-71,76v-68,0,-84,-72,-55,-131r63,-127r26,0r-57,115v48,-22,94,18,94,67xm140,-73v0,-29,-17,-53,-46,-52v-29,0,-45,22,-45,52v0,30,16,51,45,52v29,0,46,-22,46,-52"},"7":{"d":"81,0r-28,0r89,-233r-89,0r0,40r-26,0r0,-63r143,0r0,23"},"8":{"d":"170,-71v0,41,-33,73,-76,73v-41,0,-78,-32,-76,-73v1,-31,18,-49,39,-62v-57,-25,-35,-134,37,-125v70,-7,96,100,37,125v21,11,38,33,39,62xm139,-189v0,-25,-19,-46,-45,-46v-26,0,-45,21,-45,46v0,27,18,45,45,45v27,0,45,-20,45,-45xm144,-71v0,-27,-21,-50,-50,-50v-27,0,-50,23,-50,50v0,27,21,50,50,50v27,0,50,-23,50,-50"},"9":{"d":"93,-258v68,0,84,72,55,131r-63,127r-27,0r58,-115v-50,20,-96,-17,-94,-68v2,-42,28,-75,71,-75xm139,-184v0,-30,-17,-50,-46,-51v-29,0,-45,21,-45,51v0,29,16,53,45,52v29,-1,46,-22,46,-52"},":":{"d":"41,-108r0,-34r34,0r0,34r-34,0xm41,0r0,-34r34,0r0,34r-34,0","w":106},";":{"d":"41,-108r0,-34r34,0r0,34r-34,0xm42,52r0,-84r32,0r0,55","w":106},"<":{"d":"66,-84r131,131r-34,0r-143,-144r143,-143r34,0r-131,131r284,0r0,25r-284,0","w":369},"=":{"d":"19,-115r0,-24r150,0r0,24r-150,0xm19,-54r0,-24r150,0r0,24r-150,0"},">":{"d":"206,47r-34,0r132,-131r-284,0r0,-25r284,0r-132,-131r34,0r144,143","w":369},"?":{"d":"95,-258v56,0,89,67,51,109v-13,25,-38,37,-36,77r-26,0v-6,-59,47,-69,52,-121v2,-24,-18,-42,-41,-42v-23,0,-43,19,-42,42r-26,0v-1,-36,31,-65,68,-65xm82,0r0,-30r31,0r0,30r-31,0","w":178},"@":{"d":"102,-257v74,0,129,9,129,78r0,179r-25,0r0,-20v-12,14,-24,23,-48,23v-48,0,-65,-33,-65,-89v0,-54,11,-85,64,-88v20,0,37,8,49,23v4,-50,-6,-82,-54,-84v-56,-2,-106,1,-101,56v5,57,-18,141,21,165r-18,17v-47,-26,-28,-116,-28,-182v0,-48,28,-78,76,-78xm206,-86v0,-37,-7,-66,-44,-66v-37,0,-44,29,-44,66v0,37,7,66,44,66v37,0,44,-29,44,-66","w":256},"A":{"d":"186,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0r94,256r-30,0xm111,-217r-49,135r96,0","w":219},"B":{"d":"213,-71v0,85,-94,71,-176,71r0,-256r97,0v77,-11,101,104,37,124v23,8,42,30,42,61xm182,-188v0,-55,-65,-43,-118,-44r0,89v53,-1,118,11,118,-45xm186,-72v0,-56,-67,-46,-122,-46r0,94v57,1,122,8,122,-48","w":240},"C":{"d":"206,-74v-6,44,-40,79,-89,76v-72,-4,-90,-45,-90,-130v0,-80,19,-130,90,-130v49,0,83,31,89,76r-28,0v-7,-30,-26,-52,-61,-52v-56,0,-62,38,-62,106v0,68,5,106,62,106v34,0,55,-22,62,-52r27,0","w":229},"D":{"d":"215,-131v0,79,-19,131,-90,131r-88,0r0,-256r88,0v73,2,90,47,90,125xm188,-131v0,-91,-38,-108,-124,-101r0,208r56,0v58,-1,68,-41,68,-107","w":242},"E":{"d":"37,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24r-159,0","w":216},"F":{"d":"64,-232r0,94r113,0r0,25r-113,0r0,113r-27,0r0,-256r159,0r0,24r-132,0","w":208},"G":{"d":"207,-134v9,81,-23,139,-90,136v-72,-3,-90,-45,-90,-130v0,-80,19,-127,90,-130v50,-2,83,32,90,76r-28,0v-6,-30,-28,-52,-62,-52v-56,0,-62,38,-62,106v0,68,6,103,62,106v46,3,68,-37,63,-88r-63,0r0,-24r90,0","w":234},"H":{"d":"186,0r0,-117r-122,0r0,117r-27,0r0,-256r27,0r0,115r122,0r0,-115r27,0r0,256r-27,0","w":250},"I":{"d":"37,0r0,-256r27,0r0,256r-27,0","w":101},"J":{"d":"147,-78v7,73,-93,105,-139,57r19,-18v30,33,93,15,93,-42r0,-175r27,0r0,178","w":180},"K":{"d":"197,0r-79,-136r-54,64r0,72r-27,0r0,-256r27,0r0,147r120,-147r33,0r-80,99r92,157r-32,0","w":234},"L":{"d":"37,0r0,-256r27,0r0,232r131,0r0,24r-158,0","w":206},"M":{"d":"229,0r0,-195r-70,155r-23,0r-72,-155r0,195r-27,0r0,-256r27,0r84,181r81,-181r28,0r0,256r-28,0","w":293},"N":{"d":"201,0r-137,-206r0,206r-27,0r0,-256r26,0r136,205r0,-205r27,0r0,256r-25,0","w":263},"O":{"d":"207,-128v0,80,-23,130,-90,130v-72,0,-90,-45,-90,-130v0,-80,19,-130,90,-130v72,0,90,45,90,130xm117,-22v54,-7,62,-38,62,-106v0,-68,-8,-100,-62,-106v-56,6,-62,38,-62,106v0,68,6,100,62,106","w":234},"P":{"d":"212,-181v0,46,-34,77,-80,76r-68,0r0,105r-27,0r0,-256r95,0v46,-1,80,29,80,75xm184,-181v0,-60,-63,-52,-120,-51r0,102v57,0,120,9,120,-51","w":226},"Q":{"d":"207,-128v-2,47,3,70,-18,96r28,28r-16,17r-29,-29v-16,12,-34,18,-55,18v-72,0,-90,-45,-90,-130v0,-80,19,-130,90,-130v72,0,95,45,90,130xm169,-52v18,-56,26,-190,-52,-182v-56,6,-62,38,-62,106v0,84,37,127,98,93r-32,-32r17,-17","w":233},"R":{"d":"211,-185v0,37,-23,62,-55,69r60,116r-32,0r-58,-114r-62,0r0,114r-27,0r0,-256r98,0v45,-1,76,27,76,71xm184,-185v0,-57,-65,-47,-120,-47r0,94v55,0,120,10,120,-47","w":236},"S":{"d":"151,-133v73,27,40,135,-48,135v-45,0,-64,-11,-88,-34r19,-18v27,37,131,43,130,-20v-1,-82,-142,-13,-142,-116v0,-78,114,-93,158,-44r-17,17v-28,-31,-114,-33,-114,26v0,53,64,40,102,54","w":211},"T":{"d":"112,-232r0,232r-27,0r0,-232r-74,0r0,-24r175,0r0,24r-74,0","w":197},"U":{"d":"212,-85v1,51,-38,87,-89,87v-51,0,-90,-36,-90,-87r0,-171r28,0r0,169v0,37,24,65,62,65v36,0,62,-28,62,-65r0,-169r27,0r0,171","w":245},"V":{"d":"109,0r-22,0r-84,-256r29,0r66,207r67,-207r29,0","w":196},"W":{"d":"236,0r-25,0r-57,-205r-57,205r-26,0r-65,-256r29,0r50,206r56,-206r25,0r56,206r51,-206r29,0","w":307},"X":{"d":"161,0r-62,-108r-63,108r-31,0r79,-131r-74,-125r32,0r57,101r57,-101r32,0r-74,125r79,131r-32,0","w":198},"Y":{"d":"107,-106r0,106r-28,0r0,-106r-76,-150r29,0r61,122r60,-122r29,0","w":185},"Z":{"d":"21,0r0,-26r128,-206r-123,0r0,-24r154,0r0,23r-130,209r130,0r0,24r-159,0","w":200},"[":{"d":"33,27r0,-310r64,0r0,23r-38,0r0,264r38,0r0,23r-64,0","w":112},"\\":{"d":"102,27r-102,-309r26,0r102,309r-26,0","w":127},"]":{"d":"16,27r0,-23r39,0r0,-265r-39,0r0,-22r64,0r0,310r-64,0","w":112},"^":{"d":"141,-149r-44,-82r-44,82r-27,0r59,-109r24,0r58,109r-26,0","w":193},"_":{"d":"0,59r0,-18r193,0r0,18r-193,0","w":193},"`":{"d":"84,-214r-39,-55r31,0r32,55r-24,0","w":180},"a":{"d":"133,-118v6,-47,-75,-51,-90,-19r-18,-16v27,-45,134,-33,134,33r0,120r-26,0r0,-17v-29,32,-115,27,-115,-33v0,-54,59,-53,115,-51r0,-17xm84,-20v40,0,52,-19,49,-62v-38,0,-89,-7,-89,32v0,20,13,30,40,30","w":189},"b":{"d":"173,-89v0,53,-13,91,-65,91v-25,0,-37,-7,-50,-23r0,21r-26,0r0,-256r26,0r0,99v13,-14,26,-22,50,-22v51,0,65,37,65,90xm147,-89v0,-39,-6,-67,-44,-67v-38,0,-45,29,-45,67v0,39,6,68,45,68v37,0,44,-29,44,-68","w":196},"c":{"d":"159,-24v-44,55,-148,16,-136,-65v-12,-80,89,-120,136,-64r-17,17v-30,-41,-93,-16,-93,47v0,40,11,67,52,68v22,0,29,-7,41,-20","w":176},"d":{"d":"88,-179v26,0,38,6,50,22r0,-99r26,0r0,256r-26,0r0,-21v-13,16,-25,23,-50,23v-52,0,-65,-39,-65,-91v0,-52,14,-90,65,-90xm138,-89v0,-39,-6,-67,-44,-67v-38,0,-45,28,-45,67v0,39,6,68,45,68v37,0,44,-29,44,-68","w":196},"e":{"d":"95,-179v52,0,77,39,73,97r-119,0v-9,60,68,79,98,41r18,16v-20,18,-31,27,-65,27v-52,0,-77,-35,-77,-91v0,-53,24,-90,72,-90xm142,-101v10,-55,-65,-75,-87,-32v-5,11,-6,18,-6,32r93,0","w":190},"f":{"d":"38,-176v-5,-52,8,-89,64,-81r0,22v-39,-7,-40,23,-38,59r38,0r0,20r-38,0r0,156r-26,0r0,-156r-23,0r0,-20r23,0","w":113},"g":{"d":"163,5v7,70,-88,100,-134,53r17,-17v28,34,99,17,91,-37r0,-27v-12,16,-26,23,-50,23v-48,0,-64,-38,-64,-90v0,-52,15,-89,65,-89v25,0,38,7,50,23r0,-21r25,0r0,182xm137,-90v0,-37,-6,-66,-44,-66v-37,0,-44,29,-44,66v0,37,6,66,44,66v38,0,44,-29,44,-66","w":195},"h":{"d":"58,-158v37,-41,114,-19,114,44r0,114r-26,0v-6,-60,22,-155,-43,-156v-67,-1,-39,95,-45,156r-26,0r0,-256r26,0r0,98","w":202},"i":{"d":"31,-228r0,-29r29,0r0,29r-29,0xm32,0r0,-177r26,0r0,177r-26,0","w":91},"j":{"d":"31,-228r0,-29r29,0r0,29r-29,0xm58,32v1,35,-23,53,-63,48r0,-23v23,1,37,-2,37,-26r0,-207r26,0r0,208","w":91},"k":{"d":"149,0r-56,-91r-35,40r0,51r-26,0r0,-256r26,0r0,171r80,-92r33,0r-60,68r70,109r-32,0","w":192},"l":{"d":"58,-48v-1,23,13,27,37,26r0,22v-39,4,-64,-12,-63,-47r0,-209r26,0r0,208","w":106},"m":{"d":"163,-150v31,-49,123,-36,123,37r0,113r-26,0v-6,-61,22,-156,-44,-156v-66,0,-39,95,-44,156r-26,0v-6,-61,23,-156,-43,-156v-67,0,-39,95,-45,156r-26,0r0,-177r26,0r0,19v25,-30,87,-28,105,8","w":316},"n":{"d":"58,-158v37,-42,114,-18,114,45r0,113r-26,0v-6,-61,22,-156,-44,-156v-66,0,-38,96,-44,156r-26,0r0,-177r26,0r0,19","w":202},"o":{"d":"168,-89v0,55,-20,91,-73,91v-52,0,-72,-36,-72,-91v0,-54,20,-90,72,-90v53,0,73,35,73,90xm142,-89v0,-39,-12,-68,-47,-67v-36,1,-46,30,-46,67v-1,39,9,68,46,68v37,0,47,-29,47,-68","w":190},"p":{"d":"173,-89v0,53,-13,91,-65,91v-25,0,-38,-7,-50,-23r0,100r-26,0r0,-256r26,0r0,21v13,-16,25,-23,50,-23v51,0,65,37,65,90xm147,-89v0,-39,-6,-67,-44,-67v-38,0,-45,29,-45,67v0,39,6,68,45,68v37,0,44,-29,44,-68","w":196},"q":{"d":"88,-179v25,1,38,7,50,23r0,-21r26,0r0,256r-26,0r0,-100v-13,16,-25,23,-50,23v-52,0,-65,-39,-65,-91v0,-52,14,-90,65,-90xm138,-89v0,-39,-6,-67,-44,-67v-38,0,-45,28,-45,67v0,39,6,68,45,68v37,0,44,-29,44,-68","w":196},"r":{"d":"58,-156v14,-25,72,-33,92,-7r-19,20v-24,-29,-73,-6,-73,34r0,109r-26,0r0,-177r26,0r0,21","w":151},"s":{"d":"147,-87v33,37,-2,95,-59,89v-32,-4,-54,-9,-73,-25r18,-18v18,26,99,35,102,-10v2,-26,-34,-28,-59,-29v-32,-2,-52,-16,-53,-47v-3,-60,94,-64,129,-33r-17,17v-21,-18,-86,-25,-86,15v0,44,76,16,98,41","w":178},"t":{"d":"100,0v-40,4,-63,-12,-63,-48r0,-108r-23,0r0,-20r23,0r0,-55r26,0r0,55r37,0r0,20r-37,0r0,108v-1,22,14,28,37,26r0,22","w":119},"u":{"d":"100,-21v66,0,38,-96,44,-156r26,0r0,177r-26,0r0,-20v-35,43,-113,21,-113,-44r0,-113r26,0v6,61,-23,156,43,156","w":202},"v":{"d":"92,0r-23,0r-65,-177r28,0r48,142r49,-142r28,0","w":160},"w":{"d":"201,0r-24,0r-47,-138r-46,138r-24,0r-56,-177r28,0r41,142r46,-142r22,0r47,142r41,-142r28,0","w":260},"x":{"d":"129,0r-43,-69r-43,69r-31,0r60,-90r-58,-87r32,0r40,65r40,-65r32,0r-58,87r60,90r-31,0","w":172},"y":{"d":"76,43v-7,25,-26,34,-58,33r0,-23v41,6,38,-33,50,-57r-64,-173r28,0r49,142r48,-142r28,0","w":160},"z":{"d":"18,0r0,-22r99,-132r-94,0r0,-23r124,0r0,22r-99,132r99,0r0,23r-129,0","w":165},"{":{"d":"53,-128v59,22,-22,142,57,132r0,23v-40,2,-61,-7,-61,-47v0,-39,18,-103,-32,-97r0,-23v81,9,-28,-160,93,-143r0,23v-74,-13,-2,107,-57,132","w":127},"|":{"d":"46,27r0,-310r26,0r0,310r-26,0","w":117},"}":{"d":"17,-283v118,-19,11,142,93,143r0,23v-80,-7,28,161,-93,144r0,-23v74,15,1,-110,58,-132v-34,-10,-23,-63,-23,-104v0,-29,-10,-28,-35,-28r0,-23","w":127},"~":{"d":"176,-100v-17,16,-21,23,-46,24v-36,0,-71,-39,-97,-3r-15,-16v17,-16,21,-25,46,-25v34,0,71,39,96,4","w":194},"\u00c4":{"d":"186,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0r94,256r-30,0xm111,-217r-49,135r96,0xm134,-284r0,-32r26,0r0,32r-26,0xm58,-284r0,-32r26,0r0,32r-26,0","w":219},"\u00c5":{"d":"151,-312v0,24,-19,43,-42,43v-23,0,-43,-20,-43,-43v0,-23,20,-43,43,-43v23,0,42,19,42,43xm134,-312v0,-13,-12,-25,-25,-25v-14,-1,-25,11,-25,25v0,14,11,25,25,25v14,0,25,-12,25,-25xm186,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0r94,256r-30,0xm111,-217r-49,135r96,0","w":219},"\u00c7":{"d":"206,-74v-6,44,-40,79,-89,76v-72,-4,-90,-45,-90,-130v0,-80,19,-130,90,-130v49,0,83,31,89,76r-28,0v-7,-30,-26,-52,-61,-52v-56,0,-62,38,-62,106v0,68,5,106,62,106v34,0,55,-22,62,-52r27,0xm112,78r-28,0r26,-54r24,0","w":229},"\u00c9":{"d":"37,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24r-159,0xm119,-281r-24,0r32,-55r31,0","w":216},"\u00d1":{"d":"188,-305v-12,10,-18,19,-34,19v-26,0,-46,-31,-67,-5r-13,-12v12,-10,18,-19,34,-19v24,0,49,31,67,4xm201,0r-137,-206r0,206r-27,0r0,-256r26,0r136,205r0,-205r27,0r0,256r-25,0","w":263},"\u00d6":{"d":"207,-128v0,80,-23,130,-90,130v-72,0,-90,-45,-90,-130v0,-80,19,-130,90,-130v72,0,90,45,90,130xm117,-22v54,-7,62,-38,62,-106v0,-68,-8,-100,-62,-106v-56,6,-62,38,-62,106v0,68,6,100,62,106xm142,-284r0,-32r26,0r0,32r-26,0xm66,-284r0,-32r26,0r0,32r-26,0","w":234},"\u00dc":{"d":"212,-85v1,51,-38,87,-89,87v-51,0,-90,-36,-90,-87r0,-171r28,0r0,169v0,37,24,65,62,65v36,0,62,-28,62,-65r0,-169r27,0r0,171xm148,-284r0,-32r26,0r0,32r-26,0xm72,-284r0,-32r26,0r0,32r-26,0","w":245},"\u00e1":{"d":"133,-118v6,-47,-75,-51,-90,-19r-18,-16v27,-45,134,-33,134,33r0,120r-26,0r0,-17v-29,32,-115,27,-115,-33v0,-54,59,-53,115,-51r0,-17xm84,-20v40,0,52,-19,49,-62v-38,0,-89,-7,-89,32v0,20,13,30,40,30xm97,-214r-24,0r32,-55r31,0","w":189},"\u00e0":{"d":"133,-118v6,-47,-75,-51,-90,-19r-18,-16v27,-45,134,-33,134,33r0,120r-26,0r0,-17v-29,32,-115,27,-115,-33v0,-54,59,-53,115,-51r0,-17xm84,-20v40,0,52,-19,49,-62v-38,0,-89,-7,-89,32v0,20,13,30,40,30xm85,-214r-39,-55r31,0r32,55r-24,0","w":189},"\u00e2":{"d":"123,-214r-32,-37r-33,37r-25,0r45,-55r25,0r45,55r-25,0xm133,-118v6,-47,-75,-51,-90,-19r-18,-16v27,-45,134,-33,134,33r0,120r-26,0r0,-17v-29,32,-115,27,-115,-33v0,-54,59,-53,115,-51r0,-17xm84,-20v40,0,52,-19,49,-62v-38,0,-89,-7,-89,32v0,20,13,30,40,30","w":189},"\u00e4":{"d":"133,-118v6,-47,-75,-51,-90,-19r-18,-16v27,-45,134,-33,134,33r0,120r-26,0r0,-17v-29,32,-115,27,-115,-33v0,-54,59,-53,115,-51r0,-17xm84,-20v40,0,52,-19,49,-62v-38,0,-89,-7,-89,32v0,20,13,30,40,30xm116,-217r0,-32r26,0r0,32r-26,0xm40,-217r0,-32r26,0r0,32r-26,0","w":189},"\u00e3":{"d":"147,-237v-12,10,-18,18,-34,18v-26,0,-47,-31,-67,-4r-13,-13v11,-11,17,-19,34,-19v24,0,48,31,67,5xm133,-118v6,-47,-75,-51,-90,-19r-18,-16v27,-45,134,-33,134,33r0,120r-26,0r0,-17v-29,32,-115,27,-115,-33v0,-54,59,-53,115,-51r0,-17xm84,-20v40,0,52,-19,49,-62v-38,0,-89,-7,-89,32v0,20,13,30,40,30","w":189},"\u00e5":{"d":"133,-247v0,24,-19,43,-42,43v-23,0,-43,-20,-43,-43v0,-23,20,-43,43,-43v24,-1,42,19,42,43xm116,-247v0,-13,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,12,25,25,25v13,0,25,-12,25,-25xm133,-118v6,-47,-75,-51,-90,-19r-18,-16v27,-45,134,-33,134,33r0,120r-26,0r0,-17v-29,32,-115,27,-115,-33v0,-54,59,-53,115,-51r0,-17xm84,-20v40,0,52,-19,49,-62v-38,0,-89,-7,-89,32v0,20,13,30,40,30","w":189},"\u00e7":{"d":"159,-24v-44,55,-148,16,-136,-65v-12,-80,89,-120,136,-64r-17,17v-30,-41,-93,-16,-93,47v0,40,11,67,52,68v22,0,29,-7,41,-20xm91,78r-28,0r26,-54r24,0","w":177},"\u00e9":{"d":"95,-179v52,0,77,39,73,97r-119,0v-9,60,68,79,98,41r18,16v-20,18,-31,27,-65,27v-52,0,-77,-35,-77,-91v0,-53,24,-90,72,-90xm142,-101v10,-55,-65,-75,-87,-32v-5,11,-6,18,-6,32r93,0xm102,-214r-24,0r32,-55r31,0","w":190},"\u00e8":{"d":"95,-179v52,0,77,39,73,97r-119,0v-9,60,68,79,98,41r18,16v-20,18,-31,27,-65,27v-52,0,-77,-35,-77,-91v0,-53,24,-90,72,-90xm142,-101v10,-55,-65,-75,-87,-32v-5,11,-6,18,-6,32r93,0xm90,-214r-39,-55r31,0r32,55r-24,0","w":190},"\u00ea":{"d":"129,-214r-33,-37r-32,37r-25,0r45,-55r25,0r45,55r-25,0xm95,-179v52,0,77,39,73,97r-119,0v-9,60,68,79,98,41r18,16v-20,18,-31,27,-65,27v-52,0,-77,-35,-77,-91v0,-53,24,-90,72,-90xm142,-101v10,-55,-65,-75,-87,-32v-5,11,-6,18,-6,32r93,0","w":190},"\u00eb":{"d":"95,-179v52,0,77,39,73,97r-119,0v-9,60,68,79,98,41r18,16v-20,18,-31,27,-65,27v-52,0,-77,-35,-77,-91v0,-53,24,-90,72,-90xm142,-101v10,-55,-65,-75,-87,-32v-5,11,-6,18,-6,32r93,0xm121,-217r0,-32r26,0r0,32r-26,0xm45,-217r0,-32r26,0r0,32r-26,0","w":190},"\u00ed":{"d":"32,0r0,-177r26,0r0,177r-26,0xm56,-214r-24,0r32,-55r31,0","w":91},"\u00ec":{"d":"32,0r0,-177r26,0r0,177r-26,0xm71,-214r-39,-55r31,0r32,55r-24,0","w":91},"\u00ee":{"d":"122,-214r-32,-37r-33,37r-25,0r45,-55r25,0r45,55r-25,0xm32,0r0,-177r26,0r0,177r-26,0","w":91},"\u00ef":{"d":"32,0r0,-177r26,0r0,177r-26,0xm109,-217r0,-32r26,0r0,32r-26,0xm33,-217r0,-32r26,0r0,32r-26,0","w":91},"\u00f1":{"d":"159,-237v-12,10,-18,18,-34,18v-27,0,-47,-31,-67,-4r-13,-13v11,-11,17,-19,34,-19v24,0,48,31,67,5xm58,-158v37,-42,114,-18,114,45r0,113r-26,0v-6,-61,22,-156,-44,-156v-66,0,-38,96,-44,156r-26,0r0,-177r26,0r0,19","w":202},"\u00f3":{"d":"168,-89v0,55,-20,91,-73,91v-52,0,-72,-36,-72,-91v0,-54,20,-90,72,-90v53,0,73,35,73,90xm142,-89v0,-39,-12,-68,-47,-67v-36,1,-46,30,-46,67v-1,39,9,68,46,68v37,0,47,-29,47,-68xm101,-214r-24,0r32,-55r31,0","w":190},"\u00f2":{"d":"168,-89v0,55,-20,91,-73,91v-52,0,-72,-36,-72,-91v0,-54,20,-90,72,-90v53,0,73,35,73,90xm142,-89v0,-39,-12,-68,-47,-67v-36,1,-46,30,-46,67v-1,39,9,68,46,68v37,0,47,-29,47,-68xm86,-214r-39,-55r31,0r32,55r-24,0","w":190},"\u00f4":{"d":"128,-214r-33,-37r-32,37r-25,0r45,-55r25,0r45,55r-25,0xm168,-89v0,55,-20,91,-73,91v-52,0,-72,-36,-72,-91v0,-54,20,-90,72,-90v53,0,73,35,73,90xm142,-89v0,-39,-12,-68,-47,-67v-36,1,-46,30,-46,67v-1,39,9,68,46,68v37,0,47,-29,47,-68","w":190},"\u00f6":{"d":"168,-89v0,55,-20,91,-73,91v-52,0,-72,-36,-72,-91v0,-54,20,-90,72,-90v53,0,73,35,73,90xm142,-89v0,-39,-12,-68,-47,-67v-36,1,-46,30,-46,67v-1,39,9,68,46,68v37,0,47,-29,47,-68xm120,-217r0,-32r26,0r0,32r-26,0xm44,-217r0,-32r26,0r0,32r-26,0","w":190},"\u00f5":{"d":"152,-237v-12,10,-18,18,-34,18v-27,0,-47,-31,-67,-4r-14,-13v12,-11,18,-19,35,-19v24,0,47,31,67,5xm168,-89v0,55,-20,91,-73,91v-52,0,-72,-36,-72,-91v0,-54,20,-90,72,-90v53,0,73,35,73,90xm142,-89v0,-39,-12,-68,-47,-67v-36,1,-46,30,-46,67v-1,39,9,68,46,68v37,0,47,-29,47,-68","w":190},"\u00fa":{"d":"100,-21v66,0,38,-96,44,-156r26,0r0,177r-26,0r0,-20v-35,43,-113,21,-113,-44r0,-113r26,0v6,61,-23,156,43,156xm106,-214r-24,0r32,-55r31,0","w":202},"\u00f9":{"d":"100,-21v66,0,38,-96,44,-156r26,0r0,177r-26,0r0,-20v-35,43,-113,21,-113,-44r0,-113r26,0v6,61,-23,156,43,156xm94,-214r-39,-55r31,0r32,55r-24,0","w":202},"\u00fb":{"d":"132,-214r-32,-37r-32,37r-25,0r45,-55r24,0r45,55r-25,0xm100,-21v66,0,38,-96,44,-156r26,0r0,177r-26,0r0,-20v-35,43,-113,21,-113,-44r0,-113r26,0v6,61,-23,156,43,156","w":202},"\u00fc":{"d":"100,-21v66,0,38,-96,44,-156r26,0r0,177r-26,0r0,-20v-35,43,-113,21,-113,-44r0,-113r26,0v6,61,-23,156,43,156xm125,-217r0,-32r26,0r0,32r-26,0xm49,-217r0,-32r26,0r0,32r-26,0","w":202},"\u00b0":{"d":"143,-201v0,31,-28,61,-59,60v-31,0,-60,-27,-60,-60v0,-32,28,-59,60,-59v30,0,59,29,59,59xm121,-201v0,-21,-17,-38,-38,-38v-21,0,-37,17,-37,38v0,22,17,38,38,39v22,0,37,-18,37,-39","w":166},"\u00a2":{"d":"23,-132v0,-48,24,-84,65,-89r0,-35r21,0r0,34v26,0,37,11,52,27r-17,16v-12,-13,-24,-20,-36,-20r0,134v12,0,24,-7,36,-20r17,17v-16,18,-34,27,-52,27r0,41r-21,0r0,-42v-41,-6,-65,-40,-65,-90xm89,-198v-57,6,-52,127,0,132r0,-132","w":179},"\u00a3":{"d":"160,-217v-29,-34,-102,-14,-93,42r0,37r53,0r0,19r-53,0r0,95r112,0r0,24r-139,0r0,-119r-23,0r0,-19r23,0v-7,-71,16,-121,80,-120v24,0,44,8,59,23","w":197},"\u00a7":{"d":"120,-157v58,9,63,106,12,125v21,7,34,25,35,51v4,56,-74,80,-115,47v-13,-10,-20,-25,-20,-43r27,0v2,23,15,35,41,35v34,0,52,-35,32,-61v-34,-28,-104,-21,-101,-88v1,-29,18,-49,38,-59v-20,-9,-33,-21,-33,-49v0,-55,73,-76,112,-44v12,10,18,24,18,41r-26,0v0,-22,-16,-33,-40,-33v-48,0,-50,64,-8,70xm143,-91v2,-30,-20,-45,-43,-46v-25,-1,-43,21,-42,46v1,27,13,46,42,46v29,0,41,-19,43,-46","w":200},"\u00b6":{"d":"15,-186v0,-42,33,-71,78,-70r87,0r0,335r-26,0r0,-311r-42,0r0,311r-26,0r0,-196v-40,2,-71,-33,-71,-69","w":217},"\u00df":{"d":"174,-113v3,64,4,125,-70,113r0,-22v27,1,45,-4,44,-32v-2,-43,16,-101,-44,-90r0,-22v27,3,45,-8,44,-33v-1,-24,-17,-37,-45,-37v-30,0,-44,18,-44,48r0,188r-27,0r0,-189v0,-44,30,-70,73,-70v39,0,69,20,69,60v0,22,-8,34,-22,43v16,10,21,18,22,43","w":200},"\u00ae":{"d":"289,-128v0,71,-60,130,-131,130v-70,0,-130,-60,-130,-130v0,-70,60,-130,130,-130v71,0,131,59,131,130xm268,-128v0,-60,-50,-111,-110,-111v-60,0,-109,52,-109,111v0,58,50,111,109,111v59,0,110,-51,110,-111xm165,-200v48,-3,61,73,14,82r34,61r-23,0r-33,-58r-21,0r0,58r-20,0r0,-143r49,0xm189,-157v0,-25,-26,-27,-53,-25r0,50v27,2,53,0,53,-25","w":317},"\u00a9":{"d":"289,-128v0,71,-60,130,-131,130v-70,0,-130,-60,-130,-130v0,-70,60,-130,130,-130v71,0,131,59,131,130xm268,-128v0,-59,-51,-111,-110,-111v-59,0,-109,53,-109,111v0,58,50,111,109,111v59,0,110,-51,110,-111xm116,-128v-7,49,49,71,78,41r13,13v-42,41,-117,11,-111,-54v-6,-63,67,-97,111,-55r-13,13v-33,-31,-83,-7,-78,42","w":317},"\u2122":{"d":"261,-103r0,-110r-37,72r-20,0r-37,-72r0,110r-21,0r0,-153r21,0r47,93r47,-93r20,0r0,153r-20,0xm76,-237r0,134r-21,0r0,-134r-42,0r0,-19r106,0r0,19r-43,0","w":302},"\u00b4":{"d":"96,-214r-24,0r32,-55r31,0","w":180},"\u00a8":{"d":"115,-217r0,-32r26,0r0,32r-26,0xm39,-217r0,-32r26,0r0,32r-26,0","w":180},"\u00c6":{"d":"153,0r0,-61r-89,0r-31,61r-30,0r135,-256r174,0r0,24r-132,0r0,91r113,0r0,25r-113,0r0,92r132,0r0,24r-159,0xm153,-232r-77,147r77,0r0,-147","w":331},"\u00d8":{"d":"207,-128v10,98,-54,154,-135,119r-12,25r-24,0r18,-38v-28,-26,-21,-49,-27,-106v-10,-97,53,-153,135,-119r12,-25r24,0r-18,37v27,27,21,49,27,107xm82,-33v62,31,106,-13,97,-95v-5,-41,3,-60,-12,-81xm152,-224v-63,-29,-97,14,-97,96v0,43,4,70,12,81","w":234},"\u00b1":{"d":"106,-104r0,64r-24,0r0,-64r-63,0r0,-24r63,0r0,-63r24,0r0,63r63,0r0,24r-63,0xm19,0r0,-24r150,0r0,24r-150,0"},"\u00a5":{"d":"126,-144r36,0r0,19r-46,0v-5,10,-11,20,-9,38r55,0r0,20r-55,0r0,67r-28,0r0,-67r-56,0r0,-20r56,0v2,-18,-4,-28,-10,-38r-46,0r0,-19r36,0r-56,-112r29,0r61,122r60,-122r29,0","w":185},"\u00b5":{"d":"99,-21v67,0,39,-95,45,-156r26,0r0,177r-26,0r0,-20v-20,25,-64,30,-88,9r0,90r-26,0r0,-256r26,0v6,61,-23,156,43,156","w":201},"\u00aa":{"d":"25,-236v21,-36,106,-29,106,26r0,95r-20,0r0,-13v-25,26,-91,20,-91,-26v0,-42,45,-44,90,-41v13,-49,-52,-56,-70,-28xm72,-132v33,0,40,-13,38,-47v-29,0,-69,-5,-69,24v0,16,10,23,31,23","w":161},"\u00ba":{"d":"139,-185v0,45,-18,72,-57,72v-40,0,-59,-28,-58,-72v0,-43,16,-73,58,-73v40,0,57,29,57,73xm118,-185v0,-31,-9,-52,-36,-53v-29,0,-36,23,-36,53v0,31,8,53,36,53v27,0,36,-21,36,-53","w":163},"\u00e6":{"d":"133,-118v6,-47,-75,-51,-90,-19r-18,-16v19,-37,109,-34,125,1v44,-57,145,-18,128,70r-120,0v-8,59,69,80,99,41r18,16v-25,36,-108,38,-128,-3v-23,42,-129,46,-129,-22v0,-54,59,-53,115,-51r0,-17xm252,-101v11,-63,-85,-75,-92,-16v-1,4,-2,9,-2,16r94,0xm84,-20v40,0,52,-19,49,-62v-38,0,-89,-7,-89,32v0,20,13,30,40,30","w":300},"\u00f8":{"d":"147,-158v39,46,28,160,-52,160v-16,0,-27,-4,-37,-10r-14,24r-21,0r21,-35v-40,-44,-28,-160,51,-160v16,0,27,3,38,9r14,-23r20,0xm69,-29v50,29,87,-25,71,-87v-1,-7,-3,-14,-7,-20xm121,-149v-59,-33,-92,49,-63,108","w":190},"\u00bf":{"d":"67,-147r0,-30r30,0r0,30r-30,0xm152,15v1,35,-31,66,-68,66v-56,0,-85,-64,-51,-109v17,-22,38,-37,36,-77r26,0v5,60,-47,70,-53,120v-3,24,18,43,42,43v24,0,43,-19,42,-43r26,0","w":178},"\u00a1":{"d":"36,-147r0,-30r31,0r0,30r-31,0xm36,79r4,-184r22,0r4,184r-30,0","w":113},"\u00ac":{"d":"145,-37r0,-49r-127,0r0,-25r152,0r0,74r-25,0"},"\u00ab":{"d":"96,-96r75,-76r0,32r-43,44r43,43r0,32xm14,-96r76,-76r0,32r-43,44r43,43r0,32","w":199},"\u00bb":{"d":"109,-21r0,-32r44,-43r-44,-44r0,-32r76,76xm28,-21r0,-32r44,-43r-44,-44r0,-32r76,76","w":199},"\u2026":{"d":"208,0r0,-33r33,0r0,33r-33,0xm120,0r0,-33r33,0r0,33r-33,0xm32,0r0,-33r33,0r0,33r-33,0","w":272},"\u00a0":{"w":89},"\u00c0":{"d":"186,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0r94,256r-30,0xm111,-217r-49,135r96,0xm103,-281r-39,-55r31,0r32,55r-24,0","w":219},"\u00c3":{"d":"165,-305v-12,10,-18,19,-34,19v-26,0,-46,-31,-67,-5r-13,-12v11,-11,17,-19,34,-19v24,0,49,31,67,4xm186,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0r94,256r-30,0xm111,-217r-49,135r96,0","w":219},"\u00d5":{"d":"174,-305v-12,11,-18,19,-35,19v-26,0,-46,-31,-67,-5r-13,-12v12,-10,18,-19,34,-19v24,0,48,32,67,4xm207,-128v0,80,-23,130,-90,130v-72,0,-90,-45,-90,-130v0,-80,19,-130,90,-130v72,0,90,45,90,130xm117,-22v54,-7,62,-38,62,-106v0,-68,-8,-100,-62,-106v-56,6,-62,38,-62,106v0,68,6,100,62,106","w":234},"\u2013":{"d":"19,-85r0,-24r150,0r0,24r-150,0"},"\u2014":{"d":"27,-85r0,-24r275,0r0,24r-275,0","w":329},"\u201c":{"d":"93,-226r0,-30r32,-29r0,59r-32,0xm32,-226r0,-30r31,-29r0,59r-31,0","w":156},"\u201d":{"d":"93,-198r0,-58r32,0r0,30xm32,-198r0,-58r31,0r0,30","w":156},"\u2018":{"d":"32,-226r0,-30r31,-29r0,59r-31,0","w":94},"\u2019":{"d":"32,-198r0,-58r31,0r0,30","w":94},"\u00f7":{"d":"78,-145r0,-31r31,0r0,31r-31,0xm18,-85r0,-24r152,0r0,24r-152,0xm78,-18r0,-31r31,0r0,31r-31,0"},"\u00ff":{"d":"76,43v-7,25,-26,34,-58,33r0,-23v41,6,38,-33,50,-57r-64,-173r28,0r49,142r48,-142r28,0xm105,-217r0,-32r26,0r0,32r-26,0xm29,-217r0,-32r26,0r0,32r-26,0","w":160},"\u00a4":{"d":"183,-145v21,22,20,72,0,95r27,27r-17,16r-27,-26v-22,19,-73,19,-95,0r-26,26r-17,-16r27,-27v-21,-22,-21,-74,0,-95r-27,-26r17,-17r26,26v27,-20,68,-20,95,0r27,-26r17,17xm175,-98v0,-30,-26,-55,-56,-55v-30,0,-56,24,-56,55v0,31,26,57,56,57v30,0,56,-27,56,-57","w":237},"\u00c2":{"d":"141,-281r-32,-38r-33,38r-25,0r45,-55r25,0r45,55r-25,0xm186,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0r94,256r-30,0xm111,-217r-49,135r96,0","w":219},"\u00ca":{"d":"145,-281r-32,-38r-33,38r-25,0r45,-55r25,0r45,55r-25,0xm37,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24r-159,0","w":216},"\u00c1":{"d":"186,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0r94,256r-30,0xm111,-217r-49,135r96,0xm115,-281r-24,0r32,-55r31,0","w":219},"\u00cb":{"d":"37,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24r-159,0xm138,-284r0,-32r26,0r0,32r-26,0xm62,-284r0,-32r26,0r0,32r-26,0","w":216},"\u00c8":{"d":"37,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24r-159,0xm107,-281r-39,-55r31,0r32,55r-24,0","w":216},"\u00cd":{"d":"37,0r0,-256r27,0r0,256r-27,0xm61,-281r-24,0r32,-55r31,0","w":101},"\u00ce":{"d":"127,-281r-33,-38r-32,38r-25,0r45,-55r25,0r45,55r-25,0xm37,0r0,-256r27,0r0,256r-27,0","w":101},"\u00cf":{"d":"37,0r0,-256r27,0r0,256r-27,0xm113,-284r0,-32r26,0r0,32r-26,0xm37,-284r0,-32r26,0r0,32r-26,0","w":101},"\u00cc":{"d":"37,0r0,-256r27,0r0,256r-27,0xm76,-281r-39,-55r31,0r32,55r-24,0","w":101},"\u00d3":{"d":"207,-128v0,80,-23,130,-90,130v-72,0,-90,-45,-90,-130v0,-80,19,-130,90,-130v72,0,90,45,90,130xm117,-22v54,-7,62,-38,62,-106v0,-68,-8,-100,-62,-106v-56,6,-62,38,-62,106v0,68,6,100,62,106xm123,-281r-24,0r32,-55r31,0","w":234},"\u00d4":{"d":"149,-281r-32,-38r-32,38r-25,0r45,-55r24,0r45,55r-25,0xm207,-128v0,80,-23,130,-90,130v-72,0,-90,-45,-90,-130v0,-80,19,-130,90,-130v72,0,90,45,90,130xm117,-22v54,-7,62,-38,62,-106v0,-68,-8,-100,-62,-106v-56,6,-62,38,-62,106v0,68,6,100,62,106","w":234},"\u00d2":{"d":"207,-128v0,80,-23,130,-90,130v-72,0,-90,-45,-90,-130v0,-80,19,-130,90,-130v72,0,90,45,90,130xm117,-22v54,-7,62,-38,62,-106v0,-68,-8,-100,-62,-106v-56,6,-62,38,-62,106v0,68,6,100,62,106xm111,-281r-39,-55r31,0r32,55r-24,0","w":234},"\u00da":{"d":"212,-85v1,51,-38,87,-89,87v-51,0,-90,-36,-90,-87r0,-171r28,0r0,169v0,37,24,65,62,65v36,0,62,-28,62,-65r0,-169r27,0r0,171xm129,-281r-24,0r32,-55r31,0","w":245},"\u00db":{"d":"155,-281r-32,-38r-33,38r-24,0r45,-55r24,0r45,55r-25,0xm212,-85v1,51,-38,87,-89,87v-51,0,-90,-36,-90,-87r0,-171r28,0r0,169v0,37,24,65,62,65v36,0,62,-28,62,-65r0,-169r27,0r0,171","w":245},"\u00d9":{"d":"212,-85v1,51,-38,87,-89,87v-51,0,-90,-36,-90,-87r0,-171r28,0r0,169v0,37,24,65,62,65v36,0,62,-28,62,-65r0,-169r27,0r0,171xm117,-281r-39,-55r31,0r32,55r-24,0","w":245},"\u00b8":{"d":"91,78r-28,0r26,-54r24,0","w":180}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * \251 Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont({"w":191,"face":{"font-family":"DIN-Medium","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","bbox":"-7 -360 351 76.0527","underline-thickness":"25.2","underline-position":"-36.72","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86},"!":{"d":"80,-76r-29,0r-7,-180r44,0xm46,0r0,-39r40,0r0,39r-40,0","w":119},"\"":{"d":"95,-188r0,-68r37,0r0,68r-37,0xm28,-188r0,-68r36,0r0,68r-36,0","w":159},"#":{"d":"191,-153r-7,44r28,0r0,34r-33,0r-12,75r-38,0r11,-75r-49,0r-11,75r-39,0r12,-75r-29,0r0,-34r34,0r8,-44r-30,0r0,-34r35,0r11,-71r38,0r-11,71r49,0r11,-71r38,0r-11,71r28,0r0,34r-33,0xm104,-153r-8,44r50,0r7,-44r-49,0","w":241},"$":{"d":"200,-73v0,45,-34,71,-78,74r0,40r-29,0r0,-39v-39,0,-60,-13,-82,-34r26,-25v16,15,32,23,59,24r0,-80v-44,-5,-77,-20,-77,-70v0,-44,32,-71,74,-75r0,-32r29,0r0,32v32,0,51,12,69,29r-25,24v-11,-11,-27,-19,-47,-19r0,77v47,7,80,18,81,74xm96,-224v-40,-3,-53,60,-16,71v5,2,10,3,16,4r0,-75xm119,-33v43,4,60,-62,19,-73v-5,-1,-11,-3,-19,-4r0,77","w":218},"%":{"d":"282,-83v0,48,-6,86,-50,86v-42,0,-55,-37,-51,-86v3,-29,21,-49,51,-49v28,0,50,20,50,49xm106,0r-30,0r121,-256r29,0xm122,-210v0,49,-6,86,-51,86v-44,0,-50,-37,-50,-86v0,-29,20,-49,50,-49v28,0,51,20,51,49xm255,-48v0,-27,5,-60,-23,-60v-28,0,-23,33,-23,60v0,17,8,26,23,26v15,0,23,-9,23,-26xm94,-174v0,-27,5,-60,-23,-60v-27,0,-22,34,-22,60v0,17,7,25,22,25v15,0,23,-8,23,-25","w":303},"&":{"d":"111,-258v58,0,83,75,34,102r-19,13r54,65v9,-13,14,-31,14,-52r35,0v0,33,-9,59,-26,79r43,51r-47,0r-21,-25v-42,46,-161,33,-154,-49v3,-38,24,-55,51,-73v-15,-20,-25,-29,-26,-55v0,-34,26,-56,62,-56xm118,-174v26,-9,25,-53,-7,-52v-35,2,-27,44,-5,60xm61,-75v-1,49,67,55,95,24r-61,-72v-19,14,-33,20,-34,48","w":262},"'":{"d":"28,-188r0,-68r36,0r0,68r-36,0","w":92},"(":{"d":"68,-44v-2,31,13,39,25,53r-25,25v-62,-43,-30,-172,-36,-271v7,-25,18,-34,36,-53r25,25v-14,14,-25,21,-25,53r0,168","w":114},")":{"d":"46,-212v0,-31,-10,-37,-25,-53r25,-25v20,19,39,37,38,76r-2,195v-6,26,-18,34,-36,53r-25,-25v13,-14,25,-24,25,-53r0,-168","w":114},"*":{"d":"139,-144r-40,-25r2,47r-27,0r1,-47r-40,25r-13,-24r41,-22r-41,-22r13,-23r40,24r-1,-46r27,0r-2,46r40,-24r14,23r-42,22r42,22","w":174},"+":{"d":"113,-81r0,60r-34,0r0,-60r-61,0r0,-34r61,0r0,-60r34,0r0,60r61,0r0,34r-61,0"},",":{"d":"28,56r0,-98r42,0r0,64","w":97},"-":{"d":"24,-83r0,-34r105,0r0,34r-105,0","w":153},".":{"d":"28,0r0,-44r44,0r0,44r-44,0","w":100},"\/":{"d":"35,27r-35,0r103,-310r35,0","w":136},"0":{"d":"170,-71v1,43,-32,73,-74,73v-42,0,-74,-30,-74,-73r0,-114v-1,-43,32,-73,74,-73v42,0,74,31,74,73r0,114xm96,-31v60,-2,32,-96,37,-153v2,-24,-14,-42,-37,-42v-59,0,-32,97,-37,154v-2,24,13,42,37,41"},"1":{"d":"91,0r0,-216r-50,44r0,-41r50,-43r37,0r0,256r-37,0"},"2":{"d":"98,-258v69,0,91,77,50,127r-81,98r105,0r0,33r-149,0r0,-33r98,-120v25,-24,16,-74,-23,-73v-23,1,-38,15,-38,40r-37,0v-1,-43,32,-72,75,-72"},"3":{"d":"172,-72v4,71,-87,95,-135,57v-15,-12,-22,-30,-22,-54r37,0v-1,25,18,38,42,38v24,0,41,-17,41,-42v0,-30,-17,-44,-49,-42r0,-32v30,2,45,-12,45,-39v0,-25,-15,-39,-37,-40v-23,-1,-39,15,-39,37r-37,0v-1,-41,34,-70,76,-70v71,0,101,100,42,127v23,10,34,28,36,60"},"4":{"d":"152,-39r0,39r-36,0r0,-39r-103,0r0,-34r90,-183r40,0r-90,183r63,0r0,-59r36,0r0,59r27,0r0,34r-27,0"},"5":{"d":"136,-86v11,-53,-60,-71,-74,-30r-34,0r0,-140r139,0r0,32r-105,0r0,68v46,-37,122,1,110,70v17,92,-112,119,-144,46v-3,-8,-5,-17,-5,-26r36,0v3,24,16,35,38,35v32,0,39,-24,39,-55"},"6":{"d":"172,-76v0,47,-31,78,-76,78v-73,0,-87,-80,-57,-140r59,-118r39,0r-55,110v48,-17,90,22,90,70xm135,-75v0,-25,-15,-45,-39,-45v-25,0,-39,19,-39,45v0,25,14,44,39,44v25,0,39,-18,39,-44"},"7":{"d":"90,0r-40,0r86,-224r-78,0r0,41r-35,0r0,-73r152,0r0,32"},"8":{"d":"175,-72v0,44,-34,74,-79,74v-45,0,-79,-29,-79,-74v0,-29,17,-49,35,-60v-16,-12,-31,-29,-31,-56v-1,-42,33,-70,75,-70v72,0,101,95,44,126v20,11,34,31,35,60xm134,-186v0,-23,-16,-40,-38,-40v-22,0,-38,17,-38,40v0,23,15,39,38,38v21,0,38,-17,38,-38xm138,-73v0,-24,-18,-43,-42,-43v-24,0,-42,19,-42,43v0,23,19,42,42,42v23,0,42,-19,42,-42"},"9":{"d":"96,-258v74,0,87,79,57,139r-59,119r-39,0r55,-110v-48,17,-90,-21,-90,-70v0,-47,31,-78,76,-78xm135,-181v0,-25,-15,-45,-39,-45v-25,0,-39,19,-39,45v-1,26,14,44,39,44v25,0,39,-18,39,-44"},":":{"d":"37,-103r0,-44r44,0r0,44r-44,0xm37,0r0,-44r44,0r0,44r-44,0","w":109},";":{"d":"37,-103r0,-44r44,0r0,44r-44,0xm38,56r0,-98r42,0r0,64","w":109},"<":{"d":"83,-82r124,123r-47,0r-141,-141r141,-141r47,0r-124,124r268,0r0,35r-268,0","w":369},"=":{"d":"18,-118r0,-34r156,0r0,34r-156,0xm18,-48r0,-34r156,0r0,34r-156,0"},">":{"d":"210,41r-47,0r124,-123r-268,0r0,-35r268,0r-124,-124r47,0r141,141","w":369},"?":{"d":"97,-258v59,0,95,68,55,113v-12,22,-37,33,-34,69r-37,0v-6,-59,45,-65,51,-114v2,-20,-16,-36,-35,-36v-21,0,-34,17,-35,37r-36,0v-2,-40,32,-69,71,-69xm79,0r0,-39r41,0r0,39r-41,0","w":183},"@":{"d":"106,-257v79,-3,136,7,136,84r0,174r-35,-1r0,-18v-12,14,-26,21,-45,21v-50,0,-64,-32,-64,-87v0,-53,13,-85,63,-87v19,0,34,7,46,20v4,-46,-10,-74,-52,-74v-52,0,-101,-1,-96,52v5,52,-17,129,18,152r-26,25v-45,-27,-25,-111,-28,-177v-3,-56,28,-82,83,-84xm207,-84v0,-32,-5,-56,-37,-56v-31,0,-36,23,-36,56v0,33,5,55,36,55v31,0,37,-23,37,-55","w":264},"A":{"d":"181,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0r94,256r-41,0xm113,-198r-40,113r79,0","w":225},"B":{"d":"215,-72v0,46,-31,73,-78,72r-104,0r0,-256v82,0,178,-14,178,70v0,25,-17,47,-35,54v22,9,38,30,39,60xm172,-185v0,-45,-56,-35,-100,-36r0,73v45,0,100,8,100,-37xm176,-74v0,-48,-57,-39,-104,-39r0,78v47,0,104,9,104,-39","w":238},"C":{"d":"208,-77v-7,47,-40,82,-92,79v-72,-4,-92,-46,-92,-130v0,-85,20,-126,92,-130v52,-3,84,32,92,78r-40,0v-6,-25,-23,-44,-52,-44v-50,0,-53,37,-53,96v0,60,3,91,53,95v29,2,46,-20,52,-44r40,0","w":226},"D":{"d":"216,-130v0,80,-19,130,-93,130r-90,0r0,-256r90,0v74,3,93,45,93,126xm177,-130v0,-56,-9,-90,-57,-91r-48,0r0,186r48,0v53,-2,57,-38,57,-95","w":239},"E":{"d":"33,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35r-164,0","w":217},"F":{"d":"72,-221r0,78r107,0r0,35r-107,0r0,108r-39,0r0,-256r164,0r0,35r-125,0","w":210},"G":{"d":"210,-139v7,86,-18,141,-94,141v-72,0,-92,-46,-92,-130v0,-85,20,-126,92,-130v53,-3,87,33,94,79r-40,0v-5,-27,-24,-47,-54,-45v-47,4,-53,36,-53,96v0,60,3,91,53,95v39,3,60,-29,55,-72r-55,0r0,-34r94,0","w":233},"H":{"d":"176,0r0,-112r-104,0r0,112r-39,0r0,-256r39,0r0,109r104,0r0,-109r39,0r0,256r-39,0","w":248},"I":{"d":"33,0r0,-256r39,0r0,256r-39,0","w":105},"J":{"d":"152,-81v8,77,-99,109,-147,58r26,-25v25,29,82,14,82,-36r0,-172r39,0r0,175","w":182},"K":{"d":"188,0r-72,-126r-44,51r0,75r-39,0r0,-256r39,0r0,129r105,-129r48,0r-84,100r92,156r-45,0","w":236},"L":{"d":"33,0r0,-256r39,0r0,221r124,0r0,35r-163,0","w":206},"M":{"d":"221,0r0,-171r-59,125r-29,0r-61,-125r0,171r-39,0r0,-256r39,0r75,159r74,-159r39,0r0,256r-39,0","w":292},"N":{"d":"191,0r-119,-180r0,180r-39,0r0,-256r36,0r119,180r0,-180r38,0r0,256r-35,0","w":259},"O":{"d":"208,-128v0,88,-24,130,-92,130v-72,0,-92,-46,-92,-130v0,-85,19,-130,92,-130v72,0,92,43,92,130xm116,-33v49,-5,54,-34,54,-95v0,-64,-5,-88,-54,-96v-47,7,-53,34,-53,96v0,63,5,89,53,95","w":232},"P":{"d":"213,-179v0,68,-64,86,-141,78r0,101r-39,0r0,-256r98,0v48,-2,82,32,82,77xm174,-179v0,-47,-53,-44,-102,-42r0,85v49,1,102,6,102,-43","w":226},"Q":{"d":"208,-128v-2,50,2,66,-16,93r25,25r-22,22r-25,-26v-15,11,-34,16,-54,16v-72,0,-92,-46,-92,-130v0,-85,19,-130,92,-130v72,0,96,43,92,130xm162,-65v13,-53,23,-166,-46,-159v-47,5,-53,34,-53,96v0,73,25,110,80,87r-27,-27r21,-22","w":232},"R":{"d":"212,-181v0,36,-22,60,-51,68r59,113r-45,0r-54,-108r-49,0r0,108r-39,0r0,-256r100,0v46,-2,79,30,79,75xm174,-181v0,-47,-55,-41,-102,-40r0,80v47,1,102,6,102,-40","w":235},"S":{"d":"194,-73v0,86,-139,96,-183,41r26,-25v23,32,118,38,118,-15v0,-73,-136,-9,-136,-111v0,-83,118,-95,166,-46r-25,24v-24,-28,-103,-29,-103,20v0,45,65,33,96,47v20,9,41,26,41,65","w":212},"T":{"d":"120,-221r0,221r-39,0r0,-221r-70,0r0,-35r180,0r0,35r-71,0","w":201},"U":{"d":"213,-86v1,52,-39,88,-92,88v-52,0,-92,-36,-91,-88r0,-170r38,0r0,168v1,32,20,55,53,55v32,0,55,-22,54,-55r0,-168r38,0r0,170","w":243},"V":{"d":"116,0r-30,0r-84,-256r40,0r59,186r59,-186r41,0","w":203},"W":{"d":"243,0r-34,0r-52,-180r-52,180r-34,0r-67,-256r41,0r45,183r51,-183r31,0r52,183r45,-183r41,0","w":313},"X":{"d":"159,0r-55,-98r-56,98r-44,0r79,-131r-74,-125r44,0r51,91r50,-91r45,0r-74,125r79,131r-45,0","w":208},"Y":{"d":"117,-105r0,105r-39,0r0,-105r-76,-151r42,0r54,112r54,-112r42,0","w":195},"Z":{"d":"17,0r0,-33r119,-188r-114,0r0,-35r159,0r0,31r-119,190r119,0r0,35r-164,0","w":198},"[":{"d":"31,27r0,-310r78,0r0,33r-41,0r0,244r41,0r0,33r-78,0","w":124},"\\":{"d":"102,27r-102,-307r35,0r102,307r-35,0","w":136},"]":{"d":"15,27r0,-33r43,0r0,-245r-43,0r0,-32r79,0r0,310r-79,0","w":124},"^":{"d":"143,-144r-40,-75r-41,75r-38,0r62,-115r34,0r61,115r-38,0","w":205},"_":{"d":"0,62r0,-25r206,0r0,25r-206,0","w":205},"`":{"d":"81,-216r-40,-58r41,0r27,58r-28,0","w":180},"a":{"d":"23,-158v30,-46,140,-35,140,36r0,122r-36,0r0,-17v-30,37,-112,19,-112,-37v0,-51,55,-56,112,-52v14,-53,-60,-60,-80,-30xm85,-28v35,0,44,-17,42,-53v-33,0,-76,-7,-76,27v0,17,12,26,34,26","w":190},"b":{"d":"179,-91v2,55,-15,93,-66,93v-25,-1,-35,-7,-48,-21r0,19r-36,0r0,-256r37,0r0,92v11,-13,26,-21,48,-21v53,1,64,42,65,94xm142,-91v0,-34,-5,-61,-38,-61v-33,0,-38,27,-38,61v0,34,4,60,38,60v34,0,38,-26,38,-60","w":199},"c":{"d":"57,-91v-9,55,52,79,79,43r25,24v-50,54,-152,19,-141,-67v-11,-85,90,-123,141,-68r-25,24v-32,-37,-87,-10,-79,44","w":174},"d":{"d":"85,-185v22,0,37,7,48,21r0,-92r37,0r0,256r-36,0r0,-19v-11,15,-25,20,-48,21v-52,1,-65,-39,-65,-93v0,-59,10,-94,64,-94xm133,-91v0,-35,-4,-61,-38,-61v-33,0,-38,27,-38,61v0,34,4,60,38,60v34,0,38,-25,38,-60","w":199},"e":{"d":"97,-185v54,0,83,44,78,104r-119,0v-7,53,65,65,91,33r23,22v-19,18,-34,28,-68,28v-54,-1,-82,-32,-82,-93v0,-54,26,-94,77,-94xm138,-106v7,-46,-60,-66,-77,-25v-3,7,-5,16,-5,25r82,0","w":194},"f":{"d":"35,-179v-6,-55,15,-87,73,-79r0,31v-20,-1,-36,0,-36,21r0,27r36,0r0,28r-36,0r0,151r-37,0r0,-151r-21,0r0,-28r21,0","w":118},"g":{"d":"168,-1v7,73,-96,101,-142,53r23,-24v24,31,89,17,83,-30r0,-23v-11,13,-25,21,-47,21v-50,0,-64,-36,-64,-91v0,-54,12,-90,64,-90v24,0,35,7,48,22r0,-20r35,0r0,182xm132,-95v0,-38,-6,-57,-37,-57v-32,0,-38,24,-38,57v0,33,6,58,38,58v32,0,37,-25,37,-58","w":197},"h":{"d":"66,-164v36,-43,110,-16,110,46r0,118r-36,0v-7,-56,23,-152,-37,-152v-60,0,-30,96,-37,152r-37,0r0,-256r37,0r0,92","w":203},"i":{"d":"28,-219r0,-38r39,0r0,38r-39,0xm29,0r0,-183r37,0r0,183r-37,0","w":95},"j":{"d":"28,-219r0,-38r39,0r0,38r-39,0xm66,24v-1,37,-28,57,-73,51r0,-32v20,1,36,1,36,-21r0,-205r37,0r0,207","w":95},"k":{"d":"144,0r-51,-84r-27,30r0,54r-37,0r0,-256r37,0r0,158r71,-85r44,0r-63,72r71,111r-45,0","w":197},"l":{"d":"65,-53v-2,22,15,23,36,22r0,31v-44,4,-73,-11,-73,-50r0,-206r37,0r0,203","w":111},"m":{"d":"166,-158v35,-48,122,-29,122,41r0,117r-36,0v-7,-56,23,-152,-37,-152v-61,0,-31,96,-38,152r-37,0v-7,-56,23,-151,-36,-152v-61,-1,-31,95,-38,152r-37,0r0,-183r36,0r0,19v23,-27,83,-30,101,6","w":315},"n":{"d":"65,-164v37,-41,112,-19,112,47r0,117r-37,0v-7,-56,23,-151,-36,-152v-61,-1,-31,95,-38,152r-37,0r0,-183r36,0r0,19","w":204},"o":{"d":"173,-91v1,58,-22,93,-77,93v-53,0,-75,-34,-75,-93v0,-58,22,-94,75,-94v55,0,77,36,77,94xm136,-91v0,-37,-9,-61,-40,-61v-33,0,-39,27,-39,61v0,35,7,60,39,60v32,0,40,-24,40,-60","w":193},"p":{"d":"179,-91v1,54,-14,93,-65,93v-25,0,-36,-6,-48,-21r0,93r-37,0r0,-257r36,0r0,20v11,-15,24,-21,48,-22v52,-1,65,41,66,94xm142,-91v0,-34,-5,-61,-38,-61v-33,0,-38,27,-38,61v0,34,4,60,38,60v34,0,38,-26,38,-60","w":199},"q":{"d":"86,-185v25,0,35,7,48,22r0,-20r36,0r0,257r-37,0r0,-93v-11,13,-26,21,-48,21v-53,0,-64,-40,-64,-93v0,-60,10,-94,65,-94xm133,-91v0,-35,-4,-61,-38,-61v-33,0,-38,27,-38,61v0,34,4,60,38,60v34,0,38,-25,38,-60","w":199},"r":{"d":"65,-163v16,-24,73,-32,92,-4r-27,27v-21,-24,-64,-9,-64,29r0,111r-37,0r0,-183r36,0r0,20","w":158},"s":{"d":"150,-93v35,41,-2,95,-62,95v-37,0,-57,-7,-76,-26r24,-24v16,23,88,31,92,-6v-7,-49,-107,3,-107,-75v0,-64,98,-69,136,-35r-23,23v-20,-23,-100,-17,-73,25v22,12,73,4,89,23","w":179},"t":{"d":"105,0v-43,5,-72,-14,-72,-51r0,-100r-20,0r0,-28r20,0r0,-56r37,0r0,56r35,0r0,28r-35,0r0,98v-1,20,14,24,35,22r0,31","w":123},"u":{"d":"101,-31v61,0,31,-96,38,-152r36,0r0,183r-36,0r0,-18v-38,41,-112,16,-112,-48r0,-117r37,0v7,56,-23,152,37,152","w":204},"v":{"d":"100,0r-30,0r-67,-183r39,0r43,129r43,-129r39,0","w":169},"w":{"d":"208,0r-32,0r-42,-127r-43,127r-32,0r-56,-183r39,0r35,129r43,-129r28,0r42,129r35,-129r40,0","w":267},"x":{"d":"129,0r-38,-62r-39,62r-44,0r63,-93r-61,-90r45,0r36,60r35,-60r45,0r-60,90r62,93r-44,0","w":181},"y":{"d":"86,36v-8,28,-28,38,-65,36r0,-33v37,6,37,-25,46,-48r-64,-174r39,0r43,129r43,-129r39,0","w":168},"z":{"d":"15,0r0,-29r91,-121r-85,0r0,-33r131,0r0,30r-92,120r92,0r0,33r-137,0","w":168},"{":{"d":"66,-128v61,20,-22,136,64,122r0,33v-46,3,-77,-6,-77,-50v0,-39,17,-98,-37,-89r0,-32v82,13,-12,-148,89,-139r25,0r0,33v-27,0,-40,-2,-40,28v0,38,8,87,-24,94","w":146},"|":{"d":"42,27r0,-310r37,0r0,310r-37,0","w":121},"}":{"d":"93,-233v0,39,-16,97,37,89r0,32v-82,-14,12,148,-88,139r-26,0r0,-33v27,0,41,1,41,-28v0,-39,-11,-86,24,-94v-32,-7,-24,-55,-24,-94v0,-29,-13,-28,-41,-28r0,-33v46,-3,77,5,77,50","w":146},"~":{"d":"191,-101v-18,17,-26,28,-53,28v-35,0,-74,-41,-99,-4r-24,-23v18,-17,27,-29,53,-29v36,0,73,41,100,5","w":206},"\u00c4":{"d":"181,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0r94,256r-41,0xm113,-198r-40,113r79,0xm134,-283r0,-39r33,0r0,39r-33,0xm57,-283r0,-39r33,0r0,39r-33,0","w":225},"\u00c5":{"d":"157,-315v0,23,-21,45,-45,45v-24,0,-45,-21,-45,-45v0,-24,21,-45,45,-45v24,0,45,22,45,45xm135,-315v0,-12,-11,-23,-23,-23v-11,0,-23,10,-23,23v0,13,11,23,23,23v11,0,24,-11,23,-23xm181,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0r94,256r-41,0xm113,-198r-40,113r79,0","w":225},"\u00c7":{"d":"208,-77v-7,47,-40,82,-92,79v-72,-4,-92,-46,-92,-130v0,-85,20,-126,92,-130v52,-3,84,32,92,78r-40,0v-6,-25,-23,-44,-52,-44v-50,0,-53,37,-53,96v0,60,3,91,53,95v29,2,46,-20,52,-44r40,0xm116,76r-36,0r25,-53r30,0","w":226},"\u00c9":{"d":"33,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35r-164,0xm121,-282r-28,0r27,-58r41,0","w":217},"\u00d1":{"d":"191,-306v-11,11,-20,20,-38,20v-24,0,-49,-30,-68,-4r-17,-17v11,-11,19,-19,37,-20v27,1,48,31,69,4xm191,0r-119,-180r0,180r-39,0r0,-256r36,0r119,180r0,-180r38,0r0,256r-35,0","w":259},"\u00d6":{"d":"208,-128v0,88,-24,130,-92,130v-72,0,-92,-46,-92,-130v0,-85,19,-130,92,-130v72,0,92,43,92,130xm116,-33v49,-5,54,-34,54,-95v0,-64,-5,-88,-54,-96v-47,7,-53,34,-53,96v0,63,5,89,53,95xm138,-283r0,-39r33,0r0,39r-33,0xm61,-283r0,-39r33,0r0,39r-33,0","w":232},"\u00dc":{"d":"213,-86v1,52,-39,88,-92,88v-52,0,-92,-36,-91,-88r0,-170r38,0r0,168v1,32,20,55,53,55v32,0,55,-22,54,-55r0,-168r38,0r0,170xm144,-283r0,-39r33,0r0,39r-33,0xm67,-283r0,-39r33,0r0,39r-33,0","w":243},"\u00e1":{"d":"23,-158v30,-46,140,-35,140,36r0,122r-36,0r0,-17v-30,37,-112,19,-112,-37v0,-51,55,-56,112,-52v14,-53,-60,-60,-80,-30xm85,-28v35,0,44,-17,42,-53v-33,0,-76,-7,-76,27v0,17,12,26,34,26xm102,-216r-28,0r27,-58r41,0","w":190},"\u00e0":{"d":"23,-158v30,-46,140,-35,140,36r0,122r-36,0r0,-17v-30,37,-112,19,-112,-37v0,-51,55,-56,112,-52v14,-53,-60,-60,-80,-30xm85,-28v35,0,44,-17,42,-53v-33,0,-76,-7,-76,27v0,17,12,26,34,26xm84,-216r-40,-58r41,0r27,58r-28,0","w":190},"\u00e2":{"d":"124,-216r-31,-35r-32,35r-30,0r46,-58r31,0r46,58r-30,0xm23,-158v30,-46,140,-35,140,36r0,122r-36,0r0,-17v-30,37,-112,19,-112,-37v0,-51,55,-56,112,-52v14,-53,-60,-60,-80,-30xm85,-28v35,0,44,-17,42,-53v-33,0,-76,-7,-76,27v0,17,12,26,34,26","w":190},"\u00e4":{"d":"23,-158v30,-46,140,-35,140,36r0,122r-36,0r0,-17v-30,37,-112,19,-112,-37v0,-51,55,-56,112,-52v14,-53,-60,-60,-80,-30xm85,-28v35,0,44,-17,42,-53v-33,0,-76,-7,-76,27v0,17,12,26,34,26xm115,-217r0,-39r33,0r0,39r-33,0xm38,-217r0,-39r33,0r0,39r-33,0","w":190},"\u00e3":{"d":"153,-240v-11,11,-20,19,-37,20v-24,1,-49,-30,-68,-5r-17,-17v11,-11,19,-19,37,-19v25,0,49,29,68,4xm23,-158v30,-46,140,-35,140,36r0,122r-36,0r0,-17v-30,37,-112,19,-112,-37v0,-51,55,-56,112,-52v14,-53,-60,-60,-80,-30xm85,-28v35,0,44,-17,42,-53v-33,0,-76,-7,-76,27v0,17,12,26,34,26","w":190},"\u00e5":{"d":"138,-252v0,23,-21,45,-45,45v-24,0,-45,-21,-45,-45v0,-24,21,-45,45,-45v24,0,45,22,45,45xm116,-252v0,-12,-11,-23,-23,-23v-12,-1,-25,10,-24,23v1,12,11,23,24,22v12,0,24,-10,23,-22xm23,-158v30,-46,140,-35,140,36r0,122r-36,0r0,-17v-30,37,-112,19,-112,-37v0,-51,55,-56,112,-52v14,-53,-60,-60,-80,-30xm85,-28v35,0,44,-17,42,-53v-33,0,-76,-7,-76,27v0,17,12,26,34,26","w":190},"\u00e7":{"d":"57,-91v-9,55,52,79,79,43r25,24v-50,54,-152,19,-141,-67v-11,-85,90,-123,141,-68r-25,24v-32,-37,-87,-10,-79,44xm96,76r-36,0r25,-53r30,0","w":175},"\u00e9":{"d":"97,-185v54,0,83,44,78,104r-119,0v-7,53,65,65,91,33r23,22v-19,18,-34,28,-68,28v-54,-1,-82,-32,-82,-93v0,-54,26,-94,77,-94xm138,-106v7,-46,-60,-66,-77,-25v-3,7,-5,16,-5,25r82,0xm107,-216r-28,0r27,-58r41,0","w":194},"\u00e8":{"d":"97,-185v54,0,83,44,78,104r-119,0v-7,53,65,65,91,33r23,22v-19,18,-34,28,-68,28v-54,-1,-82,-32,-82,-93v0,-54,26,-94,77,-94xm138,-106v7,-46,-60,-66,-77,-25v-3,7,-5,16,-5,25r82,0xm89,-216r-40,-58r41,0r27,58r-28,0","w":194},"\u00ea":{"d":"130,-216r-32,-35r-31,35r-31,0r47,-58r31,0r46,58r-30,0xm97,-185v54,0,83,44,78,104r-119,0v-7,53,65,65,91,33r23,22v-19,18,-34,28,-68,28v-54,-1,-82,-32,-82,-93v0,-54,26,-94,77,-94xm138,-106v7,-46,-60,-66,-77,-25v-3,7,-5,16,-5,25r82,0","w":194},"\u00eb":{"d":"97,-185v54,0,83,44,78,104r-119,0v-7,53,65,65,91,33r23,22v-19,18,-34,28,-68,28v-54,-1,-82,-32,-82,-93v0,-54,26,-94,77,-94xm138,-106v7,-46,-60,-66,-77,-25v-3,7,-5,16,-5,25r82,0xm120,-217r0,-39r33,0r0,39r-33,0xm43,-217r0,-39r33,0r0,39r-33,0","w":194},"\u00ed":{"d":"29,0r0,-183r37,0r0,183r-37,0xm57,-216r-28,0r27,-58r41,0","w":95},"\u00ec":{"d":"29,0r0,-183r37,0r0,183r-37,0xm69,-216r-40,-58r41,0r27,58r-28,0","w":95},"\u00ee":{"d":"122,-216r-31,-35r-31,35r-31,0r47,-58r31,0r46,58r-31,0xm29,0r0,-183r37,0r0,183r-37,0","w":95},"\u00ef":{"d":"29,0r0,-183r37,0r0,183r-37,0xm107,-217r0,-39r33,0r0,39r-33,0xm30,-217r0,-39r33,0r0,39r-33,0","w":95},"\u00f1":{"d":"164,-240v-12,11,-21,19,-37,20v-24,2,-49,-30,-68,-5r-18,-17v12,-11,20,-19,38,-19v26,0,48,29,68,4xm65,-164v37,-41,112,-19,112,47r0,117r-37,0v-7,-56,23,-151,-36,-152v-61,-1,-31,95,-38,152r-37,0r0,-183r36,0r0,19","w":204},"\u00f3":{"d":"173,-91v1,58,-22,93,-77,93v-53,0,-75,-34,-75,-93v0,-58,22,-94,75,-94v55,0,77,36,77,94xm136,-91v0,-37,-9,-61,-40,-61v-33,0,-39,27,-39,61v0,35,7,60,39,60v32,0,40,-24,40,-60xm105,-216r-28,0r27,-58r41,0","w":193},"\u00f2":{"d":"173,-91v1,58,-22,93,-77,93v-53,0,-75,-34,-75,-93v0,-58,22,-94,75,-94v55,0,77,36,77,94xm136,-91v0,-37,-9,-61,-40,-61v-33,0,-39,27,-39,61v0,35,7,60,39,60v32,0,40,-24,40,-60xm85,-216r-40,-58r41,0r27,58r-28,0","w":193},"\u00f4":{"d":"128,-216r-32,-35r-31,35r-30,0r46,-58r31,0r46,58r-30,0xm173,-91v1,58,-22,93,-77,93v-53,0,-75,-34,-75,-93v0,-58,22,-94,75,-94v55,0,77,36,77,94xm136,-91v0,-37,-9,-61,-40,-61v-33,0,-39,27,-39,61v0,35,7,60,39,60v32,0,40,-24,40,-60","w":193},"\u00f6":{"d":"173,-91v1,58,-22,93,-77,93v-53,0,-75,-34,-75,-93v0,-58,22,-94,75,-94v55,0,77,36,77,94xm136,-91v0,-37,-9,-61,-40,-61v-33,0,-39,27,-39,61v0,35,7,60,39,60v32,0,40,-24,40,-60xm118,-217r0,-39r33,0r0,39r-33,0xm41,-217r0,-39r33,0r0,39r-33,0","w":193},"\u00f5":{"d":"157,-240v-11,11,-20,19,-37,20v-24,1,-49,-30,-68,-5r-17,-17v11,-11,19,-19,37,-19v25,0,49,29,68,4xm173,-91v1,58,-22,93,-77,93v-53,0,-75,-34,-75,-93v0,-58,22,-94,75,-94v55,0,77,36,77,94xm136,-91v0,-37,-9,-61,-40,-61v-33,0,-39,27,-39,61v0,35,7,60,39,60v32,0,40,-24,40,-60","w":193},"\u00fa":{"d":"101,-31v61,0,31,-96,38,-152r36,0r0,183r-36,0r0,-18v-38,41,-112,16,-112,-48r0,-117r37,0v7,56,-23,152,37,152xm110,-216r-28,0r27,-58r41,0","w":204},"\u00f9":{"d":"101,-31v61,0,31,-96,38,-152r36,0r0,183r-36,0r0,-18v-38,41,-112,16,-112,-48r0,-117r37,0v7,56,-23,152,37,152xm92,-216r-40,-58r41,0r27,58r-28,0","w":204},"\u00fb":{"d":"132,-216r-31,-35r-31,35r-31,0r47,-58r31,0r46,58r-31,0xm101,-31v61,0,31,-96,38,-152r36,0r0,183r-36,0r0,-18v-38,41,-112,16,-112,-48r0,-117r37,0v7,56,-23,152,37,152","w":204},"\u00fc":{"d":"101,-31v61,0,31,-96,38,-152r36,0r0,183r-36,0r0,-18v-38,41,-112,16,-112,-48r0,-117r37,0v7,56,-23,152,37,152xm123,-217r0,-39r33,0r0,39r-33,0xm46,-217r0,-39r33,0r0,39r-33,0","w":204},"\u00b0":{"d":"148,-198v0,33,-28,63,-63,63v-34,0,-63,-29,-63,-63v0,-34,30,-63,63,-63v33,0,63,30,63,63xm117,-198v0,-18,-14,-33,-32,-33v-18,0,-33,15,-33,33v0,18,14,34,33,33v18,0,32,-14,32,-33","w":169},"\u00a2":{"d":"20,-132v0,-50,25,-85,66,-92r0,-32r28,0r0,32v19,2,37,12,51,27r-24,23v-9,-10,-19,-15,-30,-17r0,118v11,-2,21,-7,30,-17r24,24v-14,15,-32,24,-51,26r0,40r-28,0r0,-40v-41,-6,-66,-42,-66,-92xm89,-190v-46,6,-42,112,0,117r0,-117","w":179},"\u00a3":{"d":"160,-208v-25,-31,-90,-14,-83,36r0,31r46,0r0,28r-46,0r0,78r109,0r0,35r-148,0r0,-113r-23,0r0,-28r23,0v-22,-100,81,-151,148,-93","w":203},"\u00a7":{"d":"119,-162v58,6,68,103,16,123v19,9,31,24,32,51v3,60,-76,81,-118,48v-14,-10,-21,-25,-21,-45r36,0v0,19,15,27,34,28v45,3,40,-55,5,-62v-41,-8,-76,-23,-76,-74v0,-27,16,-48,35,-56v-54,-21,-31,-109,36,-109v40,0,68,22,68,59r-35,0v0,-18,-13,-27,-33,-27v-30,0,-40,28,-24,45v10,11,30,14,45,19xm134,-94v0,-23,-13,-39,-36,-39v-22,0,-35,16,-35,39v0,24,11,39,35,39v25,0,36,-15,36,-39","w":195},"\u00b6":{"d":"14,-185v0,-44,35,-71,81,-71r101,0r0,330r-37,0r0,-295r-39,0r0,295r-36,0r0,-188v-39,1,-70,-33,-70,-71","w":229},"\u00df":{"d":"180,-114v0,68,1,126,-75,114r0,-31v49,10,37,-42,38,-83v1,-23,-15,-28,-38,-26r0,-29v23,2,39,-5,38,-27v0,-20,-14,-30,-38,-30v-28,0,-39,14,-39,40r0,186r-37,0r0,-188v0,-46,30,-71,77,-71v42,0,75,20,74,62v0,21,-9,33,-22,41v15,9,22,19,22,42","w":203},"\u00ae":{"d":"285,-128v0,70,-60,130,-130,130v-70,0,-130,-60,-130,-130v0,-70,60,-130,130,-130v70,0,130,60,130,130xm259,-128v0,-58,-46,-106,-104,-106v-58,0,-104,47,-104,106v0,57,47,106,104,106v57,0,104,-49,104,-106xm163,-199v48,-4,61,73,17,82r32,59r-29,0r-29,-56r-18,0r0,56r-26,0r0,-141r53,0xm183,-156v0,-21,-24,-23,-47,-21r0,43v24,2,47,0,47,-22","w":310},"\u00a9":{"d":"285,-128v0,70,-60,130,-130,130v-70,0,-130,-60,-130,-130v0,-70,60,-130,130,-130v70,0,130,60,130,130xm259,-128v0,-58,-47,-106,-104,-106v-57,0,-104,48,-104,106v0,58,47,106,104,106v57,0,104,-48,104,-106xm118,-128v-5,43,44,64,70,36r16,17v-42,41,-111,10,-111,-53v0,-64,68,-94,111,-53r-16,16v-30,-26,-74,-6,-70,37","w":310},"\u2122":{"d":"268,-103r0,-100r-32,64r-26,0r-32,-64r0,100r-28,0r0,-153r28,0r45,87r45,-87r28,0r0,153r-28,0xm83,-231r0,128r-27,0r0,-128r-41,0r0,-25r110,0r0,25r-42,0","w":317},"\u00b4":{"d":"99,-216r-28,0r27,-58r41,0","w":180},"\u00a8":{"d":"112,-217r0,-39r33,0r0,39r-33,0xm35,-217r0,-39r33,0r0,39r-33,0","w":180},"\u00c6":{"d":"159,0r0,-58r-84,0r-31,58r-42,0r134,-256r187,0r0,35r-125,0r0,75r107,0r0,35r-107,0r0,76r125,0r0,35r-164,0xm159,-221r-68,130r68,0r0,-130","w":342},"\u00d8":{"d":"208,-128v0,88,-25,124,-92,130v-18,1,-31,-4,-43,-10r-11,24r-29,0r18,-39v-27,-28,-21,-47,-27,-105v-10,-101,52,-149,135,-121r11,-23r30,0r-19,39v28,24,27,48,27,105xm145,-216v-55,-23,-82,15,-82,88v0,35,3,58,8,68xm88,-41v54,24,82,-14,82,-87v0,-36,-3,-59,-8,-69","w":234},"\u00b1":{"d":"113,-114r0,61r-34,0r0,-61r-61,0r0,-34r61,0r0,-60r34,0r0,60r61,0r0,34r-61,0xm18,0r0,-34r156,0r0,34r-156,0"},"\u00a5":{"d":"141,-152r31,0r0,28r-45,0v-6,10,-12,19,-10,37r55,0r0,28r-55,0r0,59r-39,0r0,-59r-55,0r0,-28r55,0v2,-17,-4,-27,-9,-37r-46,0r0,-28r32,0r-53,-104r42,0r54,113r54,-113r42,0","w":195},"\u00b5":{"d":"101,-31v61,0,31,-96,38,-152r36,0r0,183r-36,0r0,-18v-18,20,-53,28,-75,11r0,81r-37,0r0,-257r37,0v7,56,-23,152,37,152","w":204},"\u00aa":{"d":"107,-195v11,-42,-48,-47,-63,-23r-20,-19v26,-34,112,-29,112,29r0,97r-29,0r0,-12v-25,27,-88,15,-88,-30v0,-42,43,-45,88,-42xm73,-134v27,1,36,-12,34,-41v-26,0,-60,-5,-59,21v0,13,8,20,25,20","w":162},"\u00ba":{"d":"143,-184v0,48,-17,75,-61,75v-42,0,-60,-29,-60,-75v0,-46,18,-74,60,-74v41,0,61,27,61,74xm113,-184v0,-30,-6,-47,-31,-47v-25,0,-30,20,-30,47v0,27,5,48,30,48v26,0,31,-21,31,-48","w":164},"\u00e6":{"d":"150,-161v50,-55,148,-8,132,80r-119,0v-7,53,65,65,91,33r23,22v-26,35,-109,39,-133,0v-27,44,-129,38,-129,-28v0,-51,55,-56,112,-52v14,-53,-60,-60,-80,-30r-24,-22v20,-36,106,-36,127,-3xm245,-106v8,-43,-56,-65,-73,-33v-9,16,-9,15,-9,33r82,0xm85,-28v35,0,44,-17,42,-53v-33,0,-76,-7,-76,27v0,17,12,26,34,26","w":301},"\u00f8":{"d":"173,-91v6,72,-54,111,-114,84r-13,23r-25,0r21,-36v-16,-16,-21,-39,-21,-71v0,-73,51,-112,113,-85r14,-22r24,0r-21,35v17,19,19,38,22,72xm118,-146v-52,-28,-75,42,-55,94xm75,-37v52,27,75,-39,56,-94","w":193},"\u00bf":{"d":"64,-143r0,-40r41,0r0,40r-41,0xm158,7v1,40,-32,69,-72,69v-58,0,-94,-69,-54,-113v12,-22,36,-34,34,-70r37,0v5,58,-43,67,-52,114v0,20,14,36,35,36v22,0,35,-16,36,-36r36,0","w":183},"\u00a1":{"d":"33,-143r0,-40r41,0r0,40r-41,0xm31,74r8,-180r29,0r8,180r-45,0","w":119},"\u00ac":{"d":"140,-35r0,-51r-123,0r0,-34r157,0r0,85r-34,0"},"\u00ab":{"d":"104,-98r83,-82r0,44r-39,38r39,39r0,44xm13,-98r83,-82r0,44r-38,38r38,39r0,44","w":213},"\u00bb":{"d":"117,-15r0,-44r39,-39r-39,-38r0,-44r83,82xm26,-15r0,-44r39,-39r-39,-38r0,-44r83,82","w":213},"\u2026":{"d":"219,0r0,-42r42,0r0,42r-42,0xm123,0r0,-42r43,0r0,42r-43,0xm28,0r0,-42r42,0r0,42r-42,0","w":289},"\u00a0":{"w":86},"\u00c0":{"d":"181,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0r94,256r-41,0xm113,-198r-40,113r79,0xm102,-282r-40,-58r41,0r27,58r-28,0","w":225},"\u00c3":{"d":"172,-306v-11,11,-19,19,-37,20v-25,0,-49,-30,-68,-4r-18,-17v11,-11,20,-20,38,-20v27,0,48,30,68,4xm181,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0r94,256r-41,0xm113,-198r-40,113r79,0","w":225},"\u00d5":{"d":"177,-306v-11,11,-19,19,-37,20v-25,0,-49,-30,-68,-4r-18,-17v11,-11,20,-20,38,-20v27,0,48,30,68,4xm208,-128v0,88,-24,130,-92,130v-72,0,-92,-46,-92,-130v0,-85,19,-130,92,-130v72,0,92,43,92,130xm116,-33v49,-5,54,-34,54,-95v0,-64,-5,-88,-54,-96v-47,7,-53,34,-53,96v0,63,5,89,53,95","w":232},"\u2013":{"d":"18,-83r0,-34r156,0r0,34r-156,0"},"\u2014":{"d":"24,-83r0,-35r302,0r0,35r-302,0","w":349},"\u201c":{"d":"97,-219r0,-37r40,-34r0,71r-40,0xm28,-219r0,-37r40,-34r0,71r-40,0","w":165},"\u201d":{"d":"97,-186r0,-70r40,0r0,37xm28,-186r0,-70r40,0r0,37","w":165},"\u2018":{"d":"28,-219r0,-37r40,-34r0,71r-40,0","w":96},"\u2019":{"d":"28,-186r0,-70r40,0r0,37","w":96},"\u00f7":{"d":"76,-149r0,-39r40,0r0,39r-40,0xm17,-83r0,-34r157,0r0,34r-157,0xm76,-12r0,-39r40,0r0,39r-40,0"},"\u00ff":{"d":"86,36v-8,28,-28,38,-65,36r0,-33v37,6,37,-25,46,-48r-64,-174r39,0r43,129r43,-129r39,0xm106,-217r0,-39r33,0r0,39r-33,0xm29,-217r0,-39r33,0r0,39r-33,0","w":168},"\u00a4":{"d":"191,-5r-27,-27v-25,19,-64,18,-89,0r-26,27r-25,-24r27,-27v-19,-25,-18,-64,0,-89r-27,-26r25,-24r26,26v25,-18,64,-19,89,0r27,-26r24,24r-27,26v18,25,19,64,0,89r27,27xm168,-100v0,-26,-21,-50,-48,-49v-26,0,-49,21,-49,49v0,26,24,49,49,49v25,0,48,-24,48,-49","w":239},"\u00c2":{"d":"143,-281r-31,-35r-32,35r-30,0r46,-58r31,0r47,58r-31,0xm181,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0r94,256r-41,0xm113,-198r-40,113r79,0","w":225},"\u00ca":{"d":"143,-281r-31,-35r-31,35r-31,0r46,-58r31,0r47,58r-31,0xm33,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35r-164,0","w":217},"\u00c1":{"d":"181,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0r94,256r-41,0xm113,-198r-40,113r79,0xm121,-282r-28,0r27,-58r41,0","w":225},"\u00cb":{"d":"33,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35r-164,0xm134,-283r0,-39r33,0r0,39r-33,0xm57,-283r0,-39r33,0r0,39r-33,0","w":217},"\u00c8":{"d":"33,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35r-164,0xm103,-282r-40,-58r41,0r27,58r-28,0","w":217},"\u00cd":{"d":"33,0r0,-256r39,0r0,256r-39,0xm61,-282r-28,0r27,-58r41,0","w":105},"\u00ce":{"d":"127,-281r-32,-35r-31,35r-31,0r47,-58r31,0r46,58r-30,0xm33,0r0,-256r39,0r0,256r-39,0","w":105},"\u00cf":{"d":"33,0r0,-256r39,0r0,256r-39,0xm111,-283r0,-39r33,0r0,39r-33,0xm34,-283r0,-39r33,0r0,39r-33,0","w":105},"\u00cc":{"d":"33,0r0,-256r39,0r0,256r-39,0xm73,-282r-40,-58r41,0r27,58r-28,0","w":105},"\u00d3":{"d":"208,-128v0,88,-24,130,-92,130v-72,0,-92,-46,-92,-130v0,-85,19,-130,92,-130v72,0,92,43,92,130xm116,-33v49,-5,54,-34,54,-95v0,-64,-5,-88,-54,-96v-47,7,-53,34,-53,96v0,63,5,89,53,95xm125,-282r-28,0r27,-58r41,0","w":232},"\u00d4":{"d":"148,-281r-32,-35r-31,35r-31,0r47,-58r31,0r46,58r-30,0xm208,-128v0,88,-24,130,-92,130v-72,0,-92,-46,-92,-130v0,-85,19,-130,92,-130v72,0,92,43,92,130xm116,-33v49,-5,54,-34,54,-95v0,-64,-5,-88,-54,-96v-47,7,-53,34,-53,96v0,63,5,89,53,95","w":232},"\u00d2":{"d":"208,-128v0,88,-24,130,-92,130v-72,0,-92,-46,-92,-130v0,-85,19,-130,92,-130v72,0,92,43,92,130xm116,-33v49,-5,54,-34,54,-95v0,-64,-5,-88,-54,-96v-47,7,-53,34,-53,96v0,63,5,89,53,95xm107,-282r-40,-58r41,0r27,58r-28,0","w":232},"\u00da":{"d":"213,-86v1,52,-39,88,-92,88v-52,0,-92,-36,-91,-88r0,-170r38,0r0,168v1,32,20,55,53,55v32,0,55,-22,54,-55r0,-168r38,0r0,170xm131,-282r-28,0r27,-58r41,0","w":243},"\u00db":{"d":"153,-281r-31,-35r-32,35r-30,0r46,-58r31,0r47,58r-31,0xm213,-86v1,52,-39,88,-92,88v-52,0,-92,-36,-91,-88r0,-170r38,0r0,168v1,32,20,55,53,55v32,0,55,-22,54,-55r0,-168r38,0r0,170","w":243},"\u00d9":{"d":"213,-86v1,52,-39,88,-92,88v-52,0,-92,-36,-91,-88r0,-170r38,0r0,168v1,32,20,55,53,55v32,0,55,-22,54,-55r0,-168r38,0r0,170xm113,-282r-40,-58r41,0r27,58r-28,0","w":243},"\u00b8":{"d":"96,76r-36,0r25,-53r30,0","w":180}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * \251 Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont({"w":195,"face":{"font-family":"DIN-Bold","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","bbox":"-8 -365 352 74","underline-thickness":"31.32","underline-position":"-33.12","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":83},"!":{"d":"87,-80r-36,0r-11,-176r58,0xm44,0r0,-48r50,0r0,48r-50,0","w":124},"\"":{"d":"99,-180r0,-76r43,0r0,76r-43,0xm24,-180r0,-76r44,0r0,76r-44,0","w":167},"#":{"d":"199,-151r-5,39r25,0r0,44r-33,0r-10,68r-50,0r12,-68r-42,0r-11,68r-49,0r10,-68r-24,0r0,-44r32,0r5,-39r-25,0r0,-44r32,0r10,-63r50,0r-10,63r41,0r10,-63r49,0r-9,63r24,0r0,44r-32,0xm109,-151r-6,39r41,0r6,-39r-41,0","w":248},"$":{"d":"166,-142v70,29,38,147,-38,143r0,40r-36,0r0,-39v-40,-1,-64,-12,-85,-34r32,-32v14,13,32,21,57,22r0,-66v-46,-5,-79,-20,-79,-73v0,-44,32,-74,75,-77r0,-32r36,0r0,32v32,0,54,11,71,29r-32,32v-10,-11,-26,-17,-44,-18r0,63v15,2,32,6,43,10xm96,-214v-26,0,-42,35,-21,52v4,4,11,7,21,8r0,-60xm123,-43v38,1,45,-49,15,-59v-4,-1,-9,-2,-15,-3r0,62","w":222},"%":{"d":"287,-83v0,50,-8,85,-53,85v-44,0,-52,-35,-52,-85v0,-29,23,-49,52,-49v30,0,53,18,53,49xm111,0r-37,0r121,-256r37,0xm123,-209v0,49,-8,85,-52,85v-44,0,-52,-35,-52,-85v0,-29,23,-49,52,-49v30,0,52,19,52,49xm253,-49v0,-23,5,-53,-19,-53v-24,0,-17,31,-18,53v0,14,6,21,18,21v12,0,19,-7,19,-21xm89,-175v-1,-22,6,-53,-18,-53v-24,0,-17,31,-18,53v0,14,6,21,18,21v12,0,18,-7,18,-21","w":305},"&":{"d":"111,-258v62,0,87,75,39,105r-19,13r44,51v9,-12,13,-27,13,-45r44,0v0,33,-10,60,-28,80r47,54r-60,0r-19,-22v-47,45,-157,27,-150,-54v3,-35,22,-52,46,-68v-12,-15,-26,-30,-26,-55v0,-38,29,-59,69,-59xm106,-169v20,-4,41,-47,5,-50v-30,1,-24,37,-5,50xm93,-116v-36,13,-33,79,13,76v14,0,26,-5,38,-15","w":259},"'":{"d":"24,-180r0,-76r45,0r0,76r-45,0","w":93},"(":{"d":"76,-52v-1,34,10,38,25,55r-31,31v-20,-21,-41,-40,-41,-84r2,-185v5,-25,25,-39,39,-55r31,31v-15,17,-26,21,-25,55r0,152","w":120},")":{"d":"45,-204v3,-31,-12,-42,-26,-54r32,-32v21,20,41,39,41,83r-2,186v-5,25,-25,39,-39,55r-32,-32v46,-30,20,-136,26,-206","w":120},"*":{"d":"142,-137r-38,-24r1,45r-33,0r2,-45r-38,24r-16,-29r39,-20r-39,-21r16,-29r38,24r-2,-45r33,0r-1,45r38,-24r16,29r-40,21r40,20","w":177},"+":{"d":"120,-78r0,58r-44,0r0,-58r-58,0r0,-44r58,0r0,-57r44,0r0,57r57,0r0,44r-57,0"},",":{"d":"24,59r0,-110r52,0r0,71","w":100},"-":{"d":"21,-81r0,-44r111,0r0,44r-111,0","w":153},".":{"d":"24,0r0,-53r54,0r0,53r-54,0","w":102},"\/":{"d":"44,27r-44,0r103,-310r44,0","w":145},"0":{"d":"176,-74v1,45,-34,76,-78,76v-44,0,-78,-30,-78,-76r0,-108v-2,-46,34,-76,78,-76v44,0,79,31,78,76r0,108xm98,-40v52,-3,26,-91,31,-141v2,-20,-12,-35,-31,-35v-53,2,-25,91,-31,141v-2,21,12,36,31,35"},"1":{"d":"89,0r0,-206r-52,45r0,-50r52,-45r47,0r0,256r-47,0"},"2":{"d":"99,-258v74,0,96,81,51,133r-72,83r99,0r0,42r-156,0r0,-42v35,-43,75,-81,106,-127v9,-23,-2,-49,-28,-47v-19,1,-32,10,-31,32r-47,0v-1,-45,34,-74,78,-74"},"3":{"d":"178,-74v0,72,-90,97,-139,57v-16,-13,-24,-31,-24,-56r47,0v-1,21,16,33,35,33v21,0,35,-13,34,-36v0,-25,-16,-36,-42,-35r0,-41v26,2,39,-9,39,-32v1,-19,-13,-32,-32,-32v-18,0,-31,13,-31,31r-47,0v-1,-44,35,-73,78,-73v72,0,108,96,49,126v19,12,33,27,33,58"},"4":{"d":"161,-36r0,36r-45,0r0,-36r-105,0r0,-45r88,-175r51,0r-88,175r54,0r0,-48r45,0r0,48r23,0r0,45r-23,0"},"5":{"d":"131,-86v11,-48,-51,-61,-62,-26r-43,0r0,-144r146,0r0,42r-104,0r0,55v8,-7,24,-13,39,-13v51,0,65,35,71,86v11,93,-123,119,-152,43v-3,-9,-5,-19,-5,-29r46,0v3,20,11,31,32,32v26,0,33,-20,32,-46"},"6":{"d":"177,-78v0,49,-33,80,-80,80v-55,0,-95,-48,-76,-105v16,-48,50,-106,72,-153r51,0r-53,106v46,-17,86,25,86,72xm130,-77v0,-22,-12,-38,-33,-38v-21,0,-33,16,-33,38v0,22,12,37,33,37v21,0,33,-15,33,-37"},"7":{"d":"98,0r-51,0r83,-214r-67,0r0,40r-45,0r0,-82r163,0r0,42"},"8":{"d":"148,-132v58,33,29,145,-50,134v-78,11,-110,-102,-50,-134v-14,-11,-29,-28,-29,-53v-1,-44,36,-73,79,-73v44,0,78,29,78,73v0,25,-14,42,-28,53xm130,-184v0,-18,-14,-32,-32,-32v-18,0,-32,14,-32,32v0,18,14,32,32,32v18,0,32,-14,32,-32xm133,-75v0,-19,-16,-36,-35,-36v-20,-1,-35,16,-35,36v0,19,16,35,35,35v19,0,35,-16,35,-35"},"9":{"d":"98,-258v77,0,92,80,59,147r-54,111r-51,0r53,-106v-48,15,-87,-26,-87,-73v0,-48,34,-79,80,-79xm131,-179v0,-22,-12,-37,-33,-37v-21,0,-33,15,-33,37v0,22,13,37,33,38v21,0,33,-16,33,-38"},":":{"d":"33,-98r0,-53r54,0r0,53r-54,0xm33,0r0,-53r54,0r0,53r-54,0","w":111},";":{"d":"33,-98r0,-53r54,0r0,53r-54,0xm35,59r0,-110r51,0r0,71","w":111},"<":{"d":"98,-81r118,117r-59,0r-139,-139r139,-138r59,0r-118,116r253,0r0,44r-253,0","w":369},"=":{"d":"18,-120r0,-44r159,0r0,44r-159,0xm18,-42r0,-44r159,0r0,44r-159,0"},">":{"d":"213,36r-59,0r117,-117r-253,0r0,-44r253,0r-117,-116r59,0r139,138","w":369},"?":{"d":"99,-258v61,0,100,70,59,117v-11,19,-34,30,-33,61r-47,0v-5,-55,40,-64,51,-107v0,-18,-12,-29,-30,-29v-18,-1,-29,13,-28,30r-47,0v-1,-44,31,-72,75,-72xm76,0r0,-48r50,0r0,48r-50,0","w":188},"@":{"d":"111,-258v84,0,141,8,141,90r0,169r-44,-1r0,-17v-10,12,-21,20,-43,19v-50,-2,-64,-32,-62,-85v-14,-72,59,-109,104,-67v9,-62,-33,-66,-93,-66v-70,0,-48,90,-48,153v0,20,4,25,15,36r-32,32v-43,-28,-26,-108,-28,-173v-2,-61,28,-90,90,-90xm207,-83v0,-27,-4,-47,-30,-46v-26,0,-28,19,-29,46v0,27,4,45,29,46v24,0,31,-19,30,-46","w":272},"A":{"d":"176,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0r94,256r-52,0xm116,-181r-32,94r63,0","w":229},"B":{"d":"216,-74v0,46,-31,74,-79,74r-107,0r0,-256r103,0v77,-12,105,96,47,125v20,10,36,26,36,57xm162,-182v0,-37,-46,-30,-82,-30r0,59v36,-1,82,8,82,-29xm166,-76v0,-39,-47,-32,-86,-32r0,63v38,0,86,7,86,-31","w":236},"C":{"d":"210,-79v-7,48,-42,81,-94,81v-71,0,-95,-44,-95,-130v0,-86,23,-127,95,-130v53,-2,87,33,94,81r-51,0v-5,-21,-17,-39,-43,-37v-45,3,-45,34,-45,86v0,54,0,82,45,86v25,2,38,-16,43,-37r51,0","w":223},"D":{"d":"216,-145v0,88,-14,145,-94,145r-92,0r0,-256r92,0v65,2,94,38,94,111xm166,-129v0,-70,-18,-89,-86,-83r0,167r38,0v47,-3,48,-32,48,-84","w":237},"E":{"d":"30,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45r-169,0","w":217},"F":{"d":"80,-212r0,63r101,0r0,45r-101,0r0,104r-50,0r0,-256r169,0r0,44r-119,0","w":212},"G":{"d":"212,-143v8,88,-19,145,-96,145v-71,0,-95,-44,-95,-130v0,-86,23,-126,95,-130v56,-3,88,36,96,82r-50,0v-6,-25,-21,-38,-46,-38v-44,0,-45,33,-45,86v0,56,-1,86,45,86v36,0,48,-24,47,-59r-47,0r0,-42r96,0","w":233},"H":{"d":"167,0r0,-107r-87,0r0,107r-50,0r0,-256r50,0r0,104r87,0r0,-104r50,0r0,256r-50,0","w":246},"I":{"d":"30,0r0,-256r50,0r0,256r-50,0","w":109},"J":{"d":"157,-84v7,80,-106,113,-156,60r33,-33v21,27,73,17,73,-29r0,-170r50,0r0,172","w":183},"K":{"d":"179,0r-66,-117r-33,40r0,77r-50,0r0,-256r50,0r0,111r90,-111r61,0r-85,102r91,154r-58,0","w":239},"L":{"d":"30,0r0,-256r50,0r0,211r116,0r0,45r-166,0","w":207},"M":{"d":"212,0r0,-149r-49,97r-34,0r-49,-97r0,149r-50,0r0,-256r49,0r67,138r67,-138r49,0r0,256r-50,0","w":291},"N":{"d":"181,0r-101,-157r0,157r-50,0r0,-256r45,0r101,157r0,-157r50,0r0,256r-45,0","w":255},"O":{"d":"211,-128v0,85,-23,130,-95,130v-71,0,-95,-45,-95,-130v0,-86,23,-130,95,-130v72,0,95,46,95,130xm116,-42v59,7,46,-89,42,-136v-2,-21,-20,-38,-42,-36v-43,3,-45,32,-45,86v0,56,1,81,45,86","w":231},"P":{"d":"214,-176v-1,65,-59,88,-134,80r0,96r-50,0r0,-256r99,0v50,-1,85,33,85,80xm164,-176v0,-40,-44,-37,-84,-36r0,71v40,1,84,5,84,-35","w":226},"Q":{"d":"211,-128v-1,50,0,65,-16,91r22,22r-27,26r-22,-23v-80,38,-163,-11,-147,-116v-5,-86,23,-130,95,-130v72,0,99,46,95,130xm156,-76v7,-51,18,-142,-40,-138v-43,3,-45,32,-45,86v0,56,1,79,45,86v6,0,11,-2,16,-5r-22,-22r27,-26","w":231},"R":{"d":"213,-178v0,34,-21,59,-46,67r57,111r-58,0r-50,-102r-36,0r0,102r-50,0r0,-256r100,0v48,-2,83,32,83,78xm163,-178v0,-39,-44,-35,-83,-34r0,68v39,1,83,5,83,-34","w":235},"S":{"d":"173,-133v51,56,5,135,-73,135v-44,0,-70,-11,-93,-34r32,-32v24,35,137,27,102,-30v-26,-21,-84,-10,-106,-37v-41,-51,-3,-127,71,-127v40,0,62,9,83,29r-32,32v-22,-27,-108,-26,-90,25v11,30,86,18,106,39","w":212},"T":{"d":"128,-212r0,212r-50,0r0,-212r-67,0r0,-44r184,0r0,44r-67,0","w":205},"U":{"d":"215,-88v1,53,-42,90,-95,90v-52,0,-94,-38,-94,-90r0,-168r50,0r0,166v0,29,16,48,44,48v28,0,45,-18,45,-48r0,-166r50,0r0,168","w":240},"V":{"d":"123,0r-37,0r-85,-256r52,0r51,167r52,-167r52,0","w":209},"W":{"d":"248,0r-41,0r-48,-156r-47,156r-41,0r-69,-256r52,0r40,161r47,-161r37,0r47,161r40,-161r52,0","w":319},"X":{"d":"158,0r-50,-89r-49,89r-57,0r79,-131r-74,-125r57,0r44,82r45,-82r57,0r-75,125r80,131r-57,0","w":217},"Y":{"d":"128,-105r0,105r-50,0r0,-105r-77,-151r54,0r48,103r47,-103r55,0","w":205},"Z":{"d":"14,0r0,-40r110,-172r-105,0r0,-44r164,0r0,39r-110,172r110,0r0,45r-169,0","w":197},"[":{"d":"29,27r0,-310r92,0r0,42r-45,0r0,226r45,0r0,42r-92,0","w":136},"\\":{"d":"101,27r-101,-305r44,0r101,305r-44,0","w":145},"]":{"d":"15,27r0,-42r46,0r0,-226r-46,0r0,-42r93,0r0,310r-93,0","w":136},"^":{"d":"145,-140r-37,-68r-36,68r-49,0r64,-119r43,0r64,119r-49,0","w":216},"_":{"d":"0,64r0,-31r217,0r0,31r-217,0","w":216},"`":{"d":"78,-217r-41,-62r50,0r23,62r-32,0","w":180},"a":{"d":"121,-111v11,-46,-54,-49,-71,-24r-29,-29v34,-46,147,-32,147,41r0,123r-46,0r0,-16v-30,36,-109,16,-109,-41v0,-51,52,-58,108,-54xm85,-36v28,1,38,-12,36,-43v-26,1,-63,-6,-63,21v0,14,9,22,27,22","w":192},"b":{"d":"183,-94v1,58,-13,95,-65,96v-23,0,-35,-7,-46,-20r0,18r-46,0r0,-256r47,0r0,85v12,-12,23,-19,45,-19v56,0,63,35,65,96xm136,-94v0,-32,-2,-54,-31,-54v-29,0,-32,22,-32,54v0,32,2,54,32,54v29,0,31,-22,31,-54","w":201},"c":{"d":"64,-94v-6,48,39,70,67,39r32,32v-53,52,-157,19,-146,-71v-10,-90,92,-123,146,-71r-32,32v-25,-30,-75,-10,-67,39","w":172},"d":{"d":"83,-190v23,0,35,6,46,19r0,-85r47,0r0,256r-46,0r0,-18v-12,13,-27,20,-46,20v-57,-3,-66,-35,-66,-96v-1,-56,11,-95,65,-96xm129,-94v0,-32,-3,-54,-32,-54v-29,0,-32,22,-32,54v0,32,2,54,32,54v30,0,32,-22,32,-54","w":201},"e":{"d":"99,-190v57,0,88,47,81,111r-117,0v-4,46,63,54,84,24r28,28v-20,18,-35,29,-71,29v-58,-1,-87,-31,-87,-96v0,-56,30,-95,82,-96xm134,-111v6,-39,-52,-56,-67,-20v-3,6,-4,14,-4,20r71,0","w":197},"f":{"d":"32,-182v-6,-57,21,-84,81,-77r0,39v-18,-1,-34,-2,-34,17r0,21r34,0r0,35r-34,0r0,147r-47,0r0,-147r-19,0r0,-35r19,0","w":123},"g":{"d":"174,-7v7,74,-104,104,-151,53r29,-29v30,30,88,11,75,-44v-11,13,-22,19,-45,19v-52,-2,-64,-35,-64,-91v0,-55,13,-91,64,-91v22,0,34,7,46,20r0,-18r46,0r0,181xm127,-99v0,-28,-4,-49,-31,-49v-27,0,-31,21,-31,49v1,34,5,47,31,49v27,2,31,-21,31,-49","w":199},"h":{"d":"73,-170v38,-42,108,-14,108,49r0,121r-47,0r0,-114v1,-22,-12,-34,-31,-34v-18,0,-31,12,-30,34r0,114r-47,0r0,-256r47,0r0,86","w":204},"i":{"d":"26,-220r0,-38r47,0r0,38r-47,0xm26,0r0,-188r47,0r0,188r-47,0","w":99},"j":{"d":"26,-220r0,-38r47,0r0,38r-47,0xm73,17v0,41,-33,58,-81,53r0,-39v18,1,34,2,34,-17r0,-202r47,0r0,205","w":99},"k":{"d":"139,0r-46,-78r-20,22r0,56r-47,0r0,-256r47,0r0,145r62,-77r57,0r-67,76r72,112r-58,0","w":201},"l":{"d":"106,0v-48,5,-82,-12,-82,-54r0,-202r47,0r0,199v-1,18,17,18,35,17r0,40","w":117},"m":{"d":"168,-166v40,-45,123,-24,123,46r0,120r-47,0r0,-113v0,-21,-12,-35,-31,-35v-53,0,-24,96,-31,148r-47,0r0,-113v0,-21,-12,-35,-31,-35v-20,0,-32,12,-31,35r0,113r-47,0r0,-188r46,0r0,18v21,-26,78,-28,96,4","w":315},"n":{"d":"72,-170v37,-41,110,-15,110,50r0,120r-47,0r0,-113v0,-21,-12,-35,-31,-35v-20,0,-32,12,-31,35r0,113r-47,0r0,-188r46,0r0,18","w":206},"o":{"d":"177,-94v0,63,-22,96,-79,96v-57,0,-80,-35,-80,-96v0,-62,24,-96,80,-96v55,0,79,34,79,96xm130,-94v0,-33,-5,-54,-32,-54v-28,0,-34,23,-33,54v0,34,4,54,33,54v29,0,32,-23,32,-54"},"p":{"d":"183,-94v1,58,-13,95,-65,96v-23,0,-34,-6,-45,-19r0,86r-47,0r0,-257r46,0r0,18v12,-13,27,-20,46,-20v56,3,63,35,65,96xm136,-94v0,-32,-2,-54,-31,-54v-29,0,-32,22,-32,54v0,32,2,54,32,54v29,0,31,-22,31,-54","w":201},"q":{"d":"84,-190v22,0,34,8,46,20r0,-18r46,0r0,257r-47,0r0,-86v-11,12,-23,20,-46,19v-56,-3,-65,-35,-65,-96v-1,-56,12,-96,66,-96xm129,-94v0,-32,-3,-54,-32,-54v-29,0,-32,22,-32,54v0,32,2,54,32,54v30,0,32,-22,32,-54","w":201},"r":{"d":"72,-170v17,-23,72,-28,91,-2r-35,36v-16,-23,-55,-10,-55,23r0,113r-47,0r0,-188r46,0r0,18","w":163},"s":{"d":"153,-97v35,45,-4,104,-65,99v-40,-3,-59,-5,-80,-27r31,-30v12,12,30,14,50,17v31,4,48,-34,13,-37v-46,-4,-84,-8,-84,-55v0,-67,104,-76,144,-38r-29,29v-16,-17,-87,-19,-66,17v23,11,70,5,86,25","w":180},"t":{"d":"111,0v-48,5,-81,-11,-80,-54r0,-93r-20,0r0,-35r20,0r0,-56r46,0r0,56r34,0r0,35r-34,0r0,90v-1,18,16,18,34,17r0,40","w":126},"u":{"d":"102,-40v19,-1,32,-12,31,-34r0,-114r47,0r0,188r-46,0r0,-17v-38,40,-110,14,-110,-51r0,-120r47,0r0,114v-1,21,11,34,31,34","w":206},"v":{"d":"107,0r-36,0r-70,-188r50,0r38,116r38,-116r49,0","w":177},"w":{"d":"215,0r-39,0r-39,-118r-39,118r-39,0r-58,-188r50,0r30,116r39,-116r34,0r38,116r30,-116r50,0","w":273},"x":{"d":"129,0r-34,-56r-35,56r-56,0r65,-96r-62,-92r56,0r32,54r32,-54r56,0r-62,92r64,96r-56,0","w":189},"y":{"d":"176,-188r-86,232v-9,20,-36,27,-67,25r0,-42v33,5,36,-18,43,-40r-65,-175r50,0r39,116r37,-116r49,0","w":177},"z":{"d":"13,0r0,-36r83,-109r-78,0r0,-43r138,0r0,36r-84,110r84,0r0,42r-143,0","w":172},"{":{"d":"79,-128v60,13,-20,131,70,113r0,42v-52,4,-92,-5,-92,-54v0,-39,13,-91,-42,-80r0,-42v25,1,43,0,42,-28v-2,-56,-2,-110,55,-106r37,0r0,42v-27,0,-47,-2,-45,28v2,37,5,80,-25,85","w":164},"|":{"d":"40,27r0,-310r46,0r0,310r-46,0","w":126},"}":{"d":"108,-230v0,39,-14,92,41,81r0,42v-25,-1,-43,0,-41,28v3,57,0,108,-56,106r-37,0r0,-42v28,1,46,1,46,-29v0,-37,-6,-80,25,-84v-30,-6,-27,-48,-25,-85v1,-29,-19,-29,-46,-28r0,-42v52,-4,93,4,93,53","w":164},"~":{"d":"205,-101v-19,18,-30,31,-60,31v-37,0,-74,-41,-102,-6r-30,-29v19,-17,30,-30,59,-31v38,-1,74,42,103,5","w":218},"\u00c4":{"d":"176,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0r94,256r-52,0xm116,-181r-32,94r63,0xm134,-282r0,-45r40,0r0,45r-40,0xm54,-282r0,-45r40,0r0,45r-40,0","w":229},"\u00c5":{"d":"161,-318v0,25,-22,47,-47,47v-25,0,-47,-22,-47,-47v0,-25,21,-47,47,-47v26,0,47,22,47,47xm135,-318v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21xm176,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0r94,256r-52,0xm116,-181r-32,94r63,0","w":229},"\u00c7":{"d":"210,-79v-7,48,-42,81,-94,81v-71,0,-95,-44,-95,-130v0,-86,23,-127,95,-130v53,-2,87,33,94,81r-51,0v-5,-21,-17,-39,-43,-37v-45,3,-45,34,-45,86v0,54,0,82,45,86v25,2,38,-16,43,-37r51,0xm120,74r-43,0r24,-52r35,0","w":223},"\u00c9":{"d":"30,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45r-169,0xm123,-281r-32,0r23,-62r50,0","w":217},"\u00d1":{"d":"193,-306v-14,13,-21,20,-41,21v-24,1,-51,-30,-69,-4r-20,-21v13,-13,20,-20,40,-21v25,0,50,30,69,4xm181,0r-101,-157r0,157r-50,0r0,-256r45,0r101,157r0,-157r50,0r0,256r-45,0","w":255},"\u00d6":{"d":"211,-128v0,85,-23,130,-95,130v-71,0,-95,-45,-95,-130v0,-86,23,-130,95,-130v72,0,95,46,95,130xm116,-42v59,7,46,-89,42,-136v-2,-21,-20,-38,-42,-36v-43,3,-45,32,-45,86v0,56,1,81,45,86xm136,-282r0,-45r40,0r0,45r-40,0xm56,-282r0,-45r40,0r0,45r-40,0","w":231},"\u00dc":{"d":"215,-88v1,53,-42,90,-95,90v-52,0,-94,-38,-94,-90r0,-168r50,0r0,166v0,29,16,48,44,48v28,0,45,-18,45,-48r0,-166r50,0r0,168xm140,-282r0,-45r40,0r0,45r-40,0xm60,-282r0,-45r40,0r0,45r-40,0","w":240},"\u00e1":{"d":"121,-111v11,-46,-54,-49,-71,-24r-29,-29v34,-46,147,-32,147,41r0,123r-46,0r0,-16v-30,36,-109,16,-109,-41v0,-51,52,-58,108,-54xm85,-36v28,1,38,-12,36,-43v-26,1,-63,-6,-63,21v0,14,9,22,27,22xm106,-217r-32,0r23,-62r50,0","w":192},"\u00e0":{"d":"121,-111v11,-46,-54,-49,-71,-24r-29,-29v34,-46,147,-32,147,41r0,123r-46,0r0,-16v-30,36,-109,16,-109,-41v0,-51,52,-58,108,-54xm85,-36v28,1,38,-12,36,-43v-26,1,-63,-6,-63,21v0,14,9,22,27,22xm82,-217r-41,-62r50,0r23,62r-32,0","w":192},"\u00e2":{"d":"124,-217r-30,-33r-30,33r-36,0r47,-61r38,0r47,61r-36,0xm121,-111v11,-46,-54,-49,-71,-24r-29,-29v34,-46,147,-32,147,41r0,123r-46,0r0,-16v-30,36,-109,16,-109,-41v0,-51,52,-58,108,-54xm85,-36v28,1,38,-12,36,-43v-26,1,-63,-6,-63,21v0,14,9,22,27,22","w":192},"\u00e4":{"d":"121,-111v11,-46,-54,-49,-71,-24r-29,-29v34,-46,147,-32,147,41r0,123r-46,0r0,-16v-30,36,-109,16,-109,-41v0,-51,52,-58,108,-54xm85,-36v28,1,38,-12,36,-43v-26,1,-63,-6,-63,21v0,14,9,22,27,22xm114,-218r0,-45r40,0r0,45r-40,0xm34,-218r0,-45r40,0r0,45r-40,0","w":192},"\u00e3":{"d":"159,-243v-14,13,-21,22,-41,22v-23,0,-50,-30,-69,-5r-20,-20v13,-13,20,-20,40,-21v26,-1,47,29,69,4xm121,-111v11,-46,-54,-49,-71,-24r-29,-29v34,-46,147,-32,147,41r0,123r-46,0r0,-16v-30,36,-109,16,-109,-41v0,-51,52,-58,108,-54xm85,-36v28,1,38,-12,36,-43v-26,1,-63,-6,-63,21v0,14,9,22,27,22","w":192},"\u00e5":{"d":"141,-257v0,25,-22,47,-47,47v-25,0,-47,-22,-47,-47v0,-26,21,-48,47,-48v26,0,47,22,47,48xm115,-257v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,10,20,21,21v12,0,21,-9,21,-21xm121,-111v11,-46,-54,-49,-71,-24r-29,-29v34,-46,147,-32,147,41r0,123r-46,0r0,-16v-30,36,-109,16,-109,-41v0,-51,52,-58,108,-54xm85,-36v28,1,38,-12,36,-43v-26,1,-63,-6,-63,21v0,14,9,22,27,22","w":192},"\u00e7":{"d":"64,-94v-6,48,39,70,67,39r32,32v-53,52,-157,19,-146,-71v-10,-90,92,-123,146,-71r-32,32v-25,-30,-75,-10,-67,39xm101,74r-43,0r24,-52r35,0","w":173},"\u00e9":{"d":"99,-190v57,0,88,47,81,111r-117,0v-4,46,63,54,84,24r28,28v-20,18,-35,29,-71,29v-58,-1,-87,-31,-87,-96v0,-56,30,-95,82,-96xm134,-111v6,-39,-52,-56,-67,-20v-3,6,-4,14,-4,20r71,0xm112,-217r-32,0r23,-62r50,0","w":197},"\u00e8":{"d":"99,-190v57,0,88,47,81,111r-117,0v-4,46,63,54,84,24r28,28v-20,18,-35,29,-71,29v-58,-1,-87,-31,-87,-96v0,-56,30,-95,82,-96xm134,-111v6,-39,-52,-56,-67,-20v-3,6,-4,14,-4,20r71,0xm88,-217r-41,-62r50,0r23,62r-32,0","w":197},"\u00ea":{"d":"130,-217r-30,-33r-30,33r-37,0r48,-61r37,0r48,61r-36,0xm99,-190v57,0,88,47,81,111r-117,0v-4,46,63,54,84,24r28,28v-20,18,-35,29,-71,29v-58,-1,-87,-31,-87,-96v0,-56,30,-95,82,-96xm134,-111v6,-39,-52,-56,-67,-20v-3,6,-4,14,-4,20r71,0","w":197},"\u00eb":{"d":"99,-190v57,0,88,47,81,111r-117,0v-4,46,63,54,84,24r28,28v-20,18,-35,29,-71,29v-58,-1,-87,-31,-87,-96v0,-56,30,-95,82,-96xm134,-111v6,-39,-52,-56,-67,-20v-3,6,-4,14,-4,20r71,0xm120,-218r0,-45r40,0r0,45r-40,0xm40,-218r0,-45r40,0r0,45r-40,0","w":197},"\u00ed":{"d":"26,0r0,-188r47,0r0,188r-47,0xm58,-217r-32,0r23,-62r50,0","w":99},"\u00ec":{"d":"26,0r0,-188r47,0r0,188r-47,0xm67,-217r-41,-62r50,0r23,62r-32,0","w":99},"\u00ee":{"d":"122,-217r-29,-33r-30,33r-37,0r48,-61r37,0r48,61r-37,0xm26,0r0,-188r47,0r0,188r-47,0","w":99},"\u00ef":{"d":"26,0r0,-188r47,0r0,188r-47,0xm106,-218r0,-45r40,0r0,45r-40,0xm26,-218r0,-45r40,0r0,45r-40,0","w":99},"\u00f1":{"d":"169,-243v-13,13,-20,22,-40,22v-24,0,-51,-30,-70,-5r-20,-20v13,-13,20,-21,41,-21v25,-2,47,29,68,4xm72,-170v37,-41,110,-15,110,50r0,120r-47,0r0,-113v0,-21,-12,-35,-31,-35v-20,0,-32,12,-31,35r0,113r-47,0r0,-188r46,0r0,18","w":206},"\u00f3":{"d":"177,-94v0,63,-22,96,-79,96v-57,0,-80,-35,-80,-96v0,-62,24,-96,80,-96v55,0,79,34,79,96xm130,-94v0,-33,-5,-54,-32,-54v-28,0,-34,23,-33,54v0,34,4,54,33,54v29,0,32,-23,32,-54xm110,-217r-32,0r23,-62r50,0"},"\u00f2":{"d":"177,-94v0,63,-22,96,-79,96v-57,0,-80,-35,-80,-96v0,-62,24,-96,80,-96v55,0,79,34,79,96xm130,-94v0,-33,-5,-54,-32,-54v-28,0,-34,23,-33,54v0,34,4,54,33,54v29,0,32,-23,32,-54xm84,-217r-41,-62r50,0r23,62r-32,0"},"\u00f4":{"d":"128,-217r-30,-33r-30,33r-36,0r47,-61r38,0r47,61r-36,0xm177,-94v0,63,-22,96,-79,96v-57,0,-80,-35,-80,-96v0,-62,24,-96,80,-96v55,0,79,34,79,96xm130,-94v0,-33,-5,-54,-32,-54v-28,0,-34,23,-33,54v0,34,4,54,33,54v29,0,32,-23,32,-54"},"\u00f6":{"d":"177,-94v0,63,-22,96,-79,96v-57,0,-80,-35,-80,-96v0,-62,24,-96,80,-96v55,0,79,34,79,96xm130,-94v0,-33,-5,-54,-32,-54v-28,0,-34,23,-33,54v0,34,4,54,33,54v29,0,32,-23,32,-54xm118,-218r0,-45r40,0r0,45r-40,0xm38,-218r0,-45r40,0r0,45r-40,0"},"\u00f5":{"d":"163,-243v-14,13,-21,22,-41,22v-23,0,-50,-30,-69,-5r-20,-20v13,-13,20,-20,40,-21v26,-1,47,29,69,4xm177,-94v0,63,-22,96,-79,96v-57,0,-80,-35,-80,-96v0,-62,24,-96,80,-96v55,0,79,34,79,96xm130,-94v0,-33,-5,-54,-32,-54v-28,0,-34,23,-33,54v0,34,4,54,33,54v29,0,32,-23,32,-54"},"\u00fa":{"d":"102,-40v19,-1,32,-12,31,-34r0,-114r47,0r0,188r-46,0r0,-17v-38,40,-110,14,-110,-51r0,-120r47,0r0,114v-1,21,11,34,31,34xm114,-217r-32,0r23,-62r50,0","w":206},"\u00f9":{"d":"102,-40v19,-1,32,-12,31,-34r0,-114r47,0r0,188r-46,0r0,-17v-38,40,-110,14,-110,-51r0,-120r47,0r0,114v-1,21,11,34,31,34xm90,-217r-41,-62r50,0r23,62r-32,0","w":206},"\u00fb":{"d":"132,-217r-30,-33r-30,33r-36,0r47,-61r38,0r47,61r-36,0xm102,-40v19,-1,32,-12,31,-34r0,-114r47,0r0,188r-46,0r0,-17v-38,40,-110,14,-110,-51r0,-120r47,0r0,114v-1,21,11,34,31,34","w":206},"\u00fc":{"d":"102,-40v19,-1,32,-12,31,-34r0,-114r47,0r0,188r-46,0r0,-17v-38,40,-110,14,-110,-51r0,-120r47,0r0,114v-1,21,11,34,31,34xm122,-218r0,-45r40,0r0,45r-40,0xm42,-218r0,-45r40,0r0,45r-40,0","w":206},"\u00b0":{"d":"152,-195v0,35,-31,66,-66,66v-35,0,-66,-31,-66,-66v0,-36,30,-67,66,-67v35,0,66,31,66,67xm114,-195v0,-15,-13,-29,-28,-29v-16,0,-28,14,-28,29v0,15,12,29,28,29v15,0,28,-14,28,-29","w":172},"\u00a2":{"d":"169,-65v-13,14,-27,23,-49,27r0,38r-36,0r0,-38v-41,-8,-67,-42,-67,-94v0,-52,26,-86,67,-94r0,-30r36,0r0,30v22,5,36,12,49,27r-31,31v-7,-8,-15,-13,-23,-15r0,103v9,-4,16,-8,23,-15xm89,-183v-33,9,-35,94,0,102r0,-102","w":179},"\u00a3":{"d":"159,-199v-20,-29,-79,-14,-73,29r0,27r41,0r0,36r-41,0r0,62r106,0r0,45r-156,0r0,-107r-22,0r0,-36r22,0v-11,-85,49,-131,127,-110v10,3,19,11,29,21","w":208},"\u00a7":{"d":"158,-142v24,28,9,86,-20,97v17,10,28,24,29,50v3,61,-79,85,-122,50v-14,-11,-21,-27,-21,-48r45,0v0,15,13,22,27,23v35,0,32,-46,1,-50v-38,-14,-75,-24,-75,-75v0,-24,18,-46,33,-54v-52,-25,-25,-109,41,-109v42,0,69,23,70,61r-44,0v0,-14,-12,-22,-26,-22v-15,-1,-24,9,-25,22v5,32,73,29,87,55xm125,-97v0,-20,-10,-32,-29,-32v-21,0,-29,12,-29,32v0,20,8,32,29,32v18,0,30,-11,29,-32","w":191},"\u00b6":{"d":"13,-183v0,-47,34,-74,83,-73r115,0r0,325r-47,0r0,-281r-36,0r0,281r-47,0r0,-180v-36,1,-68,-34,-68,-72","w":240},"\u00df":{"d":"186,-116v0,70,0,128,-79,116r0,-40v42,8,31,-39,32,-74v0,-17,-13,-24,-32,-22r0,-36v19,2,32,-6,32,-22v0,-16,-13,-25,-32,-24v-24,0,-33,12,-34,34r0,184r-47,0r0,-188v-1,-48,34,-71,81,-70v46,0,78,18,78,63v0,20,-10,32,-22,40v14,8,23,17,23,39","w":206},"\u00ae":{"d":"282,-128v0,70,-60,130,-130,130v-70,0,-130,-60,-130,-130v0,-70,60,-130,130,-130v70,0,130,60,130,130xm251,-128v0,-57,-43,-101,-99,-101v-55,0,-99,44,-99,101v0,57,44,101,99,101v55,0,99,-44,99,-101xm161,-198v47,-5,62,69,20,81r30,58r-36,0r-25,-54r-15,0r0,54r-31,0r0,-139r57,0xm176,-154v0,-19,-21,-19,-41,-18r0,36v21,1,41,1,41,-18","w":303},"\u00a9":{"d":"282,-128v0,70,-60,130,-130,130v-70,0,-130,-60,-130,-130v0,-70,60,-130,130,-130v70,0,130,60,130,130xm251,-128v0,-56,-43,-101,-99,-101v-55,0,-99,44,-99,101v0,57,44,101,99,101v55,0,99,-45,99,-101xm202,-76v-38,38,-120,12,-112,-52v-6,-62,70,-93,112,-52r-20,20v-24,-22,-67,-8,-61,32v-5,38,34,56,61,32","w":303},"\u2122":{"d":"275,-103r0,-90r-28,56r-31,0r-28,-56r0,90r-35,0r0,-153r35,0r43,82r44,-82r35,0r0,153r-35,0xm90,-226r0,123r-34,0r0,-123r-40,0r0,-30r114,0r0,30r-40,0","w":332},"\u00b4":{"d":"102,-217r-32,0r23,-62r50,0","w":180},"\u00a8":{"d":"110,-218r0,-45r40,0r0,45r-40,0xm30,-218r0,-45r40,0r0,45r-40,0","w":180},"\u00c6":{"d":"165,0r0,-56r-81,0r-29,56r-54,0r134,-256r198,0r0,44r-118,0r0,61r101,0r0,44r-101,0r0,62r118,0r0,45r-168,0xm165,-212r-60,114r60,0r0,-114","w":352},"\u00d8":{"d":"211,-128v9,100,-51,147,-136,122r-10,22r-36,0r19,-40v-26,-27,-23,-49,-27,-104v-7,-101,48,-146,136,-123r10,-21r35,0r-19,40v26,26,23,51,28,104xm139,-208v-49,-19,-68,17,-68,80v0,27,2,45,4,54xm93,-49v48,22,68,-18,68,-79v0,-26,-2,-45,-4,-55","w":234},"\u00b1":{"d":"120,-123r0,58r-44,0r0,-58r-58,0r0,-43r58,0r0,-58r44,0r0,58r57,0r0,43r-57,0xm18,0r0,-44r159,0r0,44r-159,0"},"\u00a5":{"d":"156,-159r26,0r0,36r-45,0v-5,10,-11,19,-9,36r54,0r0,36r-54,0r0,51r-50,0r0,-51r-55,0r0,-36r55,0v2,-17,-4,-26,-9,-36r-46,0r0,-36r27,0r-49,-97r54,0r48,103r47,-103r54,0","w":205},"\u00b5":{"d":"103,-40v19,-1,32,-12,31,-34r0,-114r47,0r0,188r-46,0r0,-17v-15,16,-41,25,-63,14r0,72r-47,0r0,-257r47,0r0,114v-1,21,11,34,31,34","w":207},"\u00aa":{"d":"23,-237v27,-36,118,-29,118,32r0,98r-37,0r0,-13v-25,29,-87,14,-87,-32v0,-41,41,-46,86,-43v8,-37,-40,-38,-56,-19xm75,-136v22,0,29,-10,28,-34v-21,0,-50,-5,-49,17v0,11,7,17,21,17","w":163},"\u00ba":{"d":"147,-181v0,49,-18,76,-64,76v-44,0,-63,-28,-63,-76v0,-51,18,-77,63,-77v45,0,65,28,64,77xm109,-181v0,-25,-3,-43,-26,-43v-23,0,-25,18,-25,43v0,26,3,42,25,42v22,0,26,-18,26,-42","w":166},"\u00e6":{"d":"121,-111v11,-46,-54,-49,-71,-24r-29,-29v22,-34,103,-34,129,-5v50,-50,144,-5,135,69r0,21r-118,0v-4,46,63,54,84,24r28,28v-26,36,-109,39,-137,3v-30,44,-129,34,-129,-33v0,-51,52,-58,108,-54xm239,-111v4,-37,-52,-57,-67,-20v-3,6,-5,14,-5,20r72,0xm85,-36v28,1,38,-12,36,-43v-26,1,-63,-6,-63,21v0,14,9,22,27,22","w":301},"\u00f8":{"d":"177,-94v6,77,-52,112,-117,88r-13,22r-28,0r21,-37v-17,-18,-20,-38,-22,-73v-5,-75,52,-112,117,-88r13,-21r29,0r-22,36v17,19,19,37,22,73xm115,-143v-43,-22,-59,33,-47,80xm80,-45v44,23,60,-33,47,-80"},"\u00bf":{"d":"62,-140r0,-48r50,0r0,48r-50,0xm165,-1v1,43,-34,72,-76,72v-60,0,-101,-71,-58,-117v11,-20,33,-31,33,-61r47,0v4,54,-44,62,-51,106v-3,18,11,30,29,30v17,0,29,-13,29,-30r47,0","w":188},"\u00a1":{"d":"31,-140r0,-48r50,0r0,48r-50,0xm27,69r12,-176r34,0r12,176r-58,0","w":124},"\u00ac":{"d":"135,-34r0,-52r-118,0r0,-44r162,0r0,96r-44,0"},"\u00ab":{"d":"112,-99r90,-89r0,56r-34,33r34,33r0,56xm12,-99r90,-89r0,56r-34,33r34,33r0,56","w":226},"\u00bb":{"d":"124,-10r0,-56r34,-33r-34,-33r0,-56r90,89xm24,-10r0,-56r34,-33r-34,-33r0,-56r90,89","w":226},"\u2026":{"d":"229,0r0,-51r51,0r0,51r-51,0xm127,0r0,-51r50,0r0,51r-50,0xm24,0r0,-51r52,0r0,51r-52,0","w":304},"\u00a0":{"w":83},"\u00c0":{"d":"176,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0r94,256r-52,0xm116,-181r-32,94r63,0xm102,-281r-41,-62r50,0r23,62r-32,0","w":229},"\u00c3":{"d":"179,-306v-14,13,-21,20,-41,21v-24,1,-51,-30,-69,-4r-20,-21v13,-13,20,-20,40,-21v25,0,50,30,69,4xm176,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0r94,256r-52,0xm116,-181r-32,94r63,0","w":229},"\u00d5":{"d":"181,-306v-14,13,-21,20,-41,21v-24,1,-51,-30,-69,-4r-20,-21v13,-13,20,-20,40,-21v25,0,50,30,69,4xm211,-128v0,85,-23,130,-95,130v-71,0,-95,-45,-95,-130v0,-86,23,-130,95,-130v72,0,95,46,95,130xm116,-42v59,7,46,-89,42,-136v-2,-21,-20,-38,-42,-36v-43,3,-45,32,-45,86v0,56,1,81,45,86","w":231},"\u2013":{"d":"18,-81r0,-44r159,0r0,44r-159,0"},"\u2014":{"d":"21,-81r0,-45r327,0r0,45r-327,0","w":369},"\u201c":{"d":"100,-212r0,-44r49,-38r0,82r-49,0xm24,-212r0,-44r49,-38r0,82r-49,0","w":173},"\u201d":{"d":"100,-175r0,-81r49,0r0,44xm24,-175r0,-81r49,0r0,44","w":173},"\u2018":{"d":"24,-212r0,-44r49,-38r0,82r-49,0","w":98},"\u2019":{"d":"24,-175r0,-81r49,0r0,44","w":98},"\u00f7":{"d":"75,-152r0,-47r46,0r0,47r-46,0xm17,-81r0,-44r162,0r0,44r-162,0xm75,-6r0,-47r46,0r0,47r-46,0"},"\u00ff":{"d":"176,-188r-86,232v-9,20,-36,27,-67,25r0,-42v33,5,36,-18,43,-40r-65,-175r50,0r39,116r37,-116r49,0xm108,-218r0,-45r40,0r0,45r-40,0xm28,-218r0,-45r40,0r0,45r-40,0","w":177},"\u00a4":{"d":"78,-176v23,-14,60,-17,84,0r27,-26r31,31r-27,26v16,25,16,59,0,84r27,26r-31,31r-27,-26v-25,16,-59,16,-84,0r-26,26r-31,-31r27,-26v-16,-20,-16,-63,0,-84r-27,-26r31,-31xm163,-103v0,-23,-19,-42,-43,-42v-23,-1,-42,19,-42,42v0,23,19,43,42,42v24,0,43,-19,43,-42","w":240},"\u00c2":{"d":"144,-281r-30,-33r-30,33r-36,0r47,-61r38,0r47,61r-36,0xm176,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0r94,256r-52,0xm116,-181r-32,94r63,0","w":229},"\u00ca":{"d":"141,-281r-29,-33r-30,33r-37,0r48,-61r37,0r48,61r-37,0xm30,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45r-169,0","w":217},"\u00c1":{"d":"176,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0r94,256r-52,0xm116,-181r-32,94r63,0xm126,-281r-32,0r23,-62r50,0","w":229},"\u00cb":{"d":"30,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45r-169,0xm132,-282r0,-45r40,0r0,45r-40,0xm52,-282r0,-45r40,0r0,45r-40,0","w":217},"\u00c8":{"d":"30,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45r-169,0xm100,-281r-41,-62r50,0r23,62r-32,0","w":217},"\u00cd":{"d":"30,0r0,-256r50,0r0,256r-50,0xm62,-281r-32,0r23,-62r50,0","w":109},"\u00ce":{"d":"126,-281r-30,-33r-30,33r-36,0r47,-61r38,0r47,61r-36,0xm30,0r0,-256r50,0r0,256r-50,0","w":109},"\u00cf":{"d":"30,0r0,-256r50,0r0,256r-50,0xm110,-282r0,-45r40,0r0,45r-40,0xm30,-282r0,-45r40,0r0,45r-40,0","w":109},"\u00cc":{"d":"30,0r0,-256r50,0r0,256r-50,0xm70,-281r-41,-62r50,0r23,62r-32,0","w":109},"\u00d3":{"d":"211,-128v0,85,-23,130,-95,130v-71,0,-95,-45,-95,-130v0,-86,23,-130,95,-130v72,0,95,46,95,130xm116,-42v59,7,46,-89,42,-136v-2,-21,-20,-38,-42,-36v-43,3,-45,32,-45,86v0,56,1,81,45,86xm128,-281r-32,0r23,-62r50,0","w":231},"\u00d4":{"d":"146,-281r-30,-33r-30,33r-36,0r47,-61r38,0r47,61r-36,0xm211,-128v0,85,-23,130,-95,130v-71,0,-95,-45,-95,-130v0,-86,23,-130,95,-130v72,0,95,46,95,130xm116,-42v59,7,46,-89,42,-136v-2,-21,-20,-38,-42,-36v-43,3,-45,32,-45,86v0,56,1,81,45,86","w":231},"\u00d2":{"d":"211,-128v0,85,-23,130,-95,130v-71,0,-95,-45,-95,-130v0,-86,23,-130,95,-130v72,0,95,46,95,130xm116,-42v59,7,46,-89,42,-136v-2,-21,-20,-38,-42,-36v-43,3,-45,32,-45,86v0,56,1,81,45,86xm104,-281r-41,-62r50,0r23,62r-32,0","w":231},"\u00da":{"d":"215,-88v1,53,-42,90,-95,90v-52,0,-94,-38,-94,-90r0,-168r50,0r0,166v0,29,16,48,44,48v28,0,45,-18,45,-48r0,-166r50,0r0,168xm132,-281r-32,0r23,-62r50,0","w":240},"\u00db":{"d":"150,-281r-30,-33r-30,33r-36,0r48,-61r37,0r47,61r-36,0xm215,-88v1,53,-42,90,-95,90v-52,0,-94,-38,-94,-90r0,-168r50,0r0,166v0,29,16,48,44,48v28,0,45,-18,45,-48r0,-166r50,0r0,168","w":240},"\u00d9":{"d":"215,-88v1,53,-42,90,-95,90v-52,0,-94,-38,-94,-90r0,-168r50,0r0,166v0,29,16,48,44,48v28,0,45,-18,45,-48r0,-166r50,0r0,168xm108,-281r-41,-62r50,0r23,62r-32,0","w":240},"\u00b8":{"d":"101,74r-43,0r24,-52r35,0","w":180}}});


(function($){$.fn.rssfeed=function(url,options,fn){var defaults={limit:10,header:true,titletag:'h4',date:true,content:true,snippet:true,showerror:true,errormsg:'',key:null,ssl:false,linktarget:'_self'};var options=$.extend(defaults,options);return this.each(function(i,e){var $e=$(e);var s='';if(options.ssl)s='s';if(!$e.hasClass('rssFeed'))$e.addClass('rssFeed');if(url==null)return false;var api="http"+s+"://ajax.googleapis.com/ajax/services/feed/load?v=1.0&callback=?&q="+encodeURIComponent(url);if(options.limit!=null)api+="&num="+options.limit;if(options.key!=null)api+="&key="+options.key;api+="&output=json_xml"
$.getJSON(api,function(data){if(data.responseStatus==200){_process(e,data.responseData,options);if($.isFunction(fn))fn.call(this,$e);}else{if(options.showerror)
if(options.errormsg!=''){var msg=options.errormsg;}else{var msg=data.responseDetails;};$(e).html('<div class="rssError"><p>'+msg+'</p></div>');};});});};var _process=function(e,data,options){var feeds=data.feed;if(!feeds){return false;}
var html='';var row='odd';var xml=getXMLDocument(data.xmlString);var xmlEntries=xml.getElementsByTagName('item');if(options.header)
html+='<div class="rssHeader">'+'<a href="'+feeds.link+'" title="'+feeds.description+'">'+feeds.title+'</a>'+'</div>';html+='<div class="rssBody">'+'<ul>';for(var i=0;i<feeds.entries.length;i++){var entry=feeds.entries[i];var entryDate=new Date(entry.publishedDate);var pubDate=entryDate.toLocaleDateString()+' '+entryDate.toLocaleTimeString();html+='<li class="rssRow '+row+'">'+'<'+options.titletag+'><a href="'+entry.link+'" title="View this feed at '+feeds.title+'" target="'+options.linktarget+'">'+entry.title+'</a></'+options.titletag+'>'
if(options.date)html+='<div>'+pubDate+'</div>'
if(options.content){if(options.snippet&&entry.contentSnippet!=''){var content=entry.contentSnippet;}else{var content=entry.content;}
html+='<p>'+content+'</p>'}
if(xmlEntries.length>0){var xmlMedia=xmlEntries[i].getElementsByTagName('enclosure');if(xmlMedia.length>0){html+='<div class="rssMedia"><div>Media files</div><ul>'
for(var m=0;m<xmlMedia.length;m++){var xmlUrl=xmlMedia[m].getAttribute("url");var xmlType=xmlMedia[m].getAttribute("type");var xmlSize=xmlMedia[m].getAttribute("length");html+='<li><a href="'+xmlUrl+'" title="Download this media">'+xmlUrl.split('/').pop()+'</a> ('+xmlType+', '+formatFilesize(xmlSize)+')</li>';}
html+='</ul></div>'}
html+='</li>';}
if(row=='odd'){row='even';}else{row='odd';}}
html+='</ul>'+'</div>'
$(e).html(html);};function formatFilesize(bytes){var s=['bytes','kb','MB','GB','TB','PB'];var e=Math.floor(Math.log(bytes)/Math.log(1024));return(bytes/Math.pow(1024,Math.floor(e))).toFixed(2)+" "+s[e];}
function getXMLDocument(string){var browser=navigator.appName;var xml;if(browser=='Microsoft Internet Explorer'){xml=new ActiveXObject('Microsoft.XMLDOM');xml.async='false'
xml.loadXML(string);}else{xml=(new DOMParser()).parseFromString(string,'text/xml');}
return xml;}})(jQuery);


window.log = function(){
  log.history = log.history || [];  
  log.history.push(arguments);
  arguments.callee = arguments.callee.caller;  
  if(this.console) console.log( Array.prototype.slice.call(arguments) );
};
(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","),a;a=d.pop();)b[a]=b[a]||c})(window.console=window.console||{});



