/* Created by Martin Hintzmann 2008 martin [a] hintzmann.dk
 * MIT (http://www.opensource.org/licenses/mit-license.php) licensed.
 *
 * Version: 0.2
 * Requires: jQuery 1.2+
 * http://plugins.jquery.com/project/textshadow
 *
 */
(function($) {
	$.fn.textShadow = function(option) {
		if (!$.browser.msie) return;
		var IE6 = $.browser.version < 7;
		return this.each(function() {
			var el = $(this);
			var shadow = el.textShadowParse(this.currentStyle["text-shadow"]);
			shadow = $.extend(shadow, option);

			el.textShadowRemove();

			if (shadow.x == 0 && shadow.y == 0 && shadow.radius == 0) return;

			if (el.css("position")=="static") {
				el.css({position:"relative"});
			}
			el.css({zIndex:"0"});
			if (IE6) {
				el.css({zoom:"1"});
			}
			
			var span=document.createElement("span");
			$(span).addClass("jQueryTextShadow");
			$(span).html(el.html());
			$(span).css({
				padding:		this.currentStyle["padding"],	
				width:		el.width(),
				position:	"absolute",
				zIndex:		"-1",
				color:		shadow.color!=null?shadow.color:el.css("color"),
				left:			(-parseInt(shadow.radius)+parseInt(shadow.x))+"px",
				top:			(-parseInt(shadow.radius)+parseInt(shadow.y))+"px"
			});
			
			if (shadow.radius != 0) {
				if (shadow.opacity != null) {
					$(span).css("filter", "progid:DXImageTransform.Microsoft.Blur(pixelradius="+parseInt(shadow.radius)+", enabled='true', makeShadow='true', ShadowOpacity="+shadow.opacity+")");
				} else {
					$(span).css("filter", "progid:DXImageTransform.Microsoft.Blur(pixelradius="+parseInt(shadow.radius)+", enabled='true')");
				}
			}	
			el.append(span);
		
	  });
	};
	
	$.fn.textShadowParse = function(value) 
	{
		value = String(value)
			.replace(/^\s+|\s+$/gi, '')
			.replace(/\s*!\s*important/i, '')
			.replace(/\(\s*([^,\)]+)\s*,\s*([^,\)]+)\s*,\s*([^,\)]+)\s*,\s*([^\)]+)\s*\)/g, '($1/$2/$3/$4)')
			.replace(/\(\s*([^,\)]+)\s*,\s*([^,\)]+)\s*,\s*([^\)]+)\s*\)/g, '($1/$2/$3)')
	
		var shadow = {
			x      : 0,
			y      : 0,
			radius : 0,
			color  : null
		};

		if (value.length > 1 || value[0].toLowerCase() != 'none') {
			value = value.replace(/\//g, ',');
			var color;
			if ( value.match(/(\#[0-9a-f]{6}|\#[0-9a-f]{3}|(rgb|hsb)a?\([^\)]*\)|\b[a-z]+\b)/i) && (color = RegExp.$1) ) {
				shadow.color = color.replace(/^\s+/, '');
				value = value.replace(shadow.color, '');
			}

			value = value
				.replace(/^\s+|\s+$/g, '')
				.split(/\s+/)
				.map(function(item) {
						return (item || '').replace(/^0[a-z]*$/, '') ? item : 0 ;
					});

			switch (value.length)
			{
				case 1:
					shadow.x = shadow.y = value[0];
					break;
				case 2:
					shadow.x = value[0];
					shadow.y = value[1];
					break;
				case 3:
					shadow.x = value[0];
					shadow.y = value[1];
					shadow.radius = value[2];
					break;
			}
			if ((!shadow.x && !shadow.y && !shadow.radius) || shadow.color == 'transparent') {
				shadow.x = shadow.y = shadow.radius = 0;
				shadow.color = null;
			}
		}

		return shadow;
	};

	$.fn.textShadowRemove = function() {
		if (!$.browser.msie) return;
		return this.each(function() {
			$(this).children("span.jQueryTextShadow").remove();
		});
	};
})(jQuery);

