/******************/
/* Menu functions */
/******************/
window.Menu = {
	delay		: 600,
	timer		: null,
	menuitem	: null,
	
	/**
	 * apply
	 * @param	string	selector
	 */
	apply: function( selector ) {
		$(selector).hover(Menu.open, Menu.setTimer);
		$(document).click(Menu.close);
	},
	
	/** 
	 * cancelTimer
	 */
	cancelTimer: function() {
		if(Menu.timer)	{
			clearTimeout(Menu.timer);
     		Menu.timer = null;
		}
	},
	
	/**
	 * setTimer
	 */
	setTimer: function() {
		Menu.timer = window.setTimeout(Menu.close, Menu.delay);
	},
		
	/** 
	 * close
	 * @param	string	current_menu_id
	 */
	close: function( current_menu_id ) {
		if(Menu.menuitem)	{
			if(Menu.menuitem.data("menuID") != current_menu_id)	
			{
				$("div", Menu.menuitem).css({ zIndex: "" }).stop().hide();
				$(Menu.menuitem).removeClass("hover");
			}
		}
	},
			
	/** 
	 * open
	 */
	open: function() {
		current_menu = $(this);
		
		current_menu.addClass("hover");
		
		// uniek menu id per submenu, dit om bij het sluiten te checken of niet de actieve wordt gesloten
		if(!current_menu.data("menuID"))	{
			current_menu.data("menuID", (Math.random() +''+ Math.random()).replace(/\./g,""))
		}
		
		Menu.cancelTimer();
		Menu.close( current_menu.data("menuID") );
		Menu.menuitem = current_menu;
		
		$("div", Menu.menuitem).css({ zIndex: 100 }).stop().show();	
	}

};

/**
 * maak hele blokken klikbaar
 *
 * @param	bool	trigger_click		trigger het click event ipv de url.	default is false
 * @return	jQuery
 */
$.fn.hoverClick = function( trigger_click )
{
	return this.live("mouseover mouseout click", function( event )
	{
		if (event.type == 'mouseover')
		{
			if($("a", this).length)
			{
				$(this).addClass("hover").css("cursor", "pointer");
				$(this).attr("title", $("a:first", this).attr("title"));
			}
		}
		else if(event.type == 'click' && event.target.nodeName.toUpperCase() != 'A' && $("a", this).length)
		{
			if(trigger_click)
			{
				$("a:first", this).trigger("click");
			}
			else
			{
				var link = $("a:first", this);
				
				if (link.attr("target")) 
				{
					window.open(link.attr("href"), link.attr("target"));
				}
				else 
				{
					window.location = link.attr("href");
				}
			}

			return false;
		}
		else
		{
			$(this).removeClass("hover");
		}
	});
};


/**
 * bij hover een className toevoegen/eraf halen
 *
 * @param	string	className		default is 'hover'
 * @return	jQuery
 */
$.fn.hoverClass = function( className )
{
	if(!className)
		className = 'hover';
	
	return this.live('mouseover mouseout', function( event )
	{ 
		if (event.type == 'mouseover')
			$(this).addClass(className);
		else
			$(this).removeClass(className);
	});
};


/** 
 * jquery.defaultvalue 
 * @param	string	defaultvalue
 * @return	jQuery
 */
$.fn.defaultvalue = function( defVal )
{
	return this.each(function()
	{
		var $input = $(this);
		if($input.val() == "" || $input.val() == defVal)
		{
			$input.addClass("defaultvalue").val(defVal);
		}
		
		$input
			.focus(function() {
				if($input.val() == defVal) 
					$input.val("").removeClass("defaultvalue");
			})
			.blur(function(){
				if($input.val() == "") 
					$input.addClass("defaultvalue").val(defVal);
			});
	});
};

/* Controleer zoekveld */
function controleerZoeken(formulier)
{
	if( ($("#subheader .zoeken input[type=text]").val().length < 3 || $("#subheader .zoeken input[type=text]").val() == $("#subheader .zoeken input[type=text]").attr("title") ) )
	{
		if(  $('#zoeken-melding').length <= 0 )
		{
			$("#subheader .zoeken form fieldset input.defaultvalue").before('<div id="zoeken-melding"></div>');
			$("#zoeken-melding").html("Vul svp een zoekterm in van 3 of meer karakters.");
		}
		
		$("#zoeken-melding").fadeIn(200);

		setTimeout( function()
				{
				$("#zoeken-melding").fadeOut(500);
				}, 4000);

		return false;
	}
	else
	{
		$("#zoeken-melding").hide();
		return true;
	}
}



/* jQuery easing voor menu effect maantje */
jQuery.extend( jQuery.easing,
{
	easeOut: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	}
});



/*
 * jQuery autoResize (textarea auto-resizer)
 * @copyright James Padolsey http://james.padolsey.com
 * @version 1.04
 */
