/*
 *
 * jqTransform
 * by mathieu vilaplana mvilaplana@dfc-e.com
 * Designer ghyslain armand garmand@dfc-e.com
 *
 *
 * Version 1.0 25.09.08
 * Version 1.1 06.08.09
 * Add event click on Checkbox and Radio
 * Auto calculate the size of a select element
 * Can now, disabled the elements
 * Correct bug in ff if click on select (overflow=hidden)
 * No need any more preloading !!
 *
 ******************************************** */

(function($){
	var defaultOptions = {preloadImg:true};
	var jqTransformImgPreloaded = false;

	var jqTransformPreloadHoverFocusImg = function(strImgUrl) {
		//guillemets to remove for ie
		strImgUrl = strImgUrl.replace(/^url\((.*)\)/,'$1').replace(/^\"(.*)\"$/,'$1');
		var imgHover = new Image();
		imgHover.src = strImgUrl.replace(/\.([a-zA-Z]*)$/,'-hover.$1');
		var imgFocus = new Image();
		imgFocus.src = strImgUrl.replace(/\.([a-zA-Z]*)$/,'-focus.$1');
	};


	/***************************
	  Labels
	***************************/
	var jqTransformGetLabel = function(objfield){
		var selfForm = $(objfield.get(0).form);
		var oLabel = objfield.next();
		if(!oLabel.is('label')) {
			oLabel = objfield.prev();
			if(oLabel.is('label')){
				var inputname = objfield.attr('id');
				if(inputname){
					oLabel = selfForm.find('label[for="'+inputname+'"]');
				}
			}
		}
		if(oLabel.is('label')){return oLabel.css('cursor','pointer');}
		return false;
	};

	/* Hide all open selects */
	var jqTransformHideSelect = function(oTarget){
		var ulVisible = $('.jqTransformSelectWrapper ul:visible');
		ulVisible.each(function(){
			var oSelect = $(this).parents(".jqTransformSelectWrapper:first").find("select").get(0);
			//do not hide if click on the label object associated to the select
			if( !(oTarget && oSelect.oLabel && oSelect.oLabel.get(0) == oTarget.get(0)) ){$(this).hide();}
		});
	};
	/* Check for an external click */
	var jqTransformCheckExternalClick = function(event) {
		if ($(event.target).parents('.jqTransformSelectWrapper').length === 0) { jqTransformHideSelect($(event.target)); }
	};

	/* Apply document listener */
	var jqTransformAddDocumentListener = function (){
		$(document).mousedown(jqTransformCheckExternalClick);
	};

	/* Add a new handler for the reset action */
	var jqTransformReset = function(f){
		var sel;
		$('.jqTransformSelectWrapper select', f).each(function(){sel = (this.selectedIndex<0) ? 0 : this.selectedIndex; $('ul', $(this).parent()).each(function(){$('a:eq('+ sel +')', this).click();});});
		$('a.jqTransformCheckbox, a.jqTransformRadio', f).removeClass('jqTransformChecked');
		$('input:checkbox, input:radio', f).each(function(){if(this.checked){$('a', $(this).parent()).addClass('jqTransformChecked');}});
	};

	/***************************
	  Buttons
	 ***************************/
	$.fn.jqTransInputButton = function(){
		return this.each(function(){
			var newBtn = $('<button id="'+ this.id +'" name="'+ this.name +'" type="'+ this.type +'" class="'+ this.className +' jqTransformButton"><span><span>'+ $(this).attr('value') +'</span></span>')
				.hover(function(){newBtn.addClass('jqTransformButton_hover');},function(){newBtn.removeClass('jqTransformButton_hover')})
				.mousedown(function(){newBtn.addClass('jqTransformButton_click')})
				.mouseup(function(){newBtn.removeClass('jqTransformButton_click')})
			;
			$(this).replaceWith(newBtn);
		});
	};

	/***************************
	  Text Fields
	 ***************************/
	$.fn.jqTransInputText = function(){
		return this.each(function(){
			var $input = $(this);

			if($input.hasClass('jqtranformdone') || !$input.is('input')) {return;}
			$input.addClass('jqtranformdone');

			var oLabel = jqTransformGetLabel($(this));
			oLabel && oLabel.bind('click',function(){$input.focus();});

			var inputSize=$input.width();
			if($input.attr('size')){
				inputSize = $input.attr('size')*10;
				$input.css('width',inputSize);
			}

			$input.addClass("jqTransformInput").wrap('<div class="jqTransformInputWrapper"><div class="jqTransformInputInner"><div></div></div></div>');
			var $wrapper = $input.parent().parent().parent();
			$wrapper.css("width", inputSize+10);
			$input
				.focus(function(){$wrapper.addClass("jqTransformInputWrapper_focus");})
				.blur(function(){$wrapper.removeClass("jqTransformInputWrapper_focus");})
				.hover(function(){$wrapper.addClass("jqTransformInputWrapper_hover");},function(){$wrapper.removeClass("jqTransformInputWrapper_hover");})
			;

			/* If this is safari we need to add an extra class */
			$.browser.safari && $wrapper.addClass('jqTransformSafari');
			$.browser.safari && $input.css('width',$wrapper.width()+16);
			this.wrapper = $wrapper;

		});
	};

	/***************************
	  Check Boxes
	 ***************************/
	$.fn.jqTransCheckBox = function(){
		return this.each(function(){
			if($(this).hasClass('jqTransformHidden')) {return;}

			var $input = $(this);
			var inputSelf = this;

			//set the click on the label
			var oLabel=jqTransformGetLabel($input);
			oLabel && oLabel.click(function(){aLink.trigger('click');});

			var aLink = $('<a href="#" class="jqTransformCheckbox"></a>');
			//wrap and add the link
			$input.addClass('jqTransformHidden').wrap('<span class="jqTransformCheckboxWrapper"></span>').parent().prepend(aLink);
			//on change, change the class of the link
			$input.change(function(){
				this.checked && aLink.addClass('jqTransformChecked') || aLink.removeClass('jqTransformChecked');
				return true;
			});
			// Click Handler, trigger the click and change event on the input
			aLink.click(function(){
				//do nothing if the original input is disabled
				if($input.attr('disabled')){return false;}
				//trigger the envents on the input object
				$input.trigger('click').trigger("change");
				return false;
			});

			// set the default state
			this.checked && aLink.addClass('jqTransformChecked');
		});
	};
	/***************************
	  Radio Buttons
	 ***************************/
	$.fn.jqTransRadio = function(){
		return this.each(function(){
			if($(this).hasClass('jqTransformHidden')) {return;}

			var $input = $(this);
			var inputSelf = this;

			oLabel = jqTransformGetLabel($input);
			oLabel && oLabel.click(function(){aLink.trigger('click');});

			var aLink = $('<a href="#" class="jqTransformRadio" rel="'+ this.name +'"></a>');
			$input.addClass('jqTransformHidden').wrap('<span class="jqTransformRadioWrapper"></span>').parent().prepend(aLink);

			$input.change(function(){
				inputSelf.checked && aLink.addClass('jqTransformChecked') || aLink.removeClass('jqTransformChecked');
				return true;
			});
			// Click Handler
			aLink.click(function(){
				if($input.attr('disabled')){return false;}
				$input.trigger('click').trigger('change');

				// uncheck all others of same name input radio elements
				$('input[name="'+$input.attr('name')+'"]',inputSelf.form).not($input).each(function(){
					$(this).attr('type')=='radio' && $(this).trigger('change');
				});

				return false;
			});
			// set the default state
			inputSelf.checked && aLink.addClass('jqTransformChecked');
		});
	};

	/***************************
	  TextArea
	 ***************************/
	$.fn.jqTransTextarea = function(){
		return this.each(function(){
			var textarea = $(this);

			if(textarea.hasClass('jqtransformdone')) {return;}
			textarea.addClass('jqtransformdone');

			oLabel = jqTransformGetLabel(textarea);
			oLabel && oLabel.click(function(){textarea.focus();});

			var strTable = '<table cellspacing="0" cellpadding="0" border="0" class="jqTransformTextarea">';
			strTable +='<tr><td id="jqTransformTextarea-tl"></td><td id="jqTransformTextarea-tm"></td><td id="jqTransformTextarea-tr"></td></tr>';
			strTable +='<tr><td id="jqTransformTextarea-ml">&nbsp;</td><td id="jqTransformTextarea-mm"><div></div></td><td id="jqTransformTextarea-mr">&nbsp;</td></tr>';
			strTable +='<tr><td id="jqTransformTextarea-bl"></td><td id="jqTransformTextarea-bm"></td><td id="jqTransformTextarea-br"></td></tr>';
			strTable +='</table>';
			var oTable = $(strTable)
					.insertAfter(textarea)
					.hover(function(){
						!oTable.hasClass('jqTransformTextarea-focus') && oTable.addClass('jqTransformTextarea-hover');
					},function(){
						oTable.removeClass('jqTransformTextarea-hover');
					})
				;

			textarea
				.focus(function(){oTable.removeClass('jqTransformTextarea-hover').addClass('jqTransformTextarea-focus');})
				.blur(function(){oTable.removeClass('jqTransformTextarea-focus');})
				.appendTo($('#jqTransformTextarea-mm div',oTable))
			;
			this.oTable = oTable;
			if($.browser.safari){
				$('#jqTransformTextarea-mm',oTable)
					.addClass('jqTransformSafariTextarea')
					.find('div')
						.css('height',textarea.height())
						.css('width',textarea.width())
				;
			}
		});
	};

		var jqtZIndex = 10; // by Joris
	/***************************
	  Select
	 ***************************/
	$.fn.jqTransSelect = function(){
		return this.each(function(index){
			var $select = $(this);

			if($select.hasClass('jqTransformHidden')) {return;}
			if($select.attr('multiple')) {return;}

			var oLabel  =  jqTransformGetLabel($select);
			/* First thing we do is Wrap it */
			var $wrapper = $select
				.addClass('jqTransformHidden')
				.wrap('<div class="jqTransformSelectWrapper"></div>')
				.parent()
				/*.css({zIndex: 10-index})*/
				.css({zIndex: jqtZIndex--}) // by Joris
			;

			/* Now add the html for the select */
			$wrapper.prepend('<div><span></span><a href="#" class="jqTransformSelectOpen"></a></div><ul></ul>');
			var $ul = $('ul', $wrapper).css('width',$select.width()).hide();
			/* Now we add the options */
			$('option', this).each(function(i){
				var oLi = $('<li><a href="#" index="'+ i +'">'+ $(this).html() +'</a></li>');
				$ul.append(oLi);
			});

			/* Add click handler to the a */
			$ul.find('a').click(function(){
					$('a.selected', $wrapper).removeClass('selected');
					$(this).addClass('selected');
					/* Fire the onchange event */
					if ($select[0].selectedIndex != $(this).attr('index') && $select[0].onchange) { $select[0].selectedIndex = $(this).attr('index'); $select[0].onchange(); }
					$select[0].selectedIndex = $(this).attr('index');
					$('span:eq(0)', $wrapper).html($(this).html());
					$ul.hide();
					return false;
			});
			/* Set the default */
			$('a:eq('+ this.selectedIndex +')', $ul).click();
			$('span:first', $wrapper).click(function(){$("a.jqTransformSelectOpen",$wrapper).trigger('click');});
			oLabel && oLabel.click(function(){$("a.jqTransformSelectOpen",$wrapper).trigger('click');});
			this.oLabel = oLabel;

			/* Apply the click handler to the Open */
			var oLinkOpen = $('a.jqTransformSelectOpen', $wrapper)
				.click(function(){
					//Check if box is already open to still allow toggle, but close all other selects
					if( $ul.css('display') == 'none' ) {jqTransformHideSelect();}
					if($select.attr('disabled')){return false;}

					$ul.slideToggle('fast', function(){
						var offSet = ($('a.selected', $ul).offset().top - $ul.offset().top);
						$ul.animate({scrollTop: offSet});
					});
					return false;
				})
			;

			// Set the new width
			var iSelectWidth = $select.outerWidth();
			var oSpan = $('span:first',$wrapper);
			var newWidth = (iSelectWidth > oSpan.innerWidth())?iSelectWidth+oLinkOpen.outerWidth():$wrapper.width();
			$wrapper.css('width',newWidth);
			$ul.css('width',newWidth-2);
			oSpan.css({width:iSelectWidth});

			// Calculate the height if necessary, less elements that the default height
			//show the ul to calculate the block, if ul is not displayed li height value is 0
			$ul.css({display:'block',visibility:'hidden'});
			var iSelectHeight = ($('li',$ul).length)*($('li:first',$ul).height());//+1 else bug ff
			(iSelectHeight < $ul.height()) && $ul.css({height:iSelectHeight,'overflow':'hidden'});//hidden else bug with ff
			$ul.css({display:'none',visibility:'visible'});

		});
	};
	$.fn.jqTransform = function(options){
		var opt = $.extend({},defaultOptions,options);

		/* each form */
		 return this.each(function(){
			var selfForm = $(this);
			if(selfForm.hasClass('jqtransformdone')) {return;}
			selfForm.addClass('jqtransformdone');

			$('input:submit, input:reset, input[type="button"]', this).jqTransInputButton();
			$('input:text, input:password', this).jqTransInputText();
			$('input:checkbox', this).jqTransCheckBox();
			$('input:radio', this).jqTransRadio();
			$('textarea', this).jqTransTextarea();

			if( $('select', this).jqTransSelect().length > 0 ){jqTransformAddDocumentListener();}
			selfForm.bind('reset',function(){var action = function(){jqTransformReset(this);}; window.setTimeout(action, 10);});

			//preloading dont needed anymore since normal, focus and hover image are the same one
			/*if(opt.preloadImg && !jqTransformImgPreloaded){
				jqTransformImgPreloaded = true;
				var oInputText = $('input:text:first', selfForm);
				if(oInputText.length > 0){
					//pour ie on eleve les ""
					var strWrapperImgUrl = oInputText.get(0).wrapper.css('background-image');
					jqTransformPreloadHoverFocusImg(strWrapperImgUrl);
					var strInnerImgUrl = $('div.jqTransformInputInner',$(oInputText.get(0).wrapper)).css('background-image');
					jqTransformPreloadHoverFocusImg(strInnerImgUrl);
				}

				var oTextarea = $('textarea',selfForm);
				if(oTextarea.length > 0){
					var oTable = oTextarea.get(0).oTable;
					$('td',oTable).each(function(){
						var strImgBack = $(this).css('background-image');
						jqTransformPreloadHoverFocusImg(strImgBack);
					});
				}
			}*/


		}); /* End Form each */

	};/* End the Plugin */

})(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:
 * (c) COPYRIGHT H. BERTHOLD AG 1992 Alle Rechte vorbehalten.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"123,4v-62,-3,-102,-40,-104,-131v0,-14,2,-77,47,-113v52,-42,119,-3,136,23v39,62,35,227,-79,221xm196,-127v0,-37,-13,-109,-73,-107v-12,0,-35,3,-53,29v-20,28,-20,70,-20,78v-4,16,13,106,73,106v10,0,28,-2,45,-20v21,-22,28,-57,28,-86xm149,-281v-22,-2,-30,-20,-54,-20v-15,0,-18,19,-19,21r-17,-7v6,-15,6,-35,36,-37v20,-2,34,21,53,21v16,0,20,-20,20,-22r15,6v0,8,-10,40,-34,38","w":245},{"d":"85,-320v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21xm153,-320v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21xm58,-82v2,65,57,77,108,45v30,-44,8,-147,14,-217r29,0v-12,108,45,260,-90,258v-52,0,-78,-26,-84,-48v-15,-51,-3,-145,-6,-210r29,0r0,172","w":237},{"d":"86,-201r0,-47r19,0r0,47r44,-15r6,18r-45,14r28,38r-15,11r-27,-39r-28,39r-14,-11r27,-38r-44,-14r5,-18","w":191},{"d":"88,-186v30,0,43,19,51,31r0,-101r26,0r1,232v0,5,0,12,3,24r-26,0v-2,-4,-4,-16,-3,-26v-6,11,-19,31,-51,31v-57,0,-77,-80,-72,-94v-3,-17,14,-97,71,-97xm92,-19v26,0,50,-27,47,-71v0,-1,2,-73,-47,-73v-49,0,-48,72,-48,73v0,14,3,25,4,30v2,8,11,41,44,41"},{"d":"108,-2v-34,12,-74,7,-73,-37r3,-120r-28,0r1,-22r27,0r1,-52r27,0r-2,52r44,0r-1,22r-43,0r-2,118v3,27,22,24,47,15","w":119},{"d":"58,-82v2,65,57,77,108,45v30,-44,8,-147,14,-217r29,0v-12,108,45,260,-90,258v-52,0,-78,-26,-84,-48v-15,-51,-3,-145,-6,-210r29,0r0,172xm102,-273r52,-52r39,0r-63,52r-28,0","w":237},{"d":"184,74r-188,0r0,-21r188,0r0,21","w":180},{"d":"128,-118v4,-32,-13,-46,-37,-45v-9,0,-35,-1,-40,29r-27,0v5,-30,20,-50,68,-52v6,0,47,0,58,32v11,35,-3,118,9,154r-25,0v-3,-11,-4,-13,-5,-24v-10,18,-20,29,-53,29v-42,0,-58,-10,-58,-53v0,-10,2,-30,24,-45v22,-14,62,-21,86,-25xm81,-18v37,0,51,-32,47,-80v-28,5,-45,10,-57,15v-5,2,-25,12,-25,34v0,21,16,31,35,31xm76,-209r39,-52r39,0r-56,52r-22,0","w":181},{"d":"56,-175v69,-37,119,22,112,89r-123,0v0,5,0,44,26,61v30,19,63,-5,68,-21r25,4v-3,15,-29,48,-68,47v-31,-1,-79,-31,-79,-93v0,-9,-1,-66,39,-87xm140,-107v-4,-27,-9,-56,-46,-56v-42,0,-47,50,-48,56r94,0","w":185},{"d":"89,-320v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21xm157,-320v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21xm226,-127v-1,46,-19,135,-103,131v-56,-3,-104,-44,-104,-131v0,-110,96,-178,175,-99v35,35,32,84,32,99xm50,-127v0,65,41,111,73,106v48,3,89,-70,69,-147v-13,-52,-46,-66,-69,-66v-13,0,-38,4,-56,33v-13,21,-17,50,-17,74","w":245},{"d":"87,5v-89,-3,-52,-105,-60,-186r26,0v7,64,-24,157,38,162v23,2,50,-30,44,-59r0,-103r27,0v2,57,-5,135,4,181r-26,0v-3,-9,-4,-15,-4,-24v-6,12,-18,29,-49,29xm118,-209r-22,0r-55,-52r38,0","w":189},{"d":"102,-162v-66,-3,-45,93,-48,162r-27,0v-2,-57,5,-136,-4,-181r25,0v3,7,4,12,4,26v12,-29,95,-58,110,9v8,37,2,101,3,146r-27,0r0,-102v-1,-40,0,-58,-36,-60","w":191},{"d":"27,-193v3,-80,118,-87,146,-26v6,13,7,25,7,30r-28,0v-3,-31,-24,-45,-50,-45v-39,0,-56,29,-39,58v36,39,124,26,124,108v0,42,-25,72,-87,72v-13,0,-55,-3,-73,-44v-4,-9,-7,-17,-8,-37r28,0v1,28,16,56,58,56v26,0,53,-15,53,-44v0,-52,-97,-59,-113,-85v-6,-6,-18,-20,-18,-43","w":208},{"d":"13,76v50,-67,59,-246,-1,-332r21,0v33,27,52,154,46,166v5,14,-13,140,-46,166r-20,0","w":106},{"d":"62,0r-30,0r0,-254r30,0r0,254xm30,-273r52,-52r39,0r-64,52r-27,0","w":93},{"d":"8,-254r160,0r0,24r-66,0r0,230r-28,0r0,-230r-66,0r0,-24","w":176},{"d":"165,-254r35,0r-104,120r114,134r-39,0r-109,-133xm33,-254r29,0r0,254r-29,0r0,-254","w":213},{"d":"64,-13v0,25,-8,33,-27,58r-23,0v3,-3,25,-26,26,-45v-11,2,-22,-4,-22,-20v0,-12,10,-21,22,-21v9,0,24,6,24,28xm104,0v-13,3,-24,-9,-23,-20v0,-12,10,-21,22,-21v9,0,24,6,24,28v0,23,-13,41,-27,58r-23,0v13,-14,24,-31,27,-45","w":147},{"d":"21,-138r163,0r0,20r-163,0r0,-20","w":204},{"d":"210,-168v-5,29,-15,33,-36,39v33,15,21,46,37,81r-27,0v-11,-23,-5,-85,-50,-74r-12,0r0,74r-23,0r0,-160v49,2,106,-13,111,40xm186,-166v0,-31,-32,-22,-64,-24r0,49v30,-1,64,7,64,-25xm150,-255v100,0,169,127,100,209v-35,41,-81,47,-100,47v-77,-2,-129,-60,-128,-128v0,-42,19,-70,29,-83v13,-15,45,-45,99,-45xm150,-10v62,0,122,-57,117,-117v-4,-49,-35,-120,-117,-117v-50,2,-117,33,-117,117v0,69,56,117,117,117","w":299},{"d":"5,-181r28,0r39,144r42,-144r23,0r42,144r39,-144r28,0r-53,183r-26,0r-42,-142r-41,142r-26,0","w":251},{"d":"102,-162v-66,-3,-45,93,-48,162r-27,0v-2,-57,5,-136,-4,-181r25,0v3,7,4,12,4,26v12,-29,95,-58,110,9v8,37,2,101,3,146r-27,0r0,-102v-1,-40,0,-58,-36,-60xm72,-257v24,5,57,43,65,-1r16,4v2,6,-15,45,-33,41v-18,2,-59,-47,-66,0r-15,-4v-3,-6,16,-44,33,-40","w":191},{"d":"7,-254r27,0r49,217r53,-217r25,0r52,217r50,-217r27,0r-61,255r-31,0r-50,-198r-50,198r-31,0","w":296},{"d":"107,-58v0,9,-7,17,-16,17v-9,0,-17,-7,-17,-17v0,-9,8,-16,17,-16v9,0,16,7,16,16xm107,-151v0,9,-8,16,-17,16v-9,0,-16,-8,-16,-17v0,-9,7,-16,17,-16v9,0,16,8,16,17xm180,-94r-180,0r0,-21r180,0r0,21","w":180},{"d":"94,-18v29,-4,34,-12,40,-44r27,0v-1,24,-17,63,-52,65r-9,22v49,4,49,67,-4,68v-12,0,-19,-3,-30,-7r0,-17v15,11,48,1,44,-14v2,-14,-22,-21,-34,-19r13,-31v-42,-5,-68,-29,-71,-95v-2,-41,15,-96,77,-96v52,0,59,25,64,64r-27,0v0,-11,-10,-41,-38,-41v-8,0,-21,1,-33,16v-16,20,-16,52,-16,57v0,27,13,77,49,72","w":178},{"d":"58,-260v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-11,10,-20,21,-20xm135,-260v12,0,21,9,21,20v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm96,5v-97,-3,-112,-182,0,-191v60,-5,85,77,79,96v6,43,-34,96,-79,95xm96,-163v-42,-5,-53,62,-51,73v-3,11,11,76,51,72v33,-3,50,-25,52,-73v1,-10,-10,-78,-52,-72"},{"d":"61,-144r104,0r0,25r-104,0r0,94r114,0r0,25r-142,0r0,-254r139,0r0,24r-111,0r0,86xm116,-273r-28,0r-63,-52r38,0","w":191},{"d":"125,4v-63,0,-106,-39,-106,-131v0,-68,13,-81,46,-112v9,-9,28,-20,60,-20v42,0,62,24,72,37r0,-32r139,0r0,24r-111,0r0,86r103,0r0,24r-103,0r0,95r113,0r0,25r-141,0r0,-32v-11,13,-29,36,-72,36xm50,-127v-4,13,14,115,74,106v6,0,20,0,35,-10v39,-27,43,-91,33,-137v-3,-12,-16,-66,-69,-66v-47,0,-71,37,-73,107","w":354},{"d":"32,-185v2,-43,32,-69,80,-69r79,0r0,16r-12,0r0,298r-16,0r0,-298r-57,0r0,298r-16,0r0,-179v-35,-2,-60,-34,-58,-66","w":240},{"d":"158,-51r-15,15r-53,-54r-53,54r-15,-15r53,-54r-53,-53r15,-15r53,53r53,-53r15,15r-53,53","w":180},{"d":"50,-148v12,0,21,10,21,21v0,11,-9,20,-21,20v-11,0,-20,-8,-20,-20v0,-11,8,-21,20,-21","w":101},{"d":"21,-138r163,0r0,20r-163,0r0,-20","w":204},{"d":"-40,-210r43,-53r31,0r43,53r-26,0r-32,-36r-33,36r-26,0","w":90},{"d":"33,-249r29,0r-4,178r-22,0xm48,-40v12,0,22,10,22,22v0,13,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22","w":95},{"w":90},{"d":"4,-181r28,0r51,152r50,-152r28,0r-65,183r-28,0","w":164},{"d":"128,-118v4,-32,-13,-46,-37,-45v-9,0,-35,-1,-40,29r-27,0v5,-30,20,-50,68,-52v6,0,47,0,58,32v11,35,-3,118,9,154r-25,0v-3,-11,-4,-13,-5,-24v-10,18,-20,29,-53,29v-42,0,-58,-10,-58,-53v0,-10,2,-30,24,-45v22,-14,62,-21,86,-25xm81,-18v37,0,51,-32,47,-80v-28,5,-45,10,-57,15v-5,2,-25,12,-25,34v0,21,16,31,35,31xm32,-210r44,-53r30,0r43,53r-26,0r-32,-36r-33,36r-26,0","w":181},{"d":"128,-118v4,-32,-13,-46,-37,-45v-9,0,-35,-1,-40,29r-27,0v5,-30,20,-50,68,-52v6,0,47,0,58,32v11,35,-3,118,9,154r-25,0v-3,-11,-4,-13,-5,-24v-10,18,-20,29,-53,29v-42,0,-58,-10,-58,-53v0,-10,2,-30,24,-45v22,-14,62,-21,86,-25xm81,-18v37,0,51,-32,47,-80v-28,5,-45,10,-57,15v-5,2,-25,12,-25,34v0,21,16,31,35,31xm52,-260v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm130,-260v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-11,10,-20,21,-20","w":181},{"d":"117,-216v-1,27,-25,53,-53,53v-30,0,-53,-24,-53,-53v0,-29,24,-53,53,-53v30,0,53,24,53,53xm63,-248v-17,0,-31,14,-31,32v0,17,15,31,32,31v18,0,31,-14,31,-31v0,-18,-14,-32,-32,-32","w":127},{"d":"39,-100v-37,-40,-12,-84,46,-86v7,0,43,0,57,30v5,10,5,21,5,25r-25,0v-1,-19,-16,-34,-38,-32v-4,-4,-39,11,-34,27v16,53,100,10,100,84v0,39,-29,57,-64,57v-23,0,-80,-20,-69,-61r25,0v0,1,1,10,4,16v8,22,34,22,39,22v13,4,50,-16,36,-43v-11,-21,-64,-20,-82,-39","w":167},{"d":"123,4v-62,-3,-102,-40,-104,-131v0,-14,2,-77,47,-113v52,-42,119,-3,136,23v39,62,35,227,-79,221xm196,-127v0,-37,-13,-109,-73,-107v-12,0,-35,3,-53,29v-20,28,-20,70,-20,78v-4,16,13,106,73,106v10,0,28,-2,45,-20v21,-22,28,-57,28,-86xm105,-273r53,-52r39,0r-64,52r-28,0","w":245},{"d":"65,-193r1,-18v24,1,49,-14,52,-39r19,0r0,250r-27,0r0,-193r-45,0","w":202},{"d":"95,-256r25,0r88,256r-30,0r-22,-67r-96,0r-23,67r-29,0xm148,-92r-40,-127r-40,127r80,0xm128,-273r-28,0r-63,-52r38,0","w":215},{"d":"317,-15v0,9,-8,17,-17,17v-10,0,-17,-8,-17,-17v0,-9,8,-16,17,-16v9,0,17,6,17,16xm197,-15v0,9,-7,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-16,17,-16v9,0,17,6,17,16xm77,-15v0,9,-7,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16v10,0,17,6,17,16","w":360},{"d":"61,-144r104,0r0,25r-104,0r0,94r114,0r0,25r-142,0r0,-254r139,0r0,24r-111,0r0,86xm78,-273r53,-52r39,0r-64,52r-28,0","w":191},{"d":"95,-256r25,0r88,256r-30,0r-22,-67r-96,0r-23,67r-29,0xm148,-92r-40,-127r-40,127r80,0xm74,-320v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21xm142,-320v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21","w":215},{"d":"61,-144r104,0r0,25r-104,0r0,94r114,0r0,25r-142,0r0,-254r139,0r0,24r-111,0r0,86xm31,-274r49,-50r31,0r50,50r-27,0r-38,-33r-39,33r-26,0","w":191},{"d":"19,-126v3,-91,36,-133,104,-133v13,0,54,2,75,41v4,8,7,16,10,34r-26,0v-1,-13,-20,-54,-58,-50v-48,4,-74,36,-74,107v0,72,21,106,74,106v50,0,55,-29,62,-65r26,0v0,7,-1,27,-11,46v-21,41,-61,44,-76,44v-13,0,-41,-1,-67,-25v-39,-36,-39,-91,-39,-105","w":228},{"d":"128,-118v4,-32,-13,-46,-37,-45v-9,0,-35,-1,-40,29r-27,0v5,-30,20,-50,68,-52v6,0,47,0,58,32v11,35,-3,118,9,154r-25,0v-3,-11,-4,-13,-5,-24v-10,18,-20,29,-53,29v-42,0,-58,-10,-58,-53v0,-10,2,-30,24,-45v22,-14,62,-21,86,-25xm81,-18v37,0,51,-32,47,-80v-28,5,-45,10,-57,15v-5,2,-25,12,-25,34v0,21,16,31,35,31xm95,-207v-19,0,-35,-17,-35,-35v0,-19,15,-36,35,-36v19,0,35,17,35,36v0,20,-16,35,-35,35xm95,-261v-10,0,-19,9,-19,19v0,11,9,18,19,18v10,0,19,-8,19,-18v0,-10,-9,-19,-19,-19","w":181},{"d":"62,73r-29,0r5,-178r21,0xm48,-137v-11,0,-22,-10,-22,-21v0,-12,9,-22,22,-22v12,0,22,9,22,21v0,12,-10,22,-22,22","w":95},{"d":"77,-263r-43,53r-31,0r-43,-53r26,0r33,36r32,-36r26,0","w":90},{"d":"120,0r-20,0r-34,-89r34,-92r20,0r-29,92xm71,0r-20,0r-34,-89r34,-92r20,0r-30,92","w":146},{"d":"193,-178v21,13,26,98,0,112r26,27r-16,17r-27,-27v-30,24,-78,28,-112,0r-27,26r-16,-16r27,-27v-7,-9,-20,-27,-20,-57v0,-30,13,-47,20,-56r-27,-26r16,-16r27,26v19,-20,82,-31,112,0r27,-26r17,16xm121,-51v30,0,70,-21,69,-71v-2,-30,-20,-72,-70,-71v-40,0,-71,31,-71,71v0,41,32,71,72,71","w":240},{"d":"176,-165v0,62,-81,163,-92,171r-31,0v38,-43,54,-64,70,-94v-49,20,-97,-9,-97,-77v0,-56,48,-110,110,-79v39,20,40,68,40,79xm148,-166v4,-8,-11,-62,-47,-62v-33,0,-47,34,-47,62v0,48,28,76,70,55v25,-12,24,-50,24,-55","w":202},{"d":"123,-259v94,0,129,115,87,208r49,54r-34,0r-31,-31v-12,15,-31,32,-72,32v-40,0,-64,-22,-72,-34v-34,-51,-61,-148,22,-214v7,-6,25,-15,51,-15xm196,-127v0,-17,-13,-107,-73,-107v-18,0,-32,6,-45,19v-28,30,-28,79,-28,88v0,9,-1,61,31,90v34,30,65,20,89,-6v27,-29,26,-75,26,-84","w":249},{"d":"172,-254r24,0r-149,254r-24,0xm162,2v-68,-2,-62,-122,0,-122v51,11,69,73,24,114v-9,8,-19,8,-24,8xm188,-59v4,-9,-13,-48,-26,-42v-43,9,-31,82,0,84v21,-4,23,-14,26,-42xm58,-134v-50,-10,-74,-76,-24,-115v37,-29,75,20,72,54v-4,42,-18,56,-48,61xm84,-195v0,-26,0,-34,-26,-42v-21,2,-25,15,-27,42v-1,14,9,44,27,42v17,-2,26,-17,26,-42","w":219},{"d":"146,-40v5,25,38,25,37,-2v0,-2,0,-3,-1,-7v14,-5,12,9,14,23v-4,46,-46,37,-56,-1v-8,12,-31,34,-53,32v-27,-2,-35,-15,-43,-26v0,8,-1,25,4,46v-1,17,24,43,24,55v0,8,-6,14,-14,14v-24,0,-31,-49,-29,-77v2,-36,2,-107,-3,-149v-1,-20,5,-33,17,-34v10,-1,17,23,14,25v-1,34,-7,64,-11,96v5,20,31,40,54,27v19,-10,25,-34,26,-39v6,-16,4,-64,6,-95v0,-2,2,-14,14,-14v13,0,17,12,17,33v0,9,0,57,-17,93","w":202},{"d":"0,-107r105,0r0,21r-105,0r0,-21","w":105},{"d":"18,-237v0,-11,16,-25,22,-22v9,0,24,6,24,28v0,15,-6,34,-27,58r-23,0v8,-10,22,-20,26,-44v-12,0,-22,-9,-22,-20xm81,-237v0,-11,16,-25,22,-22v37,3,22,69,-3,86r-23,0v10,-9,21,-22,27,-44v-12,0,-23,-8,-23,-20","w":147},{"d":"97,-88v-63,21,30,176,-82,178r0,-2v70,-9,0,-156,63,-178v-63,-15,8,-160,-63,-179v18,2,26,0,45,16v22,29,10,69,13,112v-5,21,11,48,24,53","w":127},{"d":"87,-137v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21v0,12,-10,22,-22,22xm20,21v0,-56,66,-53,54,-126r26,1v13,75,-40,75,-51,125v0,10,6,29,32,29v33,0,35,-26,36,-37r24,0v-1,34,-14,62,-63,62v-49,0,-58,-35,-58,-54","w":157},{"d":"-5,-257v24,5,58,44,65,-1r16,4v3,6,-14,45,-33,41v-18,2,-59,-47,-66,0r-15,-4v-3,-6,16,-43,33,-40","w":90},{"d":"33,-254r31,0r122,212r0,-212r27,0r0,254r-32,0r-121,-211r0,211r-27,0r0,-254xm149,-281v-22,-2,-30,-20,-54,-20v-15,0,-18,19,-19,21r-17,-7v6,-15,6,-35,36,-37v20,-2,34,21,53,21v16,0,20,-20,20,-22r15,6v0,8,-10,40,-34,38","w":245},{"d":"95,-256r25,0r88,256r-30,0r-22,-67r-96,0r-23,67r-29,0xm148,-92r-40,-127r-40,127r80,0xm137,-281v-21,-1,-30,-20,-53,-20v-15,0,-20,19,-20,21r-16,-7v4,-16,7,-34,36,-37v20,-2,34,21,53,21v16,0,20,-20,20,-22r15,6v0,8,-10,40,-35,38","w":215},{"d":"28,-181r28,0r0,181r-28,0r0,-181","w":84},{"d":"123,4v-62,-3,-102,-40,-104,-131v0,-14,2,-77,47,-113v52,-42,119,-3,136,23v39,62,35,227,-79,221xm196,-127v0,-37,-13,-109,-73,-107v-12,0,-35,3,-53,29v-20,28,-20,70,-20,78v-4,16,13,106,73,106v10,0,28,-2,45,-20v21,-22,28,-57,28,-86","w":245},{"d":"144,-189v1,-26,-27,-48,-62,-35v-22,9,-23,33,-24,39r-25,0v3,-64,65,-88,117,-53v36,25,30,85,-15,103v5,2,15,5,25,14v19,17,20,39,20,48v-2,33,-21,79,-78,76v-24,4,-88,-21,-78,-74r25,0v-1,33,22,51,51,50v38,-1,50,-21,52,-51v-6,-46,-27,-49,-68,-48r0,-25v47,5,60,-22,60,-44","w":204},{"d":"96,5v-97,-3,-112,-182,0,-191v60,-5,85,77,79,96v6,43,-34,96,-79,95xm96,-163v-42,-5,-53,62,-51,73v-3,11,11,76,51,72v33,-3,50,-25,52,-73v1,-10,-10,-78,-52,-72xm72,-257v24,4,59,44,66,-1r15,4v4,6,-14,45,-32,41v-18,2,-59,-47,-66,0r-15,-4v-3,-6,16,-43,32,-40"},{"d":"51,-174v38,-26,76,-7,88,19v0,-9,1,-17,4,-26r26,0v-9,71,-1,175,-4,256r-26,0r0,-100v-8,18,-50,45,-86,19v-35,-25,-36,-74,-36,-83v0,-30,8,-67,34,-85xm44,-89v2,30,8,70,46,70v32,0,47,-23,49,-71v7,-19,-26,-104,-71,-64v-23,20,-24,61,-24,65"},{"d":"109,-229v-27,-16,-61,0,-50,48r45,0r0,22r-44,0r0,159r-28,0r0,-159r-26,0r0,-22r26,0v1,-29,-4,-52,19,-70v27,-13,28,-11,58,-3r0,25xm137,-256r28,0r0,256r-28,0r0,-256"},{"d":"56,-175v69,-37,119,22,112,89r-123,0v0,5,0,44,26,61v30,19,63,-5,68,-21r25,4v-3,15,-29,48,-68,47v-31,-1,-79,-31,-79,-93v0,-9,-1,-66,39,-87xm140,-107v-4,-27,-9,-56,-46,-56v-42,0,-47,50,-48,56r94,0xm78,-209r39,-52r39,0r-56,52r-22,0","w":185},{"d":"203,-93r-63,0r-13,93r-22,0r13,-93r-36,0r-14,93r-20,0r12,-93r-60,0r0,-20r63,0r5,-35r-60,0r0,-20r63,0r11,-87r22,0r-12,87r36,0r12,-87r21,0r-11,87r60,0r0,20r-63,0r-5,35r61,0r0,20xm121,-113r5,-35r-37,0r-4,35r36,0","w":209},{"d":"26,-181r20,0r34,89r-34,92r-20,0r29,-92xm76,-181r19,0r35,89r-35,92r-19,0r29,-92","w":146},{"d":"95,-256r25,0r88,256r-30,0r-22,-67r-96,0r-23,67r-29,0xm148,-92r-40,-127r-40,127r80,0","w":215},{"d":"131,-181r33,0r-75,82r81,99r-37,0r-78,-98xm28,-256r27,0r0,256r-27,0r0,-256","w":183},{"d":"219,-94r-219,0r0,-22r240,0r0,116r-21,0r0,-94","w":240},{"d":"61,-144r104,0r0,25r-104,0r0,94r114,0r0,25r-142,0r0,-254r139,0r0,24r-111,0r0,86","w":191},{"d":"83,-248r26,0r0,68r68,0r0,23r-68,0r0,208r-26,0r0,-208r-69,0r0,-23r69,0r0,-68","w":191},{"d":"58,-82v2,65,57,77,108,45v30,-44,8,-147,14,-217r29,0v-12,108,45,260,-90,258v-52,0,-78,-26,-84,-48v-15,-51,-3,-145,-6,-210r29,0r0,172xm139,-273r-27,0r-64,-52r38,0","w":237},{"d":"50,-127v-5,9,10,106,79,106v12,0,33,-1,58,-16r0,-65r-52,0r0,-24r78,0r0,104v-20,13,-39,27,-84,27v-43,0,-67,-20,-79,-33v-48,-57,-48,-231,75,-231v43,0,80,28,85,75r-27,0v-7,-26,-23,-53,-58,-50v-65,5,-71,53,-75,107","w":236},{"d":"62,0r-30,0r0,-254r30,0r0,254","w":93},{"d":"128,-118v4,-32,-13,-46,-37,-45v-9,0,-35,-1,-40,29r-27,0v5,-30,20,-50,68,-52v6,0,47,0,58,32v11,35,-3,118,9,154r-25,0v-3,-11,-4,-13,-5,-24v-10,18,-20,29,-53,29v-42,0,-58,-10,-58,-53v0,-10,2,-30,24,-45v22,-14,62,-21,86,-25xm81,-18v37,0,51,-32,47,-80v-28,5,-45,10,-57,15v-5,2,-25,12,-25,34v0,21,16,31,35,31xm114,-209r-22,0r-55,-52r38,0","w":181},{"w":90},{"d":"123,4v-62,-3,-102,-40,-104,-131v0,-14,2,-77,47,-113v52,-42,119,-3,136,23v39,62,35,227,-79,221xm196,-127v0,-37,-13,-109,-73,-107v-12,0,-35,3,-53,29v-20,28,-20,70,-20,78v-4,16,13,106,73,106v10,0,28,-2,45,-20v21,-22,28,-57,28,-86xm58,-274r49,-50r31,0r50,50r-27,0r-38,-33r-38,33r-27,0","w":245},{"d":"96,5v-97,-3,-112,-182,0,-191v60,-5,85,77,79,96v6,43,-34,96,-79,95xm96,-163v-42,-5,-53,62,-51,73v-3,11,11,76,51,72v33,-3,50,-25,52,-73v1,-10,-10,-78,-52,-72xm120,-209r-22,0r-56,-52r39,0"},{"d":"62,0r-30,0r0,-254r30,0r0,254xm13,-320v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21xm81,-320v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21","w":93},{"d":"56,-175v69,-37,119,22,112,89r-123,0v0,5,0,44,26,61v30,19,63,-5,68,-21r25,4v-3,15,-29,48,-68,47v-31,-1,-79,-31,-79,-93v0,-9,-1,-66,39,-87xm140,-107v-4,-27,-9,-56,-46,-56v-42,0,-47,50,-48,56r94,0xm58,-260v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm135,-260v11,0,21,9,21,20v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":185},{"d":"44,-214v13,-2,24,8,23,20v0,12,-10,21,-22,21v-9,0,-24,-6,-24,-28v0,-22,13,-41,27,-58r23,1v-18,20,-22,25,-27,44","w":84},{"d":"62,0r-30,0r0,-254r30,0r0,254xm-18,-274r50,-50r30,0r50,50r-27,0r-38,-33r-38,33r-27,0","w":93},{"d":"223,-135r-17,0r1,-102r-32,102r-15,0r-32,-102r2,102r-17,0r0,-119r24,0r31,98r31,-98r24,0r0,119xm65,-135r-17,0r0,-104r-39,0r0,-15r94,0r0,15r-38,0r0,104","w":247},{"d":"96,5v-97,-3,-112,-182,0,-191v60,-5,85,77,79,96v6,43,-34,96,-79,95xm96,-163v-42,-5,-53,62,-51,73v-3,11,11,76,51,72v33,-3,50,-25,52,-73v1,-10,-10,-78,-52,-72xm81,-209r40,-52r38,0r-55,52r-23,0"},{"d":"50,-225v20,-27,98,-52,136,-10r14,-19r22,0r-23,33v52,63,22,225,-79,225v-11,0,-40,-2,-64,-24r-15,20r-21,0r24,-33v-17,-23,-23,-39,-26,-90v0,-15,2,-62,32,-102xm169,-213v-19,-20,-61,-36,-91,-2v-37,41,-39,100,-16,157xm72,-42v14,17,55,33,86,8v37,-30,36,-91,36,-98v-1,-36,-5,-47,-14,-65","w":245},{"d":"102,-144v-11,-1,-39,10,-45,27r-25,-3r18,-128r114,0r-3,25r-89,0r-10,72v17,-16,50,-27,83,-6v32,20,32,62,32,71v-3,55,-24,89,-80,89v-55,0,-65,-30,-70,-63r26,0v5,19,12,38,44,39v65,1,71,-119,5,-123","w":204},{"d":"87,5v-89,-3,-52,-105,-60,-186r26,0v7,64,-24,157,38,162v23,2,50,-30,44,-59r0,-103r27,0v2,57,-5,135,4,181r-26,0v-3,-9,-4,-15,-4,-24v-6,12,-18,29,-49,29xm36,-210r43,-53r31,0r43,53r-26,0r-32,-36r-33,36r-26,0","w":189},{"d":"35,-28v-38,-48,-10,-158,62,-158v28,0,44,14,52,21r13,-16r20,0r-23,28v35,52,10,158,-63,158v-27,0,-43,-13,-51,-20r-13,15r-20,0xm97,-163v-45,0,-64,73,-44,114r79,-97v-4,-5,-15,-17,-35,-17xm61,-34v34,34,87,8,87,-58v0,-21,-4,-31,-8,-40"},{"d":"101,-55r-21,0r0,-68r-69,0r0,-21r69,0r0,-69r21,0r0,69r68,0r0,21r-68,0r0,68xm169,0r-158,0r0,-21r158,0r0,21","w":180},{"d":"-20,-260v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,10,-20,20,-20xm58,-260v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-11,10,-20,21,-20","w":90},{"d":"56,-260v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm134,-260v11,0,19,9,19,20v0,11,-9,20,-19,20v-11,0,-21,-9,-21,-20v0,-11,10,-20,21,-20xm87,5v-89,-3,-52,-105,-60,-186r26,0v7,64,-24,157,38,162v23,2,50,-30,44,-59r0,-103r27,0v2,57,-5,135,4,181r-26,0v-3,-9,-4,-15,-4,-24v-6,12,-18,29,-49,29","w":189},{"d":"28,-181r28,0r0,181r-28,0r0,-181xm66,-209r-22,0r-56,-52r38,0","w":84},{"d":"56,-175v69,-37,119,22,112,89r-123,0v0,5,0,44,26,61v30,19,63,-5,68,-21r25,4v-3,15,-29,48,-68,47v-31,-1,-79,-31,-79,-93v0,-9,-1,-66,39,-87xm140,-107v-4,-27,-9,-56,-46,-56v-42,0,-47,50,-48,56r94,0xm38,-210r43,-53r31,0r43,53r-26,0r-33,-36r-32,36r-26,0","w":185},{"d":"59,-141v12,-59,9,-133,88,-114v24,6,28,27,29,49r-25,0v-1,-7,0,-28,-24,-28v-39,8,-27,43,-40,93r57,0r0,22r-60,0v0,8,-14,76,-27,97v30,-14,111,18,105,-34r24,0v2,83,-93,49,-165,56v16,-21,27,-76,34,-119r-37,0r0,-22r41,0","w":204},{"d":"42,55v0,-15,-21,-21,-34,-19r14,-36r20,0r-10,25v21,0,37,14,36,33v-1,32,-36,43,-70,28r0,-17v19,12,44,1,44,-14","w":90},{"d":"95,6r-82,-260r21,0r83,260r-22,0","w":127},{"d":"32,-254v109,-4,182,7,187,127v0,18,-3,30,-4,37v-4,17,-20,68,-74,84v-34,10,-69,5,-109,6r0,-254xm189,-127v0,-86,-49,-107,-128,-103r0,205v80,3,128,-14,128,-102","w":237},{"d":"20,-254r156,0r0,19r-131,210r129,0r0,25r-162,0r0,-22r129,-208r-121,0r0,-24","w":187},{"w":90},{"d":"58,-82v2,65,57,77,108,45v30,-44,8,-147,14,-217r29,0v-12,108,45,260,-90,258v-52,0,-78,-26,-84,-48v-15,-51,-3,-145,-6,-210r29,0r0,172xm54,-274r50,-50r30,0r50,50r-26,0r-39,-33r-38,33r-27,0","w":237},{"d":"90,-248v-5,-6,10,-31,24,-19v7,6,7,12,7,15r-13,92r-7,0xm22,-248v-5,-7,10,-31,25,-19v7,6,6,12,6,15r-12,92r-7,0","w":142},{"d":"28,-181r28,0r0,181r-28,0r0,-181xm23,-238v0,-17,16,-23,27,-18v22,11,11,35,-8,37v-10,1,-21,-12,-19,-19","w":84},{"d":"194,-71v0,78,-75,73,-161,71r0,-254v76,-3,150,-3,148,63v3,13,-14,54,-42,56v27,8,55,17,55,64xm61,-145v43,0,89,5,91,-44v0,-6,-1,-23,-18,-34v-12,-8,-47,-7,-73,-7r0,85xm61,-24v71,7,130,-16,95,-77v-16,-29,-57,-19,-95,-20r0,97","w":209},{"d":"18,-90v-5,-45,27,-106,96,-94v38,16,39,29,45,62r-27,0v-2,-21,-7,-37,-38,-41v-36,-5,-54,63,-49,73v0,27,13,77,49,72v29,-4,34,-12,40,-44r27,0v-7,42,-22,67,-67,67v-36,0,-82,-32,-76,-95","w":178},{"d":"12,-254r33,0r59,97r59,-97r33,0r-76,121r80,133r-33,0r-63,-107r-64,107r-33,0r80,-133","w":206},{"d":"6,-181r29,0r49,151r51,-151r27,0v-28,71,-50,172,-86,230v-19,31,-54,27,-66,27r0,-24v34,1,47,-9,59,-50","w":167},{"d":"180,-24r-180,-91r0,-25r180,-90r0,23r-156,80r156,79r0,24","w":180},{"d":"72,-40v12,0,22,10,22,22v0,13,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22xm140,-198v-2,59,-67,52,-54,126r-27,0v-15,-71,48,-83,51,-126v0,-11,-5,-28,-31,-28v-26,0,-31,6,-37,36r-24,0v0,-15,3,-28,13,-41v17,-21,42,-21,50,-21v49,0,59,35,59,54","w":157},{"d":"56,-175v69,-37,119,22,112,89r-123,0v0,5,0,44,26,61v30,19,63,-5,68,-21r25,4v-3,15,-29,48,-68,47v-31,-1,-79,-31,-79,-93v0,-9,-1,-66,39,-87xm140,-107v-4,-27,-9,-56,-46,-56v-42,0,-47,50,-48,56r94,0xm116,-209r-22,0r-55,-52r38,0","w":185},{"d":"162,-185v30,0,37,18,43,34r6,-26r21,0v-8,35,-19,76,-22,115v0,1,-1,19,13,19v37,-2,62,-93,58,-109v0,-6,1,-23,-7,-39v-36,-69,-98,-55,-143,-37v-56,22,-90,84,-90,144v0,51,37,116,121,112v24,8,112,-32,122,-52r10,12v-33,27,-54,57,-131,57v-76,0,-138,-31,-138,-129v0,-20,3,-67,38,-110v16,-20,57,-62,128,-62v44,0,113,28,107,103v-4,55,-19,115,-82,127v-25,-3,-29,-14,-29,-33v-11,15,-20,33,-54,33v-76,0,-40,-128,-10,-144v4,-4,20,-15,39,-15xm165,-166v-37,7,-49,32,-54,81v4,43,31,50,58,28v26,-21,28,-61,28,-68v3,-27,-20,-44,-32,-41","w":322},{"d":"32,-254r44,0r71,223r72,-223r43,0r0,254r-27,0r0,-226r-73,226r-29,0r-73,-226r0,226r-28,0r0,-254","w":294},{"d":"28,-181r28,0r0,181r-28,0r0,-181xm27,-209r40,-52r38,0r-56,52r-22,0","w":84},{"d":"61,-144r104,0r0,25r-103,0r0,119r-29,0r0,-254r139,0r0,24r-111,0r0,86","w":185},{"d":"134,-118v26,16,55,15,69,-10r11,20v-41,54,-67,2,-121,2v-17,0,-24,12,-33,24r-12,-20v4,-6,19,-29,45,-29v11,0,22,1,41,13","w":262},{"d":"22,-248v-5,-7,10,-31,25,-19v7,6,6,12,6,15r-12,92r-7,0","w":74},{"d":"95,-256r25,0r88,256r-30,0r-22,-67r-96,0r-23,67r-29,0xm148,-92r-40,-127r-40,127r80,0xm91,-273r52,-52r38,0r-63,52r-27,0","w":215},{"d":"134,-121v5,-40,-45,-59,-71,-21v-18,45,-4,89,-8,142r-27,0v-2,-56,5,-136,-4,-181r26,0v3,8,4,16,4,25v16,-40,90,-39,102,2v7,-12,21,-32,56,-32v81,1,46,109,53,186r-26,0r0,-124v1,-29,-17,-38,-36,-38v-63,0,-38,97,-43,162r-26,0r0,-121","w":292},{"d":"28,-181r28,0r0,181r-28,0r0,-181xm-16,-210r43,-53r31,0r43,53r-26,0r-33,-36r-32,36r-26,0","w":84},{"d":"101,-162v-73,0,-39,96,-47,162r-26,0r0,-256r26,0r0,96v18,-25,73,-46,102,-2v20,30,6,112,9,162r-27,0r0,-116v3,-32,-17,-46,-37,-46","w":191},{"d":"138,-230v23,41,-11,73,-35,92r54,72v8,-12,9,-34,9,-51r23,0v2,11,-4,62,-17,73r33,44r-31,0r-18,-24v-45,50,-143,25,-140,-42v-4,-25,30,-66,51,-77v-37,-38,-47,-103,27,-108v7,0,32,-1,44,21xm88,-157v9,-9,28,-19,32,-47v-6,-42,-56,-30,-56,1v0,19,16,33,24,46xm43,-65v7,52,72,59,99,22r-59,-79v-16,13,-35,19,-40,57","w":225},{"d":"184,-124v-6,59,-8,127,-82,127v-39,0,-57,-27,-63,-39v-32,-54,-27,-218,63,-216v25,0,45,12,59,33v23,34,23,88,23,95xm155,-125v2,-39,-17,-107,-53,-103v-36,4,-56,46,-53,104v2,37,6,105,53,104v46,0,51,-62,53,-105","w":204},{"d":"35,-254r57,0r0,22r-32,0r0,284r32,0r0,22r-57,0r0,-328","w":106},{"d":"52,90r-21,0r0,-359r21,0r0,359","w":82},{"d":"26,-83v0,-66,38,-112,92,-171r31,1v-38,42,-58,72,-70,93v52,-19,94,7,97,77v1,23,-19,92,-73,86v-48,-5,-77,-22,-77,-86xm125,-137v-41,-26,-71,18,-71,55v0,35,28,76,68,57v27,-13,26,-54,26,-58v0,-6,-1,-40,-23,-54","w":202},{"d":"0,9v36,1,49,-14,49,-60r0,-203r29,0r0,224v3,41,-33,68,-78,63r0,-24","w":110},{"d":"12,-181r31,0r42,65r41,-65r33,0r-58,85r65,96r-32,0r-49,-75r-50,75r-32,0r65,-96","w":168},{"d":"113,-138r71,0r0,20r-71,0r0,74r-21,0r0,-74r-71,0r0,-20r71,0r0,-73r21,0r0,73","w":204},{"d":"68,-13v0,30,-8,38,-31,69r-23,-1v14,-14,26,-32,30,-55v-13,2,-23,-9,-23,-21v-4,-8,17,-25,23,-22v10,0,24,7,24,30","w":91},{"d":"128,-118v4,-32,-13,-46,-37,-45v-9,0,-35,-1,-40,29r-27,0v5,-30,20,-50,68,-52v6,0,47,0,58,32v11,35,-3,118,9,154r-25,0v-3,-11,-4,-13,-5,-24v-10,18,-20,29,-53,29v-42,0,-58,-10,-58,-53v0,-10,2,-30,24,-45v22,-14,62,-21,86,-25xm81,-18v37,0,51,-32,47,-80v-28,5,-45,10,-57,15v-5,2,-25,12,-25,34v0,21,16,31,35,31","w":181},{"d":"49,-40v12,0,22,10,22,22v0,13,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22","w":97},{"d":"87,5v-89,-3,-52,-105,-60,-186r26,0v7,64,-24,157,38,162v23,2,50,-30,44,-59r0,-103r27,0v2,57,-5,135,4,181r-26,0v-3,-9,-4,-15,-4,-24v-6,12,-18,29,-49,29xm80,-209r39,-52r38,0r-55,52r-22,0","w":189},{"d":"4,-209r39,-52r38,0r-55,52r-22,0","w":90},{"d":"6,-181r29,0r49,151r51,-151r27,0v-28,71,-50,172,-86,230v-19,31,-54,27,-66,27r0,-24v34,1,47,-9,59,-50xm45,-260v11,0,20,9,20,20v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20v0,-11,10,-20,21,-20xm122,-260v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":167},{"d":"61,-144r104,0r0,25r-104,0r0,94r114,0r0,25r-142,0r0,-254r139,0r0,24r-111,0r0,86xm62,-320v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21xm130,-320v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21","w":191},{"d":"109,-229v-27,-16,-61,0,-50,48r45,0r0,22r-44,0r0,159r-28,0r0,-159r-26,0r0,-22r26,0v1,-29,-4,-52,19,-70v27,-13,28,-11,58,-3r0,25xm137,-181r28,0r0,181r-28,0r0,-181xm131,-238v0,-29,39,-21,39,0v0,11,-8,19,-19,19v-10,2,-21,-13,-20,-19"},{"d":"0,-24r0,-24r156,-79r-156,-80r0,-23r180,90r0,25","w":180},{"d":"21,57r149,-311r27,0r-149,311r-27,0","w":217},{"d":"60,-84v-28,0,-43,-20,-43,-43v0,-24,20,-43,44,-43v24,0,42,19,42,43v0,24,-19,43,-43,43","w":119},{"d":"189,-182v-3,48,-25,57,-52,69r67,113r-35,0r-64,-109r-44,0r0,109r-29,0r0,-254v78,-4,162,1,157,72xm153,-158v30,-59,-33,-79,-92,-72r0,96v40,-1,76,8,92,-24","w":213},{"d":"28,-90v-1,-17,9,-135,46,-166r20,0v-25,38,-40,78,-40,165v0,94,10,118,40,167r-20,0v-29,-35,-41,-78,-46,-166","w":106},{"d":"108,-259r23,1v-5,2,-25,28,-27,44v13,-1,22,3,22,20v0,12,-10,21,-22,21v-37,0,-21,-70,4,-86xm48,-259r24,1v-12,11,-24,23,-27,44v11,0,22,3,22,20v0,12,-10,21,-22,21v-51,-2,-6,-83,3,-86","w":144},{"d":"147,-154v11,-21,46,-36,56,-32v36,0,76,24,74,99r-124,1v-4,11,11,68,54,68v27,0,38,-20,42,-28r25,3v-10,30,-24,48,-67,48v-43,0,-57,-19,-67,-40v-15,24,-21,36,-63,40v-26,3,-61,-22,-59,-50v4,-44,41,-63,107,-63v1,-29,1,-56,-34,-55v-9,-3,-39,10,-42,32r-25,0v6,-35,17,-55,67,-55v23,0,50,7,56,32xm248,-108v3,-24,-21,-59,-45,-55v-40,6,-44,29,-49,55r94,0xm80,-18v33,0,50,-31,45,-69v-4,0,-35,-1,-56,9v-40,17,-24,60,11,60","w":294},{"d":"102,-227v-31,-7,-50,40,-46,51r-25,0v3,-44,17,-73,73,-76v37,-1,82,30,63,84v-15,41,-75,102,-103,143r111,0r0,25r-145,0r0,-22r97,-129v26,-26,19,-79,-25,-76","w":204},{"d":"96,5v-97,-3,-112,-182,0,-191v60,-5,85,77,79,96v6,43,-34,96,-79,95xm96,-163v-42,-5,-53,62,-51,73v-3,11,11,76,51,72v33,-3,50,-25,52,-73v1,-10,-10,-78,-52,-72xm38,-210r43,-53r31,0r43,53r-26,0r-33,-36r-32,36r-26,0"},{"d":"124,-21v50,0,55,-29,62,-65r26,0v0,10,-3,51,-33,74v-17,13,-33,15,-41,16r-8,21v16,3,32,6,36,33v4,31,-47,43,-71,28r0,-17v16,11,48,2,44,-14v2,-14,-21,-22,-33,-19r12,-32v-22,-1,-36,-8,-44,-13v-56,-20,-83,-173,-13,-227v32,-24,99,-45,137,18v4,8,7,16,10,34r-26,0v-8,-28,-20,-50,-58,-50v-49,0,-74,36,-74,107v0,72,21,106,74,106","w":228},{"d":"49,-40v12,0,22,10,22,22v0,13,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22xm27,-159v1,-27,42,-29,44,0v0,12,-9,22,-22,22v-12,0,-22,-9,-22,-22","w":97},{"d":"95,-256r25,0r88,256r-30,0r-22,-67r-96,0r-23,67r-29,0xm148,-92r-40,-127r-40,127r80,0xm47,-274r49,-50r31,0r49,50r-26,0r-38,-33r-39,33r-26,0","w":215},{"d":"42,-209r-22,0r-55,-52r38,0","w":90},{"d":"87,5v-89,-3,-52,-105,-60,-186r26,0v7,64,-24,157,38,162v23,2,50,-30,44,-59r0,-103r27,0v2,57,-5,135,4,181r-26,0v-3,-9,-4,-15,-4,-24v-6,12,-18,29,-49,29","w":189},{"d":"95,-256r25,0r88,256r-30,0r-22,-67r-96,0r-23,67r-29,0xm148,-92r-40,-127r-40,127r80,0xm73,-302v2,-45,68,-47,70,0v0,19,-16,35,-35,35v-20,0,-35,-16,-35,-35xm108,-320v-10,0,-19,8,-19,18v0,21,36,28,38,0v0,-10,-9,-18,-19,-18","w":215},{"d":"31,-68r21,0r0,137r-21,0r0,-137xm31,-111r0,-137r21,0r0,137r-21,0","w":82},{"w":90},{"d":"96,5v-97,-3,-112,-182,0,-191v60,-5,85,77,79,96v6,43,-34,96,-79,95xm96,-163v-42,-5,-53,62,-51,73v-3,11,11,76,51,72v33,-3,50,-25,52,-73v1,-10,-10,-78,-52,-72"},{"d":"33,-254r31,0r122,212r0,-212r27,0r0,254r-32,0r-121,-211r0,211r-27,0r0,-254","w":245},{"d":"17,-181r127,0r0,20r-104,139r102,0r0,22r-133,0r0,-21r102,-138r-94,0r0,-22","w":151},{"d":"18,-237v-2,-12,16,-25,22,-22v9,0,23,6,23,28v0,15,-6,34,-27,58r-23,0v10,-9,21,-22,27,-44v-12,0,-23,-9,-22,-20","w":84},{"d":"224,-186v61,0,70,39,73,101r-123,0v0,6,-1,34,15,51v28,31,73,14,80,-12r25,3v-1,3,-4,11,-9,19v-18,27,-48,29,-58,29v-13,5,-61,-17,-67,-40v-39,69,-142,46,-142,-55v0,-49,32,-101,80,-96v41,4,51,20,62,41v7,-12,24,-41,64,-41xm269,-105v-3,-24,-3,-58,-47,-58v-42,0,-47,53,-48,58r95,0xm45,-91v-1,15,10,77,51,73v8,0,28,-2,38,-21v14,-26,17,-48,8,-82v-8,-33,-32,-42,-47,-42v-36,0,-46,24,-50,72","w":315},{"d":"107,5v-10,4,-49,-14,-53,-30r0,100r-26,0r0,-202v0,-28,0,-40,-4,-54r26,0v3,9,3,12,4,27v6,-10,19,-32,51,-32v59,-2,80,67,66,135v-3,12,-18,56,-64,56xm54,-91v0,11,8,77,50,72v37,-4,40,-27,45,-71v0,-4,1,-41,-18,-59v-39,-37,-77,0,-77,58"},{"d":"4,-254r33,0r61,119r60,-119r33,0r-79,147r0,107r-28,0r0,-107xm64,-320v12,0,21,10,21,22v0,12,-10,21,-22,21v-12,0,-21,-10,-21,-22v0,-12,10,-21,22,-21xm132,-320v12,0,21,10,21,22v0,12,-10,21,-22,21v-12,0,-21,-10,-21,-22v0,-12,10,-21,22,-21","w":195},{"d":"84,-248r23,0r-146,248r-23,0","w":45},{"d":"5,-254r30,0r73,221r71,-221r30,0r-88,255r-29,0","w":213},{"d":"33,-254v86,-5,160,2,157,76v0,10,-2,44,-33,62v-28,15,-61,11,-95,12r0,104r-29,0r0,-254xm61,-129v0,0,97,4,99,-49v0,-5,-1,-27,-18,-41v-14,-11,-47,-11,-81,-11r0,101","w":200},{"d":"27,-107r138,0r0,21r-138,0r0,-21","w":191},{"d":"58,-82v2,65,57,77,108,45v30,-44,8,-147,14,-217r29,0v-12,108,45,260,-90,258v-52,0,-78,-26,-84,-48v-15,-51,-3,-145,-6,-210r29,0r0,172","w":237},{"d":"145,-84r43,0r0,24r-42,0r0,62r-28,0r0,-62r-102,0r0,-21r101,-169r28,0r0,166xm119,-84r1,-130r-77,130r76,0","w":204},{"d":"28,-256r28,0r0,256r-28,0r0,-256","w":84},{"d":"62,0r-30,0r0,-254r30,0r0,254xm67,-273r-27,0r-64,-52r38,0","w":93},{"d":"109,-229v-27,-16,-61,0,-50,48r45,0r0,22r-44,0r0,159r-28,0r0,-159r-26,0r0,-22r26,0v1,-29,-4,-52,19,-70v27,-13,28,-11,58,-3r0,25","w":108},{"d":"24,-190v0,-40,23,-63,71,-68r0,-25r15,0r0,25v30,0,62,18,68,60r-29,0v-3,-24,-17,-31,-39,-35r0,89v37,13,76,28,76,76v0,41,-29,69,-76,72r0,28r-15,0r0,-28v-48,-2,-81,-36,-77,-77r27,0v-1,17,18,55,50,52r0,-99v-34,-15,-71,-15,-71,-70xm95,-234v-9,-4,-43,19,-43,42v0,25,25,35,43,42r0,-84xm110,-21v34,1,59,-34,43,-65v-9,-17,-27,-22,-43,-28r0,93","w":204},{"d":"21,-164r163,0r0,21r-163,0r0,-21xm21,-113r163,0r0,21r-163,0r0,-21","w":204},{"d":"123,4v-62,-3,-102,-40,-104,-131v0,-14,2,-77,47,-113v52,-42,119,-3,136,23v39,62,35,227,-79,221xm196,-127v0,-37,-13,-109,-73,-107v-12,0,-35,3,-53,29v-20,28,-20,70,-20,78v-4,16,13,106,73,106v10,0,28,-2,45,-20v21,-22,28,-57,28,-86xm143,-273r-27,0r-64,-52r38,0","w":245},{"d":"4,-254r33,0r61,119r60,-119r33,0r-79,147r0,107r-28,0r0,-107","w":195},{"d":"26,-69v0,-39,17,-48,37,-62v-20,-10,-30,-19,-30,-53v0,-40,30,-68,69,-68v65,0,98,86,40,121v31,13,44,59,30,92v-6,15,-27,42,-70,42v-37,0,-76,-14,-76,-72xm102,-141v27,0,50,-26,38,-61v-8,-23,-30,-27,-38,-27v-20,0,-40,11,-41,44v0,24,15,44,41,44xm149,-69v2,-27,-22,-52,-47,-49v-25,2,-46,12,-47,49v0,34,21,49,47,49v29,0,43,-11,47,-49","w":204},{"d":"25,-248r155,0r0,23r-122,225r-31,0r121,-222r-123,0r0,-26","w":204},{"w":90},{"d":"92,-234v-34,1,-39,26,-39,71r0,163r-27,0v3,-76,-8,-160,7,-224v27,-52,125,-44,126,27v5,12,-17,52,-43,53v29,7,60,22,60,72v0,49,-48,94,-94,68r0,-24v30,15,66,3,66,-45v0,-26,-28,-65,-73,-59r0,-23v25,0,56,0,56,-40v0,-24,-15,-39,-39,-39"},{"d":"33,-254r30,0r0,229r108,0r0,25r-138,0r0,-254","w":181},{"d":"30,-91v66,-19,-30,-176,83,-178r0,2v-50,7,-31,80,-36,133v2,9,-10,47,-27,45v61,10,-7,167,63,179v-18,-2,-28,4,-45,-14v-36,-39,13,-138,-38,-167","w":127},{"d":"128,-118v4,-32,-13,-46,-37,-45v-9,0,-35,-1,-40,29r-27,0v5,-30,20,-50,68,-52v6,0,47,0,58,32v11,35,-3,118,9,154r-25,0v-3,-11,-4,-13,-5,-24v-10,18,-20,29,-53,29v-42,0,-58,-10,-58,-53v0,-10,2,-30,24,-45v22,-14,62,-21,86,-25xm81,-18v37,0,51,-32,47,-80v-28,5,-45,10,-57,15v-5,2,-25,12,-25,34v0,21,16,31,35,31xm67,-257v24,4,58,44,65,-1r16,4v2,6,-14,44,-32,41v-18,2,-59,-47,-66,0r-16,-4v-3,-5,17,-43,33,-40","w":181},{"d":"72,74r-57,0r0,-22r32,0r0,-284r-32,0r0,-22r57,0r0,328","w":106},{"d":"43,-180v12,0,23,9,23,21v0,12,-10,22,-23,22v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21xm68,-13v0,30,-8,38,-31,69r-23,-1v14,-14,26,-32,30,-55v-13,2,-23,-9,-23,-21v-4,-8,17,-25,23,-22v10,0,24,7,24,30","w":91},{"d":"-10,48v35,3,50,-16,50,-64r0,-165r28,0v-2,70,6,162,-6,219v-20,38,-52,32,-72,33r0,-23xm53,-258v12,0,20,8,20,20v1,14,-15,23,-28,17v-10,-4,-10,-13,-10,-17v0,-5,2,-19,18,-20","w":95},{"d":"153,-254r154,0r0,24r-109,0r0,86r100,0r0,25r-100,0r0,94r110,0r0,25r-140,0r0,-68r-91,0r-38,68r-31,0xm168,-93r0,-136r-77,136r77,0","w":324},{"d":"26,-121v-5,-47,45,-70,95,-58r55,-2r0,20r-37,0v33,42,10,94,-45,98v-15,5,-32,1,-37,19v26,29,117,-7,117,66v0,39,-50,59,-82,56v-6,0,-41,0,-64,-18v-15,-12,-17,-26,-17,-34v0,-33,30,-42,38,-45v-9,-4,-19,-4,-19,-21v0,-20,20,-23,32,-29v-20,-8,-33,-17,-36,-52xm91,-85v51,-2,53,-77,-2,-77v-29,0,-48,30,-33,59v9,17,30,18,35,18xm136,2v-41,-19,-99,-10,-101,22v13,59,155,30,101,-22","w":183},{"d":"68,-13v0,30,-8,38,-31,69r-23,-1v14,-14,26,-32,30,-55v-13,2,-23,-9,-23,-21v-4,-8,17,-25,23,-22v10,0,24,7,24,30","w":91},{"d":"150,-255v56,0,128,37,128,129v0,15,-3,49,-29,81v-34,41,-80,46,-99,46v-77,-2,-129,-60,-128,-128v0,-42,19,-70,29,-83v13,-15,45,-45,99,-45xm150,-10v76,0,116,-54,116,-117v0,-46,-34,-121,-116,-117v-50,3,-117,33,-117,117v0,69,56,117,117,117xm152,-44v-44,2,-83,-40,-83,-83v0,-79,100,-116,151,-51r-16,14v-6,-8,-21,-27,-51,-27v-34,0,-60,19,-63,63v-4,63,90,82,114,37r15,13v-10,16,-28,33,-67,34","w":299},{"d":"61,-145r120,0r0,-109r28,0r0,254r-28,0r0,-121r-120,0r0,121r-28,0r0,-254r28,0r0,109","w":241},{"d":"176,-91v2,47,-26,96,-73,96v-32,0,-44,-21,-50,-31v0,4,0,15,-3,26r-26,0v9,-73,2,-175,4,-256r26,0r0,102v6,-10,20,-32,52,-32v42,0,69,31,70,95xm101,-19v40,5,50,-65,48,-72v-2,-46,-12,-66,-45,-72v-49,4,-69,77,-34,129v10,15,24,15,31,15"},{"d":"32,-196v1,-57,92,-86,125,-17v2,5,4,11,5,24r-25,0v-1,-21,-11,-41,-41,-40v-29,2,-55,29,-28,54v8,8,50,27,73,44v7,4,24,16,24,40v0,15,-19,42,-33,49v7,6,25,19,25,46v1,39,-33,62,-67,59v-15,6,-75,-16,-68,-65r24,0v0,3,1,8,3,15v19,50,84,29,83,-9v-14,-57,-103,-46,-108,-109v-2,-21,22,-42,35,-47v-7,-5,-27,-18,-27,-44xm112,-54v12,-6,34,-21,25,-46v-5,-14,-42,-29,-59,-40v-22,13,-35,21,-24,47v5,13,40,28,58,39","w":191},{"d":"206,-126r-27,0r-47,-99r-48,99r-28,0r65,-128r23,0","w":262},{"d":"98,-161v-63,16,-36,94,-42,161r-27,0r0,-118v0,-37,0,-40,-3,-63r25,0v3,13,3,25,3,39v18,-41,35,-53,69,-38r0,27v-3,-1,-14,-8,-25,-8","w":125},{"d":"28,-181r28,0r0,181r-28,0r0,-181xm3,-260v12,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,10,-20,20,-20xm81,-260v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":84}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+15-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("`VS*Y7s-C+B)`{zqe7%!1V1BZhs*S7B)Zh:!C+uGS#D&Mf-OZtWQ_VA*ZtWQ_VuX`7u-ZtWQ_Vu0Z*p*_|Kz_+#xey=QS|Sxey=QSXz)W!zxey=QMhuWU*p*_X=pS#p*_X1p_zp*_|K0SZexey=QSX%ZZtWQ_VM@ZtWQ_VW@ZtWQ_VMhZtWQ_V_lZtWQ_yW!ZtWQ_V1hZtWQ_VA@ZtWQ_V1@ZtW!_|F-ZtWQ_7_h1UKhZtWQ_VW!ZtWQ_VW-ZtWQ_V1Qx*p*_|Kc_f%xey=QMfKxey1Q_XSxey=QMfzxey=QMfuxey=QMh%|ZtWQ_VW*ZtWQ_VFpZtWQ_7_@ZtWQ_V%OZtWQ_VF-^#FzZtWQ_h:X]#p*_X=pSt*xey=QM7Sxey=!SVsxey=QS|%xey=QMfsxey=p_f%R_*p*_|K7sZ%xe+SO_|:xey=QSycXZtWQ_V:OA+5xey=QM+s%ZtW!_|1QZtWQ_VA}u-zxey=QSyKxey=QMyKxey=QS|uxey=QSX:xey=QMhSxey=QS+:xey1Q_y0xey=QMh#xey1p_X:xey=QSXsxey=QS|(*ZtWQ_VSOZtWQ_VMlZtWQ_V1pZtWQ_VFlZtWQ_VSXZtWQ_V#XZtWQ_V#0ZtWQ_VFfZtWQ_V1lZ%pF+zp*_X=f_%p*_|KcMzQOCW:X+tcDR*p*_|Kz^FKsZtWQ_V#cuGlGZtWQ_V_pY#p*_|KzS+(7_%5Dscdl`!p0]zp*_|K7M#p*_|KOs%p*_|K7Szp*_|KXMzp*S71Q_y}x]*p*_X=!_z1[ZtW!_|%XZtWQ_VWh_zp*_|K7s%p*_|KXsfdxey=QMf:(e#p*_|KXs#p=K{|F%Vt1:`]_s^RAuUyW#+ZMSCYxeL;(0OXcz7G[d>m&5)TQp!f-*h@l}kqDB$8*_|K0szp*S7S7SVB^Lzp*_X=p^#p*_|F*_@Kxey=psf0xey1Qs|u+W%p*_X=p_*W-Y%p*_|KXMhMcR#p*_|Kc_zcls*p*_|F}_zp*_|KcScpqZtWQ_VWfZy5>ZtWQ_V_hS*p*_X=pM#p*_|K0^W0OZtWQ_VF@ZG:xey=QS+MO]GsQYVz-`{1O`UpdRy=&x|*O]G=&Y|*Q]7pzY7e-C{pGR+1)SO}GYtzQCt_BL@-qC+M[MO}TCf-TZO(8^Ge@e*Q)`yD[RfdGC+e0x@KTxGux]7%-;VedSh%fxVB!e%Q)MhB5;VedSh%fxVB!e%Q)M@dDShzGMZsQY@:-Z{}fC@pGC+e0x@KTxGux]Gsd`UATCU}-SZs-`VpTMh%-C+B)]70Tx@u)M+*z`Uz7Y@1[^hcDY|&m`hcdS*5X+hzeZy*Q+hze;Uc[`U=(")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":192,"face":{"font-family":"corporatesbq","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-62 -336.504 338 94","underline-thickness":"18","underline-position":"-36","stemh":"24","stemv":"28","unicode-range":"U+0020-U+FB02"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * (c) COPYRIGHT H. BERTHOLD AG 1992 Alle Rechte vorbehalten.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"85,-123v-16,0,-29,-13,-29,-30v0,-16,13,-28,29,-28v16,0,29,13,29,29v0,16,-13,29,-29,29xm12,16v0,-48,58,-56,52,-112r43,0v9,66,-37,65,-46,109v0,7,4,20,23,20v11,0,25,-6,26,-30r37,0v-3,49,-13,71,-70,71v-54,0,-65,-35,-65,-58","w":159},{"d":"142,-21v-39,52,-117,18,-117,-55r0,-105r47,0r0,103v-5,28,19,43,31,41v60,-7,28,-89,36,-144r47,0v2,57,-5,136,4,181r-44,0v-2,-5,-3,-11,-4,-21xm67,-256v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26xm144,-256v15,0,26,12,26,26v0,14,-12,26,-26,26v-15,0,-26,-12,-26,-26v0,-14,12,-26,26,-26","w":212},{"d":"42,-167v-47,-10,-26,-66,-1,-92r21,0v-3,4,-18,26,-18,44v6,-1,26,8,25,23v0,14,-15,28,-27,25","w":78},{"d":"22,-183r40,0r42,89r-42,94r-40,0r35,-94xm95,-183r39,0r42,89r-42,94r-39,0r34,-94","w":185},{"d":"229,-107v8,72,-42,116,-101,112v-13,0,-78,0,-94,-56v-17,-60,-3,-134,-6,-203r49,0r0,146v0,51,4,71,52,71v46,0,52,-34,51,-71r0,-146r49,0r0,147","w":257},{"d":"109,-144v-59,5,-29,88,-36,144r-47,0r0,-256r47,0r0,95v8,-14,44,-27,52,-24v8,0,43,1,55,29v15,34,4,108,7,156r-47,0r0,-94v1,-21,-3,-53,-31,-50","w":212},{"d":"229,-135r-21,0r2,-98r-30,98r-18,0r-31,-98r3,98r-21,0r0,-119r28,0r30,94r30,-94r28,0r0,119xm66,-135r-22,0r0,-102r-38,0r0,-17r97,0r0,17r-37,0r0,102","w":247},{"d":"195,-161v0,65,-49,118,-90,165r-51,0v21,-26,43,-53,61,-83v-51,6,-90,-15,-93,-82v-2,-47,39,-93,87,-93v49,0,86,46,86,93xm148,-164v-1,-23,-9,-49,-39,-49v-23,1,-39,15,-39,49v-2,7,8,50,39,50v24,0,40,-28,39,-50"},{"d":"229,-107v8,72,-42,116,-101,112v-13,0,-78,0,-94,-56v-17,-60,-3,-134,-6,-203r49,0r0,146v0,51,4,71,52,71v46,0,52,-34,51,-71r0,-146r49,0r0,147xm102,-273r64,-63r58,0r-78,63r-44,0","w":257},{"d":"89,-254r50,0r86,254r-50,0r-16,-53r-90,0r-15,53r-51,0xm147,-95r-33,-103r-32,103r65,0xm77,-307v1,-50,73,-51,75,0v0,21,-17,38,-38,38v-21,0,-37,-17,-37,-38xm114,-326v-10,0,-18,9,-18,19v0,10,8,18,18,18v10,0,19,-8,19,-18v0,-10,-9,-19,-19,-19","w":228},{"d":"192,-90v0,72,-86,127,-147,74r-16,16r-30,0r31,-32v-7,-10,-17,-28,-17,-59v0,-65,64,-100,89,-95v21,0,43,8,57,21r17,-17r29,0r-31,32v12,17,18,40,18,60xm130,-135v-26,-37,-78,8,-70,45v0,3,1,13,4,23xm140,-115r-66,69v42,40,85,-21,66,-69","w":204},{"d":"180,-51v-19,84,-167,73,-167,-37v0,-72,67,-128,136,-84v40,26,35,83,35,93r-124,0v3,40,27,47,44,47v5,3,34,-9,35,-21xm61,-113r75,0v-3,-21,-12,-37,-35,-37v-31,0,-38,29,-40,37xm63,-256v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26xm141,-256v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26","w":196},{"d":"229,-107v8,72,-42,116,-101,112v-13,0,-78,0,-94,-56v-17,-60,-3,-134,-6,-203r49,0r0,146v0,51,4,71,52,71v46,0,52,-34,51,-71r0,-146r49,0r0,147xm160,-273r-44,0r-77,-63r57,0","w":257},{"d":"125,-121v3,-33,-52,-40,-58,-6r-45,0v1,-11,3,-20,9,-29v19,-29,64,-29,70,-29v4,0,36,-1,53,15v37,37,2,112,22,170r-42,0v-2,-9,-3,-12,-3,-21v-17,38,-120,35,-116,-27v3,-49,63,-65,110,-70r0,-3xm91,-32v33,-1,34,-24,34,-54v-13,1,-69,6,-62,32v-1,16,23,23,28,22xm67,-203r49,-62r58,0r-71,62r-36,0","w":195},{"d":"18,-181r133,0r0,35r-87,107r88,0r0,39r-143,0r0,-36r85,-107r-76,0r0,-38","w":161},{"d":"54,-156v16,0,30,13,30,29v0,16,-14,29,-30,29v-16,0,-29,-13,-29,-29v0,-16,13,-29,29,-29","w":108},{"d":"89,-254r50,0r86,254r-50,0r-16,-53r-90,0r-15,53r-51,0xm147,-95r-33,-103r-32,103r65,0xm43,-277r52,-54r38,0r53,54r-45,0r-27,-30r-26,30r-45,0","w":228},{"d":"43,-213v-12,0,-62,-24,-64,2r-19,-5v0,-4,13,-41,34,-41v9,0,31,10,47,12v12,1,17,-14,19,-15r18,5v-5,16,-7,37,-35,42","w":105},{"d":"26,-181r47,0r0,181r-47,0r0,-181","w":99},{"d":"14,-127v0,-18,-1,-90,59,-119v39,-19,89,-27,135,19v35,34,35,86,35,100v0,17,0,85,-57,117v-12,15,-93,20,-109,3v-63,-30,-63,-102,-63,-120xm128,-217v-57,0,-64,44,-64,90v0,39,3,90,65,90v10,0,34,-1,47,-25v24,-44,20,-62,12,-100v-3,-12,-14,-55,-60,-55xm160,-273r-44,0r-77,-63r57,0","w":257},{"d":"26,0v-3,-65,7,-121,-6,-181r46,0v3,6,3,11,4,23v9,-12,23,-27,53,-27v90,2,53,105,61,185r-48,0r0,-103v1,-28,-7,-41,-29,-41v-52,0,-30,86,-34,144r-47,0","w":208},{"d":"3,-254r52,0r61,199r61,-199r52,0r-88,254r-51,0","w":232},{"d":"78,-9v3,53,-36,85,-93,79r0,-40v2,0,16,0,26,-3v19,-5,20,-20,20,-37r0,-171r47,0r0,172xm55,-259v14,0,27,6,27,27v0,17,-10,27,-27,27v-16,0,-27,-9,-27,-26v0,-8,3,-28,27,-28","w":102},{"d":"150,-255v56,0,128,37,128,129v0,15,-3,49,-29,81v-34,41,-80,46,-99,46v-77,-2,-129,-60,-128,-128v0,-42,19,-70,29,-83v13,-15,45,-45,99,-45xm150,-10v76,0,116,-54,116,-117v0,-46,-34,-121,-116,-117v-50,3,-117,33,-117,117v0,69,56,117,117,117xm221,-75v-60,71,-151,21,-154,-52v-3,-81,109,-115,154,-54r-20,19v-20,-34,-109,-34,-106,35v1,29,27,58,58,58v26,0,42,-17,48,-24","w":299},{"d":"53,-203r-35,0r-71,-62r58,0","w":105},{"d":"26,-181r47,0r0,181r-47,0r0,-181xm-15,-207r46,-58r37,0r47,58r-43,0r-22,-32r-23,32r-42,0","w":99},{"d":"79,-153r101,0r0,42r-101,0r0,69r115,0r0,42r-164,0r0,-254r160,0r0,42r-111,0r0,59xm76,-273r63,-63r58,0r-77,63r-44,0","w":204},{"d":"89,-254r50,0r86,254r-50,0r-16,-53r-90,0r-15,53r-51,0xm147,-95r-33,-103r-32,103r65,0xm79,-332v16,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28xm150,-332v16,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28","w":228},{"d":"14,-127v0,-18,-1,-90,59,-119v39,-19,89,-27,135,19v35,34,35,86,35,100v0,17,0,85,-57,117v-12,15,-93,20,-109,3v-63,-30,-63,-102,-63,-120xm128,-217v-57,0,-64,44,-64,90v0,39,3,90,65,90v10,0,34,-1,47,-25v24,-44,20,-62,12,-100v-3,-12,-14,-55,-60,-55xm194,-324v-13,59,-50,41,-92,30v-12,0,-16,11,-17,14r-22,-5v-1,-7,16,-44,38,-40v9,-2,42,11,53,12v11,-1,13,-6,21,-16","w":257},{"d":"320,-18v0,11,-8,20,-20,20v-12,0,-20,-8,-20,-20v0,-11,9,-21,20,-21v12,0,20,10,20,21xm160,-18v-1,-12,10,-22,20,-21v11,0,21,10,21,21v0,11,-9,20,-21,20v-11,0,-20,-8,-20,-20xm40,-18v0,-12,9,-22,20,-21v11,0,20,10,20,21v0,11,-8,20,-20,20v-12,0,-20,-8,-20,-20","w":360},{"d":"79,-153r101,0r0,42r-101,0r0,69r115,0r0,42r-164,0r0,-254r160,0r0,42r-111,0r0,59xm134,-273r-44,0r-77,-63r57,0","w":204},{"d":"80,0r-49,0r0,-254r49,0r0,254xm87,-273r-44,0r-78,-63r58,0","w":110},{"w":105},{"d":"14,-127v0,-18,-1,-90,59,-119v39,-19,89,-27,135,19v35,34,35,86,35,100v0,17,0,85,-57,117v-12,15,-93,20,-109,3v-63,-30,-63,-102,-63,-120xm128,-217v-57,0,-64,44,-64,90v0,39,3,90,65,90v10,0,34,-1,47,-25v24,-44,20,-62,12,-100v-3,-12,-14,-55,-60,-55xm57,-277r52,-54r38,0r53,54r-44,0r-27,-30r-27,30r-45,0","w":257},{"d":"89,-254r50,0r86,254r-50,0r-16,-53r-90,0r-15,53r-51,0xm147,-95r-33,-103r-32,103r65,0xm180,-324v-13,59,-50,41,-92,30v-13,0,-16,11,-17,14r-22,-5v-1,-7,16,-44,38,-40v9,-2,42,11,53,12v11,-1,13,-6,21,-16","w":228},{"d":"56,-70v-37,-12,-39,-80,-12,-96v26,-30,99,-11,151,-15r0,33r-37,0v9,17,20,47,-5,69v-27,23,-44,13,-76,20v0,0,-9,3,-9,9v14,21,74,5,100,25v18,14,20,35,20,41v0,8,0,29,-19,41v-44,29,-81,31,-139,4v-20,-9,-22,-30,-22,-38v0,-31,29,-39,36,-42v-10,-4,-20,-9,-20,-22v0,-13,11,-21,32,-29xm96,-95v15,0,31,-5,33,-27v0,-11,-8,-28,-34,-27v-17,1,-29,9,-29,27v0,19,8,27,30,27xm98,42v13,0,46,1,45,-22v-1,-16,-21,-23,-47,-23v-26,0,-47,6,-48,22v0,21,37,23,50,23","w":202},{"d":"212,-167v3,10,-12,35,-33,38v31,9,20,63,35,82r-33,-1v-13,-32,1,-81,-56,-72r0,73r-29,0r0,-162v52,2,111,-14,116,42xm183,-165v1,-24,-31,-24,-58,-21r0,43v27,-1,57,6,58,-22xm150,-255v100,0,169,127,100,209v-35,41,-81,47,-100,47v-77,-2,-129,-60,-128,-128v0,-42,19,-70,29,-83v13,-15,45,-45,99,-45xm150,-10v62,0,122,-57,117,-117v-4,-49,-35,-120,-117,-117v-50,2,-117,33,-117,117v0,69,56,117,117,117","w":299},{"d":"125,-121v3,-33,-52,-40,-58,-6r-45,0v1,-11,3,-20,9,-29v19,-29,64,-29,70,-29v4,0,36,-1,53,15v37,37,2,112,22,170r-42,0v-2,-9,-3,-12,-3,-21v-17,38,-120,35,-116,-27v3,-49,63,-65,110,-70r0,-3xm91,-32v33,-1,34,-24,34,-54v-13,1,-69,6,-62,32v-1,16,23,23,28,22xm32,-207r46,-58r38,0r47,58r-43,0r-22,-32r-23,32r-43,0","w":195},{"d":"32,-183v0,-41,29,-71,79,-71r83,0r0,19r-12,0r0,295r-21,0r0,-295r-52,0r0,295r-21,0r0,-175v-33,-3,-56,-35,-56,-68","w":240},{"d":"12,76v48,-71,59,-232,0,-332r36,0v27,39,46,76,46,166v0,89,-21,128,-46,166r-36,0","w":116},{"d":"165,-132v0,10,-5,71,-18,93v1,1,7,18,20,18v15,0,16,-16,14,-29r11,-1v6,23,14,46,-20,55v-22,-1,-27,-19,-32,-30v-31,43,-69,39,-94,8v-8,20,16,75,27,97v0,9,-6,15,-15,15v-42,-14,-29,-77,-26,-139v-4,-27,-7,-56,-7,-86v0,-24,-1,-29,18,-36v8,1,17,11,16,26v-2,33,-6,66,-11,96v6,18,17,30,36,30v49,0,45,-84,45,-115v0,-23,-2,-35,18,-37v14,-1,18,14,18,35","w":202},{"d":"163,0r-40,0r-41,-89r41,-94r40,0r-34,94xm91,0r-40,0r-41,-89r41,-94r40,0r-34,94","w":185},{"d":"75,-15v0,42,-11,54,-42,101r-24,0v13,-21,29,-45,33,-87v-7,1,-28,-8,-28,-26v0,-17,14,-29,30,-29v14,0,31,11,31,41","w":95},{"d":"89,-254r50,0r86,254r-50,0r-16,-53r-90,0r-15,53r-51,0xm147,-95r-33,-103r-32,103r65,0xm88,-273r64,-63r58,0r-78,63r-44,0","w":228},{"d":"180,-24r-180,-88r0,-31r180,-87r0,32r-144,71r144,71r0,32","w":180},{"d":"97,-222v-20,1,-20,17,-20,41r43,0r0,37r-43,0r0,144r-47,0r0,-144r-24,0r0,-37r24,0v0,-31,-2,-55,22,-72v34,-15,38,-11,76,-1r0,38v-1,0,-19,-6,-31,-6xm152,-181r47,0r0,181r-47,0r0,-181xm148,-231v-4,-12,20,-33,27,-29v15,-4,33,21,28,28v0,17,-11,27,-28,27v-16,0,-27,-9,-27,-26","w":225},{"d":"174,-254r56,0r-95,118r101,136r-62,0r-94,-135xm31,-254r49,0r0,254r-49,0r0,-254","w":237},{"d":"160,-89r45,0r0,38r-44,0r0,54r-48,0r0,-54r-103,0r0,-38r95,-160r55,0r0,160xm116,-89r0,-108r-61,108r61,0"},{"d":"87,4v-75,-1,-47,-83,-50,-148r-28,0r0,-37r30,0r1,-53r45,0r0,53r36,0r0,37r-37,0v4,48,-23,132,44,100r0,39v-6,3,-21,9,-41,9","w":136},{"d":"218,-106v-12,21,-60,41,-87,16v-11,-4,-18,-13,-38,-13v-14,0,-27,15,-34,25r-14,-26v4,-6,20,-31,48,-31v28,1,49,26,77,26v14,0,28,-13,34,-23","w":262},{"d":"79,-153r101,0r0,42r-100,0r0,111r-50,0r0,-254r160,0r0,42r-111,0r0,59","w":196},{"d":"167,-155v19,-26,71,-49,114,-16v27,21,35,44,34,92r-128,0v0,3,1,9,3,16v8,29,34,31,44,31v15,1,32,-7,36,-21r41,2v-4,28,-39,56,-77,56v-25,0,-58,-16,-68,-30v-9,11,-26,30,-62,30v-48,0,-91,-24,-91,-96v0,-38,24,-98,91,-95v10,-5,60,14,63,31xm268,-112v2,-9,-16,-42,-38,-38v-32,5,-36,21,-41,38r79,0xm144,-91v0,-39,-13,-53,-41,-58v-30,-5,-46,51,-42,58v0,4,-1,35,17,49v35,27,66,-1,66,-49","w":327},{"d":"26,0v-3,-65,7,-121,-6,-181r46,0v3,6,3,11,4,23v9,-12,23,-27,53,-27v90,2,53,105,61,185r-48,0r0,-103v1,-28,-7,-41,-29,-41v-52,0,-30,86,-34,144r-47,0xm128,-213v-12,-1,-61,-24,-64,2r-19,-5v0,-5,13,-44,35,-41v9,-1,31,11,47,12v11,1,16,-14,18,-15r18,5v-3,17,-7,36,-35,42","w":208},{"w":105},{"d":"30,-254r52,0r104,179r0,-179r46,0r0,254r-49,0r-106,-179r0,179r-47,0r0,-254","w":262},{"d":"17,-113r157,0r0,34r-157,0r0,-34","w":191},{"d":"180,-51v-19,84,-167,73,-167,-37v0,-72,67,-128,136,-84v40,26,35,83,35,93r-124,0v3,40,27,47,44,47v5,3,34,-9,35,-21xm61,-113r75,0v-3,-21,-12,-37,-35,-37v-31,0,-38,29,-40,37xm133,-203r-35,0r-71,-62r58,0","w":196},{"d":"174,-31v-62,80,-161,19,-161,-60v0,-49,40,-95,89,-95v29,0,49,13,57,20v25,20,53,86,15,135xm102,-32v31,0,43,-34,42,-59v0,-5,2,-34,-17,-48v-37,-28,-65,3,-67,49v4,24,3,58,42,58xm63,-256v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26xm141,-256v15,0,26,12,26,26v0,14,-12,26,-26,26v-15,0,-26,-12,-26,-26v0,-14,12,-26,26,-26","w":204},{"d":"60,-90v-1,6,7,58,40,58v27,0,30,-24,31,-32r46,0v2,27,-25,61,-61,68r-5,15v21,5,41,18,41,42v0,43,-55,57,-85,32r0,-21v2,1,16,9,29,9v39,0,23,-50,-5,-49v-6,0,-11,2,-13,2r8,-30v-49,-7,-73,-48,-73,-95v0,-53,14,-86,88,-95v54,4,67,27,74,65r-45,0v-2,-13,-8,-28,-30,-28v-31,0,-35,20,-40,59","w":189},{"d":"26,-181r47,0r0,181r-47,0r0,-181xm84,-203r-35,0r-71,-62r58,0","w":99},{"w":105},{"d":"99,-221v-19,0,-30,21,-30,56r0,165r-47,0r0,-159v-4,-50,13,-101,78,-99v6,0,31,-1,49,12v46,33,29,87,-8,102v16,-1,58,32,54,71v5,51,-50,94,-97,68r0,-41v16,15,56,3,49,-24v2,-41,-32,-51,-59,-51r0,-41v17,0,41,0,41,-29v0,-18,-12,-30,-30,-30","w":208},{"d":"142,-21v-39,52,-117,18,-117,-55r0,-105r47,0r0,103v-5,28,19,43,31,41v60,-7,28,-89,36,-144r47,0v2,57,-5,136,4,181r-44,0v-2,-5,-3,-11,-4,-21xm76,-203r48,-62r58,0r-71,62r-35,0","w":212},{"d":"111,-52v0,12,-10,20,-21,20v-12,0,-20,-9,-20,-20v0,-12,9,-21,20,-21v12,0,21,9,21,21xm111,-156v0,11,-10,20,-21,20v-12,0,-20,-9,-20,-21v0,-12,9,-20,21,-20v11,0,20,9,20,21xm180,-90r-180,0r0,-29r180,0r0,29","w":180},{"d":"129,-259v89,0,110,61,114,132v1,23,-14,90,-46,111v-60,40,-129,14,-153,-16v-15,-17,-30,-45,-30,-95v0,-29,4,-47,8,-58v9,-26,36,-74,107,-74xm64,-127v0,25,10,90,65,90v46,0,56,-40,59,-53v6,-11,5,-59,1,-71v-4,-13,-13,-56,-61,-56v-57,0,-64,30,-64,90xm93,-332v16,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28xm164,-332v15,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28","w":257},{"d":"6,-181r51,0r40,138r42,-138r49,0v-29,73,-52,171,-89,233v-10,17,-48,29,-88,24r0,-41v24,3,58,-4,60,-27","w":191},{"d":"-46,-207r46,-58r37,0r47,58r-43,0r-22,-32r-23,32r-42,0","w":105},{"d":"51,57v2,-22,-21,-27,-41,-23r11,-34r29,0r-6,19v20,5,40,19,40,42v0,43,-60,56,-84,32r0,-21v2,1,17,9,29,9v19,0,22,-18,22,-24","w":105},{"d":"4,-254r183,0r0,42r-67,0r0,212r-49,0r0,-212r-67,0r0,-42","w":191},{"d":"0,-254r54,0r54,101r52,-101r54,0r-83,154r0,100r-49,0r0,-100","w":213},{"d":"-12,-203r49,-62r58,0r-71,62r-36,0","w":105},{"d":"18,-145r181,0r0,36r-181,0r0,-36"},{"d":"27,-68r29,0r0,137r-29,0r0,-137xm27,-111r0,-137r29,0r0,137r-29,0","w":82},{"d":"28,-254r77,0r0,37r-37,0r0,254r37,0r0,37r-77,0r0,-328","w":116},{"d":"211,-91r-211,0r0,-29r240,0r0,120r-29,0r0,-91","w":240},{"d":"0,-24r0,-32r144,-71r-144,-71r0,-32r180,87r0,31","w":180},{"d":"26,-181r47,0r0,181r-47,0r0,-181xm19,-203r49,-62r58,0r-71,62r-36,0","w":99},{"d":"-20,-256v15,0,26,12,26,26v0,14,-13,26,-27,26v-14,0,-25,-12,-25,-26v0,-14,12,-26,26,-26xm58,-256v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26","w":105},{"d":"26,-256r47,0r0,256r-47,0r0,-256","w":99},{"d":"125,-121v3,-33,-52,-40,-58,-6r-45,0v1,-11,3,-20,9,-29v19,-29,64,-29,70,-29v4,0,36,-1,53,15v37,37,2,112,22,170r-42,0v-2,-9,-3,-12,-3,-21v-17,38,-120,35,-116,-27v3,-49,63,-65,110,-70r0,-3xm91,-32v33,-1,34,-24,34,-54v-13,1,-69,6,-62,32v-1,16,23,23,28,22xm59,-256v14,0,26,12,26,26v0,14,-13,26,-27,26v-14,0,-25,-12,-25,-26v0,-14,12,-26,26,-26xm136,-256v15,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26v0,-14,11,-26,25,-26","w":195},{"d":"211,-121r-35,0r-44,-94r-46,94r-35,0r68,-133r28,0","w":262},{"d":"127,-145r72,0r0,36r-72,0r0,74r-37,0r0,-74r-72,0r0,-36r72,0r0,-75r37,0r0,75"},{"d":"37,-49v50,9,21,72,1,92r-21,0v13,-20,16,-24,18,-44v-12,1,-27,-10,-25,-23v2,-17,7,-22,27,-25xm103,-49v49,10,21,72,1,92r-22,0v14,-20,15,-26,19,-44v-13,-1,-24,-6,-25,-23v-1,-17,21,-26,27,-25","w":144},{"d":"80,0r-49,0r0,-254r49,0r0,254xm-16,-277r52,-54r38,0r53,54r-45,0r-27,-30r-26,30r-45,0","w":110},{"d":"229,-107v8,72,-42,116,-101,112v-13,0,-78,0,-94,-56v-17,-60,-3,-134,-6,-203r49,0r0,146v0,51,4,71,52,71v46,0,52,-34,51,-71r0,-146r49,0r0,147xm93,-332v16,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28xm164,-332v16,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28","w":257},{"d":"125,-121v3,-33,-52,-40,-58,-6r-45,0v1,-11,3,-20,9,-29v19,-29,64,-29,70,-29v4,0,36,-1,53,15v37,37,2,112,22,170r-42,0v-2,-9,-3,-12,-3,-21v-17,38,-120,35,-116,-27v3,-49,63,-65,110,-70r0,-3xm91,-32v33,-1,34,-24,34,-54v-13,1,-69,6,-62,32v-1,16,23,23,28,22xm122,-213v-12,0,-62,-24,-64,2r-19,-5v0,-4,13,-41,34,-41v9,0,31,11,47,12v11,1,18,-14,19,-15r18,5v-5,16,-7,37,-35,42","w":195},{"d":"180,-51v-19,84,-167,73,-167,-37v0,-72,67,-128,136,-84v40,26,35,83,35,93r-124,0v3,40,27,47,44,47v5,3,34,-9,35,-21xm61,-113r75,0v-3,-21,-12,-37,-35,-37v-31,0,-38,29,-40,37xm68,-203r49,-62r57,0r-71,62r-35,0","w":196},{"d":"80,0r-49,0r0,-254r49,0r0,254xm20,-332v15,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28xm91,-332v15,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28","w":110},{"d":"48,-154v-36,-28,-23,-105,47,-100v17,-5,79,19,71,71r-36,0v0,-1,-1,-11,-4,-17v-8,-16,-25,-16,-30,-16v-44,3,-25,40,1,47v47,30,71,20,78,73v4,12,-14,43,-32,51v40,25,29,108,-48,108v-26,0,-52,-7,-67,-31v-11,-18,-11,-36,-11,-43r38,0v2,21,14,37,40,36v34,-2,39,-26,18,-42v-33,-26,-97,-22,-97,-86v0,-23,15,-38,32,-51xm112,-62v5,-1,32,-25,18,-42v-8,-10,-35,-23,-51,-31v-16,10,-21,20,-21,29v9,34,23,24,54,44","w":191},{"d":"79,-153r101,0r0,42r-101,0r0,69r115,0r0,42r-164,0r0,-254r160,0r0,42r-111,0r0,59xm35,-277r52,-54r38,0r52,54r-44,0r-27,-30r-26,30r-45,0","w":204},{"d":"129,-259v8,-2,54,6,64,22r0,-17r160,0r0,42r-111,0r0,59r101,0r0,42r-101,0r0,69r115,0r0,42r-164,0r0,-17v-10,15,-56,25,-64,22v-88,-2,-115,-60,-115,-131v0,-73,33,-135,115,-133xm193,-127v2,-17,-10,-90,-64,-90v-8,0,-30,0,-44,19v-36,50,-34,156,43,161v8,0,25,-1,40,-15v26,-24,25,-69,25,-75","w":367},{"d":"72,-178r-40,-1v0,-8,0,-25,12,-43v21,-30,57,-32,67,-32v63,0,98,65,60,114v-19,25,-59,73,-81,96r99,0r0,44r-161,0r0,-39v32,-41,99,-99,111,-147v-5,-36,-61,-39,-67,8"},{"d":"76,-248r37,0r-143,248r-38,0","w":45},{"d":"104,-256v-55,72,-52,253,0,332r-35,0v-55,-71,-69,-229,0,-332r35,0","w":116},{"d":"107,-213v-8,-3,-36,11,-35,31r-40,0v2,-41,18,-72,81,-72v96,0,91,103,34,122v86,27,30,143,-41,136v-44,-4,-87,-23,-87,-79r43,0v1,25,10,38,43,38v33,0,38,-25,38,-37v0,-40,-26,-33,-68,-36r0,-38v9,3,73,-6,64,-36v-1,-16,-8,-28,-32,-29"},{"d":"37,-259v45,5,24,73,1,92r-21,0v15,-19,17,-34,18,-44v-7,2,-25,-7,-25,-23v0,-16,21,-27,27,-25xm103,-259v45,6,25,73,1,92r-22,0v15,-19,18,-34,19,-44v-7,1,-27,-6,-25,-23v-2,-18,21,-26,27,-25","w":144},{"d":"156,-254r180,0r0,42r-108,0r0,60r98,0r0,42r-98,0r0,68r111,0r0,42r-161,0r0,-53r-91,0r-30,53r-53,0xm178,-94r0,-116r-66,116r66,0","w":348},{"d":"88,74r-76,0r0,-37r36,0r0,-254r-36,0r0,-37r76,0r0,328","w":116},{"d":"180,-51v-19,84,-167,73,-167,-37v0,-72,67,-128,136,-84v40,26,35,83,35,93r-124,0v3,40,27,47,44,47v5,3,34,-9,35,-21xm61,-113r75,0v-3,-21,-12,-37,-35,-37v-31,0,-38,29,-40,37xm37,-207r46,-58r38,0r46,58r-42,0r-23,-32r-22,32r-43,0","w":196},{"d":"35,-248r169,0r0,36r-118,212r-52,0r113,-203r-112,0r0,-45"},{"d":"165,-192v3,-5,-10,-30,-24,-26v-38,7,-27,39,-36,68r60,0r0,34r-66,0v-1,10,-14,64,-26,79v24,-9,50,-8,78,-4v18,-3,15,-12,17,-33r38,0v1,51,-13,73,-53,77v-41,-4,-110,-9,-141,1v20,-25,30,-63,38,-120r-30,0r0,-34r37,0v4,-23,10,-67,33,-91v17,-17,42,-17,49,-17v6,0,34,0,51,19v12,14,15,30,16,47r-41,0"},{"d":"22,-75v1,-36,17,-46,32,-56v-12,-9,-27,-20,-27,-50v0,-42,44,-77,82,-73v19,-4,87,21,82,73v3,9,-11,45,-28,50v37,25,51,72,9,112v-49,47,-152,21,-150,-56xm144,-183v3,-15,-27,-38,-35,-33v-48,1,-45,68,0,67v19,0,35,-13,35,-34xm148,-73v4,-21,-31,-44,-39,-38v-41,7,-56,40,-27,68v31,29,72,-11,66,-30"},{"d":"194,-87v1,33,-25,91,-87,91v-56,0,-79,-35,-84,-75r45,1v11,37,31,40,56,28v21,-10,20,-38,20,-43v0,-23,-11,-45,-37,-45v-21,0,-34,15,-38,20r-41,-6r25,-132r125,0r-3,42r-88,0r-9,49v18,-14,63,-14,85,4v29,23,31,55,31,66"},{"d":"73,-248r45,0r0,70r54,0r0,36r-54,0r0,192r-45,0r0,-192r-53,0r0,-36r53,0r0,-70","w":191},{"d":"162,-186v10,-1,37,10,41,30r6,-22r24,0v-7,36,-19,76,-22,115v0,11,5,16,11,16v36,0,57,-85,55,-105v0,-6,-1,-22,-8,-38v-20,-44,-67,-47,-80,-47v-19,0,-56,2,-91,36v-44,43,-75,96,-44,164v41,90,161,77,229,9r12,15v-22,25,-84,62,-132,58v-76,-7,-138,-32,-138,-130v0,-71,46,-170,166,-171v52,-1,122,40,105,125v-4,22,-24,106,-82,106v-25,0,-27,-13,-30,-31v-8,12,-21,30,-51,30v-28,0,-46,-17,-47,-58v-1,-45,27,-98,76,-102xm143,-49v52,0,74,-114,22,-114v-40,0,-51,47,-51,78v0,28,16,36,29,36","w":322},{"d":"75,-15v0,42,-11,54,-42,101r-24,0v13,-21,29,-45,33,-87v-7,1,-28,-8,-28,-26v0,-17,14,-29,30,-29v14,0,31,11,31,41","w":95},{"d":"102,5v-127,0,-107,-191,0,-191v57,0,91,47,90,96v-1,57,-40,95,-90,95xm127,-139v-37,-25,-64,2,-67,49v-2,24,17,60,42,58v40,-4,60,-65,25,-107xm72,-203r48,-62r58,0r-71,62r-35,0","w":204},{"d":"80,0r-49,0r0,-254r49,0r0,254","w":110},{"d":"102,5v-127,0,-107,-191,0,-191v57,0,91,47,90,96v-1,57,-40,95,-90,95xm127,-139v-37,-25,-64,2,-67,49v-2,24,17,60,42,58v40,-4,60,-65,25,-107","w":204},{"d":"109,-156r-8,0v-4,-33,-13,-65,-14,-100v3,-17,31,-19,36,-2v-1,35,-10,68,-14,102xm41,-156r-8,0v-4,-33,-13,-65,-14,-100v5,-21,41,-17,37,7","w":142},{"d":"-1,10v48,6,50,-18,50,-60r0,-204r49,0r0,203v7,83,-18,103,-100,102","w":127},{"d":"30,-254r52,0r104,179r0,-179r46,0r0,254r-49,0r-106,-179r0,179r-47,0r0,-254xm197,-324v-12,59,-50,41,-92,30v-13,0,-17,11,-18,14r-21,-5v-1,-7,16,-44,38,-40v10,-2,41,11,53,12v11,-1,12,-6,20,-16","w":262},{"d":"109,-144v-57,9,-29,89,-36,144r-46,0r0,-126v0,-33,0,-34,-3,-55r45,0v4,19,3,24,3,37v7,-20,28,-46,66,-39r0,48v-6,-5,-14,-8,-29,-9","w":144},{"d":"198,-178v20,18,26,85,-1,112r28,27r-22,22r-28,-27v-9,6,-26,18,-55,18v-30,0,-47,-13,-56,-19r-27,28r-22,-22r27,-27v-18,-20,-27,-82,0,-112r-27,-27r22,-22r27,27v19,-19,85,-27,112,0r27,-27r22,22xm121,-55v38,0,66,-17,66,-67v0,-29,-19,-69,-67,-68v-37,1,-67,32,-67,68v0,38,30,67,68,67","w":240},{"d":"142,-21v-39,52,-117,18,-117,-55r0,-105r47,0r0,103v-5,28,19,43,31,41v60,-7,28,-89,36,-144r47,0v2,57,-5,136,4,181r-44,0v-2,-5,-3,-11,-4,-21xm141,-203r-36,0r-71,-62r58,0","w":212},{"d":"201,-83r-54,0r-12,83r-28,0r11,-83r-40,0r-11,83r-30,0r13,-83r-50,0r0,-28r54,0r5,-38r-50,0r0,-28r54,0r11,-77r29,0r-11,77r40,0r11,-77r28,0r-10,77r49,0r0,28r-53,0r-6,38r50,0r0,28xm122,-111r6,-38r-40,0r-6,38r40,0","w":209},{"d":"199,-125v-3,58,-16,127,-90,129v-10,0,-31,-1,-52,-18v-31,-27,-39,-73,-39,-111v0,-55,26,-129,91,-129v65,0,93,73,90,129xm109,-215v-38,-1,-44,62,-43,90v0,4,-1,43,11,67v9,19,22,23,32,23v45,0,51,-84,36,-144v-8,-28,-22,-36,-36,-36"},{"d":"128,-217v-66,6,-80,83,-50,152v25,29,60,41,105,11r0,-41r-51,0r0,-36r92,0r0,106v-48,29,-113,54,-175,-1v-18,-16,-36,-46,-36,-100v0,-16,0,-82,53,-116v60,-38,155,-13,154,70r-42,0v2,-12,-16,-48,-50,-45","w":243},{"d":"71,-157v17,-33,86,-40,107,1v15,-22,83,-55,109,-3v17,34,5,109,7,159r-47,0r0,-105v1,-21,-9,-42,-30,-39v-17,-3,-39,21,-33,41r0,103r-48,0r0,-101v4,-18,-5,-46,-28,-43v-19,-3,-42,23,-35,43r0,101r-47,0v-2,-57,6,-134,-5,-181r46,0v4,9,4,14,4,24","w":318},{"d":"80,-153r101,0r0,-101r49,0r0,254r-49,0r0,-112r-101,0r0,112r-49,0r0,-254r49,0r0,101","w":260},{"d":"26,-181r47,0r0,181r-47,0r0,-181xm22,-231v-4,-12,20,-33,28,-29v14,-3,31,22,27,28v0,17,-10,27,-27,27v-16,0,-28,-9,-28,-26","w":99},{"d":"26,-181r47,0r0,181r-47,0r0,-181xm11,-256v14,0,26,12,26,26v0,14,-13,26,-27,26v-14,0,-25,-12,-25,-26v0,-14,12,-26,26,-26xm89,-256v14,0,25,12,25,26v0,14,-11,26,-25,26v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26","w":99},{"d":"4,-181r50,0r41,130r43,-130r48,0r-65,182r-52,0","w":191},{"d":"165,-51r-21,21r-54,-55r-54,55r-21,-21r55,-54r-55,-54r21,-20r54,54r54,-54r21,20r-54,54","w":180},{"d":"20,-254r164,0r0,34r-117,178r113,0r0,42r-171,0r0,-38r116,-175r-105,0r0,-41","w":191},{"d":"79,-153r101,0r0,42r-101,0r0,69r115,0r0,42r-164,0r0,-254r160,0r0,42r-111,0r0,59xm71,-332v15,0,28,13,28,28v0,15,-14,28,-29,28v-15,0,-28,-13,-28,-28v0,-15,14,-28,29,-28xm141,-332v15,0,29,13,29,28v0,15,-14,28,-29,28v-16,0,-28,-13,-28,-28v0,-15,13,-28,28,-28","w":204},{"d":"97,-111v-51,-20,-78,-13,-78,-74v0,-10,2,-33,21,-51v21,-20,48,-22,57,-23r0,-29r23,0r1,30v49,11,78,35,74,77r-45,0v0,-21,-21,-37,-30,-36r1,64v27,9,37,14,50,21v30,17,55,85,1,120v-16,11,-33,15,-52,16r0,35r-23,0r0,-35v-5,-1,-19,-1,-32,-7v-49,-23,-50,-45,-52,-82r46,0v-3,30,27,49,38,49r0,-75xm97,-218v-26,6,-36,16,-29,40v3,9,12,13,29,18r0,-58xm121,-36v13,5,48,-23,32,-47v-8,-11,-21,-16,-33,-20"},{"d":"89,-51v40,32,83,11,86,-43r44,0v3,16,-16,85,-55,93v-6,2,-11,3,-24,5r-5,15v18,5,41,11,41,42v0,44,-53,57,-85,32r0,-21v2,1,17,9,29,9v19,0,22,-18,22,-24v3,-13,-21,-33,-40,-23r9,-30v-31,-4,-58,-21,-75,-47v-22,-33,-22,-70,-22,-83v-4,-67,45,-133,112,-133v48,0,88,34,89,87r-42,0v-4,-26,-19,-45,-47,-45v-51,0,-56,32,-62,91v0,7,-2,53,25,75","w":228},{"d":"151,-196v0,28,-19,47,-37,61r42,57v6,-8,8,-30,7,-49r36,0v5,34,-8,73,-19,83r32,44r-48,0r-11,-17v-13,11,-26,21,-59,21v-50,2,-84,-31,-84,-73v0,-36,23,-51,46,-74v-11,-15,-26,-32,-26,-54v2,-73,121,-69,121,1xm90,-162v10,-9,23,-21,23,-36v0,-16,-16,-18,-20,-18v-31,-1,-20,42,-3,54xm81,-109v-12,11,-26,24,-28,42v-3,27,50,49,77,21","w":221},{"d":"48,-55v16,0,29,12,29,29v0,16,-13,29,-29,29v-16,0,-29,-12,-29,-29v0,-16,13,-29,29,-29","w":95},{"d":"102,5v-127,0,-107,-191,0,-191v57,0,91,47,90,96v-1,57,-40,95,-90,95xm127,-139v-37,-25,-64,2,-67,49v-2,24,17,60,42,58v40,-4,60,-65,25,-107xm137,-203r-35,0r-71,-62r57,0","w":204},{"d":"45,-181v16,0,29,12,29,29v0,16,-13,29,-29,29v-16,0,-30,-14,-30,-30v0,-16,14,-28,30,-28xm75,-15v0,42,-11,54,-42,101r-24,0v13,-21,29,-45,33,-87v-7,1,-28,-8,-28,-26v0,-17,14,-29,30,-29v14,0,31,11,31,41","w":95},{"d":"23,-248r50,0r-5,164r-41,0xm48,-55v16,0,29,12,29,29v0,16,-13,29,-29,29v-16,0,-29,-12,-29,-29v0,-16,13,-29,29,-29","w":95},{"d":"14,-126v-3,-69,44,-133,112,-133v48,0,88,34,89,87r-42,0v-4,-26,-19,-45,-47,-45v-51,0,-56,32,-62,91v-1,19,12,95,63,89v36,-5,42,-17,48,-57r44,0v-5,55,-20,96,-91,99v-16,0,-55,-3,-85,-38v-30,-35,-29,-79,-29,-93","w":228},{"d":"30,-254v116,-4,198,1,202,127v0,14,-2,56,-30,91v-37,46,-101,34,-172,36r0,-254xm79,-42v29,-1,52,3,74,-10v31,-20,30,-72,30,-76v0,-7,0,-43,-22,-66v-22,-22,-50,-17,-82,-18r0,170","w":245},{"d":"89,-254r50,0r86,254r-50,0r-16,-53r-90,0r-15,53r-51,0xm147,-95r-33,-103r-32,103r65,0xm146,-273r-44,0r-78,-63r58,0","w":228},{"d":"14,-127v0,-18,-1,-90,59,-119v39,-19,89,-27,135,19v35,34,35,86,35,100v0,17,0,85,-57,117v-12,15,-93,20,-109,3v-63,-30,-63,-102,-63,-120xm128,-217v-57,0,-64,44,-64,90v0,39,3,90,65,90v10,0,34,-1,47,-25v24,-44,20,-62,12,-100v-3,-12,-14,-55,-60,-55xm102,-273r64,-63r58,0r-78,63r-44,0","w":257},{"d":"0,-254r54,0r54,101r52,-101r54,0r-83,154r0,100r-49,0r0,-100xm72,-332v15,0,27,13,27,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,14,-28,29,-28xm143,-332v15,0,27,13,27,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,14,-28,29,-28","w":213},{"d":"73,69r-50,0r5,-163r40,0xm48,-123v-16,0,-29,-13,-29,-30v0,-16,13,-28,29,-28v16,0,29,13,29,29v0,16,-13,29,-29,29","w":95},{"d":"63,-204v34,3,62,-30,59,-45r32,0r0,249r-47,0r0,-178r-44,0r0,-26"},{"d":"197,-92v0,59,-26,96,-75,96v-28,0,-41,-15,-48,-23r0,94r-47,0r0,-199v0,-32,-1,-39,-4,-57r44,0v3,9,4,18,4,21v7,-10,19,-25,49,-25v49,0,77,31,77,93xm73,-90v-2,10,7,55,38,55v39,0,38,-55,38,-56v-1,-23,-1,-52,-37,-55v-28,-3,-40,33,-39,56","w":209},{"d":"0,-113r99,0r0,34r-99,0r0,-34","w":99},{"d":"102,5v-127,0,-107,-191,0,-191v57,0,91,47,90,96v-1,57,-40,95,-90,95xm127,-139v-37,-25,-64,2,-67,49v-2,24,17,60,42,58v40,-4,60,-65,25,-107xm126,-213v-12,-1,-61,-24,-63,2r-20,-5v0,-5,13,-44,35,-41v9,-1,31,11,47,12v11,1,17,-14,19,-15r17,5v-3,17,-7,36,-35,42","w":204},{"d":"18,-145r181,0r0,36r-181,0r0,-36"},{"d":"212,-73v-4,54,-43,78,-121,73r-60,0r0,-254v76,3,161,-18,167,64v5,12,-20,54,-42,54v32,8,50,14,56,63xm150,-183v0,-30,-33,-35,-71,-32r0,63v37,-1,71,4,71,-31xm162,-77v1,-42,-40,-35,-83,-36r0,73v46,-2,81,10,83,-37","w":225},{"d":"41,-156r-8,0v-4,-33,-13,-65,-14,-100v5,-21,41,-17,37,7","w":74},{"d":"82,-55v16,0,29,12,29,29v0,16,-13,29,-29,29v-16,0,-29,-12,-29,-29v0,-16,13,-29,29,-29xm155,-195v0,47,-57,54,-52,112r-43,0v-11,-63,35,-64,45,-109v0,-13,-9,-20,-21,-20v-16,1,-26,9,-27,31r-38,0v3,-49,13,-72,70,-72v54,0,66,36,66,58","w":159},{"d":"110,4v-52,-5,-88,-27,-88,-93v0,-95,51,-110,90,-163r51,0v-21,26,-43,52,-60,82v28,-2,38,-6,67,17v26,20,25,56,25,66v2,40,-33,96,-85,91xm109,-135v-27,-4,-44,41,-39,49v0,37,23,50,39,50v59,0,43,-102,0,-99"},{"d":"97,-222v-20,1,-20,17,-20,41r43,0r0,37r-43,0r0,144r-47,0r0,-144r-24,0r0,-37r24,0v0,-31,-2,-55,22,-72v34,-15,38,-11,76,-1r0,38v-1,0,-19,-6,-31,-6","w":125},{"d":"85,-203r0,-45r21,0r0,45r43,-14r6,20r-43,14r27,36r-17,13r-26,-37r-27,37r-17,-13r27,-36r-43,-14r6,-20","w":191},{"d":"64,-225v-1,24,-8,36,-26,58r-21,0v15,-19,17,-34,18,-44v-7,2,-25,-7,-25,-23v0,-16,21,-27,27,-25v22,-3,29,28,27,34","w":78},{"d":"295,-51v-13,71,-119,72,-150,18v-3,15,-27,40,-64,38v-24,-1,-70,-13,-66,-52v5,-58,63,-62,108,-66v6,-37,-32,-51,-53,-19r-3,9r-45,0v4,-37,22,-63,78,-63v33,0,47,11,58,23v27,-24,88,-43,124,11v18,28,17,64,17,73r-128,0v-9,42,63,67,82,26xm249,-113v1,-40,-63,-50,-73,-10v-1,4,-2,6,-3,10r76,0xm88,-31v22,0,40,-26,35,-49v-8,0,-60,-1,-60,29v0,15,13,20,25,20","w":311},{"d":"56,90r-29,0r0,-359r29,0r0,359","w":82},{"d":"10,-254r56,0r46,78r47,-78r56,0r-75,122r79,132r-56,0r-51,-88r-53,88r-55,0r79,-132","w":223},{"d":"80,0r-49,0r0,-254r49,0r0,254xm29,-273r64,-63r57,0r-77,63r-44,0","w":110},{"d":"191,-254r37,0r-147,254r-38,0xm260,-59v3,14,-16,61,-54,61v-18,0,-58,-22,-54,-62v5,-48,40,-75,77,-55v28,14,31,47,31,56xm206,-24v21,0,25,-31,24,-35v0,-14,-6,-36,-24,-36v-19,0,-24,12,-24,36v0,14,5,35,24,35xm120,-195v-6,45,-16,55,-54,62v-33,-2,-54,-32,-54,-62v0,-40,38,-64,54,-61v31,-1,58,33,54,61xm66,-159v18,2,27,-32,24,-36v0,-14,-5,-35,-24,-35v-14,1,-25,13,-24,35v-4,6,9,40,24,36","w":271},{"d":"4,-254r45,0r49,198r47,-198r42,0r48,198r49,-198r44,0r-65,254r-56,0r-41,-166r-41,166r-56,0","w":331},{"d":"25,-91v42,-14,20,-74,25,-119v0,-8,0,-44,32,-55v7,-2,23,-7,35,-2v-76,3,0,166,-67,177v63,6,-4,175,67,178r0,2v-17,-1,-37,0,-50,-13v-29,-28,-13,-70,-17,-119v4,-6,-7,-42,-25,-49","w":127},{"d":"142,-21v-39,52,-117,18,-117,-55r0,-105r47,0r0,103v-5,28,19,43,31,41v60,-7,28,-89,36,-144r47,0v2,57,-5,136,4,181r-44,0v-2,-5,-3,-11,-4,-21","w":212},{"w":105},{"d":"9,-181r57,0r29,51r31,-51r56,0r-57,85r66,96r-57,0r-39,-60r-37,60r-58,0r67,-96","w":191},{"d":"125,-121v3,-33,-52,-40,-58,-6r-45,0v1,-11,3,-20,9,-29v19,-29,64,-29,70,-29v4,0,36,-1,53,15v37,37,2,112,22,170r-42,0v-2,-9,-3,-12,-3,-21v-17,38,-120,35,-116,-27v3,-49,63,-65,110,-70r0,-3xm91,-32v33,-1,34,-24,34,-54v-13,1,-69,6,-62,32v-1,16,23,23,28,22","w":195},{"d":"180,-51v-19,84,-167,73,-167,-37v0,-72,67,-128,136,-84v40,26,35,83,35,93r-124,0v3,40,27,47,44,47v5,3,34,-9,35,-21xm61,-113r75,0v-3,-21,-12,-37,-35,-37v-31,0,-38,29,-40,37","w":196},{"d":"31,-254r50,0r0,212r110,0r0,42r-160,0r0,-254","w":196},{"d":"205,-24v-17,15,-34,29,-76,29v-42,0,-68,-20,-80,-32v-16,-16,-35,-46,-35,-100v0,-17,1,-85,56,-117v22,-13,65,-23,107,-5v67,28,78,128,53,189r53,60r-57,0xm64,-127v-8,59,60,132,112,65v24,-62,22,-65,3,-126v-15,-27,-39,-29,-51,-29v-9,0,-30,1,-46,22v-18,24,-18,62,-18,68","w":264},{"d":"94,-30v17,3,44,-24,17,-34v-45,-16,-114,-24,-83,-91v15,-32,58,-31,66,-31v9,0,54,0,69,38v4,10,4,18,4,22r-45,0v3,-31,-53,-32,-54,-6v15,39,101,13,101,79v0,26,-25,58,-73,58v-55,0,-79,-26,-81,-65r44,0v-5,18,30,35,35,30","w":185},{"d":"89,-254r50,0r86,254r-50,0r-16,-53r-90,0r-15,53r-51,0xm147,-95r-33,-103r-32,103r65,0","w":228},{"d":"13,-127v0,-25,24,-47,48,-47v26,0,46,21,46,47v0,30,-9,47,-46,47v-26,0,-48,-20,-48,-47","w":119},{"d":"125,-121v3,-33,-52,-40,-58,-6r-45,0v1,-11,3,-20,9,-29v19,-29,64,-29,70,-29v4,0,36,-1,53,15v37,37,2,112,22,170r-42,0v-2,-9,-3,-12,-3,-21v-17,38,-120,35,-116,-27v3,-49,63,-65,110,-70r0,-3xm91,-32v33,-1,34,-24,34,-54v-13,1,-69,6,-62,32v-1,16,23,23,28,22xm104,-275v21,0,37,17,37,38v0,21,-16,38,-37,38v-21,0,-38,-18,-38,-39v0,-21,17,-37,38,-37xm104,-256v-10,0,-19,9,-19,19v0,10,9,18,19,18v10,0,18,-9,18,-19v0,-10,-8,-18,-18,-18","w":195},{"d":"97,-222v-20,1,-20,17,-20,41r43,0r0,37r-43,0r0,144r-47,0r0,-144r-24,0r0,-37r24,0v0,-31,-2,-55,22,-72v34,-15,38,-11,76,-1r0,38v-1,0,-19,-6,-31,-6xm152,-256r46,0r0,256r-46,0r0,-256","w":225},{"w":105},{"d":"107,-217v-5,-4,-40,10,-38,27v4,33,97,45,107,62v18,12,39,55,17,93v-17,30,-50,40,-82,40v-19,4,-92,-17,-95,-62v-4,-13,-4,-24,-4,-29r47,0v0,3,2,11,5,19v11,28,39,30,48,30v32,-1,49,-17,37,-39v-34,-41,-127,-27,-128,-109v-1,-88,138,-97,167,-30v7,15,7,30,7,35r-47,0v-1,-18,-12,-38,-41,-37","w":215},{"d":"91,-185v7,-3,42,9,49,25v0,-6,1,-16,3,-21r43,0v-7,71,-1,176,-3,256r-47,0r0,-94v-35,47,-130,14,-123,-71v3,-45,21,-94,78,-95xm61,-91v-2,36,15,52,38,56v19,3,43,-32,38,-55v1,-23,-11,-58,-38,-56v-30,3,-36,18,-38,55","w":209},{"d":"79,-153r101,0r0,42r-101,0r0,69r115,0r0,42r-164,0r0,-254r160,0r0,42r-111,0r0,59","w":204},{"d":"125,-121v3,-33,-52,-40,-58,-6r-45,0v1,-11,3,-20,9,-29v19,-29,64,-29,70,-29v4,0,36,-1,53,15v37,37,2,112,22,170r-42,0v-2,-9,-3,-12,-3,-21v-17,38,-120,35,-116,-27v3,-49,63,-65,110,-70r0,-3xm91,-32v33,-1,34,-24,34,-54v-13,1,-69,6,-62,32v-1,16,23,23,28,22xm132,-203r-35,0r-71,-62r58,0","w":195},{"d":"103,-88v-60,24,10,131,-52,172v-9,3,-25,9,-41,4v16,0,39,-22,36,-60v-5,-51,-5,-113,31,-118v-64,-11,5,-168,-67,-179v17,1,37,1,51,13v42,36,-15,141,42,166r0,2","w":127},{"d":"80,-201v0,-30,9,-31,27,-58r21,0v-4,3,-18,27,-19,44v6,-3,28,10,25,23v0,14,-12,25,-26,25v-16,0,-28,-10,-28,-34xm14,-201v2,-30,9,-31,27,-58r21,0v-3,4,-18,26,-18,44v5,-3,27,12,25,23v-6,34,-58,34,-55,-9","w":144},{"d":"105,-58r-29,0r0,-65r-65,0r0,-29r65,0r0,-64r29,0r0,64r64,0r0,29r-64,0r0,65xm169,0r-158,0r0,-28r158,0r0,28","w":180},{"d":"184,78r-188,0r0,-29r188,0r0,29","w":180},{"d":"18,-177r181,0r0,36r-181,0r0,-36xm18,-113r181,0r0,36r-181,0r0,-36"},{"d":"210,-176v-1,29,-14,55,-45,71r58,105r-57,0r-52,-97r-35,0r0,97r-49,0r0,-254v41,1,105,-3,131,6v45,16,49,57,49,72xm160,-177v0,-36,-37,-37,-81,-35r0,73v41,2,81,2,81,-38","w":225},{"d":"102,5v-127,0,-107,-191,0,-191v57,0,91,47,90,96v-1,57,-40,95,-90,95xm127,-139v-37,-25,-64,2,-67,49v-2,24,17,60,42,58v40,-4,60,-65,25,-107xm37,-207r46,-58r38,0r46,58r-42,0r-23,-32r-22,32r-43,0","w":204},{"d":"13,-91v-3,-44,27,-95,88,-95v55,0,67,27,74,65r-45,0v-2,-13,-8,-28,-30,-28v-31,0,-35,20,-40,59v-1,6,7,58,40,58v27,0,30,-24,31,-32r46,0v-7,38,-22,66,-77,69v-50,2,-94,-49,-87,-96","w":189},{"d":"229,-107v8,72,-42,116,-101,112v-13,0,-78,0,-94,-56v-17,-60,-3,-134,-6,-203r49,0r0,146v0,51,4,71,52,71v46,0,52,-34,51,-71r0,-146r49,0r0,147xm57,-277r52,-54r38,0r53,54r-44,0r-27,-30r-27,30r-45,0","w":257},{"d":"84,-265r-46,58r-38,0r-46,-58r42,0r23,33r22,-33r43,0","w":105},{"d":"31,-254r68,0r55,202r56,-202r67,0r0,254r-44,0r0,-198r-54,198r-51,0r-53,-198r0,198r-44,0r0,-254","w":307},{"d":"31,-254v80,1,179,-15,179,81v0,14,-4,60,-52,73v-14,5,-48,5,-78,5r0,95r-49,0r0,-254xm160,-174v0,-42,-35,-37,-80,-38r0,75v44,-1,80,4,80,-37","w":215},{"d":"8,74r161,-328r35,0r-161,328r-35,0","w":212},{"d":"122,-214v0,30,-28,58,-58,58v-32,0,-58,-26,-58,-58v0,-32,26,-58,58,-58v32,0,58,26,58,58xm64,-243v-16,0,-29,13,-29,28v0,16,14,29,29,29v16,0,28,-13,28,-29v0,-15,-12,-28,-28,-28","w":127},{"d":"118,4v-31,-2,-35,-11,-49,-28v0,6,0,12,-3,24r-41,0v5,-81,1,-171,2,-256r46,0r1,98v44,-58,123,-19,123,67v0,50,-32,97,-79,95xm149,-92v0,-13,-4,-54,-36,-54v-21,0,-40,16,-40,56v-5,6,14,62,38,55v19,4,44,-33,38,-57","w":209},{"d":"89,0r-80,-254r29,0r80,254r-29,0","w":127},{"d":"5,-181r47,0r34,128r37,-128r38,0r37,128r35,-128r47,0r-55,182r-50,0r-34,-108r-33,108r-50,0","w":285},{"d":"48,-55v16,0,29,12,29,29v0,16,-13,29,-29,29v-16,0,-29,-12,-29,-29v0,-16,13,-29,29,-29xm48,-181v16,0,29,12,29,29v0,16,-13,29,-29,29v-16,0,-29,-14,-29,-30v0,-16,13,-28,29,-28","w":95},{"d":"89,-185v18,-2,42,13,47,24r0,-95r47,0r0,199v1,32,0,39,3,57r-43,0v-2,-12,-3,-15,-1,-25v-7,12,-20,29,-52,29v-57,-1,-77,-49,-77,-93v0,-51,14,-88,76,-96xm61,-89v0,36,8,54,37,54v30,0,39,-32,39,-56v0,-2,2,-56,-38,-55v-26,1,-38,20,-38,57","w":209},{"d":"14,-127v0,-18,-1,-90,59,-119v39,-19,89,-27,135,19v35,34,35,86,35,100v0,17,0,85,-57,117v-12,15,-93,20,-109,3v-63,-30,-63,-102,-63,-120xm128,-217v-57,0,-64,44,-64,90v0,39,3,90,65,90v10,0,34,-1,47,-25v24,-44,20,-62,12,-100v-3,-12,-14,-55,-60,-55","w":257},{"d":"140,-181r57,0r-68,84r74,97r-63,0r-66,-96xm26,-256r47,0r0,256r-47,0r0,-256","w":204},{"d":"128,-259v42,0,56,11,74,24r16,-19r32,0r-31,37v17,27,24,37,24,87v0,66,-18,126,-114,135v-10,1,-59,-8,-75,-25r-16,20r-31,0r31,-37v-31,-41,-28,-104,-17,-143v7,-25,34,-79,107,-79xm129,-217v-66,0,-76,80,-57,140r98,-125v-7,-6,-19,-15,-41,-15xm128,-37v43,2,70,-58,65,-95v0,-5,-1,-30,-9,-49r-99,127v9,8,19,16,43,17","w":257},{"d":"6,-181r51,0r40,138r42,-138r49,0v-29,73,-52,171,-89,233v-10,17,-48,29,-88,24r0,-41v24,3,58,-4,60,-27xm57,-256v14,0,25,12,25,26v0,14,-11,26,-25,26v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26xm135,-256v14,0,26,12,26,26v0,14,-13,26,-27,26v-14,0,-25,-12,-25,-26v0,-14,12,-26,26,-26","w":191},{"d":"142,-21v-39,52,-117,18,-117,-55r0,-105r47,0r0,103v-5,28,19,43,31,41v60,-7,28,-89,36,-144r47,0v2,57,-5,136,4,181r-44,0v-2,-5,-3,-11,-4,-21xm41,-207r46,-58r38,0r46,58r-42,0r-23,-32r-22,32r-43,0","w":212}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+379-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("!V84?Y*OW$DE!mH;aYSeNVNDJt*48YDEJtyeW$B{8fh~%GObJ&M@zVyYJ&M@zV85J&MezrkjJ&M@zVybf$c6aRNIz5NoJ&M@zVBcJ&M@zVz4J&M@zV%jJ&M@zVfbJ&M@zV2oJ&M@zVMI1HI4zr_b*4I4zr_5zHI4zry,%4I4zrkGzfI4zr_,zYo$WHI4zr_c.$_6aRw@8$f6aRw@%GH6aRw@%GB6aRw@8rf6aRN@z586aRw@%Gc6aRw@%t*6aRwI.Ry6aRw@8rB6aRw@%G*{J&M@zVSHJ&M@zVMeJ&M@zVNt!fI4zr*b%4I4zr_c%HI4z5wI%fI4zr_5zRI6a$8bzrSL*&BABHI4zrk4z4I4zr_YzfI48Y8Y8ko6aRN@zR*6aRw@8Rc6aRw@8586aRw@8Ra6aRw@8$*6aRN@zG_6aRw@8V86aRw@8YS6aRw@85a6aRw@8r8oJ&M@zYztJ&M@zVNjfSH6aRw@%5B6aRN@zRB6aRw@%R8?J&M@zVS5[HI4zr_H8SI4zr_c.VI6aRw@8RB1!4I4z5wI8fI4zr_58fI4zr_,%4I4zr_Hz4I4zr_H.fI4zr_58HI4zr_c*4I4zr_5%fI4zrk4z5y6aRN@*r2Qz4I4z5wI8SI4zr_5*H46aRw@8$k-J&M@zVkG.rf6aRN@z5_wLSI4zr_YzOH7Jmy!J&M@zV2I6HI4zr_c*SI4zr_Y.gz@Bt4NWfI4zr_H8{86aRw@8raWJ&M@zV*bySI4zr_5*e%EJ&M@zV%e.eSrBSI4zr_5zSI4zr_,z4I4zrk-.SI4zr_czRS@LfI4zr_Y*fI4z5NIz,N{[G8Y!HI4z5wI.fI4zr_H*{I%J&M@zV*,yfa;ag_j%$fzMJ*_J&MezrNeJ&M@zVM4J&fY%5weJ&M@zVk@M-SSJ&M@zVM@^fI4z5wI%4I4zr_bzfhDMHI4zr_Y*V*6aRw@8Vy6aRwe%Ga*MS@7J&M@zVN@%HI6aGT,RtK6aRw@8rc6aRw@8Y86aRw@8YNbL{*@?VHO!mNb!gIT[Rw~6r4bL{w~?r4@LYIH?YaOWmI{[$NE8bo{?&H@W&zD1-O;W$%Q%bo7WGO7Jb]u.{a-a4@E!RhQ[GT{W$ac6-_76{B6LYSO^VaT8tSG6VDeaS@E%tDK^VaT8tSG6VDeaS@E%-Th8tH{%J*@?-yOJmoGW-I{W$ac6-_76{B6L{*T!g27Wgw_mrkSV&Ny!Lz*.[2BgRMf$J%8W?6a1^]cb5,HY{QT9v~KE7@IeGO4t-joC;hDAuoO8J*O!VI7%tSOW$DELYc76-BE%$4H!gHY?-NQ.t,h?r~v!t,T84K5$tHaJR4@$tHa^g,Q!gw]")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":217,"face":{"font-family":"corporatesbq","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-68 -344.876 357 105.597","underline-thickness":"18","underline-position":"-36","stemh":"41","stemv":"48","unicode-range":"U+0020-U+FB02"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * (c) COPYRIGHT H. BERTHOLD AG 1992 Alle Rechte vorbehalten.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"106,-184v9,-3,43,9,48,31v1,-6,4,-16,10,-28r24,1v-25,75,-44,174,-66,254r-26,0r25,-98v-6,8,-23,28,-53,28v-37,0,-54,-34,-54,-64v0,-57,37,-123,92,-124xm74,-19v44,-2,65,-57,67,-99v1,-32,-28,-59,-57,-36v-30,23,-43,41,-43,96v0,31,19,39,33,39","w":189},{"d":"81,-195v19,-20,82,-31,112,0r27,-26r17,16r-27,27v17,7,25,85,8,101r-8,11r26,27r-16,17r-27,-27v-30,24,-78,28,-112,0r-27,26r-17,-16r27,-27v-7,-9,-19,-27,-19,-57v0,-30,12,-47,19,-56r-26,-26r16,-16xm138,-51v30,0,70,-21,69,-71v-2,-30,-20,-72,-70,-71v-40,0,-70,31,-70,71v0,41,31,71,71,71","w":240},{"d":"223,-126r-27,0r-47,-99r-49,99r-27,0r65,-128r23,0","w":262},{"d":"104,-240v1,24,-38,63,-42,64r-22,0v5,-4,33,-25,38,-44v-13,3,-22,-13,-16,-24v6,-13,18,-15,23,-15v6,0,19,3,19,19","w":90},{"d":"55,-101v-14,47,-11,79,43,81v8,0,38,1,52,-21v38,-59,39,-142,62,-213r27,0v-19,67,-32,164,-59,218v-9,18,-35,41,-83,41v-61,0,-86,-44,-69,-112r37,-147r28,0xm201,-289v-31,0,-21,-41,6,-42v10,0,17,7,17,17v0,13,-9,25,-23,25xm126,-289v-24,-4,-22,-41,7,-42v10,0,17,7,17,17v0,11,-5,23,-24,25","w":221},{"d":"34,75r-57,0r5,-22r33,0r71,-286r-32,0r5,-21r57,0","w":106},{"d":"51,-181r27,0r-45,181r-27,0xm59,-234v0,-25,38,-32,39,-9v2,22,-35,35,-39,9","w":82},{"d":"111,-185v49,-3,66,41,55,98r-121,0v-10,39,13,73,37,68v23,5,52,-32,50,-38r26,1v-1,13,-33,63,-78,60v-37,-2,-65,-17,-65,-70v0,-49,19,-114,96,-119xm144,-108v2,-26,-1,-54,-35,-54v-40,0,-57,49,-59,54r94,0xm73,-258r33,0r25,49r-20,0","w":183},{"d":"180,-120v2,49,-36,123,-91,122v-31,0,-42,-20,-47,-31r-26,103r-25,0r61,-255r25,1v0,10,-3,19,-4,22v6,-9,20,-28,51,-28v32,0,54,17,56,66xm89,-21v31,4,65,-59,63,-97v0,-6,0,-45,-34,-45v-45,0,-64,66,-64,100v0,22,4,38,35,42","w":189},{"d":"155,-259v119,0,90,148,40,218r26,41r-36,0r-10,-20v-21,18,-79,43,-121,8v-30,-25,-29,-67,-29,-77v0,-17,2,-59,26,-102v9,-17,40,-68,104,-68xm207,-165v0,-23,-9,-73,-53,-69v-76,7,-115,109,-94,180v21,71,110,14,117,-10v18,-27,30,-69,30,-101","w":241},{"d":"39,0r-28,0r64,-254r28,0xm53,-327r37,0r34,47r-25,0","w":93},{"d":"75,-144r100,0r-6,25r-101,0r-23,94r114,0r-6,25r-142,0r63,-254r135,0r-6,24r-107,0xm138,-327r33,0r34,47r-25,0r-27,-30v-23,11,-34,34,-72,30","w":191},{"d":"75,-144r100,0r-6,25r-101,0r-23,94r114,0r-6,25r-142,0r63,-254r135,0r-6,24r-107,0xm209,-313v3,26,-41,35,-42,7v-2,-23,41,-35,42,-7xm111,-288v-33,-5,-15,-43,7,-42v10,0,17,7,17,17v0,11,-5,23,-24,25","w":191},{"d":"111,-20v42,4,77,-55,75,-66r29,0v-17,44,-18,60,-76,87v-4,1,-9,2,-18,3r-12,18v21,5,26,17,26,27v0,36,-49,42,-72,28r4,-15v11,9,49,0,42,-15v0,-18,-24,-16,-24,-16r18,-26v-45,-6,-78,-25,-78,-94v0,-83,38,-165,130,-170v12,0,56,1,69,44v3,11,4,20,4,31r-28,0v2,-18,-12,-53,-47,-50v-64,6,-96,81,-98,144v0,24,10,75,56,70","w":232},{"d":"39,0r-28,0r64,-254r28,0xm90,-327r32,0r34,47r-25,0r-27,-30v-23,11,-34,34,-72,30","w":93},{"d":"51,-181r27,0r-45,181r-27,0","w":82},{"d":"21,-57v-4,-35,40,-77,55,-75v-23,-18,-24,-51,-14,-72v6,-14,26,-48,72,-48v74,1,78,100,11,123v31,18,37,65,4,104v-22,27,-50,28,-63,28v-34,1,-69,-26,-65,-60xm164,-195v0,-20,-23,-39,-32,-34v-18,-3,-48,29,-48,55v0,19,12,33,32,33v29,-1,48,-28,48,-54xm87,-20v48,6,90,-92,17,-98v-58,-3,-79,95,-17,98"},{"d":"145,-254v15,-4,65,15,65,61v0,12,-2,48,-33,71v-33,24,-67,17,-111,18r-26,104r-29,0r64,-254r70,0xm71,-129v66,11,130,-21,104,-86v-18,-21,-47,-14,-79,-15","w":196},{"d":"149,-3v-60,22,-124,2,-124,-86v0,-37,11,-76,30,-108v32,-55,76,-62,102,-62v19,0,36,4,51,17v30,25,29,67,29,77v-3,68,-31,141,-88,162xm154,-234v-18,0,-44,6,-67,40v-19,29,-32,71,-32,106v0,53,28,68,53,68v75,0,111,-107,96,-174v-8,-36,-36,-40,-50,-40xm127,-327r38,0r33,47r-25,0","w":241},{"d":"106,-184v9,-4,40,12,46,31r25,-103r26,0r-51,203v-7,27,-9,38,-9,53r-26,0v0,-4,1,-13,4,-24v-7,9,-20,28,-51,28v-40,0,-56,-16,-56,-66v0,-49,32,-122,92,-122xm76,-19v41,0,65,-66,64,-101v-1,-32,-20,-41,-35,-41v-47,0,-64,61,-64,97v0,21,8,45,35,45","w":187},{"d":"235,-94r-218,0r0,-22r240,0r0,116r-22,0r0,-94","w":240},{"d":"66,-142v17,-28,33,-48,77,-38r-7,27v-73,-29,-88,88,-105,153r-26,0r30,-118v9,-36,10,-41,12,-63r25,1v0,18,-4,32,-6,38","w":122},{"d":"136,-256r26,0r19,256r-28,0r-5,-67r-92,0r-39,67r-30,0xm147,-92r-6,-131r-72,131r78,0xm178,-283v-23,0,-52,-37,-70,0r-14,-4v2,-4,16,-35,43,-35v29,0,53,29,69,-2r14,4v-1,4,-14,37,-42,37","w":212},{"d":"45,0r-19,0r-11,-93r56,-88r21,0r-52,90xm99,0r-20,0r-10,-93r56,-88r20,0r-51,90","w":140},{"d":"74,-249r28,0r-48,178r-22,0xm9,-14v-2,-26,43,-38,44,-7v2,24,-43,37,-44,7","w":95},{"d":"136,-256r26,0r19,256r-28,0r-5,-67r-92,0r-39,67r-30,0xm147,-92r-6,-131r-72,131r78,0","w":212},{"d":"-22,50v37,6,56,-25,70,-48r-17,-183r27,0r9,160r89,-160r28,0v-45,72,-95,179,-147,236v-9,9,-33,23,-66,21","w":164},{"d":"23,69r-28,0r48,-178r21,0xm88,-166v2,26,-43,37,-44,7v-3,-26,43,-38,44,-7","w":95},{"d":"334,-15v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16v9,0,17,6,17,16xm214,-15v0,9,-7,17,-17,17v-9,0,-17,-8,-17,-17v0,-10,7,-16,17,-16v9,0,17,6,17,16xm94,-15v0,9,-7,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16v10,0,17,6,17,16","w":360},{"d":"47,-91v63,-17,-26,-184,83,-176v-49,7,-33,79,-35,133v2,9,-11,46,-28,45v62,8,-9,170,63,177v-12,4,-26,3,-45,-12v-34,-40,13,-138,-38,-167","w":127},{"d":"118,-55r-21,0r0,-68r-69,0r0,-21r69,0r0,-69r21,0r0,69r68,0r0,21r-68,0r0,68xm186,0r-158,0r0,-21r158,0r0,21","w":180},{"d":"55,-254r32,0r31,100r81,-100r34,0r-106,124r47,130r-31,0r-35,-109r-89,109r-32,0r111,-132","w":202},{"d":"114,-88v-61,19,26,182,-82,176v70,-9,0,-156,63,-178v-63,-15,9,-160,-63,-179v18,2,26,0,45,16v22,29,10,69,13,112v-5,21,11,48,24,53","w":127},{"d":"136,-256r26,0r19,256r-28,0r-5,-67r-92,0r-39,67r-30,0xm147,-92r-6,-131r-72,131r78,0xm112,-327r37,0r34,47r-25,0","w":212},{"d":"136,-256r26,0r19,256r-28,0r-5,-67r-92,0r-39,67r-30,0xm147,-92r-6,-131r-72,131r78,0xm178,-307v-3,-25,40,-35,42,-7v3,24,-41,37,-42,7xm104,-307v2,-12,6,-24,24,-24v10,0,17,7,17,17v3,8,-15,29,-23,25v-7,0,-19,-8,-18,-18","w":212},{"d":"150,-181r35,0r-98,86r59,95r-34,0r-55,-96xm70,-256r25,0r-63,256r-26,0","w":170},{"d":"192,-254r148,0r-6,24r-105,0r-22,86r99,0r-6,25r-99,0r-24,94r113,0r-6,25r-141,0r18,-72r-86,0r-56,72r-32,0xm167,-96r35,-138r-107,138r72,0","w":322},{"d":"75,-153v-42,-31,-1,-104,51,-100v36,3,61,22,57,63r-25,0v4,-9,-4,-46,-33,-41v-16,-3,-43,16,-42,37v3,38,80,48,81,93v0,31,-38,56,-47,57v6,6,17,15,17,37v0,43,-34,72,-72,69v-50,-4,-58,-20,-59,-66r25,0v-2,28,12,43,36,43v11,7,46,-20,44,-42v-4,-48,-117,-61,-67,-127v10,-14,30,-21,34,-23xm103,-56v16,-5,51,-34,26,-58v-3,-3,-23,-16,-39,-27v-49,18,-39,56,-6,72","w":191},{"d":"138,-106v7,-24,10,-54,-24,-54v-44,0,-49,27,-58,61r-25,99r-26,0r64,-256r26,0r-24,96v16,-19,63,-43,92,-7v17,21,6,39,1,62r-26,105r-26,0","w":185},{"d":"149,-3v-60,22,-124,2,-124,-86v0,-37,11,-76,30,-108v32,-55,76,-62,102,-62v19,0,36,4,51,17v30,25,29,67,29,77v-3,68,-31,141,-88,162xm154,-234v-18,0,-44,6,-67,40v-19,29,-32,71,-32,106v0,53,28,68,53,68v75,0,111,-107,96,-174v-8,-36,-36,-40,-50,-40xm189,-325r49,0r-71,43r-27,0","w":241},{"d":"123,-248r26,0r-17,68r68,0r-6,23r-68,0r-51,208r-26,0r52,-208r-69,0r6,-23r69,0","w":191},{"d":"70,-229v-2,-24,39,-29,38,-7v-1,13,-4,23,-22,23v-14,0,-16,-11,-16,-16xm40,-236v1,27,-39,30,-38,7v1,-26,35,-30,38,-7","w":90},{"d":"237,-109v15,-38,-7,-60,-44,-47v-47,29,-39,102,-60,156r-26,0v10,-44,26,-90,32,-136v-4,-30,-35,-31,-60,-11v-35,45,-29,93,-48,147r-26,0v13,-60,36,-114,41,-181r25,1v1,10,0,15,-2,24v6,-8,22,-28,53,-28v21,0,38,12,45,31v15,-34,99,-50,102,9v-8,50,-24,96,-34,144r-26,0","w":282},{"d":"112,-51v0,-43,-72,-25,-77,-80v4,-30,19,-53,65,-54v11,-3,62,8,55,55r-25,0v4,-25,-15,-31,-32,-32v-27,0,-36,18,-36,29v0,39,75,25,78,79v2,44,-59,62,-72,58v-33,0,-63,-16,-59,-61r26,0v-1,24,5,39,35,39v31,0,42,-20,42,-33","w":164},{"d":"97,-181r20,0r10,94r-55,87r-22,0r52,-89xm44,-181r19,0r10,94r-55,87r-21,0r52,-89","w":140},{"d":"74,-254r30,0r66,217r53,-217r27,0r-64,254r-30,0r-66,-217r-53,217r-27,0xm192,-283v-23,0,-52,-37,-70,0r-14,-4v2,-4,16,-35,43,-35v29,0,53,29,69,-2r14,4v-1,4,-14,37,-42,37","w":240},{"d":"167,-255v56,0,128,37,128,129v0,15,-3,49,-29,81v-34,41,-80,46,-99,46v-77,-2,-129,-60,-128,-128v0,-42,18,-70,29,-83v13,-15,45,-45,99,-45xm167,-10v76,0,116,-54,116,-117v0,-46,-34,-121,-116,-117v-50,3,-117,33,-117,117v0,69,56,117,117,117xm169,-44v-44,1,-83,-40,-83,-83v0,-79,100,-116,151,-51r-16,14v-6,-8,-22,-27,-51,-27v-35,0,-60,19,-63,63v-4,63,90,82,114,37r15,13v-12,15,-27,33,-67,34","w":299},{"d":"220,-93r-63,0r-13,93r-21,0r12,-93r-36,0r-13,93r-21,0r13,-93r-61,0r0,-20r63,0r5,-35r-60,0r0,-20r63,0r11,-87r22,0r-12,87r36,0r12,-87r21,0r-11,87r60,0r0,20r-63,0r-5,35r61,0r0,20xm138,-113r5,-35r-36,0r-5,35r36,0","w":209},{"d":"149,-3v-60,22,-124,2,-124,-86v0,-37,11,-76,30,-108v32,-55,76,-62,102,-62v19,0,36,4,51,17v30,25,29,67,29,77v-3,68,-31,141,-88,162xm154,-234v-18,0,-44,6,-67,40v-19,29,-32,71,-32,106v0,53,28,68,53,68v75,0,111,-107,96,-174v-8,-36,-36,-40,-50,-40xm211,-289v-25,-4,-24,-40,6,-42v24,4,24,40,-6,42xm161,-314v0,13,-10,25,-24,25v-32,0,-16,-43,6,-42v10,0,18,7,18,17","w":241},{"d":"15,-65v3,-41,27,-124,96,-120v8,0,37,1,51,23v23,35,15,51,8,85v0,17,-47,103,-116,77v-38,-14,-39,-54,-39,-65xm148,-115v-2,-34,-9,-43,-37,-47v-33,-4,-73,57,-69,96v-2,9,8,53,39,47v43,0,69,-60,67,-96xm76,-258r33,0r25,49r-21,0","w":189},{"d":"46,-254r29,0r14,221r111,-221r30,0r-134,255r-29,0","w":195},{"d":"226,-168v-4,30,-14,33,-35,39v34,15,21,46,37,81r-27,0v-11,-23,-4,-85,-51,-74r-11,0r0,74r-23,0r0,-160v49,2,106,-12,110,40xm203,-166v0,-32,-32,-22,-64,-24r0,49v30,-1,64,7,64,-25xm167,-255v100,0,169,127,100,209v-35,41,-81,47,-100,47v-77,-2,-129,-60,-128,-128v0,-42,18,-70,29,-83v13,-15,45,-45,99,-45xm167,-10v62,0,122,-57,117,-117v-4,-49,-35,-120,-117,-117v-50,2,-117,33,-117,117v0,69,56,117,117,117","w":299},{"d":"110,-131v27,0,90,51,110,3r11,20v-40,54,-68,2,-121,2v-17,0,-24,12,-33,24r-12,-20v4,-6,19,-29,45,-29","w":262},{"d":"238,-185v50,0,68,51,55,98r-121,0v-9,34,14,77,38,68v36,-4,35,-13,50,-38r25,1v-11,27,-25,58,-77,60v-12,5,-57,-16,-59,-40v-8,11,-29,40,-70,40v-35,0,-65,-16,-65,-69v0,-47,24,-120,97,-120v38,0,49,21,58,41v8,-12,28,-41,69,-41xm148,-115v1,-11,-9,-51,-38,-47v-34,-5,-68,57,-68,96v0,22,14,49,39,47v51,-4,63,-59,67,-96xm178,-108r93,0v7,-33,-17,-59,-35,-54v-40,0,-56,49,-58,54","w":311},{"d":"111,-185v49,-3,66,41,55,98r-121,0v-10,39,13,73,37,68v23,5,52,-32,50,-38r26,1v-1,13,-33,63,-78,60v-37,-2,-65,-17,-65,-70v0,-49,19,-114,96,-119xm144,-108v2,-26,-1,-54,-35,-54v-40,0,-57,49,-59,54r94,0xm141,-257r41,0r-66,46r-22,0","w":183},{"d":"51,-181r27,0r-45,181r-27,0xm23,-258r32,0r26,49r-21,0","w":82},{"d":"55,-101v-14,47,-11,79,43,81v8,0,38,1,52,-21v38,-59,39,-142,62,-213r27,0v-19,67,-32,164,-59,218v-9,18,-35,41,-83,41v-61,0,-86,-44,-69,-112r37,-147r28,0","w":221},{"d":"48,-68r21,0r0,137r-21,0r0,-137xm48,-111r0,-137r21,0r0,137r-21,0","w":82},{"w":90},{"d":"28,-138r163,0r0,20r-163,0r0,-20"},{"d":"53,-19v0,21,-36,68,-46,72r-22,0v19,-16,35,-36,42,-52v-10,0,-20,-1,-20,-16v0,-13,13,-25,26,-25v6,0,20,3,20,21","w":95},{"d":"53,-19v0,21,-36,68,-46,72r-22,0v19,-16,35,-36,42,-52v-10,0,-20,-1,-20,-16v0,-13,13,-25,26,-25v6,0,20,3,20,21xm44,-158v-2,-26,43,-40,44,-8v3,25,-42,37,-44,8","w":95},{"d":"240,-135r-17,0r1,-102r-32,102r-15,0r-32,-102r2,102r-17,0r0,-119r24,0r31,98r31,-98r24,0r0,119xm82,-135r-17,0r0,-104r-39,0r0,-15r94,0r0,15r-38,0r0,104","w":247},{"d":"-22,50v37,6,56,-25,70,-48r-17,-183r27,0r9,160r89,-160r28,0v-45,72,-95,179,-147,236v-9,9,-33,23,-66,21xm134,-229v-2,-24,38,-29,38,-7v0,13,-4,23,-22,23v-14,0,-16,-11,-16,-16xm104,-236v1,27,-39,30,-38,7v1,-26,35,-30,38,-7","w":164},{"d":"57,4v-63,-2,-61,-73,-18,-95v23,-12,69,-21,94,-26v7,-19,8,-44,-27,-44v-30,0,-39,14,-44,27r-26,0v10,-26,24,-48,72,-50v14,-4,59,14,55,40v-8,59,-26,80,-29,144r-25,0v0,-6,0,-12,2,-24v-10,17,-45,31,-54,28xm86,-89v-12,4,-53,12,-50,45v0,10,5,25,28,25v51,0,54,-41,64,-79v-14,3,-28,5,-42,9xm71,-258r32,0r26,49r-21,0","w":178},{"d":"218,-185v42,-1,71,42,54,98r-120,0v-12,36,13,75,37,68v21,4,51,-32,49,-38r26,1v-7,27,-40,64,-76,60v-9,3,-53,-10,-58,-36v-14,16,-29,36,-71,36v-50,0,-77,-64,-22,-90v41,-19,58,-16,94,-22v7,-23,12,-57,-25,-53v-30,2,-36,9,-44,27r-26,0v10,-25,25,-49,72,-50v5,-2,50,5,50,27v9,-9,27,-28,60,-28xm126,-88v-36,11,-82,-1,-91,45v7,34,45,31,70,5v13,-14,16,-31,21,-50xm157,-108r93,0v8,-19,-8,-54,-35,-54v-40,0,-56,49,-58,54","w":290},{"d":"65,4v-92,0,-22,-126,-15,-185r25,0r-31,136v3,30,35,34,58,15v39,-32,35,-99,52,-151r26,0r-40,167v-1,4,-1,6,-1,14r-25,0v0,-6,-1,-12,2,-24v-10,13,-21,28,-51,28xm73,-258r33,0r25,49r-20,0","w":183},{"d":"49,-185v2,-43,32,-69,80,-69r79,0r0,16r-12,0r0,298r-16,0r0,-298r-57,0r0,298r-16,0r0,-179v-35,-2,-60,-34,-58,-66","w":240},{"d":"74,-144r100,0r-6,25r-99,0r-30,119r-28,0r63,-254r136,0r-7,24r-108,0","w":181},{"d":"77,-84v-28,0,-43,-20,-43,-43v0,-24,20,-43,44,-43v24,0,42,19,42,43v0,24,-19,43,-43,43","w":119},{"d":"75,-144r100,0r-6,25r-101,0r-23,94r114,0r-6,25r-142,0r63,-254r135,0r-6,24r-107,0xm163,-325r49,0r-70,43r-27,0","w":191},{"d":"36,-35v-48,-125,72,-287,181,-199r20,-20r23,0r-34,35v34,89,-18,222,-119,224v-34,0,-52,-15,-62,-26r-19,21r-24,0xm58,-60r138,-152v-6,-9,-18,-22,-43,-22v-37,0,-59,30,-65,39v-24,35,-40,88,-30,135xm108,-20v73,-5,108,-101,95,-174r-137,152v2,10,33,26,42,22","w":241},{"d":"57,4v-63,-2,-61,-73,-18,-95v23,-12,69,-21,94,-26v7,-19,8,-44,-27,-44v-30,0,-39,14,-44,27r-26,0v10,-26,24,-48,72,-50v14,-4,59,14,55,40v-8,59,-26,80,-29,144r-25,0v0,-6,0,-12,2,-24v-10,17,-45,31,-54,28xm86,-89v-12,4,-53,12,-50,45v0,10,5,25,28,25v51,0,54,-41,64,-79v-14,3,-28,5,-42,9xm179,-236v4,24,-40,30,-39,7v-3,-23,40,-28,39,-7xm72,-229v0,-23,36,-33,39,-7v1,28,-40,28,-39,7","w":178},{"d":"115,-195v0,-31,26,-47,43,-64r21,0v-11,10,-28,23,-38,44v4,-3,20,6,18,15v-3,27,-44,35,-44,5xm51,-196v1,-22,25,-51,42,-63r22,0v-22,20,-30,24,-38,44v14,-2,22,12,16,23v-7,13,-19,16,-24,16v-6,0,-18,-3,-18,-20","w":155},{"d":"36,-181r29,0r25,66r57,-66r31,0r-79,87r41,94r-30,0r-30,-75r-67,75r-32,0r90,-97","w":164},{"d":"69,90r-21,0r0,-359r21,0r0,359","w":82},{"d":"149,-3v-60,22,-124,2,-124,-86v0,-37,11,-76,30,-108v32,-55,76,-62,102,-62v19,0,36,4,51,17v30,25,29,67,29,77v-3,68,-31,141,-88,162xm154,-234v-18,0,-44,6,-67,40v-19,29,-32,71,-32,106v0,53,28,68,53,68v75,0,111,-107,96,-174v-8,-36,-36,-40,-50,-40xm164,-327r32,0r34,47r-25,0r-27,-30v-23,11,-34,34,-72,30","w":241},{"d":"75,-144r100,0r-6,25r-101,0r-23,94r114,0r-6,25r-142,0r63,-254r135,0r-6,24r-107,0xm102,-327r37,0r34,47r-25,0","w":191},{"d":"66,-213v-27,0,-50,-42,-65,1r-13,-4v6,-14,11,-32,40,-39v12,-2,28,20,42,21v8,0,16,-8,22,-22r14,4v0,1,-14,39,-40,39","w":90},{"d":"55,-101v-14,47,-11,79,43,81v8,0,38,1,52,-21v38,-59,39,-142,62,-213r27,0v-19,67,-32,164,-59,218v-9,18,-35,41,-83,41v-61,0,-86,-44,-69,-112r37,-147r28,0xm153,-327r32,0r35,47r-26,0r-26,-30v-23,11,-35,34,-73,30","w":221},{"d":"149,-3v-60,22,-124,2,-124,-86v0,-37,11,-76,30,-108v32,-55,76,-62,102,-62v19,0,36,4,51,17v30,25,29,67,29,77v-3,68,-31,141,-88,162xm154,-234v-18,0,-44,6,-67,40v-19,29,-32,71,-32,106v0,53,28,68,53,68v75,0,111,-107,96,-174v-8,-36,-36,-40,-50,-40xm193,-283v-23,0,-51,-37,-70,0r-14,-4v2,-4,16,-35,43,-35v29,0,53,29,69,-2r14,4v-2,4,-15,37,-42,37","w":241},{"d":"112,6r-82,-260r21,0r83,260r-22,0","w":127},{"d":"65,4v-92,0,-22,-126,-15,-185r25,0r-31,136v3,30,35,34,58,15v39,-32,35,-99,52,-151r26,0r-40,167v-1,4,-1,6,-1,14r-25,0v0,-6,-1,-12,2,-24v-10,13,-21,28,-51,28xm141,-257r41,0r-66,46r-22,0","w":183},{"d":"6,-14v1,-14,13,-24,25,-24v6,0,19,2,19,19v0,24,-27,50,-43,64r-22,0v11,-9,29,-24,39,-44v-9,2,-19,-5,-18,-15xm70,-14v0,-13,12,-25,25,-24v6,0,19,2,19,19v0,17,-14,40,-42,64r-22,0v18,-14,32,-28,38,-44v-9,1,-19,-6,-18,-15","w":155},{"d":"111,-185v49,-3,66,41,55,98r-121,0v-10,39,13,73,37,68v23,5,52,-32,50,-38r26,1v-1,13,-33,63,-78,60v-37,-2,-65,-17,-65,-70v0,-49,19,-114,96,-119xm144,-108v2,-26,-1,-54,-35,-54v-40,0,-57,49,-59,54r94,0xm143,-229v-2,-24,39,-29,38,-7v-1,13,-4,23,-22,23v-14,0,-16,-11,-16,-16xm113,-236v1,27,-39,30,-38,7v2,-24,36,-32,38,-7","w":183},{"d":"176,-115v1,59,-48,144,-123,115v-68,-26,-33,-111,-15,-141v7,-12,29,-44,73,-44v49,0,70,55,65,70xm81,-19v43,0,68,-60,67,-96v0,-37,-20,-47,-37,-47v-44,-1,-70,60,-69,96v1,24,8,47,39,47xm184,-236v4,25,-40,30,-38,7v-2,-22,36,-32,38,-7xm94,-213v-13,-1,-19,-14,-15,-24v2,-19,40,-16,37,1v1,10,-15,27,-22,23","w":189},{"d":"105,-239v0,21,-27,51,-43,63r-22,0v5,-3,32,-27,39,-44v-4,3,-22,-6,-18,-15v0,-13,12,-24,25,-24v6,0,19,3,19,20xm169,-239v0,29,-39,61,-42,63r-22,0v11,-10,28,-22,38,-44v-5,2,-18,-5,-18,-15v0,-25,44,-35,44,-4","w":155},{"d":"57,4v-63,-2,-61,-73,-18,-95v23,-12,69,-21,94,-26v7,-19,8,-44,-27,-44v-30,0,-39,14,-44,27r-26,0v10,-26,24,-48,72,-50v14,-4,59,14,55,40v-8,59,-26,80,-29,144r-25,0v0,-6,0,-12,2,-24v-10,17,-45,31,-54,28xm86,-89v-12,4,-53,12,-50,45v0,10,5,25,28,25v51,0,54,-41,64,-79v-14,3,-28,5,-42,9xm136,-213v-26,0,-49,-41,-64,1r-14,-4v7,-13,11,-33,41,-39v12,-2,28,20,42,21v8,0,15,-8,21,-22r14,4v0,1,-14,39,-40,39","w":178},{"d":"124,-58v0,9,-7,17,-16,17v-9,0,-17,-7,-17,-17v0,-9,8,-16,17,-16v9,0,16,7,16,16xm124,-151v0,9,-8,16,-17,16v-9,0,-16,-8,-16,-17v0,-9,7,-16,17,-16v9,0,16,8,16,17xm197,-94r-180,0r0,-21r180,0r0,21","w":180},{"d":"179,-185v30,0,37,18,43,34r6,-26r21,0v-8,35,-19,76,-22,115v0,1,-1,19,13,19v37,-2,62,-93,58,-109v0,-6,1,-23,-7,-39v-36,-69,-98,-55,-143,-37v-56,22,-90,84,-90,144v0,51,37,116,121,112v24,8,112,-32,122,-52r10,12v-33,27,-54,57,-131,57v-76,0,-138,-31,-138,-129v0,-20,4,-67,38,-110v16,-20,57,-62,128,-62v43,0,113,28,107,103v-4,55,-19,115,-82,127v-25,-3,-29,-14,-29,-33v-11,15,-20,33,-54,33v-76,0,-39,-127,-10,-144v6,-3,20,-15,39,-15xm181,-166v-37,7,-53,31,-53,81v0,44,31,49,58,28v26,-21,28,-61,28,-68v3,-27,-21,-43,-33,-41","w":322},{"d":"136,-256r26,0r19,256r-28,0r-5,-67r-92,0r-39,67r-30,0xm147,-92r-6,-131r-72,131r78,0xm149,-327r32,0r34,47r-25,0r-27,-30v-23,11,-34,34,-72,30","w":212},{"d":"172,-206v5,-32,-33,-41,-47,-8v-7,16,-23,57,-29,73r56,0r-5,22r-59,0v-1,7,-29,74,-46,97v11,-2,22,-4,46,-4v42,0,53,8,62,-30r24,0v-7,82,-97,49,-172,56v21,-24,57,-113,58,-119r-35,0r5,-22r39,0v21,-46,27,-114,87,-117v15,-1,47,13,41,52r-25,0"},{"d":"75,-144r100,0r-6,25r-101,0r-23,94r114,0r-6,25r-142,0r63,-254r135,0r-6,24r-107,0","w":191},{"d":"211,-194v-2,42,-27,73,-71,82r38,112r-32,0r-34,-109r-46,0r-27,109r-28,0r64,-254v32,1,80,-2,100,5v34,13,36,44,36,55xm170,-156v27,-37,10,-84,-52,-74r-22,0r-24,96v45,-3,61,11,98,-22","w":209},{"d":"113,-144v-24,0,-41,20,-47,27r-23,-3r48,-128r111,0r-9,25r-86,0r-27,70v7,-5,20,-15,42,-15v47,0,56,28,56,61v0,44,-24,109,-97,110v-8,0,-39,0,-53,-27v-9,-17,-8,-22,-6,-36r26,0v-5,26,28,44,36,39v10,0,27,-3,42,-21v20,-23,24,-53,24,-62v0,-11,-2,-40,-37,-40"},{"d":"39,0r-28,0r64,-254r28,0xm160,-313v3,26,-41,34,-42,7v-2,-23,41,-35,42,-7xm62,-288v-32,-6,-15,-44,7,-42v10,0,17,7,17,17v0,11,-5,23,-24,25","w":93},{"d":"122,-34v44,-34,24,-96,-33,-87r6,-23v7,0,23,3,41,-6v24,-12,29,-34,29,-44v0,-12,-7,-34,-37,-34v-36,0,-45,35,-48,44r-26,0v7,-27,24,-68,77,-68v34,0,64,22,62,55v4,30,-26,58,-52,66v17,6,32,17,32,49v0,43,-22,81,-90,85v-41,2,-73,-27,-66,-74r26,0v-2,54,42,65,79,37"},{"d":"5,-107r101,0r-5,21r-101,0","w":101},{"d":"72,-248r150,0r-5,22r-164,226r-32,0r164,-222r-118,0"},{"d":"149,-3v-60,22,-124,2,-124,-86v0,-37,11,-76,30,-108v32,-55,76,-62,102,-62v19,0,36,4,51,17v30,25,29,67,29,77v-3,68,-31,141,-88,162xm154,-234v-18,0,-44,6,-67,40v-19,29,-32,71,-32,106v0,53,28,68,53,68v75,0,111,-107,96,-174v-8,-36,-36,-40,-50,-40","w":241},{"d":"70,-256r27,0r-64,256r-27,0","w":82},{"d":"68,-154v12,-17,34,-30,58,-30v10,0,46,3,46,41v0,45,-23,99,-33,143r-26,0r26,-102v4,-17,6,-25,6,-34v-10,-42,-53,-24,-69,-5v-29,36,-30,92,-45,141r-25,0r29,-119v6,-20,12,-39,11,-62r25,1v0,5,1,13,-3,26xm141,-213v-27,0,-49,-42,-64,1r-14,-4v7,-13,10,-33,40,-39v12,-3,29,19,42,21v8,0,16,-8,22,-22r14,4v0,1,-14,39,-40,39","w":187},{"d":"65,4v-92,0,-22,-126,-15,-185r25,0r-31,136v3,30,35,34,58,15v39,-32,35,-99,52,-151r26,0r-40,167v-1,4,-1,6,-1,14r-25,0v0,-6,-1,-12,2,-24v-10,13,-21,28,-51,28xm143,-230v-2,-21,38,-31,38,-6v0,15,-4,23,-22,23v-14,0,-16,-12,-16,-17xm97,-251v27,0,19,36,-6,38v-14,0,-16,-11,-16,-16v0,-12,10,-22,22,-22","w":183},{"w":90},{"d":"197,-24r-180,-91r0,-25r180,-90r0,23r-156,80r156,79r0,24","w":180},{"d":"74,-254r30,0r66,217r53,-217r27,0r-64,254r-30,0r-66,-217r-53,217r-27,0","w":240},{"d":"10,47v0,-11,-10,-16,-25,-16r21,-31r19,0r-16,22v5,1,26,6,26,27v0,38,-49,40,-72,28r4,-15v11,9,50,0,43,-15","w":90},{"d":"41,-259r28,0r28,50r-22,0r-22,-32v-21,12,-30,36,-67,32","w":90},{"d":"51,-181r27,0r-45,181r-27,0xm91,-257r40,0r-65,46r-23,0","w":82},{"d":"9,-14v-2,-25,43,-38,43,-7v3,24,-42,37,-43,7","w":95},{"d":"55,-101v-14,47,-11,79,43,81v8,0,38,1,52,-21v38,-59,39,-142,62,-213r27,0v-19,67,-32,164,-59,218v-9,18,-35,41,-83,41v-61,0,-86,-44,-69,-112r37,-147r28,0xm178,-325r50,0r-71,43r-27,0","w":221},{"d":"64,-181r28,0v-20,69,-34,167,-63,223v-7,12,-34,34,-69,29r5,-23v9,0,31,1,42,-20v31,-61,36,-139,57,-209xm111,-243v3,22,-36,35,-38,9v-3,-22,36,-35,38,-9","w":95},{"d":"74,-254r28,0r-57,229r106,0r-7,25r-134,0","w":176},{"d":"116,-215r10,-44r18,4r-11,45r46,-3r1,18r-45,3r17,43r-18,6r-17,-42r-34,29r-12,-14r34,-29r-38,-24r10,-16","w":191},{"d":"81,-211v32,0,58,-24,60,-39r19,0r-62,250r-27,0r49,-196r-44,3"},{"d":"74,-254r42,0r16,225r126,-225r44,0r-63,254r-27,0r59,-231r-130,231r-31,0r-17,-231r-56,231r-27,0","w":292},{"d":"120,-138r71,0r0,20r-71,0r0,74r-21,0r0,-74r-71,0r0,-20r71,0r0,-73r21,0r0,73"},{"d":"112,-185v7,-3,43,8,48,19r15,-15r22,0r-28,28v38,80,-61,213,-139,134r-19,19r-22,0r33,-31v-10,-36,-11,-64,17,-110v23,-38,55,-44,73,-44xm141,-148v-49,-45,-110,38,-96,95xm50,-36v43,54,104,-28,100,-78v0,-9,-1,-16,-2,-19","w":189},{"d":"118,-248r25,0r-198,248r-24,0","w":45},{"d":"46,-254r31,0r28,123r89,-123r33,0r-114,147r-26,107r-28,0r27,-107xm184,-288v-8,-1,-19,-8,-18,-18v-2,-23,41,-35,42,-7v0,13,-10,25,-24,25xm110,-288v-32,-6,-15,-44,7,-42v10,0,17,7,17,17v0,11,-5,23,-24,25","w":189},{"d":"15,-65v3,-41,27,-124,96,-120v8,0,37,1,51,23v23,35,15,51,8,85v0,17,-47,103,-116,77v-38,-14,-39,-54,-39,-65xm148,-115v-2,-34,-9,-43,-37,-47v-33,-4,-73,57,-69,96v-2,9,8,53,39,47v43,0,69,-60,67,-96","w":189},{"d":"15,-65v3,-41,27,-124,96,-120v8,0,37,1,51,23v23,35,15,51,8,85v0,17,-47,103,-116,77v-38,-14,-39,-54,-39,-65xm148,-115v-2,-34,-9,-43,-37,-47v-33,-4,-73,57,-69,96v-2,9,8,53,39,47v43,0,69,-60,67,-96xm117,-259r28,0r28,50r-23,0r-21,-32v-21,12,-30,36,-67,32","w":189},{"d":"168,-198v1,-20,-30,-41,-58,-24v-22,14,-29,40,-30,46r-25,0v1,-5,3,-17,9,-30v19,-41,57,-46,72,-46v21,-5,81,27,56,73v-25,46,-100,110,-139,154r105,0r-6,25r-142,0v5,-33,33,-45,50,-66v30,-35,107,-95,108,-132"},{"d":"65,4v-92,0,-22,-126,-15,-185r25,0r-31,136v3,30,35,34,58,15v39,-32,35,-99,52,-151r26,0r-40,167v-1,4,-1,6,-1,14r-25,0v0,-6,-1,-12,2,-24v-10,13,-21,28,-51,28","w":183},{"d":"111,-185v49,-3,66,41,55,98r-121,0v-10,39,13,73,37,68v23,5,52,-32,50,-38r26,1v-1,13,-33,63,-78,60v-37,-2,-65,-17,-65,-70v0,-49,19,-114,96,-119xm144,-108v2,-26,-1,-54,-35,-54v-40,0,-57,49,-59,54r94,0xm114,-259r28,0r29,50r-23,0r-22,-32v-21,12,-30,36,-67,32","w":183},{"d":"17,-26v0,-107,56,-196,104,-229r22,0v-76,65,-125,196,-88,330r-18,0v-7,-18,-20,-52,-20,-101","w":106},{"d":"83,-181r44,0r-5,22r-43,0r-40,159r-26,0r39,-159r-25,0r6,-22r25,0v15,-36,5,-79,60,-79v15,0,27,5,32,7r-6,24v-35,-23,-57,9,-61,48xm160,-181r27,0r-45,181r-27,0xm168,-234v-1,-25,38,-32,38,-9v3,23,-36,35,-38,9","w":191},{"w":90},{"d":"84,-181r42,0r-5,22r-42,0r-30,124v1,21,28,16,42,9r-6,24v-20,10,-68,9,-64,-26v5,-40,23,-92,32,-131r-26,0r5,-22r27,0r13,-52r26,0","w":114},{"d":"131,-252v34,0,61,15,61,65v0,35,-16,66,-37,93v-15,20,-49,59,-100,99r-31,0v41,-35,73,-64,94,-94v-51,26,-96,-25,-74,-89v4,-14,27,-74,87,-74xm67,-146v0,31,8,38,35,42v46,-3,62,-48,62,-84v0,-22,-11,-40,-35,-40v-39,0,-62,50,-62,82"},{"d":"57,4v-63,-2,-61,-73,-18,-95v23,-12,69,-21,94,-26v7,-19,8,-44,-27,-44v-30,0,-39,14,-44,27r-26,0v10,-26,24,-48,72,-50v14,-4,59,14,55,40v-8,59,-26,80,-29,144r-25,0v0,-6,0,-12,2,-24v-10,17,-45,31,-54,28xm86,-89v-12,4,-53,12,-50,45v0,10,5,25,28,25v51,0,54,-41,64,-79v-14,3,-28,5,-42,9","w":178},{"d":"134,-216v-1,27,-25,53,-53,53v-30,0,-53,-24,-53,-53v0,-29,24,-53,53,-53v30,0,53,24,53,53xm80,-248v-17,0,-31,14,-31,32v0,17,15,31,32,31v18,0,31,-14,31,-31v0,-18,-14,-32,-32,-32","w":127},{"d":"15,-65v3,-41,27,-124,96,-120v8,0,37,1,51,23v23,35,15,51,8,85v0,17,-47,103,-116,77v-38,-14,-39,-54,-39,-65xm148,-115v-2,-34,-9,-43,-37,-47v-33,-4,-73,57,-69,96v-2,9,8,53,39,47v43,0,69,-60,67,-96xm142,-213v-27,0,-50,-42,-65,1r-13,-4v6,-14,11,-32,40,-39v12,-2,28,20,42,21v8,0,16,-8,22,-22r14,4v0,1,-14,39,-40,39","w":189},{"d":"71,-255v45,110,11,253,-84,330r-21,0v13,-12,36,-33,57,-71v50,-94,53,-153,31,-259r17,0","w":106},{"d":"49,-190v0,-42,33,-69,79,-69r5,-24r16,0r-5,25v23,2,61,23,54,69r-27,0v6,-22,-21,-50,-32,-45r-18,87v17,15,55,25,55,72v0,44,-42,82,-88,80r-6,27r-16,0r6,-28v-5,-1,-17,-2,-28,-9v-36,-24,-33,-44,-31,-73r28,0v-1,11,-2,21,1,31v8,21,29,25,35,26r22,-104v-29,-22,-50,-17,-50,-65xm105,-156r17,-79v-59,7,-52,64,-17,79xm93,-19v31,3,74,-45,43,-79v-7,-7,-14,-13,-22,-18"},{"d":"39,-248v-5,-7,10,-31,25,-19v7,6,6,12,6,15r-12,92r-7,0","w":74},{"d":"45,-158v-2,-25,41,-40,43,-8v3,25,-41,38,-43,8xm9,-14v0,-29,42,-37,43,-7v3,25,-42,36,-43,7","w":95},{"d":"33,-179v0,-38,26,-79,64,-77v15,1,37,9,37,45v0,32,-8,67,-61,77v-22,-3,-40,-11,-40,-45xm75,-153v26,-4,33,-22,37,-58v0,-4,1,-26,-19,-26v-21,-6,-43,49,-38,57v0,10,4,29,20,27xm217,-254r24,0r-201,254r-24,0xm128,-69v6,-48,94,-82,97,-6v0,10,-2,20,-3,23v-2,8,-16,54,-58,54v-5,0,-18,-1,-28,-11v-19,-21,-11,-41,-8,-60xm166,-17v23,-3,34,-22,37,-58v0,-3,1,-24,-19,-26v-25,-2,-40,47,-38,57v-1,3,3,30,20,27","w":237},{"d":"51,-194v1,-23,20,-46,42,-64r22,0v-11,8,-30,25,-38,44v9,-2,18,6,18,15v0,24,-45,35,-44,5","w":90},{"d":"85,3v-50,0,-64,-36,-64,-76v0,-19,4,-62,25,-108v5,-11,31,-73,89,-71v33,1,63,23,61,76v-3,69,-32,179,-111,179xm49,-72v-6,48,37,60,65,42v34,-33,53,-95,54,-155v0,-6,-1,-43,-35,-43v-63,0,-77,94,-84,156"},{"d":"136,-256r26,0r19,256r-28,0r-5,-67r-92,0r-39,67r-30,0xm147,-92r-6,-131r-72,131r78,0xm174,-325r49,0r-71,43r-27,0","w":212},{"d":"83,-181r44,0r-5,22r-43,0r-40,159r-26,0r39,-159r-25,0r6,-22r25,0v15,-36,5,-79,60,-79v15,0,27,5,32,7r-6,24v-35,-23,-57,9,-61,48","w":108},{"d":"83,-181r44,0r-5,22r-43,0r-40,159r-26,0r39,-159r-25,0r6,-22r25,0v15,-36,5,-79,60,-79v15,0,27,5,32,7r-6,24v-35,-23,-57,9,-61,48xm179,-256r27,0r-64,256r-28,0","w":191},{"d":"57,4v-63,-2,-61,-73,-18,-95v23,-12,69,-21,94,-26v7,-19,8,-44,-27,-44v-30,0,-39,14,-44,27r-26,0v10,-26,24,-48,72,-50v14,-4,59,14,55,40v-8,59,-26,80,-29,144r-25,0v0,-6,0,-12,2,-24v-10,17,-45,31,-54,28xm86,-89v-12,4,-53,12,-50,45v0,10,5,25,28,25v51,0,54,-41,64,-79v-14,3,-28,5,-42,9xm111,-259r28,0r29,50r-23,0r-22,-32v-21,12,-30,36,-67,32","w":178},{"d":"163,-40v5,25,38,25,37,-2v0,-2,0,-3,-1,-7v14,-5,12,9,14,23v-4,46,-46,37,-56,-1v-8,12,-31,34,-53,32v-27,-2,-35,-15,-43,-26v0,8,0,25,3,46v2,15,24,43,25,55v0,8,-6,14,-14,14v-24,0,-30,-49,-29,-77v0,-10,0,-35,4,-62v-5,-27,-6,-57,-7,-87v-1,-20,5,-33,17,-34v10,-1,17,23,14,25v-1,34,-7,64,-11,96v5,21,31,39,54,27v19,-10,25,-34,26,-39v6,-16,4,-64,6,-95v0,-2,2,-14,14,-14v13,0,17,12,17,33v0,9,0,57,-17,93","w":202},{"d":"48,-254r27,0r-8,223r105,-223r25,0r-4,223r99,-223r27,0r-118,255r-31,0r2,-205r-97,205r-32,0","w":282},{"d":"110,-185v28,1,60,19,53,63r-25,0v7,-18,-12,-41,-29,-40v-48,4,-67,60,-67,96v0,24,11,47,38,47v36,0,45,-34,48,-43r27,0v-10,30,-20,66,-75,66v-43,0,-65,-29,-65,-70v0,-56,37,-120,95,-119","w":176},{"d":"26,-61v0,-88,66,-131,136,-193r32,1v-42,33,-73,63,-95,94v37,-18,81,-1,80,55v-1,47,-33,108,-92,107v-34,-1,-61,-13,-61,-64xm89,-21v46,-2,62,-47,62,-82v0,-33,-21,-41,-35,-41v-37,-1,-64,50,-62,83v-6,9,16,47,35,40"},{"w":90},{"d":"60,-148v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-21,-8,-21,-20v0,-11,9,-21,21,-21","w":99},{"d":"47,-254r162,0r-7,24r-66,0r-58,230r-27,0r57,-230r-68,0","w":172},{"d":"28,-163r163,0r0,20r-163,0r0,-20xm28,-113r163,0r0,21r-163,0r0,-21"},{"d":"75,-145r116,0r27,-109r28,0r-64,254r-28,0r31,-121r-116,0r-30,121r-28,0r63,-254r28,0","w":236},{"d":"68,-257r41,0r-66,46r-22,0","w":90},{"d":"-8,27v0,-74,80,-55,86,-135r26,0v-5,47,-32,73,-63,97v-2,2,-19,17,-19,35v9,42,67,18,69,-15r25,1v-2,10,-5,17,-10,27v-18,32,-49,35,-61,35v-28,0,-53,-14,-53,-45xm121,-166v2,25,-43,39,-44,7v-2,-26,42,-38,44,-7","w":153},{"d":"144,-85r39,0r-6,24r-38,0r-16,62r-28,0r16,-62r-102,0r5,-21r138,-169r33,0xm118,-85r37,-139r-111,139r74,0"},{"d":"36,-181r125,0r-5,19r-130,140r103,0r-6,22r-134,0r5,-20r128,-138r-91,0","w":153},{"d":"57,4v-63,-2,-61,-73,-18,-95v23,-12,69,-21,94,-26v7,-19,8,-44,-27,-44v-30,0,-39,14,-44,27r-26,0v10,-26,24,-48,72,-50v14,-4,59,14,55,40v-8,59,-26,80,-29,144r-25,0v0,-6,0,-12,2,-24v-10,17,-45,31,-54,28xm86,-89v-12,4,-53,12,-50,45v0,10,5,25,28,25v51,0,54,-41,64,-79v-14,3,-28,5,-42,9xm139,-257r40,0r-66,46r-22,0","w":178},{"d":"53,-19v0,21,-36,68,-46,72r-22,0v19,-16,35,-36,42,-52v-10,0,-20,-1,-20,-16v0,-13,13,-25,26,-25v6,0,20,3,20,21","w":95},{"d":"90,-254r28,0r-50,203v-15,62,-23,80,-97,84r6,-24v52,-3,52,-20,64,-67","w":108},{"d":"201,74r-188,0r0,-21r188,0r0,21","w":180},{"d":"109,-162v-48,4,-67,60,-67,96v0,24,11,47,38,47v36,0,45,-34,48,-43r27,0v0,17,-32,69,-65,66r-13,18v5,1,26,6,26,27v-1,37,-49,41,-72,28r4,-15v11,9,49,0,42,-15v0,-18,-24,-16,-25,-16r19,-27v-34,-6,-56,-20,-56,-70v0,-57,38,-120,95,-119v35,1,57,19,53,63r-25,0v7,-18,-12,-41,-29,-40","w":176},{"d":"107,-248v-5,-6,10,-31,24,-19v7,6,7,12,7,15r-13,92r-7,0xm39,-248v-5,-7,10,-31,25,-19v7,6,6,12,6,15r-12,92r-7,0","w":142},{"d":"204,-202v5,16,-23,64,-57,68v16,0,50,29,37,68v-3,9,-9,33,-33,48v-41,26,-86,16,-141,18r64,-254v39,2,75,-6,106,8v24,11,24,36,24,44xm175,-200v0,-41,-44,-27,-80,-30r-20,84v52,7,100,-12,100,-54xm44,-24v56,3,104,2,113,-61v0,-5,-1,-22,-17,-31v-13,-7,-47,-6,-72,-6","w":206},{"d":"51,-181r27,0r-45,181r-27,0xm63,-259r28,0r29,50r-23,0r-21,-32v-22,11,-31,36,-68,32","w":82},{"d":"38,-107r133,0r-5,21r-133,0"},{"d":"63,-69v-47,-22,-32,-120,41,-115v7,0,17,1,31,7r57,0r-4,19r-39,0v27,43,-6,94,-66,94v-15,0,-50,24,-25,31v39,11,72,-2,81,50v-4,37,-25,60,-80,60v-50,0,-67,-6,-76,-50v0,-6,1,-19,13,-30v12,-10,30,-15,34,-16v-25,-17,-4,-43,33,-50xm122,-99v21,-19,16,-64,-19,-64v-26,0,-44,22,-44,47v9,42,38,40,63,17xm60,57v33,0,53,-14,53,-36v0,-24,-19,-27,-50,-28v-36,0,-55,13,-55,33v0,20,21,31,52,31","w":178},{"d":"136,-256r26,0r19,256r-28,0r-5,-67r-92,0r-39,67r-30,0xm147,-92r-6,-131r-72,131r78,0xm153,-345v19,0,35,17,35,36v0,19,-16,35,-35,35v-19,0,-35,-17,-35,-36v0,-19,16,-35,35,-35xm134,-309v0,12,5,15,19,18v10,0,19,-9,19,-19v0,-11,-9,-18,-19,-18v-10,0,-19,9,-19,19","w":212},{"d":"60,-254r153,0r-4,17r-178,212r135,0r-6,25r-170,0r6,-22r175,-208r-117,0","w":192},{"d":"-13,57r222,-311r29,0r-222,311r-29,0","w":219},{"d":"51,-181r27,0r-45,181r-27,0xm93,-229v-3,-23,38,-30,38,-7v0,13,-4,23,-22,23v-14,0,-16,-11,-16,-16xm63,-236v1,28,-39,29,-39,7v2,-25,36,-31,39,-7","w":82},{"d":"111,-185v49,-3,66,41,55,98r-121,0v-10,39,13,73,37,68v23,5,52,-32,50,-38r26,1v-1,13,-33,63,-78,60v-37,-2,-65,-17,-65,-70v0,-49,19,-114,96,-119xm144,-108v2,-26,-1,-54,-35,-54v-40,0,-57,49,-59,54r94,0","w":183},{"d":"25,-89v0,-82,37,-165,130,-170v12,0,56,1,69,44v3,11,4,20,4,31r-28,0v2,-18,-12,-53,-47,-50v-64,6,-96,81,-98,144v0,24,9,70,56,70v48,0,73,-54,75,-66r29,0v-6,47,-63,110,-139,86v-52,-17,-51,-76,-51,-89","w":232},{"d":"17,-24r0,-24r157,-79r-157,-80r0,-23r180,90r0,25","w":180},{"d":"85,4v-10,4,-44,-12,-48,-31v-1,5,-4,15,-10,27r-24,0v26,-81,43,-171,66,-256r26,0r-24,99v6,-8,22,-27,52,-27v39,0,54,28,54,63v0,46,-23,120,-92,125xm85,-19v46,-6,65,-58,65,-103v0,-31,-18,-39,-33,-39v-35,0,-67,59,-67,99v0,21,14,45,35,43","w":189},{"d":"148,-177v14,-22,14,-56,-22,-57v-28,0,-45,31,-55,71r-40,163r-26,0v20,-70,33,-168,62,-225v6,-12,25,-32,60,-32v29,0,60,21,57,50v-3,36,-31,65,-57,64v18,5,46,18,44,54v0,13,-4,25,-5,29v-4,13,-20,63,-73,63v-12,0,-23,-2,-33,-7r6,-24v4,2,13,7,26,7v38,-2,49,-38,52,-66v3,-32,-32,-47,-59,-45r5,-23v9,0,41,4,58,-22","w":189},{"d":"27,-181r26,0r10,158r80,-158r27,0r-99,183r-29,0","w":155},{"d":"57,4v-63,-2,-61,-73,-18,-95v23,-12,69,-21,94,-26v7,-19,8,-44,-27,-44v-30,0,-39,14,-44,27r-26,0v10,-26,24,-48,72,-50v14,-4,59,14,55,40v-8,59,-26,80,-29,144r-25,0v0,-6,0,-12,2,-24v-10,17,-45,31,-54,28xm86,-89v-12,4,-53,12,-50,45v0,10,5,25,28,25v51,0,54,-41,64,-79v-14,3,-28,5,-42,9xm120,-279v19,0,35,17,35,36v0,19,-16,35,-35,35v-19,0,-35,-17,-35,-36v0,-19,16,-35,35,-35xm120,-262v-10,0,-19,9,-19,19v0,10,9,18,19,18v10,0,19,-9,19,-19v0,-10,-9,-18,-19,-18","w":178},{"d":"46,-254r31,0r28,123r89,-123r33,0r-114,147r-26,107r-28,0r27,-107","w":189},{"d":"30,-181r27,0r0,150r76,-150r26,0r3,150r74,-150r27,0r-96,183r-27,0r-3,-147r-75,147r-28,0","w":245},{"d":"57,-209r-28,0r-29,-50r23,0r22,32v21,-12,30,-36,67,-32","w":90},{"d":"39,0r-28,0r64,-254r28,0","w":93},{"d":"154,-259v11,-6,68,18,70,43r10,-38r135,0r-6,24r-108,0r-21,86r101,0r-6,25r-101,0r-24,94r114,0r-6,25r-142,0r7,-24v-10,10,-32,29,-70,29v-28,0,-44,-10,-53,-18v-14,-12,-29,-34,-29,-76v0,-72,43,-170,129,-170xm188,-84v22,-50,41,-146,-34,-150v-67,-3,-100,95,-100,146v0,53,29,68,54,68v50,0,76,-56,80,-64","w":350},{"d":"0,-258r33,0r25,49r-21,0","w":90},{"d":"74,-254v51,2,95,-9,130,19v29,22,28,62,28,71v0,59,-29,132,-89,154v-41,15,-84,9,-133,10xm44,-25v100,8,152,-33,158,-138v0,-6,1,-22,-8,-38v-20,-36,-56,-27,-99,-29","w":236},{"d":"55,-101v-14,47,-11,79,43,81v8,0,38,1,52,-21v38,-59,39,-142,62,-213r27,0v-19,67,-32,164,-59,218v-9,18,-35,41,-83,41v-61,0,-86,-44,-69,-112r37,-147r28,0xm116,-327r38,0r34,47r-25,0","w":221},{"d":"167,-211v-3,45,-33,56,-59,76r32,72v8,-11,17,-25,23,-54r23,0v-10,43,-17,53,-36,76r19,41r-30,0r-9,-22v-16,13,-25,24,-60,24v-117,0,-50,-126,6,-144v-24,-45,-24,-106,45,-109v24,-2,48,15,46,40xm143,-208v2,-12,-12,-23,-24,-22v-37,4,-39,44,-19,75v18,-15,37,-17,43,-53xm85,-122v-24,16,-51,25,-52,66v-1,49,72,40,88,15","w":212},{"d":"68,-154v12,-17,34,-30,58,-30v10,0,46,3,46,41v0,45,-23,99,-33,143r-26,0r26,-102v4,-17,6,-25,6,-34v-10,-42,-53,-24,-69,-5v-29,36,-30,92,-45,141r-25,0r29,-119v6,-20,12,-39,11,-62r25,1v0,5,1,13,-3,26","w":187},{"d":"39,0r-28,0r64,-254r28,0xm114,-325r50,0r-71,43r-27,0","w":93},{"d":"51,-190v0,-50,40,-68,80,-69v8,0,50,0,64,32v8,19,6,24,5,38r-27,0v-1,-26,-5,-44,-43,-45v-24,-1,-53,15,-49,40v11,62,95,41,98,118v2,55,-48,93,-121,76v-45,-21,-45,-46,-42,-78r28,0v-13,27,14,58,49,58v35,0,68,-37,52,-67v-25,-46,-94,-33,-94,-103","w":202},{"d":"201,-254r34,0r-130,123r76,131r-36,0r-73,-133xm74,-254r28,0r-64,254r-27,0","w":217},{"w":90},{"d":"89,-197v-37,50,-64,179,28,177v18,0,39,-5,54,-14r17,-68r-49,0r6,-23r76,0r-27,106v-41,24,-140,57,-164,-32v-24,-90,23,-204,126,-208v11,0,55,1,69,43v4,11,4,20,4,32r-28,0v-2,-38,-13,-49,-47,-51v-17,0,-42,6,-65,38","w":236},{"d":"15,-65v3,-41,27,-124,96,-120v8,0,37,1,51,23v23,35,15,51,8,85v0,17,-47,103,-116,77v-38,-14,-39,-54,-39,-65xm148,-115v-2,-34,-9,-43,-37,-47v-33,-4,-73,57,-69,96v-2,9,8,53,39,47v43,0,69,-60,67,-96xm144,-257r41,0r-66,46r-23,0","w":189},{"d":"175,-51r-15,15r-53,-54r-53,54r-15,-15r53,-54r-53,-53r15,-15r53,53r53,-53r15,15r-53,53","w":180},{"d":"28,-138r163,0r0,20r-163,0r0,-20"},{"d":"75,-254r56,0r-5,21r-32,0r-72,286r33,0r-6,22r-57,0","w":106},{"d":"65,4v-92,0,-22,-126,-15,-185r25,0r-31,136v3,30,35,34,58,15v39,-32,35,-99,52,-151r26,0r-40,167v-1,4,-1,6,-1,14r-25,0v0,-6,-1,-12,2,-24v-10,13,-21,28,-51,28xm114,-259r28,0r29,50r-23,0r-22,-32v-21,12,-30,36,-67,32","w":183},{"d":"166,-207v-8,62,-85,67,-86,135r-26,0v8,-44,19,-68,54,-90v23,-15,45,-64,0,-64v-4,0,-15,0,-24,7v-12,9,-16,25,-17,29r-25,0v1,-4,4,-16,10,-28v18,-32,49,-34,61,-34v12,0,57,11,53,45xm37,-14v-2,-26,43,-37,44,-7v3,25,-42,36,-44,7","w":153}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+417-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("i(Yg_h@$vEfqiMA#mhn^)()fOo@gYhfqOoz^vE>FY:HS{!$73:ugW9;c@n83m1)]W1A3m1r]Y(@mv:ugW9;A%+;>O+D]W(@sO+D]W(@cO+D]W(@7O+D]W(W4O+D]W(@AO+D]W1Wu%n;3m1r]Y9zXO+D]W(ns3AugW9;sWgugW9;c{7n;5:ugW9;cW:ugWsr^@Fe3m1r]{sn{U:ugW9;sWnugW9;s@(e3m1r]{!Y3m1r]{1mGO+D]W(2!O+D^W9)]O+D]W(TC_O@3m1r]{hz3m1r]Y9n3m1r]{1XsO+D]W(2oO+D]W({^:AugW9;cYO83m1ru@1@3m1r]Y1A3m1r]YE@:O+D]W(To)nugWsru@nugWsru{1e3m1)uWsz3m1r]YhY3m1r]Y1;3m1r]Y1Y3m1r]YsA3m1r]{sY(O+D^W9)^O+D]W(W8O+D]W(2CO+D]W(D$O+D^W9ns5+u3m1r]Y9>3m1r]{!c3m1r^Y(@3m1r]Y(z3m1r]Y9:3OnugW9;h{:ugWsruY:ugW9;A{AugW9;h@AugWsruYnugW9;AWgugW9;h@$;3m1r]{!z3m1r]{1@nDs:3m1r]{o{![1mJ_nugW9;hW:ugW9;h{gugW9;cW9u%O+D]W()CO+D]WhWoO+D]W(:X[AugW9;X{EaWisn@igugW9;h%nugWsr$@nugW9T4%(f3m1r]Ys2^m:ugW9;A{|c3mEY7W9n3m1)]W!;$%En3m1r]{s;3m1r]YsDazM3,z:ugWsru%9;3m1r]{!nhO+:h{sr^O+D]W(D^O+D]Wozs:oWoO+D]W1X^O+D]W()4:9g)O+D]W()$O+D]W(zh@+a3m1r]Y1TS|Af3m1r]Y1m3)Xz3m1r]YE:3m1)]W1@FO+D]W(WgEA]*O+D]W(:hYDWb{AugW9;XYFY3m1r]Y1:YmgugW9zs@$A3m1ru@1z~>nugW9;X%|YqO+D]W(@XD$e3mEYhYh>+O+D]W({!O+D]W(24O+D^WsT^EgugW9;h{sH7[F@]_(A$iM)7i|uaJ1rS39g7[FrS_9g][huA_hm$vMuFJE)qY78F_+A]v+Wf54$#vE{G{78*v!$*O7~&%Fm4mg]qi1HGJ!aFvEmc34;*3F>3[hn$U(maYon!3(f^mn]q{ofeU(maYon!3(f^mn]q{4aHYoAF{O@]_4z$OM8!v4uFvEmc34;*3F>3[F@ai|2*v|8$YO@$i(u*{on$vEfq[hc*34>q{EgAi|Ah_4)Gr;M9Tn(+)zi[W@%J2>|1D:EO{Yv_3m5U~c7sXAhFGaBlSeq*]u^!$go4C8,#Hfb&%oXH_9SlioXaYgesEoAmO1g]EoAmU|XGi|r~")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":198,"face":{"font-family":"corporatesbq","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-79 -345 369 94","underline-thickness":"18","underline-position":"-36","slope":"-14","stemh":"23","stemv":"27","unicode-range":"U+0020-U+FB02"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * (c) COPYRIGHT H. BERTHOLD AG 1992 Alle Rechte vorbehalten.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"127,-259v35,-1,87,20,77,79r-45,0v6,-26,-26,-41,-34,-37v-29,-1,-57,28,-31,47v24,18,57,25,77,46v15,15,14,33,14,41v-3,47,-23,88,-94,88v-10,3,-73,-10,-78,-35v-7,-9,-13,-34,-8,-56r45,0v-1,8,-2,16,0,24v6,25,38,25,42,25v12,6,62,-23,39,-51v-32,-39,-98,-26,-95,-91v2,-43,25,-78,91,-80","w":198},{"d":"127,-254r48,0r21,254r-49,0r-3,-53r-82,0r-29,53r-52,0xm143,-93r-2,-116r-59,116r61,0xm152,-333r39,0r38,54r-38,0r-23,-27r-39,27r-43,0","w":219},{"d":"228,-121r-35,0r-44,-94r-46,94r-35,0r68,-133r27,0","w":262},{"d":"13,-70v0,-73,50,-138,140,-109v38,12,39,57,39,68v3,70,-71,152,-152,103v-24,-14,-27,-34,-27,-62xm144,-111v5,-5,-12,-44,-30,-38v-44,0,-54,51,-54,80v0,31,18,37,32,37v35,0,52,-51,52,-79xm200,-252v-9,33,-43,50,-71,32v-17,-11,-35,2,-38,9r-16,-5v16,-28,16,-34,43,-40v24,3,50,24,66,-1","w":202},{"d":"153,-217v-65,8,-100,93,-72,160v7,15,30,19,41,20v47,0,60,-47,63,-57r45,0v-14,51,-49,102,-100,98r-8,16v14,-1,41,26,25,53v-23,38,-59,27,-83,17r5,-22v23,14,51,1,49,-17v-1,-16,-16,-20,-31,-17r16,-30v-15,-2,-25,-6,-31,-9v-49,-24,-50,-77,-50,-92v0,-15,2,-51,23,-89v5,-24,73,-93,144,-69v52,18,51,58,51,83r-44,0v0,-20,-10,-49,-43,-45","w":236},{"d":"58,0r-48,0r63,-254r48,0xm133,-330r66,0r-91,50r-41,0","w":110},{"d":"82,-254r48,0r-56,222v-11,53,-39,88,-116,83r10,-41v62,6,58,-41,69,-86","w":118},{"d":"49,-183v0,-41,29,-71,79,-71r83,0r0,19r-12,0r0,295r-21,0r0,-295r-52,0r0,295r-21,0r0,-175v-33,-3,-56,-35,-56,-68","w":240},{"d":"73,-254r50,0r62,183r45,-183r45,0r-64,254r-46,0r-65,-183r-46,183r-44,0xm210,-284v-26,0,-59,-21,-74,2r-15,-5v11,-17,18,-39,45,-39v25,0,56,21,73,-2v6,3,21,3,13,11v-2,5,-15,33,-42,33","w":264},{"d":"120,-186v6,-2,46,6,55,18r16,-14r31,0r-34,31v17,60,9,116,-58,150v-14,7,-31,6,-37,6v-6,3,-50,-7,-59,-23r-20,18r-31,0r40,-36v-16,-62,8,-148,97,-150xm64,-72r76,-68v-39,-25,-76,17,-76,68xm96,-32v37,0,54,-39,52,-88r-80,72v5,8,10,16,28,16","w":202},{"d":"95,-153r100,0r-10,42r-100,0r-18,69r112,0r-10,42r-160,0r64,-254r153,0r-11,42r-105,0xm142,-333r39,0r38,54r-38,0r-23,-27r-40,27r-42,0","w":198},{"d":"84,-118v-12,48,-14,77,37,81v38,3,52,-32,59,-61r39,-156r47,0r-46,185v-14,47,-41,72,-102,74v-9,0,-57,0,-78,-35v-23,-39,-14,-43,-3,-88r34,-136r47,0xm89,-332r59,0r42,53r-38,0","w":253},{"d":"37,-10v-4,24,12,35,31,35v9,4,45,-15,31,-38v-14,-23,-89,-51,-78,-81v1,-28,27,-50,48,-60v-15,-5,-16,-50,-7,-62v9,-13,28,-38,68,-38v38,0,71,29,59,71r-36,0v2,-21,-7,-33,-26,-33v-9,-4,-39,14,-26,30v22,28,78,41,76,79v-1,34,-24,51,-48,63v13,10,23,41,8,68v-20,36,-58,39,-70,39v-37,2,-79,-25,-66,-74xm105,-61v9,-3,46,-33,22,-50v-9,-7,-24,-19,-35,-24v-17,7,-43,30,-19,52v5,4,18,13,32,22","w":191},{"d":"12,-71v4,-71,41,-113,102,-115v57,-2,82,48,65,107r-119,0v-3,24,5,47,34,47v24,0,33,-15,38,-23r39,4v-8,36,-67,73,-121,48v-36,-17,-38,-57,-38,-68xm68,-113r74,0v3,-25,-18,-43,-45,-34v-9,4,-21,13,-29,34","w":192},{"d":"22,-93v1,-73,42,-166,135,-166v52,0,90,23,92,98v0,19,-5,70,-38,117v-21,31,-114,84,-168,19v-21,-26,-21,-58,-21,-68xm201,-160v0,-21,-11,-59,-45,-57v-41,3,-85,51,-85,122v0,43,11,58,47,58v52,0,85,-78,83,-123xm203,-284v-25,0,-59,-22,-73,2r-16,-5v11,-17,18,-39,46,-39v25,0,56,21,73,-2r15,5v-4,13,-15,39,-45,39","w":251},{"d":"167,-255v56,0,128,37,128,129v0,15,-3,49,-29,81v-34,41,-80,46,-99,46v-77,-2,-129,-60,-128,-128v0,-42,18,-70,29,-83v13,-15,45,-45,99,-45xm167,-10v76,0,116,-54,116,-117v0,-46,-34,-121,-116,-117v-50,3,-117,33,-117,117v0,69,56,117,117,117xm238,-75v-60,71,-151,21,-154,-52v-3,-81,109,-115,154,-54r-21,19v-20,-34,-104,-34,-104,35v0,30,27,58,57,58v26,0,41,-17,47,-24","w":299},{"d":"228,-91r-211,0r0,-29r240,0r0,120r-29,0r0,-91","w":240},{"d":"131,-130v-2,-30,-57,-17,-59,1r-44,0v11,-28,30,-56,83,-56v113,0,36,110,38,185r-41,0v0,-12,1,-14,2,-21v-17,33,-105,33,-105,-23v0,-28,21,-42,29,-46v18,-10,48,-17,94,-26xm121,-86v-38,10,-59,5,-69,36v2,22,39,26,56,2v6,-7,8,-25,13,-38xm118,-262r38,0r30,56r-36,0r-16,-29r-34,29r-40,0","w":191},{"d":"49,-181r46,0r-45,181r-46,0xm113,-262r58,0r-84,56r-34,0","w":97},{"d":"53,-181r45,0r-44,178v-4,14,-17,56,-62,69v-21,5,-28,4,-42,4r10,-40v10,0,35,2,45,-26v19,-52,32,-128,48,-185xm60,-226v1,-18,25,-38,33,-34v6,0,21,4,21,23v0,16,-12,32,-30,32v-14,0,-27,-14,-24,-21","w":101},{"d":"139,-214v0,31,-29,58,-58,58v-32,0,-58,-26,-58,-58v0,-32,26,-58,58,-58v32,0,58,26,58,58xm81,-243v-16,0,-29,13,-29,28v0,16,13,29,29,29v16,0,28,-13,28,-29v0,-15,-12,-28,-28,-28","w":127},{"d":"62,-162v-57,-10,11,-88,19,-92r22,0v-18,19,-23,26,-30,43v10,1,20,9,20,20v0,17,-16,32,-31,29","w":77},{"d":"127,-254r48,0r21,254r-49,0r-3,-53r-82,0r-29,53r-52,0xm143,-93r-2,-116r-59,116r61,0xm188,-330r65,0r-91,50r-41,0","w":219},{"d":"67,0r-40,0r-15,-91r61,-92r40,0r-56,92xm139,0r-40,0r-15,-91r61,-92r40,0r-56,92","w":181},{"d":"63,-156v16,0,29,13,29,29v0,16,-14,29,-29,29v-16,0,-30,-13,-30,-29v0,-16,15,-29,30,-29","w":105},{"d":"120,-88v-61,23,11,131,-52,172v-9,3,-25,9,-41,4v16,0,39,-22,36,-60v-4,-51,-5,-114,32,-118v-66,-8,5,-169,-68,-177r0,-2v17,1,37,1,51,13v41,37,-13,138,42,168","w":127},{"d":"156,-259v8,-3,58,10,66,27r6,-22r153,0r-11,42r-105,0r-15,59r101,0r-11,42r-100,0r-17,69r111,0r-10,42r-159,0r5,-16v-49,39,-148,23,-148,-77v0,-14,1,-47,18,-83v22,-47,62,-83,116,-83xm201,-160v-2,-30,-11,-57,-45,-57v-45,0,-83,50,-85,123v-1,27,17,62,47,57v42,4,86,-75,83,-123","w":354},{"d":"63,-248r49,0r-46,164r-39,0xm2,-20v-3,-36,58,-52,61,-12v4,34,-58,53,-61,12","w":95},{"d":"128,-214v-23,0,-25,9,-35,32r-39,0v1,-5,5,-18,12,-31v20,-37,57,-41,70,-41v15,-4,70,17,65,59v5,14,-21,64,-49,66v10,6,30,19,30,50v0,64,-89,118,-154,58v-16,-24,-15,-33,-13,-54r42,0v-1,20,7,37,36,39v22,1,48,-33,42,-43v0,-20,-24,-35,-58,-31r10,-38v5,0,29,3,47,-7v17,-9,20,-26,20,-32v0,-15,-11,-27,-26,-27"},{"d":"22,-93v8,-99,55,-182,166,-163v41,7,52,43,56,57v17,47,-12,135,-28,148r31,51r-57,0r-7,-17v-51,39,-169,26,-161,-76xm201,-160v2,-38,-22,-57,-45,-57v-45,0,-83,50,-85,122v-1,19,10,63,47,58v44,-6,79,-52,83,-123","w":251},{"d":"181,-51r-20,21r-54,-55r-54,55r-21,-21r55,-54r-55,-54r21,-20r54,54r54,-54r20,20r-54,54","w":180},{"d":"229,-167v1,11,-12,36,-34,38v33,8,21,63,36,82r-33,-1v-13,-33,1,-81,-57,-72r0,73r-28,0r0,-162v52,2,109,-14,116,42xm200,-165v1,-24,-31,-24,-58,-21r0,43v27,-1,57,6,58,-22xm167,-255v100,0,169,127,100,209v-35,41,-81,47,-100,47v-77,-2,-129,-60,-128,-128v0,-42,18,-70,29,-83v13,-15,45,-45,99,-45xm167,-10v62,0,122,-57,117,-117v-4,-49,-35,-120,-117,-117v-50,2,-117,33,-117,117v0,69,56,117,117,117","w":299},{"d":"122,-58r-29,0r0,-65r-65,0r0,-29r65,0r0,-64r29,0r0,64r64,0r0,29r-64,0r0,65xm186,0r-158,0r0,-28r158,0r0,28","w":180},{"d":"127,-254r48,0r21,254r-49,0r-3,-53r-82,0r-29,53r-52,0xm143,-93r-2,-116r-59,116r61,0xm179,-306v0,-38,50,-44,56,-11v4,19,-25,38,-33,33v-13,0,-23,-8,-23,-22xm96,-307v-1,-31,52,-45,57,-10v2,40,-58,41,-57,10","w":219},{"d":"127,-254r48,0r21,254r-49,0r-3,-53r-82,0r-29,53r-52,0xm143,-93r-2,-116r-59,116r61,0xm72,-332r59,0r42,53r-38,0","w":219},{"d":"26,-181r47,0r7,137r65,-137r48,0r-98,182r-51,0","w":180},{"d":"105,-185v28,0,38,12,47,24r23,-95r46,0r-50,199v-7,30,-10,42,-11,57r-42,0v0,-3,1,-13,4,-22v-26,25,-41,34,-74,21v-36,-15,-37,-57,-37,-66v0,-45,22,-118,94,-118xm88,-35v40,-2,49,-50,49,-79v0,-26,-19,-31,-30,-31v-38,2,-48,44,-48,73v0,28,16,37,29,37","w":204},{"d":"24,-49v52,12,4,72,-20,92r-21,0v19,-19,24,-25,29,-44v-13,1,-19,-10,-19,-20v-2,-18,25,-31,31,-28xm77,-1v-28,-11,-7,-53,17,-48v51,10,2,77,-19,92r-22,0v5,-4,24,-26,29,-44r-5,0","w":146},{"d":"84,-144v13,-16,37,-51,78,-37r-12,48v-15,-10,-44,-20,-61,9v-27,45,-24,76,-39,124r-46,0r44,-181r43,1v-2,10,-1,17,-7,36","w":142},{"d":"215,-178v20,18,26,85,-1,112r28,27r-22,22r-27,-27v-9,6,-27,18,-56,18v-30,0,-47,-13,-56,-19r-27,28r-22,-22r27,-27v-18,-20,-27,-82,0,-112r-27,-27r22,-22r27,27v19,-19,85,-27,112,0r27,-27r22,22xm138,-55v38,0,66,-17,66,-67v0,-29,-19,-69,-67,-68v-37,1,-67,32,-67,68v0,38,30,67,68,67","w":240},{"d":"131,-130v-2,-30,-57,-17,-59,1r-44,0v11,-28,30,-56,83,-56v113,0,36,110,38,185r-41,0v0,-12,1,-14,2,-21v-17,33,-105,33,-105,-23v0,-28,21,-42,29,-46v18,-10,48,-17,94,-26xm121,-86v-38,10,-59,5,-69,36v2,22,39,26,56,2v6,-7,8,-25,13,-38xm159,-262r59,0r-84,56r-35,0","w":191},{"d":"35,-113r152,0r-9,34r-152,0"},{"d":"95,-153r100,0r-10,42r-100,0r-18,69r112,0r-10,42r-160,0r64,-254r153,0r-11,42r-105,0xm62,-332r59,0r42,53r-38,0","w":198},{"d":"47,-254r172,0r-13,42r-59,0r-53,212r-48,0r53,-212r-65,0","w":181},{"d":"84,-118v-12,48,-14,77,37,81v38,3,52,-32,59,-61r39,-156r47,0r-46,185v-14,47,-41,72,-102,74v-9,0,-57,0,-78,-35v-23,-39,-14,-43,-3,-88r34,-136r47,0xm169,-333r39,0r38,54r-38,0r-23,-27r-39,27r-43,0","w":253},{"d":"122,-21v-17,29,-108,43,-104,-26v3,-49,21,-90,30,-134r46,0r-28,121v2,24,28,32,46,16v34,-30,29,-91,46,-137r46,0v-11,56,-37,126,-41,181r-43,0v0,-4,1,-12,2,-21xm167,-262r59,0r-85,56r-34,0","w":206},{"d":"61,-26v-7,52,-36,81,-57,101r-23,0v20,-20,38,-45,45,-77v-12,4,-30,-15,-26,-22v0,-18,16,-32,33,-33v14,-1,30,16,28,31","w":95},{"d":"111,-248r37,0r-196,248r-37,0","w":45},{"d":"15,-11v0,-133,52,-199,96,-245r37,0v-65,82,-119,190,-85,332r-35,0v-8,-25,-13,-41,-13,-87","w":116},{"d":"27,-181r45,0r-1,140r68,-140r42,0r0,140r66,-140r47,0r-98,182r-50,0r-2,-122r-58,122r-53,0","w":273},{"w":97},{"d":"6,-113r97,0r-9,34r-96,0","w":95},{"d":"83,-262r58,0r-84,56r-34,0","w":97},{"d":"117,-183r40,0r15,92r-61,91r-40,0r56,-91xm45,-183r40,0r15,92r-60,91r-40,0r56,-91","w":181},{"d":"45,-230v-1,-32,53,-41,54,-6v0,23,-25,54,-42,69r-21,0v11,-11,22,-23,29,-44v-12,2,-20,-10,-20,-19","w":77},{"d":"38,-254r51,0r24,106r77,-106r57,0r-120,154r-24,100r-48,0r25,-100xm168,-306v-1,-32,53,-46,57,-11v2,20,-26,37,-33,33v-13,0,-24,-8,-24,-22xm86,-306v-2,-32,52,-46,56,-11v3,32,-53,49,-56,11","w":198},{"d":"61,-26v-7,52,-36,81,-57,101r-23,0v20,-20,38,-45,45,-77v-12,4,-30,-15,-26,-22v0,-18,16,-32,33,-33v14,-1,30,16,28,31","w":95},{"d":"51,-254r54,0r23,83r66,-83r57,0r-108,125r46,129r-53,0r-27,-92r-72,92r-56,0r113,-132","w":213},{"d":"48,53v-3,49,-59,54,-87,37r5,-22v2,1,14,6,25,6v20,0,24,-16,24,-23v0,-23,-19,-18,-32,-17r19,-34r27,0r-11,20v19,7,26,7,30,33","w":97},{"d":"95,-153r100,0r-10,42r-100,0r-18,69r112,0r-10,42r-160,0r64,-254r153,0r-11,42r-105,0","w":198},{"d":"12,-71v4,-71,41,-113,102,-115v57,-2,82,48,65,107r-119,0v-3,24,5,47,34,47v24,0,33,-15,38,-23r39,4v-8,36,-67,73,-121,48v-36,-17,-38,-57,-38,-68xm68,-113r74,0v3,-25,-18,-43,-45,-34v-9,4,-21,13,-29,34xm161,-262r58,0r-84,56r-35,0","w":192},{"d":"235,-106v-12,21,-60,41,-87,16v-11,-4,-18,-13,-38,-13v-14,0,-27,15,-34,25r-14,-26v4,-6,19,-31,47,-31v28,1,50,26,77,26v15,0,29,-13,35,-23","w":262},{"d":"127,-254r48,0r21,254r-49,0r-3,-53r-82,0r-29,53r-52,0xm143,-93r-2,-116r-59,116r61,0xm118,-315v0,-48,77,-50,76,0v0,21,-17,38,-38,38v-21,0,-38,-17,-38,-38xm156,-333v-10,0,-18,8,-18,18v0,10,9,19,19,19v10,0,18,-9,18,-19v0,-10,-9,-18,-19,-18","w":219},{"d":"12,-71v4,-71,41,-113,102,-115v57,-2,82,48,65,107r-119,0v-3,24,5,47,34,47v24,0,33,-15,38,-23r39,4v-8,36,-67,73,-121,48v-36,-17,-38,-57,-38,-68xm68,-113r74,0v3,-25,-18,-43,-45,-34v-9,4,-21,13,-29,34xm120,-262r37,0r30,56r-36,0r-16,-29r-34,29r-41,0","w":192},{"d":"246,-135r-21,0r2,-98r-30,98r-18,0r-31,-98r2,98r-20,0r0,-119r28,0r30,94r29,-94r29,0r0,119xm82,-135r-21,0r0,-102r-38,0r0,-17r97,0r0,17r-38,0r0,102","w":247},{"d":"59,-211v-28,-10,-7,-53,17,-48v52,10,2,77,-19,92r-22,0v12,-10,22,-22,30,-44r-6,0xm169,-236v0,32,-19,46,-42,69r-22,0v16,-13,25,-30,30,-44v-13,1,-20,-9,-20,-19v0,-36,54,-40,54,-6","w":146},{"d":"13,-70v0,-73,50,-138,140,-109v38,12,39,57,39,68v3,70,-71,152,-152,103v-24,-14,-27,-34,-27,-62xm144,-111v5,-5,-12,-44,-30,-38v-44,0,-54,51,-54,80v0,31,18,37,32,37v35,0,52,-51,52,-79xm70,-265r51,0r32,59r-32,0","w":202},{"d":"49,-181r46,0r-45,181r-46,0xm72,-262r37,0r30,56r-36,0r-16,-29r-34,29r-40,0","w":97},{"d":"175,-157v44,-50,139,-35,136,43v0,6,0,20,-5,35r-119,0v-3,24,5,47,34,47v24,0,33,-15,38,-23r39,4v-3,6,-13,30,-33,43v-35,21,-83,17,-110,-14v-7,14,-57,31,-67,27v-9,4,-60,-14,-63,-29v-39,-61,18,-168,89,-162v9,-4,57,14,61,29xm144,-111v5,-5,-12,-44,-30,-38v-43,0,-54,51,-54,80v0,31,18,37,32,37v35,0,52,-51,52,-79xm269,-113v2,-52,-57,-40,-71,-8r-3,8r74,0","w":320},{"d":"73,90r-29,0r0,-359r29,0r0,359","w":82},{"w":97},{"d":"49,-181r46,0r-45,181r-46,0xm149,-240v0,34,-50,41,-52,10v-2,-28,48,-41,52,-10xm22,-230v-5,-27,47,-41,51,-10v3,34,-49,41,-51,10","w":97},{"d":"126,-156r-8,0v-4,-33,-13,-65,-14,-100v4,-22,41,-16,37,7xm58,-156r-8,0v-4,-33,-13,-65,-14,-100v4,-22,41,-16,37,7","w":142},{"d":"30,-181r46,0r5,146r77,-146r48,0r-100,176v-22,45,-64,93,-136,81r11,-41v39,3,51,-5,64,-27","w":183},{"d":"59,-70v0,22,14,34,32,34v30,0,49,-33,49,-59v0,-19,-11,-35,-32,-35v-21,0,-34,16,-38,20r-38,-6r57,-132r121,0r-13,42r-85,0r-21,49v36,-23,100,-10,96,55v-3,57,-44,109,-100,106v-19,4,-83,-21,-71,-75"},{"d":"95,-153r100,0r-10,42r-100,0r-18,69r112,0r-10,42r-160,0r64,-254r153,0r-11,42r-105,0xm168,-306v-1,-32,53,-46,57,-11v2,20,-26,37,-33,33v-13,0,-24,-8,-24,-22xm86,-306v-2,-32,52,-46,56,-11v3,32,-53,49,-56,11","w":198},{"d":"146,-76v11,-10,18,-34,21,-51r35,0v-5,34,-28,74,-41,84r22,43r-46,0r-8,-17v-30,32,-127,32,-127,-40v0,-52,35,-64,66,-86v-35,-44,2,-107,54,-107v29,0,52,16,52,47v0,45,-30,55,-57,73xm105,-161v19,-9,31,-28,31,-39v0,-9,-8,-16,-17,-16v-27,1,-29,37,-14,55xm115,-46r-31,-63v-18,9,-40,24,-40,47v0,37,59,32,71,16","w":212},{"d":"49,-181r46,0r-45,181r-46,0xm18,-265r51,0r31,59r-32,0","w":97},{"d":"12,-71v4,-71,41,-113,102,-115v57,-2,82,48,65,107r-119,0v-3,24,5,47,34,47v24,0,33,-15,38,-23r39,4v-8,36,-67,73,-121,48v-36,-17,-38,-57,-38,-68xm68,-113r74,0v3,-25,-18,-43,-45,-34v-9,4,-21,13,-29,34xm197,-240v0,34,-50,41,-52,10v-2,-28,48,-41,52,-10xm70,-230v-5,-27,46,-41,51,-10v3,34,-49,42,-51,10","w":192},{"d":"115,-248r42,0r-17,70r54,0r-9,36r-54,0r-48,192r-42,0r48,-192r-56,0r9,-36r56,0","w":191},{"d":"42,-91v42,-14,20,-74,25,-119v0,-8,0,-44,32,-55v7,-2,23,-7,35,-2v-76,4,0,166,-67,177v63,6,-4,175,67,178r0,2v-17,-1,-37,0,-50,-13v-29,-28,-13,-70,-17,-119v4,-6,-7,-42,-25,-49","w":127},{"d":"73,-254r50,0r62,183r45,-183r45,0r-64,254r-46,0r-65,-183r-46,183r-44,0","w":264},{"d":"84,-118v-12,48,-14,77,37,81v38,3,52,-32,59,-61r39,-156r47,0r-46,185v-14,47,-41,72,-102,74v-9,0,-57,0,-78,-35v-23,-39,-14,-43,-3,-88r34,-136r47,0","w":253},{"d":"128,-52v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20v0,-12,9,-21,20,-21v12,0,21,9,21,21xm128,-156v0,11,-9,20,-21,20v-12,0,-20,-9,-20,-21v0,-12,9,-20,21,-20v11,0,20,9,20,21xm197,-90r-180,0r0,-29r180,0r0,29","w":180},{"d":"108,-162v11,4,51,-7,48,-36v-2,-26,-34,-33,-51,-8v-24,58,-36,141,-55,206r-46,0v22,-75,28,-159,63,-225v13,-25,43,-33,70,-33v14,-3,69,15,66,55v-2,28,-20,55,-49,60v72,28,32,150,-40,146v-13,0,-24,-3,-36,-8r11,-41v32,22,74,-21,50,-61v-9,-13,-27,-14,-41,-14"},{"d":"28,-129v7,-49,101,-77,133,-36v36,-39,126,-21,126,50v0,17,-3,30,-5,36r-119,0v-2,24,4,47,34,47v24,0,33,-15,38,-23r39,4v-10,27,-35,53,-80,56v-29,2,-58,-21,-62,-31v-23,26,-78,48,-119,8v-32,-62,37,-90,114,-95v2,-5,3,-9,4,-18v0,-18,-25,-17,-26,-17v-5,-2,-30,6,-33,19r-44,0xm53,-57v-6,21,20,32,41,20v17,-10,21,-25,25,-44v-5,1,-66,8,-66,24xm244,-113v-1,-21,-1,-36,-29,-36v-30,0,-42,30,-44,36r73,0","w":296},{"d":"58,0r-48,0r63,-254r48,0xm124,-306v-1,-32,53,-46,57,-11v2,20,-26,37,-33,33v-13,0,-24,-8,-24,-22xm41,-306v-1,-30,52,-48,57,-11v3,33,-53,48,-57,11","w":110},{"d":"34,66r-49,0r46,-164r39,0xm95,-162v3,34,-57,54,-60,12v-4,-34,57,-53,60,-12","w":95},{"d":"58,0r-48,0r63,-254r48,0xm98,-333r38,0r39,54r-38,0r-23,-27r-39,27r-43,0","w":110},{"d":"12,-71v4,-71,41,-113,102,-115v57,-2,82,48,65,107r-119,0v-3,24,5,47,34,47v24,0,33,-15,38,-23r39,4v-8,36,-67,73,-121,48v-36,-17,-38,-57,-38,-68xm68,-113r74,0v3,-25,-18,-43,-45,-34v-9,4,-21,13,-29,34xm66,-265r51,0r31,59r-32,0","w":192},{"d":"182,-132v0,10,-5,70,-17,93v0,1,6,18,19,18v15,0,16,-16,14,-29r11,-1v5,23,14,46,-20,55v-22,-1,-27,-19,-32,-30v-31,43,-69,39,-94,8v-4,11,4,65,20,80v9,10,10,32,-8,32v-57,-19,-13,-127,-33,-198v2,-29,-8,-58,18,-63v8,1,17,11,16,26r-11,96v6,18,17,30,36,30v49,0,45,-84,45,-115v0,-23,-3,-36,17,-37v15,-1,19,14,19,35","w":202},{"d":"118,-240v4,34,-50,41,-51,10v-2,-27,47,-41,51,-10xm-8,-230v-5,-27,47,-40,52,-10v1,33,-50,42,-52,10","w":97},{"d":"30,-127v0,-26,25,-47,48,-47v26,0,46,21,46,47v0,30,-9,47,-46,47v-26,0,-48,-20,-48,-47","w":119},{"d":"141,-185v29,0,42,8,48,46v-7,57,-21,89,-31,139r-46,0r28,-121v-6,-30,-25,-27,-44,-16v-32,33,-30,90,-46,137r-45,0v13,-61,32,-115,40,-181r44,1v0,6,0,12,-3,25v5,-7,24,-30,55,-30xm201,-252v-10,33,-43,50,-71,32v-17,-11,-35,2,-38,9r-16,-5v16,-28,16,-34,43,-40v24,3,49,24,66,-1","w":204},{"d":"44,-68r29,0r0,137r-29,0r0,-137xm44,-111r0,-137r29,0r0,137r-29,0","w":82},{"d":"22,-93v1,-73,42,-166,135,-166v52,0,90,23,92,98v0,19,-5,70,-38,117v-21,31,-114,84,-168,19v-21,-26,-21,-58,-21,-68xm201,-160v0,-21,-11,-59,-45,-57v-41,3,-85,51,-85,122v0,43,11,58,47,58v52,0,85,-78,83,-123xm164,-333r39,0r39,54r-39,0r-23,-27r-39,27r-43,0","w":251},{"d":"122,-21v-17,29,-108,43,-104,-26v3,-49,21,-90,30,-134r46,0r-28,121v2,24,28,32,46,16v34,-30,29,-91,46,-137r46,0v-11,56,-37,126,-41,181r-43,0v0,-4,1,-12,2,-21xm72,-265r51,0r31,59r-31,0","w":206},{"w":97},{"d":"177,-204v0,58,-84,75,-79,121r-43,0v7,-49,29,-63,59,-87v14,-11,20,-42,-6,-42v-17,0,-29,17,-31,31r-36,0v7,-42,34,-74,77,-72v27,1,59,6,59,49xm36,-20v2,-23,9,-29,35,-36v15,0,25,9,25,24v0,22,-17,34,-35,36v-8,0,-27,-7,-25,-24","w":151},{"d":"58,0r-48,0r63,-254r48,0xm17,-332r60,0r41,53r-37,0","w":110},{"d":"95,-153r100,0r-10,42r-100,0r-18,69r112,0r-10,42r-160,0r64,-254r153,0r-11,42r-105,0xm177,-330r66,0r-91,50r-41,0","w":198},{"d":"34,-115v0,-55,58,-88,114,-62r66,0r-8,33r-38,0v11,31,9,41,-18,68v-25,25,-69,0,-83,26v10,15,48,9,67,18v24,11,27,30,27,40v0,52,-29,68,-94,68v-55,0,-87,-19,-87,-49v0,-24,27,-43,47,-45v-33,-22,10,-49,32,-51v-9,-6,-25,-18,-25,-46xm102,-95v18,1,35,-17,32,-34v-7,-35,-63,-23,-61,10v0,10,6,24,29,24xm20,21v2,32,101,26,95,-4v-3,-28,-90,-30,-95,4","w":196},{"d":"13,-70v0,-73,50,-138,140,-109v38,12,39,57,39,68v3,70,-71,152,-152,103v-24,-14,-27,-34,-27,-62xm144,-111v5,-5,-12,-44,-30,-38v-44,0,-54,51,-54,80v0,31,18,37,32,37v35,0,52,-51,52,-79xm201,-240v0,36,-50,41,-51,10v-2,-27,48,-41,51,-10xm126,-240v0,37,-49,41,-51,10v-2,-27,47,-41,51,-10","w":202},{"d":"179,-192v3,-32,-37,-33,-48,-6v-3,8,-12,26,-20,48r57,0r-7,34r-63,0v-9,29,-25,57,-43,79v39,-19,98,18,101,-37r37,0v-3,15,-16,67,-48,71v-41,5,-109,1,-157,3v23,-26,43,-60,62,-116r-29,0r7,-34r36,0v14,-37,24,-59,34,-73v8,-12,27,-35,65,-35v36,0,60,21,55,66r-39,0"},{"d":"84,-118v-12,48,-14,77,37,81v38,3,52,-32,59,-61r39,-156r47,0r-46,185v-14,47,-41,72,-102,74v-9,0,-57,0,-78,-35v-23,-39,-14,-43,-3,-88r34,-136r47,0xm204,-330r66,0r-91,50r-41,0","w":253},{"d":"35,-150v-4,-34,58,-53,60,-12v4,34,-57,53,-60,12xm27,4v-8,0,-26,-8,-24,-24v-4,-34,60,-53,60,-12v0,19,-17,36,-36,36","w":95},{"d":"68,-178r7,-26v6,0,25,-1,42,-12v16,-10,23,-27,26,-33r32,0r-62,249r-46,0r44,-181"},{"d":"22,-93v1,-73,42,-166,135,-166v52,0,90,23,92,98v0,19,-5,70,-38,117v-21,31,-114,84,-168,19v-21,-26,-21,-58,-21,-68xm201,-160v0,-21,-11,-59,-45,-57v-41,3,-85,51,-85,122v0,43,11,58,47,58v52,0,85,-78,83,-123xm88,-332r59,0r42,53r-38,0","w":251},{"d":"201,78r-188,0r0,-29r188,0r0,29","w":180},{"d":"50,74r-76,0r9,-34r38,0r65,-260r-39,0r9,-34r76,0","w":116},{"d":"91,-161v12,-12,21,-24,52,-24v89,0,27,126,18,185r-46,0v9,-40,23,-76,28,-120v-7,-31,-26,-28,-47,-17v-31,33,-29,91,-45,137r-46,0r64,-256r45,0"},{"d":"160,-94r43,0r-9,40r-42,0r-14,54r-48,0r14,-54r-102,0r10,-38r132,-160r56,0xm116,-94r29,-115r-89,115r60,0"},{"d":"90,4v-37,-1,-74,-26,-71,-84v4,-72,34,-174,119,-174v59,0,70,25,70,84v0,72,-38,176,-118,174xm94,-36v54,-11,67,-87,67,-139v0,-17,-3,-37,-24,-39v-16,-1,-27,10,-30,13v-24,27,-40,89,-40,124v-1,28,8,39,27,41"},{"d":"73,-254r48,0r-53,212r107,0r-10,42r-156,0","w":189},{"d":"46,71v-32,0,-68,-21,-56,-67v10,-37,71,-52,77,-103r41,0v0,59,-58,66,-71,113v10,33,49,9,50,-15r36,0v-5,40,-36,72,-77,72xm68,-151v2,-19,17,-35,35,-35v6,0,26,3,26,24v0,19,-18,34,-36,36v-14,2,-29,-19,-25,-25","w":151},{"d":"58,-156r-8,0v-4,-33,-13,-65,-14,-100v4,-22,41,-16,37,7","w":74},{"d":"22,-93v1,-73,42,-166,135,-166v52,0,90,23,92,98v0,19,-5,70,-38,117v-21,31,-114,84,-168,19v-21,-26,-21,-58,-21,-68xm201,-160v0,-21,-11,-59,-45,-57v-41,3,-85,51,-85,122v0,43,11,58,47,58v52,0,85,-78,83,-123","w":251},{"d":"122,-21v-17,29,-108,43,-104,-26v3,-49,21,-90,30,-134r46,0r-28,121v2,24,28,32,46,16v34,-30,29,-91,46,-137r46,0v-11,56,-37,126,-41,181r-43,0v0,-4,1,-12,2,-21xm126,-262r37,0r30,56r-36,0r-16,-29r-33,29r-41,0","w":206},{"d":"132,-214v-30,5,-32,15,-40,36r-39,-1v11,-66,61,-75,86,-75v35,0,67,17,67,57v0,66,-89,113,-130,153r96,0r-11,44r-156,0r10,-39r109,-97v13,-15,33,-29,34,-53v0,-15,-7,-24,-26,-25"},{"d":"38,-254r51,0r24,106r77,-106r57,0r-120,154r-24,100r-48,0r25,-100","w":198},{"d":"73,-254r67,0r13,205r115,-205r69,0r-64,254r-42,0r51,-202r-114,202r-51,0r-14,-202r-51,202r-42,0","w":326},{"d":"131,-130v-2,-30,-57,-17,-59,1r-44,0v11,-28,30,-56,83,-56v113,0,36,110,38,185r-41,0v0,-12,1,-14,2,-21v-17,33,-105,33,-105,-23v0,-28,21,-42,29,-46v18,-10,48,-17,94,-26xm121,-86v-38,10,-59,5,-69,36v2,22,39,26,56,2v6,-7,8,-25,13,-38xm194,-252v-11,43,-54,44,-88,27v-12,0,-19,13,-20,14r-16,-5v15,-28,15,-34,42,-40v23,2,50,24,66,-1","w":191},{"d":"13,-70v0,-73,50,-138,140,-109v38,12,39,57,39,68v3,70,-71,152,-152,103v-24,-14,-27,-34,-27,-62xm144,-111v5,-5,-12,-44,-30,-38v-44,0,-54,51,-54,80v0,31,18,37,32,37v35,0,52,-51,52,-79","w":202},{"d":"23,-145r182,0r0,36r-182,0r0,-36"},{"d":"179,-186v10,-1,37,10,41,30r6,-22r24,0v-7,36,-19,76,-22,115v0,11,5,16,11,16v36,0,57,-85,55,-105v0,-6,0,-22,-7,-38v-20,-44,-68,-47,-81,-47v-19,0,-58,2,-92,36v-44,43,-74,96,-43,164v41,90,161,76,229,9r12,15v-22,25,-83,62,-132,58v-76,-7,-138,-32,-138,-130v0,-71,46,-170,166,-171v53,-1,121,40,105,125v-4,22,-24,106,-82,106v-24,0,-27,-12,-29,-31v-10,12,-21,30,-52,30v-28,0,-46,-17,-47,-58v-1,-45,27,-98,76,-102xm160,-49v53,0,74,-114,21,-114v-40,0,-50,47,-50,78v0,28,16,36,29,36","w":322},{"w":97},{"d":"220,-199v0,46,-30,58,-55,66v12,4,40,14,40,51v0,46,-34,66,-55,74v-27,11,-95,7,-140,8r63,-254r87,1v13,1,60,4,60,54xm172,-190v1,-25,-31,-27,-62,-25r-16,63v39,2,76,0,78,-38xm156,-85v-1,-34,-35,-27,-71,-28r-19,73v48,3,90,-1,90,-45","w":225},{"d":"23,-177r182,0r0,36r-182,0r0,-36xm23,-113r182,0r0,36r-182,0r0,-36"},{"d":"13,-70v0,-73,50,-138,140,-109v38,12,39,57,39,68v3,70,-71,152,-152,103v-24,-14,-27,-34,-27,-62xm144,-111v5,-5,-12,-44,-30,-38v-44,0,-54,51,-54,80v0,31,18,37,32,37v35,0,52,-51,52,-79xm120,-262r37,0r31,56r-36,0r-17,-29r-33,29r-40,0","w":202},{"d":"131,-130v-2,-30,-57,-17,-59,1r-44,0v11,-28,30,-56,83,-56v113,0,36,110,38,185r-41,0v0,-12,1,-14,2,-21v-17,33,-105,33,-105,-23v0,-28,21,-42,29,-46v18,-10,48,-17,94,-26xm121,-86v-38,10,-59,5,-69,36v2,22,39,26,56,2v6,-7,8,-25,13,-38xm89,-256v13,-37,75,-28,73,13v0,21,-17,39,-38,39v-25,1,-44,-27,-35,-52xm124,-261v-10,0,-19,9,-19,19v0,10,9,18,19,18v10,0,19,-9,19,-19v0,-10,-9,-18,-19,-18","w":191},{"d":"23,-145r182,0r0,36r-182,0r0,-36"},{"d":"117,-252v-11,43,-53,44,-88,27v-12,0,-19,13,-20,14r-16,-5v16,-28,16,-34,43,-40v24,3,49,24,66,-1","w":97},{"d":"122,-21v-17,29,-108,43,-104,-26v3,-49,21,-90,30,-134r46,0r-28,121v2,24,28,32,46,16v34,-30,29,-91,46,-137r46,0v-11,56,-37,126,-41,181r-43,0v0,-4,1,-12,2,-21","w":206},{"d":"36,-181r134,0r-8,35r-109,107r88,0r-9,39r-145,0r9,-36r108,-106r-77,0","w":161},{"d":"141,-185v29,0,42,8,48,46v-7,57,-21,89,-31,139r-46,0r28,-121v-6,-30,-25,-27,-44,-16v-32,33,-30,90,-46,137r-45,0v13,-61,32,-115,40,-181r44,1v0,6,0,12,-3,25v5,-7,24,-30,55,-30","w":204},{"d":"98,-179r41,0r-9,36r-41,0r-36,143r-46,0r36,-143r-24,0r9,-36r24,0v10,-41,19,-83,71,-83v23,0,30,6,42,11r-10,38v-4,-2,-30,-15,-41,-5v-10,9,-14,25,-16,39xm192,-256r45,0r-63,256r-46,0","w":221},{"d":"77,-248r163,0r-8,36r-154,212r-52,0r149,-203r-108,0"},{"d":"60,4v-83,0,-20,-98,-14,-147r-28,0r10,-36r28,0r15,-55r44,0r-14,55r35,0r-9,36r-36,0r-24,93v2,16,23,16,42,6r-10,39v-5,2,-21,9,-39,9","w":125},{"d":"107,-185v13,0,41,11,47,28r10,-24r39,1r-64,254r-46,0r23,-93v-6,7,-20,23,-47,23v-38,0,-58,-18,-58,-68v0,-53,34,-121,96,-121xm127,-72v11,-20,18,-74,-19,-73v-35,0,-51,53,-50,79v1,17,9,31,27,31v27,0,41,-34,42,-37","w":204},{"d":"131,-130v-2,-30,-57,-17,-59,1r-44,0v11,-28,30,-56,83,-56v113,0,36,110,38,185r-41,0v0,-12,1,-14,2,-21v-17,33,-105,33,-105,-23v0,-28,21,-42,29,-46v18,-10,48,-17,94,-26xm121,-86v-38,10,-59,5,-69,36v2,22,39,26,56,2v6,-7,8,-25,13,-38xm195,-240v0,36,-50,40,-51,10v-2,-27,48,-41,51,-10xm121,-240v-1,36,-50,40,-52,10v-2,-28,48,-41,52,-10","w":191},{"d":"195,-114v0,71,-82,164,-140,94r-24,94r-45,0r49,-198v5,-19,9,-37,11,-57r43,1v-1,5,-3,16,-5,21v10,-13,19,-26,50,-26v42,0,61,33,61,71xm118,-145v-34,0,-49,43,-49,73v0,29,18,37,31,37v34,-2,47,-46,48,-74v4,-5,-10,-42,-30,-36","w":204},{"w":97},{"d":"197,-24r-180,-88r0,-31r180,-87r0,32r-144,71r144,71r0,32","w":180},{"d":"91,4v-43,-4,-73,-16,-73,-74v0,-56,20,-70,41,-97v25,-32,58,-59,88,-85r50,0v-30,27,-59,54,-86,84v43,-14,83,25,79,64v-7,73,-42,101,-99,108xm95,-36v47,3,71,-99,18,-99v-37,0,-48,36,-48,65v0,25,11,33,30,34"},{"d":"-24,74r220,-328r38,0r-220,328r-38,0"},{"d":"65,-206r-37,0r-30,-56r36,0r16,29r34,-29r40,0","w":97},{"d":"68,-254r76,0r-9,34r-39,0r-64,259r39,0r-9,35r-76,0","w":116},{"d":"147,-215v31,12,-2,55,-18,48v-14,0,-23,-9,-23,-23v0,-33,42,-69,42,-69r22,0v-11,9,-20,25,-30,44r7,0xm36,-190v1,-25,21,-51,42,-69r22,0v-5,4,-26,26,-29,44v13,-1,19,10,19,20v2,31,-55,40,-54,5","w":146},{"d":"25,-30v-27,-46,4,-87,44,-104v-54,-41,4,-131,64,-120v25,-4,83,26,75,62v5,13,-19,59,-46,61v14,10,24,17,24,47v0,46,-23,83,-93,88v-10,0,-48,-2,-68,-34xm161,-188v3,-14,-23,-32,-29,-28v-44,2,-54,67,-8,67v19,0,39,-20,37,-39xm138,-80v3,-18,-25,-36,-32,-31v-43,-3,-63,77,-10,77v29,0,38,-24,42,-46"},{"d":"93,-114v-12,-5,-64,-32,-55,-65v0,-7,2,-23,12,-40v23,-37,61,-39,75,-40r6,-29r24,0r-6,30v40,7,61,32,58,78r-44,0v0,-21,-10,-35,-23,-38r-14,65v16,7,68,37,62,71v-8,46,-25,86,-96,87r-7,34r-25,0r8,-36v-34,-1,-70,-33,-61,-89r44,0v-5,31,6,41,26,48xm116,-218v-12,-1,-35,23,-30,32v0,15,14,21,18,22xm101,-35v44,-3,49,-55,15,-68"},{"d":"81,-133v-47,0,-59,-53,-27,-97v23,-34,94,-41,94,20v0,43,-28,77,-67,77xm117,-209v0,-15,-4,-20,-16,-21v-23,-1,-34,31,-34,49v0,3,0,22,17,22v24,-1,33,-30,33,-50xm230,-254r37,0r-198,254r-38,0xm265,-75v0,43,-28,76,-67,77v-13,0,-44,-6,-44,-45v0,-6,1,-17,6,-31v15,-40,47,-48,63,-47v23,2,42,12,42,46xm201,-24v21,-1,35,-30,34,-49v0,-3,0,-22,-17,-22v-26,0,-34,29,-34,50v0,17,9,21,17,21","w":281},{"d":"95,-153r98,0r-10,42r-97,0r-28,111r-49,0r64,-254r154,0r-11,42r-106,0","w":191},{"d":"133,-145r72,0r0,36r-72,0r0,74r-37,0r0,-74r-73,0r0,-36r73,0r0,-75r37,0r0,75"},{"d":"58,0r-48,0r63,-254r48,0","w":110},{"d":"192,-254r169,0r-10,42r-100,0r-15,60r95,0r-11,42r-94,0r-18,68r108,0r-10,42r-156,0r14,-53r-87,0r-41,53r-55,0xm174,-94r30,-118r-92,118r62,0","w":335},{"d":"210,-180v0,80,-81,138,-130,182r-50,-1v30,-27,60,-53,87,-83v-47,14,-80,-22,-80,-64v0,-55,45,-111,99,-108v38,3,74,17,74,74xm132,-213v-34,0,-54,45,-46,78v2,5,10,20,28,20v36,0,44,-36,48,-65v-1,-17,-5,-33,-30,-33"},{"d":"103,-169v0,131,-54,201,-95,245r-37,0v53,-59,121,-189,84,-332r34,0v9,25,14,41,14,87","w":116},{"d":"49,-181r46,0r-45,181r-46,0","w":97},{"d":"131,-130v-2,-30,-57,-17,-59,1r-44,0v11,-28,30,-56,83,-56v113,0,36,110,38,185r-41,0v0,-12,1,-14,2,-21v-17,33,-105,33,-105,-23v0,-28,21,-42,29,-46v18,-10,48,-17,94,-26xm121,-86v-38,10,-59,5,-69,36v2,22,39,26,56,2v6,-7,8,-25,13,-38","w":191},{"d":"41,-254r45,0r-4,203r93,-203r44,0r-5,203r96,-203r47,0r-127,254r-56,0r3,-170r-78,170r-57,0","w":311},{"d":"84,-118v-12,48,-14,77,37,81v38,3,52,-32,59,-61r39,-156r47,0r-46,185v-14,47,-41,72,-102,74v-9,0,-57,0,-78,-35v-23,-39,-14,-43,-3,-88r34,-136r47,0xm195,-306v-1,-32,52,-46,57,-11v4,36,-54,46,-57,11xm113,-306v2,-34,50,-47,56,-11v4,39,-56,40,-56,11","w":253},{"d":"-12,-265r51,0r31,59r-31,0","w":97},{"d":"98,-179r41,0r-9,36r-41,0r-36,143r-46,0r36,-143r-24,0r9,-36r24,0v10,-41,19,-83,71,-83v23,0,30,6,42,11r-10,38v-4,-2,-30,-15,-41,-5v-10,9,-14,25,-16,39xm173,-181r46,0r-45,181r-46,0xm181,-226v0,-12,10,-34,33,-34v14,0,22,9,21,23v-1,17,-7,32,-31,32v-12,0,-23,-7,-23,-21","w":221},{"d":"34,-181r52,0r19,52r41,-52r54,0r-80,88r42,93r-53,0r-24,-61r-52,61r-55,0r93,-96","w":185},{"d":"107,0r-81,-254r29,0r80,254r-28,0","w":127},{"d":"127,-254r48,0r21,254r-49,0r-3,-53r-82,0r-29,53r-52,0xm143,-93r-2,-116r-59,116r61,0xm187,-284v-25,0,-59,-22,-73,2r-16,-5v11,-17,18,-39,46,-39v25,0,56,21,73,-2v6,3,20,2,13,11v-4,5,-17,33,-43,33","w":219},{"d":"127,-254r48,0r21,254r-49,0r-3,-53r-82,0r-29,53r-52,0xm143,-93r-2,-116r-59,116r61,0","w":219},{"d":"115,-210r10,-38r21,5r-10,39r39,-3r1,23r-38,3r14,37r-21,8r-14,-37r-30,26r-14,-17r30,-26r-33,-21r12,-19","w":191},{"d":"243,-97v12,-26,-3,-57,-35,-44v-16,6,-21,23,-25,38r-26,103r-45,0r28,-121v-7,-29,-23,-27,-43,-17v-32,31,-30,92,-47,138r-45,0r41,-181r44,1v1,6,0,12,-3,25v6,-8,25,-30,56,-30v9,-5,46,16,47,33v6,-8,27,-33,60,-33v40,0,52,35,40,82r-26,103r-45,0","w":311},{"d":"2,-20v3,-22,8,-29,35,-36v15,0,26,9,26,24v0,30,-56,57,-61,12","w":95},{"d":"337,-18v0,11,-8,20,-20,20v-11,0,-20,-8,-20,-20v0,-11,9,-21,21,-21v11,0,19,10,19,21xm177,-18v-1,-12,10,-22,20,-21v11,0,20,10,20,21v0,11,-8,20,-20,20v-11,0,-20,-8,-20,-20xm57,-18v0,-12,9,-22,20,-21v11,0,20,10,20,21v0,11,-8,20,-20,20v-12,0,-20,-8,-20,-20","w":360},{"d":"12,-71v0,-65,50,-132,124,-112v14,-1,48,30,42,62r-42,0v2,-6,-4,-30,-25,-28v-41,4,-51,49,-51,80v0,30,16,37,30,37v25,0,26,-7,37,-32r44,0v-10,29,-28,71,-84,69v-41,-1,-75,-16,-75,-76","w":185},{"d":"29,-127v0,-53,78,-82,130,-39v12,18,11,24,11,41r-44,0v0,-3,2,-13,-6,-20v-18,-16,-45,1,-44,14v12,34,78,21,79,75v0,14,-6,26,-9,30v-20,42,-159,49,-139,-38r44,0v-3,21,5,32,29,34v23,2,38,-24,18,-37v-29,-18,-69,-13,-69,-60","w":178},{"d":"206,-254r57,0r-119,121r63,133r-58,0r-58,-135xm73,-254r47,0r-63,254r-48,0","w":228},{"d":"159,-181r56,0r-88,85r48,96r-54,0r-46,-96xm68,-256r46,0r-64,256r-46,0","w":196},{"d":"17,-24r0,-32r145,-71r-145,-71r0,-32r180,87r0,31","w":180},{"d":"49,-181r46,0r-45,181r-46,0xm58,-226v1,-13,10,-34,32,-34v14,0,24,9,22,23v-2,15,-6,32,-31,32v-12,0,-23,-7,-23,-21","w":97},{"d":"59,-254r164,0r-9,34r-156,178r113,0r-10,42r-171,0r9,-38r156,-175r-106,0","w":191},{"d":"73,-254v62,6,107,-15,147,26v23,23,22,59,22,67v0,19,-4,82,-50,127v-44,43,-106,32,-182,34xm193,-159v0,-38,-28,-61,-83,-53r-42,170v38,-1,64,3,89,-20v33,-32,36,-87,36,-97","w":243},{"d":"30,-181r46,0r5,146r77,-146r48,0r-100,176v-22,45,-64,93,-136,81r11,-41v39,3,51,-5,64,-27xm192,-240v0,34,-50,41,-52,10v-2,-28,48,-41,52,-10xm65,-230v-4,-27,47,-40,52,-10v1,33,-50,42,-52,10","w":183},{"d":"73,-254v70,0,155,-13,156,64v0,11,-3,51,-36,73v-9,6,-17,9,-26,12r30,105r-54,0r-23,-97r-38,0r-24,97r-48,0xm180,-183v1,-32,-33,-29,-69,-29r-19,73v45,5,87,-5,88,-44","w":219},{"d":"131,-130v-2,-30,-57,-17,-59,1r-44,0v11,-28,30,-56,83,-56v113,0,36,110,38,185r-41,0v0,-12,1,-14,2,-21v-17,33,-105,33,-105,-23v0,-28,21,-42,29,-46v18,-10,48,-17,94,-26xm121,-86v-38,10,-59,5,-69,36v2,22,39,26,56,2v6,-7,8,-25,13,-38xm64,-265r52,0r31,59r-32,0","w":191},{"d":"122,-21v-16,29,-106,43,-103,-26v3,-50,20,-90,29,-134r46,0r-28,121v2,24,28,32,46,16v34,-30,29,-91,46,-137r46,0v-11,56,-37,126,-41,181r-43,0v0,-4,1,-12,2,-21xm203,-240v1,30,-48,45,-51,10v-2,-28,47,-41,51,-10xm128,-240v2,30,-48,45,-51,10v-2,-27,48,-41,51,-10","w":206},{"d":"230,-94v-24,85,-94,136,-177,77v-33,-24,-31,-68,-31,-80v0,-15,2,-51,23,-89v5,-24,73,-93,144,-69v52,18,51,58,51,83r-44,0v0,-20,-10,-48,-43,-45v-67,7,-93,84,-77,149v7,29,36,31,46,31v47,0,60,-47,63,-57r45,0","w":236},{"d":"98,-179r41,0r-9,36r-41,0r-36,143r-46,0r36,-143r-24,0r9,-36r24,0v10,-41,19,-83,71,-83v23,0,30,6,42,11r-10,38v-4,-2,-30,-15,-41,-5v-10,9,-14,25,-16,39","w":123},{"d":"61,-26v-7,52,-36,81,-57,101r-23,0v20,-20,38,-45,45,-77v-12,4,-30,-15,-26,-22v0,-18,16,-32,33,-33v14,-1,30,16,28,31xm32,-150v4,-19,8,-30,35,-36v13,-3,30,18,26,24v4,33,-58,54,-61,12","w":95},{"d":"13,-70v0,-73,50,-138,140,-109v38,12,39,57,39,68v3,70,-71,152,-152,103v-24,-14,-27,-34,-27,-62xm144,-111v5,-5,-12,-44,-30,-38v-44,0,-54,51,-54,80v0,31,18,37,32,37v35,0,52,-51,52,-79xm165,-262r59,0r-85,56r-34,0","w":202},{"d":"73,-254v74,1,150,-15,155,65v1,13,-12,58,-31,72v-35,25,-68,21,-115,22r-24,95r-48,0xm179,-184v2,-29,-33,-30,-68,-28r-20,75v46,3,86,-1,88,-47","w":209},{"d":"42,-262r36,0r31,56r-36,0r-16,-29r-34,29r-40,0","w":97},{"d":"22,-93v0,-62,41,-169,135,-166v53,2,92,21,92,98v0,84,-40,166,-135,166v-60,0,-92,-39,-92,-98xm118,-37v42,3,83,-75,83,-124v0,-44,-24,-54,-45,-56v-45,-5,-85,74,-85,122v0,19,12,63,47,58xm194,-306v0,-31,53,-47,57,-11v2,22,-22,34,-33,33v-14,2,-26,-16,-24,-22xm136,-284v-9,4,-30,-15,-22,-32v15,-30,49,-29,54,-1v5,12,-22,38,-32,33","w":251},{"d":"218,-83r-54,0r-12,83r-29,0r12,-83r-40,0r-11,83r-29,0r12,-83r-50,0r0,-28r54,0r5,-38r-50,0r0,-28r54,0r11,-77r29,0r-11,77r40,0r11,-77r28,0r-11,77r50,0r0,28r-53,0r-6,38r50,0r0,28xm139,-111r6,-38r-40,0r-6,38r40,0","w":209},{"d":"95,-153r98,0r25,-101r48,0r-64,254r-47,0r28,-112r-98,0r-28,112r-48,0r64,-254r47,0","w":254},{"d":"22,-93v1,-73,42,-166,135,-166v52,0,90,23,92,98v0,19,-5,70,-38,117v-21,31,-114,84,-168,19v-21,-26,-21,-58,-21,-68xm201,-160v0,-21,-11,-59,-45,-57v-41,3,-85,51,-85,122v0,43,11,58,47,58v52,0,85,-78,83,-123xm203,-330r67,0r-92,50r-40,0","w":251},{"d":"38,-254r49,0r9,199r97,-199r52,0r-135,254r-51,0","w":209},{"d":"68,-256r46,0r-64,256r-46,0","w":97},{"d":"90,-32v25,0,26,-7,37,-32r44,0v-5,26,-32,66,-70,68r-8,16v18,7,25,7,29,33v-3,49,-59,54,-87,37r5,-22v3,1,14,6,25,6v20,0,24,-16,24,-23v0,-22,-19,-18,-31,-17r16,-30v-36,-5,-62,-21,-62,-75v0,-65,50,-132,124,-112v14,-1,48,30,42,62r-42,0v2,-6,-5,-30,-25,-28v-36,4,-50,50,-51,80v0,30,16,37,30,37","w":185},{"d":"158,-259v9,-3,57,8,69,28r24,-23r34,0r-45,43v26,102,-16,212,-126,216v-10,4,-60,-12,-70,-28r-25,23r-33,0r45,-43v-28,-91,16,-214,127,-216xm190,-201v-69,-55,-127,50,-119,120xm118,-37v47,-2,89,-64,81,-139r-119,120v7,13,31,20,38,19","w":251},{"d":"71,-97v0,66,56,69,103,49r11,-43r-50,0r9,-36r92,0r-27,108v-20,14,-72,27,-86,24v-16,0,-77,-2,-95,-59v-29,-94,46,-234,163,-201v12,4,39,14,49,47v5,15,4,32,4,36r-43,0v-2,-27,-9,-42,-45,-45v-46,-5,-85,72,-85,120","w":245},{"d":"100,4v-9,4,-43,-10,-49,-28v-1,4,-4,13,-9,24r-39,0r64,-256r46,0r-23,94v8,-19,62,-33,85,-9v20,20,20,46,20,54v0,59,-38,121,-95,121xm98,-36v25,9,55,-61,50,-76v0,-6,-1,-34,-28,-34v-40,0,-78,106,-22,110","w":204}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+163-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("*mP0xXz`bM8d*)h6EXf&3m38-vz0PX8d-v^&bM4ZP_graU`qo0>0Aet5Ah[FEB2@P5_FEB2@aUEFEB2@av4*-So@Am3v-So@Amj>-So@Ama;-So@AmzI-So@Amj[-So@AmWOP_>0AetGz_>0AetIp_>0AetIa0>0AethAh>0AethPm]FEB2@a5tFEB3@ABIFEB2@aUfFEB2@aM^FEB2@a5E8-So@ABo&3Bz4-So@AmjO-So@Amfh-So@Am3>-So@AmA`-So@AmA@EX4FEB3@AM_&-So@AmW`-So@Amo>-So&AeWU-So@AmA;_f>0AetGah>0AetXa_>0A52>a_>0A52`z)IO3)0FEB2@a54FEB2@aX^FEB3@ABhFEB2>zU%rMf>0AetqpW_FEB2@PBh~-So@AmA0-So@Am_I-So&AB3&-So&AefG-So@Ama&-So@Am_h-So@ABoU(f>0AeW[Ah>0AethPh@qQB_FEB2@av3X-So@Am_5-So@Am_q-So&Ae3@Q`[_-So@AmaO-So@Am4X-So@Amov-So@AmzX-So@AmW>-So@Amzh-So@Amo;-So@Av^5-So@AmW;-So&Ae3&-So@Ama>-So@AmWv-So@Amj`-So@Ama[-So@AmW@!0>0Aet5a0>0Aet5pMEFEB2@P5PFEB2@aBzFEB2@PmW1A_>0AetGAh8Ebej@Bf>0AetqPqE!-So@AmPqAhhz-So@AmoUx0>0A52>zWtFEB3@AUt)!_>0AetXzf>0Aethz_>0A53>Ah>0Ae^GaO_1xh>0PX3@A5E`F_>0AethzStFEMPXPXjgzh@T-So@AXAOM0>0A52>aU%G^oaC,_>0Aet5z5G]-So@ABA>a_EFEB2@Pmz%-S_Xa52>Qf>F-So@AmAUj,]Kch>0A52&zXzU,vr~b_]W-So@AmPXoh>0AethAf>0AetXa`zXp0>0AetXA0tFEB2&aUPFEB2@Pea5,f>0AetGA02t)eWfmS3^*cAzp!j4,Bo_M-aPbxFEQ(%Iq5GhXZs]iCrKdT@>&U`0vO;[16g8~{Pr-So@AmoO-So@Amj;4v3qcZz@xmh`*)3q*,>]!B2rFe0qcZ2rxe0@cX>hxXE`b)>Z!M3dPq[ZxSh@bSA8QO`6bMasaq[TbU`T-q%{pZEOE0@d*Bgs!U]ZbMEIFOtTFZ4FcXf`(mE]PvfUFm8&Ef@dav8K(mE]PvfUFm8&Ef@daO]gPvhZa-z@xO^`-)[UbO>ZbMEIFOtTFZ4FcZz]*,jTb,[`P-z`*m>Tavf`bM8dcXITFO4daM0h*,hXxO3spvGgxerC*vG]P0K5MvhE-B0@MvhE(,Gs*,2%")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":208,"face":{"font-family":"corporatesbq","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-85 -351.754 381 99.5719","underline-thickness":"18","underline-position":"-36","slope":"-14","stemh":"41","stemv":"48","unicode-range":"U+0020-U+FB02"}}));


/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * (URW)++,Copyright 2006 by (URW)++ Design & Development
 *
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 *
 * Vendor URL:
 * www.urwpp.de
 */
Cufon.registerFont({"w":180,"face":{"font-family":"corporatetest","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 2 8 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-47 -326 359 107","underline-thickness":"39.96","underline-position":"-37.44","slope":"-14","unicode-range":"U+0020-U+04C0"},"glyphs":{" ":{"w":90},"!":{"d":"60,-234r46,0r-43,154r-37,0xm2,-18v-5,-32,54,-52,57,-12v4,32,-54,50,-57,12","w":90},"\"":{"d":"89,-144r-27,0r16,-96r43,0xm149,-144r-27,0r16,-96r43,0"},"#":{"d":"213,-102r-5,30r-42,0r-11,72r-35,0r11,-72r-44,0r-11,72r-35,0r12,-72r-41,0r4,-30r41,0r7,-41r-41,0r5,-30r41,0r11,-67r34,0r-10,67r43,0r11,-67r35,0r-11,67r42,0r-4,30r-43,0r-6,41r42,0xm143,-143r-44,0r-7,41r44,0","w":216},"$":{"d":"88,-108v-64,-14,-65,-99,-13,-125v12,-6,26,-10,43,-11r5,-27r24,0r-7,28v40,7,57,30,55,73r-41,0v1,-19,-7,-31,-22,-36r-13,62v36,17,58,28,58,66v0,53,-33,83,-90,83r-6,31r-24,0r7,-33v-46,-9,-65,-38,-57,-85r41,0v-4,24,3,40,25,46xm109,-206v-25,3,-42,41,-11,52xm95,-33v36,0,50,-52,14,-65","w":196},"%":{"d":"34,-168v0,-37,28,-74,64,-74v26,0,40,18,41,44v1,35,-29,72,-63,72v-24,0,-42,-17,-42,-42xm79,-150v19,0,32,-26,32,-47v0,-14,-6,-20,-17,-20v-18,0,-32,25,-32,46v0,14,6,21,17,21xm216,-240r36,0r-188,240r-35,0xm145,-40v0,-37,27,-74,63,-74v26,0,41,18,41,43v1,38,-28,73,-63,73v-24,0,-41,-17,-41,-42xm189,-23v20,0,33,-24,32,-46v0,-14,-5,-21,-16,-21v-19,0,-32,26,-32,47v0,13,5,20,16,20","w":264},"&":{"d":"165,-192v0,32,-27,55,-54,69r27,52v9,-11,15,-27,19,-49r34,0v-7,33,-20,60,-39,79r21,41r-43,0r-8,-16v-40,36,-120,22,-120,-38v0,-38,32,-63,63,-81v-33,-42,-3,-101,50,-101v29,0,50,17,50,44xm113,-204v-24,0,-30,29,-14,52v20,-12,30,-25,30,-37v-1,-8,-7,-15,-16,-15xm42,-59v0,32,44,34,66,15r-28,-59v-20,12,-38,20,-38,44","w":200},"'":{"d":"73,-144r-26,0r16,-96r43,0","w":90},"(":{"d":"27,72v-38,-117,16,-251,78,-314r35,0v-59,66,-114,194,-81,314r-32,0","w":110},")":{"d":"84,-242v38,116,-15,251,-77,314r-35,0v59,-66,113,-194,80,-314r32,0","w":110},"*":{"d":"108,-198r9,-36r21,5r-9,36r36,-3r1,22r-36,3r13,35r-19,8r-14,-35r-28,24r-13,-16r28,-25r-31,-19r11,-18"},"+":{"d":"125,-137r68,0r0,34r-68,0r0,71r-35,0r0,-71r-68,0r0,-34r68,0r0,-70r35,0r0,70","w":196},",":{"d":"58,-25v0,34,-31,78,-54,96r-22,0v18,-17,36,-46,42,-72v-15,2,-24,-9,-24,-22v0,-16,15,-30,32,-30v16,0,26,13,26,28","w":90},"-":{"d":"6,-107r91,0r-8,32r-91,0","w":90,"k":{"\u00c6":2,"\u00c5":-9,"\u00c4":-9,"\u00c1":-9,"Y":10,"W":-6,"V":-1,"T":7,"A":-9}},".":{"d":"3,-18v-5,-32,54,-52,57,-12v5,31,-55,51,-57,12","w":90},"\/":{"d":"-22,70r207,-310r36,0r-207,310r-36,0","w":196},"0":{"d":"18,-75v2,-78,39,-165,113,-165v44,0,65,33,65,79v-1,79,-40,165,-111,165v-44,0,-68,-33,-67,-79xm88,-34v47,-8,64,-84,64,-133v0,-23,-9,-35,-26,-35v-41,0,-63,82,-63,132v0,20,7,35,25,36","w":196},"1":{"d":"65,-168r6,-25v30,0,52,-14,65,-42r29,0r-58,235r-44,0r42,-170","w":196},"2":{"d":"141,-154v16,-20,9,-48,-16,-48v-18,0,-31,12,-38,34r-36,0v6,-44,33,-70,80,-72v52,-3,80,50,52,91v-23,33,-74,77,-112,108r91,0r-10,41r-147,0r9,-36r92,-82v17,-16,28,-28,35,-36","w":196},"3":{"d":"145,-177v0,-35,-51,-32,-57,5r-37,0v10,-42,34,-68,78,-68v34,0,61,22,61,56v0,33,-19,53,-47,63v64,35,11,125,-57,125v-45,0,-79,-27,-71,-74r39,0v-3,22,14,36,33,36v21,1,42,-19,40,-41v-3,-26,-22,-28,-54,-28r9,-37v33,4,63,-6,63,-37","w":196},"4":{"d":"151,-89r41,0r-9,38r-40,0r-13,51r-45,0r13,-51r-96,0r9,-36r125,-151r53,0xm109,-89r28,-108r-84,108r56,0","w":196},"5":{"d":"132,-90v0,-39,-46,-42,-65,-14r-36,-5r54,-125r114,0r-13,40r-80,0r-20,45v42,-26,91,1,91,52v0,55,-40,102,-94,101v-43,0,-72,-25,-68,-71r42,0v0,19,10,33,29,33v25,0,46,-29,46,-56","w":196},"6":{"d":"17,-65v9,-89,60,-115,122,-173r47,0v-37,34,-65,61,-82,80v41,-16,76,18,76,59v0,52,-43,103,-93,103v-39,0,-74,-30,-70,-69xm135,-95v0,-17,-11,-32,-27,-32v-41,0,-71,93,-18,93v25,0,46,-33,45,-61","w":196},"7":{"d":"73,-234r154,0r-8,34r-145,200r-49,0r140,-191r-102,0","w":196},"8":{"d":"15,-60v1,-34,23,-57,51,-66v-52,-41,-1,-114,60,-114v38,0,71,23,71,59v0,30,-18,49,-44,58v54,42,0,127,-65,127v-39,0,-74,-26,-73,-64xm117,-141v36,3,50,-63,7,-63v-20,-1,-36,16,-35,36v0,16,13,26,28,27xm90,-32v40,4,58,-71,11,-73v-42,-3,-60,72,-11,73","w":196},"9":{"d":"198,-171v-5,86,-69,122,-123,172r-47,0v31,-27,58,-53,82,-79v-43,14,-77,-18,-75,-60v3,-55,40,-101,93,-102v39,0,72,30,70,69xm107,-109v41,0,70,-93,18,-93v-25,0,-47,33,-46,61v0,17,11,32,28,32","w":196},":":{"d":"33,-141v-4,-32,55,-52,57,-12v4,32,-54,50,-57,12xm3,-18v-5,-33,54,-51,57,-12v5,31,-55,51,-57,12","w":90},";":{"d":"58,-25v0,34,-31,78,-54,96r-22,0v18,-17,36,-46,42,-72v-15,2,-24,-9,-24,-22v0,-16,15,-30,32,-30v16,0,26,13,26,28xm30,-141v-3,-31,56,-52,57,-11v4,32,-55,48,-57,11","w":90},"<":{"d":"171,-220r0,44r-109,54r109,53r0,44r-156,-79r0,-37"},"=":{"d":"22,-167r171,0r0,34r-171,0r0,-34xm22,-107r171,0r0,34r-171,0r0,-34","w":196},">":{"d":"15,-25r0,-44r110,-53r-110,-54r0,-44r156,79r0,38"},"?":{"d":"167,-193v0,57,-72,60,-75,115r-40,0v5,-50,37,-61,63,-91v10,-13,5,-31,-13,-31v-14,0,-25,10,-30,29r-33,0v7,-40,29,-67,73,-68v31,-1,55,17,55,46xm33,-18v-4,-32,55,-52,58,-12v4,32,-55,50,-58,12","w":143},"@":{"d":"81,-109v0,-51,65,-99,99,-54r3,-14r31,0r-16,86v0,6,3,14,9,14v17,-1,31,-38,31,-61v0,-49,-38,-80,-88,-80v-56,0,-97,46,-97,101v0,83,89,115,166,83r7,28v-97,34,-203,-11,-203,-112v0,-71,57,-127,127,-127v63,0,115,45,115,107v0,52,-60,125,-88,63v-27,45,-96,20,-96,-34xm142,-81v32,0,45,-67,8,-69v-20,-1,-34,19,-33,41v0,17,8,28,25,28","w":263},"A":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0","w":207,"k":{"\u00e7":4,"\u00dc":12,"\u00db":12,"\u00da":12,"\u00d9":12,"\u00d6":9,"\u00c7":10,"\u00ab":3,"y":9,"w":6,"v":8,"u":5,"t":4,"q":3,"o":4,"g":-5,"e":4,"d":3,"c":4,"b":1,"a":3,"Y":21,"W":11,"V":14,"U":12,"T":18,"Q":9,"O":9,"G":10,"C":10,".":-9,"-":-8,",":-9}},"B":{"d":"193,-78v0,83,-92,81,-184,78r60,-240v64,0,139,-9,139,52v0,32,-18,54,-53,63v23,8,38,19,38,47xm162,-179v0,-28,-29,-23,-58,-24r-15,60v39,1,73,0,73,-36xm147,-80v0,-31,-34,-27,-67,-27r-18,70v48,2,85,0,85,-43","w":212,"k":{"\u00d8":3,"\u00d6":5,"\u00d4":5,"\u00d3":5,"\u00d2":5,"\u00c6":10,"\u00c5":5,"\u00c4":5,"\u00c3":5,"\u00c2":5,"\u00c1":5,"\u0152":5,"Y":15,"W":5,"V":9,"O":5,"A":5}},"C":{"d":"148,-245v50,-1,81,31,78,83r-41,0v-1,-29,-14,-43,-40,-43v-45,0,-78,65,-78,114v0,33,17,56,48,56v29,0,49,-18,60,-54r42,0v-12,53,-46,93,-104,94v-58,1,-93,-37,-92,-96v1,-83,49,-152,127,-154","w":223,"k":{"\u00d6":3,"\u00d3":3,"\u00c6":8,"\u00c5":3,"\u00c4":3,"\u00c1":3,"O":3,"K":3,"H":3,"A":3}},"D":{"d":"228,-151v-6,97,-48,157,-159,151r-60,0r60,-240v90,-4,164,3,159,89xm182,-150v2,-47,-28,-54,-78,-51r-40,162v85,10,114,-40,118,-111","w":230,"k":{"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"Y":15,"X":12,"W":3,"V":7,"T":10,"J":10,"A":9}},"E":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0","w":187},"F":{"d":"90,-144r92,0r-10,39r-92,0r-26,105r-45,0r60,-240r145,0r-10,39r-100,0","w":181,"k":{"\u00f8":4,"\u00f6":2,"\u00f3":2,"\u00e9":2,"\u00e6":5,"\u00e5":4,"\u00e4":4,"\u00e1":4,"\u00d6":2,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u0153":2,"u":7,"r":8,"o":2,"j":4,"i":3,"e":2,"a":4,"O":2,"J":11,"A":14,".":22,"-":-9,",":21}},"G":{"d":"67,-91v0,54,56,68,98,46r10,-41r-47,0r8,-34r87,0r-26,102v-68,44,-182,26,-176,-72v5,-83,50,-154,129,-155v51,-1,83,29,80,83r-41,0v-1,-29,-15,-43,-42,-43v-47,-1,-80,64,-80,114","w":232,"k":{"\u00c6":4,"\u00c5":2,"\u00c4":2,"\u00c3":2,"\u00c2":2,"\u00c1":2,"\u00c0":2,"Y":14,"W":3,"V":7,"T":9,"A":2}},"H":{"d":"90,-144r92,0r24,-96r45,0r-60,240r-45,0r26,-106r-92,0r-26,106r-45,0r60,-240r45,0","w":240},"I":{"d":"54,0r-45,0r60,-240r45,0","w":103},"J":{"d":"77,-240r45,0r-61,239v-14,35,-47,52,-101,49r10,-39v56,1,53,-28,66,-81","w":111,"k":{"\u00c6":5,"\u00c5":5,"\u00c4":5,"A":5}},"K":{"d":"194,-240r54,0r-112,114r60,126r-55,0r-55,-127xm69,-240r45,0r-60,240r-45,0","w":216,"k":{"\u00fc":12,"\u00f6":11,"\u00f3":11,"\u00e6":8,"\u00e5":6,"\u00e4":6,"\u00d6":14,"\u00d3":14,"\u0152":14,"y":20,"u":14,"o":15,"e":15,"a":8,"T":-6,"S":8,"O":14,"G":14,"C":14,"-":8}},"L":{"d":"69,-240r45,0r-50,201r102,0r-10,39r-147,0","w":178,"k":{"\u00fc":5,"\u00dc":11,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":12,"\u00c6":-8,"\u00c5":-8,"\u00c4":-8,"\u00c1":-8,"y":15,"u":5,"Y":26,"W":16,"V":22,"U":11,"T":22,"S":-1,"O":10,"G":10,"C":12,"A":-8,"-":-1}},"M":{"d":"69,-240r63,0r13,194r108,-194r65,0r-60,240r-40,0r47,-191r-107,191r-47,0r-14,-191r-48,191r-40,0","w":307},"N":{"d":"69,-240r47,0r58,173r43,-173r42,0r-60,240r-44,0r-61,-173r-43,173r-42,0","w":249,"k":{"\u00fc":6,"\u00f8":4,"\u00f6":4,"\u00f3":4,"\u00e9":5,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e1":5,"\u00d6":5,"\u00d3":5,"\u00c7":5,"\u00c6":5,"\u00c5":5,"\u00c4":5,"\u00c1":5,"u":6,"o":4,"e":5,"a":5,"O":5,"G":5,"C":5,"A":5,",":-1}},"O":{"d":"20,-87v2,-83,48,-158,129,-158v55,0,87,36,86,93v-2,83,-49,157,-128,157v-55,0,-88,-36,-87,-92xm189,-152v0,-32,-15,-52,-43,-53v-46,-2,-80,69,-80,116v0,31,15,54,45,54v44,0,78,-71,78,-117","w":236,"k":{"\u00c6":16,"\u00c5":9,"\u00c4":9,"\u00c1":9,"Y":14,"X":11,"W":3,"V":7,"T":10,"A":9}},"P":{"d":"215,-179v-3,73,-53,95,-138,89r-23,90r-45,0r60,-240v70,0,149,-8,146,61xm168,-174v0,-31,-32,-26,-64,-27r-18,72v46,2,82,-2,82,-45","w":197,"k":{"\u00f8":3,"\u00f6":1,"\u00f3":1,"\u00e9":1,"\u00e6":1,"\u00e5":1,"\u00e4":1,"\u00e1":1,"\u00c6":30,"\u00c5":14,"\u00c4":14,"\u00c1":14,"\u0153":1,"o":1,"e":1,"a":1,"J":10,"A":14,".":28,"-":-5,",":26}},"Q":{"d":"148,-245v101,-3,105,130,56,196r29,49r-54,0r-7,-16v-59,45,-157,14,-152,-71v5,-84,49,-156,128,-158xm189,-152v0,-32,-15,-52,-43,-53v-46,-2,-80,69,-80,116v0,31,15,54,45,54v44,0,78,-71,78,-117","w":236},"R":{"d":"216,-179v-2,42,-23,69,-59,80r29,99r-51,0r-22,-92r-36,0r-23,92r-45,0r60,-240v71,0,150,-9,147,61xm170,-173v1,-31,-32,-28,-66,-28r-18,70v45,1,83,-2,84,-42","w":206,"k":{"\u00fc":2,"\u00fa":2,"\u00f6":1,"\u00f3":1,"\u00e9":1,"\u00e6":2,"\u00e5":1,"\u00e4":1,"\u00e1":1,"\u00dc":4,"\u00d6":1,"\u00d3":1,"\u00c7":1,"\u0153":1,"\u0152":1,"y":-1,"u":2,"o":1,"e":1,"a":1,"Y":9,"V":4,"U":4,"T":2,"O":1,"G":2,"C":1,"-":-6}},"S":{"d":"120,-245v47,0,79,27,73,75r-43,0v1,-27,-11,-33,-33,-35v-25,-2,-49,25,-31,42v31,30,89,31,89,84v0,51,-35,84,-89,84v-55,0,-92,-31,-81,-87r43,0v-5,30,10,47,39,47v35,0,57,-39,29,-57v-33,-22,-81,-29,-82,-77v-1,-46,39,-76,86,-76","w":187,"k":{"\u00c6":4,"\u00c5":1,"\u00c4":1,"\u00c1":1,"t":-1,"Y":10,"W":1,"V":5,"T":3,"A":1}},"T":{"d":"44,-240r162,0r-12,39r-56,0r-50,201r-45,0r50,-201r-61,0","w":171,"k":{"\u00f8":18,"\u00e6":21,"\u00d8":5,"\u00d6":5,"\u00d5":5,"\u00d4":5,"\u00d3":5,"\u00d2":5,"\u00c6":22,"\u00c5":19,"\u00c4":19,"\u00c3":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"\u00ab":19,"\u0152":5,"y":10,"w":8,"v":8,"u":18,"s":19,"r":16,"o":19,"j":3,"i":2,"g":22,"e":20,"c":20,"a":20,"Y":-10,"W":-9,"V":-10,"S":-3,"O":5,"J":10,"G":6,"C":5,"A":19,";":8,":":9,".":17,"-":8,",":16}},"U":{"d":"188,-27v-36,52,-167,40,-161,-37v4,-58,28,-122,40,-176r44,0r-32,128v-15,46,-7,77,35,77v35,0,46,-22,55,-58r37,-147r45,0r-50,191v-3,8,-8,14,-13,22","w":238,"k":{"\u00c6":15,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"r":5,"p":5,"n":5,"m":5,"A":11,".":5,",":4}},"V":{"d":"36,-240r47,0r8,187r92,-187r48,0r-127,240r-48,0","w":198,"k":{"\u00f8":14,"\u00e6":16,"\u00d8":7,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c6":27,"\u00c5":17,"\u00c4":17,"\u00c3":17,"\u00c2":17,"\u00c1":17,"\u00c0":17,"\u00ab":15,"y":6,"u":14,"r":13,"o":15,"i":4,"g":17,"e":15,"a":15,"T":-6,"S":3,"O":10,"G":10,"C":10,"A":17,";":3,":":4,".":18,"-":1,",":16}},"W":{"d":"39,-240r43,0r-4,192r87,-192r42,0r-5,192r91,-192r44,0r-120,240r-52,0r2,-161r-74,161r-53,0","w":294,"k":{"\u00f8":6,"\u00e6":8,"\u00d6":3,"\u00d5":3,"\u00d4":3,"\u00d3":3,"\u00d2":3,"\u00c6":19,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"\u00ab":7,"u":8,"r":7,"o":7,"i":-1,"g":10,"e":8,"a":8,"T":-11,"S":-3,"O":3,"G":4,"C":4,"A":10,";":-4,":":-3,".":10,"-":-6,",":8}},"X":{"d":"48,-240r51,0r22,79r63,-79r53,0r-102,118r43,122r-49,0r-26,-87r-68,87r-53,0r106,-125","w":201,"k":{"\u00d6":10,"y":17,"u":13,"o":13,"e":13,"a":8,"Q":10,"O":10,"C":11,"-":4}},"Y":{"d":"36,-240r48,0r23,100r73,-100r53,0r-113,145r-23,95r-45,0r24,-95","w":187,"k":{"\u00f8":19,"\u00e6":21,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c6":26,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"\u00ab":20,"v":6,"u":16,"p":15,"o":20,"i":-2,"g":22,"e":21,"a":21,"T":-12,"O":9,"G":11,"C":9,"A":20,";":8,":":9,".":21,"-":10,",":19}},"Z":{"d":"55,-240r155,0r-8,32r-148,169r107,0r-9,39r-162,0r9,-36r147,-166r-100,0","k":{"y":10,"v":8}},"[":{"d":"64,-240r72,0r-8,32r-37,0r-60,245r36,0r-8,33r-72,0","w":110},"\\":{"d":"170,70r-34,0r-74,-310r33,0","w":207},"]":{"d":"48,70r-72,0r7,-33r37,0r61,-244r-36,0r8,-33r72,0","w":110},"^":{"d":"53,-122r-47,0r58,-119r59,0r58,119r-46,0r-41,-84"},"_":{"d":"4,17r180,0r0,40r-180,0r0,-40"},"`":{"d":"61,-248r48,0r30,55r-30,0"},"a":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,3,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35","k":{"y":9,"w":5,"v":7,"j":6}},"b":{"d":"184,-111v8,74,-85,159,-136,88v-2,9,-5,17,-9,23r-37,0r62,-242r43,0r-22,89v30,-41,107,-17,99,42xm93,-34v27,0,46,-38,46,-71v0,-21,-9,-32,-26,-32v-28,-1,-47,41,-47,70v0,19,10,33,27,33","w":192,"k":{"y":7,"w":2,"v":5}},"c":{"d":"12,-66v2,-60,37,-109,95,-110v40,0,61,21,61,62r-40,0v0,-18,-8,-27,-23,-27v-29,1,-48,43,-48,77v0,21,10,34,29,34v22,0,27,-13,35,-31r40,0v-9,89,-152,87,-149,-5","w":175,"k":{"k":3,"h":3}},"d":{"d":"11,-63v0,-74,78,-149,133,-89r22,-90r43,0r-47,188v-6,24,-9,42,-10,54r-40,0v1,-10,2,-17,4,-21v-34,48,-105,21,-105,-42xm130,-102v0,-20,-10,-35,-29,-35v-40,-2,-70,98,-17,104v27,2,47,-42,46,-69","w":193},"e":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,33,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0","w":182,"k":{"y":7,"x":5,"w":3,"v":5,"t":2}},"f":{"d":"93,-169r39,0r-9,34r-39,0r-34,135r-43,0r34,-135r-22,0r8,-34r22,0v11,-43,21,-78,67,-79v13,0,27,4,40,11r-9,36v-30,-21,-52,-2,-54,32","w":117,"k":{"\u00f8":3,"\u00f6":1,"\u00f3":1,"\u00e9":1,"\u00e6":1,"\u00e5":1,"\u00e4":1,"\u00e1":1,"\u0153":1,"t":-5,"s":1,"o":1,"l":1,"j":1,"f":-5,"e":1,"a":1}},"g":{"d":"56,-66v-51,-32,-14,-108,48,-108v11,0,24,2,36,7r62,0r-8,31r-35,0v14,52,-19,82,-78,77v-14,4,-23,9,-15,17v40,8,87,7,86,50v-1,42,-42,65,-89,64v-41,0,-82,-12,-82,-47v0,-21,15,-35,44,-42v-27,-22,3,-44,31,-49xm126,-121v0,-36,-57,-22,-57,8v0,15,12,23,27,23v20,1,30,-12,30,-31xm18,20v7,28,90,28,90,-3v0,-13,-13,-20,-40,-20v-33,0,-50,8,-50,23","w":185,"k":{"r":3,"l":3}},"h":{"d":"130,-89v9,-24,6,-46,-19,-46v-54,0,-45,90,-63,135r-44,0r60,-242r44,0r-23,90v29,-34,97,-29,95,23v-2,41,-21,90,-29,129r-43,0","w":195,"k":{"y":9}},"i":{"d":"47,-170r43,0r-42,170r-44,0xm55,-213v-3,-30,48,-46,51,-12v4,31,-48,46,-51,12","w":92,"k":{"j":4,"T":1}},"j":{"d":"50,-170r43,0r-36,146v-13,58,-38,90,-104,90r9,-38v45,-3,44,-19,55,-64xm57,-213v-1,-17,15,-32,31,-32v11,0,21,8,20,20v5,30,-48,46,-51,12","w":95},"k":{"d":"150,-170r53,0r-83,79r46,91r-52,0r-43,-91xm64,-242r44,0r-60,242r-44,0","w":186,"k":{"\u00fc":3,"\u00f6":8,"\u00f3":8,"\u00e9":9,"\u00e6":8,"\u00e5":8,"\u00e4":8,"\u00e1":8,"u":3,"s":7,"o":8,"g":-6,"e":9,"a":8,"-":6,",":-2}},"l":{"d":"64,-242r44,0r-60,242r-44,0","w":92,"k":{"y":5,"v":3}},"m":{"d":"128,-93v19,-36,-21,-54,-43,-33v-20,30,-25,86,-37,126r-44,0v12,-56,32,-110,39,-170r41,0v2,7,0,15,-2,24v26,-35,82,-41,97,3v15,-18,28,-31,56,-31v85,0,21,118,14,174r-43,0r27,-115v-1,-12,-9,-20,-23,-20v-18,0,-32,13,-38,39r-24,96r-43,0","w":293,"k":{"y":9,"w":4,"v":6,"p":4}},"n":{"d":"128,-89v7,-26,6,-46,-19,-46v-53,0,-42,90,-61,135r-44,0v11,-51,35,-118,38,-170r42,0v0,7,-1,15,-3,24v25,-41,98,-37,98,14v0,44,-21,90,-30,132r-43,0","w":192,"k":{"y":9,"w":4,"v":6,"p":4,"T":20}},"o":{"d":"12,-66v2,-61,36,-110,97,-110v45,0,71,25,71,71v0,57,-36,112,-96,110v-45,0,-73,-26,-72,-71xm86,-30v29,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35","w":190,"k":{"y":8,"x":7,"w":3,"v":5,"t":3,"T":19}},"p":{"d":"184,-108v0,76,-76,150,-132,89r-22,88r-43,0r57,-239r40,0v0,6,-1,12,-4,20v32,-46,104,-21,104,42xm140,-103v0,-20,-9,-34,-28,-34v-40,-2,-72,99,-17,104v26,2,46,-41,45,-70","w":193,"k":{"y":7,"t":2}},"q":{"d":"10,-60v3,-59,36,-113,91,-114v20,0,35,8,45,26v3,-11,6,-18,9,-22r37,0r-61,239r-43,0r22,-87v-33,45,-103,15,-100,-42xm129,-105v0,-19,-10,-32,-27,-32v-27,-1,-47,42,-47,71v0,19,9,32,26,33v27,0,48,-42,48,-72","w":193,"k":{"u":4,"c":3}},"r":{"d":"79,-135v19,-25,37,-46,74,-36r-11,46v-71,-39,-79,67,-95,125r-43,0r41,-170v13,2,32,-4,41,2v-2,13,-2,18,-7,33","w":135,"k":{"\u00f6":-2,"\u00f4":-2,"\u00f3":-2,"\u00f2":-2,"\u00ea":-2,"\u00e9":-2,"\u00e8":-2,"\u00e7":-2,"\u00e6":-1,"\u00e5":-1,"\u00e4":-1,"\u00e2":-1,"\u00e1":-1,"\u00e0":-1,"\u0153":-2,"z":-4,"y":-6,"x":-4,"w":-7,"v":-8,"u":2,"t":-7,"s":-1,"r":2,"q":-3,"p":1,"o":-2,"n":1,"m":1,"l":3,"k":3,"j":4,"i":3,"h":3,"g":2,"f":-7,"e":-2,"d":-3,"c":-2,"a":-1,";":-2,":":-1,".":22,",":20}},"s":{"d":"99,-176v38,0,67,20,61,58r-40,0v1,-16,-9,-24,-24,-25v-15,-1,-32,17,-20,29v28,18,70,24,70,61v0,36,-35,58,-74,58v-43,0,-76,-22,-65,-66r41,0v-5,20,9,32,27,33v18,1,35,-16,23,-31v-27,-19,-71,-22,-70,-61v0,-34,34,-56,71,-56","w":167,"k":{"t":1}},"t":{"d":"93,-4v-32,15,-77,9,-77,-26v0,-25,20,-77,27,-105r-26,0r10,-34r26,0r14,-51r42,0r-14,51r34,0r-9,34r-34,0r-22,88v2,16,24,12,39,6","w":118,"k":{"\u00f6":3,"\u00f3":3,"\u00e9":3,"\u00e6":-1,"\u00e5":-1,"\u00e4":-1,"\u00e1":-1,"o":3,"h":1,"e":3,"a":-1,"S":-1,";":-9,":":-8}},"u":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-39,170r-40,0v-2,-6,0,-12,1,-20","w":195},"v":{"d":"24,-170r44,0r7,129r62,-129r46,0r-93,171r-48,0","w":169,"k":{"\u00f8":7,"\u00f6":8,"\u00f3":8,"\u00f2":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e6":8,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"s":7,"o":8,"l":6,"g":10,"e":8,"c":8,"a":8,";":-2,":":-1,".":13,"-":-4,",":12}},"w":{"d":"26,-170r43,0r-2,131r64,-131r40,0r0,131r63,-131r44,0r-93,171r-46,0r-3,-115r-54,115r-50,0","w":259,"k":{"\u00f8":4,"\u00f6":4,"\u00f3":4,"\u00f2":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"s":4,"o":4,"l":3,"g":7,"e":4,"c":4,"a":5,";":-5,":":-4,".":10,"-":-8,",":8}},"x":{"d":"32,-170r49,0r18,48r38,-48r51,0r-76,83r41,87r-50,0r-23,-58r-49,58r-52,0r88,-91","w":174,"k":{"\u00e9":8,"q":7,"o":8,"e":8,"c":8,"a":8}},"y":{"d":"29,-170r43,0r5,137r73,-137r44,0r-94,165v-36,57,-47,78,-127,77r9,-39v31,1,47,-1,61,-25","w":174,"k":{"\u00f8":4,"\u00f6":5,"\u00f3":5,"\u00f2":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e6":5,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"s":3,"o":5,"l":2,"g":7,"e":5,"c":5,"a":4,";":-5,":":-4,".":11,"-":-7,",":10}},"z":{"d":"34,-170r126,0r-8,32r-102,101r83,0r-9,37r-137,0r9,-34r102,-100r-73,0","w":151},"{":{"d":"71,71v-43,7,-71,-11,-57,-55v7,-23,13,-46,16,-71v0,-9,-5,-14,-15,-16r8,-28v62,-25,7,-161,126,-143r-8,32v-76,-8,-24,101,-88,125v34,26,-6,76,-5,113v1,13,14,12,30,12","w":110},"|":{"d":"71,-240r45,0r0,300r-45,0r0,-300"},"}":{"d":"60,-180v10,-26,1,-32,-27,-30r8,-32v47,-3,71,12,57,56v-7,23,-14,45,-16,71v0,8,5,14,14,16r-7,28v-64,22,-8,163,-126,142r8,-31v75,7,25,-103,87,-125v-29,-22,-2,-65,2,-95","w":110},"~":{"d":"85,-93v-12,0,-19,11,-25,22v-6,-7,-27,-10,-21,-22v12,-24,21,-41,51,-43v11,-2,58,20,69,19v16,0,20,-8,27,-19r25,14v-12,26,-24,44,-57,47v-13,1,-52,-19,-69,-18","w":240},"\u0192":{"d":"157,-171r40,0r-7,31r-45,0v-23,52,-38,111,-67,157v-23,36,-66,39,-102,14r13,-35v27,17,48,25,61,-6r52,-130r-34,0r6,-31r40,0v16,-58,57,-114,120,-76r-13,33v-42,-26,-51,8,-64,43","w":196},"\u0160":{"d":"120,-245v47,0,79,27,73,75r-43,0v1,-27,-11,-33,-33,-35v-25,-2,-49,25,-31,42v31,29,89,31,89,84v0,51,-35,84,-89,84v-55,0,-92,-31,-81,-87r43,0v-5,30,10,47,39,47v35,0,57,-39,29,-57v-33,-22,-81,-29,-82,-77v-1,-46,39,-76,86,-76xm149,-264r-37,0r-36,-50r36,0r22,25r37,-25r40,0","w":187},"\u0152":{"d":"20,-87v0,-108,106,-206,190,-132r5,-21r144,0r-10,39r-99,0r-14,57r95,0r-10,39r-95,0r-16,66r105,0r-9,39r-151,0r5,-15v-56,47,-140,6,-140,-72xm189,-151v0,-34,-13,-53,-44,-54v-46,-1,-80,68,-79,116v0,31,15,54,45,54v44,0,78,-69,78,-116","w":334},"\u017d":{"d":"55,-240r155,0r-8,32r-148,169r107,0r-9,39r-162,0r9,-36r147,-166r-100,0xm154,-264r-37,0r-36,-50r36,0r22,25r37,-25r40,0"},"\u0161":{"d":"27,-120v-3,-65,133,-80,134,-8v0,3,-1,7,-1,10r-40,0v1,-16,-9,-25,-24,-25v-16,-1,-35,18,-20,29v27,20,70,24,70,61v0,36,-35,58,-74,58v-43,0,-76,-22,-65,-66r41,0v-5,20,9,32,27,33v18,1,35,-16,23,-31v-28,-19,-70,-24,-71,-61xm126,-194r-35,0r-29,-53r34,0r16,27r31,-27r38,0","w":167},"\u0153":{"d":"165,-148v39,-48,133,-32,128,40v0,12,-2,22,-5,33r-112,0v-13,47,53,59,68,23r37,4v-15,52,-99,73,-135,27v-38,46,-134,29,-134,-45v0,-86,98,-148,153,-82xm136,-105v0,-22,-9,-36,-30,-36v-30,-1,-51,44,-50,76v0,21,9,35,30,35v29,1,51,-44,50,-75xm253,-107v5,-32,-31,-44,-52,-25v-7,6,-13,14,-17,25r69,0","w":302},"\u017e":{"d":"34,-170r126,0r-8,32r-102,101r83,0r-9,37r-137,0r9,-34r102,-100r-73,0xm121,-194r-35,0r-29,-53r34,0r15,27r32,-27r38,0","w":151},"\u0178":{"d":"36,-240r48,0r23,100r73,-100r53,0r-113,145r-23,95r-45,0r24,-95xm157,-284v-2,-29,52,-44,54,-9v3,30,-51,43,-54,9xm80,-284v-4,-29,52,-44,53,-9v3,30,-51,44,-53,9","w":187},"\u00a0":{"w":90},"\u00a1":{"d":"32,62r-46,0r44,-155r37,0xm33,-142v-4,-32,55,-51,57,-11v5,31,-56,51,-57,11","w":90},"\u00a2":{"d":"75,-38v-70,-10,-58,-126,-13,-158v15,-11,31,-19,51,-21r5,-24r23,0r-5,26v28,6,44,26,44,60r-40,0v0,-13,-4,-21,-12,-24r-23,107v12,-3,21,-13,27,-30r41,0v-11,42,-35,65,-75,66r-7,32r-23,0xm105,-180v-30,13,-56,82,-23,107","w":196},"\u00a3":{"d":"154,-244v36,0,55,21,52,63r-38,0v5,-25,-22,-32,-36,-18v-11,12,-20,40,-27,58r54,0r-7,32r-60,0v-10,30,-23,54,-40,74v37,-16,93,16,96,-35r34,0v-12,50,-21,70,-86,70r-107,0v28,-33,41,-60,59,-109r-28,0r7,-32r33,0v22,-56,38,-103,94,-103","w":196},"\u00a4":{"d":"22,-49r37,-37v-23,-32,-22,-67,0,-99r-37,-37r24,-24r37,37v31,-21,68,-22,100,-1r37,-36r24,24r-37,37v22,32,23,66,1,99r37,37r-24,24r-37,-37v-33,22,-67,23,-102,1r-36,36xm183,-135v0,-27,-22,-50,-49,-50v-28,0,-51,23,-51,50v0,26,24,50,50,50v27,0,50,-22,50,-50","w":240},"\u00a5":{"d":"175,-161r30,0r-7,28r-44,0r-19,24r57,0r-7,28r-64,0r-21,81r-45,0r21,-81r-67,0r7,-28r59,0r-7,-24r-46,0r7,-28r32,0r-22,-79r48,0r23,101r73,-101r53,0","w":196},"\u00a6":{"d":"71,-240r45,0r0,124r-45,0r0,-124xm71,-55r45,0r0,115r-45,0r0,-115"},"\u00a7":{"d":"122,-240v38,2,65,25,57,68r-35,0v4,-20,-6,-32,-25,-32v-14,0,-26,8,-26,21v10,36,74,39,74,82v0,23,-16,44,-46,60v40,40,-5,100,-58,100v-43,0,-70,-23,-63,-69r35,0v-2,22,9,34,29,34v21,0,39,-22,27,-40v-20,-18,-72,-36,-71,-72v1,-28,20,-44,46,-57v-37,-38,6,-98,56,-95xm99,-58v26,-11,40,-40,9,-55v-8,-6,-15,-12,-21,-15v-19,10,-36,27,-21,47v4,4,15,12,33,23"},"\u00a8":{"d":"136,-217v-4,-27,48,-40,48,-8v4,26,-48,41,-48,8xm65,-217v-4,-27,48,-40,48,-8v4,26,-46,40,-48,8"},"\u00a9":{"d":"88,-121v0,-60,62,-98,107,-62v10,9,15,21,15,37r-26,0v-3,-17,-13,-25,-28,-25v-24,0,-38,22,-36,49v-10,48,62,73,64,18v8,1,22,-3,27,2v1,32,-23,55,-55,55v-41,0,-68,-33,-68,-74xm25,-120v0,-68,58,-125,126,-125v66,0,123,59,123,125v0,67,-58,125,-124,125v-67,0,-125,-58,-125,-125xm252,-120v0,-55,-47,-105,-101,-105v-56,0,-103,48,-103,105v0,57,47,105,102,105v56,0,102,-49,102,-105","w":280},"\u00aa":{"d":"90,-148v-16,20,-63,12,-62,-16v2,-33,38,-30,73,-43v3,-10,-2,-14,-14,-14v-9,0,-16,3,-19,10r-27,0v7,-47,103,-45,86,11v-6,18,-15,41,-12,61r-26,0v0,-1,1,-3,1,-9xm96,-186v-22,5,-33,4,-38,18v-1,12,23,13,28,4v5,-4,8,-13,10,-22xm18,-120r94,0r-5,19r-93,0","w":111},"\u00ab":{"d":"63,0r-37,0r-14,-86r57,-86r37,0r-53,86xm131,0r-38,0r-14,-86r57,-86r38,0r-53,86","w":171},"\u00ac":{"d":"127,0r0,-55r-112,0r0,-41r156,0r0,96r-44,0"},"\u00ad":{"d":"6,-107r91,0r-8,32r-91,0","w":90},"\u00ae":{"d":"100,-191v53,-1,108,-3,107,44v0,19,-9,32,-26,40r34,60r-35,0r-30,-55r-19,0r0,55r-31,0r0,-144xm176,-147v0,-20,-19,-19,-45,-19r0,40v25,0,45,0,45,-21xm25,-120v0,-68,58,-125,126,-125v66,0,123,59,123,125v0,67,-58,125,-124,125v-67,0,-125,-58,-125,-125xm252,-120v0,-55,-47,-105,-101,-105v-56,0,-103,48,-103,105v0,57,47,105,102,105v56,0,102,-49,102,-105","w":280},"\u00af":{"d":"75,-233r105,0r-6,26r-106,0"},"\u00b0":{"d":"62,-192v0,-29,27,-53,55,-53v29,-1,55,25,55,54v0,29,-26,54,-55,54v-29,0,-55,-26,-55,-55xm145,-191v0,-15,-13,-28,-28,-28v-15,0,-28,14,-28,28v0,15,13,28,28,28v15,0,28,-13,28,-28"},"\u00b1":{"d":"113,-145r68,0r0,34r-68,0r0,58r-35,0r0,-58r-68,0r0,-34r68,0r0,-71r35,0r0,71xm10,-34r171,0r0,34r-171,0r0,-34","w":196},"\u00b2":{"d":"108,-200v-4,-21,-33,-16,-38,6r-24,0v-1,-47,88,-63,91,-11v-6,41,-48,59,-74,85r55,0r-6,26r-93,0r5,-22v49,-46,67,-47,84,-84","w":123},"\u00b3":{"d":"105,-199v-2,-21,-30,-18,-34,4r-25,0v3,-50,88,-58,88,-8v0,18,-9,31,-27,37v37,23,4,75,-37,75v-28,0,-50,-18,-45,-46r25,0v-2,14,9,21,21,21v14,1,24,-9,23,-22v-1,-15,-14,-18,-34,-17r6,-23v22,1,41,-5,39,-21","w":123},"\u00b4":{"d":"143,-247r55,0r-80,53r-32,0"},"\u00b5":{"d":"94,-30v55,0,31,-90,36,-143r44,0r0,173r-44,0r0,-21v-14,33,-56,33,-72,2r0,81r-44,0r0,-235r44,0v5,55,-20,143,36,143"},"\u00b6":{"d":"13,-161v0,-52,40,-79,101,-79r116,0r-9,34r-26,0r-59,239r-36,0r60,-239r-33,0r-60,239r-35,0r37,-149v-37,0,-56,-15,-56,-45","w":196},"\u00b7":{"d":"18,-83v-3,-31,55,-52,58,-12v4,32,-55,50,-58,12","w":90},"\u00b8":{"d":"37,58v19,10,41,6,42,-14v1,-13,-13,-18,-27,-15r15,-29r24,0r-10,17v17,4,26,14,26,28v0,34,-45,52,-75,31"},"\u00b9":{"d":"55,-193r4,-17v19,0,32,-8,40,-25r19,0r-35,141r-28,0r25,-101","w":123},"\u00ba":{"d":"33,-179v0,-35,23,-65,61,-65v27,0,45,17,45,43v0,67,-105,96,-106,22xm80,-157v25,3,46,-62,11,-65v-25,-2,-45,62,-11,65xm22,-120r93,0r-4,19r-94,0","w":118},"\u00bb":{"d":"110,-172r38,0r14,86r-57,86r-38,0r53,-86xm42,-172r38,0r14,86r-57,86r-38,0r53,-86","w":171,"k":{"\u00c6":13,"\u00c5":4,"\u00c4":4,"\u00c1":4,"Y":21,"W":7,"V":12,"T":19,"A":4}},"\u00bc":{"d":"55,-193r4,-17v19,0,32,-8,40,-25r20,0r-35,141r-29,0r25,-101xm238,-234r35,0r-185,234r-35,0xm271,-54r26,0r-6,23r-25,0r-8,31r-29,0r8,-31r-60,0r6,-22r77,-90r33,0xm244,-54r15,-61r-48,61r33,0","w":307},"\u00bd":{"d":"55,-193r4,-17v19,0,32,-8,40,-25r20,0r-35,141r-29,0r25,-101xm238,-234r35,0r-185,234r-35,0xm255,-84v16,-14,19,-36,-2,-36v-11,0,-18,7,-23,20r-24,0v-2,-48,91,-63,91,-11v0,39,-53,62,-74,85r55,0r-6,26r-93,0r6,-23v38,-32,61,-52,70,-61","w":307},"\u00be":{"d":"105,-199v-2,-21,-30,-18,-34,4r-25,0v3,-50,88,-58,88,-8v0,18,-9,31,-27,37v37,23,4,75,-37,75v-28,0,-50,-18,-45,-46r25,0v-2,14,9,21,21,21v14,1,24,-9,23,-22v-1,-15,-14,-18,-34,-17r6,-23v22,1,41,-5,39,-21xm237,-234r36,0r-186,234r-35,0xm271,-54r25,0r-5,23r-25,0r-8,31r-29,0r7,-31r-59,0r6,-22r76,-90r34,0xm244,-54r15,-61r-49,61r34,0","w":307},"\u00bf":{"d":"-13,21v0,-57,72,-61,76,-115r39,0v-1,58,-53,62,-67,107v0,11,7,15,18,15v15,0,24,-10,29,-29r34,0v-7,40,-29,67,-73,68v-31,0,-56,-17,-56,-46xm64,-142v-3,-31,55,-50,57,-11v4,32,-55,51,-57,11","w":143},"\u00c0":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0xm80,-313r56,0r40,50r-36,0","w":207,"k":{"Y":21,"W":11,"V":14,"U":12,"T":18,"Q":9,"O":9,"G":10,"C":10,".":-9,",":-9}},"\u00c1":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0xm177,-312r63,0r-87,48r-38,0","w":207,"k":{"\u00ab":3,"y":9,"w":6,"v":8,"u":5,"t":4,"q":3,"o":4,"g":-5,"e":4,"d":3,"c":4,"b":1,"a":3,"Y":21,"W":11,"V":14,"U":12,"T":18,"Q":9,"O":9,"G":10,"C":10,".":-9,"-":-8,",":-9}},"\u00c2":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0xm140,-314r37,0r36,50r-36,0r-21,-25r-38,25r-40,0","w":207,"k":{"Y":21,"W":11,"V":14,"U":12,"T":18,"Q":9,"O":9,"G":10,"C":10,".":-9,",":-9}},"\u00c3":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0xm217,-305v-17,48,-51,37,-90,27v-8,0,-15,4,-22,12r-14,-5v20,-47,49,-38,89,-27v7,0,15,-4,23,-12","w":207,"k":{"Y":21,"W":11,"V":14,"U":12,"T":18,"Q":9,"O":9,"G":10,"C":10,".":-9,",":-9}},"\u00c4":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0xm167,-284v-4,-29,52,-44,53,-9v3,30,-50,43,-53,9xm89,-284v-3,-30,52,-43,54,-9v2,29,-51,44,-54,9","w":207,"k":{"\u00ab":3,"y":9,"w":6,"v":8,"u":5,"t":4,"q":3,"o":4,"g":-5,"d":3,"c":4,"b":1,"a":3,"Y":21,"W":11,"V":14,"U":12,"T":18,"Q":9,"O":9,"G":10,"C":10,".":-9,"-":-8,",":-9}},"\u00c5":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0xm116,-290v0,-19,17,-36,36,-36v18,0,37,17,36,36v0,19,-17,36,-36,36v-19,0,-36,-17,-36,-36xm169,-290v0,-10,-7,-17,-17,-17v-10,0,-18,7,-18,17v0,10,8,17,18,17v10,0,17,-7,17,-17","w":207,"k":{"\u00ab":3,"y":9,"w":6,"v":8,"u":5,"t":4,"q":3,"o":4,"g":-5,"e":4,"d":3,"c":4,"b":1,"a":3,"Y":21,"W":11,"V":14,"U":12,"T":18,"Q":9,"O":9,"G":10,"C":10,".":-9,"-":-8,",":-9}},"\u00c6":{"d":"181,-240r160,0r-10,39r-94,0r-14,58r90,0r-10,39r-90,0r-16,65r102,0r-10,39r-147,0r13,-50r-81,0r-40,50r-52,0xm164,-89r30,-112r-88,112r58,0","w":317},"\u00c7":{"d":"217,-89v-10,51,-46,93,-103,93r-8,15v19,5,28,15,28,31v0,39,-48,56,-82,35r5,-21v20,8,46,8,46,-15v-1,-14,-14,-21,-30,-17r16,-29v-46,-11,-68,-42,-68,-94v1,-83,49,-152,127,-154v50,-1,81,31,78,83r-41,0v-1,-29,-14,-43,-40,-43v-45,0,-78,65,-78,114v0,32,17,56,48,56v29,0,49,-18,60,-54r42,0","w":223,"k":{"A":3}},"\u00c8":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0xm84,-313r56,0r39,50r-35,0","w":187},"\u00c9":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0xm172,-312r62,0r-86,48r-39,0","w":187},"\u00ca":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0xm142,-314r36,0r37,50r-36,0r-22,-25r-37,25r-40,0","w":187},"\u00cb":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0xm165,-284v-2,-29,52,-44,54,-9v3,30,-51,43,-54,9xm87,-284v-2,-29,52,-44,54,-9v3,30,-51,43,-54,9","w":187},"\u00cc":{"d":"54,0r-45,0r60,-240r44,0xm38,-313r52,0r32,50r-33,0","w":103},"\u00cd":{"d":"54,0r-45,0r60,-240r44,0xm117,-312r59,0r-74,48r-35,0","w":103},"\u00ce":{"d":"54,0r-45,0r60,-240r44,0xm91,-314r37,0r30,50r-35,0r-17,-25r-32,25r-39,0","w":103},"\u00cf":{"d":"54,0r-45,0r60,-240r45,0xm111,-284v-3,-30,51,-44,53,-9v3,30,-51,44,-53,9xm42,-284v-2,-29,52,-44,54,-9v3,30,-51,43,-54,9","w":103},"\u00d0":{"d":"228,-150v-6,96,-48,156,-159,150r-60,0r27,-107r-24,0r9,-36r24,0r24,-97v90,-4,164,2,159,90xm182,-150v2,-47,-28,-54,-78,-51r-15,58r51,0r-9,36r-50,0r-17,68v85,9,115,-39,118,-111","w":230},"\u00d1":{"d":"69,-240r47,0r58,173r43,-173r42,0r-60,240r-44,0r-61,-173r-43,173r-42,0xm242,-305v-18,48,-51,37,-90,27v-8,0,-15,4,-22,12r-15,-5v11,-20,20,-37,43,-37v24,0,52,22,69,-2","w":249},"\u00d2":{"d":"20,-87v2,-83,48,-158,129,-158v55,0,87,36,86,93v-2,83,-49,157,-128,157v-55,0,-88,-36,-87,-92xm189,-152v0,-32,-15,-52,-43,-53v-46,-2,-81,69,-80,116v0,31,15,54,45,54v44,0,78,-71,78,-117xm99,-313r57,0r39,50r-36,0","w":236,"k":{"Y":14,"V":7,"T":10}},"\u00d3":{"d":"20,-87v2,-83,48,-158,129,-158v55,0,87,36,86,93v-2,83,-49,157,-128,157v-55,0,-88,-36,-87,-92xm189,-152v0,-32,-15,-52,-43,-53v-46,-2,-81,69,-80,116v0,31,15,54,45,54v44,0,78,-71,78,-117xm192,-312r62,0r-87,48r-38,0","w":236,"k":{"Y":14,"W":3,"V":7,"T":10,"A":9}},"\u00d4":{"d":"20,-87v2,-83,48,-158,129,-158v55,0,87,36,86,93v-2,83,-49,157,-128,157v-55,0,-88,-36,-87,-92xm189,-152v0,-32,-15,-52,-43,-53v-46,-2,-81,69,-80,116v0,31,15,54,45,54v44,0,78,-71,78,-117xm156,-314r37,0r36,50r-36,0r-22,-25r-37,25r-40,0","w":236,"k":{"Y":14,"V":7,"T":10}},"\u00d5":{"d":"20,-87v2,-83,48,-158,129,-158v55,0,87,36,86,93v-2,83,-49,157,-128,157v-55,0,-88,-36,-87,-92xm189,-152v0,-32,-15,-52,-43,-53v-46,-2,-81,69,-80,116v0,31,15,54,45,54v44,0,78,-71,78,-117xm232,-305v-16,48,-53,37,-91,27v-7,0,-14,4,-21,12r-15,-5v18,-47,50,-38,89,-27v7,0,15,-4,23,-12","w":236,"k":{"Y":14,"V":7,"T":10}},"\u00d6":{"d":"20,-87v2,-83,49,-157,129,-158v55,0,87,36,86,93v-2,83,-49,157,-128,157v-55,0,-87,-36,-87,-92xm189,-152v0,-32,-15,-52,-43,-53v-46,-2,-81,69,-80,116v0,31,15,54,45,54v44,0,78,-71,78,-117xm182,-284v-4,-29,52,-44,53,-9v3,30,-51,44,-53,9xm104,-284v-3,-30,52,-43,54,-9v2,29,-51,44,-54,9","w":236,"k":{"Y":14,"X":11,"W":3,"V":7,"T":10,"A":9}},"\u00d7":{"d":"132,-120r51,52r-24,23r-51,-50r-53,52r-24,-24r53,-53r-51,-51r24,-24r51,51r51,-51r24,24","w":196},"\u00d8":{"d":"30,-40v-33,-93,27,-207,119,-205v27,0,49,8,65,26r23,-21r32,0r-43,41v45,118,-78,262,-184,179r-22,20r-32,0xm179,-189v-57,-52,-123,39,-112,114xm75,-52v57,56,126,-42,113,-114","w":236,"k":{"A":8}},"\u00d9":{"d":"188,-27v-36,52,-167,40,-161,-37v4,-58,28,-122,40,-176r44,0v-12,53,-39,114,-39,170v0,43,72,46,86,10v19,-52,32,-123,48,-180r45,0r-49,190v-3,8,-9,15,-14,23xm100,-313r57,0r38,50r-35,0","w":238,"k":{"A":11}},"\u00da":{"d":"188,-27v-36,52,-167,40,-161,-37v4,-58,28,-122,40,-176r44,0v-12,53,-39,114,-39,170v0,43,72,46,86,10v19,-52,32,-123,48,-180r45,0r-49,190v-3,8,-9,15,-14,23xm193,-312r62,0r-87,48r-38,0","w":238,"k":{"r":5,"p":5,"n":5,"m":5,"A":11,".":5,",":4}},"\u00db":{"d":"188,-27v-36,52,-167,40,-161,-37v4,-58,28,-122,40,-176r44,0v-12,53,-39,114,-39,170v0,43,72,46,86,10v19,-52,32,-123,48,-180r45,0r-49,190v-3,8,-9,15,-14,23xm159,-314r37,0r36,50r-36,0r-22,-25r-37,25r-40,0","w":238,"k":{"A":11}},"\u00dc":{"d":"188,-27v-36,52,-167,40,-161,-37v4,-58,28,-122,40,-176r44,0v-12,53,-39,114,-39,170v0,43,72,46,86,10v19,-52,32,-123,48,-180r45,0r-49,190v-3,8,-9,15,-14,23xm183,-284v-4,-29,52,-44,53,-9v3,30,-51,44,-53,9xm105,-284v-4,-29,52,-44,53,-9v3,30,-50,43,-53,9","w":238,"k":{"r":5,"p":5,"n":5,"m":5,"b":4,"A":11,".":5,",":4}},"\u00dd":{"d":"36,-240r48,0r23,100r73,-100r53,0r-113,145r-23,95r-45,0r24,-95xm167,-312r63,0r-87,48r-38,0","w":187},"\u00de":{"d":"207,-145v0,72,-54,96,-139,89r-14,56r-45,0r60,-240r45,0r-8,34v61,-2,101,9,101,61xm160,-140v0,-32,-33,-26,-65,-27r-17,72v46,2,82,-2,82,-45","w":197},"\u00df":{"d":"102,-153v41,10,64,-50,22,-56v-27,4,-31,19,-39,53r-38,156r-43,0r49,-193v11,-29,38,-51,76,-51v33,0,63,20,62,52v0,31,-20,50,-46,57v69,26,29,143,-38,138v-11,0,-21,-3,-33,-8r10,-39v27,19,53,-5,52,-35v0,-24,-14,-35,-43,-35","w":195},"\u00e0":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,2,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35xm62,-248r49,0r29,55r-30,0","k":{"y":9,"w":5,"v":8}},"\u00e1":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,2,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35xm138,-247r55,0r-79,53r-33,0","k":{"y":9,"w":5,"v":8}},"\u00e2":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,2,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35xm108,-247r35,0r29,53r-34,0r-16,-28r-31,28r-38,0"},"\u00e3":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,2,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35xm179,-238v-16,48,-50,37,-84,26v-7,0,-13,4,-19,13r-15,-5v19,-48,45,-39,82,-27v6,0,13,-4,21,-12"},"\u00e4":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,2,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35xm131,-217v-2,-26,48,-40,49,-8v2,26,-47,40,-49,8xm60,-217v-2,-26,47,-40,49,-8v2,26,-47,40,-49,8","k":{"y":9,"w":5,"v":8}},"\u00e5":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,2,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35xm84,-224v0,-20,17,-36,36,-36v19,0,35,17,35,36v0,19,-16,36,-35,36v-19,0,-36,-16,-36,-36xm137,-224v0,-10,-7,-18,-17,-18v-11,0,-18,7,-18,18v0,10,8,17,18,17v10,0,17,-7,17,-17","k":{"y":9,"w":5,"v":8}},"\u00e6":{"d":"152,-155v43,-41,124,-19,119,47v0,12,-2,23,-5,33r-113,0v-9,49,50,59,68,23r37,4v-21,58,-98,73,-133,23v-29,39,-121,42,-121,-16v0,-51,54,-59,116,-66v5,-18,5,-33,-21,-32v-16,0,-26,6,-32,18r-40,0v8,-52,90,-71,125,-34xm49,-48v0,26,44,22,53,2v4,-3,7,-20,11,-31v-42,5,-64,14,-64,29xm231,-107v-1,-49,-59,-41,-70,0r70,0","w":279,"k":{"y":7,"w":3,"v":5}},"\u00e7":{"d":"161,-61v-8,38,-32,64,-74,65r-5,13v17,4,25,14,25,28v-1,35,-43,52,-74,31r4,-18v19,9,42,7,42,-14v1,-13,-13,-18,-27,-15r14,-26v-96,-23,-49,-179,41,-179v40,0,61,21,61,62r-40,0v0,-18,-8,-27,-23,-27v-29,1,-48,43,-48,77v0,45,55,44,64,3r40,0","w":175},"\u00e8":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,34,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0xm66,-248r48,0r30,55r-30,0","w":182},"\u00e9":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,34,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0xm140,-247r55,0r-79,53r-32,0","w":182,"k":{"y":8,"w":3,"v":5}},"\u00ea":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,34,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0xm112,-247r35,0r28,53r-34,0r-15,-28r-32,28r-38,0","w":182,"k":{"y":8,"w":3,"v":5}},"\u00eb":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,34,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0xm133,-217v-3,-25,47,-41,49,-8v3,27,-48,39,-49,8xm63,-217v-3,-27,47,-40,48,-8v4,26,-48,41,-48,8","w":182},"\u00ec":{"d":"47,-170r43,0r-42,170r-44,0xm28,-248r46,0r22,55r-28,0","w":92},"\u00ed":{"d":"47,-170r43,0r-42,170r-44,0xm92,-247r53,0r-65,53r-30,0","w":92},"\u00ee":{"d":"47,-170r43,0r-42,170r-44,0xm70,-247r35,0r23,53r-33,0r-10,-28r-27,28r-37,0","w":92},"\u00ef":{"d":"47,-170r43,0r-42,170r-44,0xm87,-217v-3,-25,47,-41,49,-8v2,26,-48,40,-49,8xm26,-217v-4,-26,47,-41,49,-8v2,26,-48,40,-49,8","w":92},"\u00f0":{"d":"12,-66v0,-68,75,-146,129,-89v-3,-17,-8,-31,-14,-42r-27,9r-9,-21r25,-9r-9,-16r28,-13r12,17r28,-10r10,21r-26,9v49,80,22,216,-74,215v-45,0,-73,-26,-73,-71xm136,-105v0,-22,-9,-36,-29,-36v-30,-2,-50,43,-50,76v0,22,9,35,30,35v29,1,50,-44,49,-75","w":190},"\u00f1":{"d":"128,-89v7,-26,6,-46,-19,-46v-53,0,-42,90,-61,135r-44,0r28,-110v7,-32,10,-45,10,-60r42,0v0,8,-1,15,-3,24v25,-41,98,-37,98,14v0,44,-21,90,-30,132r-43,0xm186,-238v-16,48,-50,38,-83,26v-7,0,-13,4,-19,13r-15,-5v10,-20,20,-38,40,-38v21,0,46,25,62,-1","w":192},"\u00f2":{"d":"12,-66v2,-61,36,-110,97,-110v45,0,71,25,71,71v0,57,-36,112,-96,110v-45,0,-73,-26,-72,-71xm86,-30v29,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35xm71,-248r48,0r30,55r-30,0","w":190,"k":{"y":8,"w":4,"v":6}},"\u00f3":{"d":"12,-66v2,-61,36,-110,97,-110v45,0,71,25,71,71v0,57,-36,112,-96,110v-45,0,-73,-26,-72,-71xm86,-30v29,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35xm145,-247r56,0r-80,53r-32,0","w":190,"k":{"y":8,"w":4,"v":6}},"\u00f4":{"d":"12,-66v2,-61,36,-110,97,-110v45,0,71,25,71,71v0,57,-36,112,-96,110v-45,0,-73,-26,-72,-71xm86,-30v29,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35xm114,-247r35,0r29,53r-34,0r-15,-28r-32,28r-38,0","w":190,"k":{"t":3}},"\u00f5":{"d":"12,-66v2,-61,36,-110,97,-110v45,0,71,25,71,71v0,57,-36,112,-96,110v-45,0,-73,-26,-72,-71xm86,-30v29,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35xm185,-238v-16,47,-49,38,-83,26v-7,0,-14,4,-20,13r-14,-5v19,-48,45,-39,82,-27v6,0,13,-4,20,-12","w":190},"\u00f6":{"d":"12,-66v2,-61,36,-110,97,-110v45,0,71,25,71,71v0,57,-36,112,-96,110v-45,0,-73,-26,-72,-71xm86,-30v29,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35xm139,-217v-3,-27,47,-40,48,-8v4,26,-48,41,-48,8xm68,-217v-4,-26,48,-41,48,-8v4,26,-46,40,-48,8","w":190,"k":{"y":8,"x":7,"w":4,"v":6,"t":3}},"\u00f7":{"d":"83,-62v0,-14,11,-25,25,-25v13,0,24,12,24,25v0,13,-11,24,-24,24v-13,0,-25,-11,-25,-24xm83,-177v0,-14,11,-25,25,-25v13,0,24,12,24,25v0,13,-11,24,-24,24v-13,0,-25,-11,-25,-24xm22,-137r171,0r0,34r-171,0r0,-34","w":196},"\u00f8":{"d":"22,-33v-32,-90,63,-183,143,-125r15,-14r30,0r-34,29v28,69,-16,148,-88,148v-24,0,-43,-8,-56,-22r-19,17r-30,0xm131,-132v-34,-32,-74,26,-70,67xm66,-43v38,38,80,-21,74,-72","w":190},"\u00f9":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-30,117v-7,29,-9,38,-9,53r-40,0v-2,-5,0,-13,1,-20xm72,-248r48,0r30,55r-30,0","w":195},"\u00fa":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-30,117v-7,29,-9,38,-9,53r-40,0v-2,-5,0,-13,1,-20xm150,-247r56,0r-80,53r-32,0","w":195},"\u00fb":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-30,117v-7,29,-9,38,-9,53r-40,0v-2,-5,0,-13,1,-20xm122,-247r34,0r29,53r-34,0r-15,-28r-32,28r-38,0","w":195},"\u00fc":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-30,117v-7,29,-9,38,-9,53r-40,0v-2,-5,0,-13,1,-20xm143,-217v-2,-26,48,-40,49,-8v2,26,-47,40,-49,8xm72,-217v-3,-25,47,-41,49,-8v3,27,-48,39,-49,8","w":195},"\u00fd":{"d":"29,-170r43,0r5,137r73,-137r44,0r-94,165v-36,57,-47,78,-127,77r9,-39v31,1,47,-1,61,-25xm143,-247r56,0r-80,53r-32,0","w":174},"\u00fe":{"d":"184,-108v0,76,-76,150,-132,89r-22,88r-43,0r78,-311r43,0r-23,90v32,-45,99,-16,99,44xm140,-103v0,-20,-9,-34,-28,-34v-40,-2,-72,99,-17,104v26,2,46,-41,45,-70","w":193},"\u00ff":{"d":"29,-170r43,0r5,137r73,-137r44,0r-94,165v-36,57,-47,78,-127,77r9,-39v31,1,47,-1,61,-25xm133,-217v-4,-27,48,-40,48,-8v4,26,-46,40,-48,8xm62,-217v-4,-26,47,-41,49,-8v2,26,-48,40,-49,8","w":174},"\u0141":{"d":"92,-149r63,-39r-11,42r-63,40r-16,67r101,0r-10,39r-147,0r22,-86r-32,20r11,-42r31,-21r28,-111r46,0","w":178},"\u0131":{"d":"47,-170r43,0r-42,170r-44,0","w":92},"\u0142":{"d":"87,-161r33,-20r-9,37r-33,20r-30,124r-44,0r27,-104r-33,20r9,-37r33,-20r25,-101r43,0","w":92},"\u0132":{"d":"54,0r-45,0r60,-240r45,0xm177,-240r45,0r-60,237v-14,36,-47,54,-102,51r10,-39v57,-2,51,-19,66,-81","w":212},"\u01cd":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0xm165,-264r-36,0r-37,-50r36,0r22,25r37,-25r40,0","w":207},"\u0102":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0xm150,-264v-28,0,-48,-19,-43,-48r18,0v1,32,60,24,67,0r17,0v-10,32,-29,48,-59,48","w":207},"\u0104":{"d":"174,67v-23,10,-54,1,-54,-24v0,-16,13,-31,38,-43r-19,0r-3,-50r-77,0r-28,50r-49,0r139,-240r45,0r19,240v-6,2,-59,44,-22,52v4,0,10,-2,16,-4xm135,-88r-2,-109r-55,109r57,0","w":207},"\u0106":{"d":"148,-245v50,-1,81,31,78,83r-41,0v-1,-29,-14,-43,-40,-43v-45,0,-78,65,-78,114v0,33,17,56,48,56v28,0,48,-18,60,-54r42,0v-12,53,-46,93,-104,94v-58,1,-93,-37,-92,-96v1,-83,49,-152,127,-154xm184,-312r62,0r-87,48r-38,0","w":223},"\u010c":{"d":"148,-245v50,-1,81,31,78,83r-41,0v-1,-29,-14,-43,-40,-43v-45,0,-78,65,-78,114v0,33,17,56,48,56v28,0,48,-18,60,-54r42,0v-12,53,-46,93,-104,94v-58,1,-93,-37,-92,-96v1,-83,49,-152,127,-154xm176,-264r-37,0r-36,-50r36,0r22,25r37,-25r40,0","w":223},"\u010a":{"d":"148,-245v50,-1,81,31,78,83r-41,0v-1,-29,-14,-43,-40,-43v-45,0,-78,65,-78,114v0,33,17,56,48,56v28,0,48,-18,60,-54r42,0v-12,53,-46,93,-104,94v-58,1,-93,-37,-92,-96v1,-83,49,-152,127,-154xm138,-284v-3,-30,51,-44,53,-9v2,29,-51,44,-53,9","w":223},"\u010e":{"d":"228,-151v-6,97,-48,157,-159,151r-60,0r60,-240v90,-4,164,3,159,89xm182,-150v2,-47,-28,-54,-78,-51r-40,162v85,10,114,-40,118,-111xm165,-264r-37,0r-37,-50r37,0r21,25r37,-25r41,0","w":230},"\u0110":{"d":"228,-150v-6,96,-48,156,-159,150r-60,0r27,-107r-24,0r9,-36r24,0r24,-97v90,-4,164,2,159,90xm182,-150v2,-47,-28,-54,-78,-51r-15,58r51,0r-9,36r-50,0r-17,68v85,9,115,-39,118,-111","w":230},"\u011a":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0xm165,-264r-36,0r-37,-50r36,0r22,25r37,-25r40,0","w":187},"\u0116":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0xm125,-284v-2,-29,51,-44,54,-9v2,29,-51,44,-54,9","w":187},"\u0118":{"d":"127,71v-55,-7,-32,-61,6,-71r-124,0r60,-240r144,0r-10,39r-99,0r-14,57r94,0r-9,39r-95,0r-16,66r105,0r-10,39v-23,16,-35,28,-35,39v0,15,16,15,29,9r-5,19v-7,3,-14,4,-21,4","w":187},"\u01e6":{"d":"67,-91v0,54,56,68,98,46r10,-41r-47,0r8,-34r87,0r-26,102v-67,45,-182,25,-176,-72v5,-83,50,-153,129,-155v51,0,83,29,80,83r-41,0v-1,-29,-14,-43,-41,-43v-49,-1,-81,64,-81,114xm177,-264r-37,0r-36,-50r36,0r22,25r37,-25r40,0","w":232},"\u011e":{"d":"67,-91v0,54,56,68,98,46r10,-41r-47,0r8,-34r87,0r-26,102v-67,45,-182,25,-176,-72v5,-83,50,-153,129,-155v51,0,83,29,80,83r-41,0v-1,-29,-14,-43,-41,-43v-49,-1,-81,64,-81,114xm163,-264v-28,0,-46,-17,-43,-48r18,0v1,32,60,23,68,0r16,0v-10,32,-29,48,-59,48","w":232},"\u0120":{"d":"67,-91v0,54,56,68,98,46r10,-41r-47,0r8,-34r87,0r-26,102v-67,45,-182,25,-176,-72v5,-83,50,-153,129,-155v51,0,83,29,80,83r-41,0v-1,-29,-14,-43,-41,-43v-49,-1,-81,64,-81,114xm139,-284v-3,-30,51,-44,53,-9v3,30,-51,44,-53,9","w":232},"\u0130":{"d":"54,0r-45,0r60,-240r45,0xm76,-284v-4,-29,52,-44,53,-9v3,30,-51,44,-53,9","w":103},"\u0139":{"d":"69,-240r45,0r-50,201r102,0r-10,39r-147,0xm129,-312r63,0r-87,48r-38,0","w":178},"\u013d":{"d":"69,-240r45,0r-50,201r102,0r-10,39r-147,0xm141,-217v-3,-30,52,-40,51,-6v0,18,-13,41,-40,66r-20,0v15,-15,24,-29,27,-42v-12,0,-17,-7,-18,-18","w":178},"\u0143":{"d":"69,-240r47,0r58,173r43,-173r42,0r-60,240r-44,0r-61,-173r-43,173r-42,0xm194,-312r63,0r-87,48r-38,0","w":249},"\u0147":{"d":"69,-240r47,0r58,173r43,-173r42,0r-60,240r-44,0r-61,-173r-43,173r-42,0xm188,-264r-36,0r-37,-50r36,0r22,25r37,-25r40,0","w":249},"\u0150":{"d":"20,-87v2,-83,48,-158,129,-158v55,0,87,36,86,93v-2,83,-49,157,-128,157v-55,0,-88,-36,-87,-92xm189,-152v0,-32,-15,-52,-43,-53v-46,-2,-81,69,-80,116v0,31,15,54,45,54v44,0,78,-71,78,-117xm167,-312r50,0r-74,48r-31,0xm233,-312r50,0r-74,48r-31,0","w":236},"\u0154":{"d":"216,-179v-2,42,-23,69,-59,80r29,99r-51,0r-22,-92r-36,0r-23,92r-45,0r60,-240v71,0,150,-9,147,61xm170,-173v1,-31,-32,-28,-66,-28r-18,70v45,1,83,-2,84,-42xm172,-312r63,0r-87,48r-38,0","w":206},"\u0158":{"d":"216,-179v-2,42,-23,69,-59,80r29,99r-51,0r-22,-92r-36,0r-23,92r-45,0r60,-240v71,0,150,-9,147,61xm170,-173v1,-31,-32,-28,-66,-28r-18,70v45,1,83,-2,84,-42xm161,-264r-36,0r-37,-50r37,0r21,25r37,-25r41,0","w":206},"\u015a":{"d":"120,-245v47,0,79,27,73,75r-43,0v1,-27,-11,-33,-33,-35v-25,-2,-49,25,-31,42v31,29,89,31,89,84v0,51,-35,84,-89,84v-55,0,-92,-31,-81,-87r43,0v-5,30,10,47,39,47v35,0,57,-39,29,-57v-33,-22,-81,-29,-82,-77v-1,-46,39,-76,86,-76xm159,-312r62,0r-86,48r-38,0","w":187},"\u015e":{"d":"117,-205v-25,-2,-49,25,-31,42v31,30,92,31,89,84v-3,51,-30,83,-86,83r-7,15v19,5,28,15,28,31v0,38,-49,56,-83,35r5,-21v20,8,46,8,46,-15v0,-15,-13,-21,-29,-17r16,-29v-44,-7,-69,-36,-60,-85r43,0v-5,30,6,47,39,47v35,0,57,-39,29,-57v-33,-22,-81,-29,-82,-77v-1,-46,39,-76,86,-76v47,0,79,27,73,75r-43,0v1,-27,-11,-33,-33,-35","w":187},"\u0164":{"d":"44,-240r162,0r-12,39r-56,0r-50,201r-45,0r50,-201r-61,0xm149,-264r-37,0r-36,-50r36,0r22,25r37,-25r40,0","w":171},"\u016e":{"d":"188,-27v-36,52,-167,40,-161,-37v4,-58,28,-122,40,-176r44,0v-12,53,-39,114,-39,170v0,43,72,46,86,10v19,-52,32,-123,48,-180r45,0r-49,190v-3,8,-9,15,-14,23xm132,-290v0,-19,17,-36,36,-36v19,0,36,17,36,36v0,19,-17,36,-36,36v-19,0,-36,-17,-36,-36xm185,-290v1,-11,-7,-17,-17,-17v-11,-1,-17,7,-17,17v0,10,7,17,17,17v10,0,17,-7,17,-17","w":238},"\u0170":{"d":"188,-27v-36,52,-167,40,-161,-37v4,-58,28,-122,40,-176r44,0v-12,53,-39,114,-39,170v0,43,72,46,86,10v19,-52,32,-123,48,-180r45,0r-49,190v-3,8,-9,15,-14,23xm168,-312r50,0r-74,48r-31,0xm234,-312r50,0r-74,48r-31,0","w":238},"\u0179":{"d":"55,-240r155,0r-8,32r-148,169r107,0r-9,39r-162,0r9,-36r147,-166r-100,0xm164,-312r62,0r-86,48r-38,0"},"\u017b":{"d":"55,-240r155,0r-8,32r-148,169r107,0r-9,39r-162,0r9,-36r147,-166r-100,0xm115,-284v-2,-29,52,-44,54,-9v2,29,-51,44,-54,9"},"\u0100":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0xm100,-303r116,0r-7,28r-116,0","w":207},"\u0162":{"d":"44,-240r162,0r-12,39r-56,0r-50,201r-45,0r50,-201r-61,0xm31,47v-3,-28,51,-41,51,-6v0,19,-13,41,-40,66r-20,0v15,-14,24,-29,28,-42v-12,0,-19,-6,-19,-18","w":171},"\u0108":{"d":"148,-245v50,-1,81,31,78,83r-41,0v-1,-29,-14,-43,-40,-43v-45,0,-78,65,-78,114v0,33,17,56,48,56v28,0,48,-18,60,-54r42,0v-12,53,-46,93,-104,94v-58,1,-93,-37,-92,-96v1,-83,49,-152,127,-154xm153,-314r36,0r37,50r-37,0r-22,-25r-36,25r-41,0","w":220},"\u0174":{"d":"39,-240r43,0r-4,192r87,-192r42,0r-5,192r91,-192r44,0r-120,240r-52,0r2,-161r-74,161r-53,0xm185,-314r36,0r37,50r-37,0r-21,-25r-37,25r-41,0","w":294},"\u0176":{"d":"36,-240r48,0r23,100r73,-100r53,0r-113,145r-23,95r-45,0r24,-95xm134,-314r36,0r37,50r-36,0r-22,-25r-37,25r-40,0","w":187},"\u0126":{"d":"234,-173r-43,173r-45,0r26,-106r-92,0r-26,106r-45,0r43,-173r-24,0r9,-36r24,0r8,-31r45,0r-8,31r92,0r8,-31r45,0r-8,31r24,0r-9,36r-24,0xm189,-173r-92,0r-7,29r92,0","w":240},"\u0112":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0xm98,-303r117,0r-8,28r-116,0","w":187},"\u011c":{"d":"67,-91v0,54,56,68,98,46r10,-41r-47,0r8,-34r87,0r-26,102v-67,45,-182,25,-176,-72v5,-83,50,-153,129,-155v51,0,83,29,80,83r-41,0v-1,-29,-14,-43,-41,-43v-49,-1,-81,64,-81,114xm154,-314r36,0r37,50r-37,0r-22,-25r-36,25r-41,0","w":232},"\u0124":{"d":"90,-144r92,0r24,-96r45,0r-60,240r-45,0r26,-106r-92,0r-26,106r-45,0r60,-240r45,0xm161,-314r36,0r36,50r-36,0r-22,-25r-36,25r-41,0","w":240},"\u012a":{"d":"54,0r-45,0r60,-240r45,0xm55,-303r102,0r-7,28r-101,0","w":103},"\u012e":{"d":"46,67v-23,10,-54,1,-54,-24v0,-18,13,-32,39,-43r-22,0r60,-240r45,0r-60,240v-21,16,-32,29,-32,39v1,15,15,15,28,9","w":103},"\u0136":{"d":"194,-240r54,0r-112,114r60,126r-55,0r-55,-127xm69,-240r45,0r-60,240r-45,0xm60,47v-2,-28,51,-42,51,-6v0,19,-13,41,-40,66r-21,0v15,-14,24,-28,28,-42v-12,0,-17,-7,-18,-18","w":216},"\u013b":{"d":"69,-240r45,0r-50,201r102,0r-10,39r-147,0xm47,47v-2,-28,51,-41,51,-6v0,19,-13,41,-40,66r-20,0v11,-10,24,-27,28,-42v-12,0,-19,-7,-19,-18","w":178},"\u0145":{"d":"69,-240r47,0r58,173r43,-173r42,0r-60,240r-44,0r-61,-173r-43,173r-42,0xm97,19v12,0,23,9,22,22v0,19,-13,42,-40,66r-21,0v12,-10,23,-27,28,-42v-12,0,-17,-7,-18,-18v-1,-14,14,-28,29,-28","w":249},"\u014c":{"d":"23,-87v2,-83,48,-158,129,-158v55,0,87,37,86,93v-1,83,-49,157,-128,157v-55,0,-88,-36,-87,-92xm192,-152v0,-31,-16,-52,-44,-53v-46,-2,-79,69,-79,116v0,31,14,54,44,54v45,0,79,-72,79,-117xm118,-303r116,0r-7,28r-116,0","w":236},"\u0156":{"d":"216,-179v-2,42,-23,69,-59,80r29,99r-51,0r-22,-92r-36,0r-23,92r-45,0r60,-240v71,0,150,-9,147,61xm170,-173v1,-31,-32,-28,-66,-28r-18,70v45,1,83,-2,84,-42xm59,47v-3,-28,51,-41,51,-6v0,19,-13,41,-40,66r-20,0v12,-10,23,-27,28,-42v-12,0,-19,-6,-19,-18","w":206},"\u015c":{"d":"120,-245v47,0,79,27,73,75r-43,0v1,-27,-11,-33,-33,-35v-25,-2,-49,25,-31,42v31,29,89,31,89,84v0,51,-35,84,-89,84v-55,0,-92,-31,-81,-87r43,0v-5,30,10,47,39,47v35,0,57,-39,29,-57v-33,-22,-81,-29,-82,-77v-1,-46,39,-76,86,-76xm126,-314r36,0r37,50r-37,0r-22,-25r-36,25r-41,0","w":187},"\u0122":{"d":"67,-91v0,54,56,68,98,46r10,-41r-47,0r8,-34r87,0r-26,102v-67,45,-182,25,-176,-72v5,-83,50,-153,129,-155v51,0,83,29,80,83r-41,0v-1,-29,-14,-43,-41,-43v-49,-1,-81,64,-81,114xm73,47v-3,-29,52,-41,52,-6v0,19,-13,41,-40,66r-21,0v15,-14,24,-29,28,-42v-12,0,-18,-8,-19,-18","w":232},"\u01d3":{"d":"188,-27v-36,52,-167,40,-161,-37v4,-58,28,-122,40,-176r44,0v-12,53,-39,114,-39,170v0,43,72,46,86,10v19,-52,32,-123,48,-180r45,0r-49,190v-3,8,-9,15,-14,23xm183,-264r-37,0r-36,-50r36,0r22,25r36,-25r41,0","w":238},"\u016a":{"d":"188,-27v-36,52,-167,40,-161,-37v4,-58,28,-122,40,-176r44,0v-12,53,-39,114,-39,170v0,43,72,46,86,10v19,-52,32,-123,48,-180r45,0r-49,190v-3,8,-9,15,-14,23xm116,-303r116,0r-7,28r-116,0","w":238},"\u0172":{"d":"159,0v-12,9,-42,42,-14,52v4,0,9,-2,16,-4r-4,19v-33,16,-70,-15,-47,-45v5,-6,14,-12,26,-19v-77,13,-123,-32,-102,-114r33,-129r44,0r-32,128v-15,46,-7,77,35,77v35,0,46,-22,55,-58r37,-147r45,0v-29,84,-25,196,-92,240","w":238},"\u0114":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0xm125,-312v2,32,59,23,68,0r16,0v-9,45,-61,64,-93,35v-9,-8,-10,-20,-9,-35r18,0","w":187},"\u01f4":{"d":"67,-91v0,54,56,68,98,46r10,-41r-47,0r8,-34r87,0r-26,102v-67,45,-182,25,-176,-72v5,-83,50,-153,129,-155v51,0,83,29,80,83r-41,0v-1,-29,-14,-43,-41,-43v-49,-1,-81,64,-81,114xm186,-312r62,0r-86,48r-39,0","w":232},"\u0133":{"d":"47,-170r43,0r-42,170r-44,0xm55,-213v-3,-30,48,-46,51,-12v4,31,-48,46,-51,12xm140,-170r43,0r-36,146v-13,58,-38,91,-104,90r10,-38v45,-3,43,-18,54,-64xm147,-213v-5,-28,50,-49,51,-12v5,31,-48,46,-51,12","w":185},"\u01ce":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,2,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35xm129,-194r-35,0r-28,-53r34,0r15,27r32,-27r38,0"},"\u0103":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,2,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35xm77,-247r18,0v0,18,7,26,24,26v22,0,24,-10,35,-26r16,0v-7,65,-99,72,-93,0"},"\u0105":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,3,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103v-13,6,-56,43,-20,50v4,0,8,-2,14,-4r-4,17v-22,10,-50,1,-51,-22v0,-15,13,-29,37,-41r-14,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35"},"\u0107":{"d":"12,-66v1,-60,38,-109,95,-110v40,0,61,21,61,62r-40,0v0,-18,-8,-27,-23,-27v-29,1,-48,43,-48,77v0,21,10,34,29,34v22,0,27,-13,35,-31r40,0v-9,89,-152,87,-149,-5xm140,-247r56,0r-80,53r-32,0","w":175},"\u010d":{"d":"12,-66v1,-60,38,-109,95,-110v40,0,61,21,61,62r-40,0v0,-18,-8,-27,-23,-27v-29,1,-48,43,-48,77v0,21,10,34,29,34v22,0,27,-13,35,-31r40,0v-9,89,-152,87,-149,-5xm133,-194r-35,0r-29,-53r35,0r15,27r31,-27r39,0","w":175},"\u010b":{"d":"12,-66v1,-60,38,-109,95,-110v40,0,61,21,61,62r-40,0v0,-18,-8,-27,-23,-27v-29,1,-48,43,-48,77v0,21,10,34,29,34v22,0,27,-13,35,-31r40,0v-9,89,-152,87,-149,-5xm98,-217v-2,-26,48,-40,49,-8v2,26,-47,40,-49,8","w":175},"\u010f":{"d":"11,-63v0,-74,78,-149,133,-89r22,-90r43,0r-47,188v-6,24,-9,42,-10,54r-40,0v1,-10,2,-17,4,-21v-34,48,-105,21,-105,-42xm130,-102v0,-20,-10,-35,-29,-35v-40,-2,-70,98,-17,104v27,2,47,-42,46,-69xm228,-218v-2,-28,50,-39,50,-6v0,18,-13,40,-39,64r-20,0v14,-13,22,-27,27,-41v-12,0,-18,-6,-18,-17","w":239},"\u0111":{"d":"11,-63v0,-74,78,-149,133,-89r9,-38r-45,0r6,-29r46,0r6,-23r43,0r-6,23r24,0r-7,29r-24,0r-34,136v-6,25,-9,43,-10,54r-40,0v1,-10,2,-17,4,-21v-34,48,-105,21,-105,-42xm130,-102v0,-20,-10,-35,-29,-35v-40,-2,-70,98,-17,104v27,2,47,-42,46,-69","w":193},"\u011b":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,34,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0xm133,-194r-35,0r-29,-53r34,0r16,27r31,-27r38,0","w":182},"\u0117":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,34,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0xm98,-217v-3,-27,48,-39,49,-8v3,25,-47,41,-49,8","w":182},"\u0119":{"d":"97,37v0,14,17,15,29,9r-5,17v-31,16,-65,-12,-44,-42v5,-6,13,-12,24,-18v-52,9,-91,-18,-89,-69v2,-60,38,-108,95,-110v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-9,30,-65,60,-65,85xm134,-107v-1,-49,-59,-41,-70,0r70,0","w":182},"\u01e7":{"d":"55,-66v-50,-33,-12,-108,49,-108v11,0,22,2,35,7r63,0r-8,31r-36,0v16,49,-18,83,-77,77v-23,5,-27,17,-1,20v45,5,72,10,72,47v0,41,-42,65,-89,64v-42,-1,-82,-12,-82,-47v0,-21,15,-35,44,-42v-26,-20,2,-44,30,-49xm126,-119v0,-13,-13,-23,-26,-23v-17,0,-31,13,-31,29v0,15,11,23,26,23v18,0,31,-12,31,-29xm18,20v6,28,90,27,90,-3v0,-13,-13,-20,-40,-20v-33,0,-50,8,-50,23xm135,-194r-35,0r-28,-53r33,0r16,27r32,-27r38,0","w":185},"\u011f":{"d":"55,-66v-50,-33,-12,-108,49,-108v11,0,22,2,35,7r63,0r-8,31r-36,0v16,49,-18,83,-77,77v-23,5,-27,17,-1,20v45,5,72,10,72,47v0,41,-42,65,-89,64v-42,-1,-82,-12,-82,-47v0,-21,15,-35,44,-42v-26,-20,2,-44,30,-49xm126,-119v0,-13,-13,-23,-26,-23v-17,0,-31,13,-31,29v0,15,11,23,26,23v18,0,31,-12,31,-29xm18,20v6,28,90,27,90,-3v0,-13,-13,-20,-40,-20v-33,0,-50,8,-50,23xm122,-195v-27,0,-42,-21,-39,-52r18,0v0,18,7,26,24,26v21,0,25,-10,34,-26r17,0v-9,34,-27,52,-54,52","w":185},"\u0121":{"d":"55,-66v-50,-33,-12,-108,49,-108v11,0,22,2,35,7r63,0r-8,31r-36,0v16,49,-18,83,-77,77v-23,5,-27,17,-1,20v45,5,72,10,72,47v0,41,-42,65,-89,64v-42,-1,-82,-12,-82,-47v0,-21,15,-35,44,-42v-26,-20,2,-44,30,-49xm126,-119v0,-13,-13,-23,-26,-23v-17,0,-31,13,-31,29v0,15,11,23,26,23v18,0,31,-12,31,-29xm18,20v6,28,90,27,90,-3v0,-13,-13,-20,-40,-20v-33,0,-50,8,-50,23xm100,-217v-3,-25,47,-41,49,-8v2,26,-48,40,-49,8","w":185},"\u013a":{"d":"64,-242r44,0r-60,242r-44,0xm112,-312r56,0r-74,48r-32,0","w":92},"\u013e":{"d":"64,-242r44,0r-60,242r-44,0xm127,-218v-3,-28,50,-39,50,-6v0,18,-13,40,-39,64r-20,0v14,-13,23,-27,27,-41v-12,1,-18,-7,-18,-17","w":138},"\u0144":{"d":"128,-89v7,-26,6,-46,-19,-46v-53,0,-42,90,-61,135r-44,0r28,-110v7,-32,10,-45,10,-60r42,0v0,8,-1,15,-3,24v25,-41,98,-37,98,14v0,44,-21,90,-30,132r-43,0xm145,-247r56,0r-80,53r-32,0","w":192},"\u0148":{"d":"128,-89v7,-26,6,-46,-19,-46v-53,0,-42,90,-61,135r-44,0v11,-51,35,-118,38,-170r42,0v0,8,-1,15,-3,24v25,-41,98,-37,98,14v0,44,-21,90,-30,132r-43,0xm137,-194r-35,0r-29,-53r34,0r16,27r31,-27r38,0","w":192},"\u0151":{"d":"12,-66v2,-61,36,-110,97,-110v45,0,71,25,71,71v0,57,-36,112,-96,110v-45,0,-73,-26,-72,-71xm86,-30v29,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35xm125,-247r43,0r-69,53r-24,0xm185,-247r43,0r-69,53r-24,0","w":190},"\u0155":{"d":"79,-135v19,-25,37,-46,74,-36r-11,46v-71,-39,-79,67,-95,125r-43,0r41,-170v13,2,32,-4,41,2v-2,13,-2,18,-7,33xm125,-247r55,0r-80,53r-32,0","w":135},"\u015b":{"d":"27,-120v-3,-65,133,-80,134,-8v0,3,-1,7,-1,10r-40,0v1,-16,-9,-25,-24,-25v-16,-1,-35,18,-20,29v27,20,70,24,70,61v0,36,-35,58,-74,58v-43,0,-76,-22,-65,-66r41,0v-5,20,9,32,27,33v18,1,35,-16,23,-31v-28,-19,-70,-24,-71,-61xm134,-247r56,0r-80,53r-32,0","w":167},"\u015d":{"d":"27,-120v-3,-65,133,-80,134,-8v0,3,-1,7,-1,10r-40,0v1,-16,-9,-25,-24,-25v-16,-1,-35,18,-20,29v27,20,70,24,70,61v0,36,-35,58,-74,58v-43,0,-76,-22,-65,-66r41,0v-5,20,9,32,27,33v18,1,35,-16,23,-31v-28,-19,-70,-24,-71,-61xm105,-247r35,0r29,53r-34,0r-15,-28r-31,28r-39,0","w":167},"\u0219":{"d":"27,-120v-3,-65,133,-80,134,-8v0,3,-1,7,-1,10r-40,0v1,-16,-9,-25,-24,-25v-16,-1,-35,18,-20,29v27,20,70,24,70,61v0,36,-35,58,-74,58v-43,0,-76,-22,-65,-66r41,0v-5,20,9,32,27,33v18,1,35,-16,23,-31v-28,-19,-70,-24,-71,-61xm34,46v-3,-29,50,-39,50,-6v0,18,-13,40,-39,64r-20,0v14,-13,23,-27,27,-40v-12,0,-17,-7,-18,-18","w":167},"\u0165":{"d":"93,-4v-32,15,-77,9,-77,-26v0,-25,20,-77,27,-105r-26,0r10,-34r26,0r14,-51r42,0r-14,51r34,0r-9,34r-34,0r-22,88v2,16,24,12,39,6xm132,-246v-2,-28,50,-39,50,-6v0,18,-13,40,-39,64r-20,0v14,-13,23,-28,27,-41v-11,1,-18,-7,-18,-17","w":136},"\u016f":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-30,117v-7,29,-9,38,-9,53r-40,0v-2,-5,0,-13,1,-20xm94,-224v0,-20,17,-36,36,-36v19,0,35,18,35,36v0,19,-17,36,-36,36v-19,0,-35,-17,-35,-36xm147,-224v0,-10,-7,-18,-17,-18v-11,0,-18,7,-18,18v0,10,7,17,17,17v10,0,18,-8,18,-17","w":195},"\u0171":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-30,117v-7,29,-9,38,-9,53r-40,0v-2,-5,0,-13,1,-20xm128,-247r43,0r-68,53r-25,0xm188,-247r43,0r-68,53r-24,0","w":195},"\u017a":{"d":"34,-170r126,0r-8,32r-102,101r83,0r-9,37r-137,0r9,-34r102,-100r-73,0xm127,-247r56,0r-80,53r-32,0","w":151},"\u017c":{"d":"34,-170r126,0r-8,32r-102,101r83,0r-9,37r-137,0r9,-34r102,-100r-73,0xm84,-217v-2,-26,48,-40,49,-8v2,26,-47,40,-49,8","w":151},"\u0127":{"d":"130,-89v9,-24,6,-46,-19,-46v-54,0,-45,90,-63,135r-44,0r48,-190r-24,0r7,-29r24,0r5,-23r44,0r-6,23r48,0r-7,29r-48,0r-10,38v28,-34,97,-29,95,22v-1,42,-21,91,-29,130r-43,0","w":195},"\u0163":{"d":"94,-4v-32,15,-77,10,-77,-26v0,-25,19,-77,26,-105r-25,0r9,-34r26,0r14,-51r42,0r-14,51r34,0r-9,34r-34,0r-22,88v2,16,24,12,39,6xm10,46v-2,-28,50,-39,50,-6v0,18,-13,40,-39,64r-20,0v14,-13,23,-27,27,-40v-12,0,-17,-7,-18,-18","w":118},"\u0101":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,2,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35xm70,-233r106,0r-7,26r-105,0"},"\u0177":{"d":"29,-170r43,0r5,137r73,-137r44,0r-94,165v-36,57,-47,78,-127,77r9,-39v31,1,47,-1,61,-25xm111,-247r35,0r29,53r-34,0r-16,-28r-31,28r-38,0","w":174},"\u0113":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,34,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0xm73,-233r105,0r-6,26r-106,0","w":182},"\u011d":{"d":"55,-66v-50,-33,-12,-108,49,-108v11,0,22,2,35,7r63,0r-8,31r-36,0v16,49,-18,83,-77,77v-23,5,-27,17,-1,20v45,5,72,10,72,47v0,41,-42,65,-89,64v-42,-1,-82,-12,-82,-47v0,-21,15,-35,44,-42v-26,-20,2,-44,30,-49xm126,-119v0,-13,-13,-23,-26,-23v-17,0,-31,13,-31,29v0,15,11,23,26,23v18,0,31,-12,31,-29xm18,20v6,28,90,27,90,-3v0,-13,-13,-20,-40,-20v-33,0,-50,8,-50,23xm114,-247r35,0r28,53r-33,0r-16,-28r-31,28r-38,0","w":185},"\u012d":{"d":"47,-170r43,0r-42,170r-44,0xm79,-195v-26,0,-42,-24,-37,-52r18,0v2,41,49,27,56,0r16,0v-9,34,-26,52,-53,52","w":92},"\u012b":{"d":"47,-170r43,0r-42,170r-44,0xm39,-233r89,0r-6,26r-89,0","w":92},"\u0137":{"d":"150,-170r53,0r-83,79r46,91r-52,0r-43,-91xm64,-242r44,0r-60,242r-44,0xm44,46v-3,-29,50,-39,50,-6v0,18,-13,40,-39,64r-20,0v14,-14,23,-27,27,-40v-12,0,-17,-7,-18,-18","w":186},"\u013c":{"d":"64,-242r44,0r-61,242r-43,0xm-9,46v-2,-28,50,-39,50,-6v0,18,-13,40,-39,64r-20,0v14,-13,23,-27,27,-40v-11,0,-18,-7,-18,-18","w":92},"\u0146":{"d":"128,-89v7,-26,6,-46,-19,-46v-53,0,-42,90,-61,135r-44,0v11,-51,35,-118,38,-170r42,0v0,7,-1,15,-3,24v25,-41,98,-37,98,14v0,44,-21,90,-30,132r-43,0xm43,46v-3,-29,50,-39,50,-6v0,18,-13,40,-39,64r-20,0v14,-13,23,-27,27,-40v-12,0,-17,-7,-18,-18","w":192},"\u014d":{"d":"12,-66v2,-61,36,-110,97,-110v45,0,71,25,71,71v0,57,-36,112,-96,110v-45,0,-73,-26,-72,-71xm86,-30v29,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35xm78,-233r105,0r-6,26r-106,0","w":190},"\u0157":{"d":"79,-135v19,-25,37,-46,74,-36r-11,46v-71,-39,-79,67,-95,125r-43,0r41,-170v13,2,32,-4,41,2v-2,13,-2,18,-7,33xm-9,46v-2,-28,50,-39,50,-6v0,18,-13,40,-39,64r-20,0v14,-13,23,-27,27,-40v-11,0,-18,-7,-18,-18","w":135},"\u016d":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-30,117v-7,29,-9,38,-9,53r-40,0v-2,-5,0,-13,1,-20xm130,-195v-27,0,-44,-23,-39,-52r18,0v0,17,8,26,23,26v21,0,26,-10,35,-26r17,0v-9,34,-27,52,-54,52","w":195},"\u016b":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,26,-84,38,-124r44,0r-30,117v-7,29,-9,38,-9,53r-40,0v-2,-6,0,-11,1,-20xm82,-233r106,0r-7,26r-105,0","w":195},"\u0173":{"d":"65,-76v-17,35,27,55,46,30v22,-28,27,-84,39,-124r43,0r-39,170v-17,9,-52,41,-20,50v4,0,9,-2,15,-4r-5,17v-22,10,-50,1,-50,-22v0,-16,12,-29,37,-41v-6,-1,-18,3,-18,-4v0,-4,1,-10,2,-16v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0","w":195},"\u0159":{"d":"79,-135v19,-25,37,-46,74,-36r-11,46v-71,-39,-79,67,-95,125r-43,0r41,-170v13,2,32,-4,41,2v-2,13,-2,18,-7,33xm119,-194r-35,0r-29,-53r34,0r16,27r31,-27r38,0","w":135},"\u015f":{"d":"132,-83v36,37,-7,93,-57,88r-7,12v17,4,26,14,26,28v-1,35,-44,52,-75,31r5,-18v19,10,41,6,42,-14v2,-13,-14,-18,-27,-15r14,-26v-32,-5,-55,-27,-46,-64r41,0v-5,20,8,32,27,32v19,0,35,-16,23,-30v-27,-19,-71,-22,-70,-61v0,-34,34,-56,71,-56v38,0,67,20,61,58r-40,0v1,-16,-9,-24,-24,-25v-15,-1,-32,17,-20,29v13,8,51,26,56,31","w":167},"\u0123":{"d":"56,-66v-51,-32,-14,-108,48,-108v11,0,24,2,36,7r62,0r-8,31r-35,0v14,51,-19,82,-78,77v-14,4,-23,9,-15,17v42,8,88,8,86,50v-1,42,-42,65,-89,64v-41,0,-82,-12,-82,-47v0,-21,14,-35,44,-42v-27,-22,3,-44,31,-49xm126,-121v0,-36,-57,-22,-57,8v0,15,12,23,27,23v20,1,30,-12,30,-31xm18,20v7,28,90,28,90,-3v0,-13,-13,-20,-40,-20v-25,0,-48,4,-50,23xm148,-219v3,27,-50,38,-50,6v0,-19,13,-40,39,-64r20,0v-14,13,-23,27,-27,40v12,0,17,7,18,18","w":185},"\u0115":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,34,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0xm119,-195v-27,0,-42,-21,-39,-52r18,0v0,17,6,26,23,26v21,0,26,-10,35,-26r17,0v-9,34,-27,52,-54,52","w":182},"\u012f":{"d":"37,63v-20,11,-47,-1,-47,-22v0,-16,12,-30,35,-41r-21,0r43,-170r43,0r-42,170v-13,8,-31,21,-31,37v0,13,12,16,24,10xm55,-213v-4,-28,50,-48,51,-12v4,31,-48,46,-51,12","w":92},"\u0140":{"d":"64,-242r44,0r-60,242r-44,0xm102,-116v-2,-20,19,-41,38,-40v14,0,26,11,26,27v0,36,-62,56,-64,13","w":154},"\u0169":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-30,117v-7,29,-9,38,-9,53r-40,0v-2,-5,0,-13,1,-20xm191,-238v-17,47,-49,38,-83,26v-7,0,-13,4,-19,13r-16,-5v10,-20,20,-38,40,-38v21,0,47,25,63,-1","w":195},"\u01d4":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-30,117v-7,29,-9,38,-9,53r-40,0v-2,-5,0,-13,1,-20xm143,-194r-35,0r-29,-53r34,0r16,27r31,-27r38,0","w":195},"\u013f":{"d":"69,-240r45,0r-50,201r102,0r-10,39r-147,0xm118,-116v-3,-36,63,-60,65,-13v3,35,-62,56,-65,13","w":178},"\u0218":{"d":"120,-245v47,0,79,27,73,75r-43,0v1,-27,-11,-33,-33,-35v-25,-2,-49,25,-31,42v31,30,89,31,89,84v0,51,-35,84,-89,84v-55,0,-92,-31,-81,-87r43,0v-5,30,10,47,39,47v35,0,57,-39,29,-57v-33,-22,-81,-29,-82,-77v-1,-46,39,-76,86,-76xm51,47v-3,-28,51,-42,51,-6v0,19,-13,41,-40,66r-20,0v15,-14,24,-28,28,-42v-12,0,-19,-6,-19,-18","w":187},"\u014a":{"d":"183,-157v9,-28,-2,-48,-31,-48v-29,0,-47,17,-56,52r-38,153r-45,0r45,-180v7,-34,10,-39,9,-60r44,0v0,10,-2,19,-4,27v20,-21,43,-31,70,-31v44,-1,65,31,53,77r-47,183v-14,36,-47,53,-101,50r9,-39v54,5,55,-36,66,-81","w":240},"\u0166":{"d":"127,-157r44,0r-9,36r-44,0r-30,121r-45,0r30,-121r-44,0r9,-36r44,0r11,-44r-61,0r12,-39r162,0r-12,39r-56,0","w":171},"\u014b":{"d":"128,-89v9,-24,7,-46,-18,-46v-54,0,-43,90,-62,135r-44,0v11,-51,35,-118,38,-170r42,0v0,7,-1,15,-3,24v25,-41,96,-36,98,14v-20,85,-19,204,-128,198r10,-38v61,3,49,-69,67,-117","w":192},"\u0167":{"d":"93,-4v-31,15,-76,9,-77,-27v-1,-6,8,-39,13,-55r-24,0r8,-29r24,0r6,-20r-26,0r10,-34r26,0r14,-51r42,0r-14,51r34,0r-9,34r-34,0r-5,20r34,0r-7,29r-35,0v-1,17,-22,48,5,50v7,0,15,-1,25,-5","w":118},"\u0138":{"d":"150,-170r53,0r-83,79r46,91r-52,0r-43,-91xm47,-170r43,0r-42,170r-44,0","w":186},"\u0149":{"d":"42,-217v-3,-28,51,-41,52,-6v0,18,-13,40,-40,66r-21,0v15,-14,24,-28,28,-42v-12,-1,-18,-7,-19,-18xm174,-89v6,-25,5,-46,-19,-46v-27,0,-33,22,-40,48r-22,87r-43,0r27,-110v7,-30,11,-44,11,-60r42,0v0,8,-2,15,-4,24v27,-40,98,-38,98,14v0,46,-21,90,-30,132r-42,0","w":238},"\u01a0":{"d":"222,-238v-2,-27,50,-40,51,-6v0,18,-13,40,-40,66v11,96,-40,183,-126,183v-55,0,-88,-36,-87,-92v1,-83,48,-158,128,-158v40,0,69,20,80,50v6,-9,11,-17,13,-24v-12,0,-19,-7,-19,-19xm189,-152v0,-32,-15,-52,-43,-53v-46,-2,-80,69,-80,116v0,31,15,54,45,54v44,0,78,-71,78,-117","w":237},"\u01a1":{"d":"169,-177v-2,-28,50,-39,50,-6v0,18,-13,41,-40,63v8,67,-32,125,-95,125v-45,0,-73,-26,-72,-71v2,-61,37,-109,97,-110v34,0,56,16,66,40v6,-7,10,-15,13,-23v-12,0,-19,-7,-19,-18xm86,-30v29,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35","w":190},"\u01af":{"d":"188,-27v-36,52,-167,40,-161,-37v4,-58,28,-122,40,-176r44,0r-32,128v-15,46,-7,77,35,77v35,0,46,-22,55,-58r37,-147r45,0r-50,191v-3,8,-8,14,-13,22xm269,-233v-2,-27,52,-39,52,-6v0,18,-14,41,-41,66r-20,0v15,-14,24,-28,28,-41v-12,0,-19,-7,-19,-19","w":238},"\u01b0":{"d":"115,-20v-25,40,-98,28,-97,-23v2,-44,20,-87,28,-127r43,0r-27,113v-1,25,36,28,49,11v21,-29,27,-84,39,-124r43,0r-39,170r-40,0v-2,-6,0,-12,1,-20xm210,-154v-2,-28,49,-39,49,-6v0,18,-13,40,-39,64r-19,0v14,-13,23,-27,27,-40v-11,0,-17,-8,-18,-18","w":195},"\u0410":{"d":"121,-240r45,0r19,240r-46,0r-3,-50r-77,0r-28,50r-49,0xm135,-88r-2,-109r-55,109r57,0","w":207},"\u0411":{"d":"193,-89v-3,63,-40,93,-113,89r-71,0r60,-240r141,0r-9,39r-97,0r-13,51v59,-3,104,7,102,61xm146,-84v0,-32,-33,-26,-65,-27r-17,72v46,2,82,-2,82,-45","w":205},"\u0412":{"d":"193,-78v0,83,-92,81,-184,78r60,-240v64,0,139,-9,139,52v0,32,-18,54,-53,63v23,8,38,19,38,47xm162,-179v0,-28,-29,-23,-58,-24r-15,60v39,1,73,0,73,-36xm147,-80v0,-31,-34,-27,-67,-27r-18,70v48,2,85,0,85,-43","w":212},"\u0413":{"d":"215,-240r-10,39r-101,0r-50,201r-45,0r60,-240r146,0","w":185},"\u0414":{"d":"94,-240r157,0r-50,202r27,0r-18,74r-45,0r9,-36r-149,0r-9,36r-45,0r19,-74v30,1,39,-6,47,-29xm197,-202r-71,0r-47,142v-3,9,-6,16,-10,22r87,0","w":243},"\u0415":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0","w":187},"\u0416":{"d":"176,-240r45,0r-24,96r14,0r87,-96r53,0r-112,116r62,124r-54,0r-47,-106r-12,0r-27,106r-45,0r27,-106r-13,0r-95,106r-59,0r122,-130r-56,-110r53,0r43,96r14,0","w":315},"\u0417":{"d":"132,-205v-31,1,-47,15,-55,44r-40,-7v11,-51,46,-76,103,-77v46,-1,79,20,79,62v1,34,-20,58,-49,63v56,45,-5,125,-76,125v-59,0,-90,-31,-79,-90r42,-3v-6,32,8,53,38,53v43,0,75,-65,18,-66r-20,0r9,-38v35,2,66,-4,66,-37v0,-19,-12,-29,-36,-29","w":205},"\u0418":{"d":"9,0r60,-240r42,0r-39,155r138,-137r5,-18r45,0r-61,240r-42,0r39,-154r-134,137r-5,17r-48,0","w":249},"\u041a":{"d":"194,-240r54,0r-112,114r60,126r-55,0r-55,-127xm69,-240r45,0r-60,240r-45,0","w":216},"\u041b":{"d":"-17,1r9,-38v25,0,32,-9,39,-30r58,-173r156,0r-60,240r-45,0r51,-202r-70,0r-48,142v-15,44,-34,61,-90,61","w":235},"\u041c":{"d":"69,-240r63,0r13,194r108,-194r65,0r-60,240r-40,0r47,-191r-107,191r-47,0r-14,-191r-48,191r-40,0","w":307},"\u041d":{"d":"90,-144r92,0r24,-96r45,0r-60,240r-45,0r26,-106r-92,0r-26,106r-45,0r60,-240r45,0","w":240},"\u041e":{"d":"20,-87v2,-83,48,-158,129,-158v55,0,87,36,86,93v-2,83,-49,157,-128,157v-55,0,-88,-36,-87,-92xm189,-152v0,-32,-15,-52,-43,-53v-46,-2,-80,69,-80,116v0,31,15,54,45,54v44,0,78,-71,78,-117","w":236},"\u041f":{"d":"104,-202r-50,202r-45,0r60,-240r182,0r-60,240r-45,0r51,-202r-93,0","w":240},"\u0420":{"d":"215,-179v-3,73,-53,95,-138,89r-23,90r-45,0r60,-240v70,0,149,-8,146,61xm168,-174v0,-31,-32,-26,-64,-27r-18,72v46,2,82,-2,82,-45","w":197},"\u0421":{"d":"148,-245v50,-1,81,31,78,83r-41,0v-1,-29,-14,-43,-40,-43v-45,0,-78,65,-78,114v0,33,17,56,48,56v29,0,49,-18,60,-54r42,0v-12,53,-46,93,-104,94v-58,1,-93,-37,-92,-96v1,-83,49,-152,127,-154","w":223},"\u0422":{"d":"44,-240r162,0r-12,39r-56,0r-50,201r-45,0r50,-201r-61,0","w":171},"\u0423":{"d":"30,-240r48,0r22,117r77,-117r51,0r-167,240r-47,0r55,-77","w":182},"\u0424":{"d":"20,-111v2,-72,54,-108,128,-110r5,-19r42,0r-5,22v100,8,95,142,28,179v-20,11,-47,19,-78,20r-5,19r-42,0r6,-23v-44,-6,-81,-37,-79,-88xm139,-183v-76,-7,-105,108,-31,125xm149,-57v75,11,106,-108,31,-123","w":268},"\u0425":{"d":"48,-240r51,0r22,79r63,-79r53,0r-102,118r43,122r-49,0r-26,-87r-68,87r-53,0r106,-125","w":201},"\u0426":{"d":"201,-38r27,0r-18,74r-45,0r9,-36r-165,0r60,-240r45,0r-51,202r93,0r50,-202r45,0","w":243},"\u0427":{"d":"103,-242v-5,44,-54,127,13,131v12,0,27,-5,45,-14r29,-117r43,0r-60,242r-43,0r22,-88v-40,20,-121,19,-118,-35v2,-34,19,-85,26,-119r43,0","w":216},"\u0428":{"d":"249,-38r51,-202r45,0r-60,240r-276,0r60,-240r45,0r-51,202r71,0r50,-202r45,0r-50,202r70,0","w":334},"\u0429":{"d":"294,-38r28,0r-19,74r-44,0r9,-36r-259,0r60,-240r45,0r-51,202r71,0r50,-202r45,0r-50,202r70,0r51,-202r45,0","w":337},"\u042c":{"d":"193,-89v-3,63,-40,93,-113,89r-71,0r60,-240r45,0r-23,90v59,-3,104,7,102,61xm146,-84v0,-32,-33,-26,-65,-27r-17,72v46,2,82,-2,82,-45","w":203},"\u042b":{"d":"244,0r-46,0r60,-240r46,0xm193,-89v-3,63,-40,93,-113,89r-71,0r60,-240r45,0r-23,90v59,-3,104,7,102,61xm146,-84v0,-32,-33,-26,-65,-27r-17,72v46,2,82,-2,82,-45","w":294},"\u042a":{"d":"231,-89v-3,61,-40,93,-112,89r-71,0r50,-201r-69,0r10,-39r113,0r-22,90v59,-2,103,7,101,61xm185,-84v0,-32,-34,-26,-65,-27r-18,72v46,2,83,-2,83,-45","w":241},"\u042d":{"d":"174,-139v5,-38,-10,-66,-43,-66v-29,0,-47,15,-54,43r-40,-8v11,-48,47,-74,99,-75v53,-1,86,38,85,93v-2,84,-49,155,-130,157v-58,1,-82,-31,-76,-89r42,-5v-2,34,8,54,39,54v30,0,52,-22,69,-66r-73,0r9,-38r73,0","w":222},"\u042e":{"d":"210,5v-61,0,-94,-45,-86,-111r-44,0r-26,106r-45,0r60,-240r45,0r-24,96r42,0v17,-55,54,-101,119,-101v55,0,88,36,87,93v-2,83,-48,157,-128,157xm292,-152v0,-32,-14,-52,-43,-53v-46,-2,-81,69,-80,116v0,32,15,53,45,54v46,2,78,-69,78,-117","w":339},"\u042f":{"d":"42,-151v0,-63,40,-89,112,-89r72,0r-60,240r-45,0r22,-90r-32,0r-70,90r-54,0r82,-100v-18,-10,-27,-27,-27,-51xm89,-156v0,31,33,26,64,27r18,-72v-46,-2,-82,2,-82,45","w":215},"\u0490":{"d":"170,-240r7,-30r45,0r-17,69r-101,0r-50,201r-45,0r60,-240r101,0","w":183},"\u0402":{"d":"162,-2v6,-43,53,-125,-13,-128v-13,0,-29,4,-46,13r-29,117r-43,0r50,-201r-57,0r13,-39r169,0r-12,39r-70,0r-12,47v41,-19,127,-18,119,36v-12,79,-21,196,-124,186r9,-37v28,-1,38,-11,46,-33","w":216},"\u0404":{"d":"21,-91v1,-83,49,-152,127,-154v49,-1,79,29,78,79r-41,4v2,-49,-54,-54,-80,-26v-12,12,-23,28,-30,49r71,0r-10,38r-69,0v-3,38,14,66,48,66v29,0,49,-18,60,-54r40,7v-13,50,-47,86,-102,87v-58,1,-93,-37,-92,-96","w":223},"\u0405":{"d":"120,-245v47,0,79,27,73,75r-43,0v1,-27,-11,-33,-33,-35v-25,-2,-49,25,-31,42v31,30,89,31,89,84v0,51,-35,84,-89,84v-55,0,-92,-31,-81,-87r43,0v-5,30,10,47,39,47v35,0,57,-39,29,-57v-33,-22,-81,-29,-82,-77v-1,-46,39,-76,86,-76","w":187},"\u0406":{"d":"54,0r-45,0r60,-240r45,0","w":103},"\u04c0":{"d":"54,0r-45,0r60,-240r45,0","w":103},"\u0408":{"d":"77,-240r45,0r-61,239v-14,35,-47,52,-101,49r10,-39v56,1,53,-28,66,-81","w":111},"\u0409":{"d":"324,-89v-3,62,-40,92,-112,89r-71,0r50,-202r-70,0r-48,142v-15,44,-34,61,-90,61r9,-38v25,-1,32,-8,39,-30r58,-173r156,0r-22,90v59,-2,103,7,101,61xm278,-84v0,-32,-33,-26,-65,-27r-18,72v46,2,83,-2,83,-45","w":335},"\u040a":{"d":"329,-86v1,90,-87,90,-183,86r27,-108r-92,0r-27,108r-45,0r60,-240r45,0r-24,93r93,0r23,-93r45,0r-23,93v58,-2,101,8,101,61xm283,-82v0,-31,-34,-25,-65,-26r-17,69v45,2,82,-2,82,-43","w":339},"\u040b":{"d":"112,-154v41,-19,123,-18,119,36v-3,33,-19,84,-26,118r-43,0r23,-102v-5,-36,-52,-33,-82,-15r-29,117r-43,0r50,-201r-57,0r13,-39r169,0r-12,39r-70,0","w":216},"\u040f":{"d":"122,0r-9,36r-44,0r9,-36r-69,0r60,-240r45,0r-51,202r93,0r50,-202r45,0r-60,240r-69,0","w":240},"\u0401":{"d":"90,-144r94,0r-9,39r-95,0r-16,66r105,0r-10,39r-150,0r60,-240r144,0r-10,39r-99,0xm165,-284v-3,-30,51,-44,53,-9v3,30,-51,44,-53,9xm87,-284v-4,-29,52,-44,53,-9v3,30,-51,44,-53,9","w":187},"\u0419":{"d":"173,-264v-29,0,-48,-19,-43,-48r18,0v1,33,59,23,67,0r17,0v-10,32,-29,48,-59,48xm9,0r60,-240r42,0r-39,155r138,-137r5,-18r45,0r-61,240r-42,0r39,-154r-134,137r-5,17r-48,0","w":249},"\u0403":{"d":"215,-240r-10,39r-101,0r-50,201r-45,0r60,-240r146,0xm186,-312r62,0r-87,48r-38,0","w":185},"\u0407":{"d":"54,0r-45,0r60,-240r45,0xm108,-284v-2,-29,52,-44,54,-9v2,29,-51,44,-54,9xm40,-284v-3,-30,52,-43,54,-9v2,29,-51,44,-54,9","w":103},"\u040c":{"d":"194,-240r54,0r-112,114r60,126r-55,0r-55,-127xm69,-240r45,0r-60,240r-45,0xm198,-312r62,0r-87,48r-38,0","w":216},"\u040e":{"d":"136,-264v-28,0,-46,-17,-43,-48r18,0v2,32,59,23,68,0r16,0v-10,32,-29,48,-59,48xm30,-240r48,0r22,117r77,-117r51,0r-167,240r-47,0r55,-77","w":182},"\u0430":{"d":"103,-19v-24,36,-102,27,-99,-22v4,-52,53,-55,117,-68v4,-17,3,-31,-21,-30v-16,0,-27,6,-33,18r-40,0v12,-35,37,-53,78,-53v45,0,69,25,56,71v-9,32,-22,64,-21,103r-38,0v0,-8,0,-14,1,-19xm113,-81v-36,9,-58,7,-64,33v0,24,46,21,53,2v4,-4,9,-23,11,-35"},"\u0431":{"d":"145,-248v12,0,46,11,61,0r-9,36v-32,10,-64,-12,-86,11v-8,9,-19,23,-29,42v39,-38,104,-9,104,54v0,56,-37,110,-96,110v-45,0,-73,-28,-73,-71v0,-81,45,-178,128,-182xm92,-30v29,1,49,-43,49,-75v0,-24,-9,-36,-29,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35","w":196},"\u0432":{"d":"157,-53v1,64,-84,54,-153,53r43,-170v52,2,124,-13,122,39v-1,26,-14,36,-37,43v17,6,25,18,25,35xm81,-33v35,6,43,-39,10,-38r-26,0r-9,38r25,0xm73,-103v25,1,52,2,52,-20v0,-18,-25,-14,-43,-14","w":178},"\u0433":{"d":"81,-136r-33,136r-44,0r43,-170r109,0r-9,34r-66,0","w":138},"\u0434":{"d":"56,-170r133,0r-34,135r22,0r-18,71r-43,0r9,-36r-102,0r-9,36r-43,0r17,-71v23,1,30,-12,36,-31xm50,-35r62,0r25,-101r-48,0v-13,32,-20,77,-39,101","w":192},"\u0435":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,33,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0","w":182},"\u0436":{"d":"82,0r19,-73r-11,0r-61,73r-51,0r84,-93r-40,-77r48,0r28,63r11,0r16,-63r43,0r-16,63r10,0r58,-63r51,0r-80,82r38,88r-48,0r-26,-73r-12,0r-18,73r-43,0","w":249},"\u0437":{"d":"50,-61v-4,37,53,41,55,8v2,-15,-18,-16,-37,-15r9,-35v21,1,41,-4,39,-20v-4,-29,-54,-21,-55,9r-41,-6v8,-34,37,-52,77,-56v63,-6,90,81,24,91v19,5,29,16,29,34v1,37,-32,56,-71,56v-42,0,-69,-22,-69,-60","w":168},"\u0438":{"d":"48,0r-44,0r43,-170r43,0r-24,96r88,-85r3,-11r43,0r-43,170r-43,0r25,-97r-89,85","w":202},"\u043a":{"d":"150,-170r53,0r-83,79r46,91r-52,0r-43,-91xm90,-170r-42,170r-44,0r43,-170r43,0","w":186},"\u043b":{"d":"-10,-33v21,-1,30,-12,36,-32r31,-105r133,0r-42,170r-43,0r34,-136r-49,0v-24,59,-22,144,-109,137","w":192},"\u043c":{"d":"129,0r-44,0r-7,-131r-33,131r-41,0r43,-170r64,0r6,128r67,-128r66,0r-42,170r-41,0r32,-131","w":253},"\u043d":{"d":"124,-73r-58,0r-18,73r-44,0r43,-170r43,0r-16,63r58,0r16,-63r44,0r-43,170r-43,0","w":194},"\u043e":{"d":"12,-66v2,-61,36,-110,97,-110v45,0,71,25,71,71v0,57,-36,112,-96,110v-45,0,-73,-26,-72,-71xm86,-30v29,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35","w":190},"\u043f":{"d":"140,-136r-59,0r-33,136r-44,0r43,-170r145,0r-43,170r-43,0","w":194},"\u0440":{"d":"184,-108v0,76,-76,150,-132,89r-22,88r-43,0r57,-239r40,0v0,6,-1,12,-4,20v32,-46,104,-21,104,42xm140,-103v0,-20,-9,-34,-28,-34v-40,-2,-72,99,-17,104v26,2,46,-41,45,-70","w":193},"\u0441":{"d":"12,-66v2,-60,37,-109,95,-110v40,0,61,21,61,62r-40,0v0,-18,-8,-27,-23,-27v-29,1,-48,43,-48,77v0,21,10,34,29,34v22,0,27,-13,35,-31r40,0v-9,89,-152,87,-149,-5","w":175},"\u0442":{"d":"106,-136r-34,136r-43,0r34,-136r-50,0r9,-34r142,0r-9,34r-49,0","w":140},"\u0443":{"d":"29,-170r43,0r5,137r73,-137r44,0r-94,165v-36,57,-47,78,-127,77r9,-39v31,1,47,-1,61,-25","w":174},"\u0444":{"d":"116,-121v0,-11,-7,-20,-18,-20v-26,0,-44,50,-43,79v0,21,7,32,20,32v31,0,39,-68,41,-91xm165,-30v29,0,44,-49,43,-80v0,-21,-7,-31,-20,-31v-32,0,-41,64,-41,86v0,17,6,25,18,25xm12,-63v-4,-69,57,-142,117,-99r20,-80r43,0r-20,80v34,-34,86,-1,79,52v6,68,-58,146,-117,101r-20,78r-43,0r20,-78v-35,35,-87,-1,-79,-54","w":260},"\u0445":{"d":"32,-170r49,0r18,48r38,-48r51,0r-76,83r41,87r-50,0r-23,-58r-49,58r-52,0r88,-91","w":174},"\u0446":{"d":"127,0r-123,0r43,-170r43,0r-34,135r58,0r34,-135r44,0r-35,135r22,0r-17,71r-44,0","w":195},"\u0449":{"d":"207,0r-203,0r43,-170r43,0r-34,135r48,0r34,-135r43,0r-34,135r47,0r34,-135r43,0r-33,135r21,0r-17,71r-44,0","w":275},"\u044a":{"d":"177,-62v0,71,-82,63,-153,62r34,-136r-46,0r9,-34r88,0r-14,58v47,-3,82,8,82,50xm86,-78r-11,45v28,1,57,0,57,-26v0,-21,-24,-20,-46,-19","w":189},"\u044b":{"d":"203,-170r43,0r-43,170r-43,0xm157,-62v2,70,-81,64,-153,62r43,-170r43,0r-15,58v48,-3,81,7,82,50xm55,-33v29,2,58,1,58,-26v0,-20,-24,-20,-46,-19","w":248},"\u044c":{"d":"157,-62v2,70,-81,64,-153,62r43,-170r43,0r-15,58v48,-3,81,7,82,50xm55,-33v29,2,58,1,58,-26v0,-20,-24,-20,-46,-19","w":169},"\u044d":{"d":"168,-105v-1,60,-35,110,-92,110v-41,0,-63,-21,-66,-63r41,-3v0,21,9,31,26,31v19,0,33,-13,40,-38r-49,0r9,-35v15,-1,34,2,47,-1v5,-48,-57,-45,-62,-10r-43,-4v12,-35,35,-58,78,-58v43,-1,72,28,71,71","w":178},"\u044e":{"d":"172,5v-47,0,-76,-28,-73,-78r-33,0r-18,73r-44,0r43,-170r43,0r-16,63r33,0v17,-46,47,-69,90,-69v45,1,70,26,71,71v0,57,-36,112,-96,110xm174,-30v30,1,51,-44,50,-75v0,-24,-10,-36,-30,-36v-31,-1,-50,44,-50,76v0,21,10,35,30,35","w":278},"\u044f":{"d":"47,-68v-45,-34,-14,-102,53,-102r79,0r-42,170r-43,0r14,-59r-24,0r-43,59r-45,0xm128,-137v-28,-1,-57,-2,-57,25v0,21,24,20,46,19","w":181},"\u0491":{"d":"112,-170r5,-20r44,0r-14,54r-66,0r-33,136r-44,0r43,-170r65,0","w":138},"\u0452":{"d":"130,-89v9,-23,6,-46,-19,-46v-54,0,-45,90,-63,135r-44,0r48,-190r-22,0r7,-29r22,0r5,-23r44,0r-6,23r49,0r-7,29r-49,0r-10,38v29,-34,103,-29,95,23v-13,84,-16,209,-127,200r10,-38v58,5,50,-79,67,-122","w":195},"\u0454":{"d":"128,-114v1,-18,-6,-26,-23,-26v-18,0,-31,12,-41,37r48,0r-9,35r-46,0v-2,23,8,38,29,38v22,0,27,-13,35,-31r39,6v-13,36,-32,60,-77,60v-42,0,-71,-28,-71,-71v0,-78,81,-142,142,-92v11,10,12,20,14,39","w":175},"\u0455":{"d":"99,-176v38,0,67,20,61,58r-40,0v1,-16,-9,-24,-24,-25v-15,-1,-32,17,-20,29v28,18,70,24,70,61v0,36,-35,58,-74,58v-43,0,-76,-22,-65,-66r41,0v-5,20,9,32,27,33v18,1,35,-16,23,-31v-27,-19,-71,-22,-70,-61v0,-34,34,-56,71,-56","w":167},"\u0456":{"d":"47,-170r43,0r-42,170r-44,0xm55,-213v-3,-30,48,-46,51,-12v4,31,-48,46,-51,12","w":92},"\u0458":{"d":"50,-170r43,0r-36,146v-13,58,-38,90,-104,90r9,-38v45,-3,44,-19,55,-64xm57,-213v-1,-17,15,-32,31,-32v11,0,21,8,20,20v5,30,-48,46,-51,12","w":95},"\u0459":{"d":"258,-62v0,71,-82,63,-153,62r34,-136r-49,0v-24,59,-23,144,-109,137v4,-11,3,-27,11,-34v21,-1,28,-13,34,-32r31,-105r133,0r-14,58v47,-3,82,8,82,50xm167,-78r-11,45v28,1,57,0,57,-26v0,-21,-24,-20,-46,-19","w":269},"\u045a":{"d":"258,-60v0,69,-82,62,-153,60r19,-75r-58,0r-18,75r-44,0r43,-170r43,0r-15,60r58,0r15,-60r43,0r-15,60v48,-3,82,9,82,50xm157,-33v27,0,56,3,56,-23v0,-21,-24,-20,-46,-19","w":270},"\u045b":{"d":"130,-89v9,-24,6,-46,-19,-46v-54,0,-45,90,-63,135r-44,0r48,-190r-22,0r7,-29r22,0r5,-23r44,0r-6,23r49,0r-7,29r-49,0r-10,38v29,-34,97,-29,95,23v-2,41,-21,90,-29,129r-43,0","w":195},"\u045f":{"d":"55,0r-51,0r43,-170r43,0r-34,135r58,0r34,-135r44,0r-43,170r-51,0r-9,36r-43,0","w":194},"\u0447":{"d":"109,-55v-40,18,-104,9,-90,-49r16,-66r43,0r-15,67v0,26,43,17,56,7r19,-74r43,0r-43,170r-43,0","w":183},"\u0448":{"d":"147,-35r47,0r34,-135r43,0r-42,170r-225,0r43,-170r43,0r-34,135r48,0r34,-135r43,0","w":273},"\u0451":{"d":"107,-176v53,-2,79,49,62,101r-112,0v-13,48,52,60,68,23r37,4v-17,34,-35,53,-80,53v-44,0,-70,-26,-70,-71v1,-60,38,-108,95,-110xm134,-107v-1,-49,-59,-41,-70,0r70,0xm133,-217v-3,-25,47,-41,49,-8v3,27,-48,39,-49,8xm63,-217v-3,-27,47,-40,48,-8v4,26,-48,41,-48,8","w":182},"\u0439":{"d":"94,-247r18,0v0,17,8,26,23,26v21,0,26,-10,35,-26r17,0v-7,65,-99,72,-93,0xm48,0r-44,0r43,-170r43,0r-24,96r88,-85r3,-11r43,0r-43,170r-43,0r25,-97r-89,85","w":202},"\u0453":{"d":"81,-136r-33,136r-44,0r43,-170r109,0r-9,34r-66,0xm141,-247r56,0r-80,53r-32,0","w":138},"\u0457":{"d":"47,-170r43,0r-42,170r-44,0xm87,-217v-3,-25,47,-41,49,-8v2,26,-48,40,-49,8xm26,-217v-4,-26,47,-41,49,-8v2,26,-48,40,-49,8","w":92},"\u045c":{"d":"150,-170r53,0r-83,79r46,91r-52,0r-43,-91xm90,-170r-42,170r-44,0r43,-170r43,0xm162,-247r55,0r-80,53r-32,0","w":186},"\u045e":{"d":"29,-170r43,0r5,137r73,-137r44,0r-94,165v-36,57,-47,78,-127,77r9,-39v31,1,47,-1,61,-25xm175,-247v-7,64,-97,71,-94,3v1,-6,13,-2,19,-3v0,17,8,26,23,26v21,0,26,-10,35,-26r17,0","w":174}}});



var HTMLMarker = function(latlng, map, html, width, height, off_x, off_y) {
	this.latlng_ = latlng;
	this.map_ = map;
	this.div_ = null;
	this.setMap(map);
	this.html_ = html;
	this.width_ = width;
	this.height_ = height;
	this.click_callback_ = null;

	if( typeof off_x == "undefined" ) {
		this.off_x_ = (Math.round(this.width_/2));
	} else {
		this.off_x_ = off_x;
	}

	if( typeof off_y == "undefined" ) {
		this.off_y_ = (Math.round(this.height_/2));
	} else {
		this.off_y_ = off_y;
	}
}

HTMLMarker.prototype = new google.maps.OverlayView();

HTMLMarker.prototype.onAdd = function() {
	var div = document.createElement('DIV');
	div.style.border = "none";
	div.style.borderWidth = "0px";
	div.style.position = "absolute";
	div.style.zIndex = '1000';
	div.style.cursor = "pointer";
	div.innerHTML = this.html_;
	this.div_ = div;
	var panes = this.getPanes();
	panes.overlayLayer.appendChild(div);
}

HTMLMarker.prototype.draw = function() {
	var overlayProjection = this.getProjection();
	var sw = overlayProjection.fromLatLngToDivPixel(this.latlng_);
	var div = this.div_;
	div.style.zIndex = '1000';
	div.className = 'html-marker';
	div.style.cursor = "pointer";
	// todo build offset
	div.style.left = (sw.x - this.off_x_) + 'px';
	div.style.top = (sw.y - this.off_y_) + 'px';
	div.style.width =  this.width_+'px';
	div.style.height = this.height_+'px';

	var ele = this;

	jQuery(this.div_).unbind('click');
	jQuery(this.div_).click(function(){


		if(ele.click_callback_){

			ele.click_callback_();
		}
	})


}
HTMLMarker.prototype.getPixelCoordinates = function(){
	var projection = this.getProjection();
	return projection.fromLatLngToDivPixel(this.latlng_);
}


HTMLMarker.prototype.setClick = function(callback){
	this.click_callback_ = callback;
}



HTMLMarker.prototype.onRemove = function() {
	if( typeof this.div_ != "undefined" ) {
		this.div_.parentNode.removeChild(this.div_);
		this.div_ = null;
	}
};

	(function($){

	 /**
	  * setup form for submission
	  * @param {Object} json
	  * the redirect url can be specified as href attribute of the button
	  */
	  $.fn.gigasport_form_submit = function(button, date_field, field_prefix, redir, success_callback) {

		this.submit( function(){ return false;} );

		var redirect_url = $(button).attr('href');
		var success_text = $(button).attr('rel');

		if(field_prefix)
			prefix = field_prefix;
		else
			prefix = 'pluscard';

		var form = this;

		$(button).click(function(){

			var a = $(this);

			if( a.data('is-loading') ) return false;

				a.data('is-loading', true);
				a.data('original-text', a.html());
				a.html('Senden...');

				form.find('.tagbrd').remove();
				form.find('.listrpt-error').removeClass('listrpt-error');

				var inputs = form.find('input');

				inputs.each(function(item){

					if(jQuery(this).attr('title') == jQuery(this).attr('value') )
						jQuery(this).attr('value', '');


				});

				$.post(form.attr('action'), form.serialize(), function(result) {
					//if(false){
						//console.log(result);
					if( !result || !result.status ) { // show error messages
						delete result.status;
						var show_popup = 1;
						for( var field in result ) { // show errors

							var field_with_error, fieldname, selector;
							if( field == 'generic_error' ) {
								field_with_error = $('.title h1');
								//console.log(field_with_error);
							} else {
								fieldname = prefix+'['+field+']';
								selector = '*[name="'+fieldname+'"]';
								field_with_error = $(selector);
							}

							//console.log(fieldname);

							if( field_with_error.length == 0 && field == "geburtsdatum" ) {
								var selector = '*[name="'+prefix+'[jahr]"]';
								var field_with_error = $(selector);
							}


							if(field_with_error.length == 0)
								continue;

							//display warnings next to wrapped select elements:
							var wrapper = field_with_error.closest('.jqTransformSelectWrapper')
							if(wrapper.size() > 0 ) {
								var top = wrapper.position().top - 6;
							}
							else var top = field_with_error.position().top - 6;



							if( form.attr('title') != "lostPassword" ){
								field_with_error.addClass('listrpt-error');
								var css_class = 'tagbrd';
							if( result[field].message.length > 100 ) css_class = 'tagbrd_large';
							if( result[field].message.length > 80 ) css_class = 'tagbrd_large nolink';
							var new_div = $('<div class="'+css_class+'"><a href="#"><div class="validation-error-tag" alt="" /><span>'+result[field].message+'</span></a></div>');
							//var new_div = $('<div class="tagbrd"><a href="#"><div class="validation-error-tag" alt="" /><span>'+result[field].message+'</span></a></div>');

								if( field == 'generic_error' ) {
									//window.scrollTo(0,0);
									$('.title h1').parent('div').append(new_div);
									new_div.css({top:(top+16)+'px', right:'5px'});

									window.scroll(0, 0);
								} else {
									form.append(new_div);
									new_div.css({top:top+'px'});
								}

							} else {

								//MICHAEL, warum das ?
								success_callback("lostpw");
							}

							show_popup=0;

						}
							if(show_popup == 1 && redir == "no-redirect")
								success_callback(true);

					} else { // show success page

						if(redirect_url.length =! 0 && redirect_url != '#' && redir != "no-redirect")
							window.location.href= redirect_url;

						if(success_text.length != 0){

							jQuery('<span class="submit-success" >'+success_text+'</span>').lightbox_me({'centered': true});
						}

						if(success_callback){

							success_callback(success_text);
						}
					}
					a.data('is-loading', false);
					a.html(a.data('original-text'));
				});

				return false;

		});


		return this;
	  };

	})( jQuery );


	/*
	 Galleria v 1.2.2 2011-02-25
	 http://galleria.aino.se

	 Copyright (c) 2011, Aino
	 Licensed under the MIT license.
	*/
	(function(e){var s=this,t=s.document,I=e(t),E=false,x=navigator.userAgent.toLowerCase(),J=s.location.hash.replace(/#\//,""),y=function(){return j.TOUCH?"touchstart":"click"},u=function(){var a=3,b=t.createElement("div"),c=b.getElementsByTagName("i");do b.innerHTML="<!--[if gt IE "+ ++a+"]><i></i><![endif]--\>";while(c[0]);return a>4?a:void 0}(),z=function(){return{html:t.documentElement,body:t.body,head:t.getElementsByTagName("head")[0],title:t.title}},K=function(){var a=[];e.each("data ready thumbnail loadstart loadfinish image play pause progress fullscreen_enter fullscreen_exit idle_enter idle_exit rescale lightbox_open lightbox_close lightbox_image".split(" "),
	function(b,c){a.push(c);/_/.test(c)&&a.push(c.replace(/_/g,""))});return a}(),L=function(a){var b;if(typeof a!=="object")return a;e.each(a,function(c,d){if(/^[a-z]+_/.test(c)){b="";e.each(c.split("_"),function(i,k){b+=i>0?k.substr(0,1).toUpperCase()+k.substr(1):k});a[b]=d;delete a[c]}});return a},F=function(a){if(e.inArray(a,K)>-1)return j[a.toUpperCase()];return a},B={trunk:{},add:function(a,b,c,d){d=d||false;this.clear(a);if(d){var i=b;b=function(){i();B.add(a,b,c)}}this.trunk[a]=s.setTimeout(b,
	c)},clear:function(a){var b=function(d){s.clearTimeout(this.trunk[d]);delete this.trunk[d]},c;if(a&&a in this.trunk)b.call(B,a);else if(typeof a==="undefined")for(c in this.trunk)this.trunk.hasOwnProperty(c)&&b.call(B,c)}},C=[],g=function(){return{array:function(a){return Array.prototype.slice.call(a)},create:function(a,b){b=b||"div";var c=t.createElement(b);c.className=a;return c},forceStyles:function(a,b){a=e(a);a.attr("style")&&a.data("styles",a.attr("style")).removeAttr("style");a.css(b)},revertStyles:function(){e.each(g.array(arguments),
	function(a,b){b=e(b).removeAttr("style");b.data("styles")&&b.attr("style",b.data("styles")).data("styles",null)})},moveOut:function(a){g.forceStyles(a,{position:"absolute",left:-1E4})},moveIn:function(){g.revertStyles.apply(g,g.array(arguments))},hide:function(a,b,c){a=e(a);a.data("opacity")||a.data("opacity",a.css("opacity"));var d={opacity:0};b?a.stop().animate(d,b,c):a.css(d)},show:function(a,b,c){a=e(a);var d=parseFloat(a.data("opacity"))||1,i={opacity:d};d===1&&a.data("opacity",null);b?a.stop().animate(i,
	b,c):a.css(i)},addTimer:function(){B.add.apply(B,g.array(arguments));return this},clearTimer:function(){B.clear.apply(B,g.array(arguments));return this},wait:function(a){a=e.extend({until:function(){return false},success:function(){},error:function(){j.raise("Could not complete wait function.")},timeout:3E3},a);var b=g.timestamp(),c,d,i=function(){d=g.timestamp();c=d-b;if(a.until(c)){a.success();return false}if(d>=b+a.timeout){a.error();return false}s.setTimeout(i,2)};s.setTimeout(i,2)},toggleQuality:function(a,
	b){if(!(u!==7&&u!==8||!a)){if(typeof b==="undefined")b=a.style.msInterpolationMode==="nearest-neighbor";a.style.msInterpolationMode=b?"bicubic":"nearest-neighbor"}},insertStyleTag:function(a){var b=t.createElement("style");z().head.appendChild(b);if(b.styleSheet)b.styleSheet.cssText=a;else{a=t.createTextNode(a);b.appendChild(a)}},loadScript:function(a,b){var c=false,d=e("<script>").attr({src:a,async:true}).get(0);d.onload=d.onreadystatechange=function(){if(!c&&(!this.readyState||this.readyState===
	"loaded"||this.readyState==="complete")){c=true;d.onload=d.onreadystatechange=null;typeof b==="function"&&b.call(this,this)}};z().head.appendChild(d)},parseValue:function(a){if(typeof a==="number")return a;else if(typeof a==="string")return(a=a.match(/\-?\d/g))&&a.constructor===Array?parseInt(a.join(""),10):0;else return 0},timestamp:function(){return(new Date).getTime()},loadCSS:function(a,b,c){var d,i=false,k;e("link[rel=stylesheet]").each(function(){if(RegExp(a).test(this.href)){d=this;return false}});
	if(typeof b==="function"){c=b;b=void 0}c=c||function(){};if(d){c.call(d,d);return d}k=t.styleSheets.length;if(E)a+="?"+g.timestamp();if(e("#"+b).length){e("#"+b).attr("href",a);k--;i=true}else{d=e("<link>").attr({rel:"stylesheet",href:a,id:b}).get(0);s.setTimeout(function(){var l=e('link[rel="stylesheet"], style');l.length?l.get(0).parentNode.insertBefore(d,l[0]):z().head.appendChild(d);if(u)d.attachEvent("onreadystatechange",function(){if(d.readyState==="complete")i=true});else i=true},10)}typeof c===
	"function"&&g.wait({until:function(){return i&&t.styleSheets.length>k},success:function(){g.addTimer("css",function(){c.call(d,d)},100)},error:function(){j.raise("Theme CSS could not load")},timeout:1E3});return d}}}(),G={fade:function(a,b){e(a.next).css("opacity",0).show().animate({opacity:1},a.speed,b);a.prev&&e(a.prev).css("opacity",1).show().animate({opacity:0},a.speed)},flash:function(a,b){e(a.next).css("opacity",0);a.prev?e(a.prev).animate({opacity:0},a.speed/2,function(){e(a.next).animate({opacity:1},
	a.speed,b)}):e(a.next).animate({opacity:1},a.speed,b)},pulse:function(a,b){a.prev&&e(a.prev).hide();e(a.next).css("opacity",0).animate({opacity:1},a.speed,b)},slide:function(a,b){var c=e(a.next).parent(),d=this.$("images"),i=this._stageWidth,k=this.getOptions("easing");c.css({left:i*(a.rewind?-1:1)});d.animate({left:i*(a.rewind?1:-1)},{duration:a.speed,queue:false,easing:k,complete:function(){d.css("left",0);c.css("left",0);b()}})},fadeslide:function(a,b){var c=0,d=this.getOptions("easing"),i=this.getStageWidth();
	if(a.prev){c=g.parseValue(e(a.prev).css("left"));e(a.prev).css({opacity:1,left:c}).animate({opacity:0,left:c+i*(a.rewind?1:-1)},{duration:a.speed,queue:false,easing:d})}c=g.parseValue(e(a.next).css("left"));e(a.next).css({left:c+i*(a.rewind?-1:1),opacity:0}).animate({opacity:1,left:c},{duration:a.speed,complete:b,queue:false,easing:d})}},j=function(){var a=this;this._theme=void 0;this._options={};this._playing=false;this._playtime=5E3;this._active=null;this._queue={length:0};this._data=[];this._dom=
	{};this._thumbnails=[];this._initialized=false;this._stageHeight=this._stageWidth=0;this._target=void 0;this._id=Math.random();e.each("container stage images image-nav image-nav-left image-nav-right info info-text info-title info-description info-author thumbnails thumbnails-list thumbnails-container thumb-nav-left thumb-nav-right loader counter tooltip".split(" "),function(f,h){a._dom[h]=g.create("galleria-"+h)});e.each("current total".split(" "),function(f,h){a._dom[h]=g.create("galleria-"+h,"span")});
	var b=this._keyboard={keys:{UP:38,DOWN:40,LEFT:37,RIGHT:39,RETURN:13,ESCAPE:27,BACKSPACE:8,SPACE:32},map:{},bound:false,press:function(f){var h=f.keyCode||f.which;h in b.map&&typeof b.map[h]==="function"&&b.map[h].call(a,f)},attach:function(f){var h,n;for(h in f)if(f.hasOwnProperty(h)){n=h.toUpperCase();if(n in b.keys)b.map[b.keys[n]]=f[h]}if(!b.bound){b.bound=true;I.bind("keydown",b.press)}},detach:function(){b.bound=false;I.unbind("keydown",b.press)}},c=this._controls={0:void 0,1:void 0,active:0,
	swap:function(){c.active=c.active?0:1},getActive:function(){return c[c.active]},getNext:function(){return c[1-c.active]}},d=this._carousel={next:a.$("thumb-nav-right"),prev:a.$("thumb-nav-left"),width:0,current:0,max:0,hooks:[],update:function(){var f=0,h=0,n=[0];e.each(a._thumbnails,function(o,p){if(p.ready){f+=p.outerWidth||e(p.container).outerWidth(true);n[o+1]=f;h=Math.max(h,p.outerHeight||e(p.container).outerHeight(true))}});a.$("thumbnails").css({width:f,height:h});d.max=f;d.hooks=n;d.width=
	a.$("thumbnails-list").width();d.setClasses();a.$("thumbnails-container").toggleClass("galleria-carousel",f>d.width)},bindControls:function(){var f;d.next.bind(y(),function(h){h.preventDefault();if(a._options.carouselSteps==="auto")for(f=d.current;f<d.hooks.length;f++){if(d.hooks[f]-d.hooks[d.current]>d.width){d.set(f-2);break}}else d.set(d.current+a._options.carouselSteps)});d.prev.bind(y(),function(h){h.preventDefault();if(a._options.carouselSteps==="auto")for(f=d.current;f>=0;f--)if(d.hooks[d.current]-
	d.hooks[f]>d.width){d.set(f+2);break}else{if(f===0){d.set(0);break}}else d.set(d.current-a._options.carouselSteps)})},set:function(f){for(f=Math.max(f,0);d.hooks[f-1]+d.width>=d.max&&f>=0;)f--;d.current=f;d.animate()},getLast:function(f){return(f||d.current)-1},follow:function(f){if(f===0||f===d.hooks.length-2)d.set(f);else{for(var h=d.current;d.hooks[h]-d.hooks[d.current]<d.width&&h<=d.hooks.length;)h++;if(f-1<d.current)d.set(f-1);else f+2>h&&d.set(f-h+d.current+2)}},setClasses:function(){d.prev.toggleClass("disabled",
	!d.current);d.next.toggleClass("disabled",d.hooks[d.current]+d.width>=d.max)},animate:function(){d.setClasses();var f=d.hooks[d.current]*-1;isNaN(f)||a.$("thumbnails").animate({left:f},{duration:a._options.carouselSpeed,easing:a._options.easing,queue:false})}},i=this._tooltip={initialized:false,open:false,init:function(){i.initialized=true;g.insertStyleTag(".galleria-tooltip{padding:3px 8px;max-width:50%;background:#ffe;color:#000;z-index:3;position:absolute;font-size:11px;line-height:1.3opacity:0;box-shadow:0 0 2px rgba(0,0,0,.4);-moz-box-shadow:0 0 2px rgba(0,0,0,.4);-webkit-box-shadow:0 0 2px rgba(0,0,0,.4);}");
	a.$("tooltip").css("opacity",0.8);g.hide(a.get("tooltip"))},move:function(f){var h=a.getMousePosition(f).x;f=a.getMousePosition(f).y;var n=a.$("tooltip");h=h;var o=f,p=n.outerHeight(true)+1,q=n.outerWidth(true),r=p+15;q=a.$("container").width()-q-2;p=a.$("container").height()-p-2;if(!isNaN(h)&&!isNaN(o)){h+=10;o-=30;h=Math.max(0,Math.min(q,h));o=Math.max(0,Math.min(p,o));if(f<r)o=r;n.css({left:h,top:o})}},bind:function(f,h){i.initialized||i.init();var n=function(o,p){i.define(o,p);e(o).hover(function(){g.clearTimer("switch_tooltip");
	a.$("container").unbind("mousemove",i.move).bind("mousemove",i.move).trigger("mousemove");i.show(o);j.utils.addTimer("tooltip",function(){a.$("tooltip").stop().show();g.show(a.get("tooltip"),400);i.open=true},i.open?0:500)},function(){a.$("container").unbind("mousemove",i.move);g.clearTimer("tooltip");a.$("tooltip").stop();g.hide(a.get("tooltip"),200,function(){a.$("tooltip").hide();g.addTimer("switch_tooltip",function(){i.open=false},1E3)})})};typeof h==="string"?n(f in a._dom?a.get(f):f,h):e.each(f,
	function(o,p){n(a.get(o),p)})},show:function(f){f=e(f in a._dom?a.get(f):f);var h=f.data("tt"),n=function(o){s.setTimeout(function(p){return function(){i.move(p)}}(o),10);f.unbind("mouseup",n)};if(h=typeof h==="function"?h():h){a.$("tooltip").html(h.replace(/\s/,"&nbsp;"));f.bind("mouseup",n)}},define:function(f,h){if(typeof h!=="function"){var n=h;h=function(){return n}}f=e(f in a._dom?a.get(f):f).data("tt",h);i.show(f)}},k=this._fullscreen={scrolled:0,active:false,enter:function(f){k.active=true;
	g.hide(a.getActiveImage());a.$("container").addClass("fullscreen");k.scrolled=e(s).scrollTop();g.forceStyles(a.get("container"),{position:"fixed",top:0,left:0,width:"100%",height:"100%",zIndex:1E4});var h={height:"100%",overflow:"hidden",margin:0,padding:0};g.forceStyles(z().html,h);g.forceStyles(z().body,h);a.attachKeyboard({escape:a.exitFullscreen,right:a.next,left:a.prev});a.rescale(function(){g.addTimer("fullscreen_enter",function(){g.show(a.getActiveImage());typeof f==="function"&&f.call(a)},
	100);a.trigger(j.FULLSCREEN_ENTER)});e(s).resize(function(){k.scale()})},scale:function(){a.rescale()},exit:function(f){k.active=false;g.hide(a.getActiveImage());a.$("container").removeClass("fullscreen");g.revertStyles(a.get("container"),z().html,z().body);s.scrollTo(0,k.scrolled);a.detachKeyboard();a.rescale(function(){g.addTimer("fullscreen_exit",function(){g.show(a.getActiveImage());typeof f==="function"&&f.call(a)},50);a.trigger(j.FULLSCREEN_EXIT)});e(s).unbind("resize",k.scale)}},l=this._idle=
	{trunk:[],bound:false,add:function(f,h){if(f){l.bound||l.addEvent();f=e(f);var n={},o;for(o in h)if(h.hasOwnProperty(o))n[o]=f.css(o);f.data("idle",{from:n,to:h,complete:true,busy:false});l.addTimer();l.trunk.push(f)}},remove:function(f){f=jQuery(f);e.each(l.trunk,function(h,n){if(n.length&&!n.not(f).length){a._idle.show(f);a._idle.trunk.splice(h,1)}});if(!l.trunk.length){l.removeEvent();g.clearTimer("idle")}},addEvent:function(){l.bound=true;a.$("container").bind("mousemove click",l.showAll)},removeEvent:function(){l.bound=
	false;a.$("container").unbind("mousemove click",l.showAll)},addTimer:function(){g.addTimer("idle",function(){a._idle.hide()},a._options.idleTime)},hide:function(){a.trigger(j.IDLE_ENTER);e.each(l.trunk,function(f,h){var n=h.data("idle");if(n){h.data("idle").complete=false;h.stop().animate(n.to,{duration:a._options.idleSpeed,queue:false,easing:"swing"})}})},showAll:function(){g.clearTimer("idle");e.each(a._idle.trunk,function(f,h){a._idle.show(h)})},show:function(f){var h=f.data("idle");if(!h.busy&&
	!h.complete){h.busy=true;a.trigger(j.IDLE_EXIT);g.clearTimer("idle");f.stop().animate(h.from,{duration:a._options.idleSpeed/2,queue:false,easing:"swing",complete:function(){e(this).data("idle").busy=false;e(this).data("idle").complete=true}})}l.addTimer()}},m=this._lightbox={width:0,height:0,initialized:false,active:null,image:null,elems:{},init:function(){a.trigger(j.LIGHTBOX_OPEN);if(!m.initialized){m.initialized=true;var f={},h=a._options,n="";h={overlay:"position:fixed;display:none;opacity:"+
	h.overlayOpacity+";filter:alpha(opacity="+h.overlayOpacity*100+");top:0;left:0;width:100%;height:100%;background:"+h.overlayBackground+";z-index:99990",box:"position:fixed;display:none;width:400px;height:400px;top:50%;left:50%;margin-top:-200px;margin-left:-200px;z-index:99991",shadow:"position:absolute;background:#000;width:100%;height:100%;",content:"position:absolute;background-color:#fff;top:10px;left:10px;right:10px;bottom:10px;overflow:hidden",info:"position:absolute;bottom:10px;left:10px;right:10px;color:#444;font:11px/13px arial,sans-serif;height:13px",
	close:"position:absolute;top:10px;right:10px;height:20px;width:20px;background:#fff;text-align:center;cursor:pointer;color:#444;font:16px/22px arial,sans-serif;z-index:99999",image:"position:absolute;top:10px;left:10px;right:10px;bottom:30px;overflow:hidden;display:block;",prevholder:"position:absolute;width:50%;top:0;bottom:40px;cursor:pointer;",nextholder:"position:absolute;width:50%;top:0;bottom:40px;right:-1px;cursor:pointer;",prev:"position:absolute;top:50%;margin-top:-20px;height:40px;width:30px;background:#fff;left:20px;display:none;line-height:40px;text-align:center;color:#000",
	next:"position:absolute;top:50%;margin-top:-20px;height:40px;width:30px;background:#fff;right:20px;left:auto;display:none;line-height:40px;text-align:center;color:#000",title:"float:left",counter:"float:right;margin-left:8px;"};var o={};if(u===8){h.nextholder+="background:#000;filter:alpha(opacity=0);";h.prevholder+="background:#000;filter:alpha(opacity=0);"}e.each(h,function(p,q){n+=".galleria-lightbox-"+p+"{"+q+"}"});g.insertStyleTag(n);e.each("overlay box content shadow title info close prevholder prev nextholder next counter image".split(" "),
	function(p,q){a.addElement("lightbox-"+q);f[q]=m.elems[q]=a.get("lightbox-"+q)});m.image=new j.Picture;e.each({box:"shadow content close prevholder nextholder",info:"title counter",content:"info image",prevholder:"prev",nextholder:"next"},function(p,q){var r=[];e.each(q.split(" "),function(w,v){r.push("lightbox-"+v)});o["lightbox-"+p]=r});a.append(o);e(f.image).append(m.image.container);e(z().body).append(f.overlay,f.box);(function(p){return p.hover(function(){e(this).css("color","#bbb")},function(){e(this).css("color",
	"#444")})})(e(f.close).bind(y(),m.hide).html("&#215;"));e.each(["Prev","Next"],function(p,q){var r=e(f[q.toLowerCase()]).html(/v/.test(q)?"&#8249;&nbsp;":"&nbsp;&#8250;"),w=e(f[q.toLowerCase()+"holder"]);w.bind(y(),function(){m["show"+q]()});u<8?r.show():w.hover(function(){r.show()},function(){r.stop().fadeOut(200)})});e(f.overlay).bind(y(),m.hide)}},rescale:function(f){var h=Math.min(e(s).width()-40,m.width),n=Math.min(e(s).height()-60,m.height);n=Math.min(h/m.width,n/m.height);h=m.width*n+40;n=
	m.height*n+60;h={width:h,height:n,marginTop:Math.ceil(n/2)*-1,marginLeft:Math.ceil(h/2)*-1};f?e(m.elems.box).css(h):e(m.elems.box).animate(h,a._options.lightboxTransitionSpeed,a._options.easing,function(){var o=m.image,p=a._options.lightboxFadeSpeed;a.trigger({type:j.LIGHTBOX_IMAGE,imageTarget:o.image});o.show();g.show(o.image,p);g.show(m.elems.info,p)})},hide:function(){m.image.image=null;e(s).unbind("resize",m.rescale);e(m.elems.box).hide();g.hide(m.elems.info);g.hide(m.elems.overlay,200,function(){e(this).hide().css("opacity",
	a._options.overlayOpacity);a.trigger(j.LIGHTBOX_CLOSE)})},showNext:function(){m.show(a.getNext(m.active))},showPrev:function(){m.show(a.getPrev(m.active))},show:function(f){m.active=f=typeof f==="number"?f:a.getIndex();m.initialized||m.init();e(s).unbind("resize",m.rescale);var h=a.getData(f),n=a.getDataLength();g.hide(m.elems.info);m.image.load(h.image,function(o){m.width=o.original.width;m.height=o.original.height;e(o.image).css({width:"100.5%",height:"100.5%",top:0,zIndex:99998,opacity:0});m.elems.title.innerHTML=
	h.title;m.elems.counter.innerHTML=f+1+" / "+n;e(s).resize(m.rescale);m.rescale()});e(m.elems.overlay).show();e(m.elems.box).show()}};return this};j.prototype={constructor:j,init:function(a,b){var c=this;b=L(b);C.push(this);this._original={target:a,options:b,data:null};if(this._target=this._dom.target=a.nodeName?a:e(a).get(0)){this._options={autoplay:false,carousel:true,carouselFollow:true,carouselSpeed:400,carouselSteps:"auto",clicknext:false,dataConfig:function(){return{}},dataSelector:"img",dataSource:this._target,
	debug:void 0,easing:"galleria",extend:function(){},height:"auto",idleTime:3E3,idleSpeed:200,imageCrop:false,imageMargin:0,imagePan:false,imagePanSmoothness:12,imagePosition:"50%",keepSource:false,lightboxFadeSpeed:200,lightboxTransition_speed:500,linkSourceTmages:true,maxScaleRatio:void 0,minScaleRatio:void 0,overlayOpacity:0.85,overlayBackground:"#0b0b0b",pauseOnInteraction:true,popupLinks:false,preload:2,queue:true,show:0,showInfo:true,showCounter:true,showImagenav:true,thumbCrop:true,thumbEventType:y(),
	thumbFit:true,thumbMargin:0,thumbQuality:"auto",thumbnails:true,transition:"fade",transitionInitial:void 0,transitionSpeed:400,width:"auto"};if(b&&b.debug===true)E=true;e(this._target).children().hide();typeof j.theme==="object"?this._init():g.wait({until:function(){return typeof j.theme==="object"},success:function(){c._init.call(c)},error:function(){j.raise("No theme found.",true)},timeout:5E3})}else j.raise("Target not found.")},_init:function(){var a=this;if(this._initialized){j.raise("Init failed: Gallery instance already initialized.");
	return this}this._initialized=true;if(!j.theme){j.raise("Init failed: No theme found.");return this}e.extend(true,this._options,j.theme.defaults,this._original.options);this.bind(j.DATA,function(){this._original.data=this._data;this.get("total").innerHTML=this.getDataLength();var b=this.$("container"),c={width:0,height:0},d=g.create("galleria-image");g.wait({until:function(){e.each(["width","height"],function(k,l){c[l]=a._options[l]&&typeof a._options[l]==="number"?a._options[l]:Math.max(g.parseValue(b.css(l)),
	g.parseValue(a.$("target").css(l)),b[l](),a.$("target")[l]())});var i=function(){return true};if(a._options.thumbnails){a.$("thumbnails").append(d);i=function(){return!!e(d).height()}}return i()&&c.width&&c.height>10},success:function(){e(d).remove();b.width(c.width);b.height(c.height);j.WEBKIT?s.setTimeout(function(){a._run()},1):a._run()},error:function(){j.raise("Width & Height not found.",true)},timeout:2E3})});this.bind(j.READY,function(b){return function(){g.show(this.get("counter"));this._options.carousel&&
	this._carousel.bindControls();if(this._options.autoplay){this.pause();if(typeof this._options.autoplay==="number")this._playtime=this._options.autoplay;this.trigger(j.PLAY);this._playing=true}if(b)typeof this._options.show==="number"&&this.show(this._options.show);else{b=true;if(this._options.clicknext){e.each(this._data,function(c,d){delete d.link});this.$("stage").css({cursor:"pointer"}).bind(y(),function(){a.next()})}j.History&&j.History.change(function(c){c=parseInt(c.value.replace(/\//,""),10);
	isNaN(c)?s.history.go(-1):a.show(c,void 0,true)});j.theme.init.call(this,this._options);this._options.extend.call(this,this._options);/^[0-9]{1,4}$/.test(J)&&j.History?this.show(J,void 0,true):this.show(this._options.show)}}}(false));this.append({"info-text":["info-title","info-description","info-author"],info:["info-text"],"image-nav":["image-nav-right","image-nav-left"],stage:["images","loader","counter","image-nav"],"thumbnails-list":["thumbnails"],"thumbnails-container":["thumb-nav-left","thumbnails-list",
	"thumb-nav-right"],container:["stage","thumbnails-container","info","tooltip"]});g.hide(this.$("counter").append(this.get("current")," / ",this.get("total")));this.setCounter("&#8211;");g.hide(a.get("tooltip"));e.each(Array(2),function(b){var c=new j.Picture;e(c.container).css({position:"absolute",top:0,left:0});a.$("images").append(c.container);a._controls[b]=c});this.$("images").css({position:"relative",top:0,left:0,width:"100%",height:"100%"});this.$("thumbnails, thumbnails-list").css({overflow:"hidden",
	position:"relative"});this.$("image-nav-right, image-nav-left").bind(y(),function(b){a._options.clicknext&&b.stopPropagation();a._options.pause_on_interaction&&a.pause();b=/right/.test(this.className)?"next":"prev";a[b]()});e.each(["info","counter","image-nav"],function(b,c){a._options["show"+c.substr(0,1).toUpperCase()+c.substr(1).replace(/-/,"")]===false&&g.moveOut(a.get(c.toLowerCase()))});this.load();if(!this._options.keep_source&&!u)this._target.innerHTML="";this.$("target").append(this.get("container"));
	this._options.carousel&&this.bind(j.THUMBNAIL,function(){this.updateCarousel()});return this},_createThumbnails:function(){var a,b,c,d,i,k=this,l=this._options,m=function(){var q=k.$("thumbnails").find(".active");if(!q.length)return false;return q.find("img").attr("src")}(),f=typeof l.thumbnails==="string"?l.thumbnails.toLowerCase():null,h=function(q){return t.defaultView&&t.defaultView.getComputedStyle?t.defaultView.getComputedStyle(c.container,null)[q]:i.css(q)},n=function(q,r,w){return function(){e(w).append(q);
	k.trigger({type:j.THUMBNAIL,thumbTarget:q,index:r})}},o=function(q){l.pauseOnInteraction&&k.pause();var r=e(q.currentTarget).data("index");k.getIndex()!==r&&k.show(r);q.preventDefault()},p=function(q){q.scale({width:q.data.width,height:q.data.height,crop:l.thumbCrop,margin:l.thumbMargin,complete:function(r){var w=["left","top"],v,A;e.each(["Width","Height"],function(D,H){v=H.toLowerCase();if((l.thumbCrop!==true||l.thumbCrop===v)&&l.thumbFit){A={};A[v]=r[v];e(r.container).css(A);A={};A[w[D]]=0;e(r.image).css(A)}r["outer"+
	H]=e(r.container)["outer"+H](true)});g.toggleQuality(r.image,l.thumbQuality===true||l.thumbQuality==="auto"&&r.original.width<r.width*3);k.trigger({type:j.THUMBNAIL,thumbTarget:r.image,index:r.data.order})}})};this._thumbnails=[];this.$("thumbnails").empty();for(a=0;this._data[a];a++){d=this._data[a];if(l.thumbnails===true){c=new j.Picture(a);b=d.thumb||d.image;this.$("thumbnails").append(c.container);i=e(c.container);c.data={width:g.parseValue(h("width")),height:g.parseValue(h("height")),order:a};
	l.thumbFit&&l.thumbCrop!==true?i.css({width:0,height:0}):i.css({width:c.data.width,height:c.data.height});c.load(b,p);l.preload==="all"&&c.add(d.image)}else if(f==="empty"||f==="numbers"){c={container:g.create("galleria-image"),image:g.create("img","span"),ready:true};f==="numbers"&&e(c.image).text(a+1);this.$("thumbnails").append(c.container);s.setTimeout(n(c.image,a,c.container),50+a*20)}else c={container:null,image:null};e(c.container).add(l.keepSource&&l.linkSourceImages?d.original:null).data("index",
	a).bind(l.thumbEventType,o);m===b&&e(c.container).addClass("active");this._thumbnails.push(c)}},_run:function(){var a=this;a._createThumbnails();g.wait({until:function(){j.OPERA&&a.$("stage").css("display","inline-block");a._stageWidth=a.$("stage").width();a._stageHeight=a.$("stage").height();return a._stageWidth&&a._stageHeight>50},success:function(){a.trigger(j.READY)},error:function(){j.raise("Stage measures not found",true)}})},load:function(a,b,c){var d=this;this._data=[];this._thumbnails=[];
	this.$("thumbnails").empty();if(typeof b==="function"){c=b;b=null}a=a||this._options.dataSource;b=b||this._options.dataSelector;c=c||this._options.dataConfig;if(a.constructor===Array){if(this.validate(a)){this._data=a;this._parseData().trigger(j.DATA)}else j.raise("Load failed: JSON Array not valid.");return this}e(a).find(b).each(function(i,k){k=e(k);var l={},m=k.parent().attr("href");if(/\.(png|gif|jpg|jpeg)(\?.*)?$/i.test(m))l.image=m;else if(m)l.link=m;d._data.push(e.extend({title:k.attr("title"),
	thumb:k.attr("src"),image:k.attr("src"),description:k.attr("alt"),link:k.attr("longdesc"),original:k.get(0)},l,c(k)))});this.getDataLength()?this.trigger(j.DATA):j.raise("Load failed: no data found.");return this},_parseData:function(){var a=this;e.each(this._data,function(b,c){if("thumb"in c===false)a._data[b].thumb=c.image});return this},splice:function(){Array.prototype.splice.apply(this._data,g.array(arguments));return this._parseData()._createThumbnails()},push:function(){Array.prototype.push.apply(this._data,
	g.array(arguments));return this._parseData()._createThumbnails()},_getActive:function(){return this._controls.getActive()},validate:function(){return true},bind:function(a,b){a=F(a);this.$("container").bind(a,this.proxy(b));return this},unbind:function(a){a=F(a);this.$("container").unbind(a);return this},trigger:function(a){a=typeof a==="object"?e.extend(a,{scope:this}):{type:F(a),scope:this};this.$("container").trigger(a);return this},addIdleState:function(){this._idle.add.apply(this._idle,g.array(arguments));
	return this},removeIdleState:function(){this._idle.remove.apply(this._idle,g.array(arguments));return this},enterIdleMode:function(){this._idle.hide();return this},exitIdleMode:function(){this._idle.showAll();return this},enterFullscreen:function(){this._fullscreen.enter.apply(this,g.array(arguments));return this},exitFullscreen:function(){this._fullscreen.exit.apply(this,g.array(arguments));return this},toggleFullscreen:function(){this._fullscreen[this.isFullscreen()?"exit":"enter"].apply(this,g.array(arguments));
	return this},bindTooltip:function(){this._tooltip.bind.apply(this._tooltip,g.array(arguments));return this},defineTooltip:function(){this._tooltip.define.apply(this._tooltip,g.array(arguments));return this},refreshTooltip:function(){this._tooltip.show.apply(this._tooltip,g.array(arguments));return this},openLightbox:function(){this._lightbox.show.apply(this._lightbox,g.array(arguments));return this},closeLightbox:function(){this._lightbox.hide.apply(this._lightbox,g.array(arguments));return this},
	getActiveImage:function(){return this._getActive().image||void 0},getActiveThumb:function(){return this._thumbnails[this._active].image||void 0},getMousePosition:function(a){return{x:a.pageX-this.$("container").offset().left,y:a.pageY-this.$("container").offset().top}},addPan:function(a){if(this._options.imageCrop!==false){a=e(a||this.getActiveImage());var b=this,c=a.width()/2,d=a.height()/2,i=parseInt(a.css("left"),10),k=parseInt(a.css("top"),10),l=i||0,m=k||0,f=0,h=0,n=false,o=g.timestamp(),p=0,
	q=0,r=function(v,A,D){if(v>0){q=Math.round(Math.max(v*-1,Math.min(0,A)));if(p!==q){p=q;if(u===8)a.parent()["scroll"+D](q*-1);else{v={};v[D.toLowerCase()]=q;a.css(v)}}}},w=function(v){if(!(g.timestamp()-o<50)){n=true;c=b.getMousePosition(v).x;d=b.getMousePosition(v).y}};if(u===8){a.parent().scrollTop(m*-1).scrollLeft(l*-1);a.css({top:0,left:0})}this.$("stage").unbind("mousemove",w).bind("mousemove",w);g.addTimer("pan",function(){if(n){f=a.width()-b._stageWidth;h=a.height()-b._stageHeight;i=c/b._stageWidth*
	f*-1;k=d/b._stageHeight*h*-1;l+=(i-l)/b._options.imagePanSmoothness;m+=(k-m)/b._options.imagePanSmoothness;r(h,m,"Top");r(f,l,"Left")}},50,true);return this}},proxy:function(a,b){if(typeof a!=="function")return function(){};b=b||this;return function(){return a.apply(b,g.array(arguments))}},removePan:function(){this.$("stage").unbind("mousemove");g.clearTimer("pan");return this},addElement:function(){var a=this._dom;e.each(g.array(arguments),function(b,c){a[c]=g.create("galleria-"+c)});return this},
	attachKeyboard:function(){this._keyboard.attach.apply(this._keyboard,g.array(arguments));return this},detachKeyboard:function(){this._keyboard.detach.apply(this._keyboard,g.array(arguments));return this},appendChild:function(a,b){this.$(a).append(this.get(b)||b);return this},prependChild:function(a,b){this.$(a).prepend(this.get(b)||b);return this},remove:function(){this.$(g.array(arguments).join(",")).remove();return this},append:function(a){var b,c;for(b in a)if(a.hasOwnProperty(b))if(a[b].constructor===
	Array)for(c=0;a[b][c];c++)this.appendChild(b,a[b][c]);else this.appendChild(b,a[b]);return this},_scaleImage:function(a,b){b=e.extend({width:this._stageWidth,height:this._stageHeight,crop:this._options.imageCrop,max:this._options.maxScaleRatio,min:this._options.minScaleRatio,margin:this._options.imageMargin,position:this._options.imagePosition},b);(a||this._controls.getActive()).scale(b);return this},updateCarousel:function(){this._carousel.update();return this},rescale:function(a,b,c){var d=this;
	if(typeof a==="function"){c=a;a=void 0}var i=function(){d._stageWidth=a||d.$("stage").width();d._stageHeight=b||d.$("stage").height();d._scaleImage();d._options.carousel&&d.updateCarousel();d.trigger(j.RESCALE);typeof c==="function"&&c.call(d)};j.WEBKIT&&!a&&!b?g.addTimer("scale",i,5):i.call(d);return this},refreshImage:function(){this._scaleImage();this._options.imagePan&&this.addPan();return this},show:function(a,b,c){if(!(a===false||!this._options.queue&&this._queue.stalled)){a=Math.max(0,Math.min(parseInt(a,
	10),this.getDataLength()-1));b=typeof b!=="undefined"?!!b:a<this.getIndex();c=c||false;if(!c&&j.History)j.History.value(a.toString());else{this._active=a;Array.prototype.push.call(this._queue,{index:a,rewind:b});this._queue.stalled||this._show();return this}}},_show:function(){var a=this,b=this._queue[0],c=this.getData(b.index);if(c){var d=c.image,i=this._controls.getActive(),k=this._controls.getNext(),l=k.isCached(d),m=this._thumbnails[b.index],f=function(){a._queue.stalled=false;g.toggleQuality(k.image,
	a._options.imageQuality);e(i.container).css({zIndex:0,opacity:0});e(k.container).css({zIndex:1,opacity:1});a._controls.swap();a._options.imagePan&&a.addPan(k.image);c.link&&e(k.image).css({cursor:"pointer"}).bind(y(),function(){if(a._options.popupLinks)s.open(c.link,"_blank");else s.location.href=c.link});Array.prototype.shift.call(a._queue);a._queue.length&&a._show();a._playCheck();a.trigger({type:j.IMAGE,index:b.index,imageTarget:k.image,thumbTarget:m.image})};this._options.carousel&&this._options.carouselFollow&&
	this._carousel.follow(b.index);if(this._options.preload){var h,n,o=this.getNext();try{for(n=this._options.preload;n>0;n--){h=new j.Picture;h.add(a.getData(o).image);o=a.getNext(o)}}catch(p){}}g.show(k.container);e(a._thumbnails[b.index].container).addClass("active").siblings(".active").removeClass("active");a.trigger({type:j.LOADSTART,cached:l,index:b.index,imageTarget:k.image,thumbTarget:m.image});k.load(d,function(q){a._scaleImage(q,{complete:function(r){g.show(r.container);"image"in i&&g.toggleQuality(i.image,
	false);g.toggleQuality(r.image,false);a._queue.stalled=true;a.removePan();a.setInfo(b.index);a.setCounter(b.index);a.trigger({type:j.LOADFINISH,cached:l,index:b.index,imageTarget:r.image,thumbTarget:a._thumbnails[b.index].image});var w=i.image===null&&a._options.transitionInitial?a._options.transition_Initial:a._options.transition;w in G===false?f():G[w].call(a,{prev:i.image,next:r.image,rewind:b.rewind,speed:a._options.transitionSpeed||400},f)}})})}},getNext:function(a){a=typeof a==="number"?a:this.getIndex();
	return a===this.getDataLength()-1?0:a+1},getPrev:function(a){a=typeof a==="number"?a:this.getIndex();return a===0?this.getDataLength()-1:a-1},next:function(){this.getDataLength()>1&&this.show(this.getNext(),false);return this},prev:function(){this.getDataLength()>1&&this.show(this.getPrev(),true);return this},get:function(a){return a in this._dom?this._dom[a]:null},getData:function(a){return a in this._data?this._data[a]:this._data[this._active]},getDataLength:function(){return this._data.length},
	getIndex:function(){return typeof this._active==="number"?this._active:false},getStageHeight:function(){return this._stageHeight},getStageWidth:function(){return this._stageWidth},getOptions:function(a){return typeof a==="undefined"?this._options:this._options[a]},setOptions:function(a,b){if(typeof a==="object")e.extend(this._options,a);else this._options[a]=b;return this},play:function(a){this._playing=true;this._playtime=a||this._playtime;this._playCheck();this.trigger(j.PLAY);return this},pause:function(){this._playing=
	false;this.trigger(j.PAUSE);return this},playToggle:function(a){return this._playing?this.pause():this.play(a)},isPlaying:function(){return this._playing},isFullscreen:function(){return this._fullscreen.active},_playCheck:function(){var a=this,b=0,c=g.timestamp(),d="play"+this._id;if(this._playing){g.clearTimer(d);var i=function(){b=g.timestamp()-c;if(b>=a._playtime&&a._playing){g.clearTimer(d);a.next()}else if(a._playing){a.trigger({type:j.PROGRESS,percent:Math.ceil(b/a._playtime*100),seconds:Math.floor(b/
	1E3),milliseconds:b});g.addTimer(d,i,20)}};g.addTimer(d,i,20)}},setIndex:function(a){this._active=a;return this},setCounter:function(a){if(typeof a==="number")a++;else if(typeof a==="undefined")a=this.getIndex()+1;this.get("current").innerHTML=a;if(u){a=this.$("counter");var b=a.css("opacity"),c=a.attr("style");c&&parseInt(b,10)===1?a.attr("style",c.replace(/filter[^\;]+\;/i,"")):this.$("counter").css("opacity",b)}return this},setInfo:function(a){var b=this,c=this.getData(a);e.each(["title","description",
	"author"],function(d,i){var k=b.$("info-"+i);c[i]?k[c[i].length?"show":"hide"]().html(c[i]):k.empty().hide()});return this},hasInfo:function(a){var b="title description".split(" "),c;for(c=0;b[c];c++)if(this.getData(a)[b[c]])return true;return false},jQuery:function(a){var b=this,c=[];e.each(a.split(","),function(i,k){k=e.trim(k);b.get(k)&&c.push(k)});var d=e(b.get(c.shift()));e.each(c,function(i,k){d=d.add(b.get(k))});return d},$:function(){return this.jQuery.apply(this,g.array(arguments))}};e.each(K,
	function(a,b){var c=/_/.test(b)?b.replace(/_/g,""):b;j[b.toUpperCase()]="galleria."+c});e.extend(j,{IE9:u===9,IE8:u===8,IE7:u===7,IE6:u===6,IE:!!u,WEBKIT:/webkit/.test(x),SAFARI:/safari/.test(x),CHROME:/chrome/.test(x),QUIRK:u&&t.compatMode&&t.compatMode==="BackCompat",MAC:/mac/.test(navigator.platform.toLowerCase()),OPERA:!!s.opera,IPHONE:/iphone/.test(x),IPAD:/ipad/.test(x),ANDROID:/android/.test(x),TOUCH:!!(/iphone/.test(x)||/ipad/.test(x)||/android/.test(x))});j.addTheme=function(a){a.name||j.raise("No theme name specified");
	a.defaults=typeof a.defaults!=="object"?{}:L(a.defaults);var b=false,c;if(typeof a.css==="string"){e("link").each(function(d,i){c=RegExp(a.css);if(c.test(i.href)){b=true;j.theme=a;return false}});b||e("script").each(function(d,i){c=RegExp("galleria\\."+a.name.toLowerCase()+"\\.");if(c.test(i.src)){b=i.src.replace(/[^\/]*$/,"")+a.css;g.addTimer("css",function(){g.loadCSS(b,"galleria-theme",function(){j.theme=a})},1)}});b||j.raise("No theme CSS loaded")}else j.theme=a;return a};j.loadTheme=function(a,
	b){var c=false,d=C.length;j.theme=void 0;g.loadScript(a,function(){c=true});g.wait({until:function(){return c},error:function(){j.raise("Theme at "+a+" could not load, check theme path.",true)},success:function(){if(d){var i=[];e.each(j.get(),function(k,l){var m=e.extend(l._original.options,{data_source:l._data},b);l.$("container").remove();var f=new j;f._id=l._id;f.init(l._original.target,m);i.push(f)});C=i}},timeout:2E3})};j.get=function(a){if(C[a])return C[a];else if(typeof a!=="number")return C;
	else j.raise("Gallery index "+a+" not found")};j.addTransition=function(a,b){G[a]=b};j.utils=g;j.log=function(){try{s.console.log.apply(s.console,g.array(arguments))}catch(a){try{s.opera.postError.apply(s.opera,arguments)}catch(b){s.alert(g.array(arguments).split(", "))}}};j.raise=function(a,b){if(E||b)throw Error((b?"Fatal error":"Error")+": "+a);};j.Picture=function(a){this.id=a||null;this.image=null;this.container=g.create("galleria-image");e(this.container).css({overflow:"hidden",position:"relative"});
	this.original={width:0,height:0};this.loaded=this.ready=false};j.Picture.prototype={cache:{},add:function(a){var b=0,c=this,d=new Image,i=function(){if((!this.width||!this.height)&&b<1E3){b++;e(d).load(i).attr("src",a+"?"+(new Date).getTime())}c.original={height:this.height,width:this.width};c.cache[a]=a;c.loaded=true};e(d).css("display","block");if(c.cache[a]){d.src=a;i.call(d);return d}e(d).load(i).attr("src",a);return d},show:function(){g.show(this.image)},hide:function(){g.moveOut(this.image)},
	clear:function(){this.image=null},isCached:function(a){return!!this.cache[a]},load:function(a,b){var c=this;e(this.container).empty(true);this.image=this.add(a);g.hide(this.image);e(this.container).append(this.image);g.wait({until:function(){return c.loaded&&c.image.complete&&c.original.width&&c.image.width},success:function(){s.setTimeout(function(){b.call(c,c)},50)},error:function(){s.setTimeout(function(){b.call(c,c)},50);j.raise("image not loaded in 10 seconds: "+a)},timeout:1E4});return this.container},
	scale:function(a){a=e.extend({width:0,height:0,min:void 0,max:void 0,margin:0,complete:function(){},position:"center",crop:false},a);if(!this.image)return this.container;var b,c,d=this,i=e(d.container);g.wait({until:function(){b=a.width||i.width()||g.parseValue(i.css("width"));c=a.height||i.height()||g.parseValue(i.css("height"));return b&&c},success:function(){var k=(b-a.margin*2)/d.original.width,l=(c-a.margin*2)/d.original.height,m={"true":Math.max(k,l),width:k,height:l,"false":Math.min(k,l)}[a.crop.toString()];
	if(a.max)m=Math.min(a.max,m);if(a.min)m=Math.max(a.min,m);e(d.container).width(b).height(c);e.each(["width","height"],function(o,p){e(d.image)[p](d.image[p]=d[p]=Math.round(d.original[p]*m))});var f={},h={};k=function(o,p,q){var r=0;if(/\%/.test(o)){o=parseInt(o,10)/100;p=d.image[p]||e(d.image)[p]();r=Math.ceil(p*-1*o+q*o)}else r=g.parseValue(o);return r};var n={top:{top:0},left:{left:0},right:{left:"100%"},bottom:{top:"100%"}};e.each(a.position.toLowerCase().split(" "),function(o,p){if(p==="center")p=
	"50%";f[o?"top":"left"]=p});e.each(f,function(o,p){n.hasOwnProperty(p)&&e.extend(h,n[p])});f=f.top?e.extend(f,h):h;f=e.extend({top:"50%",left:"50%"},f);e(d.image).css({position:"relative",top:k(f.top,"height",c),left:k(f.left,"width",b)});d.show();d.ready=true;a.complete.call(d,d)},error:function(){j.raise("Could not scale image: "+d.image.src)},timeout:1E3});return this}};e.extend(e.easing,{galleria:function(a,b,c,d,i){if((b/=i/2)<1)return d/2*b*b*b*b+c;return-d/2*((b-=2)*b*b*b-2)+c},galleriaIn:function(a,
	b,c,d,i){return d*(b/=i)*b*b*b+c},galleriaOut:function(a,b,c,d,i){return-d*((b=b/i-1)*b*b*b-1)+c}});e.fn.galleria=function(a){return this.each(function(){(new j).init(this,a)})};s.Galleria=j})(jQuery);



	/*
	 * FancyBox - jQuery Plugin
	 * Simple and fancy lightbox alternative
	 *
	 * Examples and documentation at: http://fancybox.net
	 *
	 * Copyright (c) 2008 - 2010 Janis Skarnelis
	 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
	 *
	 * Version: 1.3.4 (11/11/2010)
	 * Requires: jQuery v1.3+
	 *
	 * Dual licensed under the MIT and GPL licenses:
	 *   http://www.opensource.org/licenses/mit-license.php
	 *   http://www.gnu.org/licenses/gpl.html
	 */

	;(function(b){var m,t,u,f,D,j,E,n,z,A,q=0,e={},o=[],p=0,d={},l=[],G=null,v=new Image,J=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,W=/[^\.]\.(swf)\s*$/i,K,L=1,y=0,s="",r,i,h=false,B=b.extend(b("<div/>")[0],{prop:0}),M=b.browser.msie&&b.browser.version<7&&!window.XMLHttpRequest,N=function(){t.hide();v.onerror=v.onload=null;G&&G.abort();m.empty()},O=function(){if(false===e.onError(o,q,e)){t.hide();h=false}else{e.titleShow=false;e.width="auto";e.height="auto";m.html('<p id="fancybox-error">The requested content cannot be loaded.<br />Please try again later.</p>');
	F()}},I=function(){var a=o[q],c,g,k,C,P,w;N();e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));w=e.onStart(o,q,e);if(w===false)h=false;else{if(typeof w=="object")e=b.extend(e,w);k=e.title||(a.nodeName?b(a).attr("title"):a.title)||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(k===""&&e.orig&&e.titleFromAlt)k=e.orig.attr("alt");c=e.href||(a.nodeName?b(a).attr("href"):a.href)||null;if(/^(?:javascript)/i.test(c)||
	c=="#")c=null;if(e.type){g=e.type;if(!c)c=e.content}else if(e.content)g="html";else if(c)g=c.match(J)?"image":c.match(W)?"swf":b(a).hasClass("iframe")?"iframe":c.indexOf("#")===0?"inline":"ajax";if(g){if(g=="inline"){a=c.substr(c.indexOf("#"));g=b(a).length>0?"inline":"ajax"}e.type=g;e.href=c;e.title=k;if(e.autoDimensions)if(e.type=="html"||e.type=="inline"||e.type=="ajax"){e.width="auto";e.height="auto"}else e.autoDimensions=false;if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=
	false;e.enableEscapeButton=false;e.showCloseButton=false}e.padding=parseInt(e.padding,10);e.margin=parseInt(e.margin,10);m.css("padding",e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(j.children())});switch(g){case "html":m.html(e.content);F();break;case "inline":if(b(a).parent().is("#fancybox-content")===true){h=false;break}b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(j.children())}).bind("fancybox-cancel",
	function(){b(this).replaceWith(m.children())});b(a).appendTo(m);F();break;case "image":h=false;b.fancybox.showActivity();v=new Image;v.onerror=function(){O()};v.onload=function(){h=true;v.onerror=v.onload=null;e.width=v.width;e.height=v.height;b("<img />").attr({id:"fancybox-img",src:v.src,alt:e.title}).appendTo(m);Q()};v.src=c;break;case "swf":e.scrolling="no";C='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+c+
	'"></param>';P="";b.each(e.swf,function(x,H){C+='<param name="'+x+'" value="'+H+'"></param>';P+=" "+x+'="'+H+'"'});C+='<embed src="'+c+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+P+"></embed></object>";m.html(C);F();break;case "ajax":h=false;b.fancybox.showActivity();e.ajax.win=e.ajax.success;G=b.ajax(b.extend({},e.ajax,{url:c,data:e.ajax.data||{},error:function(x){x.status>0&&O()},success:function(x,H,R){if((typeof R=="object"?R:G).status==200){if(typeof e.ajax.win==
	"function"){w=e.ajax.win(c,x,H,R);if(w===false){t.hide();return}else if(typeof w=="string"||typeof w=="object")x=w}m.html(x);F()}}}));break;case "iframe":Q()}}else O()}},F=function(){var a=e.width,c=e.height;a=a.toString().indexOf("%")>-1?parseInt((b(window).width()-e.margin*2)*parseFloat(a)/100,10)+"px":a=="auto"?"auto":a+"px";c=c.toString().indexOf("%")>-1?parseInt((b(window).height()-e.margin*2)*parseFloat(c)/100,10)+"px":c=="auto"?"auto":c+"px";m.wrapInner('<div style="width:'+a+";height:"+c+
	";overflow: "+(e.scrolling=="auto"?"auto":e.scrolling=="yes"?"scroll":"hidden")+';position:relative;"></div>');e.width=m.width();e.height=m.height();Q()},Q=function(){var a,c;t.hide();if(f.is(":visible")&&false===d.onCleanup(l,p,d)){b.event.trigger("fancybox-cancel");h=false}else{h=true;b(j.add(u)).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");f.is(":visible")&&d.titlePosition!=="outside"&&f.css("height",f.height());l=o;p=q;d=e;if(d.overlayShow){u.css({"background-color":d.overlayColor,
	opacity:d.overlayOpacity,cursor:d.hideOnOverlayClick?"pointer":"auto",height:b(document).height()});if(!u.is(":visible")){M&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});u.show()}}else u.hide();i=X();s=d.title||"";y=0;n.empty().removeAttr("style").removeClass();if(d.titleShow!==false){if(b.isFunction(d.titleFormat))a=d.titleFormat(s,l,p,d);else a=s&&s.length?
	d.titlePosition=="float"?'<table id="fancybox-title-float-wrap" cellpadding="0" cellspacing="0"><tr><td id="fancybox-title-float-left"></td><td id="fancybox-title-float-main">'+s+'</td><td id="fancybox-title-float-right"></td></tr></table>':'<div id="fancybox-title-'+d.titlePosition+'">'+s+"</div>":false;s=a;if(!(!s||s==="")){n.addClass("fancybox-title-"+d.titlePosition).html(s).appendTo("body").show();switch(d.titlePosition){case "inside":n.css({width:i.width-d.padding*2,marginLeft:d.padding,marginRight:d.padding});
	y=n.outerHeight(true);n.appendTo(D);i.height+=y;break;case "over":n.css({marginLeft:d.padding,width:i.width-d.padding*2,bottom:d.padding}).appendTo(D);break;case "float":n.css("left",parseInt((n.width()-i.width-40)/2,10)*-1).appendTo(f);break;default:n.css({width:i.width-d.padding*2,paddingLeft:d.padding,paddingRight:d.padding}).appendTo(f)}}}n.hide();if(f.is(":visible")){b(E.add(z).add(A)).hide();a=f.position();r={top:a.top,left:a.left,width:f.width(),height:f.height()};c=r.width==i.width&&r.height==
	i.height;j.fadeTo(d.changeFade,0.3,function(){var g=function(){j.html(m.contents()).fadeTo(d.changeFade,1,S)};b.event.trigger("fancybox-change");j.empty().removeAttr("filter").css({"border-width":d.padding,width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2});if(c)g();else{B.prop=0;b(B).animate({prop:1},{duration:d.changeSpeed,easing:d.easingChange,step:T,complete:g})}})}else{f.removeAttr("style");j.css("border-width",d.padding);if(d.transitionIn=="elastic"){r=V();j.html(m.contents());
	f.show();if(d.opacity)i.opacity=0;B.prop=0;b(B).animate({prop:1},{duration:d.speedIn,easing:d.easingIn,step:T,complete:S})}else{d.titlePosition=="inside"&&y>0&&n.show();j.css({width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2}).html(m.contents());f.css(i).fadeIn(d.transitionIn=="none"?0:d.speedIn,S)}}}},Y=function(){if(d.enableEscapeButton||d.enableKeyboardNav)b(document).bind("keydown.fb",function(a){if(a.keyCode==27&&d.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if((a.keyCode==
	37||a.keyCode==39)&&d.enableKeyboardNav&&a.target.tagName!=="INPUT"&&a.target.tagName!=="TEXTAREA"&&a.target.tagName!=="SELECT"){a.preventDefault();b.fancybox[a.keyCode==37?"prev":"next"]()}});if(d.showNavArrows){if(d.cyclic&&l.length>1||p!==0)z.show();if(d.cyclic&&l.length>1||p!=l.length-1)A.show()}else{z.hide();A.hide()}},S=function(){if(!b.support.opacity){j.get(0).style.removeAttribute("filter");f.get(0).style.removeAttribute("filter")}e.autoDimensions&&j.css("height","auto");f.css("height","auto");
	s&&s.length&&n.show();d.showCloseButton&&E.show();Y();d.hideOnContentClick&&j.bind("click",b.fancybox.close);d.hideOnOverlayClick&&u.bind("click",b.fancybox.close);b(window).bind("resize.fb",b.fancybox.resize);d.centerOnScroll&&b(window).bind("scroll.fb",b.fancybox.center);if(d.type=="iframe")b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" '+(b.browser.msie?'allowtransparency="true""':"")+' scrolling="'+e.scrolling+'" src="'+d.href+'"></iframe>').appendTo(j);
	f.show();h=false;b.fancybox.center();d.onComplete(l,p,d);var a,c;if(l.length-1>p){a=l[p+1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}if(p>0){a=l[p-1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}},T=function(a){var c={width:parseInt(r.width+(i.width-r.width)*a,10),height:parseInt(r.height+(i.height-r.height)*a,10),top:parseInt(r.top+(i.top-r.top)*a,10),left:parseInt(r.left+(i.left-r.left)*a,10)};if(typeof i.opacity!=="undefined")c.opacity=a<0.5?0.5:a;f.css(c);
	j.css({width:c.width-d.padding*2,height:c.height-y*a-d.padding*2})},U=function(){return[b(window).width()-d.margin*2,b(window).height()-d.margin*2,b(document).scrollLeft()+d.margin,b(document).scrollTop()+d.margin]},X=function(){var a=U(),c={},g=d.autoScale,k=d.padding*2;c.width=d.width.toString().indexOf("%")>-1?parseInt(a[0]*parseFloat(d.width)/100,10):d.width+k;c.height=d.height.toString().indexOf("%")>-1?parseInt(a[1]*parseFloat(d.height)/100,10):d.height+k;if(g&&(c.width>a[0]||c.height>a[1]))if(e.type==
	"image"||e.type=="swf"){g=d.width/d.height;if(c.width>a[0]){c.width=a[0];c.height=parseInt((c.width-k)/g+k,10)}if(c.height>a[1]){c.height=a[1];c.width=parseInt((c.height-k)*g+k,10)}}else{c.width=Math.min(c.width,a[0]);c.height=Math.min(c.height,a[1])}c.top=parseInt(Math.max(a[3]-20,a[3]+(a[1]-c.height-40)*0.5),10);c.left=parseInt(Math.max(a[2]-20,a[2]+(a[0]-c.width-40)*0.5),10);return c},V=function(){var a=e.orig?b(e.orig):false,c={};if(a&&a.length){c=a.offset();c.top+=parseInt(a.css("paddingTop"),
	10)||0;c.left+=parseInt(a.css("paddingLeft"),10)||0;c.top+=parseInt(a.css("border-top-width"),10)||0;c.left+=parseInt(a.css("border-left-width"),10)||0;c.width=a.width();c.height=a.height();c={width:c.width+d.padding*2,height:c.height+d.padding*2,top:c.top-d.padding-20,left:c.left-d.padding-20}}else{a=U();c={width:d.padding*2,height:d.padding*2,top:parseInt(a[3]+a[1]*0.5,10),left:parseInt(a[2]+a[0]*0.5,10)}}return c},Z=function(){if(t.is(":visible")){b("div",t).css("top",L*-40+"px");L=(L+1)%12}else clearInterval(K)};
	b.fn.fancybox=function(a){if(!b(this).length)return this;b(this).data("fancybox",b.extend({},a,b.metadata?b(this).metadata():{})).unbind("click.fb").bind("click.fb",function(c){c.preventDefault();if(!h){h=true;b(this).blur();o=[];q=0;c=b(this).attr("rel")||"";if(!c||c==""||c==="nofollow")o.push(this);else{o=b("a[rel="+c+"], area[rel="+c+"]");q=o.index(this)}I()}});return this};b.fancybox=function(a,c){var g;if(!h){h=true;g=typeof c!=="undefined"?c:{};o=[];q=parseInt(g.index,10)||0;if(b.isArray(a)){for(var k=
	0,C=a.length;k<C;k++)if(typeof a[k]=="object")b(a[k]).data("fancybox",b.extend({},g,a[k]));else a[k]=b({}).data("fancybox",b.extend({content:a[k]},g));o=jQuery.merge(o,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},g,a));else a=b({}).data("fancybox",b.extend({content:a},g));o.push(a)}if(q>o.length||q<0)q=0;I()}};b.fancybox.showActivity=function(){clearInterval(K);t.show();K=setInterval(Z,66)};b.fancybox.hideActivity=function(){t.hide()};b.fancybox.next=function(){return b.fancybox.pos(p+
	1)};b.fancybox.prev=function(){return b.fancybox.pos(p-1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a);o=l;if(a>-1&&a<l.length){q=a;I()}else if(d.cyclic&&l.length>1){q=a>=l.length?0:l.length-1;I()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");N();e.onCancel(o,q,e);h=false}};b.fancybox.close=function(){function a(){u.fadeOut("fast");n.empty().hide();f.hide();b.event.trigger("fancybox-cleanup");j.empty();d.onClosed(l,p,d);l=e=[];p=q=0;d=e={};h=false}if(!(h||f.is(":hidden"))){h=
	true;if(d&&false===d.onCleanup(l,p,d))h=false;else{N();b(E.add(z).add(A)).hide();b(j.add(u)).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");j.find("iframe").attr("src",M&&/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank");d.titlePosition!=="inside"&&n.empty();f.stop();if(d.transitionOut=="elastic"){r=V();var c=f.position();i={top:c.top,left:c.left,width:f.width(),height:f.height()};if(d.opacity)i.opacity=1;n.empty().hide();B.prop=1;
	b(B).animate({prop:0},{duration:d.speedOut,easing:d.easingOut,step:T,complete:a})}else f.fadeOut(d.transitionOut=="none"?0:d.speedOut,a)}}};b.fancybox.resize=function(){u.is(":visible")&&u.css("height",b(document).height());b.fancybox.center(true)};b.fancybox.center=function(a){var c,g;if(!h){g=a===true?1:0;c=U();!g&&(f.width()>c[0]||f.height()>c[1])||f.stop().animate({top:parseInt(Math.max(c[3]-20,c[3]+(c[1]-j.height()-40)*0.5-d.padding)),left:parseInt(Math.max(c[2]-20,c[2]+(c[0]-j.width()-40)*0.5-
	d.padding))},typeof a=="number"?a:200)}};b.fancybox.init=function(){if(!b("#fancybox-wrap").length){b("body").append(m=b('<div id="fancybox-tmp"></div>'),t=b('<div id="fancybox-loading"><div></div></div>'),u=b('<div id="fancybox-overlay"></div>'),f=b('<div id="fancybox-wrap"></div>'));D=b('<div id="fancybox-outer"></div>').append('<div class="fancybox-bg" id="fancybox-bg-n"></div><div class="fancybox-bg" id="fancybox-bg-ne"></div><div class="fancybox-bg" id="fancybox-bg-e"></div><div class="fancybox-bg" id="fancybox-bg-se"></div><div class="fancybox-bg" id="fancybox-bg-s"></div><div class="fancybox-bg" id="fancybox-bg-sw"></div><div class="fancybox-bg" id="fancybox-bg-w"></div><div class="fancybox-bg" id="fancybox-bg-nw"></div>').appendTo(f);
	D.append(j=b('<div id="fancybox-content"></div>'),E=b('<a id="fancybox-close"></a>'),n=b('<div id="fancybox-title"></div>'),z=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),A=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));E.click(b.fancybox.close);t.click(b.fancybox.cancel);z.click(function(a){a.preventDefault();b.fancybox.prev()});A.click(function(a){a.preventDefault();b.fancybox.next()});
	b.fn.mousewheel&&f.bind("mousewheel.fb",function(a,c){if(h)a.preventDefault();else if(b(a.target).get(0).clientHeight==0||b(a.target).get(0).scrollHeight===b(a.target).get(0).clientHeight){a.preventDefault();b.fancybox[c>0?"prev":"next"]()}});b.support.opacity||f.addClass("fancybox-ie");if(M){t.addClass("fancybox-ie6");f.addClass("fancybox-ie6");b('<iframe id="fancybox-hide-sel-frame" src="'+(/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank")+'" scrolling="no" border="0" frameborder="0" tabindex="-1"></iframe>').prependTo(D)}}};
	b.fn.fancybox.defaults={padding:10,margin:40,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.7,overlayColor:"#777",titleShow:true,titlePosition:"float",titleFormat:null,titleFromAlt:false,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",easingIn:"swing",
	easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,enableKeyboardNav:true,onStart:function(){},onCancel:function(){},onComplete:function(){},onCleanup:function(){},onClosed:function(){},onError:function(){}};b(document).ready(function(){b.fancybox.init()})})(jQuery);

	/*
	 * Copyright (C) 1999-2009 Jive Software. All rights reserved.
	 *
	 * This software is the proprietary information of Jive Software. Use is subject to license terms.
	 */

	/*
	* $ lightbox_me
	* By: Buck Wilson
	* Version : 2.2
	*
	* 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.lightbox_me = function(options) {

	        return this.each(function() {

	            var
	                opts = $.extend({}, $.fn.lightbox_me.defaults, options),
	                $overlay = $('div.' + opts.classPrefix + '_overlay'),
	                $self = $(this),
	                $iframe = $('iframe#lb_iframe'),
	                ie6 = ($.browser.msie && $.browser.version < 7);

	            if ($overlay.length > 0) {
	                $overlay[0].removeModal(); // if the overlay exists, then a modal probably exists. Ditch it!
	            } else {
	                $overlay =  $('<div class="' + opts.classPrefix + '_overlay" style="display:none;"/>'); // otherwise just create an all new overlay.
	            }

	            $iframe = ($iframe.length > 0) ? $iframe : $iframe = $('<iframe id="lb_iframe" style="z-index: ' + (opts.zIndex + 1) + '; display: none; border: none; margin: 0; padding: 0; position: absolute; width: 100%; height: 100%; top: 0; left: 0;"/>');

	            /*----------------------------------------------------
	               DOM Building
	            ---------------------------------------------------- */
	            if (ie6) {
	                var src = /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank';
	                $iframe.attr('src', src);
	                $('body').append($iframe);
	            } // iframe shim for ie6, to hide select elements
	            $('body').append($self).append($overlay);

	            /*----------------------------------------------------
	               CSS stuffs
	            ---------------------------------------------------- */

	            // set css of the modal'd window

	            setSelfPosition();
	            $self.css({left: '50%', marginLeft: ($self.outerWidth() / 2) * -1,  zIndex: (opts.zIndex + 3) });

	            // set css of the overlay

	            setOverlayHeight(); // pulled this into a function because it is called on window resize.
	            $overlay.css({ position: 'absolute', width: '100%', top: 0, left: 0, right: 0, bottom: 0, zIndex: (opts.zIndex + 2) })
	                    .css(opts.overlayCSS);

	            /*----------------------------------------------------
	               Animate it in.
	            ---------------------------------------------------- */

	            if ($overlay.is(":hidden")) {
	                $overlay.fadeIn(opts.overlaySpeed, function() {
	                    $self[opts.appearEffect](opts.lightboxSpeed, function() { setOverlayHeight(); opts.onLoad()});
	                });
	            } else {
	                $self[opts.appearEffect](opts.lightboxSpeed, function() { setOverlayHeight(); opts.onLoad()});
	            }

	            /*----------------------------------------------------
	               Bind Events
	            ---------------------------------------------------- */

	            $(window).resize(setOverlayHeight)
	                     .resize(setSelfPosition)
	                     .scroll(setSelfPosition)
	                     .keydown(observeEscapePress);

	            $self.find(opts.closeSelector).click(function() { removeModal(true); return false; });
	            $overlay.click(function() { if(opts.closeClick){ removeModal(true); return false;} });


	            $self.bind('close', function() { removeModal(true) });
	            $self.bind('resize', setSelfPosition);
	            $overlay[0].removeModal = removeModal;

	            /*----------------------------------------------------------------------------------------------------------------------------------------
	              ---------------------------------------------------------------------------------------------------------------------------------------- */

	            /*----------------------------------------------------
	               Private Functions
	            ---------------------------------------------------- */


	            function removeModal(removeO) {
	                // fades & removes modal, then unbinds events
	                $self[opts.disappearEffect](opts.lightboxDisappearSpeed, function() {

	                    if (removeO) {
	                      removeOverlay();
	                    }

	                    opts.destroyOnClose ? $self.remove() : $self.hide()


	                    $self.find(opts.closeSelector).unbind('click');
	                    $self.unbind('close');
	                    $self.unbind('resize');
	                    $(window).unbind('scroll', setSelfPosition);
	                    $(window).unbind('resize', setSelfPosition);


	                });
	            }


	            function removeOverlay() {
	                // fades & removes overlay, then unbinds events
	                $overlay.fadeOut(opts.overlayDisappearSpeed, function() {
	                    $(window).unbind('resize', setOverlayHeight);

	                    $overlay.remove();
	                    $overlay.unbind('click');


	                    opts.onClose();

	                })
	            }



	            /* Function to bind to the window to observe the escape key press */
	            function observeEscapePress(e) {
	                if((e.keyCode == 27 || (e.DOM_VK_ESCAPE == 27 && e.which==0)) && opts.closeEsc) removeModal(true);
	            }

	            /* Set the height of the overlay
	                    : if the document height is taller than the window, then set the overlay height to the document height.
	                    : otherwise, just set overlay height: 100%
	            */
	            function setOverlayHeight() {
	                if ($(window).height() < $(document).height()) {
	                    $overlay.css({height: $(document).height() + 'px'});
	                } else {
	                    $overlay.css({height: '100%'});
	                    if (ie6) {$('html,body').css('height','100%'); } // ie6 hack for height: 100%; TODO: handle this in IE7
	                }
	            }

	            /* Set the position of the modal'd window ($self)
	                    : if $self is taller than the window, then make it absolutely positioned
	                    : otherwise fixed
	            */
	            function setSelfPosition() {
	                var s = $self[0].style;

	                if (($self.height() + 80  >= $(window).height()) && ($self.css('position') != 'absolute' || ie6)) {
	                    var topOffset = $(document).scrollTop() + 40;
	                    $self.css({position: 'absolute', top: topOffset + 'px', marginTop: 0})
	                    if (ie6) {
	                        s.removeExpression('top');
	                    }
	                } else if ($self.height()+ 80  < $(window).height()) {
	                    if (ie6) {
	                        s.position = 'absolute';
	                        if (opts.centered) {
	                            s.setExpression('top', '(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"')
	                            s.marginTop = 0;
	                        } else {
	                            var top = (opts.modalCSS && opts.modalCSS.top) ? parseInt(opts.modalCSS.top) : 0;
	                            s.setExpression('top', '((blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + "px"')
	                        }
	                    } else {
	                        if (opts.centered) {
	                            $self.css({ position: 'fixed', top: '50%', marginTop: ($self.outerHeight() / 2) * -1})
	                        } else {
	                            $self.css({ position: 'fixed'}).css(opts.modalCSS);
	                        }
	                    }
	                }
	            }
	        });
	    };


	    $.fn.lightbox_me.defaults = {

	        // animation when appears
	        appearEffect: "fadeIn",
	        overlaySpeed: 300,
	        lightboxSpeed: "fast",

	        // animation when dissapears
	        disappearEffect: "fadeOut",
	        overlayDisappearSpeed: 300,
	        lightboxDisappearSpeed: "fast",

	        // close
	        closeSelector: ".close",
	        closeClick: true,
	        closeEsc: true,

	        // behavior
	        destroyOnClose: false,

	        // callbacks
	        onLoad: function() {},
	        onClose: function() {},

	        // style
	        classPrefix: 'lb',
	        zIndex: 2000,
	        centered: false,
	        modalCSS: {top: '40px'},
	        overlayCSS: {background: 'black', opacity: .6}
	    }


	})(jQuery);

	/**
	 * author: roman.weinberger@tao.at
	 */
	(function($) {

		// simple generic lightbox solution
		var init_lightbox = function() {
			$('a.lightbox_image').click(function() {
				var image_src = $(this).attr('href');
				var img = new Image();
				$(img).load(function() {
					var element = $('<div><div class="lightbox-image-container"><a href="" class="close"></a></div></div>');
					element.append('<img src="'+image_src+'" />');
					$('body').prepend(element);
					element.css({display:'none'});
					element.lightbox_me({
						centered:true,
						onClose:function() {
							element.remove();
						}
					});
				});
				// TODO: place for progress bar
				img.src=image_src;
				return false;
			});
		};

		// lightbox for product details
		var init_produkte_lightbox = function() {
			$('.produktgruppe_box li').click(function() {
				var $li = $(this)
				var lightbox_target = $(this).find('.produkt-lightbox');
				if( lightbox_target.length > 0 ) {
					lightbox_target.lightbox_me({
						centered:true,
						destroyOnClose:false,
						onClose: function() {
							$li.find('.hide-me').append(lightbox_target) // fix by joris
						}
					});
				}
			});
		};

		$.reverse_geocode = function(adresse, callback) {
			geocoder = new google.maps.Geocoder();
			if (geocoder) {
				geocoder.geocode( { 'address': adresse}, function(results, status) {
		        if (status == google.maps.GeocoderStatus.OK) {
		          callback(results[0].geometry.location);
		        } else {
		        	//console.log('Unable to reverse geocode address ')
		        }
		      });
		    }
		};

		// startup stuff
		$('document').ready(function() {

			// highlight the plus sign on product box hover
			$('.produktgruppe_box li').hover(function() {
				$(this).find('.plus').addClass('act');
			}, function() {
				$(this).find('.plus').removeClass('act');
			});

	/*
			$('#right03 .standorte>ul>li>a').click(function() { // standard toggle reicht erst mal
				$(this).parent('li').find('ul').toggle('fast');
				return false;
			});
	*/

			init_lightbox();
			init_produkte_lightbox();

			// stupid, but hey :)
			/*$(window).load(function() {
				var sidebar_element = $('body.inner #right03');
				if( sidebar_element.length > 0 ) {
					var sidebar_height = sidebar_element.outerHeight();
					var container_height = $('#content_02').outerHeight();
					alert(sidebar_height + ' vs ' + container_height);
					if( container_height < sidebar_height ) {

						if( $.browser.msie ) {
							$('#content_02').css({'height':sidebar_height+'px'});
						} else {
							$('#content_02').css({'min-height':sidebar_height+'px'});
						}
					}
				}
			});*/

		});

	})(jQuery);

	$(document).ready(function() {
	if( !(navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/Android/i)) ) {

		$('.nav').mouseout(function(){
			$('.sub_nav,.sub_nav_tip').hide()
		})

		var navOffset = $('.nav').offset()
		var yNav = navOffset.top

		$('.nav>ul>li').mouseover(function(){
			$('.sub_nav,.sub_nav_tip').hide()
			var $subnav = $(this).children('.sub_nav')
			$subnav.show()

			if( !$.browser.msie ) {
				var nav_height = Math.max($subnav.height(), 0)
				var yMax = $('.nav').height() - nav_height-18
			} else {
				var nav_height = Math.max($subnav.height(), 200)
				var yMax = $('.nav').height() - nav_height - 18
			}

			$('.sub_nav_tip').appendTo($(this)).show()
			var yItem = $(this).position().top
			//alert(yItem)
			var y = yItem - 6
			if(y > yMax) {
				y = yMax
			}
			$subnav.css({top: y+'px', height: $subnav.height()})
			//console.log('' + $subnav.find('.sub_top').height() +' '+$subnav.find('.sub_bottom').height())
			if( !$.browser.msie ) {
				var img_height = Math.max(0, $subnav.find('.sub_top').height()+$subnav.find('.sub_bottom').height()+60);
				//alert(img_height);
			} else {
				var img_height = Math.max(231, $subnav.find('.sub_top').height()+$subnav.find('.sub_bottom').height()+80);
			}

			$subnav.find('.bg_subnav').css('height',''+img_height+'px')
			$('.sub_nav_tip').css('top', ''+(yItem + 12)+'px')
			$('.sub_nav_tip').css('right', '-3px')
		})

	} // no mobile browser
	})

	// Replaces the background image by an img element that is centered horizontally and always full width

	var bgWidth, bgHeight, bgRatio

	$(document).ready( function() {

		// Get natural image size:
		var bg = $('#bg')//
		var bgimg = new Image()
		$(bgimg).load(function() {

			bgWidth  = bg.width()
			bgHeight = bg.height()
			bgRatio = bgWidth / bgHeight

			var bgresize = function() {
				var $bg = $("#bg")
				var ww = $(window).width()
				var wh = $(window).height()
				var height = bgHeight;
				// Resize:
				if(ww > bgWidth) {
					var width  = ww
					height = width / bgRatio

					$bg.css({
						width:  '' + Math.round(width)  + 'px',
						height: '' + Math.round(height) + 'px'})
				}
				if( wh > height ) { // height to scale?
					height = wh
					var width = height * bgRatio

					$bg.css({
						width:  '' + Math.round(width)  + 'px',
						height: '' + Math.round(height) + 'px'})

				}
				$bg.css('left', '' + Math.round((ww - $bg.width()) / 2) +'px')

			};

			$(window).resize(bgresize);

			bgresize();
		})
		bgimg.src = bg.attr('src');
	})

	// deprecated
	function bgResize() {
		var $bg = $("#bg")
			var ww = $(window).width()
			var wh = $(window).height()
		var height = bgHeight;
		// Resize:
		if(ww > bgWidth) {
			var width  = ww
			height = width / bgRatio

			$bg.css({
				width:  '' + Math.round(width)  + 'px',
				height: '' + Math.round(height) + 'px'})
		}
		if( wh > height ) { // height to scale?
			height = wh
			var width = height * bgRatio

			$bg.css({
				width:  '' + Math.round(width)  + 'px',
				height: '' + Math.round(height) + 'px'})

		}
		$bg.css('left', '' + Math.round((ww - $bg.width()) / 2) +'px')
	}