if(typeof Array.prototype.map == 'undefined') {
	Array.prototype.map = function(fnc) {
		var a = new Array(this.length);
		for (var i = 0; i < this.length; i++) {
			a[i] = fnc(this[i]);
		}
		return a;
	}
}


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont({"w":191,"face":{"font-family":"DIN","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"284","descent":"-76","x-height":"2","bbox":"-7 -290 351 75.6069","underline-thickness":"24.9609","underline-position":"-49.5703","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":86},"!":{"d":"88,-256r-8,180r-29,0r-7,-180r44,0xm86,0r-40,0r0,-39r40,0r0,39","w":119},"\"":{"d":"132,-188r-37,0r0,-68r37,0r0,68xm64,-188r-36,0r0,-68r36,0r0,68","w":159},"#":{"d":"224,-153r-33,0r-7,44r28,0r0,34r-33,0r-12,75r-38,0r11,-75r-49,0r-12,75r-38,0r12,-75r-28,0r0,-34r33,0r7,-44r-29,0r0,-34r35,0r11,-71r38,0r-11,71r49,0r11,-71r38,0r-11,71r28,0r0,34xm153,-153r-49,0r-8,44r50,0","w":241},"$":{"d":"39,-134v-44,-43,-9,-126,54,-124r0,-32r29,0r0,32v27,2,50,11,69,29r-25,24v-12,-11,-28,-18,-47,-19r0,77v48,5,81,24,81,74v0,45,-34,71,-78,74r0,40r-29,0r0,-39v-38,-2,-61,-12,-82,-34r26,-25v15,15,35,23,59,24r0,-80v-24,-2,-43,-8,-57,-21xm96,-224v-32,-1,-52,40,-29,63v8,7,17,11,29,12r0,-75xm119,-33v48,4,58,-71,12,-75r-12,-2r0,77","w":218},"%":{"d":"232,-133v43,0,50,37,50,86v0,29,-21,49,-50,49v-44,0,-54,-37,-51,-85v2,-29,21,-50,51,-50xm226,-256r-120,256r-30,0r121,-256r29,0xm71,-259v43,0,55,37,51,86v-2,29,-21,49,-51,49v-44,0,-50,-37,-50,-86v0,-29,22,-49,50,-49xm232,-22v28,0,23,-33,23,-60v0,-17,-8,-26,-23,-26v-28,0,-23,33,-23,60v0,17,8,26,23,26xm71,-149v28,0,23,-32,23,-59v0,-17,-8,-26,-23,-26v-27,0,-22,34,-22,60v0,17,7,25,22,25","w":303},"&":{"d":"172,-201v0,25,-29,47,-46,58r54,65v9,-12,14,-30,14,-52r35,0v-1,34,-9,61,-25,79r42,51r-47,0r-21,-25v-50,48,-157,32,-153,-49v2,-39,24,-55,50,-73v-41,-30,-31,-111,36,-111v35,0,61,24,61,57xm111,-226v-34,4,-30,37,-5,60v12,-7,31,-22,31,-35v0,-14,-11,-27,-26,-25xm61,-75v0,49,66,56,95,24r-61,-72v-19,12,-34,21,-34,48","w":262},"'":{"d":"64,-188r-36,0r0,-68r36,0r0,68","w":92},"(":{"d":"93,9r-24,25v-18,-21,-41,-34,-38,-76v8,-88,-26,-206,38,-248r24,25v-14,13,-28,24,-25,53v7,75,-22,183,25,221","w":113},")":{"d":"46,-290v27,28,38,32,38,76v0,70,11,160,-9,214v-3,8,-14,19,-29,34r-25,-25v12,-15,27,-23,25,-53v-7,-75,21,-183,-25,-221","w":113},"*":{"d":"153,-168r-14,24r-40,-25r2,47r-27,0r1,-47r-40,25r-13,-24r41,-22r-41,-22r13,-24r40,25r-1,-46r27,0r-2,46r40,-25r14,24r-42,22","w":174},"+":{"d":"174,-81r-61,0r0,61r-34,0r0,-61r-61,0r0,-34r61,0r0,-60r34,0r0,60r61,0r0,34"},",":{"d":"70,21r-42,35r0,-98r42,0r0,63","w":97},"-":{"d":"129,-83r-105,0r0,-34r105,0r0,34","w":153},".":{"d":"72,0r-44,0r0,-44r44,0r0,44","w":99},"\/":{"d":"138,-283r-103,310r-35,0r103,-310r35,0","w":136},"0":{"d":"96,-258v42,0,74,30,74,73r0,114v1,43,-32,73,-74,73v-42,0,-74,-30,-74,-73r0,-114v-1,-43,32,-73,74,-73xm96,-31v60,-2,32,-97,37,-153v2,-24,-14,-42,-37,-42v-59,0,-32,97,-37,154v-2,24,14,42,37,41"},"1":{"d":"128,0r-37,0r0,-216r-50,44r0,-41r50,-43r37,0r0,256"},"2":{"d":"98,-258v69,0,91,77,50,127r-81,98r105,0r0,33r-149,0r0,-33r98,-120v25,-24,16,-74,-23,-73v-23,0,-38,16,-38,40r-37,0v-1,-43,32,-72,75,-72"},"3":{"d":"94,-259v70,0,103,97,42,126v24,11,36,31,36,61v0,70,-86,94,-134,56v-15,-12,-22,-30,-23,-54r37,0v1,24,18,39,42,39v24,0,42,-17,41,-42v-1,-29,-17,-44,-49,-42r0,-32v28,2,45,-12,45,-39v0,-24,-15,-40,-37,-40v-23,0,-37,15,-39,37r-37,0v1,-41,34,-70,76,-70"},"4":{"d":"179,-39r-27,0r0,39r-36,0r0,-39r-103,0r0,-34r90,-183r40,0r-90,183r63,0r0,-60r36,0r0,60r27,0r0,34"},"5":{"d":"136,-86v7,-54,-60,-71,-74,-30r-34,0r0,-140r139,0r0,32r-105,0r0,68v9,-10,23,-15,42,-15v49,1,63,34,68,85v8,81,-80,112,-130,69v-12,-10,-17,-28,-19,-49r36,0v3,24,16,35,38,35v29,0,34,-21,39,-55"},"6":{"d":"82,-146v48,-17,90,22,90,70v0,45,-31,79,-76,78v-71,0,-89,-74,-57,-139r59,-119r39,0xm96,-31v25,0,39,-18,39,-44v0,-25,-15,-45,-39,-45v-25,0,-39,19,-39,45v0,26,14,44,39,44"},"7":{"d":"175,-224r-85,224r-40,0r86,-224r-78,0r0,41r-35,0r0,-73r152,0r0,32"},"8":{"d":"96,-258v69,-7,104,92,44,125v65,34,32,135,-44,135v-44,0,-79,-28,-79,-74v0,-26,12,-47,35,-61v-60,-33,-26,-133,44,-125xm96,-148v21,0,38,-17,38,-38v0,-21,-17,-40,-38,-40v-22,0,-38,19,-38,40v0,22,16,39,38,38xm96,-31v23,0,42,-19,42,-42v0,-24,-18,-43,-42,-43v-24,0,-42,19,-42,43v0,23,19,42,42,42"},"9":{"d":"96,-258v72,0,89,74,57,139r-59,119r-39,0r55,-110v-48,17,-90,-21,-90,-70v0,-46,31,-78,76,-78xm96,-137v25,0,39,-18,39,-44v0,-26,-14,-45,-39,-45v-25,0,-39,19,-39,45v-1,26,14,44,39,44"},":":{"d":"81,-103r-44,0r0,-44r44,0r0,44xm81,0r-44,0r0,-44r44,0r0,44","w":108},";":{"d":"81,-103r-44,0r0,-44r44,0r0,44xm80,21r-42,35r0,-98r42,0r0,63","w":108},"<":{"d":"351,-82r-268,0r124,123r-47,0r-141,-141r141,-141r47,0r-124,124r268,0r0,35","w":369},"=":{"d":"174,-118r-156,0r0,-34r156,0r0,34xm174,-48r-156,0r0,-34r156,0r0,34"},">":{"d":"351,-100r-141,141r-47,0r124,-123r-268,0r0,-35r268,0r-124,-124r47,0","w":369},"?":{"d":"97,-258v59,0,95,65,55,112v-12,22,-36,34,-34,70r-37,0v-6,-54,47,-70,52,-114v2,-20,-17,-36,-36,-36v-21,0,-34,17,-35,37r-36,0v0,-40,30,-69,71,-69xm120,0r-41,0r0,-39r41,0r0,39","w":183},"@":{"d":"106,-257v79,-3,136,8,136,84r0,174r-35,-1r0,-18v-43,46,-122,8,-109,-66v-12,-75,63,-112,109,-67v4,-45,-10,-74,-52,-74v-52,0,-101,-1,-96,52v5,52,-17,129,18,152r-26,25v-45,-26,-25,-111,-28,-177v-3,-55,28,-82,83,-84xm170,-29v31,0,37,-23,37,-55v0,-33,-6,-55,-37,-56v-31,0,-36,23,-36,56v0,33,5,55,36,55","w":264},"A":{"d":"222,0r-41,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0xm152,-85r-38,-113r-41,113r79,0","w":225},"B":{"d":"176,-132v22,8,38,29,38,60v0,45,-32,73,-77,72r-104,0r0,-256r100,0v77,-11,104,98,43,124xm72,-148v45,0,100,8,100,-37v0,-45,-56,-35,-100,-36r0,73xm72,-35v47,0,104,9,104,-39v0,-48,-57,-39,-104,-39r0,78","w":238},"C":{"d":"116,-33v30,2,47,-18,52,-44r40,0v-6,47,-41,79,-92,79v-80,0,-102,-75,-91,-165v-8,-85,94,-122,152,-75v17,13,27,33,31,58r-40,0v-6,-25,-23,-44,-52,-44v-47,0,-53,35,-53,96v0,61,5,92,53,95","w":226},"D":{"d":"123,-256v70,0,93,49,93,126v0,88,-20,130,-93,130r-90,0r0,-256r90,0xm72,-35v59,4,104,-3,104,-62v0,-60,5,-129,-56,-124r-48,0r0,186","w":239},"E":{"d":"197,0r-164,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35","w":216},"F":{"d":"197,-221r-125,0r0,78r107,0r0,35r-107,0r0,108r-39,0r0,-256r164,0r0,35","w":210},"G":{"d":"116,-33v37,0,60,-28,55,-72r-55,0r0,-34r94,0v9,85,-23,141,-94,141v-80,0,-102,-75,-91,-165v-9,-86,98,-122,155,-73v17,14,26,34,30,57r-40,0v-5,-27,-24,-47,-54,-45v-46,3,-53,36,-53,96v0,61,5,95,53,95","w":233},"H":{"d":"215,0r-39,0r0,-112r-104,0r0,112r-39,0r0,-256r39,0r0,109r104,0r0,-109r39,0r0,256","w":248},"I":{"d":"72,0r-39,0r0,-256r39,0r0,256","w":105},"J":{"d":"31,-48v25,31,83,12,83,-36r0,-172r38,0r0,175v7,78,-99,109,-147,58","w":182},"K":{"d":"233,0r-45,0r-72,-126r-44,51r0,75r-39,0r0,-256r39,0r0,129r105,-129r48,0r-84,100","w":236},"L":{"d":"196,0r-163,0r0,-256r39,0r0,221r124,0r0,35","w":206},"M":{"d":"259,0r-38,0r0,-171r-59,125r-29,0r-61,-125r0,171r-39,0r0,-256r39,0r75,159r74,-159r38,0r0,256","w":292},"N":{"d":"226,0r-35,0r-119,-180r0,180r-39,0r0,-256r36,0r119,180r0,-180r38,0r0,256","w":259},"O":{"d":"116,-258v66,0,102,51,92,130v9,79,-25,130,-92,130v-80,0,-91,-74,-91,-165v0,-59,38,-94,91,-95xm116,-33v45,-5,53,-33,53,-95v0,-62,-7,-91,-53,-96v-47,4,-53,36,-53,96v0,61,6,90,53,95","w":232},"P":{"d":"131,-256v47,-1,82,32,82,77v0,68,-64,86,-141,78r0,101r-39,0r0,-256r98,0xm72,-136v49,1,102,7,102,-43v0,-48,-53,-43,-102,-42r0,85","w":226},"Q":{"d":"208,-163v-1,48,6,101,-16,128r25,25r-22,22r-25,-26v-61,40,-145,2,-145,-80r0,-69v0,-59,38,-95,91,-95v53,0,94,36,92,95xm63,-128v0,72,25,111,80,87r-27,-27r21,-22r25,25v5,-10,7,-31,7,-63v0,-62,-7,-91,-53,-96v-47,4,-53,36,-53,96","w":232},"R":{"d":"212,-181v0,36,-22,60,-51,67r59,114r-45,0r-54,-108r-49,0r0,108r-39,0r0,-256r100,0v45,-1,79,30,79,75xm72,-141v47,0,102,7,102,-40v0,-47,-55,-41,-102,-40r0,80","w":235},"S":{"d":"160,-205v-26,-29,-103,-29,-103,20v0,54,90,30,116,59v12,14,21,30,21,53v0,86,-139,96,-183,41r26,-25v26,31,117,39,118,-15v2,-58,-89,-30,-117,-62v-43,-49,-5,-124,67,-124v32,0,59,10,80,29","w":212},"T":{"d":"191,-221r-71,0r0,221r-39,0r0,-221r-70,0r0,-35r180,0r0,35","w":201},"U":{"d":"121,-33v32,0,55,-22,54,-55r0,-168r38,0r0,170v1,52,-40,88,-92,88v-52,0,-92,-36,-91,-88r0,-170r39,0r0,168v-1,33,21,55,52,55","w":242},"V":{"d":"201,-256r-85,256r-30,0r-84,-256r40,0r59,186r59,-186r41,0","w":202},"W":{"d":"310,-256r-67,256r-34,0r-53,-180r-51,180r-34,0r-67,-256r41,0r45,183r51,-183r31,0r52,183r45,-183r41,0","w":313},"X":{"d":"205,0r-45,0r-56,-98r-56,98r-44,0r79,-131r-74,-125r44,0r51,91r50,-91r45,0r-74,125","w":207},"Y":{"d":"194,-256r-77,151r0,105r-39,0r0,-105r-76,-151r42,0r54,112r54,-112r42,0","w":195},"Z":{"d":"181,0r-164,0r0,-33r119,-188r-114,0r0,-35r159,0r0,31r-119,190r119,0r0,35","w":198},"[":{"d":"109,27r-78,0r0,-310r78,0r0,33r-41,0r0,244r41,0r0,33","w":124},"\\":{"d":"137,27r-35,0r-102,-307r35,0","w":136},"]":{"d":"94,27r-79,0r0,-33r43,0r0,-245r-43,0r0,-32r79,0r0,310","w":124},"^":{"d":"181,-144r-38,0r-40,-75r-41,75r-38,0r62,-115r34,0","w":205},"_":{"d":"206,62r-206,0r0,-25r206,0r0,25","w":205},"`":{"d":"109,-216r-28,0r-40,-58r41,0","w":180},"a":{"d":"127,-106v13,-53,-60,-59,-80,-30r-24,-23v31,-44,140,-33,140,37r0,122r-36,0r0,-17v-30,36,-112,21,-112,-37v0,-52,56,-55,112,-52xm85,-28v33,0,45,-16,42,-53v-34,1,-78,-7,-76,27v0,17,12,26,34,26","w":190},"b":{"d":"114,-185v51,0,65,34,65,94v0,60,-14,91,-65,93v-20,0,-37,-7,-49,-21r0,19r-36,0r0,-256r37,0r0,92v11,-14,27,-21,48,-21xm104,-31v33,0,38,-26,38,-60v0,-34,-5,-61,-38,-61v-33,0,-38,27,-38,61v0,34,5,60,38,60","w":198},"c":{"d":"57,-91v-9,57,53,77,79,43r25,24v-50,54,-152,19,-141,-67v-10,-86,90,-122,141,-68r-25,24v-28,-34,-89,-14,-79,44","w":174},"d":{"d":"20,-91v0,-60,14,-94,65,-94v20,0,37,7,48,21r0,-92r37,0r0,256r-36,0r0,-19v-12,14,-28,21,-48,21v-52,-2,-66,-33,-66,-93xm95,-31v33,0,38,-25,38,-60v0,-35,-4,-61,-38,-61v-33,0,-38,27,-38,61v0,34,5,60,38,60","w":198},"e":{"d":"97,-185v54,0,83,44,78,104r-119,0v-7,53,65,65,91,33r23,22v-19,18,-34,28,-68,28v-54,-1,-82,-32,-82,-93v0,-54,26,-94,77,-94xm138,-106v7,-47,-59,-66,-77,-25v-3,7,-5,15,-5,25r82,0","w":193},"f":{"d":"35,-179v-6,-55,15,-86,73,-79r0,31v-20,-1,-36,0,-36,21r0,27r36,0r0,28r-36,0r0,151r-37,0r0,-151r-21,0r0,-28r21,0","w":117},"g":{"d":"20,-95v0,-53,15,-89,65,-90v20,0,36,8,48,22r0,-19r35,0r0,181v6,74,-95,100,-142,53r23,-24v27,31,87,17,83,-30r0,-23v-12,14,-28,21,-47,21v-50,0,-65,-38,-65,-91xm95,-37v31,-1,37,-25,37,-58v0,-32,-6,-56,-37,-57v-32,0,-38,26,-38,57v0,31,5,58,38,58","w":197},"h":{"d":"66,-164v36,-43,110,-16,110,46r0,118r-36,0v-6,-56,23,-152,-37,-152v-60,0,-30,96,-37,152r-37,0r0,-256r37,0r0,92","w":203},"i":{"d":"67,-219r-39,0r0,-38r39,0r0,38xm66,0r-37,0r0,-182r37,0r0,182","w":94},"j":{"d":"67,-219r-39,0r0,-38r39,0r0,38xm-7,43v21,1,36,0,36,-21r0,-204r37,0r0,206v0,39,-29,55,-73,51r0,-32","w":94},"k":{"d":"189,0r-45,0r-51,-84r-27,30r0,54r-37,0r0,-256r37,0r0,158r71,-84r44,0r-63,71","w":197},"l":{"d":"65,-53v-2,21,15,24,36,22r0,31v-44,4,-73,-11,-73,-50r0,-206r37,0r0,203","w":111},"m":{"d":"166,-158v35,-49,122,-28,122,41r0,117r-36,0v-6,-56,22,-152,-37,-152v-61,0,-31,96,-38,152r-37,0v-7,-56,23,-151,-36,-152v-61,-1,-31,95,-38,152r-37,0r0,-182r36,0r0,18v24,-30,83,-28,101,6","w":315},"n":{"d":"65,-164v37,-42,112,-18,112,47r0,117r-37,0v-7,-56,23,-151,-36,-152v-61,-1,-31,95,-38,152r-37,0r0,-182r36,0r0,18","w":204},"o":{"d":"96,-185v52,0,77,35,77,94v0,59,-24,93,-77,93v-51,0,-76,-35,-76,-93v0,-58,25,-94,76,-94xm96,-31v32,0,40,-21,40,-60v0,-40,-9,-61,-40,-61v-31,0,-39,22,-39,61v0,39,8,60,39,60","w":193},"p":{"d":"114,-185v51,0,65,34,65,94v0,60,-14,91,-65,93v-20,0,-36,-7,-48,-21r0,93r-37,0r0,-256r36,0r0,19v12,-14,29,-22,49,-22xm104,-31v33,0,38,-26,38,-60v0,-34,-5,-61,-38,-61v-33,0,-38,27,-38,61v0,34,5,60,38,60","w":198},"q":{"d":"20,-91v0,-61,15,-94,66,-94v20,0,36,8,48,22r0,-19r36,0r0,256r-37,0r0,-93v-12,14,-28,21,-48,21v-51,-2,-65,-33,-65,-93xm95,-31v33,0,38,-25,38,-60v0,-35,-4,-61,-38,-61v-33,0,-38,27,-38,61v0,34,5,60,38,60","w":198},"r":{"d":"65,-163v16,-26,71,-30,92,-4r-27,27v-24,-26,-64,-7,-64,29r0,111r-37,0r0,-182r36,0r0,19","w":157},"s":{"d":"134,-141v-17,-16,-76,-23,-78,10v-1,24,32,22,54,24v36,4,54,20,54,51v0,70,-116,72,-152,32r24,-24v16,23,88,31,92,-6v3,-24,-30,-23,-53,-24v-36,-3,-55,-20,-55,-51v0,-63,102,-70,137,-35","w":179},"t":{"d":"105,0v-43,5,-72,-14,-72,-51r0,-100r-20,0r0,-28r20,0r0,-56r37,0r0,56r35,0r0,28r-35,0r0,98v-1,20,14,24,35,22r0,31","w":123},"u":{"d":"101,-31v60,0,32,-95,38,-151r36,0r0,182r-36,0r0,-18v-38,42,-112,15,-112,-48r0,-116r37,0v6,56,-23,151,37,151","w":204},"v":{"d":"167,-182r-67,182r-30,0r-67,-182r39,0r43,128r43,-128r39,0","w":169},"w":{"d":"265,-182r-57,182r-32,0r-42,-127r-43,127r-32,0r-56,-182r39,0r35,128r43,-128r28,0r42,128r35,-128r40,0","w":267},"x":{"d":"173,0r-44,0r-38,-62r-39,62r-44,0r63,-93r-60,-89r44,0r36,59r35,-59r45,0r-60,89","w":181},"y":{"d":"167,-182r-81,218v-7,27,-29,39,-65,36r0,-33v36,6,37,-24,45,-48r-63,-173r39,0r43,128r43,-128r39,0","w":168},"z":{"d":"152,0r-137,0r0,-29r91,-121r-86,0r0,-32r132,0r0,29r-92,120r92,0r0,33","w":168},"{":{"d":"66,-128v61,19,-22,137,64,122r0,33v-47,3,-77,-7,-77,-51v0,-39,16,-97,-37,-88r0,-32v81,15,-10,-149,89,-139r25,0r0,33v-26,0,-40,-2,-40,28v0,38,9,87,-24,94","w":146},"|":{"d":"79,27r-36,0r0,-310r36,0r0,310","w":121},"}":{"d":"93,-233v0,39,-16,97,37,89r0,32v-80,-13,9,147,-88,139r-26,0r0,-33v27,1,41,0,41,-28v0,-38,-9,-88,24,-94v-33,-7,-24,-55,-24,-94v0,-28,-14,-29,-41,-28r0,-33v46,-4,77,7,77,50","w":146},"~":{"d":"69,-129v27,-1,77,43,99,5r23,23v-18,17,-26,27,-53,28v-27,1,-77,-41,-99,-4r-24,-24v18,-17,27,-27,54,-28","w":206},"\u00a0":{"w":86}}});