(function(a){a.fn.autoResize=function(j){var b=a.extend({onResize:function(){},animate:true,animateDuration:150,animateCallback:function(){},extraSpace:20,limit:1000},j);this.filter('textarea').each(function(){var c=a(this).css({resize:'none','overflow-y':'hidden'}),k=c.height(),f=(function(){var l=['height','width','lineHeight','textDecoration','letterSpacing'],h={};a.each(l,function(d,e){h[e]=c.css(e)});return c.clone().removeAttr('id').removeAttr('name').css({position:'absolute',top:0,left:-9999}).css(h).attr('tabIndex','-1').insertBefore(c)})(),i=null,g=function(){f.height(0).val(a(this).val()).scrollTop(10000);var d=Math.max(f.scrollTop(),k)+b.extraSpace,e=a(this).add(f);if(i===d){return}i=d;if(d>=b.limit){a(this).css('overflow-y','');return}b.onResize.call(this);b.animate&&c.css('display')==='block'?e.stop().animate({height:d},b.animateDuration,b.animateCallback):e.height(d)};c.unbind('.dynSiz').bind('keyup.dynSiz',g).bind('keydown.dynSiz',g).bind('change.dynSiz',g)});return this}})(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:
 * Copyright (c) 1989, 1995 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Description:
 * The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1989, 1995 Adobe Systems.  All Rights
 * Reserved. This software is the property of Adobe Systems  Incorporated and its
 * licensors, and may not be reproduced, used,   displayed, modified, disclosed or
 * transferred without the express   written approval of Adobe.    The digitally
 * encoded machine readable outline data for producing  the Typefaces licensed to
 * you is copyrighted (c) 1981 Linotype-Hell  AG and/or its subsidiaries. All
 * Rights Reserved.  This data is the property of Linotype-Hell AG and/or its
 * subsidiaries  and may not be reproduced, used, displayed, modified, disclosed or
 *   transferred without the express written approval of Linotype-Hell AG   and/or
 * its subsidiaries.
 * 
 * Vendor URL:
 * www.linotypelibrary.com
 */
Cufon.registerFont({"w":73,"face":{"font-family":"VAGRounded LT Light","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 4 3 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"2","cap-height":"2","bbox":"-18.2057 -332 377 105","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":90},"!":{"d":"53,2v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19v9,0,19,10,19,19v0,9,-9,19,-19,18xm53,-69v-10,0,-16,-8,-16,-17r0,-156v0,-9,6,-16,16,-16v10,-1,17,6,16,16r0,156v1,10,-6,17,-16,17","w":106},"\"":{"d":"35,-179v-26,0,-12,-41,-15,-64v-1,-10,5,-15,15,-15v25,1,14,41,14,64v0,10,-4,15,-14,15xm86,-179v-26,0,-11,-41,-15,-64v1,-9,5,-15,15,-15v25,1,14,41,14,64v0,10,-4,15,-14,15","w":120},"#":{"d":"122,-155r-43,0r-8,53r43,0xm177,-90v0,17,-24,11,-40,12r-9,67v-1,8,-4,13,-14,13v-15,0,-13,-17,-10,-27r7,-53r-43,0r-9,67v-1,8,-4,13,-14,13v-15,0,-13,-17,-10,-27r7,-53v-16,-1,-37,4,-37,-12v0,-17,24,-11,40,-12r8,-53v-16,-1,-37,4,-37,-12v0,-17,24,-11,40,-12r9,-67v1,-8,5,-12,14,-12v14,-1,12,16,10,27r-7,52r43,0r9,-67v1,-8,5,-12,14,-12v14,-1,12,16,10,27r-7,52v16,1,37,-4,37,12v0,17,-24,11,-40,12r-8,53v16,1,37,-4,37,12","w":192},"$":{"d":"94,-27v40,-3,53,-71,14,-86v-5,-2,-9,-5,-14,-7r0,93xm8,-30v11,-36,42,11,70,5r0,-100v-34,-11,-68,-23,-68,-68v0,-38,29,-61,68,-65v1,-10,-3,-25,8,-25v11,0,7,15,8,25v24,2,49,9,55,29v-7,29,-35,0,-55,-2r0,79v36,12,72,26,72,73v0,47,-30,73,-72,80v5,17,-8,37,-16,18r0,-17v-30,-2,-64,-7,-70,-32xm78,-231v-36,0,-45,55,-13,67v4,2,8,4,13,6r0,-73","w":173},"%":{"d":"95,-6v-2,15,-25,14,-25,1r101,-246v5,-17,31,-10,24,5xm125,-198v0,35,-19,61,-55,61v-37,0,-55,-26,-55,-61v0,-35,19,-60,55,-60v36,0,55,25,55,60xm166,-59v0,22,8,42,31,42v23,0,31,-20,31,-42v0,-22,-8,-41,-31,-41v-23,0,-31,19,-31,41xm252,-59v0,35,-19,61,-55,61v-37,0,-55,-26,-55,-61v0,-36,20,-61,55,-61v35,0,55,25,55,61xm39,-198v0,23,8,42,31,42v42,0,42,-83,0,-83v-22,1,-31,18,-31,41","w":266},"&":{"d":"88,-136v-23,14,-41,27,-43,60v-2,43,46,60,80,41v9,-5,18,-13,28,-25xm102,-233v-24,-2,-39,26,-21,43v5,6,10,13,16,20v15,-8,32,-17,34,-38v1,-17,-14,-25,-29,-25xm161,-213v0,35,-25,49,-47,63r58,68v13,-16,19,-40,38,-48v7,0,13,4,13,11v-4,24,-16,34,-34,57v12,18,31,28,38,51v1,14,-17,16,-25,7r-31,-35v-34,60,-158,54,-158,-33v0,-48,27,-65,57,-84v-11,-12,-28,-30,-28,-50v0,-36,24,-53,62,-52v32,0,57,16,57,45","w":240},"'":{"d":"37,-179v-26,0,-11,-41,-15,-64v1,-9,5,-15,15,-15v25,1,14,41,14,64v0,10,-4,15,-14,15"},"(":{"d":"73,26v-5,19,-27,7,-29,-6v-28,-76,-29,-213,6,-280v5,-8,24,-6,23,5v-26,75,-27,206,0,281","w":86},")":{"d":"14,-255v5,-19,26,-7,28,6v29,73,30,214,-6,280v-4,8,-23,6,-22,-5v26,-75,27,-206,0,-281","w":86},"*":{"d":"26,-158v-13,2,-16,-18,-4,-23r32,-14v-13,-8,-37,-7,-40,-25v9,-28,36,4,47,12v0,0,-13,-49,9,-50v23,-1,8,32,9,50v13,-8,37,-39,48,-12v-3,18,-28,17,-41,25v13,8,36,9,41,25v-9,27,-36,-2,-48,-11v0,0,13,50,-9,50v-22,0,-8,-33,-9,-50v-13,8,-19,20,-35,23","w":140},"+":{"d":"17,-91v0,-28,50,-10,76,-15v4,-26,-13,-76,15,-76v28,0,10,50,15,76v26,4,76,-13,76,15v0,28,-50,10,-76,15v-4,26,13,76,-15,76v-28,0,-10,-50,-15,-76v-26,-4,-76,13,-76,-15","w":216},",":{"d":"33,41v-14,13,-35,-6,-21,-23v13,-17,14,-46,37,-53v34,12,-9,57,-16,76","w":90},"-":{"d":"114,-96v-6,26,-59,8,-88,13v-7,0,-14,-6,-13,-13v4,-27,58,-9,87,-14v7,-1,16,7,14,14","w":126},".":{"d":"45,2v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19v9,0,19,9,18,19v1,9,-9,19,-18,18","w":90},"\/":{"d":"31,-1v-17,10,-33,-7,-19,-26r104,-228v16,-10,31,8,18,26","w":146},"0":{"d":"96,-231v-43,6,-50,52,-50,103v0,51,7,97,50,103v44,-6,51,-52,51,-103v0,-51,-7,-97,-51,-103xm96,2v-114,0,-114,-260,0,-260v64,0,85,62,85,130v0,69,-22,130,-85,130","w":192},"1":{"d":"75,2v-10,0,-17,-7,-16,-17r0,-214v-19,-1,-49,6,-47,-14v2,-23,45,-9,69,-13v7,0,10,1,10,8r0,233v0,9,-6,17,-16,17","w":126},"2":{"d":"100,-258v63,-3,86,70,52,116r-86,115r97,0v7,0,13,6,13,13v0,7,-6,14,-13,14r-124,0v-20,1,-20,-15,-11,-27r89,-119v26,-24,25,-88,-22,-85v-33,1,-46,25,-47,58v0,10,-7,13,-14,14v-10,0,-16,-6,-16,-19v3,-49,30,-77,82,-80","w":192},"3":{"d":"127,-138v26,8,44,30,44,62v0,50,-31,78,-81,78v-43,0,-72,-22,-75,-59v-2,-25,26,-20,31,-1v4,19,19,33,43,33v30,-1,49,-19,49,-48v0,-32,-15,-46,-45,-48v-16,3,-26,-12,-16,-22v22,-10,49,-12,49,-46v0,-23,-14,-42,-36,-42v-24,0,-35,15,-37,37v0,10,-4,15,-15,15v-9,0,-14,-7,-14,-15v1,-41,26,-61,67,-64v70,-5,88,94,36,120","w":192},"4":{"d":"120,-93r0,-132r-76,132r76,0xm136,2v-26,0,-13,-43,-16,-68r-102,0v-20,1,-12,-19,-6,-29r91,-149v9,-22,49,-18,49,12r0,139v15,-1,30,0,30,13v0,14,-15,15,-30,14v-3,25,11,68,-16,68","w":192},"5":{"d":"169,-243v-5,27,-58,9,-87,14r-10,70v51,-25,101,15,99,70v-2,55,-27,91,-83,91v-36,0,-65,-14,-72,-42v0,-6,4,-16,11,-14v21,5,32,28,61,27v32,-1,48,-23,49,-56v0,-32,-13,-53,-44,-54v-20,-1,-29,9,-44,10v-16,1,-9,-20,-8,-31r13,-90v1,-6,4,-9,12,-8r89,0v7,0,14,6,14,13","w":192},"6":{"d":"95,-138v-32,0,-45,24,-45,55v0,31,14,56,45,56v31,0,46,-23,45,-56v0,-33,-12,-55,-45,-55xm174,-81v-4,49,-29,81,-78,83v-92,3,-89,-130,-47,-186v21,-27,41,-54,67,-73v24,-4,25,20,7,30v-21,20,-43,45,-54,71v54,-29,110,12,105,75","w":192},"7":{"d":"68,-9v-5,17,-38,13,-30,-7r94,-213r-108,0v-7,1,-15,-7,-14,-14v0,-7,7,-13,14,-13r130,0v21,-1,16,16,10,29","w":180},"8":{"d":"96,-129v-29,0,-43,23,-44,52v0,31,16,52,44,52v29,0,45,-20,45,-52v-1,-30,-16,-52,-45,-52xm96,-231v-23,0,-36,16,-36,37v0,22,12,38,36,38v24,0,36,-15,36,-38v0,-22,-13,-37,-36,-37xm64,-143v-22,-13,-33,-26,-33,-57v0,-38,27,-55,65,-58v70,-6,87,92,33,115v27,8,46,30,46,64v0,49,-30,77,-79,81v-83,6,-106,-127,-32,-145","w":192},"9":{"d":"98,-118v31,-1,45,-24,45,-56v0,-31,-14,-55,-45,-55v-31,0,-46,22,-45,55v0,33,12,56,45,56xm19,-175v4,-49,29,-82,78,-83v92,-2,88,129,47,186v-20,27,-42,54,-67,73v-23,4,-24,-19,-7,-31v23,-17,43,-45,54,-71v-51,29,-110,-10,-105,-74","w":192},":":{"d":"45,-119v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19v9,0,19,9,18,19v1,9,-9,19,-18,18xm45,2v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19v9,0,19,9,18,19v1,9,-9,19,-18,18","w":90},";":{"d":"45,-119v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19v9,0,19,9,18,19v1,9,-9,19,-18,18xm33,41v-14,13,-35,-6,-21,-23v13,-17,14,-46,37,-53v34,12,-9,57,-16,76","w":90},"<":{"d":"170,-178v14,-14,39,-1,26,16r-142,71r142,71v11,20,-9,25,-26,16r-151,-78v-6,-12,1,-23,11,-26","w":216},"=":{"d":"199,-54v0,10,-5,15,-15,15r-152,0v-10,0,-15,-5,-15,-15v0,-10,5,-14,15,-14r152,0v10,0,15,4,15,14xm199,-129v0,10,-5,15,-15,15r-152,0v-10,0,-15,-5,-15,-15v0,-10,5,-14,15,-14r152,0v10,0,15,4,15,14","w":216},">":{"d":"46,-4v-14,12,-38,2,-26,-16r142,-71r-142,-71v-8,-10,0,-28,16,-21r150,75v16,3,18,30,0,33","w":216},"?":{"d":"77,2v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19v9,0,19,9,18,19v1,9,-9,19,-18,18xm153,-192v1,40,-26,64,-60,70v-2,22,7,54,-16,53v-27,-1,-15,-50,-13,-74v22,-10,56,-10,56,-46v0,-46,-75,-56,-84,-10v-4,18,-32,12,-30,-5v4,-34,33,-54,71,-54v44,0,74,23,76,66","w":159},"@":{"d":"192,-188v0,-13,24,-16,26,-3v-7,36,-22,68,-28,105v-1,6,3,11,10,10v31,-5,48,-35,48,-71v0,-58,-42,-88,-99,-88v-65,0,-109,42,-109,107v0,67,45,103,112,106v48,3,64,-28,96,-39v5,1,9,2,9,8v-14,34,-62,55,-107,55v-82,0,-137,-50,-137,-130v0,-79,55,-130,136,-130v72,0,126,36,126,107v0,60,-37,94,-89,100v-15,2,-22,-9,-26,-21v-27,38,-100,18,-96,-36v4,-51,29,-93,81,-93v22,0,35,9,43,27xm147,-174v-34,0,-48,29,-51,63v-1,19,12,34,29,33v34,-2,47,-35,49,-70v0,-17,-9,-26,-27,-26","w":288},"A":{"d":"160,-83r-50,-139r-50,139r100,0xm212,-27v11,15,-2,38,-20,26v-11,-14,-14,-37,-22,-55r-119,0v-8,18,-12,39,-22,55v-8,6,-28,2,-25,-10v22,-79,59,-151,83,-228v7,-22,37,-25,46,0","w":220,"k":{"\u2019":20,"y":6,"w":6,"v":6,"Y":13,"W":13,"V":20,"T":27}},"B":{"d":"94,-256v72,-9,92,98,33,117v31,7,56,27,56,64v0,70,-68,80,-145,75v-11,0,-17,-6,-17,-17r0,-222v1,-29,47,-13,73,-17xm151,-75v-1,-46,-47,-50,-98,-47r0,95v51,4,99,-2,98,-48xm131,-189v0,-40,-37,-43,-78,-40r0,81v42,3,78,-2,78,-41","w":193},"C":{"d":"125,-231v-57,3,-80,47,-80,103v0,55,22,101,78,103v31,1,45,-18,69,-23v9,0,12,7,13,15v-9,27,-46,35,-82,35v-74,0,-112,-55,-112,-130v0,-75,37,-128,114,-130v36,-1,65,12,74,37v0,8,-4,16,-13,15v-21,-6,-30,-26,-61,-25","w":213},"D":{"d":"182,-130v2,-74,-44,-109,-128,-99r0,202r46,0v59,-1,81,-45,82,-103xm106,0v-29,0,-83,14,-83,-17r0,-222v1,-30,51,-17,79,-17v76,0,114,51,114,126v0,76,-35,130,-110,130","w":226},"E":{"d":"138,-128v-5,28,-57,10,-85,15r0,83r76,0v9,1,15,5,15,15v0,10,-6,14,-15,15r-91,0v-11,0,-17,-6,-17,-17r0,-222v0,-11,6,-17,17,-17r91,0v10,0,15,4,15,14v0,10,-5,15,-15,15r-76,0r0,84v29,4,79,-13,85,15","w":159},"F":{"d":"135,-128v-5,28,-54,10,-82,15r0,98v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-224v0,-11,6,-17,17,-17r90,0v10,0,15,4,15,14v0,10,-5,15,-15,15r-75,0r0,84v28,4,77,-12,82,15","w":146,"k":{"A":13,".":33,",":33}},"G":{"d":"127,-25v51,0,76,-36,74,-92v-22,-3,-60,9,-60,-15v0,-26,44,-15,69,-15v17,0,24,7,23,26v-1,75,-31,125,-110,123v-74,-2,-112,-55,-112,-130v0,-76,38,-130,117,-130v40,0,78,12,88,41v0,8,-7,15,-15,15v-25,-8,-37,-31,-75,-29v-57,3,-81,47,-81,103v0,56,23,103,82,103","w":240},"H":{"d":"203,2v-10,0,-15,-8,-15,-19r0,-98r-135,0r0,98v0,11,-6,18,-16,19v-10,0,-17,-7,-16,-19r0,-222v-1,-12,5,-19,16,-19v11,0,16,8,16,19r0,97r135,0r0,-97v0,-11,4,-19,15,-19v11,0,17,7,16,19r0,222v1,12,-6,19,-16,19","w":240},"I":{"d":"37,-258v10,0,16,7,16,16r0,227v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-227v-1,-10,6,-17,16,-16"},"J":{"d":"53,-25v22,-1,28,-17,28,-37r0,-180v0,-10,5,-16,15,-16v10,-1,17,6,16,16r0,177v1,43,-19,67,-62,67v-22,0,-50,-7,-53,-29v10,-30,33,3,56,2","w":133},"K":{"d":"197,-25v14,11,2,33,-16,26v-46,-37,-85,-83,-128,-123r0,107v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-227v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,94r118,-107v13,-10,27,3,21,19v-34,35,-74,66,-110,100","w":206},"L":{"d":"37,-258v10,0,16,7,16,16r0,212v28,4,78,-12,83,15v0,10,-7,14,-16,15r-82,0v-11,0,-17,-6,-17,-17r0,-225v-1,-10,6,-17,16,-16","w":140,"k":{"\u2019":20,"y":20,"Y":40,"W":27,"V":33,"T":33}},"M":{"d":"288,-28v13,25,-26,45,-30,16r-30,-205r-62,206v-1,18,-27,17,-32,0r-62,-206r-30,205v-1,10,-7,13,-17,14v-16,1,-16,-17,-13,-30r35,-206v0,-26,41,-33,48,-8r55,188r55,-188v2,-17,25,-20,39,-11v5,3,7,10,9,19","w":300},"N":{"d":"204,-258v10,0,16,7,16,16r0,225v1,27,-30,22,-37,3r-130,-187r0,186v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-225v-1,-27,31,-20,37,-2r130,186r0,-186v-1,-10,6,-17,16,-16","w":240},"O":{"d":"123,2v-74,0,-112,-55,-112,-130v0,-74,37,-130,112,-130v76,0,113,55,113,130v0,75,-38,130,-113,130xm123,-231v-56,0,-78,47,-78,103v0,56,22,103,78,103v57,0,79,-46,79,-103v0,-57,-22,-103,-79,-103","w":246},"P":{"d":"152,-176v0,-50,-45,-57,-99,-53r0,106v54,4,99,-3,99,-53xm184,-176v0,66,-55,87,-131,80r0,81v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-224v1,-30,51,-17,79,-17v52,0,84,30,84,80","w":186,"k":{"A":20,".":40,",":40}},"Q":{"d":"123,-258v106,-5,139,133,90,211v11,13,29,19,33,39v-11,31,-40,-7,-51,-18v-17,17,-40,29,-72,28v-74,-3,-112,-55,-112,-130v0,-74,37,-127,112,-130xm45,-128v-6,79,71,134,130,82v-9,-11,-23,-17,-28,-32v7,-31,33,-4,43,8v26,-62,10,-164,-67,-161v-56,2,-74,47,-78,103","w":246},"R":{"d":"143,-185v-2,-44,-44,-46,-90,-44r0,91v48,1,93,5,90,-47xm173,-24v14,12,0,33,-16,24v-38,-34,-69,-76,-104,-112r0,97v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-224v1,-29,48,-17,75,-17v45,0,79,25,79,69v0,51,-30,75,-84,73","w":186},"S":{"d":"10,-193v3,-40,32,-65,76,-65v28,0,57,7,63,29v-11,33,-36,-7,-64,-2v-32,-4,-55,36,-32,58v35,33,116,24,113,94v-2,51,-33,81,-87,81v-30,0,-65,-6,-71,-31v0,-8,4,-16,13,-16v19,5,31,21,58,20v33,-1,51,-21,53,-52v-10,-68,-127,-34,-122,-116","w":173},"T":{"d":"80,2v-10,0,-17,-7,-16,-17r0,-212v-23,-3,-63,11,-63,-15v0,-10,5,-14,15,-14r128,0v10,0,15,4,15,14v1,26,-40,11,-63,15r0,212v0,9,-6,17,-16,17","w":159,"k":{"\u00ad":40,"y":33,"w":33,"u":33,"s":33,"r":33,"o":33,"i":18,"e":33,"c":33,"a":33,"A":27,";":40,":":40,".":40,",":40}},"U":{"d":"120,2v-65,0,-100,-35,-99,-104r0,-140v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,153v-1,40,27,64,67,64v40,0,68,-24,68,-64r0,-153v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,140v0,68,-35,104,-100,104","w":240},"V":{"d":"4,-233v-12,-18,12,-34,24,-19v28,63,47,135,72,201r72,-201v6,-11,30,-6,27,6v-23,86,-57,163,-87,243v-11,11,-30,1,-30,-12","w":200,"k":{"\u00ad":13,"u":6,"r":6,"o":13,"e":13,"a":13,"A":20,";":13,":":13,".":33,",":33}},"W":{"d":"11,-228v-5,-13,-3,-31,12,-30v10,0,16,4,18,14r34,205r59,-207v1,-16,31,-17,32,0r60,207r34,-205v1,-19,34,-18,31,0r-40,225v-1,17,-21,28,-38,17v-4,-3,-7,-8,-10,-17r-53,-188r-53,188v-3,28,-42,27,-47,0","w":300,"k":{"\u00ad":13,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":20,",":20}},"X":{"d":"206,-24v11,12,0,31,-17,25v-31,-34,-54,-77,-82,-114r-82,114v-16,6,-27,-11,-17,-25r81,-114v-23,-36,-53,-66,-72,-107v-1,-16,25,-17,30,-3r60,87v23,-32,43,-67,69,-96v17,-6,26,11,16,25r-67,94","w":213},"Y":{"d":"90,2v-10,0,-17,-7,-16,-17r0,-105v-24,-43,-54,-79,-74,-126v0,-16,27,-15,31,-2r59,96v23,-34,41,-73,67,-104v17,-8,28,8,18,24r-69,112r0,105v1,10,-6,17,-16,17","w":180,"k":{"\u00ad":27,"v":6,"u":13,"q":27,"p":20,"o":27,"e":27,"a":27,"A":20,";":20,":":20,".":40,",":40}},"Z":{"d":"27,0v-20,2,-21,-18,-12,-31r132,-198r-117,0v-10,0,-15,-4,-15,-14v0,-10,6,-13,15,-13r140,0v21,-2,18,18,9,31r-132,198r129,0v9,0,16,4,16,13v0,10,-6,14,-16,14r-149,0","w":200},"[":{"d":"83,-245v0,12,-12,16,-26,14r0,233v27,-8,35,27,12,28v-20,1,-42,3,-42,-18r0,-253v-1,-20,23,-17,42,-17v8,0,15,6,14,13","w":86},"\\":{"d":"134,-27v13,18,-2,36,-18,26r-104,-228v-17,-22,14,-41,24,-19","w":146},"]":{"d":"4,16v0,-12,12,-16,26,-14r0,-233v-14,1,-26,-2,-26,-14v-1,-17,21,-13,38,-13v11,0,17,6,17,17r0,253v1,20,-21,19,-41,18v-7,1,-15,-7,-14,-14","w":86},"^":{"d":"190,-131v14,12,-2,38,-17,23r-65,-119r-65,119v-10,11,-29,-1,-21,-16r67,-120v5,-17,32,-18,38,0","w":216},"_":{"d":"190,36v0,5,-4,10,-10,9r-180,0v-6,1,-10,-4,-10,-9v0,-5,4,-10,10,-9r180,0v6,-1,10,4,10,9","w":180},"`":{"d":"64,-247v19,5,14,31,-6,28v-19,-9,-43,-15,-59,-26v-8,-15,6,-26,24,-19"},"a":{"d":"97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm179,-178r0,165v0,10,-6,14,-14,15v-15,2,-15,-16,-16,-29v-12,17,-28,29,-52,29v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v26,0,38,13,53,26v-7,-27,29,-36,29,-10","w":200},"b":{"d":"38,2v-10,0,-16,-8,-16,-17r0,-246v0,-9,7,-17,16,-17v10,0,16,7,16,17r1,93v11,-14,27,-26,51,-26v55,0,82,44,82,98v0,55,-27,95,-82,98v-26,1,-41,-10,-52,-26v1,15,-2,26,-16,26xm103,-166v-38,0,-52,31,-52,70v0,40,15,71,52,71v38,0,53,-33,53,-71v0,-37,-14,-70,-53,-70","w":200},"c":{"d":"99,2v-58,-2,-86,-40,-86,-98v0,-57,28,-96,86,-98v24,0,48,7,51,24v-5,27,-29,4,-51,4v-72,1,-74,141,0,141v18,0,24,-9,38,-11v8,-1,12,5,12,13v-2,18,-25,25,-50,25","w":159},"d":{"d":"162,2v-16,0,-15,-14,-17,-26v-9,18,-26,26,-51,26v-54,0,-81,-42,-81,-98v0,-56,27,-98,81,-98v24,0,40,13,52,26r0,-93v0,-10,6,-17,16,-17v10,0,16,7,16,17r0,246v1,10,-6,17,-16,17xm97,-25v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70v-39,0,-53,33,-53,70v0,38,15,71,53,71","w":200},"e":{"d":"146,-107v8,-63,-87,-81,-102,-22v-2,7,-3,15,-3,22r105,0xm178,-100v0,12,-4,16,-18,16r-119,0v1,36,21,57,57,59v32,2,43,-18,64,-26v8,0,12,5,12,14v-9,26,-43,39,-77,39v-59,0,-88,-39,-88,-98v0,-56,30,-98,86,-98v54,0,83,41,83,94","w":187},"f":{"d":"101,-264v0,22,-38,3,-38,26r0,46v16,0,37,-2,35,14v2,16,-19,14,-35,14r0,149v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-149v-15,1,-29,0,-29,-14v0,-14,14,-15,29,-14v-3,-49,-1,-93,52,-86v7,1,18,5,18,14","w":93,"k":{"\u2019":-11}},"g":{"d":"97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm163,-194v8,0,16,5,15,16r0,164v-1,57,-32,92,-87,92v-31,0,-64,-11,-73,-35v0,-7,4,-17,13,-15v22,4,33,22,63,22v41,0,57,-34,51,-75v-9,15,-24,28,-48,27v-56,-3,-84,-41,-84,-98v0,-56,28,-96,84,-98v23,-1,36,13,49,24v-2,-16,4,-24,17,-24","w":200},"h":{"d":"157,2v-10,0,-16,-7,-16,-17v0,-60,21,-151,-44,-151v-65,0,-39,92,-44,151v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-246v0,-10,6,-17,16,-17v9,0,16,8,16,17r0,93v34,-48,120,-23,120,47r0,106v0,9,-6,17,-16,17","w":193},"i":{"d":"37,-220v-11,0,-20,-8,-20,-19v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,19,-19,19xm37,-194v9,0,16,8,16,17r0,162v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-162v0,-10,6,-17,16,-17"},"j":{"d":"37,-220v-11,0,-20,-8,-20,-19v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,19,-19,19xm37,-194v9,0,16,8,16,17r0,238v0,9,-7,17,-16,17v-10,0,-16,-7,-16,-17r0,-238v0,-10,6,-17,16,-17"},"k":{"d":"37,2v-10,0,-17,-7,-16,-17r0,-246v0,-10,6,-17,16,-17v9,0,16,8,16,17r0,135v30,-22,53,-51,87,-68v15,0,15,20,5,28r-72,57r84,82v16,10,1,39,-15,27v-33,-25,-59,-62,-89,-91r0,76v0,9,-6,17,-16,17","w":166},"l":{"d":"37,-278v9,0,16,8,16,17r0,246v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-246v0,-10,6,-17,16,-17"},"m":{"d":"150,2v-10,0,-16,-8,-16,-17v-6,-58,22,-150,-41,-151v-62,0,-34,94,-40,151v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-162v0,-10,6,-17,16,-17v12,1,17,10,16,24v10,-14,25,-24,49,-24v25,1,41,14,52,33v28,-54,125,-37,125,40r0,106v0,10,-5,17,-15,17v-10,0,-16,-7,-16,-17v0,-58,22,-151,-41,-151v-63,0,-41,93,-41,151v0,10,-6,17,-16,17","w":300},"n":{"d":"37,2v-10,0,-17,-7,-16,-17r0,-162v0,-10,6,-17,16,-17v13,1,17,11,16,26v34,-48,120,-23,120,47r0,106v0,9,-6,17,-16,17v-10,0,-16,-7,-16,-17v0,-60,21,-151,-44,-151v-65,0,-39,92,-44,151v0,9,-6,17,-16,17","w":193},"o":{"d":"97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm97,2v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v56,0,84,42,84,98v0,57,-28,98,-84,98","w":193},"p":{"d":"38,78v-9,0,-16,-8,-16,-17r0,-238v0,-9,7,-17,16,-17v15,-1,16,14,17,27v9,-18,26,-27,51,-27v55,0,82,44,82,98v0,55,-27,95,-82,98v-27,1,-39,-14,-52,-26r0,85v0,10,-6,17,-16,17xm103,-166v-38,0,-52,31,-52,70v0,40,15,71,52,71v38,0,53,-33,53,-71v0,-37,-14,-70,-53,-70","w":200},"q":{"d":"94,2v-54,-3,-81,-42,-81,-98v0,-56,27,-95,81,-98v26,-1,41,11,52,27v-8,-29,32,-37,32,-10r0,238v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r-1,-85v-10,15,-26,26,-51,26xm97,-25v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70v-39,0,-53,33,-53,70v0,38,15,71,53,71","w":200},"r":{"d":"37,2v-10,0,-17,-7,-16,-17r0,-162v0,-10,6,-17,16,-17v15,0,17,16,16,33v9,-15,21,-33,43,-33v24,0,24,32,-2,34v-56,5,-38,86,-41,145v0,9,-6,17,-16,17","w":113,"k":{"\u00ad":20,"\u2019":-6,"y":-6,"v":-6,".":20,",":20}},"s":{"d":"119,-51v-13,-48,-102,-30,-102,-89v0,-37,30,-54,65,-54v27,0,59,9,63,34v-11,32,-37,-10,-63,-6v-23,-3,-47,22,-26,38v30,23,90,21,94,71v7,74,-123,76,-141,23v-1,-7,6,-16,13,-15v21,7,31,24,60,24v20,0,36,-11,37,-26","w":159},"t":{"d":"47,2v-10,0,-17,-7,-16,-17r0,-149v-15,1,-29,0,-29,-14v0,-14,14,-15,29,-14v2,-23,-8,-58,16,-58v23,0,14,35,16,58v15,-1,30,0,28,14v2,14,-13,15,-28,14r0,149v0,9,-6,17,-16,17","w":93},"u":{"d":"97,2v-48,0,-76,-26,-76,-76r0,-103v0,-10,6,-17,16,-17v9,0,16,8,16,17v5,59,-21,152,44,152v65,0,44,-93,44,-152v0,-10,6,-17,16,-17v9,0,16,8,16,17r0,103v-2,49,-28,76,-76,76","w":193},"v":{"d":"121,-181v2,-18,31,-16,31,2r-65,178v-11,7,-26,1,-27,-11r-58,-167v-1,-19,26,-18,31,-2r44,132","w":153,"k":{".":27,",":27}},"w":{"d":"234,-177v2,-21,32,-22,32,-3v-16,64,-39,122,-62,179v-13,7,-28,1,-29,-13r-42,-130v-17,47,-28,100,-48,143v-13,7,-28,1,-29,-13r-55,-166v2,-19,30,-19,32,3r42,130r40,-126v2,-17,19,-28,31,-15v18,44,29,97,47,141","w":267,"k":{".":25,",":25}},"x":{"d":"31,-5v-9,15,-36,5,-28,-14r62,-83v-17,-26,-42,-47,-55,-77v-2,-15,21,-21,27,-7r47,61r51,-67v15,-8,29,10,17,25r-50,65r62,83v8,18,-18,29,-28,14r-52,-73","w":167},"y":{"d":"69,66v-6,22,-36,10,-29,-8r24,-65r-58,-173v0,-17,25,-17,30,-2r45,132v17,-46,27,-99,49,-140v18,-11,31,8,19,27","w":159,"k":{".":27,",":27}},"z":{"d":"133,-192v20,-1,17,16,9,28r-91,137r86,0v11,0,16,4,16,13v0,9,-5,14,-16,14r-114,0v-19,1,-17,-16,-9,-27r91,-137r-78,0v-11,0,-16,-5,-16,-14v0,-9,5,-14,16,-14r106,0","w":159},"{":{"d":"78,30v-67,0,-49,-59,-53,-115v-2,-20,-41,-13,-27,-38v65,-3,-18,-135,80,-135v10,0,14,3,14,10v1,19,-35,3,-35,28v0,46,7,101,-33,106v41,3,32,60,33,105v-5,25,35,9,35,28v0,7,-4,11,-14,11","w":86},"|":{"d":"40,105v-10,0,-14,-6,-15,-15r0,-360v1,-9,5,-15,15,-15v10,0,14,6,15,15r0,360v-1,9,-5,15,-15,15","w":79},"}":{"d":"9,-258v66,0,48,57,52,114v1,20,43,15,27,38v-65,3,17,136,-79,136v-10,0,-14,-4,-14,-11v-1,-19,37,-3,35,-28v-3,-46,-7,-101,33,-106v-42,-2,-32,-61,-33,-105v5,-25,-35,-9,-35,-28v0,-7,4,-10,14,-10","w":86},"~":{"d":"36,-65v-7,-1,-12,-5,-13,-11v2,-25,22,-40,47,-41v32,-2,47,24,75,24v18,0,17,-24,35,-24v7,0,12,4,13,10v-2,25,-22,41,-47,42v-32,2,-48,-21,-75,-25v-17,1,-17,24,-35,25","w":216},"\u20ac":{"d":"149,-154v0,7,-6,12,-15,11r-80,0v0,9,-2,18,0,26v27,4,75,-11,81,12v-6,23,-52,8,-78,12v7,34,24,67,62,68v24,0,34,-17,52,-23v8,0,14,6,13,15v-5,26,-37,35,-64,35v-61,0,-87,-45,-98,-95v-14,1,-26,0,-26,-12v0,-11,11,-13,24,-12r0,-26v-13,1,-24,-1,-24,-11v0,-12,13,-13,27,-12v11,-50,39,-92,96,-92v29,0,54,11,60,38v-17,38,-41,-33,-83,-6v-20,12,-32,31,-38,60r76,0v10,-1,15,5,15,12","w":192},"\u201a":{"d":"34,41v-14,13,-35,-6,-21,-23v13,-17,14,-46,37,-53v34,12,-9,57,-16,76"},"\u0192":{"d":"39,-142v-1,-16,20,-14,37,-14v11,-46,7,-102,64,-102v13,0,23,3,23,13v-1,19,-33,6,-39,21v-10,14,-13,46,-17,68v17,0,36,-2,36,14v0,18,-23,14,-41,14r-33,170v-7,23,-22,36,-52,36v-24,5,-35,-30,-8,-28v32,2,33,-16,38,-45r24,-133v-16,1,-32,1,-32,-14","w":192},"\u201e":{"d":"32,41v-14,13,-35,-6,-21,-23v13,-17,14,-46,37,-53v34,12,-9,57,-16,76xm83,41v-14,13,-35,-6,-21,-23v13,-17,14,-46,37,-53v34,12,-9,57,-16,76","w":120},"\u2026":{"d":"300,2v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19v9,0,19,9,18,19v1,9,-9,19,-18,18xm180,2v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19v9,0,19,9,18,19v1,9,-9,19,-18,18xm60,2v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19v9,0,19,9,18,19v1,9,-9,19,-18,18","w":360},"\u2020":{"d":"10,-154v0,-10,5,-15,15,-15r70,0r0,-74v1,-9,5,-15,15,-15v10,0,14,6,15,15r0,74r70,0v10,0,16,5,16,15v0,10,-6,14,-16,14r-70,0r0,202v-1,9,-5,16,-15,16v-10,0,-14,-7,-15,-16r0,-202r-70,0v-10,0,-15,-4,-15,-14","w":220},"\u2021":{"d":"10,-19v3,-29,57,-10,85,-15r0,-113r-70,0v-10,0,-15,-5,-15,-15v0,-10,5,-14,15,-14r70,0r0,-67v1,-9,5,-15,15,-15v29,3,10,55,15,82r70,0v10,0,16,4,16,14v0,10,-6,15,-16,15r-70,0r0,113v29,5,80,-13,86,15v-5,28,-57,10,-86,15v-4,28,12,77,-15,82v-28,-5,-10,-54,-15,-82r-70,0v-9,-1,-16,-5,-15,-15","w":220},"\u02c6":{"d":"3,-220v-19,9,-29,-17,-13,-25r47,-20r46,20v14,5,9,33,-8,26r-38,-15"},"\u2030":{"d":"322,-100v-42,0,-41,83,0,83v23,0,31,-19,31,-42v0,-23,-9,-40,-31,-41xm377,-59v0,37,-19,61,-55,61v-37,0,-55,-26,-55,-61v0,-36,20,-61,55,-61v35,0,55,24,55,61xm71,-239v-42,0,-41,83,0,83v23,0,31,-19,31,-42v0,-23,-9,-40,-31,-41xm126,-198v0,37,-19,61,-55,61v-36,0,-54,-24,-54,-61v0,-36,19,-60,54,-60v36,0,55,24,55,60xm196,-100v-42,0,-41,83,0,83v23,0,31,-19,31,-42v0,-23,-9,-40,-31,-41xm251,-59v0,37,-19,61,-55,61v-37,0,-55,-26,-55,-61v0,-36,20,-61,55,-61v35,0,55,24,55,61xm96,-6v-2,15,-25,14,-25,1r101,-246v4,-17,31,-10,24,5","w":393},"\u0160":{"d":"121,-320v9,-6,22,1,20,11v-4,23,-38,21,-54,33r-47,-20v-14,-5,-8,-32,8,-26r39,15xm10,-193v3,-40,32,-65,76,-65v28,0,57,7,63,29v-11,33,-36,-7,-64,-2v-32,-4,-55,36,-32,58v35,33,116,24,113,94v-2,51,-33,81,-87,81v-30,0,-65,-6,-71,-31v0,-8,4,-16,13,-16v19,5,31,21,58,20v33,-1,51,-21,53,-52v-10,-68,-127,-34,-122,-116","w":173},"\u2039":{"d":"74,-47v12,13,-6,32,-17,21v-19,-18,-27,-47,-42,-70v17,-24,24,-58,48,-74v12,0,19,11,11,24r-30,50","w":93},"\u0152":{"d":"216,0v-19,1,-18,-18,-17,-37v-15,22,-42,39,-76,39v-74,0,-112,-55,-112,-130v0,-74,37,-128,112,-130v34,0,59,17,76,36v-1,-18,-1,-35,17,-34r87,0v10,0,16,4,16,14v0,10,-6,15,-16,15r-72,0r0,84r70,0v9,1,16,5,15,15v-3,29,-57,10,-85,15r0,83r76,0v9,1,15,5,15,15v0,10,-6,14,-15,15r-91,0xm123,-231v-56,0,-78,47,-78,103v0,56,22,103,78,103v57,0,79,-46,79,-103v0,-57,-22,-103,-79,-103","w":333},"\u017d":{"d":"100,-307v17,-5,49,-28,55,-2v-5,23,-38,21,-55,33v-17,-11,-48,-11,-55,-33v6,-26,38,-2,55,2xm27,0v-20,2,-21,-18,-12,-31r132,-198r-117,0v-10,0,-15,-4,-15,-14v0,-10,6,-13,15,-13r140,0v21,-2,18,18,9,31r-132,198r129,0v9,0,16,4,16,13v0,10,-6,14,-16,14r-149,0","w":200},"\u2018":{"d":"34,-183v-14,13,-35,-6,-21,-23v13,-17,13,-48,37,-52v14,-3,17,15,10,27v-9,16,-16,33,-26,48","k":{"\u2018":22}},"\u2019":{"d":"34,-183v-14,13,-35,-6,-21,-23v13,-17,13,-48,37,-52v14,-3,17,15,10,27v-9,16,-16,33,-26,48","k":{"\u2019":22,"s":20}},"\u201c":{"d":"32,-183v-14,13,-35,-6,-21,-23v13,-17,13,-48,37,-52v14,-3,17,15,10,27v-9,16,-16,33,-26,48xm83,-183v-14,13,-35,-6,-21,-23v13,-17,13,-48,37,-52v14,-3,17,15,10,27v-9,16,-16,33,-26,48","w":120},"\u201d":{"d":"32,-183v-14,13,-35,-6,-21,-23v13,-17,13,-48,37,-52v14,-3,17,15,10,27v-9,16,-16,33,-26,48xm83,-183v-14,13,-35,-6,-21,-23v13,-17,13,-48,37,-52v14,-3,17,15,10,27v-9,16,-16,33,-26,48","w":120},"\u2022":{"d":"90,-64v-38,0,-64,-26,-64,-64v0,-39,25,-64,64,-64v39,0,64,25,64,64v0,38,-26,64,-64,64","w":180},"\u2013":{"d":"180,-96v0,7,-7,13,-14,13r-152,0v-7,0,-14,-6,-14,-13v-1,-7,7,-15,14,-14r152,0v7,-1,15,7,14,14","w":180},"\u2014":{"d":"-14,-96v-1,-7,7,-15,14,-14r360,0v7,-1,15,7,14,14v0,7,-7,13,-14,13r-360,0v-7,0,-14,-6,-14,-13","w":360},"\u02dc":{"d":"36,-225v-20,-13,-49,17,-53,-11v8,-41,70,-5,95,-22v6,0,13,7,12,14v-1,20,-32,26,-54,19"},"\u2122":{"d":"184,-107v-7,0,-13,-7,-13,-14r0,-113v-4,-28,38,-32,46,-10r36,94r36,-94v6,-22,47,-19,47,10r0,113v1,7,-7,14,-14,14v-7,0,-15,-7,-14,-14r-1,-104v-15,38,-26,81,-45,115v-11,7,-22,0,-24,-11r-40,-104r0,104v1,7,-7,15,-14,14xm81,-107v-10,0,-14,-6,-14,-16r0,-110v-16,-3,-46,8,-46,-11v0,-8,3,-12,11,-12r98,0v8,0,12,4,12,12v0,19,-30,8,-46,11r0,110v0,10,-5,16,-15,16","w":356},"\u0161":{"d":"80,-249v17,-5,50,-30,55,-2v-6,22,-38,21,-55,32r-47,-19v-13,-4,-9,-29,5,-27v16,2,28,11,42,16xm119,-51v-13,-48,-102,-30,-102,-89v0,-37,30,-54,65,-54v27,0,59,9,63,34v-11,32,-37,-10,-63,-6v-23,-3,-47,22,-26,38v30,23,90,21,94,71v7,74,-123,76,-141,23v-1,-7,6,-16,13,-15v21,7,31,24,60,24v20,0,36,-11,37,-26","w":159},"\u203a":{"d":"42,-32v-5,13,-27,11,-27,-4v7,-22,24,-40,34,-60v-11,-20,-26,-38,-34,-61v0,-15,20,-16,27,-4r36,65","w":93},"\u0153":{"d":"149,-96v0,-37,-14,-70,-53,-70v-69,0,-71,141,0,141v38,0,53,-33,53,-71xm96,2v-56,-2,-83,-41,-83,-98v0,-56,27,-98,83,-98v32,0,55,18,69,38v12,-20,37,-38,68,-38v54,0,82,40,84,94v0,12,-4,16,-17,16r-120,0v1,37,21,58,60,58v31,0,41,-18,62,-25v8,0,11,5,11,14v-17,51,-130,50,-148,2v-14,20,-36,37,-69,37xm285,-107v8,-64,-87,-80,-102,-21v-2,7,-3,14,-3,21r105,0","w":326},"\u017e":{"d":"80,-249v17,-5,50,-30,55,-2v-6,22,-38,21,-55,32r-47,-19v-13,-4,-9,-29,5,-27v16,2,28,11,42,16xm133,-192v20,-1,17,16,9,28r-91,137r86,0v11,0,16,4,16,13v0,9,-5,14,-16,14r-114,0v-19,1,-17,-16,-9,-27r91,-137r-78,0v-11,0,-16,-5,-16,-14v0,-9,5,-14,16,-14r106,0","w":159},"\u0178":{"d":"123,-275v-10,0,-19,-9,-19,-19v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-10,19,-20,19xm57,-275v-11,0,-20,-8,-20,-19v0,-11,9,-20,20,-20v11,0,19,10,19,20v0,10,-9,19,-19,19xm90,2v-10,0,-17,-7,-16,-17r0,-105v-24,-43,-54,-79,-74,-126v0,-16,27,-15,31,-2r59,96v23,-34,41,-73,67,-104v17,-8,28,8,18,24r-69,112r0,105v1,10,-6,17,-16,17","w":180},"\u00a1":{"d":"53,-194v9,0,19,10,19,19v0,9,-9,19,-19,18v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19xm53,-123v10,0,16,7,16,17r0,156v0,10,-6,17,-16,17v-9,0,-16,-8,-16,-17r0,-156v0,-9,7,-17,16,-17","w":106},"\u00a2":{"d":"82,-163v-52,14,-48,122,0,135r0,-135xm89,29v-11,-1,-6,-18,-7,-29v-45,-8,-69,-44,-69,-96v0,-52,24,-88,69,-96v1,-11,-4,-28,7,-29v12,0,7,16,8,27v25,0,50,7,53,24v-5,28,-30,2,-53,4r0,141v19,0,26,-9,40,-11v8,-1,13,5,12,13v-2,18,-26,25,-52,25v-1,11,4,27,-8,27","w":159},"\u00a3":{"d":"160,-204v-14,-40,-110,-30,-90,25r17,36v22,3,61,-10,62,14v1,24,-34,12,-55,15v10,35,-8,68,-28,84r121,0v9,1,16,5,16,15v0,10,-7,14,-16,15r-144,0v-10,0,-19,-4,-19,-15v15,-27,53,-48,39,-99v-20,-2,-52,9,-52,-15v0,-20,25,-13,43,-14v-7,-15,-19,-31,-18,-52v3,-41,34,-63,78,-63v44,0,78,25,83,63v2,19,-27,21,-31,3","w":213},"\u00a4":{"d":"96,-190v-37,0,-59,26,-59,62v0,37,23,62,59,62v37,0,60,-25,60,-62v0,-37,-22,-62,-60,-62xm42,-58v-8,11,-30,31,-34,6v1,-10,12,-16,17,-23v-23,-24,-23,-83,0,-107v-11,-7,-27,-31,-5,-35v9,3,15,14,22,19v22,-25,86,-26,108,0v7,-6,14,-16,23,-19v22,3,7,29,-5,35v23,24,23,83,0,107v11,8,27,32,5,36v-9,-3,-16,-14,-23,-19v-24,25,-84,24,-108,0","w":192},"\u00a5":{"d":"17,-82v3,-22,42,-8,64,-12r0,-26v-22,-3,-64,10,-64,-11v0,-19,31,-10,49,-12r-62,-96v-5,-13,7,-24,20,-17v28,30,47,70,72,104v25,-34,45,-73,73,-104v16,-9,26,9,16,24r-58,89v18,2,49,-7,49,12v0,21,-42,7,-64,11r0,26v22,3,61,-10,64,12v-3,22,-42,8,-64,12v-4,26,12,72,-16,72v-26,0,-11,-47,-15,-72v-22,-3,-61,10,-64,-12","w":192},"\u00a6":{"d":"40,63v-10,0,-14,-6,-15,-15r0,-96v1,-9,5,-15,15,-15v10,0,14,6,15,15r0,96v-1,9,-5,15,-15,15xm40,-117v-10,0,-14,-6,-15,-15r0,-96v1,-9,5,-15,15,-15v10,0,14,6,15,15r0,96v-1,9,-5,15,-15,15","w":79},"\u00a7":{"d":"81,-142v-26,6,-55,40,-28,66v18,16,50,29,74,41v25,-11,47,-55,16,-76v-17,-12,-42,-21,-62,-31xm54,-159v-13,-11,-23,-18,-23,-40v1,-42,32,-60,76,-59v38,1,70,18,73,54v0,9,-4,16,-14,16v-27,-8,-21,-48,-62,-43v-31,-3,-56,29,-32,50v39,32,118,32,118,100v0,30,-18,49,-39,60v51,35,8,103,-52,99v-42,-3,-74,-19,-82,-52v26,-52,34,35,81,24v33,4,60,-27,35,-48v-40,-32,-120,-31,-123,-99v-1,-35,21,-50,44,-62","w":200},"\u00a8":{"d":"70,-217v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20xm3,-217v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20"},"\u00a9":{"d":"43,-128v0,61,40,103,101,103v61,0,101,-42,101,-103v0,-61,-40,-103,-101,-103v-61,0,-101,42,-101,103xm274,-128v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130v78,0,130,52,130,130xm145,-185v-31,0,-47,26,-47,56v1,32,16,54,47,56v32,3,31,-27,53,-33v5,1,12,3,11,10v-7,27,-30,47,-64,47v-50,0,-77,-33,-77,-80v0,-47,27,-78,77,-79v35,0,57,18,64,45v0,6,-4,11,-12,10v-23,-5,-20,-32,-52,-32","w":288},"\u00aa":{"d":"66,-237v-40,0,-39,75,0,75v21,0,30,-17,30,-38v0,-21,-9,-37,-30,-37xm10,-200v-6,-49,59,-77,86,-43v-1,-10,3,-15,12,-15v6,0,12,3,12,9r0,99v0,6,-6,9,-12,9v-11,1,-12,-7,-13,-15v-27,35,-92,3,-85,-44","w":129},"\u00ab":{"d":"72,-47v12,13,-6,32,-17,21v-18,-18,-27,-47,-41,-70v17,-24,22,-59,48,-74v12,0,17,12,10,24r-30,50xm129,-47v12,13,-6,32,-17,21v-18,-18,-27,-47,-41,-70v16,-24,23,-58,47,-74v12,0,19,11,11,24r-30,50","w":146},"\u00ac":{"d":"184,-39v-27,-2,-9,-50,-14,-75r-138,0v-10,0,-15,-5,-15,-15v0,-10,5,-14,15,-14r152,0v10,0,14,6,15,15r0,74v-1,9,-5,15,-15,15","w":216},"\u00ad":{"d":"114,-96v-6,26,-59,8,-88,13v-7,0,-14,-6,-13,-13v4,-27,58,-9,87,-14v7,-1,16,7,14,14","w":126},"\u2010":{"d":"114,-96v-6,26,-59,8,-88,13v-7,0,-14,-6,-13,-13v4,-27,58,-9,87,-14v7,-1,16,7,14,14","w":126},"\u00ae":{"d":"43,-128v0,61,40,103,101,103v61,0,101,-42,101,-103v0,-61,-40,-103,-101,-103v-61,0,-101,42,-101,103xm274,-128v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130v78,0,130,52,130,130xm177,-160v-1,-26,-37,-17,-63,-19r0,42v27,-2,64,7,63,-23xm195,-68v7,7,3,17,-9,15v-9,0,-11,-1,-15,-7r-34,-56r-23,0v-4,21,11,61,-12,63v-8,0,-12,-3,-12,-11r0,-129v4,-16,38,-8,56,-8v35,0,55,9,55,43v0,26,-14,39,-38,41","w":288},"\u00af":{"d":"-15,-233v0,-10,6,-14,15,-15r73,0v9,1,16,5,16,15v0,10,-6,14,-16,14r-73,0v-10,0,-15,-4,-15,-14"},"\u00b0":{"d":"72,-239v-18,0,-32,14,-32,32v0,18,14,32,32,32v18,0,32,-14,32,-32v0,-18,-14,-32,-32,-32xm72,-156v-32,0,-51,-19,-51,-51v0,-32,19,-51,51,-51v32,0,51,19,51,51v0,32,-19,51,-51,51","w":144},"\u00b1":{"d":"199,-15v0,10,-6,14,-15,15r-152,0v-9,-1,-15,-5,-15,-15v0,-10,6,-14,15,-15r152,0v9,1,15,5,15,15xm17,-112v2,-28,50,-10,76,-15v2,-21,-8,-55,15,-55v24,0,13,34,15,55v26,4,73,-12,76,15v-3,27,-51,9,-76,14v-2,22,8,56,-15,56v-23,0,-13,-34,-15,-56r-61,0v-10,0,-15,-4,-15,-14","w":216},"\u00b2":{"d":"65,-258v43,0,58,40,34,69r-52,63v23,3,63,-10,67,10v2,8,-6,12,-14,11r-78,0v-11,0,-14,-8,-7,-16r69,-88v7,-16,-4,-29,-21,-28v-18,1,-29,13,-30,30v0,6,-5,7,-10,8v-7,0,-11,-4,-11,-12v1,-31,20,-47,53,-47","w":125},"\u00b3":{"d":"58,-237v-24,0,-16,25,-34,26v-6,0,-9,-3,-9,-10v0,-23,17,-37,44,-37v47,0,62,54,27,72v51,20,26,83,-27,83v-28,0,-45,-13,-48,-37v1,-6,2,-13,10,-12v15,7,16,29,39,28v15,-1,29,-12,29,-28v0,-29,-34,-13,-41,-31v4,-18,35,-9,32,-35v-1,-10,-10,-19,-22,-19","w":125},"\u00b4":{"d":"-1,-240v18,-10,68,-44,78,-12v-12,20,-43,25,-67,33v-11,1,-16,-13,-11,-21"},"\u00b5":{"d":"142,-8v-22,14,-73,16,-89,-6v-5,31,14,85,-16,92v-10,0,-16,-7,-16,-17r0,-238v0,-10,6,-17,16,-17v9,0,16,8,16,17v7,59,-25,152,44,152v68,0,44,-93,44,-152v0,-10,6,-17,16,-17v9,0,16,8,16,17r0,162v2,18,-27,24,-31,7","w":193},"\u00b6":{"d":"102,78v-10,0,-14,-7,-15,-16r0,-186v-45,-1,-77,-23,-77,-66v0,-73,85,-67,161,-66v11,0,17,6,17,17r0,301v-1,9,-5,16,-15,16v-10,0,-14,-7,-15,-16r0,-295r-41,0r0,295v-1,9,-5,16,-15,16","w":216},"\u00b7":{"d":"45,-90v-11,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,19,9,19,20v0,11,-8,19,-19,19","w":90},"\u22c5":{"d":"45,-90v-11,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,19,9,19,20v0,11,-8,19,-19,19","w":90},"\u2219":{"d":"45,-90v-11,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,19,9,19,20v0,11,-8,19,-19,19","w":90},"\u00b8":{"d":"22,52v-2,-24,48,9,35,-22v-12,0,-31,-2,-20,-17r10,-13r19,0r-11,15v17,-3,31,5,33,19v5,32,-54,42,-66,18"},"\u00b9":{"d":"44,-103v-7,0,-14,-4,-13,-13r0,-119v-13,0,-29,3,-28,-11v1,-18,31,-7,47,-10v4,0,7,1,7,5r0,135v0,9,-5,13,-13,13","w":82},"\u00ba":{"d":"63,-237v-39,0,-38,74,0,75v38,-1,39,-75,0,-75xm63,-141v-36,0,-55,-24,-55,-59v0,-35,19,-58,55,-58v36,0,55,23,55,58v0,35,-19,59,-55,59","w":126},"\u00bb":{"d":"97,-32v-5,13,-27,11,-26,-4v7,-22,23,-40,33,-60v-10,-20,-25,-38,-33,-61v-1,-15,19,-16,26,-4r36,65xm40,-32v-5,13,-27,11,-26,-4v7,-22,24,-40,34,-60v-11,-20,-26,-38,-34,-61v-1,-15,19,-16,26,-4r36,65","w":146},"\u00bc":{"d":"233,-57v-1,-23,2,-50,-1,-71r-42,71r43,0xm246,2v-18,0,-12,-21,-13,-37r-65,0v-12,-1,-7,-15,-3,-21v22,-31,39,-67,65,-94v9,-9,28,-3,28,12r0,81v19,-6,26,20,9,22r-9,0v-1,15,6,37,-12,37xm54,-103v-7,0,-14,-4,-13,-13r0,-119v-13,0,-29,3,-28,-11v1,-18,31,-7,47,-10v4,0,7,1,7,5r0,135v1,10,-5,13,-13,13xm93,-6v-3,17,-31,12,-24,-4r99,-241v5,-17,32,-11,25,5","w":289},"\u00bd":{"d":"163,-106v-4,-56,99,-67,101,-9v0,15,-6,21,-13,30r-52,63v23,3,62,-9,67,11v0,8,-7,11,-14,11r-78,0v-10,0,-14,-7,-7,-16r69,-88v7,-16,-4,-29,-21,-28v-17,1,-30,12,-30,29v0,6,-5,9,-10,9v-7,0,-12,-4,-12,-12xm54,-103v-7,0,-14,-4,-13,-13r0,-119v-13,0,-29,3,-28,-11v1,-18,31,-7,47,-10v4,0,7,1,7,5r0,135v1,10,-5,13,-13,13xm82,-6v-2,15,-25,14,-25,1r101,-246v4,-17,31,-10,24,5","w":289},"\u00be":{"d":"233,-57v-1,-23,2,-50,-1,-71r-42,71r43,0xm246,2v-18,0,-12,-21,-13,-37r-65,0v-12,-1,-7,-15,-3,-21v22,-31,39,-67,65,-94v9,-9,28,-3,28,12r0,81v19,-6,26,20,9,22r-9,0v-1,15,6,37,-12,37xm62,-237v-24,0,-16,25,-34,26v-6,0,-9,-3,-9,-10v1,-22,17,-37,44,-37v47,0,62,54,27,72v51,19,27,83,-27,83v-28,0,-45,-13,-48,-37v1,-6,2,-13,10,-12v16,6,16,28,40,28v15,0,28,-12,28,-28v0,-28,-32,-14,-41,-31v4,-18,35,-10,32,-35v-1,-10,-10,-19,-22,-19xm114,-6v-2,15,-25,14,-25,1r101,-246v5,-17,31,-10,24,5","w":289},"\u00bf":{"d":"83,-194v9,0,19,9,18,19v1,9,-9,19,-18,18v-10,1,-19,-9,-19,-18v0,-9,10,-19,19,-19xm6,1v0,-40,27,-64,61,-71v1,-22,-7,-54,16,-53v25,1,17,52,12,74v-22,11,-55,12,-55,47v0,46,74,54,84,10v3,-8,5,-12,14,-12v8,0,16,7,15,17v-5,34,-33,54,-70,54v-44,0,-77,-23,-77,-66","w":159},"\u00c0":{"d":"138,-305v17,4,14,29,-2,29v-24,-9,-55,-13,-66,-34v7,-32,47,1,68,5xm160,-83r-50,-139r-50,139r100,0xm212,-27v11,15,-2,38,-20,26v-11,-14,-14,-37,-22,-55r-119,0v-8,18,-12,39,-22,55v-8,6,-28,2,-25,-10v22,-79,59,-151,83,-228v7,-22,37,-25,46,0","w":220},"\u00c1":{"d":"124,-321v13,-11,32,3,24,18v-17,12,-41,20,-64,27v-17,-1,-17,-23,-1,-29xm160,-83r-50,-139r-50,139r100,0xm212,-27v11,15,-2,38,-20,26v-11,-14,-14,-37,-22,-55r-119,0v-8,18,-12,39,-22,55v-8,6,-28,2,-25,-10v22,-79,59,-151,83,-228v7,-22,37,-25,46,0","w":220},"\u00c2":{"d":"110,-291v-18,5,-50,29,-55,1v7,-21,38,-20,55,-32r47,20v15,5,7,32,-9,26xm160,-83r-50,-139r-50,139r100,0xm212,-27v11,15,-2,38,-20,26v-11,-14,-14,-37,-22,-55r-119,0v-8,18,-12,39,-22,55v-8,6,-28,2,-25,-10v22,-79,59,-151,83,-228v7,-22,37,-25,46,0","w":220},"\u00c3":{"d":"119,-280v-25,-19,-56,17,-62,-13v7,-42,70,-5,95,-23v6,0,13,7,12,14v-1,17,-25,27,-45,22xm160,-83r-50,-139r-50,139r100,0xm212,-27v11,15,-2,38,-20,26v-11,-14,-14,-37,-22,-55r-119,0v-8,18,-12,39,-22,55v-8,6,-28,2,-25,-10v22,-79,59,-151,83,-228v7,-22,37,-25,46,0","w":220},"\u00c4":{"d":"144,-275v-11,0,-20,-8,-20,-19v0,-11,9,-20,20,-20v11,0,19,9,19,20v0,11,-9,19,-19,19xm77,-275v-11,0,-20,-8,-20,-19v0,-11,9,-20,20,-20v11,0,19,9,19,20v0,11,-9,19,-19,19xm160,-83r-50,-139r-50,139r100,0xm212,-27v11,15,-2,38,-20,26v-11,-14,-14,-37,-22,-55r-119,0v-8,18,-12,39,-22,55v-8,6,-28,2,-25,-10v22,-79,59,-151,83,-228v7,-22,37,-25,46,0","w":220},"\u00c5":{"d":"110,-315v-10,0,-16,7,-16,17v-1,10,6,17,16,16v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17xm110,-264v-20,0,-34,-14,-34,-34v0,-20,14,-34,34,-34v20,0,34,14,34,34v0,20,-14,34,-34,34xm160,-83r-50,-139r-50,139r100,0xm212,-27v11,15,-2,38,-20,26v-11,-14,-14,-37,-22,-55r-119,0v-8,18,-12,39,-22,55v-8,6,-28,2,-25,-10v22,-79,59,-151,83,-228v7,-22,37,-25,46,0","w":220},"\u00c6":{"d":"134,-220r-69,137r69,0r0,-137xm251,-128v-3,29,-57,10,-85,15r0,83r76,0v9,1,16,5,16,15v0,10,-7,14,-16,15r-91,0v-25,1,-15,-33,-17,-56r-83,0v-13,19,-15,50,-39,58v-15,1,-18,-13,-11,-26r112,-219v6,-11,8,-12,22,-13r104,0v10,0,15,4,15,14v0,10,-5,15,-15,15r-73,0r0,84r69,0v10,1,17,4,16,15","w":273},"\u00c7":{"d":"86,52v1,-23,37,6,39,-16v0,-14,-37,1,-23,-23r9,-12v-66,-8,-100,-57,-100,-129v0,-75,37,-128,114,-130v36,-1,65,12,74,37v0,8,-4,16,-13,15v-21,-6,-30,-26,-61,-25v-57,3,-80,47,-80,103v0,55,22,101,78,103v31,1,45,-18,69,-23v9,0,12,7,13,15v-9,26,-42,33,-76,35r-9,13v17,-3,31,5,33,19v4,33,-55,41,-67,18","w":213},"\u00c8":{"d":"107,-305v20,4,13,35,-6,28v-20,-7,-43,-15,-59,-26v-8,-14,10,-29,24,-18xm138,-128v-5,28,-57,10,-85,15r0,83r76,0v9,1,15,5,15,15v0,10,-6,14,-15,15r-91,0v-11,0,-17,-6,-17,-17r0,-222v0,-11,6,-17,17,-17r91,0v10,0,15,4,15,14v0,10,-5,15,-15,15r-76,0r0,84v29,4,79,-13,85,15","w":159},"\u00c9":{"d":"94,-321v13,-11,34,4,23,18v-16,12,-41,20,-63,27v-17,0,-19,-26,-1,-29xm138,-128v-5,28,-57,10,-85,15r0,83r76,0v9,1,15,5,15,15v0,10,-6,14,-15,15r-91,0v-11,0,-17,-6,-17,-17r0,-222v0,-11,6,-17,17,-17r91,0v10,0,15,4,15,14v0,10,-5,15,-15,15r-76,0r0,84v29,4,79,-13,85,15","w":159},"\u00ca":{"d":"80,-291v-18,5,-50,29,-55,1v6,-22,39,-20,55,-32r46,20v16,5,8,32,-8,26xm138,-128v-5,28,-57,10,-85,15r0,83r76,0v9,1,15,5,15,15v0,10,-6,14,-15,15r-91,0v-11,0,-17,-6,-17,-17r0,-222v0,-11,6,-17,17,-17r91,0v10,0,15,4,15,14v0,10,-5,15,-15,15r-76,0r0,84v29,4,79,-13,85,15","w":159},"\u00cb":{"d":"113,-275v-10,0,-19,-9,-19,-19v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-10,19,-20,19xm46,-275v-10,0,-19,-9,-19,-19v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-10,19,-20,19xm138,-128v-5,28,-57,10,-85,15r0,83r76,0v9,1,15,5,15,15v0,10,-6,14,-15,15r-91,0v-11,0,-17,-6,-17,-17r0,-222v0,-11,6,-17,17,-17r91,0v10,0,15,4,15,14v0,10,-5,15,-15,15r-76,0r0,84v29,4,79,-13,85,15","w":159},"\u00cc":{"d":"64,-305v17,4,16,27,-1,29v-23,-7,-47,-15,-64,-27v-8,-14,9,-29,24,-18xm37,-258v10,0,16,7,16,16r0,227v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-227v-1,-10,6,-17,16,-16"},"\u00cd":{"d":"-1,-298v19,-10,68,-44,78,-12v-11,21,-43,25,-67,34v-10,0,-16,-13,-11,-22xm37,-258v10,0,16,7,16,16r0,227v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-227v-1,-10,6,-17,16,-16"},"\u00ce":{"d":"3,-278v-10,6,-23,-1,-21,-12v5,-22,39,-20,55,-32r46,20v14,5,8,32,-8,26r-38,-15xm37,-258v10,0,16,7,16,16r0,227v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-227v-1,-10,6,-17,16,-16"},"\u00cf":{"d":"70,-275v-10,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-10,19,-20,19xm3,-275v-10,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-10,19,-20,19xm37,-258v10,0,16,7,16,16r0,227v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-227v-1,-10,6,-17,16,-16"},"\u00d0":{"d":"113,-129v0,23,-38,10,-59,13r0,89r46,0v59,-1,81,-45,82,-103v2,-74,-44,-109,-128,-99r0,86v21,3,59,-10,59,14xm106,0v-29,0,-83,14,-83,-17r0,-99v0,0,-29,2,-29,-13v0,-16,14,-14,29,-14r0,-96v1,-30,51,-17,79,-17v76,0,114,51,114,126v0,76,-35,130,-110,130","w":226},"\u00d1":{"d":"129,-280v-25,-19,-55,16,-62,-13v7,-42,70,-5,95,-23v6,0,13,7,12,14v-1,17,-25,27,-45,22xm204,-258v10,0,16,7,16,16r0,225v1,27,-30,22,-37,3r-130,-187r0,186v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-225v-1,-27,31,-20,37,-2r130,186r0,-186v-1,-10,6,-17,16,-16","w":240},"\u00d2":{"d":"151,-305v17,4,15,28,-1,29v-23,-7,-47,-15,-64,-27v-8,-14,9,-30,23,-18xm123,2v-74,0,-112,-55,-112,-130v0,-74,37,-130,112,-130v76,0,113,55,113,130v0,75,-38,130,-113,130xm123,-231v-56,0,-78,47,-78,103v0,56,22,103,78,103v57,0,79,-46,79,-103v0,-57,-22,-103,-79,-103","w":246},"\u00d3":{"d":"138,-321v14,-11,31,3,23,18v-17,12,-41,20,-64,27v-16,-1,-17,-23,-1,-29xm123,2v-74,0,-112,-55,-112,-130v0,-74,37,-130,112,-130v76,0,113,55,113,130v0,75,-38,130,-113,130xm123,-231v-56,0,-78,47,-78,103v0,56,22,103,78,103v57,0,79,-46,79,-103v0,-57,-22,-103,-79,-103","w":246},"\u00d4":{"d":"90,-278v-10,6,-23,-1,-21,-12v5,-22,38,-20,54,-32r47,20v14,5,8,32,-8,26r-39,-15xm123,2v-74,0,-112,-55,-112,-130v0,-74,37,-130,112,-130v76,0,113,55,113,130v0,75,-38,130,-113,130xm123,-231v-56,0,-78,47,-78,103v0,56,22,103,78,103v57,0,79,-46,79,-103v0,-57,-22,-103,-79,-103","w":246},"\u00d5":{"d":"143,-309v14,-4,32,-14,34,7v-4,29,-49,24,-73,15v-13,5,-31,14,-34,-6v3,-30,47,-22,73,-16xm123,2v-74,0,-112,-55,-112,-130v0,-74,37,-130,112,-130v76,0,113,55,113,130v0,75,-38,130,-113,130xm123,-231v-56,0,-78,47,-78,103v0,56,22,103,78,103v57,0,79,-46,79,-103v0,-57,-22,-103,-79,-103","w":246},"\u00d6":{"d":"157,-275v-10,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,19,9,19,20v0,11,-9,19,-19,19xm90,-275v-10,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,19,9,19,20v0,11,-9,19,-19,19xm123,2v-74,0,-112,-55,-112,-130v0,-74,37,-130,112,-130v76,0,113,55,113,130v0,75,-38,130,-113,130xm123,-231v-56,0,-78,47,-78,103v0,56,22,103,78,103v57,0,79,-46,79,-103v0,-57,-22,-103,-79,-103","w":246},"\u00d7":{"d":"33,-146v-16,-9,-4,-37,12,-26v24,17,42,41,63,61r63,-61v11,-7,24,5,19,18v-19,22,-42,42,-62,63r62,63v6,18,-17,27,-27,11r-55,-54r-63,61v-11,7,-24,-5,-19,-18v19,-22,42,-42,62,-63","w":216},"\u00d8":{"d":"123,-258v33,0,56,11,73,28v11,-10,16,-29,33,-31v11,-1,15,13,6,19r-24,29v52,75,19,220,-88,215v-32,-2,-55,-13,-72,-29v-11,11,-17,26,-33,32v-11,0,-14,-14,-6,-20r24,-28v-52,-75,-20,-215,87,-215xm123,-25v78,2,93,-99,67,-164r-120,140v11,14,28,24,53,24xm123,-231v-77,-1,-93,100,-65,163r119,-140v-11,-14,-29,-23,-54,-23","w":246},"\u00d9":{"d":"148,-305v17,4,15,28,-1,29v-24,-6,-47,-15,-64,-27v-10,-13,9,-29,23,-18xm120,2v-65,0,-100,-35,-99,-104r0,-140v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,153v-1,40,27,64,67,64v40,0,68,-24,68,-64r0,-153v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,140v0,68,-35,104,-100,104","w":240},"\u00da":{"d":"134,-321v14,-11,32,3,24,18v-17,12,-41,20,-64,27v-17,-2,-17,-23,-1,-29xm120,2v-65,0,-100,-35,-99,-104r0,-140v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,153v-1,40,27,64,67,64v40,0,68,-24,68,-64r0,-153v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,140v0,68,-35,104,-100,104","w":240},"\u00db":{"d":"86,-278v-10,6,-22,-2,-20,-12v5,-22,38,-20,54,-32r47,20v14,5,8,32,-8,26r-39,-15xm120,2v-65,0,-100,-35,-99,-104r0,-140v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,153v-1,40,27,64,67,64v40,0,68,-24,68,-64r0,-153v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,140v0,68,-35,104,-100,104","w":240},"\u00dc":{"d":"154,-275v-11,0,-20,-8,-20,-19v0,-11,9,-20,20,-20v11,0,19,9,19,20v0,11,-9,19,-19,19xm87,-275v-11,0,-20,-8,-20,-19v0,-11,9,-20,20,-20v11,0,19,9,19,20v0,11,-9,19,-19,19xm120,2v-65,0,-100,-35,-99,-104r0,-140v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,153v-1,40,27,64,67,64v40,0,68,-24,68,-64r0,-153v-1,-10,6,-17,16,-16v10,0,16,7,16,16r0,140v0,68,-35,104,-100,104","w":240},"\u00dd":{"d":"104,-321v13,-11,34,4,23,18v-16,12,-41,20,-63,27v-17,-1,-17,-23,-1,-29xm90,2v-10,0,-17,-7,-16,-17r0,-105v-24,-43,-54,-79,-74,-126v0,-16,27,-15,31,-2r59,96v23,-34,41,-73,67,-104v17,-8,28,8,18,24r-69,112r0,105v1,10,-6,17,-16,17","w":180},"\u00de":{"d":"184,-136v0,65,-55,87,-131,80v-2,23,8,58,-16,58v-10,1,-17,-7,-16,-17r0,-227v-1,-10,6,-17,16,-16v20,-1,16,23,16,42v76,-6,131,13,131,80xm152,-136v0,-50,-45,-57,-99,-53r0,105v53,4,99,-2,99,-52","w":186},"\u00df":{"d":"37,2v-9,0,-16,-4,-16,-15r0,-190v1,-46,24,-72,69,-75v70,-5,95,93,44,126v30,9,48,33,48,71v0,46,-24,81,-71,83v-14,1,-21,-5,-21,-15v0,-6,3,-14,12,-13v35,1,46,-22,46,-56v0,-32,-15,-50,-43,-53v-22,-2,-21,-26,0,-29v40,-6,31,-91,-14,-87v-28,3,-38,22,-38,54r0,184v0,11,-7,15,-16,15","w":200},"\u00e0":{"d":"138,-240v9,13,-9,28,-24,18v-17,-11,-46,-11,-54,-30v8,-34,60,4,78,12xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm179,-178r0,165v0,10,-6,14,-14,15v-15,2,-15,-16,-16,-29v-12,17,-28,29,-52,29v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v26,0,38,13,53,26v-7,-27,29,-36,29,-10","w":200},"\u00e1":{"d":"114,-264v15,-9,32,4,24,19v-19,10,-40,21,-64,26v-18,0,-17,-21,-1,-28xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm179,-178r0,165v0,10,-6,14,-14,15v-15,2,-15,-16,-16,-29v-12,17,-28,29,-52,29v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v26,0,38,13,53,26v-7,-27,29,-36,29,-10","w":200},"\u00e2":{"d":"100,-234v-16,5,-50,29,-55,2v6,-22,38,-21,55,-33r47,20v14,5,8,33,-9,26xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm179,-178r0,165v0,10,-6,14,-14,15v-15,2,-15,-16,-16,-29v-12,17,-28,29,-52,29v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v26,0,38,13,53,26v-7,-27,29,-36,29,-10","w":200},"\u00e3":{"d":"154,-244v-7,40,-68,6,-96,22v-6,0,-13,-7,-12,-14v4,-28,49,-23,74,-15v13,-5,33,-13,34,7xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm179,-178r0,165v0,10,-6,14,-14,15v-15,2,-15,-16,-16,-29v-12,17,-28,29,-52,29v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v26,0,38,13,53,26v-7,-27,29,-36,29,-10","w":200},"\u00e4":{"d":"134,-217v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19v11,0,19,9,19,19v0,11,-8,20,-19,20xm67,-217v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19v11,0,19,9,19,19v0,11,-8,20,-19,20xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm179,-178r0,165v0,10,-6,14,-14,15v-15,2,-15,-16,-16,-29v-12,17,-28,29,-52,29v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v26,0,38,13,53,26v-7,-27,29,-36,29,-10","w":200},"\u00e5":{"d":"100,-261v-10,0,-16,7,-16,17v-1,10,6,17,16,16v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17xm100,-210v-20,0,-34,-14,-34,-34v0,-20,14,-34,34,-34v20,0,34,14,34,34v0,20,-14,34,-34,34xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm179,-178r0,165v0,10,-6,14,-14,15v-15,2,-15,-16,-16,-29v-12,17,-28,29,-52,29v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v26,0,38,13,53,26v-7,-27,29,-36,29,-10","w":200},"\u00e6":{"d":"279,-107v8,-62,-85,-81,-98,-21v-2,7,-3,14,-3,21r101,0xm164,2v-14,0,-17,-13,-15,-29v-12,17,-28,29,-52,29v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v25,0,39,11,52,26v-2,-15,3,-25,15,-26v12,0,15,12,16,24v9,-13,28,-24,50,-24v51,0,81,40,81,94v0,12,-4,16,-18,16r-117,0v2,35,22,57,58,58v31,2,40,-19,61,-25v8,0,12,5,12,14v-13,43,-101,51,-128,16v2,14,-4,23,-15,23xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70","w":320},"\u00e7":{"d":"59,52v1,-23,37,6,39,-16v0,-14,-37,1,-23,-23r9,-12v-46,-8,-71,-43,-71,-97v0,-57,28,-96,86,-98v24,0,48,7,51,24v-5,27,-29,4,-51,4v-72,1,-74,141,0,141v18,0,24,-9,38,-11v8,-1,12,5,12,13v-2,18,-23,25,-47,25r-9,13v17,-3,31,5,33,19v4,33,-55,41,-67,18","w":159},"\u00e8":{"d":"121,-247v19,5,14,31,-6,28v-19,-9,-43,-15,-59,-26v-8,-15,6,-26,24,-19xm146,-107v8,-63,-87,-81,-102,-22v-2,7,-3,15,-3,22r105,0xm178,-100v0,12,-4,16,-18,16r-119,0v1,36,21,57,57,59v32,2,43,-18,64,-26v8,0,12,5,12,14v-9,26,-43,39,-77,39v-59,0,-88,-39,-88,-98v0,-56,30,-98,86,-98v54,0,83,41,83,94","w":187},"\u00e9":{"d":"56,-240v18,-10,68,-44,78,-12v-12,20,-43,25,-67,33v-11,1,-16,-13,-11,-21xm146,-107v8,-63,-87,-81,-102,-22v-2,7,-3,15,-3,22r105,0xm178,-100v0,12,-4,16,-18,16r-119,0v1,36,21,57,57,59v32,2,43,-18,64,-26v8,0,12,5,12,14v-9,26,-43,39,-77,39v-59,0,-88,-39,-88,-98v0,-56,30,-98,86,-98v54,0,83,41,83,94","w":187},"\u00ea":{"d":"60,-220v-19,9,-29,-17,-13,-25r47,-20r46,20v14,5,10,31,-8,26v-14,-3,-25,-10,-38,-15xm146,-107v8,-63,-87,-81,-102,-22v-2,7,-3,15,-3,22r105,0xm178,-100v0,12,-4,16,-18,16r-119,0v1,36,21,57,57,59v32,2,43,-18,64,-26v8,0,12,5,12,14v-9,26,-43,39,-77,39v-59,0,-88,-39,-88,-98v0,-56,30,-98,86,-98v54,0,83,41,83,94","w":187},"\u00eb":{"d":"127,-217v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20xm60,-217v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20xm146,-107v8,-63,-87,-81,-102,-22v-2,7,-3,15,-3,22r105,0xm178,-100v0,12,-4,16,-18,16r-119,0v1,36,21,57,57,59v32,2,43,-18,64,-26v8,0,12,5,12,14v-9,26,-43,39,-77,39v-59,0,-88,-39,-88,-98v0,-56,30,-98,86,-98v54,0,83,41,83,94","w":187},"\u00ec":{"d":"64,-247v19,5,14,31,-6,28v-19,-9,-43,-15,-59,-26v-8,-15,6,-26,24,-19xm37,-194v9,0,16,8,16,17r0,162v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-162v0,-10,6,-17,16,-17"},"\u00ed":{"d":"-1,-240v18,-10,68,-44,78,-12v-12,20,-43,25,-67,33v-11,1,-16,-13,-11,-21xm37,-194v9,0,16,8,16,17r0,162v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-162v0,-10,6,-17,16,-17"},"\u00ee":{"d":"3,-220v-19,9,-29,-17,-13,-25r47,-20r46,20v14,5,9,33,-8,26r-38,-15xm37,-194v9,0,16,8,16,17r0,162v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-162v0,-10,6,-17,16,-17"},"\u00ef":{"d":"70,-217v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20xm3,-217v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20xm37,-194v9,0,16,8,16,17r0,162v0,9,-6,17,-16,17v-10,0,-17,-7,-16,-17r0,-162v0,-10,6,-17,16,-17"},"\u00f0":{"d":"97,-163v-70,1,-71,137,0,138v69,-1,70,-138,0,-138xm95,2v-54,0,-78,-42,-82,-96v-6,-77,79,-125,128,-77v-8,-23,-28,-43,-44,-58v-14,4,-41,32,-50,9v5,-13,23,-14,34,-22v-10,-10,-32,-8,-34,-25v-1,-7,5,-11,13,-11v20,2,35,13,49,22v14,-6,27,-17,43,-20v11,-2,12,17,1,19r-28,14v69,44,91,245,-30,245","w":193},"\u00f1":{"d":"96,-225v-20,-13,-49,18,-53,-11v3,-29,49,-22,73,-15v13,-3,34,-15,34,7v0,20,-32,26,-54,19xm37,2v-10,0,-17,-7,-16,-17r0,-162v0,-10,6,-17,16,-17v13,1,17,11,16,26v34,-48,120,-23,120,47r0,106v0,9,-6,17,-16,17v-10,0,-16,-7,-16,-17v0,-60,21,-151,-44,-151v-65,0,-39,92,-44,151v0,9,-6,17,-16,17","w":193},"\u00f2":{"d":"134,-240v9,9,-1,24,-16,21v-19,-9,-43,-15,-59,-26v-8,-15,8,-28,24,-19v16,9,39,12,51,24xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm97,2v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v56,0,84,42,84,98v0,57,-28,98,-84,98","w":193},"\u00f3":{"d":"111,-264v15,-10,33,5,23,19v-18,10,-39,22,-63,26v-17,3,-18,-22,-2,-28xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm97,2v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v56,0,84,42,84,98v0,57,-28,98,-84,98","w":193},"\u00f4":{"d":"97,-234v-16,5,-50,29,-55,2v5,-23,38,-21,55,-33v17,11,48,11,55,33v-4,27,-39,3,-55,-2xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm97,2v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v56,0,84,42,84,98v0,57,-28,98,-84,98","w":193},"\u00f5":{"d":"96,-225v-20,-13,-49,18,-53,-11v3,-29,49,-22,73,-15v13,-3,34,-15,34,7v0,20,-32,26,-54,19xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm97,2v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v56,0,84,42,84,98v0,57,-28,98,-84,98","w":193},"\u00f6":{"d":"130,-217v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20xm63,-217v-11,0,-19,-10,-19,-20v0,-10,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20xm97,-166v-39,0,-53,33,-53,70v0,38,15,71,53,71v37,0,52,-31,52,-71v0,-39,-14,-70,-52,-70xm97,2v-56,0,-84,-41,-84,-98v0,-56,28,-98,84,-98v56,0,84,42,84,98v0,57,-28,98,-84,98","w":193},"\u00f7":{"d":"108,9v-14,0,-26,-12,-26,-26v0,-13,12,-25,26,-25v14,0,26,12,26,25v0,14,-12,26,-26,26xm108,-140v-14,0,-26,-12,-26,-26v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,14,-12,26,-26,26xm199,-91v0,10,-6,14,-15,15r-152,0v-9,-1,-15,-5,-15,-15v0,-10,6,-14,15,-15r152,0v9,1,15,5,15,15","w":216},"\u00f8":{"d":"64,-39v42,37,101,-10,84,-76v-1,-6,-3,-12,-6,-18xm97,-166v-52,-1,-61,64,-46,108r79,-95v-7,-8,-18,-13,-33,-13xm46,-17v-7,9,-27,41,-38,16v3,-11,16,-23,23,-32v-39,-56,-13,-166,66,-161v22,0,40,7,51,19v9,-8,13,-22,26,-25v26,7,-4,32,-11,42v39,56,13,164,-66,160v-22,0,-39,-8,-51,-19","w":193},"\u00f9":{"d":"134,-240v9,9,-1,24,-16,21v-19,-9,-43,-15,-59,-26v-8,-15,8,-28,24,-19v16,9,39,12,51,24xm97,2v-48,0,-76,-26,-76,-76r0,-103v0,-10,6,-17,16,-17v9,0,16,8,16,17v5,59,-21,152,44,152v65,0,44,-93,44,-152v0,-10,6,-17,16,-17v9,0,16,8,16,17r0,103v-2,49,-28,76,-76,76","w":193},"\u00fc":{"d":"130,-217v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20xm63,-217v-11,0,-19,-10,-19,-20v0,-10,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20xm97,2v-48,0,-76,-26,-76,-76r0,-103v0,-10,6,-17,16,-17v9,0,16,8,16,17v5,59,-21,152,44,152v65,0,44,-93,44,-152v0,-10,6,-17,16,-17v9,0,16,8,16,17r0,103v-2,49,-28,76,-76,76","w":193},"\u00fd":{"d":"94,-264v15,-10,33,5,23,19v-18,10,-40,21,-63,26v-17,1,-19,-25,-1,-28xm69,66v-6,22,-36,10,-29,-8r24,-65r-58,-173v0,-17,25,-17,30,-2r45,132v17,-46,27,-99,49,-140v18,-11,31,8,19,27","w":159},"\u00a0":{"w":90}}});





/*
 * jQuery Cycle Plugin (core engine)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);




/*!
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */

(function(i){i.fn.jcarousel=function(a){if(typeof a=="string"){var c=i(this).data("jcarousel"),b=Array.prototype.slice.call(arguments,1);return c[a].apply(c,b)}else return this.each(function(){i(this).data("jcarousel",new h(this,a))})};var p={vertical:false,rtl:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:"normal",easing:"swing",auto:0,wrap:null,initCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null, itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,buttonNextHTML:"<div title='Volgende'></div>",buttonPrevHTML:"<div title='Vorige'></div>",buttonNextEvent:"click",buttonPrevEvent:"click",buttonNextCallback:null,buttonPrevCallback:null,itemFallbackDimension:null},q=false;i(window).bind("load.jcarousel",function(){q=true});i.jcarousel=function(a,c){this.options=i.extend({},p,c||{});this.locked=false;this.buttonPrev=this.buttonNext=this.list=this.clip=this.container=null;if(!c||c.rtl===undefined)this.options.rtl= (i(a).attr("dir")||i("html").attr("dir")||"").toLowerCase()=="rtl";this.wh=!this.options.vertical?"width":"height";this.lt=!this.options.vertical?this.options.rtl?"right":"left":"top";for(var b="",d=a.className.split(" "),e=0;e<d.length;e++)if(d[e].indexOf("jcarousel-skin")!=-1){i(a).removeClass(d[e]);b=d[e];break}if(a.nodeName.toUpperCase()=="UL"||a.nodeName.toUpperCase()=="OL"){this.list=i(a);this.container=this.list.parent();if(this.container.hasClass("jcarousel-clip")){if(!this.container.parent().hasClass("jcarousel-container"))this.container= this.container.wrap("<div></div>");this.container=this.container.parent()}else if(!this.container.hasClass("jcarousel-container"))this.container=this.list.wrap("<div></div>").parent()}else{this.container=i(a);this.list=this.container.find("ul,ol").eq(0)}b!=""&&this.container.parent()[0].className.indexOf("jcarousel-skin")==-1&&this.container.wrap('<div class=" '+b+'"></div>');this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass("jcarousel-clip"))this.clip=this.list.wrap("<div></div>").parent(); this.buttonNext=i(".jcarousel-next",this.container);if(this.buttonNext.size()==0&&this.options.buttonNextHTML!=null)this.buttonNext=this.clip.after(this.options.buttonNextHTML).next();this.buttonNext.addClass(this.className("jcarousel-next"));this.buttonPrev=i(".jcarousel-prev",this.container);if(this.buttonPrev.size()==0&&this.options.buttonPrevHTML!=null)this.buttonPrev=this.clip.after(this.options.buttonPrevHTML).next();this.buttonPrev.addClass(this.className("jcarousel-prev"));this.clip.addClass(this.className("jcarousel-clip")).css({overflow:"hidden", position:"relative"});this.list.addClass(this.className("jcarousel-list")).css({overflow:"hidden",position:"relative",top:0,margin:0,padding:0}).css(this.options.rtl?"right":"left",0);this.container.addClass(this.className("jcarousel-container")).css({position:"relative"});!this.options.vertical&&this.options.rtl&&this.container.addClass("jcarousel-direction-rtl").attr("dir","rtl");var f=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;b=this.list.children("li");var g= this;if(b.size()>0){var j=0;e=this.options.offset;b.each(function(){g.format(this,e++);j+=g.dimension(this,f)});this.list.css(this.wh,j+100+"px");if(!c||c.size===undefined)this.options.size=b.size()}this.container.css("display","block");this.buttonNext.css("display","block");this.buttonPrev.css("display","block");this.funcNext=function(){g.next()};this.funcPrev=function(){g.prev()};this.funcResize=function(){g.reload()};this.options.initCallback!=null&&this.options.initCallback(this,"init");if(!q&& i.browser.safari){this.buttons(false,false);i(window).bind("load.jcarousel",function(){g.setup()})}else this.setup()};var h=i.jcarousel;h.fn=h.prototype={jcarousel:"0.2.5"};h.fn.extend=h.extend=i.extend;h.fn.extend({setup:function(){this.prevLast=this.prevFirst=this.last=this.first=null;this.animating=false;this.tail=this.timer=null;this.inTail=false;if(!this.locked){this.list.css(this.lt,this.pos(this.options.offset)+"px");var a=this.pos(this.options.start);this.prevFirst=this.prevLast=null;this.animate(a, false);i(window).unbind("resize.jcarousel",this.funcResize).bind("resize.jcarousel",this.funcResize)}},reset:function(){this.list.empty();this.list.css(this.lt,"0px");this.list.css(this.wh,"10px");this.options.initCallback!=null&&this.options.initCallback(this,"reset");this.setup()},reload:function(){this.tail!=null&&this.inTail&&this.list.css(this.lt,h.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=false;this.options.reloadCallback!=null&&this.options.reloadCallback(this);if(this.options.visible!= null){var a=this,c=Math.ceil(this.clipping()/this.options.visible),b=0,d=0;this.list.children("li").each(function(e){b+=a.dimension(this,c);if(e+1<a.first)d=b});this.list.css(this.wh,b+"px");this.list.css(this.lt,-d+"px")}this.scroll(this.first,false)},lock:function(){this.locked=true;this.buttons()},unlock:function(){this.locked=false;this.buttons()},size:function(a){if(a!=undefined){this.options.size=a;this.locked||this.buttons()}return this.options.size},has:function(a,c){if(c==undefined||!c)c= a;if(this.options.size!==null&&c>this.options.size)c=this.options.size;for(var b=a;b<=c;b++){var d=this.get(b);if(!d.length||d.hasClass("jcarousel-item-placeholder"))return false}return true},get:function(a){return i(".jcarousel-item-"+a,this.list)},add:function(a,c){var b=this.get(a),d=0,e=i(c);if(b.length==0){var f;b=this.create(a);for(var g=h.intval(a);f=this.get(--g);)if(g<=0||f.length){g<=0?this.list.prepend(b):f.after(b);break}}else d=this.dimension(b);if(e.get(0).nodeName.toUpperCase()=="LI"){b.replaceWith(e); b=e}else b.empty().append(c);this.format(b.removeClass(this.className("jcarousel-item-placeholder")),a);e=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;d=this.dimension(b,e)-d;a>0&&a<this.first&&this.list.css(this.lt,h.intval(this.list.css(this.lt))-d+"px");this.list.css(this.wh,h.intval(this.list.css(this.wh))+d+"px");return b},remove:function(a){var c=this.get(a);if(!(!c.length||a>=this.first&&a<=this.last)){var b=this.dimension(c);a<this.first&&this.list.css(this.lt, h.intval(this.list.css(this.lt))+b+"px");c.remove();this.list.css(this.wh,h.intval(this.list.css(this.wh))-b+"px")}},next:function(){this.stopAuto();this.tail!=null&&!this.inTail?this.scrollTail(false):this.scroll((this.options.wrap=="both"||this.options.wrap=="last")&&this.options.size!=null&&this.last==this.options.size?1:this.first+this.options.scroll)},prev:function(){this.stopAuto();this.tail!=null&&this.inTail?this.scrollTail(true):this.scroll((this.options.wrap=="both"||this.options.wrap== "first")&&this.options.size!=null&&this.first==1?this.options.size:this.first-this.options.scroll)},scrollTail:function(a){if(!(this.locked||this.animating||!this.tail)){var c=h.intval(this.list.css(this.lt));!a?c-=this.tail:c+=this.tail;this.inTail=!a;this.prevFirst=this.first;this.prevLast=this.last;this.animate(c)}},scroll:function(a,c){this.locked||this.animating||this.animate(this.pos(a),c)},pos:function(a){var c=h.intval(this.list.css(this.lt));if(this.locked||this.animating)return c;if(this.options.wrap!= "circular")a=a<1?1:this.options.size&&a>this.options.size?this.options.size:a;for(var b=this.first>a,d=this.options.wrap!="circular"&&this.first<=1?1:this.first,e=b?this.get(d):this.get(this.last),f=b?d:d-1,g=null,j=0,l=false,k=0;b?--f>=a:++f<a;){g=this.get(f);l=!g.length;if(g.length==0){g=this.create(f).addClass(this.className("jcarousel-item-placeholder"));e[b?"before":"after"](g);if(this.first!=null&&this.options.wrap=="circular"&&this.options.size!==null&&(f<=0||f>this.options.size)){e=this.get(this.index(f)); if(e.length)g=this.add(f,e.clone(true))}}e=g;k=this.dimension(g);if(l)j+=k;if(this.first!=null&&(this.options.wrap=="circular"||f>=1&&(this.options.size==null||f<=this.options.size)))c=b?c+k:c-k}d=this.clipping();var o=[],n=0;f=a;var m=0;for(e=this.get(a-1);++n;){g=this.get(f);l=!g.length;if(g.length==0){g=this.create(f).addClass(this.className("jcarousel-item-placeholder"));e.length==0?this.list.prepend(g):e[b?"before":"after"](g);if(this.first!=null&&this.options.wrap=="circular"&&this.options.size!== null&&(f<=0||f>this.options.size)){e=this.get(this.index(f));if(e.length)g=this.add(f,e.clone(true))}}e=g;k=this.dimension(g);if(k==0)throw Error("jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...");if(this.options.wrap!="circular"&&this.options.size!==null&&f>this.options.size)o.push(g);else if(l)j+=k;m+=k;if(m>=d)break;f++}for(g=0;g<o.length;g++)o[g].remove();if(j>0){this.list.css(this.wh,this.dimension(this.list)+j+"px");if(b){c-=j;this.list.css(this.lt,h.intval(this.list.css(this.lt))- j+"px")}}j=a+n-1;if(this.options.wrap!="circular"&&this.options.size&&j>this.options.size)j=this.options.size;if(f>j){n=0;f=j;for(m=0;++n;){g=this.get(f--);if(!g.length)break;m+=this.dimension(g);if(m>=d)break}}f=j-n+1;if(this.options.wrap!="circular"&&f<1)f=1;if(this.inTail&&b){c+=this.tail;this.inTail=false}this.tail=null;if(this.options.wrap!="circular"&&j==this.options.size&&j-n+1>=1){b=h.margin(this.get(j),!this.options.vertical?"marginRight":"marginBottom");if(m-b>d)this.tail=m-d-b}for(;a-- > f;)c+=this.dimension(this.get(a));this.prevFirst=this.first;this.prevLast=this.last;this.first=f;this.last=j;return c},animate:function(a,c){if(!(this.locked||this.animating)){this.animating=true;var b=this,d=function(){b.animating=false;a==0&&b.list.css(b.lt,0);if(b.options.wrap=="circular"||b.options.wrap=="both"||b.options.wrap=="last"||b.options.size==null||b.last<b.options.size)b.startAuto();b.buttons();b.notify("onAfterAnimation");if(b.options.wrap=="circular"&&b.options.size!==null)for(var e= b.prevFirst;e<=b.prevLast;e++)if(e!==null&&!(e>=b.first&&e<=b.last)&&(e<1||e>b.options.size))b.remove(e)};this.notify("onBeforeAnimation");if(!this.options.animation||c==false){this.list.css(this.lt,a+"px");d()}else this.list.animate(!this.options.vertical?this.options.rtl?{right:a}:{left:a}:{top:a},this.options.animation,this.options.easing,d)}},startAuto:function(a){if(a!=undefined)this.options.auto=a;if(this.options.auto==0)return this.stopAuto();if(this.timer==null){var c=this;this.timer=setTimeout(function(){c.next()}, this.options.auto*1E3)}},stopAuto:function(){if(this.timer!=null){clearTimeout(this.timer);this.timer=null}},buttons:function(a,c){if(a==undefined||a==null){a=!this.locked&&this.options.size!==0&&(this.options.wrap&&this.options.wrap!="first"||this.options.size==null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap=="first")&&this.options.size!=null&&this.last>=this.options.size)a=this.tail!=null&&!this.inTail}if(c==undefined||c==null){c=!this.locked&&this.options.size!== 0&&(this.options.wrap&&this.options.wrap!="last"||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=="last")&&this.options.size!=null&&this.first==1)c=this.tail!=null&&this.inTail}var b=this;this.buttonNext[a?"bind":"unbind"](this.options.buttonNextEvent+".jcarousel",this.funcNext)[a?"removeClass":"addClass"](this.className("jcarousel-next-disabled")).attr("disabled",a?false:true);this.buttonPrev[c?"bind":"unbind"](this.options.buttonPrevEvent+".jcarousel",this.funcPrev)[c?"removeClass": "addClass"](this.className("jcarousel-prev-disabled")).attr("disabled",c?false:true);this.options.buttonNextCallback!=null&&this.buttonNext.data("jcarouselstate")!=a&&this.buttonNext.each(function(){b.options.buttonNextCallback(b,this,a)}).data("jcarouselstate",a);this.options.buttonPrevCallback!=null&&this.buttonPrev.data("jcarouselstate")!=c&&this.buttonPrev.each(function(){b.options.buttonPrevCallback(b,this,c)}).data("jcarouselstate",c)},notify:function(a){var c=this.prevFirst==null?"init":this.prevFirst< this.first?"next":"prev";this.callback("itemLoadCallback",a,c);if(this.prevFirst!==this.first){this.callback("itemFirstInCallback",a,c,this.first);this.callback("itemFirstOutCallback",a,c,this.prevFirst)}if(this.prevLast!==this.last){this.callback("itemLastInCallback",a,c,this.last);this.callback("itemLastOutCallback",a,c,this.prevLast)}this.callback("itemVisibleInCallback",a,c,this.first,this.last,this.prevFirst,this.prevLast);this.callback("itemVisibleOutCallback",a,c,this.prevFirst,this.prevLast, this.first,this.last)},callback:function(a,c,b,d,e,f,g){if(!(this.options[a]==undefined||typeof this.options[a]!="object"&&c!="onAfterAnimation")){var j=typeof this.options[a]=="object"?this.options[a][c]:this.options[a];if(i.isFunction(j)){var l=this;if(d===undefined)j(l,b,c);else if(e===undefined)this.get(d).each(function(){j(l,this,d,b,c)});else for(var k=d;k<=e;k++)k!==null&&!(k>=f&&k<=g)&&this.get(k).each(function(){j(l,this,k,b,c)})}}},create:function(a){return this.format("<li></li>",a)},format:function(a, c){a=i(a);for(var b=a.get(0).className.split(" "),d=0;d<b.length;d++)b[d].indexOf("jcarousel-")!=-1&&a.removeClass(b[d]);a.addClass(this.className("jcarousel-item")).addClass(this.className("jcarousel-item-"+c)).css({"float":this.options.rtl?"right":"left","list-style":"none"}).attr("jcarouselindex",c);return a},className:function(a){return a+" "+a+(!this.options.vertical?"-horizontal":"-vertical")},dimension:function(a,c){var b=a.jquery!=undefined?a[0]:a,d=!this.options.vertical?(b.offsetWidth|| h.intval(this.options.itemFallbackDimension))+h.margin(b,"marginLeft")+h.margin(b,"marginRight"):(b.offsetHeight||h.intval(this.options.itemFallbackDimension))+h.margin(b,"marginTop")+h.margin(b,"marginBottom");if(c==undefined||d==c)return d;d=!this.options.vertical?c-h.margin(b,"marginLeft")-h.margin(b,"marginRight"):c-h.margin(b,"marginTop")-h.margin(b,"marginBottom");i(b).css(this.wh,d+"px");return this.dimension(b)},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-h.intval(this.clip.css("borderLeftWidth"))- h.intval(this.clip.css("borderRightWidth")):this.clip[0].offsetHeight-h.intval(this.clip.css("borderTopWidth"))-h.intval(this.clip.css("borderBottomWidth"))},index:function(a,c){if(c==undefined)c=this.options.size;return Math.round(((a-1)/c-Math.floor((a-1)/c))*c)+1}});h.extend({defaults:function(a){return i.extend(p,a||{})},margin:function(a,c){if(!a)return 0;var b=a.jquery!=undefined?a[0]:a;if(c=="marginRight"&&i.browser.safari){var d={display:"block","float":"none",width:"auto"},e,f;i.swap(b,d, function(){e=b.offsetWidth});d.marginRight=0;i.swap(b,d,function(){f=b.offsetWidth});return f-e}return h.intval(i.css(b,c))},intval:function(a){a=parseInt(a);return isNaN(a)?0:a}})})(jQuery);

