// IE5.5+ PNG Alpha Fix v2.0 Alpha: Background Tiling Support
// (c) 2008-2009 Angus Turnbull http://www.twinhelix.com

// This is licensed under the GNU LGPL, version 2.1 or later.
// For details, see: http://creativecommons.org/licenses/LGPL/2.1/

var IEPNGFix = window.IEPNGFix || {};

IEPNGFix.tileBG = function(elm, pngSrc, ready) {
	// Params: A reference to a DOM element, the PNG src file pathname, and a
	// hidden "ready-to-run" passed when called back after image preloading.

	var data = this.data[elm.uniqueID],
		elmW = Math.max(elm.clientWidth, elm.scrollWidth),
		elmH = Math.max(elm.clientHeight, elm.scrollHeight),
		bgX = elm.currentStyle.backgroundPositionX,
		bgY = elm.currentStyle.backgroundPositionY,
		bgR = elm.currentStyle.backgroundRepeat;

	// Cache of DIVs created per element, and image preloader/data.
	if (!data.tiles) {
		data.tiles = {
			elm: elm,
			src: '',
			cache: [],
			img: new Image(),
			old: {}
		};
	}
	var tiles = data.tiles,
		pngW = tiles.img.width,
		pngH = tiles.img.height;

	if (pngSrc) {
		if (!ready && pngSrc != tiles.src) {
			// New image? Preload it with a callback to detect dimensions.
			tiles.img.onload = function() {
				this.onload = null;
				IEPNGFix.tileBG(elm, pngSrc, 1);
			};
			return tiles.img.src = pngSrc;
		}
	} else {
		// No image?
		if (tiles.src) ready = 1;
		pngW = pngH = 0;
	}
	tiles.src = pngSrc;

	if (!ready && elmW == tiles.old.w && elmH == tiles.old.h &&
		bgX == tiles.old.x && bgY == tiles.old.y && bgR == tiles.old.r) {
		return;
	}

	// Convert English and percentage positions to pixels.
	var pos = {
			top: '0%',
			left: '0%',
			center: '50%',
			bottom: '100%',
			right: '100%'
		},
		x,
		y,
		pc;
	x = pos[bgX] || bgX;
	y = pos[bgY] || bgY;
	if (pc = x.match(/(\d+)%/)) {
		x = Math.round((elmW - pngW) * (parseInt(pc[1]) / 100));
	}
	if (pc = y.match(/(\d+)%/)) {
		y = Math.round((elmH - pngH) * (parseInt(pc[1]) / 100));
	}
	x = parseInt(x);
	y = parseInt(y);

	// Handle backgroundRepeat.
	var repeatX = { 'repeat': 1, 'repeat-x': 1 }[bgR],
		repeatY = { 'repeat': 1, 'repeat-y': 1 }[bgR];
	if (repeatX) {
		x %= pngW;
		if (x > 0) x -= pngW;
	}
	if (repeatY) {
		y %= pngH;
		if (y > 0) y -= pngH;
	}

	// Go!
	this.hook.enabled = 0;
	if (!({ relative: 1, absolute: 1 }[elm.currentStyle.position])) {
		elm.style.position = 'relative';
	}
	var count = 0,
		xPos,
		maxX = repeatX ? elmW : x + 0.1,
		yPos,
		maxY = repeatY ? elmH : y + 0.1,
		d,
		s,
		isNew;
	if (pngW && pngH) {
		for (xPos = x; xPos < maxX; xPos += pngW) {
			for (yPos = y; yPos < maxY; yPos += pngH) {
				isNew = 0;
				if (!tiles.cache[count]) {
					tiles.cache[count] = document.createElement('div');
					isNew = 1;
				}
				var clipR = Math.max(0, xPos + pngW > elmW ? elmW - xPos : pngW),
					clipB = Math.max(0, yPos + pngH > elmH ? elmH - yPos : pngH);
				d = tiles.cache[count];
				s = d.style;
				s.behavior = 'none';
				s.left = (xPos - parseInt(elm.currentStyle.paddingLeft)) + 'px';
				s.top = yPos + 'px';
				s.width = clipR + 'px';
				s.height = clipB + 'px';
				s.clip = 'rect(' +
					(yPos < 0 ? 0 - yPos : 0) + 'px,' +
					clipR + 'px,' +
					clipB + 'px,' +
					(xPos < 0 ? 0 - xPos : 0) + 'px)';
				s.display = 'block';
				if (isNew) {
					s.position = 'absolute';
					s.zIndex = -999;
					if (elm.firstChild) {
						elm.insertBefore(d, elm.firstChild);
					} else {
						elm.appendChild(d);
					}
				}
				this.fix(d, pngSrc, 0);
				count++;
			}
		}
	}
	while (count < tiles.cache.length) {
		this.fix(tiles.cache[count], '', 0);
		tiles.cache[count++].style.display = 'none';
	}

	this.hook.enabled = 1;

	// Cache so updates are infrequent.
	tiles.old = {
		w: elmW,
		h: elmH,
		x: bgX,
		y: bgY,
		r: bgR
	};
};


IEPNGFix.update = function() {
	// Update all PNG backgrounds.
	for (var i in IEPNGFix.data) {
		var t = IEPNGFix.data[i].tiles;
		if (t && t.elm && t.src) {
			IEPNGFix.tileBG(t.elm, t.src);
		}
	}
};
IEPNGFix.update.timer = 0;

if (window.attachEvent && !window.opera) {
	window.attachEvent('onresize', function() {
		clearTimeout(IEPNGFix.update.timer);
		IEPNGFix.update.timer = setTimeout(IEPNGFix.update, 100);
	});
}

// CUFON

/*
 * 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:
 * Digitized data copyright The Monotype Corporation 1991-1995. All rights
 * reserved. Monotype Corsiva is a trademark of The Monotype Corporation which may
 * be registered in certain jurisdictions.
 * 
 * Trademark:
 * Monotype Corsiva is a trademark of The Monotype Corporation which may be
 * registered in certain jurisdictions.
 * 
 * Description:
 * An italic typeface made in the style of the early Italian cursives, as
 * exemplified by the work of the writing master Ludovico degli Arrighi in the
 * sixteenth century. The capitals are of swash design, with characteristic
 * flourishes, designed primarily for use as initial letters. Corsiva can be used
 * for short text passages in advertising but is best used to add sparkle to
 * invitations, greeting cards and menus, and to give a sense of occasion to
 * certificates and awards.
 * 
 * Manufacturer:
 * Monotype Typography, Inc.
 * 
 * Designer:
 * Monotype Type Drawing Office - Patricia Saunders
 * 
 * Vendor URL:
 * http://www.monotype.com/html/mtname/ms_welcome.html
 * 
 * License information:
 * http://www.monotype.com/html/type/license.html
 */
Cufon.registerFont({"w":223,"face":{"font-family":"Monotype Corsiva","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"3 1 1 1 1 2 1 1 1 1","ascent":"288","descent":"-72","x-height":"5","cap-height":"3","bbox":"-67 -327 371.74 109","underline-thickness":"17.9297","underline-position":"-34.2773","slope":"-14.1","unicode-range":"U+0020-U+01FF"},"glyphs":{" ":{"w":79},"!":{"d":"82,-200v0,-10,36,-22,31,-2r-37,144r-10,0v8,-56,13,-103,16,-142xm47,-12v-4,-24,35,-38,36,-8v4,26,-34,34,-36,8","w":100},"\"":{"d":"120,-206v13,-10,20,0,13,15v-10,25,-15,56,-30,76v-3,0,-5,-2,-4,-5v7,-27,10,-64,21,-86xm74,-206v13,-11,20,0,13,15v-12,24,-16,54,-29,76v-3,0,-5,-2,-4,-5v7,-27,8,-65,20,-86","w":79},"#":{"d":"84,-5r20,-61r-43,0r6,-20r43,0r14,-42r-43,0r6,-20r43,0r19,-59r20,0r-19,59r40,0r19,-59r21,0r-19,59r43,0r-7,20r-43,0r-13,42r43,0r-7,20r-43,0r-19,61r-21,0r20,-61r-40,0r-20,61r-20,0xm130,-86r40,0r14,-42r-40,0","w":244},"$":{"d":"31,-12v0,-27,29,2,48,0r21,-84v-49,-30,-21,-107,28,-112r7,-26r11,0r-6,25v24,-5,50,22,25,31v-10,0,-18,-14,-28,-16r-20,75v54,32,26,116,-30,121r-12,45r-11,0r11,-43v-20,2,-44,1,-44,-16xm125,-195v-32,6,-45,44,-17,67xm90,-12v38,-4,55,-52,20,-76","w":158},"%":{"d":"86,1r116,-212v3,1,8,2,15,3v-42,68,-78,139,-116,211xm58,-136v0,-32,22,-76,55,-75v21,0,33,17,33,39v0,34,-22,74,-55,74v-21,1,-33,-18,-33,-38xm124,-176v0,-13,-3,-26,-13,-27v-19,2,-30,45,-30,71v0,14,3,25,14,26v20,-5,29,-46,29,-70xm157,-35v0,-32,22,-75,55,-75v21,0,33,17,33,39v0,34,-23,73,-55,74v-20,0,-33,-17,-33,-38xm193,-5v25,-8,38,-64,25,-92v-2,-4,-5,-5,-8,-5v-24,3,-48,82,-17,97","w":244},"&":{"d":"303,-248v17,4,12,28,-1,37v-9,6,-21,10,-37,11v-24,57,-27,142,-72,173v24,23,29,35,59,38v25,2,40,-19,29,-42v0,-6,4,-11,10,-11v7,1,12,6,12,14v1,27,-28,54,-57,52v-37,-3,-40,-15,-65,-41v-51,47,-140,14,-140,-55v0,-41,35,-78,75,-76v48,3,42,42,-3,50v32,13,46,32,72,61v34,-39,35,-121,66,-163v-46,-2,-70,13,-59,53v0,5,-5,10,-10,10v-7,0,-11,-8,-11,-16v3,-52,49,-68,111,-61v25,3,2,-33,21,-34xm174,-28v-40,-49,-40,-51,-91,-74r0,-3v25,0,40,0,42,-18v0,-8,-7,-15,-16,-14v-25,-1,-46,27,-46,51v0,49,63,88,111,58","w":280},"'":{"d":"86,-206v13,-11,20,0,13,15v-12,24,-16,54,-29,76v-3,0,-5,-2,-4,-5v7,-27,8,-65,20,-86","w":57},"(":{"d":"33,-31v0,-106,58,-180,134,-217v2,0,4,1,4,4v-63,40,-119,121,-121,226v-1,43,16,80,26,106v0,2,-1,4,-3,4v-24,-22,-40,-77,-40,-123","w":93},")":{"d":"112,-126v0,107,-59,181,-134,218v-2,0,-3,-1,-3,-4v61,-42,118,-122,120,-227v1,-43,-16,-80,-26,-106v0,-2,1,-3,3,-3v25,21,40,77,40,122","w":79},"*":{"d":"116,-248v2,14,6,28,11,42v15,3,23,0,44,-2v1,3,1,5,2,8v-14,8,-26,16,-37,25v4,12,9,25,17,39v-2,2,-5,4,-7,6v-12,-10,-24,-19,-35,-27v-10,6,-22,15,-35,27v-3,-2,-5,-4,-7,-6v7,-14,13,-28,17,-39v-12,-9,-25,-18,-37,-25v1,-3,2,-5,3,-8v20,3,27,2,43,2v5,-15,9,-29,11,-42r10,0xm130,-184v1,-10,-9,-19,-19,-18v-9,-1,-18,9,-18,18v0,9,9,19,18,18v10,1,20,-8,19,-18","w":151},"+":{"d":"116,-113r0,-68r20,0r0,68r68,0r0,19r-68,0r0,69r-20,0r0,-69r-68,0r0,-19r68,0","w":187},",":{"d":"44,-37v33,6,12,51,-3,65v-11,10,-20,20,-31,27r-3,-12v14,-11,26,-21,30,-37v-5,-14,-18,-40,7,-43","w":79},"-":{"d":"34,-81r81,0r-4,18r-81,0","w":100},"\u00ad":{"d":"34,-81r81,0r-4,18r-81,0","w":100},".":{"d":"26,-12v-4,-24,35,-37,36,-8v4,26,-35,34,-36,8","w":79},"\/":{"d":"-4,68r174,-311r18,0r-174,311r-18,0","w":122},"0":{"d":"37,-66v2,-65,28,-145,87,-145v38,0,55,31,55,74v0,60,-36,142,-90,142v-33,0,-53,-33,-52,-71xm95,-5v48,-15,64,-129,44,-184v-5,-7,-11,-11,-19,-11v-41,8,-50,90,-52,141v-1,29,7,51,27,54","w":158},"1":{"d":"73,-167v47,-24,51,-23,77,-46r6,0r-47,198v1,10,21,6,32,10r-4,9v-48,-5,-59,-6,-100,0v0,-17,33,-10,40,-21v18,-29,33,-114,40,-149v-7,-15,-13,0,-40,8","w":158},"2":{"d":"112,-192v-22,0,-30,15,-41,34r-9,-4v15,-29,28,-47,62,-49v51,-3,60,65,28,95v-18,17,-88,78,-98,96r61,-1v24,-1,19,-5,33,-23r12,0v-9,13,-18,30,-25,49v-35,-7,-63,-6,-108,-3v21,-61,110,-88,115,-160v2,-21,-13,-34,-30,-34","w":158},"3":{"d":"121,-140v16,-16,19,-51,-8,-52v-13,0,-26,8,-38,23r-7,-6v20,-23,28,-32,57,-35v57,7,37,60,-7,87v26,1,38,16,39,41v3,41,-53,88,-95,88v-20,0,-52,-22,-26,-32v13,2,22,21,36,20v26,-2,56,-41,56,-68v0,-26,-24,-38,-49,-27r2,-11v15,-5,27,-16,40,-28","w":158},"4":{"d":"27,-56v28,-57,91,-114,140,-156r5,0r-35,140r27,0r-4,19r-27,0r-13,58r-25,0r13,-58v-26,-2,-60,4,-81,-3xm112,-72r24,-99v-44,43,-54,52,-88,99r64,0","w":158},"5":{"d":"98,-201v22,-11,71,5,81,-14r10,0v-10,13,-6,31,-35,31v-25,0,-42,1,-51,2v-3,13,-13,26,5,32v90,31,21,160,-52,155v-16,0,-31,-4,-33,-17v6,-24,26,5,43,2v57,5,91,-94,26,-116v-29,-10,4,-53,6,-75","w":158},"6":{"d":"99,5v-65,0,-64,-96,-35,-144v25,-41,67,-71,128,-72r-2,11v-62,2,-92,33,-107,84v29,-30,84,-16,84,38v0,43,-26,83,-68,83xm104,-5v42,3,47,-113,7,-113v-13,0,-23,9,-32,16v-6,41,-11,95,25,97","w":158},"7":{"d":"167,-184v-37,4,-88,-14,-92,22r-9,0v4,-9,12,-38,14,-46v24,4,84,3,118,2v-61,78,-77,98,-109,157v-8,14,-2,57,-23,57v-24,-7,-12,-34,-1,-55v10,-21,67,-94,102,-137","w":158},"8":{"d":"182,-176v-2,29,-26,45,-52,58v20,20,30,38,30,56v0,65,-119,98,-125,23v7,-43,26,-48,63,-73v-41,-37,-9,-99,42,-99v22,0,44,16,42,35xm135,-199v-38,2,-41,48,-13,72v23,-17,35,-24,40,-47v0,-14,-12,-26,-27,-25xm93,-6v32,0,54,-36,37,-66v-4,-8,-12,-19,-24,-32v-29,21,-44,30,-47,64v-1,18,16,35,34,34","w":158},"9":{"d":"119,-211v65,0,64,96,35,144v-25,41,-67,71,-128,72r2,-11v61,-3,92,-33,107,-84v-29,30,-84,15,-84,-39v0,-43,26,-82,68,-82xm114,-201v-42,-3,-47,113,-7,113v14,0,22,-9,32,-16v6,-41,11,-95,-25,-97","w":158},":":{"d":"51,-121v-3,-24,35,-36,36,-7v4,26,-35,33,-36,7xm26,-12v-4,-24,35,-37,36,-8v4,26,-35,34,-36,8","w":93},";":{"d":"53,-121v-3,-24,35,-36,36,-7v4,26,-35,33,-36,7xm44,-37v33,7,11,51,-4,65v-11,10,-20,20,-31,27r-3,-12v14,-11,27,-20,30,-37v-5,-13,-16,-41,8,-43","w":86},"\u037e":{"d":"53,-121v-3,-24,35,-36,36,-7v4,26,-35,33,-36,7xm44,-37v33,7,11,51,-4,65v-11,10,-20,20,-31,27r-3,-12v14,-11,27,-20,30,-37v-5,-13,-16,-41,8,-43","w":86},"<":{"d":"196,-41r0,19r-157,-72r0,-16r157,-72r0,19r-132,61","w":187},"=":{"d":"204,-143r0,20r-156,0r0,-20r156,0xm204,-83r0,20r-156,0r0,-20r156,0","w":187},">":{"d":"58,-41r132,-61r-132,-61r0,-19r157,72r0,16r-157,72r0,-19","w":187},"?":{"d":"109,-194v-11,0,-39,30,-44,4v20,-44,87,-11,82,34v5,47,-51,62,-81,77v-2,3,-4,10,-6,21r-11,0v6,-36,0,-46,23,-55v37,-13,60,-20,60,-54v0,-14,-8,-27,-23,-27xm31,-12v-4,-24,35,-38,36,-8v4,26,-34,34,-36,8","w":136},"@":{"d":"94,-71v5,-52,39,-106,102,-101v1,-6,7,-7,13,-8v-9,31,-21,69,-25,102v-3,8,-3,14,4,16v29,-6,49,-42,50,-75v1,-36,-28,-64,-64,-63v-65,1,-106,58,-106,122v0,82,97,92,150,37r6,7v-53,58,-180,58,-178,-38v1,-77,56,-140,132,-140v44,0,84,26,84,67v0,51,-48,94,-95,102v-17,-4,-7,-14,-2,-35v-15,16,-31,32,-53,35v-11,-1,-19,-15,-18,-28xm116,-82v-1,29,34,17,41,1v16,-20,15,-48,24,-74v-46,-9,-63,35,-65,73","w":252},"A":{"d":"101,-131v-28,-8,-6,-56,12,-62v22,-20,83,-9,106,-29v-14,69,-20,139,-29,213v15,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v10,-22,12,-32,15,-65v-14,0,-35,-1,-64,0v-46,62,-49,91,-105,104v-18,3,-26,-21,-9,-24v21,2,29,6,46,-10v33,-32,120,-176,152,-207v-54,6,-72,5,-84,41v2,8,11,27,-5,28xm172,-76v6,-48,11,-83,17,-105r-73,105r56,0"},"B":{"d":"123,-152v3,-11,1,-18,-10,-17r2,-8v13,-1,28,-3,43,-7v-9,26,-12,42,-18,68v64,11,90,-88,17,-85v-63,2,-116,43,-121,103v-2,26,24,28,28,45v0,4,-3,9,-9,9v-17,-1,-33,-28,-31,-50v4,-72,63,-117,139,-119v35,0,64,14,64,43v0,28,-19,45,-44,53v26,4,43,16,43,44v0,64,-66,73,-141,73v-12,0,-23,1,-32,3r3,-10v31,-4,33,-11,41,-43xm105,-13v56,20,106,-27,84,-77v-12,-15,-21,-14,-52,-15v-11,30,-13,69,-32,92","w":216},"C":{"d":"34,-55v0,-95,88,-190,187,-142v-7,20,-10,42,-11,63r-10,0v5,-37,-3,-69,-35,-67v-62,4,-95,77,-99,144v-5,77,75,103,110,39v3,-5,10,-3,11,1v-8,23,-44,51,-77,51v-49,-1,-76,-37,-76,-89","w":187},"D":{"d":"125,-156v3,-10,-2,-17,-11,-13r2,-8v13,-1,28,-3,45,-7v-18,50,-30,135,-53,173v77,15,129,-31,130,-102v0,-50,-32,-88,-82,-87v-63,1,-113,43,-119,101v-2,23,22,29,29,44v0,5,-5,11,-11,11v-17,-1,-31,-31,-30,-48v4,-72,63,-119,140,-120v59,-1,106,36,106,91v0,71,-54,124,-125,124v-32,0,-58,-5,-92,-3v2,-16,29,-4,31,-18v17,-32,28,-96,40,-138","w":252},"E":{"d":"24,-110v1,-54,45,-96,109,-96v33,0,83,2,107,-4v-5,19,-8,33,-9,41r-10,0v13,-40,-32,-20,-74,-25r-20,78v25,-3,64,10,64,-16r10,0v-4,14,-7,30,-10,47r-9,0v8,-31,-33,-17,-57,-20v-10,40,-22,70,-33,93v33,-12,70,3,103,6v30,3,1,-38,24,-41v9,0,13,7,13,16v0,53,-84,33,-134,31v-17,0,-38,1,-61,4r3,-9v47,-11,39,-28,53,-84r27,-106v-43,1,-76,29,-80,70v-2,18,26,42,1,49v-14,-1,-17,-19,-17,-34"},"F":{"d":"136,-194v-61,-3,-97,62,-68,109v0,4,-4,10,-10,9v-15,-1,-18,-18,-18,-35v1,-50,46,-95,101,-95v37,0,77,4,109,-5v-6,24,-9,40,-10,47r-10,0v18,-42,-31,-28,-66,-30r-20,76v23,-3,56,9,56,-15r10,0v-4,15,-7,31,-10,47r-9,0v10,-32,-28,-16,-50,-20v-5,27,-20,74,-28,96v15,3,26,4,39,1v-2,21,-38,9,-57,9v-11,0,-23,1,-36,3r2,-10v44,-11,34,-23,49,-82","w":208},"G":{"d":"46,-72v7,-85,74,-154,165,-134v14,3,26,5,33,5v-6,22,-10,43,-10,61r-10,0v6,-36,-10,-60,-41,-60v-62,0,-103,61,-107,126v-3,57,51,81,94,53v5,-18,8,-31,8,-37v-1,-12,-13,-11,-28,-9v5,-22,44,-2,74,-11r-1,9v-18,1,-16,7,-21,25v-18,63,-25,97,-60,125v-23,18,-73,15,-78,-13v15,-37,40,37,68,3v10,-12,23,-38,34,-79v-51,32,-125,3,-120,-64"},"H":{"d":"202,-9v14,2,26,5,41,1r-3,10v-25,4,-49,-5,-72,1v10,-26,21,-76,30,-109r-73,4v-17,61,-29,101,-85,113v-20,4,-46,-22,-22,-30v10,-1,16,19,27,19v9,0,17,-7,26,-22v11,-18,39,-126,52,-174v-48,-3,-86,26,-61,62v0,6,-6,11,-12,11v-23,-6,-16,-46,0,-59v26,-22,48,-26,108,-26v-9,17,-19,48,-30,91v31,0,56,-1,74,-3v21,-63,25,-97,85,-109v23,-4,46,23,21,29v-8,1,-19,-20,-27,-18v-9,0,-17,9,-26,25v-15,29,-33,90,-53,184","w":244},"I":{"d":"116,2v-30,-1,-65,-4,-92,1r2,-9v21,-5,34,-3,39,-23r43,-166v-8,0,-18,2,-30,4r3,-10v18,-6,68,-3,90,-7r-3,10v-54,5,-29,15,-53,79v-4,13,-13,50,-27,110v8,3,18,3,31,3","w":136},"J":{"d":"143,-196v-48,-5,-89,28,-65,64v0,6,-5,11,-11,11v-10,0,-15,-10,-14,-21v5,-55,56,-71,123,-65v-44,74,-30,245,-137,255v-19,2,-37,-10,-39,-25v13,-33,38,30,62,9v41,-36,55,-162,81,-228","w":143},"K":{"d":"119,-198v-43,0,-86,25,-62,61v0,7,-5,13,-12,12v-9,0,-14,-11,-14,-20v0,-48,53,-67,121,-63v-14,35,-18,54,-27,89v31,-12,84,-54,98,-75v-4,-4,-10,-3,-24,-4r3,-9v29,2,43,3,71,0v-40,19,-90,69,-123,88v35,33,33,155,95,163v20,3,17,-28,33,-29v5,0,10,5,10,10v-2,15,-23,32,-44,30v-85,-4,-76,-121,-120,-168r-26,102v11,4,17,6,28,4v1,17,-27,6,-42,7v-10,0,-25,2,-46,6r1,-9v52,-13,44,-54,59,-113","w":237},"L":{"d":"212,-31v-13,71,-126,17,-195,34r2,-10v44,-7,37,-27,50,-72v20,-73,32,-121,99,-133v20,-3,47,24,23,32v-15,-2,-27,-28,-45,-16v-46,30,-45,146,-77,185v42,-14,71,2,109,5v30,2,-2,-39,21,-42v9,0,12,8,13,17","w":208},"M":{"d":"304,2v-26,6,-50,-6,-75,2v16,-41,31,-128,48,-169v-33,40,-80,112,-111,172r-14,-189v-13,86,-27,182,-109,194v-21,4,-27,-24,-7,-25v63,15,76,-46,92,-101v8,-28,11,-56,13,-83v-41,-1,-82,21,-85,56v-1,11,30,36,5,42v-12,-1,-20,-20,-19,-33v3,-63,69,-77,134,-79v-1,47,8,104,10,158v41,-69,79,-130,133,-168v-20,57,-41,145,-57,212v17,4,28,4,44,1","w":302},"N":{"d":"59,-104v-24,-5,-16,-51,-4,-68v20,-29,60,-31,106,-40v18,71,21,81,53,168v22,-64,17,-165,89,-174v21,-3,32,23,12,26v-40,-16,-49,7,-63,50v-9,28,-28,101,-40,158r-27,-63r-41,-123v-20,62,-19,185,-93,189v-17,0,-34,-6,-35,-21v13,-29,40,27,62,-3v31,-42,43,-115,59,-191v-35,3,-76,13,-77,51v0,16,22,37,-1,41","w":252},"O":{"d":"37,-77v4,-71,45,-133,121,-133v49,1,78,34,78,84v0,69,-48,129,-119,131v-47,1,-82,-35,-80,-82xm128,-8v85,2,108,-184,17,-190v-89,-5,-108,185,-17,190","w":216},"P":{"d":"120,-151v3,-12,0,-20,-10,-17r2,-8v17,-2,32,-4,44,-7v-9,22,-16,56,-23,81v44,7,75,-20,75,-59v0,-27,-21,-40,-51,-39v-61,1,-114,42,-119,99v-2,25,23,30,27,47v1,6,-4,10,-9,10v-17,-3,-31,-27,-30,-51v2,-67,66,-119,138,-116v41,1,75,13,75,50v0,50,-50,74,-108,71r-22,82v20,4,33,4,51,-2r-2,10v-35,11,-71,-7,-107,4r2,-9v30,-5,33,-12,40,-41","w":194},"Q":{"d":"236,-128v2,58,-47,125,-99,131v37,28,56,71,106,78v25,4,24,-23,41,-28v4,0,9,5,9,9v-12,37,-89,39,-116,13v-27,-16,-53,-61,-90,-75v-100,-38,-33,-211,68,-211v52,0,79,34,81,83xm128,-8v85,2,108,-184,17,-190v-89,-5,-108,185,-17,190","w":216},"R":{"d":"251,54v-77,-8,-91,-85,-112,-155r-9,0r-24,94v15,2,18,1,33,-2r-2,9v-32,6,-59,-6,-91,4r3,-10v28,-6,33,-10,39,-36r29,-120v0,-6,-4,-7,-11,-7r2,-8v12,0,26,-3,43,-7v-7,20,-13,50,-19,72v36,10,68,-18,68,-50v0,-24,-21,-39,-47,-38v-53,2,-104,34,-107,88v-1,19,20,29,24,43v0,4,-5,9,-10,9v-17,-2,-26,-27,-26,-47v2,-65,58,-102,124,-104v38,-1,72,12,72,46v0,35,-32,59,-70,64v30,51,31,134,89,145v23,4,18,-29,35,-31v5,0,10,5,10,10v-1,16,-22,33,-43,31","w":216},"S":{"d":"193,-204v-8,23,-7,27,-12,61r-9,0v5,-31,2,-55,-25,-57v-24,-1,-51,22,-49,46v4,44,64,58,62,102v-2,47,-44,77,-94,78v-28,1,-57,-18,-59,-40v-2,-14,14,-24,24,-14v7,18,12,43,39,43v30,0,65,-26,63,-55v-2,-46,-61,-55,-61,-103v0,-54,61,-80,121,-61","w":165},"T":{"d":"263,-223v0,33,-48,34,-88,31r-45,184v19,2,28,2,44,-2r-2,10v-34,8,-69,-5,-104,3r3,-10v52,-9,38,-25,54,-89r24,-97v-57,-5,-102,9,-106,56v-2,14,15,19,16,32v0,7,-5,11,-12,11v-14,-1,-19,-18,-19,-33v0,-53,46,-84,107,-84v14,0,68,7,86,7v30,6,9,-30,30,-33v9,-1,12,7,12,14","w":180},"U":{"d":"131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136","w":266},"V":{"d":"272,-248v21,3,19,39,10,59v-34,71,-116,131,-169,196v-4,-76,-22,-161,23,-206v-47,0,-104,39,-75,84v0,5,-3,10,-9,9v-10,-1,-16,-13,-15,-25v6,-60,63,-78,132,-81v-39,47,-42,100,-35,178v44,-53,121,-103,133,-172v3,-14,-17,-38,5,-42","w":230},"W":{"d":"355,-248v27,10,16,47,4,75v-20,47,-111,160,-143,188v3,-62,0,-128,10,-183v-39,56,-80,126,-125,176v-9,-70,-21,-163,21,-205v-44,2,-90,41,-63,80v0,6,-4,11,-10,11v-33,-16,0,-71,19,-83v24,-15,50,-19,88,-23v-39,63,-42,85,-35,176v45,-52,90,-147,139,-185v-11,44,-17,108,-17,191v38,-52,96,-101,108,-175v2,-15,-19,-39,4,-43","w":316},"X":{"d":"46,10v-17,12,-40,23,-49,4v4,-19,39,-10,49,-25v22,-16,59,-70,80,-99v-11,-36,-17,-64,-17,-86v-13,0,-20,0,-32,3r2,-11v18,-3,38,1,56,-4v0,22,3,46,10,73v33,-35,52,-85,106,-94v13,-2,20,10,13,19v-27,8,-50,9,-67,31v-13,18,-31,37,-48,59v12,34,18,68,17,111v12,3,19,3,34,1r-2,10v-22,-1,-36,-4,-59,0v5,-35,0,-70,-9,-97v-22,31,-66,93,-84,105","w":201},"Y":{"d":"278,-236v10,0,18,13,9,20v-56,6,-76,49,-102,93v-18,29,-32,84,-37,115v17,2,27,1,44,-2v-16,29,-58,1,-98,12v0,-13,22,-13,24,-18v11,-29,38,-101,15,-139v-6,-17,-14,-30,-23,-40v-35,12,-55,25,-62,59v-2,10,15,21,15,29v0,5,-3,11,-9,10v-27,-4,-20,-47,-8,-66v17,-26,48,-39,85,-50v21,26,32,56,36,102v31,-64,58,-111,111,-125","w":201},"Z":{"d":"29,8v-8,-2,-4,-11,2,-17r129,-132v13,-13,25,-27,38,-43v-29,10,-64,-5,-90,-10v-8,0,-16,4,-16,11v5,9,28,28,4,33v-35,-13,-11,-64,23,-61v43,4,85,16,116,-3v13,5,2,12,-10,25r-120,122r-50,54v57,-22,92,-2,141,7v31,6,-1,-40,24,-42v8,0,13,7,13,16v-9,77,-145,10,-204,40"},"[":{"d":"92,-242r53,0r-3,11r-33,0r-64,281r33,0r-3,10r-52,0","w":86},"\\":{"d":"169,68r-18,0r-76,-311r19,0","w":172},"]":{"d":"65,60r-53,0r2,-10r34,0r64,-281r-33,0r2,-11r53,0","w":115},"^":{"d":"108,-148r-19,0r35,-57r19,0r35,57r-20,0r-25,-35","w":187},"_":{"d":"-2,27r184,0r0,18r-184,0r0,-18","w":180},"`":{"d":"55,-220r29,0r19,51r-10,0","w":79},"a":{"d":"109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83","w":151},"b":{"d":"171,-234v0,30,-50,-7,-61,18v-8,19,-19,71,-26,99v19,-29,81,-49,79,9v-2,56,-33,113,-85,113v-36,0,-42,-33,-31,-68v21,-75,18,-184,105,-184v11,0,19,3,19,13xm85,-7v33,-3,64,-79,45,-115v-3,-4,-6,-6,-11,-6v-34,6,-52,59,-54,99v-1,12,9,22,20,22","w":151},"c":{"d":"58,-47v0,48,41,36,69,9r4,10v-28,22,-52,33,-71,33v-21,0,-30,-18,-29,-39v3,-53,33,-108,88,-114v24,-2,37,27,13,29v-8,1,-26,-12,-33,-11v-30,3,-41,50,-41,83","w":122},"d":{"d":"135,-17v12,-3,15,-7,31,-19r5,6v-24,20,-35,32,-60,36v-19,-3,-4,-27,-1,-39v-22,22,-33,34,-61,38v-15,-1,-24,-13,-22,-32v5,-54,45,-128,105,-119v13,-60,33,-93,92,-102v9,0,15,5,15,14v-7,30,-57,-13,-67,28r-42,182v0,4,2,7,5,7xm54,-39v-1,20,16,24,32,14v28,-18,32,-60,43,-102v-54,-19,-70,46,-75,88","w":158},"e":{"d":"73,-18v22,-2,28,-12,50,-26r5,8v-29,27,-52,41,-73,41v-19,-1,-26,-15,-26,-36v-1,-47,38,-117,84,-117v27,0,32,29,18,46v-17,20,-35,27,-72,44v-3,17,-5,42,14,40xm113,-117v-7,-30,-34,-13,-40,8v-4,13,-10,26,-12,39v26,-12,47,-21,52,-47","w":122},"f":{"d":"-51,77v5,-28,61,6,75,-17v26,-43,34,-128,51,-184r-42,0r4,-12r42,0v13,-65,37,-103,99,-112v22,-3,29,27,8,27v-23,0,-46,-15,-58,8v-10,19,-17,52,-23,77r46,0r-3,12r-47,0v-24,88,-29,210,-130,216v-12,1,-22,-5,-22,-15","w":115},"g":{"d":"64,-7v-19,12,-35,8,-36,-15v0,-47,34,-94,65,-112v13,-9,32,-11,54,-10v1,-7,10,-6,16,-8v-14,49,-36,99,-36,156v0,57,-28,86,-81,89v-39,2,-66,-34,-40,-63v8,-9,42,-27,58,-37xm53,-37v0,36,41,12,50,-4v9,-17,19,-58,26,-82v-54,-16,-76,48,-76,86xm46,82v51,-4,60,-50,59,-109v-14,20,-90,47,-90,83v0,15,16,27,31,26","w":143},"h":{"d":"140,-14v9,-2,22,-14,32,-23r4,6v-15,16,-30,32,-52,36v-9,-1,-15,-8,-14,-20v0,-26,20,-71,26,-104v-3,-12,-16,-5,-25,1v-36,19,-42,73,-54,118r-26,0v20,-68,27,-155,58,-211v11,-20,38,-37,66,-37v9,1,16,5,17,13v-5,25,-47,-1,-61,15v-14,27,-21,83,-30,118v19,-19,41,-41,68,-46v9,-2,15,6,15,15v-3,32,-28,85,-28,113v-1,4,2,5,4,6","w":158},"i":{"d":"88,-204v-3,-18,28,-28,30,-7v3,18,-28,29,-30,7xm64,-128v-12,3,-13,8,-28,21r-8,-6v18,-19,32,-36,57,-36v7,0,12,3,12,9v-2,27,-67,182,2,103r7,7v-24,21,-29,31,-53,35v-9,1,-13,-6,-13,-15v0,-13,13,-60,27,-114v0,-2,-1,-4,-3,-4","w":86},"j":{"d":"90,-204v-3,-18,28,-28,30,-7v3,18,-28,29,-30,7xm66,-110v3,-10,7,-14,0,-17v-5,0,-14,7,-29,21r-6,-7v13,-17,39,-33,59,-36v15,6,10,13,3,34v-26,74,-24,197,-107,207v-20,3,-37,-21,-15,-25v14,1,36,20,45,1v19,-39,36,-133,50,-178","w":79},"k":{"d":"195,68v-79,-3,-71,-102,-120,-144r-17,76r-26,0v20,-69,30,-149,57,-211v13,-18,35,-35,64,-36v11,0,19,3,19,13v-6,27,-56,-10,-66,25v-5,20,-17,71,-23,98v17,-18,33,-35,61,-37v13,0,21,10,21,23v-3,33,-36,49,-79,49v60,15,48,125,112,133v32,5,5,-32,26,-36v7,-1,13,7,12,15v0,18,-21,33,-41,32xm142,-118v0,-7,-5,-14,-12,-14v-11,0,-28,12,-51,37r-3,12v34,-1,64,-5,66,-35","w":158},"l":{"d":"63,-14v16,-4,28,-17,41,-28r6,6v-14,15,-41,38,-64,41v-9,0,-13,-7,-12,-16v5,-47,30,-151,47,-191v11,-26,39,-46,73,-46v9,0,17,5,16,13v-4,31,-57,-13,-67,30r-44,185v0,4,1,6,4,6","w":86},"m":{"d":"132,-107v8,-22,-3,-25,-17,-12v-39,21,-39,71,-52,119r-25,0r28,-123v-6,-12,-15,4,-31,16r-5,-7v18,-17,34,-34,58,-34v17,0,-4,33,-1,43v28,-29,49,-43,64,-43v18,0,12,19,7,38v19,-20,33,-36,58,-38v10,-1,15,6,15,17v-1,18,-30,98,-29,111v0,4,2,6,5,6v12,-4,19,-13,28,-21r6,7v-12,9,-32,35,-50,34v-8,0,-15,-9,-14,-20v0,-24,23,-81,26,-107v0,-4,-1,-6,-5,-6v-48,9,-57,85,-67,127r-25,0"},"n":{"d":"131,5v-38,-15,9,-80,12,-124v-15,-18,-44,16,-52,27v-15,20,-18,63,-26,92r-27,0r30,-123v-10,-18,-28,28,-38,10v23,-20,33,-31,59,-35v18,4,-2,32,-1,46v15,-16,42,-42,68,-46v10,-1,15,6,15,17v0,24,-37,96,-24,117v10,3,29,-33,36,-17v-15,16,-29,32,-52,36","w":165},"o":{"d":"31,-41v0,-51,40,-109,87,-107v24,1,40,24,40,52v0,46,-44,102,-86,101v-26,0,-41,-19,-41,-46xm85,-9v39,0,54,-78,36,-114v-4,-8,-11,-12,-18,-12v-27,0,-44,42,-43,81v0,22,5,45,25,45","w":143},"p":{"d":"50,56v-7,23,11,21,35,25r-2,9v-39,-3,-50,-3,-88,0r2,-9v20,-2,25,-9,29,-28r41,-175v0,-3,-1,-5,-4,-5v-5,0,-15,8,-30,23r-7,-7v16,-20,34,-36,60,-38v19,6,5,25,1,45v29,-28,34,-44,67,-44v15,0,21,16,21,34v1,55,-49,145,-110,112xm150,-104v0,-23,-19,-25,-35,-13v-29,22,-36,54,-46,96v9,9,18,14,28,14v30,1,53,-63,53,-97","w":158},"q":{"d":"27,-28v1,-54,58,-139,124,-118v3,-6,7,-11,18,-9v-17,54,-42,156,-56,224v2,11,7,10,24,13r-3,9v-30,-5,-50,-3,-85,0r3,-9v58,-1,42,-76,61,-118v-17,18,-37,41,-64,41v-15,0,-22,-16,-22,-33xm53,-39v-1,20,16,25,32,15v32,-20,38,-58,49,-101v-57,-18,-78,39,-81,86","w":143},"r":{"d":"144,-157v19,7,13,23,-8,28v-54,14,-59,69,-73,129r-26,0r29,-123v0,-3,0,-4,-3,-4v-13,2,-15,9,-28,21r-6,-6v16,-17,37,-33,60,-36v17,4,-4,35,-3,49v16,-23,32,-49,58,-58","w":107},"s":{"d":"59,-105v0,-24,23,-45,49,-43v24,-5,46,25,20,32v-12,0,-19,-23,-30,-21v-51,21,26,66,23,95v6,47,-93,69,-98,17v0,-7,6,-14,13,-14v21,-1,3,33,30,33v18,0,32,-10,32,-26v0,-24,-39,-46,-39,-73","w":115},"t":{"d":"56,5v-23,-6,-14,-32,-7,-59r18,-70r-29,0r4,-12r28,0r10,-39r28,-11r-13,50r36,0r-2,12r-37,0v-6,27,-20,70,-22,96v0,6,2,9,7,9v15,-3,33,-17,45,-26r7,8v-37,26,-43,35,-73,42","w":115},"u":{"d":"85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35","w":165},"v":{"d":"25,-107v0,-40,57,-31,90,-41v10,2,9,13,-3,17v-24,36,-30,64,-18,118v38,-30,65,-55,72,-99v-1,-13,-20,-35,2,-39v10,1,13,9,13,22v0,66,-59,116,-109,140r-12,-77v0,-31,15,-52,34,-67v-34,0,-61,4,-49,33v0,4,-5,7,-9,7v-6,0,-10,-8,-11,-14","w":158},"w":{"d":"180,-13v34,-24,88,-73,62,-127v0,-6,5,-11,11,-11v11,1,13,10,13,25v-2,59,-60,117,-108,138v-4,-13,-8,-32,-11,-57v-33,33,-38,39,-75,57v-1,-16,-12,-66,-12,-78v1,-29,16,-53,36,-67v-33,2,-64,5,-50,33v0,3,-5,8,-9,7v-7,0,-10,-7,-10,-15v4,-31,34,-35,76,-35v8,-8,18,-8,20,2v0,5,-3,8,-10,10v-20,32,-33,66,-17,118v18,-12,34,-28,50,-48v-1,-38,4,-78,28,-87v27,6,5,49,-1,64v0,30,3,54,7,71","w":244},"x":{"d":"85,-107v-3,-32,-27,-17,-38,-5r-5,-7v17,-14,28,-24,46,-29v18,6,16,21,23,49v22,-30,34,-51,66,-57v7,0,13,6,13,12v0,19,-38,6,-47,21v-10,9,-20,21,-30,37v16,50,12,122,60,135v15,4,15,-23,28,-23v4,0,8,5,8,11v0,14,-19,25,-34,23v-59,-7,-66,-55,-80,-120v-19,24,-37,63,-69,65v-18,1,-25,-25,-6,-26v7,-1,12,16,22,9v21,-16,35,-41,50,-62","w":151},"y":{"d":"96,-3v0,-46,-13,-153,-66,-109r-6,-8v16,-9,28,-23,48,-28v29,22,46,83,43,133v28,-53,36,-73,24,-122v0,-6,5,-12,11,-12v26,9,15,45,4,75v-24,68,-59,156,-141,166v-13,1,-24,-4,-24,-14v0,-20,32,-10,49,-9v32,-6,58,-37,58,-72","w":143},"z":{"d":"41,-9v-6,0,-36,21,-24,0v26,-28,92,-86,125,-121v-21,7,-40,6,-63,3v-12,-1,-15,14,-4,15v12,1,8,14,0,15v-9,1,-19,-11,-18,-22v3,-51,83,-10,111,-33v4,0,7,5,3,8v-30,33,-90,88,-121,117v31,-7,57,13,81,13v30,0,-3,-36,20,-39v7,-1,13,7,12,15v-3,25,-22,43,-52,43v-13,0,-55,-15,-70,-14","w":158},"{":{"d":"79,63v-87,10,-28,-89,-26,-133v0,-13,-4,-16,-16,-19v32,-11,24,-16,37,-62v16,-65,10,-85,78,-91r-2,6v-44,6,-41,26,-54,75v-13,48,-5,54,-34,72v34,24,-15,88,-10,124v2,14,12,21,29,21","w":86},"|":{"d":"117,88r0,-336r20,0r0,336r-20,0","w":187},"}":{"d":"59,-242v87,-10,25,90,25,133v0,12,6,16,17,19v-32,11,-25,16,-37,62v-16,65,-10,85,-78,91r2,-6v44,-6,39,-26,53,-75v13,-48,5,-56,35,-72v-45,-34,58,-137,-19,-146","w":86},"~":{"d":"93,-125v8,-2,59,21,69,21v11,0,22,-8,32,-25r11,12v-11,18,-22,32,-43,34v-15,1,-52,-20,-69,-21v-18,2,-23,12,-33,28r-11,-13v13,-21,21,-32,44,-36","w":187},"\u00c4":{"d":"101,-131v-28,-8,-6,-56,12,-62v22,-20,83,-9,106,-29v-14,69,-20,139,-29,213v15,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v10,-22,12,-32,15,-65v-14,0,-35,-1,-64,0v-46,62,-49,91,-105,104v-18,3,-26,-21,-9,-24v21,2,29,6,46,-10v33,-32,120,-176,152,-207v-54,6,-72,5,-84,41v2,8,11,27,-5,28xm172,-76v6,-48,11,-83,17,-105r-73,105r56,0xm166,-249v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm217,-249v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16"},"\u00c5":{"d":"88,-149v8,-51,41,-59,106,-62v-26,-12,-17,-57,15,-57v35,0,42,54,7,60r-26,199v15,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v10,-22,12,-32,15,-65v-14,0,-35,-1,-64,0v-46,62,-49,91,-105,104v-18,3,-26,-21,-9,-24v21,2,29,6,46,-10v33,-32,120,-176,152,-207v-54,6,-72,5,-84,41v2,8,11,27,-5,28v-10,0,-15,-7,-13,-18xm227,-238v1,-9,-9,-19,-18,-18v-10,-1,-19,9,-19,18v0,9,9,20,19,19v10,1,19,-9,18,-19xm172,-76v6,-48,11,-83,17,-105r-73,105r56,0"},"\u00c7":{"d":"34,-55v0,-95,88,-190,187,-142v-7,20,-10,42,-11,63r-10,0v5,-37,-3,-69,-35,-67v-62,4,-95,77,-99,144v-5,77,75,103,110,39v3,-5,10,-3,11,1v-8,23,-44,51,-77,51v-49,-1,-76,-37,-76,-89xm71,99v22,1,49,-32,18,-39v-1,0,-2,1,-3,1r19,-32r11,0r-11,20v26,3,24,29,5,43v-10,7,-25,14,-43,17","w":187},"\u00c9":{"d":"24,-110v1,-54,45,-96,109,-96v33,0,83,2,107,-4v-5,19,-8,33,-9,41r-10,0v13,-40,-32,-20,-74,-25r-20,78v25,-3,64,10,64,-16r10,0v-4,14,-7,30,-10,47r-9,0v8,-31,-33,-17,-57,-20v-10,40,-22,70,-33,93v33,-12,70,3,103,6v30,3,1,-38,24,-41v9,0,13,7,13,16v0,53,-84,33,-134,31v-17,0,-38,1,-61,4r3,-9v47,-11,39,-28,53,-84r27,-106v-43,1,-76,29,-80,70v-2,18,26,42,1,49v-14,-1,-17,-19,-17,-34xm197,-284r34,0r-60,51r-10,0"},"\u00d1":{"d":"197,-272v16,-1,53,26,59,0r10,0v-6,37,-47,37,-76,20v-12,-1,-9,16,-25,13v4,-20,14,-31,32,-33xm59,-104v-24,-5,-16,-51,-4,-68v20,-29,60,-31,106,-40v18,71,21,81,53,168v22,-64,17,-165,89,-174v21,-3,32,23,12,26v-40,-16,-49,7,-63,50v-9,28,-28,101,-40,158r-27,-63r-41,-123v-20,62,-19,185,-93,189v-17,0,-34,-6,-35,-21v13,-29,40,27,62,-3v31,-42,43,-115,59,-191v-35,3,-76,13,-77,51v0,16,22,37,-1,41","w":252},"\u00d6":{"d":"37,-77v4,-71,45,-133,121,-133v49,1,78,34,78,84v0,69,-48,129,-119,131v-47,1,-82,-35,-80,-82xm128,-8v85,2,108,-184,17,-190v-89,-5,-108,185,-17,190xm127,-249v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm178,-249v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":216},"\u00dc":{"d":"131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136xm162,-249v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm213,-249v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":266},"\u00e1":{"d":"109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83xm140,-220r34,0r-60,51r-10,0","w":151},"\u00e0":{"d":"109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83xm91,-220r29,0r19,51r-10,0","w":151},"\u00e2":{"d":"125,-220r27,0r12,51r-10,0r-18,-32v-20,10,-30,30,-58,32xm109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83","w":151},"\u00e4":{"d":"109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83xm88,-185v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm139,-185v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":151},"\u00e3":{"d":"147,-175v-22,1,-46,-28,-57,0r-10,0v4,-20,14,-34,33,-34v14,0,54,27,59,0r10,0v-5,17,-17,32,-35,34xm109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83","w":151},"\u00e5":{"d":"100,-195v0,-16,15,-31,31,-31v15,0,30,15,30,31v0,16,-14,31,-30,31v-17,0,-31,-15,-31,-31xm149,-195v1,-9,-9,-19,-18,-18v-10,-1,-19,9,-19,18v0,9,10,19,19,19v9,0,19,-9,18,-19xm109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83","w":151},"\u00e7":{"d":"58,-47v0,48,41,36,69,9r4,10v-28,22,-52,33,-71,33v-21,0,-30,-18,-29,-39v3,-53,33,-108,88,-114v24,-2,37,27,13,29v-8,1,-26,-12,-33,-11v-30,3,-41,50,-41,83xm32,67v22,1,49,-32,18,-39v-1,0,-2,1,-3,1r19,-32r11,0r-11,20v26,3,24,29,5,43v-10,7,-25,14,-43,17","w":122},"\u00e9":{"d":"73,-18v22,-2,28,-12,50,-26r5,8v-29,27,-52,41,-73,41v-19,-1,-26,-15,-26,-36v-1,-47,38,-117,84,-117v27,0,32,29,18,46v-17,20,-35,27,-72,44v-3,17,-5,42,14,40xm113,-117v-7,-30,-34,-13,-40,8v-4,13,-10,26,-12,39v26,-12,47,-21,52,-47xm125,-220r34,0r-60,51r-10,0","w":122},"\u00e8":{"d":"73,-18v22,-2,28,-12,50,-26r5,8v-29,27,-52,41,-73,41v-19,-1,-26,-15,-26,-36v-1,-47,38,-117,84,-117v27,0,32,29,18,46v-17,20,-35,27,-72,44v-3,17,-5,42,14,40xm113,-117v-7,-30,-34,-13,-40,8v-4,13,-10,26,-12,39v26,-12,47,-21,52,-47xm77,-220r29,0r19,51r-10,0","w":122},"\u00ea":{"d":"111,-220r26,0r13,51r-10,0r-18,-32v-21,10,-30,31,-59,32xm73,-18v22,-2,28,-12,50,-26r5,8v-29,27,-52,41,-73,41v-19,-1,-26,-15,-26,-36v-1,-47,38,-117,84,-117v27,0,32,29,18,46v-17,20,-35,27,-72,44v-3,17,-5,42,14,40xm113,-117v-7,-30,-34,-13,-40,8v-4,13,-10,26,-12,39v26,-12,47,-21,52,-47","w":122},"\u00eb":{"d":"73,-18v22,-2,28,-12,50,-26r5,8v-29,27,-52,41,-73,41v-19,-1,-26,-15,-26,-36v-1,-47,38,-117,84,-117v27,0,32,29,18,46v-17,20,-35,27,-72,44v-3,17,-5,42,14,40xm113,-117v-7,-30,-34,-13,-40,8v-4,13,-10,26,-12,39v26,-12,47,-21,52,-47xm73,-185v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm124,-185v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":122},"\u00ed":{"d":"64,-128v-12,3,-13,8,-28,21r-8,-6v18,-19,32,-36,57,-36v7,0,12,3,12,9v1,18,-43,122,-26,125v10,-5,21,-14,28,-22r8,7v-26,22,-26,27,-54,35v-9,0,-13,-6,-13,-15v2,-32,23,-92,27,-114v0,-2,-1,-4,-3,-4xm107,-220r34,0r-60,51r-10,0","w":86},"\u00ec":{"d":"64,-128v-12,3,-13,8,-28,21r-8,-6v18,-19,32,-36,57,-36v7,0,12,3,12,9v1,18,-43,122,-26,125v10,-5,21,-14,28,-22r8,7v-26,22,-26,27,-54,35v-9,0,-13,-6,-13,-15v2,-32,23,-92,27,-114v0,-2,-1,-4,-3,-4xm59,-220r29,0r19,51r-10,0","w":86},"\u00ee":{"d":"93,-220r26,0r13,51r-10,0r-18,-32v-21,10,-30,31,-59,32xm64,-128v-12,3,-13,8,-28,21r-8,-6v18,-19,32,-36,57,-36v7,0,12,3,12,9v1,18,-43,122,-26,125v10,-5,21,-14,28,-22r8,7v-26,22,-26,27,-54,35v-9,0,-13,-6,-13,-15v2,-32,23,-92,27,-114v0,-2,-1,-4,-3,-4","w":86},"\u00ef":{"d":"64,-128v-12,3,-13,8,-28,21r-8,-6v18,-19,32,-36,57,-36v7,0,12,3,12,9v1,18,-43,122,-26,125v10,-5,21,-14,28,-22r8,7v-26,22,-26,27,-54,35v-9,0,-13,-6,-13,-15v2,-32,23,-92,27,-114v0,-2,-1,-4,-3,-4xm55,-185v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm106,-185v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":86},"\u00f1":{"d":"154,-175v-22,1,-46,-28,-57,0r-9,0v4,-20,13,-34,32,-34v14,0,54,27,59,0r10,0v-5,17,-17,33,-35,34xm131,5v-38,-15,9,-80,12,-124v-15,-18,-44,16,-52,27v-15,20,-18,63,-26,92r-27,0r30,-123v-10,-18,-28,28,-38,10v23,-20,33,-31,59,-35v18,4,-2,32,-1,46v15,-16,42,-42,68,-46v10,-1,15,6,15,17v0,24,-37,96,-24,117v10,3,29,-33,36,-17v-15,16,-29,32,-52,36","w":165},"\u00f3":{"d":"31,-41v0,-51,40,-109,87,-107v24,1,40,24,40,52v0,46,-44,102,-86,101v-26,0,-41,-19,-41,-46xm85,-9v39,0,54,-78,36,-114v-4,-8,-11,-12,-18,-12v-27,0,-44,42,-43,81v0,22,5,45,25,45xm136,-220r34,0r-60,51r-10,0","w":143},"\u00f2":{"d":"31,-41v0,-51,40,-109,87,-107v24,1,40,24,40,52v0,46,-44,102,-86,101v-26,0,-41,-19,-41,-46xm85,-9v39,0,54,-78,36,-114v-4,-8,-11,-12,-18,-12v-27,0,-44,42,-43,81v0,22,5,45,25,45xm88,-220r29,0r19,51r-10,0","w":143},"\u00f4":{"d":"121,-220r27,0r13,51r-10,0r-18,-32v-20,10,-31,30,-59,32xm31,-41v0,-51,40,-109,87,-107v24,1,40,24,40,52v0,46,-44,102,-86,101v-26,0,-41,-19,-41,-46xm85,-9v39,0,54,-78,36,-114v-4,-8,-11,-12,-18,-12v-27,0,-44,42,-43,81v0,22,5,45,25,45","w":143},"\u00f6":{"d":"31,-41v0,-51,40,-109,87,-107v24,1,40,24,40,52v0,46,-44,102,-86,101v-26,0,-41,-19,-41,-46xm85,-9v39,0,54,-78,36,-114v-4,-8,-11,-12,-18,-12v-27,0,-44,42,-43,81v0,22,5,45,25,45xm84,-185v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm135,-185v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":143},"\u00f5":{"d":"144,-175v-22,1,-46,-28,-57,0r-10,0v4,-20,13,-33,32,-34v15,-1,54,27,59,0r10,0v-5,18,-16,33,-34,34xm31,-41v0,-51,40,-109,87,-107v24,1,40,24,40,52v0,46,-44,102,-86,101v-26,0,-41,-19,-41,-46xm85,-9v39,0,54,-78,36,-114v-4,-8,-11,-12,-18,-12v-27,0,-44,42,-43,81v0,22,5,45,25,45","w":143},"\u00fa":{"d":"85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35xm147,-220r34,0r-60,51r-10,0","w":165},"\u00f9":{"d":"85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35xm98,-220r29,0r19,51r-10,0","w":165},"\u00fb":{"d":"132,-220r27,0r13,51r-10,0r-19,-32v-20,10,-30,30,-58,32xm85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35","w":165},"\u00fc":{"d":"85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35xm95,-185v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm146,-185v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":165},"\u00b0":{"d":"73,-163v0,-25,21,-47,47,-47v26,0,47,22,47,47v0,25,-22,47,-47,47v-25,0,-47,-21,-47,-47xm150,-163v0,-17,-13,-31,-30,-31v-16,-1,-30,15,-30,31v0,15,15,30,30,30v15,0,31,-15,30,-30","w":143},"\u00a2":{"d":"47,-35v0,-53,35,-116,93,-112r22,-38r12,0r-24,40v15,4,15,28,-3,26v-3,0,-6,-1,-10,-3r-58,98v17,23,49,0,64,-14r4,10v-20,13,-52,42,-84,30r-30,52r-11,0r34,-58v-6,-7,-9,-18,-9,-31xm128,-127v-42,-15,-55,51,-53,90","w":158},"\u00a3":{"d":"201,-206v-1,22,-36,1,-47,5v-12,0,-21,6,-28,20v-10,20,-20,48,-28,84r42,0r-4,11r-41,0v-8,29,-17,50,-27,66v38,-9,96,27,99,-26r9,0v-3,32,-10,50,-40,50v-49,0,-75,-11,-118,1r2,-10v44,-6,34,-39,48,-81r-30,0r3,-11r30,0v20,-62,40,-122,104,-122v15,0,24,2,26,13","w":172},"\u00a7":{"d":"79,-2v0,-39,-19,-94,-18,-130v2,-60,38,-115,99,-116v22,0,40,9,42,26v-12,31,-34,-20,-51,-14v-18,1,-27,15,-27,36v1,38,20,96,20,132v0,68,-47,131,-109,133v-20,0,-44,-6,-46,-24v8,-30,43,17,57,11v25,-1,33,-23,33,-54xm126,-62v2,-57,-32,-112,-9,-162v-25,24,-37,47,-38,90v-1,56,32,118,6,172v28,-27,39,-50,41,-100","w":151},"\u00b6":{"d":"67,-140v0,-45,44,-70,97,-66r5,-20r15,0r-5,20r25,0r-3,12r-25,0r-23,91r35,0r-3,12r-36,0v-15,60,-30,158,-94,152v-26,5,-51,-25,-26,-35v17,7,33,29,56,12v31,-24,36,-85,50,-129v-41,2,-68,-13,-68,-49xm161,-194v-46,-4,-69,52,-44,83v4,4,11,7,21,8","w":180},"\u00df":{"d":"-67,78v4,-29,62,4,75,-18v43,-75,43,-224,92,-290v21,-29,84,-24,84,17v0,39,-43,60,-49,90v3,26,28,45,26,72v-2,30,-19,51,-50,55v-27,3,-46,-36,-19,-41v21,-4,2,34,23,30v52,-9,6,-73,-3,-100v3,-31,57,-79,51,-105v2,-28,-34,-33,-46,-13v-55,94,-28,302,-160,317v-13,1,-23,-4,-24,-14","w":151},"\u00ae":{"d":"33,-119v0,-75,54,-129,129,-129v75,0,129,55,129,129v0,74,-55,129,-129,129v-74,0,-129,-54,-129,-129xm278,-119v0,-67,-48,-116,-116,-116v-68,0,-116,48,-116,116v0,68,49,116,116,116v67,0,116,-49,116,-116xm109,-166v0,-19,0,-22,-16,-23r0,-7v52,0,120,-9,120,40v-1,23,-18,34,-39,39v16,21,30,46,48,64v2,4,13,0,10,9r-32,0r-52,-71r-14,0v4,26,-13,70,21,65r0,6r-64,0r0,-6v17,-1,18,-4,18,-24r0,-92xm185,-155v0,-24,-27,-40,-51,-30r0,62v30,2,50,-8,51,-32","w":266},"\u00a9":{"d":"33,-119v0,-75,54,-129,129,-129v75,0,129,55,129,129v0,74,-55,129,-129,129v-74,0,-129,-54,-129,-129xm278,-119v0,-67,-48,-116,-116,-116v-68,0,-116,48,-116,116v0,68,49,116,116,116v67,0,116,-49,116,-116xm81,-118v0,-60,68,-101,127,-73v6,1,5,-11,15,-8r4,49r-7,0v-18,-68,-118,-46,-110,27v-8,73,79,95,113,44r7,3v-36,65,-149,35,-149,-42","w":266},"\u00b4":{"d":"118,-220r34,0r-60,51r-10,0","w":107},"\u00a8":{"d":"77,-185v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm128,-185v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":129},"\u00c6":{"d":"284,-210v-6,19,-7,21,-10,45r-9,0v16,-42,-30,-30,-60,-30r-20,78v30,-2,51,8,52,-18r9,0v-6,19,-10,36,-12,51r-9,0v11,-29,-19,-22,-43,-23r-24,93v37,-6,58,0,93,2v36,2,-9,-34,18,-39v8,1,15,7,14,18v-9,68,-114,16,-175,37v2,-15,20,-10,24,-24r15,-50r-54,0v-26,33,-40,88,-86,98v-17,3,-26,-22,-7,-23v12,3,23,9,33,-3v34,-41,89,-160,129,-199v-6,-7,-21,-1,-31,2r2,-9v44,-11,102,5,151,-6xm150,-84r27,-113v-27,30,-53,67,-77,113v17,2,32,1,50,0","w":266},"\u00d8":{"d":"70,-17v-67,-83,31,-240,141,-182r20,-26r9,7r-20,26v75,79,-30,250,-142,182r-24,31r-8,-7xm196,-179v-55,-52,-116,15,-116,90v0,19,3,35,9,48xm139,-8v68,0,91,-104,63,-162r-107,139v8,13,24,23,44,23","w":237},"\u00b1":{"d":"111,-122r0,-68r20,0r0,68r68,0r0,19r-68,0r0,69r-20,0r0,-69r-68,0r0,-19r68,0xm199,-20r0,20r-156,0r0,-20r156,0","w":197},"\u00a5":{"d":"217,0v-33,8,-56,-5,-94,2v-1,-12,22,-12,23,-17v6,-7,14,-39,18,-55r-55,0r3,-11r55,0v2,-8,3,-13,3,-18r-54,0r3,-10r52,0v-2,-33,-15,-68,-32,-86v-35,12,-55,25,-62,59v-2,10,15,21,15,29v0,5,-4,11,-10,10v-25,-5,-19,-47,-7,-66v17,-26,48,-39,85,-50v21,26,32,56,36,102v31,-64,58,-111,111,-125v11,0,18,14,8,20v-60,7,-82,59,-108,107r51,0r-3,10r-53,0v-2,4,-4,9,-7,18r55,0r-2,11r-57,0v-7,24,-12,45,-14,62v16,2,27,1,43,-2","w":259},"\u00b5":{"d":"173,-39v-1,6,-5,23,6,20v3,0,7,-1,11,-2r-2,9v-15,2,-45,29,-48,1v0,-3,1,-7,2,-12v-19,21,-66,45,-79,6v-9,22,7,69,-23,72v-18,-4,-12,-17,-4,-35v25,-57,35,-96,49,-159r28,0r-25,105v6,26,45,14,57,-3r26,-102r27,0","w":207},"\u00aa":{"d":"35,-138v7,-35,31,-74,79,-70v1,-6,9,-5,14,-6v-5,26,-21,53,-20,81v12,-2,18,-20,25,-6v-17,15,-31,23,-42,23v-12,0,-7,-12,-4,-18v-14,12,-26,17,-35,17v-11,0,-17,-9,-17,-21xm57,-145v0,16,14,14,23,5v12,-11,15,-36,21,-54v-29,-7,-44,26,-44,49","w":93},"\u00ba":{"d":"42,-145v-2,-33,28,-65,59,-65v18,0,28,13,28,31v2,30,-30,64,-58,63v-18,0,-29,-12,-29,-29xm80,-127v24,1,39,-64,11,-73v-24,0,-40,64,-11,73","w":93},"\u00e6":{"d":"49,5v-32,-5,-24,-53,-10,-79v21,-39,44,-77,104,-70v2,-7,8,-8,16,-9r-5,17v18,-16,59,-19,56,11v-4,43,-35,45,-76,67v-2,17,-3,40,13,40v11,0,27,-7,47,-23r6,7v-25,26,-48,39,-70,39v-20,-1,-26,-16,-26,-38v-13,16,-31,34,-55,38xm185,-118v-7,-28,-31,-11,-37,8v-4,14,-9,27,-11,40v22,-10,44,-23,48,-48xm54,-41v-2,30,21,26,37,10v19,-19,25,-62,35,-93v-52,-13,-69,39,-72,83","w":194},"\u00f8":{"d":"47,-9v-32,-64,32,-168,102,-130v6,-7,11,-22,20,-10r-13,18v34,63,-35,162,-102,128v-6,6,-11,21,-19,9xm110,-135v-31,0,-50,55,-41,98r62,-79v-4,-13,-11,-19,-21,-19xm92,-9v33,0,47,-54,42,-95r-62,78v5,11,11,17,20,17","w":158},"\u00bf":{"d":"139,-131v4,24,-35,38,-35,8v-5,-27,34,-34,35,-8xm74,68v-47,0,-68,-66,-34,-98v10,-22,74,-18,71,-55r11,0v-6,36,0,46,-24,55v-36,13,-54,22,-60,53v1,33,35,32,52,14v7,-3,15,2,15,9v0,12,-16,22,-31,22","w":143},"\u00a1":{"d":"101,-130v0,11,-7,25,-19,25v-9,0,-17,-7,-16,-18v-5,-27,34,-32,35,-7xm66,57v0,11,-39,21,-31,2v9,-22,28,-108,37,-144r11,0v-8,56,-14,103,-17,142","w":100},"\u00ac":{"d":"218,-143r0,80r-20,0r0,-60r-135,0r0,-20r155,0","w":216},"\u0192":{"d":"195,-233v-6,29,-53,-9,-67,15v-14,16,-21,55,-28,82r47,0r-3,12r-47,0v-28,85,-24,207,-126,216v-23,2,-30,-26,-8,-26v18,0,43,13,53,-3v29,-47,37,-128,55,-187r-42,0r3,-12r42,0v14,-64,38,-104,99,-112v11,-1,21,6,22,15","w":143},"\u00ab":{"d":"146,-131v-5,16,-30,41,-48,59v6,10,26,40,28,58v-1,8,-10,6,-13,-2v-4,-11,-17,-30,-39,-57r68,-63v2,-1,5,3,4,5xm101,-131v-7,16,-30,41,-49,59v7,9,26,40,28,58v-2,8,-9,6,-12,-2v-4,-11,-18,-30,-40,-57r68,-63v3,-1,6,2,5,5","w":122},"\u00bb":{"d":"21,-14v7,-18,30,-39,49,-59v-7,-9,-26,-40,-28,-58v2,-8,9,-6,12,2v4,11,18,30,40,57r-68,63v-2,0,-6,-2,-5,-5xm66,-14v6,-18,31,-39,49,-59v-6,-10,-26,-40,-28,-58v2,-8,9,-6,12,2v4,11,18,30,40,57v-19,19,-43,34,-59,56v-6,8,-11,9,-14,2","w":136},"\u00a0":{"w":79},"\u00c0":{"d":"101,-131v-28,-8,-6,-56,12,-62v22,-20,83,-9,106,-29v-14,69,-20,139,-29,213v15,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v10,-22,12,-32,15,-65v-14,0,-35,-1,-64,0v-46,62,-49,91,-105,104v-18,3,-26,-21,-9,-24v21,2,29,6,46,-10v33,-32,120,-176,152,-207v-54,6,-72,5,-84,41v2,8,11,27,-5,28xm172,-76v6,-48,11,-83,17,-105r-73,105r56,0xm169,-284r29,0r19,51r-10,0"},"\u00c3":{"d":"221,-239v-22,1,-46,-28,-57,0r-9,0v4,-20,14,-32,32,-33v16,-1,53,26,59,0r10,0v-5,18,-17,32,-35,33xm101,-131v-28,-8,-6,-56,12,-62v22,-20,83,-9,106,-29v-14,69,-20,139,-29,213v15,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v10,-22,12,-32,15,-65v-14,0,-35,-1,-64,0v-46,62,-49,91,-105,104v-18,3,-26,-21,-9,-24v21,2,29,6,46,-10v33,-32,120,-176,152,-207v-54,6,-72,5,-84,41v2,8,11,27,-5,28xm172,-76v6,-48,11,-83,17,-105r-73,105r56,0"},"\u00d5":{"d":"186,-239v-22,1,-46,-28,-57,0r-10,0v4,-20,14,-31,33,-33v16,-1,53,26,59,0r10,0v-5,17,-17,31,-35,33xm37,-77v4,-71,45,-133,121,-133v49,1,78,34,78,84v0,69,-48,129,-119,131v-47,1,-82,-35,-80,-82xm128,-8v85,2,108,-184,17,-190v-89,-5,-108,185,-17,190","w":216},"\u0152":{"d":"212,-18v21,0,77,20,84,-3v-4,-8,-15,-28,2,-30v9,-1,15,10,14,19v-12,68,-130,17,-195,36v-48,0,-81,-35,-80,-85v1,-75,48,-129,123,-130v53,0,103,10,153,1v-6,19,-7,25,-9,45r-9,0v4,-22,2,-30,-23,-30v-22,0,-37,0,-48,1v-2,13,-9,38,-19,77v29,-3,59,9,61,-18r9,0v-6,19,-10,37,-12,52r-9,0v13,-31,-26,-23,-52,-24v-9,36,-17,68,-25,94v13,-3,25,-5,35,-5xm190,-174v0,-16,-15,-27,-31,-27v-56,1,-91,56,-91,116v0,48,30,94,75,72v20,-5,39,-128,47,-161","w":295},"\u0153":{"d":"111,-148v20,1,27,10,34,29v14,-20,31,-29,49,-29v31,1,28,38,9,55v-11,9,-29,21,-57,33v-3,20,-5,41,12,41v10,0,25,-8,45,-25r5,8v-18,20,-41,37,-67,41v-13,-1,-21,-11,-23,-25v-20,34,-87,35,-87,-21v0,-49,36,-109,80,-107xm83,-9v36,-5,47,-81,31,-115v-4,-7,-10,-11,-16,-11v-27,0,-38,45,-38,81v0,23,5,43,23,45xm192,-117v2,-20,-19,-21,-28,-6v-6,11,-13,29,-17,53v22,-12,43,-22,45,-47","w":201},"\u00f7":{"d":"115,-154v0,-20,32,-20,32,0v0,20,-32,20,-32,0xm209,-113r0,20r-156,0r0,-20r156,0xm115,-52v0,-20,32,-20,32,0v0,8,-8,15,-16,15v-8,0,-16,-7,-16,-15","w":197},"\u00ff":{"d":"96,-3v0,-46,-13,-153,-66,-109r-6,-8v16,-9,28,-23,48,-28v29,22,46,83,43,133v28,-53,36,-73,24,-122v0,-6,5,-12,11,-12v26,9,15,45,4,75v-24,68,-59,156,-141,166v-13,1,-24,-4,-24,-14v0,-20,32,-10,49,-9v32,-6,58,-37,58,-72xm84,-185v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm135,-185v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":143},"\u0178":{"d":"278,-236v10,0,18,13,9,20v-56,6,-76,49,-102,93v-18,29,-32,84,-37,115v17,2,27,1,44,-2v-16,29,-58,1,-98,12v0,-13,22,-13,24,-18v11,-29,38,-101,15,-139v-6,-17,-14,-30,-23,-40v-35,12,-55,25,-62,59v-2,10,15,21,15,29v0,5,-3,11,-9,10v-27,-4,-20,-47,-8,-66v17,-26,48,-39,85,-50v21,26,32,56,36,102v31,-64,58,-111,111,-125xm147,-249v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm198,-249v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":201},"\u00c2":{"d":"204,-284r26,0r13,51r-10,0r-18,-32v-21,10,-30,31,-59,32xm101,-131v-28,-8,-6,-56,12,-62v22,-20,83,-9,106,-29v-14,69,-20,139,-29,213v15,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v10,-22,12,-32,15,-65v-14,0,-35,-1,-64,0v-46,62,-49,91,-105,104v-18,3,-26,-21,-9,-24v21,2,29,6,46,-10v33,-32,120,-176,152,-207v-54,6,-72,5,-84,41v2,8,11,27,-5,28xm172,-76v6,-48,11,-83,17,-105r-73,105r56,0"},"\u00ca":{"d":"182,-284r27,0r13,51r-10,0r-19,-32v-20,10,-30,30,-58,32xm24,-110v1,-54,45,-96,109,-96v33,0,83,2,107,-4v-5,19,-8,33,-9,41r-10,0v13,-40,-32,-20,-74,-25r-20,78v25,-3,64,10,64,-16r10,0v-4,14,-7,30,-10,47r-9,0v8,-31,-33,-17,-57,-20v-10,40,-22,70,-33,93v33,-12,70,3,103,6v30,3,1,-38,24,-41v9,0,13,7,13,16v0,53,-84,33,-134,31v-17,0,-38,1,-61,4r3,-9v47,-11,39,-28,53,-84r27,-106v-43,1,-76,29,-80,70v-2,18,26,42,1,49v-14,-1,-17,-19,-17,-34"},"\u00c1":{"d":"101,-131v-28,-8,-6,-56,12,-62v22,-20,83,-9,106,-29v-14,69,-20,139,-29,213v15,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v10,-22,12,-32,15,-65v-14,0,-35,-1,-64,0v-46,62,-49,91,-105,104v-18,3,-26,-21,-9,-24v21,2,29,6,46,-10v33,-32,120,-176,152,-207v-54,6,-72,5,-84,41v2,8,11,27,-5,28xm172,-76v6,-48,11,-83,17,-105r-73,105r56,0xm227,-284r34,0r-60,51r-10,0"},"\u00cb":{"d":"24,-110v1,-54,45,-96,109,-96v33,0,83,2,107,-4v-5,19,-8,33,-9,41r-10,0v13,-40,-32,-20,-74,-25r-20,78v25,-3,64,10,64,-16r10,0v-4,14,-7,30,-10,47r-9,0v8,-31,-33,-17,-57,-20v-10,40,-22,70,-33,93v33,-12,70,3,103,6v30,3,1,-38,24,-41v9,0,13,7,13,16v0,53,-84,33,-134,31v-17,0,-38,1,-61,4r3,-9v47,-11,39,-28,53,-84r27,-106v-43,1,-76,29,-80,70v-2,18,26,42,1,49v-14,-1,-17,-19,-17,-34xm139,-249v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm190,-249v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16"},"\u00c8":{"d":"24,-110v1,-54,45,-96,109,-96v33,0,83,2,107,-4v-5,19,-8,33,-9,41r-10,0v13,-40,-32,-20,-74,-25r-20,78v25,-3,64,10,64,-16r10,0v-4,14,-7,30,-10,47r-9,0v8,-31,-33,-17,-57,-20v-10,40,-22,70,-33,93v33,-12,70,3,103,6v30,3,1,-38,24,-41v9,0,13,7,13,16v0,53,-84,33,-134,31v-17,0,-38,1,-61,4r3,-9v47,-11,39,-28,53,-84r27,-106v-43,1,-76,29,-80,70v-2,18,26,42,1,49v-14,-1,-17,-19,-17,-34xm148,-284r29,0r19,51r-10,0"},"\u00cd":{"d":"116,2v-30,-1,-65,-4,-92,1r2,-9v21,-5,34,-3,39,-23r43,-166v-8,0,-18,2,-30,4r3,-10v18,-6,68,-3,90,-7r-3,10v-54,5,-29,15,-53,79v-4,13,-13,50,-27,110v8,3,18,3,31,3xm154,-284r34,0r-60,51r-10,0","w":136},"\u00ce":{"d":"139,-284r27,0r12,51r-10,0r-18,-32v-20,10,-30,30,-58,32xm116,2v-30,-1,-65,-4,-92,1r2,-9v21,-5,34,-3,39,-23r43,-166v-8,0,-18,2,-30,4r3,-10v18,-6,68,-3,90,-7r-3,10v-54,5,-29,15,-53,79v-4,13,-13,50,-27,110v8,3,18,3,31,3","w":136},"\u00cf":{"d":"116,2v-30,-1,-65,-4,-92,1r2,-9v21,-5,34,-3,39,-23r43,-166v-8,0,-18,2,-30,4r3,-10v18,-6,68,-3,90,-7r-3,10v-54,5,-29,15,-53,79v-4,13,-13,50,-27,110v8,3,18,3,31,3xm91,-249v0,-10,8,-17,17,-17v8,0,16,8,16,17v0,8,-8,16,-16,16v-8,0,-17,-8,-17,-16xm142,-249v0,-8,7,-16,16,-16v10,0,17,7,17,16v0,9,-8,16,-17,16v-8,0,-16,-7,-16,-16","w":136},"\u00cc":{"d":"116,2v-30,-1,-65,-4,-92,1r2,-9v21,-5,34,-3,39,-23r43,-166v-8,0,-18,2,-30,4r3,-10v18,-6,68,-3,90,-7r-3,10v-54,5,-29,15,-53,79v-4,13,-13,50,-27,110v8,3,18,3,31,3xm105,-284r29,0r19,51r-10,0","w":136},"\u00d3":{"d":"37,-77v4,-71,45,-133,121,-133v49,1,78,34,78,84v0,69,-48,129,-119,131v-47,1,-82,-35,-80,-82xm128,-8v85,2,108,-184,17,-190v-89,-5,-108,185,-17,190xm193,-284r34,0r-60,51r-10,0","w":216},"\u00d4":{"d":"164,-284r26,0r13,51r-10,0r-18,-32v-20,10,-30,30,-58,32xm37,-77v4,-71,45,-133,121,-133v49,1,78,34,78,84v0,69,-48,129,-119,131v-47,1,-82,-35,-80,-82xm128,-8v85,2,108,-184,17,-190v-89,-5,-108,185,-17,190","w":216},"\u00d2":{"d":"37,-77v4,-71,45,-133,121,-133v49,1,78,34,78,84v0,69,-48,129,-119,131v-47,1,-82,-35,-80,-82xm128,-8v85,2,108,-184,17,-190v-89,-5,-108,185,-17,190xm128,-284r29,0r19,51r-10,0","w":216},"\u00da":{"d":"131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136xm235,-284r34,0r-60,51r-10,0","w":266},"\u00db":{"d":"204,-284r26,0r13,51r-10,0r-18,-32v-21,10,-30,31,-59,32xm131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136","w":266},"\u00d9":{"d":"131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136xm180,-284r29,0r19,51r-10,0","w":266},"\u0131":{"d":"64,-128v-12,3,-13,8,-28,21r-8,-6v18,-19,32,-36,57,-36v7,0,12,3,12,9v1,18,-43,122,-26,125v10,-5,21,-14,28,-22r8,7v-26,22,-26,27,-54,35v-9,0,-13,-6,-13,-15v2,-32,23,-92,27,-114v0,-2,-1,-4,-3,-4","w":86},"\u00b8":{"d":"29,67v22,1,49,-32,18,-39v-1,0,-2,1,-3,1r19,-32r11,0r-11,20v26,3,24,29,5,43v-10,7,-25,14,-43,17","w":107},"\u0141":{"d":"109,-17v22,-1,106,32,80,-21v0,-5,5,-10,10,-10v10,0,12,8,13,18v-15,70,-125,16,-195,33r2,-10v44,-10,33,-18,50,-71r-42,23r3,-15r42,-23v19,-71,31,-105,96,-119v20,-4,47,24,23,32v-19,-8,-39,-34,-58,-4v-11,18,-22,42,-30,74r60,-33r-3,14r-61,34v-13,44,-12,60,-30,84v18,-4,31,-6,40,-6","w":208},"\u0142":{"d":"181,-235v-4,29,-57,-11,-67,29r-20,80r54,-36r-4,16r-53,36r-21,90v0,4,1,6,4,6v14,2,35,-39,46,-22v-13,15,-41,39,-63,41v-8,0,-12,-6,-12,-15v-1,-9,11,-58,16,-80r-37,24r3,-15r38,-25v17,-62,23,-141,100,-142v9,1,17,4,16,13","w":107},"\u0160":{"d":"126,-284r11,0r17,31v20,-10,31,-29,59,-31r-47,51r-27,0xm193,-204v-8,23,-7,27,-12,61r-9,0v5,-31,2,-55,-25,-57v-24,-1,-51,22,-49,46v4,44,64,58,62,102v-2,47,-44,77,-94,78v-28,1,-57,-18,-59,-40v-2,-14,14,-24,24,-14v7,18,12,43,39,43v30,0,65,-26,63,-55v-2,-46,-61,-55,-61,-103v0,-54,61,-80,121,-61","w":165},"\u0161":{"d":"80,-221r11,0r17,32v20,-10,31,-29,58,-32r-46,52r-27,0xm59,-105v0,-24,23,-45,49,-43v24,-5,46,25,20,32v-12,0,-19,-23,-30,-21v-51,21,26,66,23,95v6,47,-93,69,-98,17v0,-7,6,-14,13,-14v21,-1,3,33,30,33v18,0,32,-10,32,-26v0,-24,-39,-46,-39,-73","w":115},"\u017d":{"d":"146,-284r11,0r17,31v20,-10,31,-29,59,-31r-47,51r-27,0xm29,8v-8,-2,-4,-11,2,-17r129,-132v13,-13,25,-27,38,-43v-29,10,-64,-5,-90,-10v-8,0,-16,4,-16,11v5,9,28,28,4,33v-35,-13,-11,-64,23,-61v43,4,85,16,116,-3v13,5,2,12,-10,25r-120,122r-50,54v57,-22,92,-2,141,7v31,6,-1,-40,24,-42v8,0,13,7,13,16v-9,77,-145,10,-204,40"},"\u017e":{"d":"101,-221r11,0r17,32v20,-10,31,-30,59,-32r-47,52r-27,0xm41,-9v-6,0,-36,21,-24,0v26,-28,92,-86,125,-121v-21,7,-40,6,-63,3v-12,-1,-15,14,-4,15v12,1,8,14,0,15v-9,1,-19,-11,-18,-22v3,-51,83,-10,111,-33v4,0,7,5,3,8v-30,33,-90,88,-121,117v31,-7,57,13,81,13v30,0,-3,-36,20,-39v7,-1,13,7,12,15v-3,25,-22,43,-52,43v-13,0,-55,-15,-70,-14","w":158},"\u00a6":{"d":"117,-91r0,-157r20,0r0,148xm117,88r0,-147r20,-10r0,157r-20,0","w":187},"\u00d0":{"d":"146,3v-32,0,-58,-5,-92,-3v4,-17,29,-4,32,-21v9,-14,18,-53,24,-75r-40,0r3,-11r40,0r13,-56v0,-6,-6,-8,-12,-6r2,-8v13,-1,28,-3,45,-7r-21,77r63,0r-3,11r-63,0v-7,31,-18,65,-29,85v77,15,129,-31,130,-102v0,-50,-32,-88,-82,-87v-63,1,-113,43,-119,101v-2,23,22,29,29,44v0,5,-5,11,-11,11v-17,-1,-31,-31,-30,-48v4,-72,63,-119,140,-120v59,-1,106,36,106,91v0,71,-54,124,-125,124","w":252},"\u00f0":{"d":"123,-141v-7,-35,-2,-11,-16,-57r-54,8r-1,-10r52,-8r-17,-40r11,0v8,12,17,24,25,38r46,-7r2,9r-43,6v15,25,29,67,31,104v2,46,-43,103,-87,103v-24,0,-43,-21,-42,-45v2,-50,31,-103,79,-106v5,0,9,2,14,5xm128,-85v0,-24,-5,-49,-25,-49v-32,0,-43,44,-43,78v0,23,6,45,25,47v30,-3,42,-42,43,-76","w":143},"\u00dd":{"d":"278,-236v10,0,18,13,9,20v-56,6,-76,49,-102,93v-18,29,-32,84,-37,115v17,2,27,1,44,-2v-16,29,-58,1,-98,12v0,-13,22,-13,24,-18v11,-29,38,-101,15,-139v-6,-17,-14,-30,-23,-40v-35,12,-55,25,-62,59v-2,10,15,21,15,29v0,5,-3,11,-9,10v-27,-4,-20,-47,-8,-66v17,-26,48,-39,85,-50v21,26,32,56,36,102v31,-64,58,-111,111,-125xm207,-284r34,0r-60,51r-10,0","w":201},"\u00fd":{"d":"96,-3v0,-46,-13,-153,-66,-109r-6,-8v16,-9,28,-23,48,-28v29,22,46,83,43,133v28,-53,36,-73,24,-122v0,-6,5,-12,11,-12v26,9,15,45,4,75v-24,68,-59,156,-141,166v-13,1,-24,-4,-24,-14v0,-20,32,-10,49,-9v32,-6,58,-37,58,-72xm136,-220r34,0r-60,51r-10,0","w":143},"\u00de":{"d":"52,-54v-33,-8,-26,-62,0,-82v16,-13,37,-25,66,-30r6,-30v-11,0,-16,-1,-29,2r3,-10v34,-4,62,1,90,-6v-7,23,-44,3,-42,42v41,-6,73,16,74,51v0,47,-55,76,-107,69r-11,39v17,5,25,4,44,1r-2,10v-35,6,-66,-8,-101,2r3,-10v25,-4,31,-11,38,-34r30,-113v-38,7,-67,25,-71,58v-2,14,18,20,19,31v1,6,-4,10,-10,10xm116,-58v53,9,95,-51,61,-88v-7,-8,-19,-10,-35,-10","w":194},"\u00fe":{"d":"180,-235v-5,25,-47,-1,-61,15v-13,27,-22,82,-32,116v29,-28,34,-44,67,-44v15,0,21,16,21,34v1,55,-49,145,-110,112r-17,67v3,15,15,12,37,16r-2,9v-34,-3,-52,-3,-88,0r2,-9v20,-2,25,-9,29,-28r52,-216v10,-50,34,-85,85,-85v9,0,16,5,17,13xm150,-104v0,-23,-19,-25,-35,-13v-29,22,-36,54,-46,96v9,9,18,14,28,14v30,1,53,-63,53,-97","w":158},"\u00d7":{"d":"140,-103r51,52r-14,13r-51,-51r-52,51r-14,-13r52,-52r-52,-52r14,-13r52,51r51,-51r14,14","w":187},"\u00b9":{"d":"61,-188v26,-6,29,-17,53,-24v-8,34,-22,70,-27,104v1,0,7,2,18,3v-16,14,-38,-2,-66,6v8,-14,28,-4,29,-21v6,-22,19,-48,17,-69v-2,0,-8,3,-21,8","w":95},"\u00b2":{"d":"101,-183v0,-24,-34,-17,-39,2r-9,-4v10,-30,70,-37,70,-1v0,33,-56,51,-69,72v24,-1,45,5,51,-12r11,0v-7,8,-12,18,-16,28v-24,-4,-37,-4,-68,-2v11,-31,69,-47,69,-83","w":95},"\u00b3":{"d":"66,-160v14,-1,48,-27,22,-39v-9,-3,-20,18,-30,8v12,-13,25,-19,37,-19v35,1,20,37,0,45v13,1,21,9,21,21v0,23,-33,46,-59,46v-10,0,-22,-4,-23,-12v4,-16,21,4,29,4v19,0,49,-43,17,-49v-4,0,-9,1,-15,3","w":95},"\u00bd":{"d":"82,1r117,-212v3,1,8,2,14,3v-42,68,-78,139,-116,211v-5,-1,-10,-2,-15,-2xm74,-188v26,-6,29,-17,53,-24v-8,34,-22,70,-27,104v1,0,7,2,18,3v-16,14,-38,-2,-66,6v8,-14,28,-4,29,-21v6,-22,19,-48,17,-69v-2,0,-8,3,-21,8xm213,-82v0,-24,-34,-17,-39,2r-9,-4v10,-30,70,-37,70,-1v0,33,-56,51,-69,72v24,-1,45,5,51,-12r11,0v-7,8,-12,18,-16,28v-24,-4,-37,-4,-68,-2v11,-31,69,-47,69,-83","w":237},"\u00bc":{"d":"145,-30v17,-30,50,-56,83,-80r6,0r-20,72r16,0r-3,11r-16,0r-8,30r-19,0r8,-30v-15,-2,-38,4,-47,-3xm195,-39v3,-11,6,-25,12,-44v-17,13,-32,27,-45,44r33,0xm83,1r117,-212v3,1,8,2,14,3v-42,68,-78,139,-116,211v-5,-1,-10,-2,-15,-2xm75,-188v26,-6,29,-17,53,-24v-8,34,-22,70,-27,104v1,0,7,2,18,3v-16,14,-38,-2,-66,6v8,-14,28,-4,29,-21v6,-22,19,-48,17,-69v-2,0,-8,3,-21,8","w":237},"\u00be":{"d":"147,-30v17,-30,50,-56,83,-80r6,0r-20,72r16,0r-3,11r-16,0r-8,30r-18,0r7,-30v-15,-2,-38,4,-47,-3xm197,-39v3,-11,6,-25,12,-44v-17,13,-32,27,-45,44r33,0xm85,1r117,-212v3,1,8,2,14,3v-42,68,-78,139,-116,211v-5,-1,-10,-2,-15,-2xm82,-160v14,-1,48,-27,22,-39v-9,-3,-20,18,-30,8v12,-13,25,-19,37,-19v35,1,20,37,0,45v13,1,21,9,21,21v0,23,-33,46,-59,46v-10,0,-22,-4,-23,-12v4,-16,21,4,29,4v19,0,49,-43,17,-49v-4,0,-9,1,-15,3","w":237},"\u011e":{"d":"181,-233v-22,0,-34,-23,-30,-49r9,0v2,41,57,26,66,0r11,0v-14,25,-26,49,-56,49xm46,-72v7,-85,74,-154,165,-134v14,3,26,5,33,5v-6,22,-10,43,-10,61r-10,0v6,-36,-10,-60,-41,-60v-62,0,-103,61,-107,126v-3,57,51,81,94,53v5,-18,8,-31,8,-37v-1,-12,-13,-11,-28,-9v5,-22,44,-2,74,-11r-1,9v-18,1,-16,7,-21,25v-18,63,-25,97,-60,125v-23,18,-73,15,-78,-13v15,-37,40,37,68,3v10,-12,23,-38,34,-79v-51,32,-125,3,-120,-64"},"\u011f":{"d":"120,-169v-22,0,-33,-24,-29,-49r9,0v2,41,57,26,66,0r10,0v-14,25,-26,49,-56,49xm64,-7v-19,12,-35,8,-36,-15v0,-47,34,-94,65,-112v13,-9,32,-11,54,-10v1,-7,10,-6,16,-8v-14,49,-36,99,-36,156v0,57,-28,86,-81,89v-39,2,-66,-34,-40,-63v8,-9,42,-27,58,-37xm53,-37v0,36,41,12,50,-4v9,-17,19,-58,26,-82v-54,-16,-76,48,-76,86xm46,82v51,-4,60,-50,59,-109v-14,20,-90,47,-90,83v0,15,16,27,31,26","w":143},"\u0130":{"d":"134,-237v-22,0,-23,-36,0,-36v11,0,18,7,18,18v0,10,-8,18,-18,18xm116,2v-30,-1,-65,-4,-92,1r2,-9v21,-5,34,-3,39,-23r43,-166v-8,0,-18,2,-30,4r3,-10v18,-6,68,-3,90,-7r-3,10v-54,5,-29,15,-53,79v-4,13,-13,50,-27,110v8,3,18,3,31,3","w":136},"\u015e":{"d":"193,-204v-8,23,-7,27,-12,61r-9,0v5,-31,2,-55,-25,-57v-24,-1,-51,22,-49,46v4,44,64,58,62,102v-2,47,-44,77,-94,78v-28,1,-57,-18,-59,-40v-2,-14,14,-24,24,-14v7,18,12,43,39,43v30,0,65,-26,63,-55v-2,-46,-61,-55,-61,-103v0,-54,61,-80,121,-61xm29,89v22,1,49,-32,18,-39v-1,0,-2,1,-3,1r19,-32r11,0r-11,20v26,3,24,29,5,43v-10,7,-25,14,-43,17","w":165},"\u015f":{"d":"59,-105v0,-24,23,-45,49,-43v24,-5,46,25,20,32v-12,0,-19,-23,-30,-21v-51,21,26,66,23,95v6,47,-93,69,-98,17v0,-7,6,-14,13,-14v21,-1,3,33,30,33v18,0,32,-10,32,-26v0,-24,-39,-46,-39,-73xm33,67v22,1,49,-32,18,-39v-1,0,-2,1,-3,1r19,-32r11,0r-11,20v26,3,24,29,5,43v-10,7,-25,14,-43,17","w":115},"\u0106":{"d":"34,-55v0,-95,88,-190,187,-142v-7,20,-10,42,-11,63r-10,0v5,-37,-3,-69,-35,-67v-62,4,-95,77,-99,144v-5,77,75,103,110,39v3,-5,10,-3,11,1v-8,23,-44,51,-77,51v-49,-1,-76,-37,-76,-89xm180,-284r34,0r-60,51r-10,0","w":187},"\u0107":{"d":"58,-47v0,48,41,36,69,9r4,10v-28,22,-52,33,-71,33v-21,0,-30,-18,-29,-39v3,-53,33,-108,88,-114v24,-2,37,27,13,29v-8,1,-26,-12,-33,-11v-30,3,-41,50,-41,83xm132,-220r34,0r-60,51r-10,0","w":122},"\u010c":{"d":"137,-284r11,0r17,31v20,-10,31,-28,58,-31r-46,51r-27,0xm34,-55v0,-95,88,-190,187,-142v-7,20,-10,42,-11,63r-10,0v5,-37,-3,-69,-35,-67v-62,4,-95,77,-99,144v-5,77,75,103,110,39v3,-5,10,-3,11,1v-8,23,-44,51,-77,51v-49,-1,-76,-37,-76,-89","w":187},"\u010d":{"d":"90,-221r11,0r17,32v20,-10,31,-29,58,-32r-46,52r-27,0xm58,-47v0,48,41,36,69,9r4,10v-28,22,-52,33,-71,33v-21,0,-30,-18,-29,-39v3,-53,33,-108,88,-114v24,-2,37,27,13,29v-8,1,-26,-12,-33,-11v-30,3,-41,50,-41,83","w":122},"\u0111":{"d":"27,-27v5,-54,45,-128,105,-119v3,-14,7,-25,10,-33r-44,0r3,-12r45,0v13,-31,38,-57,78,-57v9,0,15,5,15,14v-11,30,-70,-17,-71,43r46,0r-2,12r-47,0r-35,155v0,4,2,7,5,7v12,-3,15,-7,31,-19r5,6v-24,20,-35,32,-60,36v-19,-3,-4,-27,-1,-39v-22,22,-33,34,-61,38v-15,-1,-24,-13,-22,-32xm54,-39v-1,20,16,24,32,14v28,-18,32,-60,43,-102v-54,-19,-70,46,-75,88","w":158},"\u00af":{"d":"51,-242r184,0r0,18r-184,0r0,-18","w":180},"\u00b7":{"d":"114,-169v-23,0,-18,-33,0,-33v9,0,16,7,16,17v0,9,-8,16,-16,16","w":119},"\u0102":{"d":"202,-233v-22,0,-32,-21,-30,-49r10,0v2,41,56,25,66,0r10,0v-14,25,-26,49,-56,49xm101,-131v-28,-8,-6,-56,12,-62v22,-20,83,-9,106,-29v-14,69,-20,139,-29,213v15,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v10,-22,12,-32,15,-65v-14,0,-35,-1,-64,0v-46,62,-49,91,-105,104v-18,3,-26,-21,-9,-24v21,2,29,6,46,-10v33,-32,120,-176,152,-207v-54,6,-72,5,-84,41v2,8,11,27,-5,28xm172,-76v6,-48,11,-83,17,-105r-73,105r56,0"},"\u0103":{"d":"126,-169v-22,0,-34,-23,-30,-49r9,0v2,41,57,26,66,0r11,0v-14,25,-26,49,-56,49xm109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83","w":151},"\u0104":{"d":"191,63v-22,7,-46,2,-47,-20v0,-13,6,-28,18,-46r12,0v-18,23,-16,62,22,56xm101,-131v-28,-8,-6,-56,12,-62v22,-20,83,-9,106,-29v-14,69,-20,139,-29,213v15,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v10,-22,12,-32,15,-65v-14,0,-35,-1,-64,0v-46,62,-49,91,-105,104v-18,3,-26,-21,-9,-24v21,2,29,6,46,-10v33,-32,120,-176,152,-207v-54,6,-72,5,-84,41v2,8,11,27,-5,28xm172,-76v6,-48,11,-83,17,-105r-73,105r56,0"},"\u0105":{"d":"137,63v-22,7,-46,2,-47,-20v0,-13,6,-28,18,-46r12,0v-18,23,-16,62,22,56xm109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83","w":151},"\u010e":{"d":"163,-284r11,0r17,31v20,-10,31,-28,58,-31r-46,51r-27,0xm125,-156v3,-10,-2,-17,-11,-13r2,-8v13,-1,28,-3,45,-7v-18,50,-30,135,-53,173v77,15,129,-31,130,-102v0,-50,-32,-88,-82,-87v-63,1,-113,43,-119,101v-2,23,22,29,29,44v0,5,-5,11,-11,11v-17,-1,-31,-31,-30,-48v4,-72,63,-119,140,-120v59,-1,106,36,106,91v0,71,-54,124,-125,124v-32,0,-58,-5,-92,-3v2,-16,29,-4,31,-18v17,-32,28,-96,40,-138","w":252},"\u010f":{"d":"250,-248v41,16,-8,77,-26,85r-3,-12v25,-18,25,-34,14,-57v-1,-9,7,-16,15,-16xm189,-228v-22,8,-20,36,-29,73r-30,130v7,18,15,3,36,-11r5,6v-27,24,-47,36,-60,36v-21,0,-3,-28,-1,-39v-24,26,-45,38,-61,38v-15,0,-24,-14,-22,-32v5,-53,45,-128,105,-119v15,-59,29,-93,75,-102v8,0,15,5,15,14v0,18,-26,9,-33,6xm54,-39v-1,21,19,24,36,11v25,-19,28,-60,39,-99v-52,-21,-73,51,-75,88","w":173},"\u0110":{"d":"146,3v-32,0,-58,-5,-92,-3v4,-17,29,-4,32,-21v9,-14,18,-53,24,-75r-40,0r3,-11r40,0r13,-56v0,-6,-6,-8,-12,-6r2,-8v13,-1,28,-3,45,-7r-21,77r63,0r-3,11r-63,0v-7,31,-18,65,-29,85v77,15,129,-31,130,-102v0,-50,-32,-88,-82,-87v-63,1,-113,43,-119,101v-2,23,22,29,29,44v0,5,-5,11,-11,11v-17,-1,-31,-31,-30,-48v4,-72,63,-119,140,-120v59,-1,106,36,106,91v0,71,-54,124,-125,124","w":252},"\u0118":{"d":"223,63v-22,7,-46,2,-47,-20v0,-13,6,-28,18,-46r12,0v-18,23,-16,62,22,56xm24,-110v1,-54,45,-96,109,-96v33,0,83,2,107,-4v-5,19,-8,33,-9,41r-10,0v13,-40,-32,-20,-74,-25r-20,78v25,-3,64,10,64,-16r10,0v-4,14,-7,30,-10,47r-9,0v8,-31,-33,-17,-57,-20v-10,40,-22,70,-33,93v33,-12,70,3,103,6v30,3,1,-38,24,-41v9,0,13,7,13,16v0,53,-84,33,-134,31v-17,0,-38,1,-61,4r3,-9v47,-11,39,-28,53,-84r27,-106v-43,1,-76,29,-80,70v-2,18,26,42,1,49v-14,-1,-17,-19,-17,-34"},"\u0119":{"d":"88,63v-22,7,-47,2,-48,-20v0,-13,6,-28,18,-46r12,0v-18,23,-16,62,22,56xm73,-18v22,-2,28,-12,50,-26r5,8v-29,27,-52,41,-73,41v-19,-1,-26,-15,-26,-36v-1,-47,38,-117,84,-117v27,0,32,29,18,46v-17,20,-35,27,-72,44v-3,17,-5,42,14,40xm113,-117v-7,-30,-34,-13,-40,8v-4,13,-10,26,-12,39v26,-12,47,-21,52,-47","w":122},"\u011a":{"d":"148,-284r10,0r18,31v20,-10,31,-28,58,-31r-47,51r-27,0xm24,-110v1,-54,45,-96,109,-96v33,0,83,2,107,-4v-5,19,-8,33,-9,41r-10,0v13,-40,-32,-20,-74,-25r-20,78v25,-3,64,10,64,-16r10,0v-4,14,-7,30,-10,47r-9,0v8,-31,-33,-17,-57,-20v-10,40,-22,70,-33,93v33,-12,70,3,103,6v30,3,1,-38,24,-41v9,0,13,7,13,16v0,53,-84,33,-134,31v-17,0,-38,1,-61,4r3,-9v47,-11,39,-28,53,-84r27,-106v-43,1,-76,29,-80,70v-2,18,26,42,1,49v-14,-1,-17,-19,-17,-34"},"\u011b":{"d":"85,-221r11,0r17,32v20,-10,31,-29,58,-32r-46,52r-27,0xm73,-18v22,-2,28,-12,50,-26r5,8v-29,27,-52,41,-73,41v-19,-1,-26,-15,-26,-36v-1,-47,38,-117,84,-117v27,0,32,29,18,46v-17,20,-35,27,-72,44v-3,17,-5,42,14,40xm113,-117v-7,-30,-34,-13,-40,8v-4,13,-10,26,-12,39v26,-12,47,-21,52,-47","w":122},"\u0132":{"d":"116,2v-30,-1,-65,-4,-92,1r2,-8v21,-4,32,-8,35,-13v10,-26,35,-133,47,-177v-10,0,-16,2,-30,4v-4,-24,67,-8,93,-17r-3,10v-17,0,-28,3,-33,9v-5,6,-20,66,-47,178v8,3,19,5,31,4xm279,-196v-46,-4,-88,29,-64,64v0,6,-5,11,-11,11v-9,0,-15,-7,-15,-21v0,-55,58,-71,124,-65v-42,73,-32,244,-137,255v-18,2,-39,-9,-39,-25v14,-34,41,34,65,7v36,-40,54,-162,77,-226","w":280},"\u0133":{"d":"88,-204v-3,-18,28,-28,30,-7v2,18,-28,29,-30,7xm176,-204v-3,-16,29,-29,30,-7v2,19,-28,29,-30,7xm46,77v9,-27,46,17,57,-11v18,-44,40,-155,53,-189v-7,-11,-16,3,-33,17r-6,-7v13,-16,39,-32,59,-36v11,2,10,11,6,22v-19,62,-33,151,-64,195v-12,16,-27,24,-46,24v-13,1,-26,-5,-26,-15xm40,-10v0,-11,14,-69,28,-113v-7,-13,-16,2,-33,16r-7,-6v22,-24,41,-36,57,-36v8,0,12,3,12,9v1,18,-43,121,-26,125v3,0,13,-8,29,-22r6,7v-24,24,-42,35,-53,35v-9,0,-13,-5,-13,-15","w":165},"\u0139":{"d":"212,-31v-13,71,-126,17,-195,34r2,-10v44,-7,37,-27,50,-72v20,-73,32,-121,99,-133v20,-3,47,24,23,32v-15,-2,-27,-28,-45,-16v-46,30,-45,146,-77,185v42,-14,71,2,109,5v30,2,-2,-39,21,-42v9,0,12,8,13,17xm187,-284r34,0r-60,51r-10,0","w":208},"\u013a":{"d":"137,-284r34,0v-21,9,-30,30,-59,31xm64,-14v10,-2,32,-20,40,-28r6,6v-12,14,-42,40,-64,41v-8,0,-12,-6,-12,-16v0,-51,31,-152,49,-194v10,-23,39,-43,71,-43v9,0,16,5,16,13v0,20,-45,9,-47,9v-26,1,-28,51,-33,74r-31,132v0,4,2,6,5,6","w":86},"\u013d":{"d":"221,-176v-3,-13,-14,-34,6,-36v7,-1,16,9,15,17v0,19,-15,38,-43,58r-3,-9v17,-13,25,-22,25,-30xm109,-17v24,-2,105,33,80,-21v0,-7,3,-10,10,-10v9,1,12,8,13,17v-12,70,-126,17,-195,34r2,-10v43,-5,39,-31,50,-72v19,-69,31,-122,99,-133v20,-3,47,24,23,32v-10,0,-26,-22,-35,-19v-56,16,-53,147,-87,188v16,-4,29,-6,40,-6","w":208},"\u013e":{"d":"181,-248v21,0,18,29,8,46v-5,10,-16,23,-34,39r-3,-11v24,-22,23,-32,14,-58v-1,-9,7,-16,15,-16xm110,-36v-12,14,-42,40,-64,41v-8,0,-12,-5,-12,-16v20,-75,23,-226,104,-237v7,1,16,4,15,13v0,18,-22,10,-33,7v-23,9,-21,36,-30,76r-31,132v0,4,2,6,5,6v12,-4,28,-16,40,-28","w":121},"\u013f":{"d":"137,-102v0,-10,9,-18,18,-18v11,0,18,7,18,18v0,10,-8,17,-18,17v-9,0,-18,-8,-18,-17xm212,-31v-13,71,-126,17,-195,34r2,-10v44,-7,37,-27,50,-72v20,-73,32,-121,99,-133v20,-3,47,24,23,32v-15,-2,-27,-28,-45,-16v-46,30,-45,146,-77,185v42,-14,71,2,109,5v30,2,-2,-39,21,-42v9,0,12,8,13,17","w":208},"\u0140":{"d":"119,-106v-15,1,-24,-19,-13,-30v11,-11,31,-3,31,12v0,10,-8,18,-18,18xm63,-14v16,-4,28,-17,41,-28r6,6v-14,15,-41,38,-64,41v-9,0,-13,-7,-12,-16v5,-47,30,-151,47,-191v11,-26,39,-46,73,-46v9,0,17,5,16,13v-4,31,-57,-13,-67,30r-44,185v0,4,1,6,4,6","w":118},"\u0143":{"d":"59,-104v-24,-5,-16,-51,-4,-68v20,-29,60,-31,106,-40v18,71,21,81,53,168v22,-64,17,-165,89,-174v21,-3,32,23,12,26v-40,-16,-49,7,-63,50v-9,28,-28,101,-40,158r-27,-63r-41,-123v-20,62,-19,185,-93,189v-17,0,-34,-6,-35,-21v13,-29,40,27,62,-3v31,-42,43,-115,59,-191v-35,3,-76,13,-77,51v0,16,22,37,-1,41xm241,-284r34,0r-60,51r-10,0","w":252},"\u0144":{"d":"131,5v-38,-15,9,-80,12,-124v-15,-18,-44,16,-52,27v-15,20,-18,63,-26,92r-27,0r30,-123v-10,-18,-28,28,-38,10v23,-20,33,-31,59,-35v18,4,-2,32,-1,46v15,-16,42,-42,68,-46v10,-1,15,6,15,17v0,24,-37,96,-24,117v10,3,29,-33,36,-17v-15,16,-29,32,-52,36xm154,-220r34,0r-60,51r-10,0","w":165},"\u0147":{"d":"185,-284r10,0r18,31v20,-10,31,-28,58,-31r-47,51r-27,0xm59,-104v-24,-5,-16,-51,-4,-68v20,-29,60,-31,106,-40v18,71,21,81,53,168v22,-64,17,-165,89,-174v21,-3,32,23,12,26v-40,-16,-49,7,-63,50v-9,28,-28,101,-40,158r-27,-63r-41,-123v-20,62,-19,185,-93,189v-17,0,-34,-6,-35,-21v13,-29,40,27,62,-3v31,-42,43,-115,59,-191v-35,3,-76,13,-77,51v0,16,22,37,-1,41","w":252},"\u0148":{"d":"104,-221r10,0r17,32v20,-10,31,-30,59,-32r-47,52r-27,0xm131,5v-38,-15,9,-80,12,-124v-15,-18,-44,16,-52,27v-15,20,-18,63,-26,92r-27,0r30,-123v-10,-18,-28,28,-38,10v23,-20,33,-31,59,-35v18,4,-2,32,-1,46v15,-16,42,-42,68,-46v10,-1,15,6,15,17v0,24,-37,96,-24,117v10,3,29,-33,36,-17v-15,16,-29,32,-52,36","w":165},"\u0149":{"d":"49,-173v23,-17,28,-33,16,-59v-1,-10,6,-16,15,-16v24,2,17,33,7,50v-6,11,-18,23,-35,37xm175,5v-38,-15,9,-80,12,-124v-15,-18,-44,16,-52,27v-15,20,-18,63,-26,92r-27,0r30,-123v-10,-18,-28,28,-38,10v23,-20,33,-31,59,-35v18,4,-2,32,-1,46v15,-16,42,-42,68,-46v10,-1,15,6,15,17v0,24,-37,96,-24,117v10,3,29,-33,36,-17v-15,16,-29,32,-52,36","w":209},"\u0150":{"d":"122,-227r31,-58r40,0r-60,58r-11,0xm175,-227r31,-58r40,0r-60,58r-11,0xm37,-77v4,-71,45,-133,121,-133v49,1,78,34,78,84v0,69,-48,129,-119,131v-47,1,-82,-35,-80,-82xm128,-8v85,2,108,-184,17,-190v-89,-5,-108,185,-17,190","w":216},"\u0151":{"d":"71,-163r31,-58r40,-1r-60,59r-11,0xm124,-163r31,-58r40,-1r-60,59r-11,0xm31,-41v0,-51,40,-109,87,-107v24,1,40,24,40,52v0,46,-44,102,-86,101v-26,0,-41,-19,-41,-46xm85,-9v39,0,54,-78,36,-114v-4,-8,-11,-12,-18,-12v-27,0,-44,42,-43,81v0,22,5,45,25,45","w":143},"\u0154":{"d":"251,54v-77,-8,-91,-85,-112,-155r-9,0r-24,94v15,2,18,1,33,-2r-2,9v-32,6,-59,-6,-91,4r3,-10v28,-6,33,-10,39,-36r29,-120v0,-6,-4,-7,-11,-7r2,-8v12,0,26,-3,43,-7v-7,20,-13,50,-19,72v36,10,68,-18,68,-50v0,-24,-21,-39,-47,-38v-53,2,-104,34,-107,88v-1,19,20,29,24,43v0,4,-5,9,-10,9v-17,-2,-26,-27,-26,-47v2,-65,58,-102,124,-104v38,-1,72,12,72,46v0,35,-32,59,-70,64v30,51,31,134,89,145v23,4,18,-29,35,-31v5,0,10,5,10,10v-1,16,-22,33,-43,31xm200,-284r34,0r-60,51r-10,0","w":216},"\u0155":{"d":"144,-157v19,7,13,23,-8,28v-54,14,-59,69,-73,129r-26,0r29,-123v0,-3,0,-4,-3,-4v-13,2,-15,9,-28,21r-6,-6v16,-17,37,-33,60,-36v17,4,-4,35,-3,49v16,-23,32,-49,58,-58xm129,-220r34,0r-60,51r-10,0","w":107},"\u0158":{"d":"146,-284r11,0r17,31v20,-10,31,-28,58,-31r-46,51r-27,0xm251,54v-77,-8,-91,-85,-112,-155r-9,0r-24,94v15,2,18,1,33,-2r-2,9v-32,6,-59,-6,-91,4r3,-10v28,-6,33,-10,39,-36r29,-120v0,-6,-4,-7,-11,-7r2,-8v12,0,26,-3,43,-7v-7,20,-13,50,-19,72v36,10,68,-18,68,-50v0,-24,-21,-39,-47,-38v-53,2,-104,34,-107,88v-1,19,20,29,24,43v0,4,-5,9,-10,9v-17,-2,-26,-27,-26,-47v2,-65,58,-102,124,-104v38,-1,72,12,72,46v0,35,-32,59,-70,64v30,51,31,134,89,145v23,4,18,-29,35,-31v5,0,10,5,10,10v-1,16,-22,33,-43,31","w":216},"\u0159":{"d":"81,-221r11,0r17,32v20,-10,31,-29,58,-32r-46,52r-27,0xm144,-157v19,7,13,23,-8,28v-54,14,-59,69,-73,129r-26,0r29,-123v0,-3,0,-4,-3,-4v-13,2,-15,9,-28,21r-6,-6v16,-17,37,-33,60,-36v17,4,-4,35,-3,49v16,-23,32,-49,58,-58","w":107},"\u015a":{"d":"193,-204v-8,23,-7,27,-12,61r-9,0v5,-31,2,-55,-25,-57v-24,-1,-51,22,-49,46v4,44,64,58,62,102v-2,47,-44,77,-94,78v-28,1,-57,-18,-59,-40v-2,-14,14,-24,24,-14v7,18,12,43,39,43v30,0,65,-26,63,-55v-2,-46,-61,-55,-61,-103v0,-54,61,-80,121,-61xm170,-284r34,0r-60,51r-10,0","w":165},"\u015b":{"d":"59,-105v0,-24,23,-45,49,-43v24,-5,46,25,20,32v-12,0,-19,-23,-30,-21v-51,21,26,66,23,95v6,47,-93,69,-98,17v0,-7,6,-14,13,-14v21,-1,3,33,30,33v18,0,32,-10,32,-26v0,-24,-39,-46,-39,-73xm131,-220r34,0r-60,51r-10,0","w":115},"\u0162":{"d":"263,-223v0,32,-48,35,-88,31v-11,38,-25,100,-45,184v17,2,29,2,44,-2r-2,10v-34,8,-69,-5,-104,3r3,-10v19,-1,30,-7,35,-19v4,-5,31,-116,43,-167v-58,-5,-104,10,-106,56v0,16,32,35,4,43v-13,-1,-19,-18,-19,-33v0,-49,47,-84,107,-84v14,0,68,7,86,7v31,0,9,-30,30,-33v9,-1,12,7,12,14xm107,18v7,0,15,8,14,16v0,20,-14,39,-42,59r-3,-9v28,-21,28,-27,18,-52v0,-7,6,-14,13,-14","w":180},"\u0163":{"d":"129,-37v-34,24,-42,36,-73,42v-22,-5,-13,-33,-7,-59r18,-70r-29,0r4,-12r28,0r10,-39r28,-11r-13,50r36,0r-2,12r-37,0v-6,27,-20,70,-22,96v0,6,2,9,7,9v8,0,23,-9,45,-26xm55,18v8,0,16,8,15,16v0,20,-15,39,-43,59r-3,-9v27,-20,29,-28,18,-52v0,-7,6,-14,13,-14","w":115},"\u0164":{"d":"142,-284r10,0r17,31v20,-10,31,-29,59,-31r-47,51r-27,0xm263,-223v0,33,-48,34,-88,31r-45,184v19,2,28,2,44,-2r-2,10v-34,8,-69,-5,-104,3r3,-10v52,-9,38,-25,54,-89r24,-97v-57,-5,-102,9,-106,56v-2,14,15,19,16,32v0,7,-5,11,-12,11v-14,-1,-19,-18,-19,-33v0,-53,46,-84,107,-84v14,0,68,7,86,7v30,6,9,-30,30,-33v9,-1,12,7,12,14","w":180},"\u0165":{"d":"124,-173v24,-18,27,-33,16,-59v-1,-10,6,-16,15,-16v23,3,17,33,6,50v-6,11,-17,23,-34,37xm56,5v-23,-6,-14,-32,-7,-59r18,-70r-29,0r4,-12r28,0r10,-39r28,-11r-13,50r36,0r-2,12r-37,0v-6,27,-20,70,-22,96v0,6,2,9,7,9v15,-3,33,-17,45,-26r7,8v-37,26,-43,35,-73,42","w":115},"\u016e":{"d":"185,-259v0,-15,14,-30,30,-30v16,0,31,14,31,30v0,16,-15,31,-31,31v-17,0,-30,-15,-30,-31xm234,-259v0,-9,-9,-19,-19,-18v-9,-1,-19,9,-18,18v-1,10,8,20,18,19v10,1,19,-10,19,-19xm131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136","w":266},"\u016f":{"d":"103,-195v0,-16,15,-31,31,-31v15,0,31,15,31,31v0,16,-15,31,-31,31v-17,0,-31,-15,-31,-31xm152,-195v1,-9,-9,-19,-18,-18v-10,-1,-19,9,-19,18v0,9,10,19,19,19v9,0,19,-9,18,-19xm85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35","w":165},"\u0170":{"d":"161,-227r31,-58r40,0r-60,58r-11,0xm214,-227r31,-58r40,0r-60,58r-11,0xm131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136","w":266},"\u0171":{"d":"86,-163r31,-58r40,-1r-60,59r-11,0xm139,-163r31,-58r40,-1r-60,59r-11,0xm85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35","w":165},"\u0179":{"d":"29,8v-8,-2,-4,-11,2,-17r129,-132v13,-13,25,-27,38,-43v-29,10,-64,-5,-90,-10v-8,0,-16,4,-16,11v5,9,28,28,4,33v-35,-13,-11,-64,23,-61v43,4,85,16,116,-3v13,5,2,12,-10,25r-120,122r-50,54v57,-22,92,-2,141,7v31,6,-1,-40,24,-42v8,0,13,7,13,16v-9,77,-145,10,-204,40xm188,-284r34,0r-60,51r-10,0"},"\u017a":{"d":"41,-9v-6,0,-36,21,-24,0v26,-28,92,-86,125,-121v-21,7,-40,6,-63,3v-12,-1,-15,14,-4,15v12,1,8,14,0,15v-9,1,-19,-11,-18,-22v3,-51,83,-10,111,-33v4,0,7,5,3,8v-30,33,-90,88,-121,117v31,-7,57,13,81,13v30,0,-3,-36,20,-39v7,-1,13,7,12,15v-3,25,-22,43,-52,43v-13,0,-55,-15,-70,-14xm140,-220r34,0r-60,51r-10,0","w":158},"\u017b":{"d":"153,-256v0,-10,9,-17,18,-17v10,0,18,7,18,17v0,11,-7,18,-18,18v-9,0,-18,-7,-18,-18xm29,8v-8,-2,-4,-11,2,-17r129,-132v13,-13,25,-27,38,-43v-29,10,-64,-5,-90,-10v-8,0,-16,4,-16,11v5,9,28,28,4,33v-35,-13,-11,-64,23,-61v43,4,85,16,116,-3v13,5,2,12,-10,25r-120,122r-50,54v57,-22,92,-2,141,7v31,6,-1,-40,24,-42v8,0,13,7,13,16v-9,77,-145,10,-204,40"},"\u017c":{"d":"107,-192v0,-10,9,-18,18,-18v10,0,18,8,18,18v0,11,-7,18,-18,18v-9,0,-18,-7,-18,-18xm41,-9v-6,0,-36,21,-24,0v26,-28,92,-86,125,-121v-21,7,-40,6,-63,3v-12,-1,-15,14,-4,15v12,1,8,14,0,15v-9,1,-19,-11,-18,-22v3,-51,83,-10,111,-33v4,0,7,5,3,8v-30,33,-90,88,-121,117v31,-7,57,13,81,13v30,0,-3,-36,20,-39v7,-1,13,7,12,15v-3,25,-22,43,-52,43v-13,0,-55,-15,-70,-14","w":158},"\u0100":{"d":"161,-256r81,0r-9,15r-81,0xm101,-131v-28,-8,-6,-56,12,-62v22,-20,83,-9,106,-29v-14,69,-20,139,-29,213v15,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v10,-22,12,-32,15,-65v-14,0,-35,-1,-64,0v-46,62,-49,91,-105,104v-18,3,-26,-21,-9,-24v21,2,29,6,46,-10v33,-32,120,-176,152,-207v-54,6,-72,5,-84,41v2,8,11,27,-5,28xm172,-76v6,-48,11,-83,17,-105r-73,105r56,0"},"\u0101":{"d":"85,-192r81,0r-9,15r-81,0xm109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83","w":151},"\u0108":{"d":"172,-284r27,0r13,51r-10,0r-18,-32v-20,10,-31,30,-59,32xm34,-55v0,-95,88,-190,187,-142v-7,20,-10,42,-11,63r-10,0v5,-37,-3,-69,-35,-67v-62,4,-95,77,-99,144v-5,77,75,103,110,39v3,-5,10,-3,11,1v-8,23,-44,51,-77,51v-49,-1,-76,-37,-76,-89","w":187},"\u0109":{"d":"115,-220r27,0r13,51r-10,0r-18,-32v-20,10,-31,30,-59,32xm58,-47v0,48,41,36,69,9r4,10v-28,22,-52,33,-71,33v-21,0,-30,-18,-29,-39v3,-53,33,-108,88,-114v24,-2,37,27,13,29v-8,1,-26,-12,-33,-11v-30,3,-41,50,-41,83","w":122},"\u010a":{"d":"156,-255v0,-11,9,-18,18,-18v23,0,22,36,0,36v-9,-1,-18,-8,-18,-18xm34,-55v0,-95,88,-190,187,-142v-7,20,-10,42,-11,63r-10,0v5,-37,-3,-69,-35,-67v-62,4,-95,77,-99,144v-5,77,75,103,110,39v3,-5,10,-3,11,1v-8,23,-44,51,-77,51v-49,-1,-76,-37,-76,-89","w":187},"\u010b":{"d":"119,-174v-25,0,-21,-36,0,-36v10,0,18,8,18,18v0,11,-7,18,-18,18xm58,-47v0,48,41,36,69,9r4,10v-28,22,-52,33,-71,33v-21,0,-30,-18,-29,-39v3,-53,33,-108,88,-114v24,-2,37,27,13,29v-8,1,-26,-12,-33,-11v-30,3,-41,50,-41,83","w":122},"\u0112":{"d":"145,-256r81,0r-9,15r-81,0xm24,-110v1,-54,45,-96,109,-96v33,0,83,2,107,-4v-5,19,-8,33,-9,41r-10,0v13,-40,-32,-20,-74,-25r-20,78v25,-3,64,10,64,-16r10,0v-4,14,-7,30,-10,47r-9,0v8,-31,-33,-17,-57,-20v-10,40,-22,70,-33,93v33,-12,70,3,103,6v30,3,1,-38,24,-41v9,0,13,7,13,16v0,53,-84,33,-134,31v-17,0,-38,1,-61,4r3,-9v47,-11,39,-28,53,-84r27,-106v-43,1,-76,29,-80,70v-2,18,26,42,1,49v-14,-1,-17,-19,-17,-34"},"\u0113":{"d":"69,-192r81,0r-9,15r-81,0xm73,-18v22,-2,28,-12,50,-26r5,8v-29,27,-52,41,-73,41v-19,-1,-26,-15,-26,-36v-1,-47,38,-117,84,-117v27,0,32,29,18,46v-17,20,-35,27,-72,44v-3,17,-5,42,14,40xm113,-117v-7,-30,-34,-13,-40,8v-4,13,-10,26,-12,39v26,-12,47,-21,52,-47","w":122},"\u0114":{"d":"182,-233v-22,0,-32,-21,-30,-49r10,0v2,41,56,25,66,0r10,0v-14,25,-26,49,-56,49xm24,-110v1,-54,45,-96,109,-96v33,0,83,2,107,-4v-5,19,-8,33,-9,41r-10,0v13,-40,-32,-20,-74,-25r-20,78v25,-3,64,10,64,-16r10,0v-4,14,-7,30,-10,47r-9,0v8,-31,-33,-17,-57,-20v-10,40,-22,70,-33,93v33,-12,70,3,103,6v30,3,1,-38,24,-41v9,0,13,7,13,16v0,53,-84,33,-134,31v-17,0,-38,1,-61,4r3,-9v47,-11,39,-28,53,-84r27,-106v-43,1,-76,29,-80,70v-2,18,26,42,1,49v-14,-1,-17,-19,-17,-34"},"\u0115":{"d":"106,-169v-22,0,-32,-21,-30,-49r9,0v3,40,57,26,67,0r10,0v-14,25,-26,49,-56,49xm73,-18v22,-2,28,-12,50,-26r5,8v-29,27,-52,41,-73,41v-19,-1,-26,-15,-26,-36v-1,-47,38,-117,84,-117v27,0,32,29,18,46v-17,20,-35,27,-72,44v-3,17,-5,42,14,40xm113,-117v-7,-30,-34,-13,-40,8v-4,13,-10,26,-12,39v26,-12,47,-21,52,-47","w":122},"\u0116":{"d":"182,-237v-21,0,-23,-37,0,-36v11,0,18,7,18,18v0,10,-8,17,-18,18xm24,-110v1,-54,45,-96,109,-96v33,0,83,2,107,-4v-5,19,-8,33,-9,41r-10,0v13,-40,-32,-20,-74,-25r-20,78v25,-3,64,10,64,-16r10,0v-4,14,-7,30,-10,47r-9,0v8,-31,-33,-17,-57,-20v-10,40,-22,70,-33,93v33,-12,70,3,103,6v30,3,1,-38,24,-41v9,0,13,7,13,16v0,53,-84,33,-134,31v-17,0,-38,1,-61,4r3,-9v47,-11,39,-28,53,-84r27,-106v-43,1,-76,29,-80,70v-2,18,26,42,1,49v-14,-1,-17,-19,-17,-34"},"\u0117":{"d":"93,-192v0,-10,9,-18,18,-18v9,0,17,8,17,18v0,10,-7,18,-17,18v-9,0,-18,-7,-18,-18xm73,-18v22,-2,28,-12,50,-26r5,8v-29,27,-52,41,-73,41v-19,-1,-26,-15,-26,-36v-1,-47,38,-117,84,-117v27,0,32,29,18,46v-17,20,-35,27,-72,44v-3,17,-5,42,14,40xm113,-117v-7,-30,-34,-13,-40,8v-4,13,-10,26,-12,39v26,-12,47,-21,52,-47","w":122},"\u011c":{"d":"187,-284r27,0r13,51r-10,0r-19,-32v-20,10,-30,30,-58,32xm46,-72v7,-85,74,-154,165,-134v14,3,26,5,33,5v-6,22,-10,43,-10,61r-10,0v6,-36,-10,-60,-41,-60v-62,0,-103,61,-107,126v-3,57,51,81,94,53v5,-18,8,-31,8,-37v-1,-12,-13,-11,-28,-9v5,-22,44,-2,74,-11r-1,9v-18,1,-16,7,-21,25v-18,63,-25,97,-60,125v-23,18,-73,15,-78,-13v15,-37,40,37,68,3v10,-12,23,-38,34,-79v-51,32,-125,3,-120,-64"},"\u011d":{"d":"124,-220r27,0r13,51r-10,0r-19,-32v-20,10,-30,30,-58,32xm64,-7v-19,12,-35,8,-36,-15v0,-47,34,-94,65,-112v13,-9,32,-11,54,-10v1,-7,10,-6,16,-8v-14,49,-36,99,-36,156v0,57,-28,86,-81,89v-39,2,-66,-34,-40,-63v8,-9,42,-27,58,-37xm53,-37v0,36,41,12,50,-4v9,-17,19,-58,26,-82v-54,-16,-76,48,-76,86xm46,82v51,-4,60,-50,59,-109v-14,20,-90,47,-90,83v0,15,16,27,31,26","w":143},"\u0120":{"d":"175,-255v0,-11,9,-18,18,-18v11,0,18,7,18,18v0,10,-8,18,-18,18v-9,0,-18,-8,-18,-18xm46,-72v7,-85,74,-154,165,-134v14,3,26,5,33,5v-6,22,-10,43,-10,61r-10,0v6,-36,-10,-60,-41,-60v-62,0,-103,61,-107,126v-3,57,51,81,94,53v5,-18,8,-31,8,-37v-1,-12,-13,-11,-28,-9v5,-22,44,-2,74,-11r-1,9v-18,1,-16,7,-21,25v-18,63,-25,97,-60,125v-23,18,-73,15,-78,-13v15,-37,40,37,68,3v10,-12,23,-38,34,-79v-51,32,-125,3,-120,-64"},"\u0121":{"d":"112,-192v0,-10,9,-18,18,-18v10,0,18,8,18,18v0,11,-7,18,-18,18v-9,0,-18,-7,-18,-18xm64,-7v-19,12,-35,8,-36,-15v0,-47,34,-94,65,-112v13,-9,32,-11,54,-10v1,-7,10,-6,16,-8v-14,49,-36,99,-36,156v0,57,-28,86,-81,89v-39,2,-66,-34,-40,-63v8,-9,42,-27,58,-37xm53,-37v0,36,41,12,50,-4v9,-17,19,-58,26,-82v-54,-16,-76,48,-76,86xm46,82v51,-4,60,-50,59,-109v-14,20,-90,47,-90,83v0,15,16,27,31,26","w":143},"\u0122":{"d":"223,-69v-18,1,-14,8,-21,25v0,2,-4,16,-11,44r-27,0r2,-8v-13,7,-26,11,-41,12r-6,13v29,4,21,32,2,45v-11,8,-25,13,-40,15r3,-10v21,0,50,-32,18,-39v-1,0,-2,1,-3,1r14,-24v-39,-1,-68,-32,-67,-77v2,-79,78,-159,165,-134v14,4,26,5,33,5v-6,22,-10,42,-10,61r-10,0v7,-36,-11,-60,-41,-60v-55,-1,-107,68,-107,126v0,56,50,82,94,53v5,-19,8,-31,8,-37v-1,-10,-14,-12,-28,-9v5,-22,44,-2,74,-11"},"\u0123":{"d":"64,-7v-19,12,-35,8,-36,-15v0,-47,34,-94,65,-112v13,-9,32,-11,54,-10v1,-7,10,-6,16,-8v-14,49,-36,99,-36,156v0,57,-28,86,-81,89v-39,2,-66,-34,-40,-63v8,-9,42,-27,58,-37xm53,-37v0,36,41,12,50,-4v9,-17,19,-58,26,-82v-54,-16,-76,48,-76,86xm46,82v51,-4,60,-50,59,-109v-14,20,-90,47,-90,83v0,15,16,27,31,26xm121,-158v-7,1,-15,-9,-14,-16v0,-19,15,-38,43,-58r2,9v-28,21,-28,27,-18,52v1,8,-6,13,-13,13","w":143},"\u0124":{"d":"199,-284r27,0r13,51r-10,0r-19,-32v-20,10,-30,30,-58,32xm202,-9v14,2,26,5,41,1r-3,10v-25,4,-49,-5,-72,1v10,-26,21,-76,30,-109r-73,4v-17,61,-29,101,-85,113v-20,4,-46,-22,-22,-30v10,-1,16,19,27,19v9,0,17,-7,26,-22v11,-18,39,-126,52,-174v-48,-3,-86,26,-61,62v0,6,-6,11,-12,11v-23,-6,-16,-46,0,-59v26,-22,48,-26,108,-26v-9,17,-19,48,-30,91v31,0,56,-1,74,-3v21,-63,25,-97,85,-109v23,-4,46,23,21,29v-8,1,-19,-20,-27,-18v-9,0,-17,9,-26,25v-15,29,-33,90,-53,184","w":244},"\u0125":{"d":"158,-310r26,0r13,51r-10,0r-18,-32v-21,10,-30,31,-59,32xm140,-14v9,-2,22,-14,32,-23r4,6v-15,16,-30,32,-52,36v-9,-1,-15,-8,-14,-20v0,-26,20,-71,26,-104v-3,-12,-16,-5,-25,1v-36,19,-42,73,-54,118r-26,0v20,-68,27,-155,58,-211v11,-20,38,-37,66,-37v9,1,16,5,17,13v-5,25,-47,-1,-61,15v-14,27,-21,83,-30,118v19,-19,41,-41,68,-46v9,-2,15,6,15,15v-3,32,-28,85,-28,113v-1,4,2,5,4,6","w":158},"\u0126":{"d":"123,-197v-48,-3,-86,27,-61,62v0,7,-6,12,-12,12v-40,-29,11,-83,51,-83v9,0,28,-2,57,-2v-5,10,-11,25,-17,44r75,0v16,-44,40,-66,71,-66v16,0,32,6,32,19v-7,26,-28,-7,-38,-7v-13,0,-26,18,-39,54r35,0r-3,11r-36,0v-11,35,-23,82,-36,143v11,3,27,4,41,2r-3,10v-25,4,-49,-5,-72,1v10,-26,21,-76,30,-109r-73,4v-17,61,-29,101,-85,113v-20,4,-46,-22,-22,-30v10,-1,16,19,27,19v9,0,17,-8,26,-22v7,-12,28,-82,41,-131r-39,0r3,-11r39,0xm138,-153v-6,21,-10,33,-10,35v31,0,56,-1,74,-3v5,-16,8,-26,10,-32r-74,0","w":244},"\u0127":{"d":"164,-133v0,34,-28,90,-28,113v0,4,1,6,4,6v5,0,16,-8,32,-23r4,6v-15,16,-30,32,-52,36v-9,-1,-15,-8,-14,-20v0,-26,20,-71,26,-104v-3,-12,-16,-5,-25,1v-36,19,-42,73,-54,118r-26,0r43,-178r-27,0r3,-11r28,0v11,-34,40,-57,77,-59v10,0,17,4,17,13v0,25,-46,0,-60,14v-3,3,-8,14,-12,32r53,0r-3,11r-52,0r-17,76v13,-15,46,-44,68,-46v10,0,15,5,15,15","w":158},"\u0128":{"d":"151,-239v-22,1,-46,-28,-57,0r-10,0v4,-20,14,-31,33,-33v16,-1,53,26,59,0r10,0v-5,17,-17,31,-35,33xm116,2v-30,-1,-65,-4,-92,1r2,-9v21,-5,34,-3,39,-23r43,-166v-8,0,-18,2,-30,4r3,-10v18,-6,68,-3,90,-7r-3,10v-54,5,-29,15,-53,79v-4,13,-13,50,-27,110v8,3,18,3,31,3","w":136},"\u0129":{"d":"109,-175v-22,0,-46,-28,-57,0r-9,0v4,-20,13,-34,32,-34v14,0,54,27,59,0r10,0v-5,18,-16,33,-35,34xm64,-128v-12,3,-13,8,-28,21r-8,-6v18,-19,32,-36,57,-36v7,0,12,3,12,9v1,18,-43,122,-26,125v10,-5,21,-14,28,-22r8,7v-26,22,-26,27,-54,35v-9,0,-13,-6,-13,-15v2,-32,23,-92,27,-114v0,-2,-1,-4,-3,-4","w":86},"\u012a":{"d":"98,-256r82,0r-9,15r-81,0xm116,2v-30,-1,-65,-4,-92,1r2,-9v21,-5,34,-3,39,-23r43,-166v-8,0,-18,2,-30,4r3,-10v18,-6,68,-3,90,-7r-3,10v-54,5,-29,15,-53,79v-4,13,-13,50,-27,110v8,3,18,3,31,3","w":136},"\u012b":{"d":"56,-192r81,0r-9,15r-81,0xm65,-128v-12,3,-13,8,-28,21r-8,-6v18,-19,32,-36,57,-36v7,0,12,3,12,9v1,18,-43,122,-26,125v10,-5,21,-14,28,-22r8,7v-26,22,-26,27,-54,35v-9,0,-13,-6,-13,-15v2,-32,23,-92,27,-114v0,-2,-1,-4,-3,-4","w":86},"\u012c":{"d":"130,-233v-22,0,-32,-21,-30,-49r10,0v2,41,56,25,66,0r10,0v-14,25,-26,49,-56,49xm116,2v-30,-1,-65,-4,-92,1r2,-9v21,-5,34,-3,39,-23r43,-166v-8,0,-18,2,-30,4r3,-10v18,-6,68,-3,90,-7r-3,10v-54,5,-29,15,-53,79v-4,13,-13,50,-27,110v8,3,18,3,31,3","w":136},"\u012d":{"d":"95,-169v-22,0,-32,-21,-30,-49r10,0v2,41,56,25,66,0r10,0v-14,25,-26,49,-56,49xm64,-128v-12,3,-13,8,-28,21r-8,-6v18,-19,32,-36,57,-36v7,0,12,3,12,9v1,18,-43,122,-26,125v10,-5,21,-14,28,-22r8,7v-26,22,-26,27,-54,35v-9,0,-13,-6,-13,-15v2,-32,23,-92,27,-114v0,-2,-1,-4,-3,-4","w":86},"\u012e":{"d":"94,63v-22,7,-46,2,-47,-20v0,-13,6,-28,18,-46r12,0v-19,23,-17,62,22,56xm116,2v-30,-1,-65,-4,-92,1r2,-9v21,-5,34,-3,39,-23r43,-166v-8,0,-18,2,-30,4r3,-10v18,-6,68,-3,90,-7r-3,10v-54,5,-29,15,-53,79v-4,13,-13,50,-27,110v8,3,18,3,31,3","w":136},"\u012f":{"d":"82,63v-22,7,-47,2,-48,-20v0,-13,6,-28,18,-46r12,0v-18,23,-16,62,22,56xm88,-204v-3,-18,28,-28,30,-7v3,18,-28,29,-30,7xm64,-128v-12,3,-13,8,-28,21r-8,-6v18,-19,32,-36,57,-36v7,0,12,3,12,9v-2,27,-67,182,2,103r7,7v-24,21,-29,31,-53,35v-9,1,-13,-6,-13,-15v0,-13,13,-60,27,-114v0,-2,-1,-4,-3,-4","w":86},"\u0134":{"d":"146,-284r27,0r13,51r-10,0r-18,-32v-20,10,-31,30,-59,32xm143,-196v-48,-5,-89,28,-65,64v0,6,-5,11,-11,11v-10,0,-15,-10,-14,-21v5,-55,56,-71,123,-65v-44,74,-30,245,-137,255v-19,2,-37,-10,-39,-25v13,-33,38,30,62,9v41,-36,55,-162,81,-228","w":143},"\u0135":{"d":"81,-220r26,0r13,51r-10,0r-18,-32v-21,10,-30,31,-59,32xm-40,77v8,-28,46,18,57,-11v18,-44,40,-155,53,-189v-7,-11,-16,3,-33,17r-6,-7v14,-16,38,-32,58,-36v11,1,11,10,7,22v-20,62,-33,152,-65,196v-12,16,-26,23,-45,23v-13,1,-26,-5,-26,-15","w":79},"\u0136":{"d":"108,18v20,-5,41,-2,41,17v0,19,-17,33,-52,42r3,-11v19,-6,29,-14,29,-24v1,-10,-12,-15,-24,-12xm119,-198v-43,0,-86,25,-62,61v0,7,-5,13,-12,12v-9,0,-14,-11,-14,-20v0,-48,53,-67,121,-63v-14,35,-18,54,-27,89v31,-12,84,-54,98,-75v-4,-4,-10,-3,-24,-4r3,-9v29,2,43,3,71,0v-40,19,-90,69,-123,88v35,33,33,155,95,163v20,3,17,-28,33,-29v5,0,10,5,10,10v-2,15,-23,32,-44,30v-85,-4,-76,-121,-120,-168r-26,102v11,4,17,6,28,4v1,17,-27,6,-42,7v-10,0,-25,2,-46,6r1,-9v52,-13,44,-54,59,-113","w":237},"\u0137":{"d":"66,18v20,-5,41,-1,42,17v0,19,-18,33,-53,42r3,-11v19,-6,29,-14,29,-24v0,-10,-11,-15,-23,-12xm195,68v-79,-3,-71,-102,-120,-144r-17,76r-26,0v20,-69,30,-149,57,-211v13,-18,35,-35,64,-36v11,0,19,3,19,13v-6,27,-56,-10,-66,25v-5,20,-17,71,-23,98v17,-18,33,-35,61,-37v13,0,21,10,21,23v-3,33,-36,49,-79,49v60,15,48,125,112,133v32,5,5,-32,26,-36v7,-1,13,7,12,15v0,18,-21,33,-41,32xm142,-118v0,-7,-5,-14,-12,-14v-11,0,-28,12,-51,37r-3,12v34,-1,64,-5,66,-35","w":158},"\u0138":{"d":"30,-112v16,-18,36,-33,59,-36v11,1,7,5,5,17r-11,48v28,-21,48,-72,88,-72v10,0,14,4,14,12v-1,21,-32,3,-44,16v-12,5,-40,40,-50,47v42,22,36,27,60,79v15,32,21,55,54,58v30,4,6,-32,26,-36v7,-2,13,7,12,15v-5,39,-66,41,-89,12v-25,-14,-37,-104,-73,-124r-17,76r-27,0r30,-123v-8,-11,-15,3,-32,17","w":158},"\u013b":{"d":"92,18v20,-5,40,-1,41,17v0,19,-18,33,-53,42r3,-11v19,-6,29,-14,29,-24v0,-10,-11,-15,-23,-12xm212,-31v-13,71,-126,17,-195,34r2,-10v44,-7,37,-27,50,-72v20,-73,32,-121,99,-133v20,-3,47,24,23,32v-15,-2,-27,-28,-45,-16v-46,30,-45,146,-77,185v42,-14,71,2,109,5v30,2,-2,-39,21,-42v9,0,12,8,13,17","w":208},"\u013c":{"d":"28,18v20,-5,41,-2,41,17v0,19,-17,33,-52,42r3,-11v19,-6,29,-14,29,-24v1,-11,-12,-15,-24,-12xm63,-14v16,-4,28,-17,41,-28r6,6v-14,15,-41,38,-64,41v-9,0,-13,-7,-12,-16v5,-47,30,-151,47,-191v11,-26,39,-46,73,-46v9,0,17,5,16,13v-4,31,-57,-13,-67,30r-44,185v0,4,1,6,4,6","w":86},"\u0145":{"d":"120,18v20,-5,40,-1,41,17v0,19,-18,33,-53,42r4,-11v19,-6,28,-14,28,-24v0,-10,-11,-15,-23,-12xm59,-104v-24,-5,-16,-51,-4,-68v20,-29,60,-31,106,-40v18,71,21,81,53,168v22,-64,17,-165,89,-174v21,-3,32,23,12,26v-40,-16,-49,7,-63,50v-9,28,-28,101,-40,158r-27,-63r-41,-123v-20,62,-19,185,-93,189v-17,0,-34,-6,-35,-21v13,-29,40,27,62,-3v31,-42,43,-115,59,-191v-35,3,-76,13,-77,51v0,16,22,37,-1,41","w":252},"\u0146":{"d":"66,18v20,-5,40,-1,41,17v0,19,-18,33,-53,42r3,-11v19,-6,29,-14,29,-24v0,-10,-11,-15,-23,-12xm131,5v-38,-15,9,-80,12,-124v-15,-18,-44,16,-52,27v-15,20,-18,63,-26,92r-27,0r30,-123v-10,-18,-28,28,-38,10v23,-20,33,-31,59,-35v18,4,-2,32,-1,46v15,-16,42,-42,68,-46v10,-1,15,6,15,17v0,24,-37,96,-24,117v10,3,29,-33,36,-17v-15,16,-29,32,-52,36","w":165},"\u014a":{"d":"119,-198v-42,0,-87,27,-62,61v0,7,-5,13,-12,12v-9,-1,-14,-9,-14,-21v0,-46,54,-66,118,-62v-1,6,-3,13,-6,24v48,-56,120,-13,117,64v-4,85,-52,171,-134,175v-17,0,-39,-6,-40,-20v7,-28,29,7,44,6v66,-6,96,-87,98,-161v0,-38,-12,-76,-43,-76v-17,0,-33,13,-49,39v-17,73,-31,121,-41,147v14,3,27,4,40,1v2,21,-43,5,-58,9v-12,0,-24,1,-36,3r2,-10v34,-8,28,-10,40,-49v7,-22,18,-69,36,-142","w":242},"\u014b":{"d":"34,77v9,-28,48,19,59,-12v13,-36,42,-149,50,-184v-12,-19,-45,17,-52,27v-14,22,-18,62,-26,92r-27,0r30,-123v-7,-13,-14,2,-32,17r-6,-7v23,-24,43,-35,59,-35v8,0,9,4,7,11r-8,35v7,-11,51,-49,68,-46v35,7,-1,62,-4,88v-20,62,-24,148,-92,152v-13,1,-24,-5,-26,-15","w":153},"\u014c":{"d":"131,-256r81,0r-9,15r-81,0xm37,-77v4,-71,45,-133,121,-133v49,1,78,34,78,84v0,69,-48,129,-119,131v-47,1,-82,-35,-80,-82xm128,-8v85,2,108,-184,17,-190v-89,-5,-108,185,-17,190","w":216},"\u014d":{"d":"81,-192r81,0r-9,15r-81,0xm31,-41v0,-51,40,-109,87,-107v24,1,40,24,40,52v0,46,-44,102,-86,101v-26,0,-41,-19,-41,-46xm85,-9v39,0,54,-78,36,-114v-4,-8,-11,-12,-18,-12v-27,0,-44,42,-43,81v0,22,5,45,25,45","w":143},"\u014e":{"d":"156,-233v-22,0,-32,-21,-30,-49r9,0v3,40,57,25,67,0r10,0v-14,25,-26,49,-56,49xm37,-77v4,-71,45,-133,121,-133v49,1,78,34,78,84v0,69,-48,129,-119,131v-47,1,-82,-35,-80,-82xm128,-8v85,2,108,-184,17,-190v-89,-5,-108,185,-17,190","w":216},"\u014f":{"d":"114,-169v-22,0,-32,-21,-30,-49r10,0v2,41,56,25,66,0r10,0v-14,25,-26,49,-56,49xm31,-41v0,-51,40,-109,87,-107v24,1,40,24,40,52v0,46,-44,102,-86,101v-26,0,-41,-19,-41,-46xm85,-9v39,0,54,-78,36,-114v-4,-8,-11,-12,-18,-12v-27,0,-44,42,-43,81v0,22,5,45,25,45","w":143},"\u0156":{"d":"104,18v20,-5,41,-2,41,17v0,19,-18,33,-53,42r4,-11v19,-6,29,-14,29,-24v1,-10,-12,-15,-24,-12xm251,54v-77,-8,-91,-85,-112,-155r-9,0r-24,94v15,2,18,1,33,-2r-2,9v-32,6,-59,-6,-91,4r3,-10v28,-6,33,-10,39,-36r29,-120v0,-6,-4,-7,-11,-7r2,-8v12,0,26,-3,43,-7v-7,20,-13,50,-19,72v36,10,68,-18,68,-50v0,-24,-21,-39,-47,-38v-53,2,-104,34,-107,88v-1,19,20,29,24,43v0,4,-5,9,-10,9v-17,-2,-26,-27,-26,-47v2,-65,58,-102,124,-104v38,-1,72,12,72,46v0,35,-32,59,-70,64v30,51,31,134,89,145v23,4,18,-29,35,-31v5,0,10,5,10,10v-1,16,-22,33,-43,31","w":216},"\u0157":{"d":"39,18v20,-5,41,-2,41,17v0,19,-18,33,-53,42r4,-11v19,-6,29,-14,29,-24v1,-10,-12,-15,-24,-12xm144,-157v19,7,13,23,-8,28v-54,14,-59,69,-73,129r-26,0r29,-123v0,-3,0,-4,-3,-4v-13,2,-15,9,-28,21r-6,-6v16,-17,37,-33,60,-36v17,4,-4,35,-3,49v16,-23,32,-49,58,-58","w":107},"\u015c":{"d":"151,-284r27,0r12,51r-10,0r-18,-32v-20,10,-30,30,-58,32xm193,-204v-8,23,-7,27,-12,61r-9,0v5,-31,2,-55,-25,-57v-24,-1,-51,22,-49,46v4,44,64,58,62,102v-2,47,-44,77,-94,78v-28,1,-57,-18,-59,-40v-2,-14,14,-24,24,-14v7,18,12,43,39,43v30,0,65,-26,63,-55v-2,-46,-61,-55,-61,-103v0,-54,61,-80,121,-61","w":165},"\u015d":{"d":"111,-220r27,0r13,51r-10,0r-19,-32v-20,10,-30,30,-58,32xm59,-105v0,-24,23,-45,49,-43v24,-5,46,25,20,32v-12,0,-19,-23,-30,-21v-51,21,26,66,23,95v6,47,-93,69,-98,17v0,-7,6,-14,13,-14v21,-1,3,33,30,33v18,0,32,-10,32,-26v0,-24,-39,-46,-39,-73","w":115},"\u0166":{"d":"172,0v-32,8,-70,-5,-104,3r3,-10v51,-7,35,-36,54,-90r-51,0r3,-11r51,0r21,-85v-58,-5,-104,10,-106,56v0,16,32,35,4,43v-14,0,-19,-18,-19,-33v2,-50,48,-84,107,-84v14,0,68,7,86,7v31,0,9,-30,30,-33v9,-1,12,7,12,14v0,32,-48,35,-88,31v-1,3,-8,32,-21,84r51,0r-3,11r-51,0v-6,24,-13,54,-21,89v17,2,29,2,44,-2","w":180},"\u0167":{"d":"129,-37v-32,24,-43,36,-73,42v-29,-7,-6,-54,-2,-80r-26,0r3,-11r26,0r10,-38r-29,0r4,-12r28,0r10,-39r28,-11r-13,50r36,0r-2,12r-37,0r-10,38r39,0r-3,11r-39,0v-2,22,-20,50,-1,56v19,-5,20,-9,45,-25","w":115},"\u0168":{"d":"216,-239v-22,1,-46,-28,-57,0r-10,0v4,-20,14,-31,32,-33v16,-1,53,26,59,0r10,0v-5,17,-16,32,-34,33xm131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136","w":266},"\u0169":{"d":"147,-175v-22,1,-46,-28,-57,0r-9,0v4,-20,13,-34,32,-34v14,0,54,27,59,0r10,0v-5,17,-17,33,-35,34xm85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35","w":165},"\u016a":{"d":"162,-256r81,0r-9,15r-81,0xm131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136","w":266},"\u016b":{"d":"94,-192r82,0r-10,15r-80,0xm85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35","w":165},"\u016c":{"d":"199,-233v-22,0,-32,-21,-30,-49r10,0v2,41,56,25,66,0r10,0v-14,25,-26,49,-56,49xm131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136","w":266},"\u016d":{"d":"126,-169v-22,0,-31,-22,-30,-49r10,0v2,41,56,25,66,0r10,0v-14,25,-26,49,-56,49xm85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35","w":165},"\u0172":{"d":"174,63v-22,7,-47,2,-48,-20v0,-13,6,-28,18,-46r12,0v-18,23,-16,62,22,56xm131,-196v-46,-3,-88,24,-64,60v0,6,-5,12,-11,12v-30,-11,-4,-61,14,-68v17,-16,60,-15,93,-18v-17,29,-45,92,-47,137v-1,31,16,54,43,54v75,0,103,-86,111,-163v2,-20,-12,-38,-14,-54v-1,-7,4,-12,11,-12v18,0,20,22,20,46v0,96,-49,203,-143,206v-35,1,-58,-29,-57,-64v2,-58,18,-75,44,-136","w":266},"\u0173":{"d":"162,63v-22,7,-47,2,-48,-20v0,-13,6,-28,18,-46r12,0v-18,23,-16,62,22,56xm85,-148v37,11,-37,121,-6,130v47,-11,58,-77,70,-125r25,0r-31,122v0,3,3,6,5,7v12,-4,14,-9,29,-23r6,6v-24,24,-41,37,-52,37v-17,0,-15,-22,-10,-41v-14,16,-38,39,-65,41v-9,0,-12,-7,-13,-17v-2,-26,32,-98,22,-115v-12,2,-15,8,-28,19r-7,-6v24,-20,31,-30,55,-35","w":165},"\u0174":{"d":"256,-284r27,0r13,51r-10,0r-18,-32v-20,10,-31,30,-59,32xm355,-248v27,10,16,47,4,75v-20,47,-111,160,-143,188v3,-62,0,-128,10,-183v-39,56,-80,126,-125,176v-9,-70,-21,-163,21,-205v-44,2,-90,41,-63,80v0,6,-4,11,-10,11v-33,-16,0,-71,19,-83v24,-15,50,-19,88,-23v-39,63,-42,85,-35,176v45,-52,90,-147,139,-185v-11,44,-17,108,-17,191v38,-52,96,-101,108,-175v2,-15,-19,-39,4,-43","w":316},"\u0175":{"d":"187,-220r26,0r13,51r-10,0r-18,-32v-20,10,-30,30,-58,32xm180,-13v34,-24,88,-73,62,-127v0,-6,5,-11,11,-11v11,1,13,10,13,25v-2,59,-60,117,-108,138v-4,-13,-8,-32,-11,-57v-33,33,-38,39,-75,57v-1,-16,-12,-66,-12,-78v1,-29,16,-53,36,-67v-33,2,-64,5,-50,33v0,3,-5,8,-9,7v-7,0,-10,-7,-10,-15v4,-31,34,-35,76,-35v8,-8,18,-8,20,2v0,5,-3,8,-10,10v-20,32,-33,66,-17,118v18,-12,34,-28,50,-48v-1,-38,4,-78,28,-87v27,6,5,49,-1,64v0,30,3,54,7,71","w":244},"\u0176":{"d":"192,-284r27,0r13,51r-10,0r-19,-32v-20,10,-30,30,-58,32xm278,-236v10,0,18,13,9,20v-56,6,-76,49,-102,93v-18,29,-32,84,-37,115v17,2,27,1,44,-2v-16,29,-58,1,-98,12v0,-13,22,-13,24,-18v11,-29,38,-101,15,-139v-6,-17,-14,-30,-23,-40v-35,12,-55,25,-62,59v-2,10,15,21,15,29v0,5,-3,11,-9,10v-27,-4,-20,-47,-8,-66v17,-26,48,-39,85,-50v21,26,32,56,36,102v31,-64,58,-111,111,-125","w":201},"\u0177":{"d":"122,-220r26,0r13,51r-10,0r-18,-32v-20,10,-30,30,-58,32xm96,-3v0,-46,-13,-153,-66,-109r-6,-8v16,-9,28,-23,48,-28v29,22,46,83,43,133v28,-53,36,-73,24,-122v0,-6,5,-12,11,-12v26,9,15,45,4,75v-24,68,-59,156,-141,166v-13,1,-24,-4,-24,-14v0,-20,32,-10,49,-9v32,-6,58,-37,58,-72","w":143},"\u017f":{"d":"-60,77v5,-28,62,5,76,-18v55,-93,22,-288,153,-307v22,-4,30,25,8,27v-45,-11,-56,-7,-73,50v-30,100,-26,250,-141,263v-11,0,-22,-5,-23,-15","w":98},"\u01fa":{"d":"229,-327r33,0r-59,51r-11,0xm-18,27v-2,-17,24,-7,30,-7v44,-13,62,-58,95,-105v35,-50,60,-89,80,-111v5,-6,9,-10,11,-13v-32,-12,-22,-59,11,-59v35,0,42,54,7,60v-9,44,-20,142,-26,199v14,3,25,4,38,1r-1,10v-26,3,-45,-6,-72,0v7,-17,12,-39,15,-65v-21,-2,-26,-1,-64,0v-40,55,-50,91,-105,104v-13,0,-19,-5,-19,-14xm209,-219v10,1,19,-9,18,-19v1,-9,-9,-19,-18,-18v-10,-1,-19,9,-19,18v0,9,9,20,19,19xm172,-76v7,-53,12,-88,17,-105v-16,21,-41,56,-73,105r56,0"},"\u01fb":{"d":"100,-195v0,-16,15,-31,31,-31v15,0,30,15,30,31v0,16,-14,31,-30,31v-17,0,-31,-15,-31,-31xm149,-195v1,-9,-9,-19,-18,-18v-10,-1,-19,9,-19,18v0,9,10,19,19,19v9,0,19,-9,18,-19xm109,-34v-15,24,-82,67,-82,6v0,-50,36,-92,71,-110v11,-5,31,-9,48,-6v2,-7,8,-8,16,-9v-10,42,-26,86,-32,130v0,4,1,5,4,5v11,-3,21,-12,30,-20r6,7v-26,21,-28,31,-60,36v-19,-2,-3,-27,-1,-39xm53,-41v-1,29,25,27,41,10v20,-21,25,-61,35,-93v-53,-13,-73,38,-76,83xm151,-284r34,0r-60,51r-10,0","w":151},"\u01fc":{"d":"284,-210v-6,19,-7,21,-10,45r-9,0v16,-42,-30,-30,-60,-30r-20,78v30,-2,51,8,52,-18r9,0v-6,19,-10,36,-12,51r-9,0v11,-29,-19,-22,-43,-23r-24,93v37,-6,58,0,93,2v36,2,-9,-34,18,-39v8,1,15,7,14,18v-9,68,-114,16,-175,37v2,-15,20,-10,24,-24r15,-50r-54,0v-26,33,-40,88,-86,98v-17,3,-26,-22,-7,-23v12,3,23,9,33,-3v34,-41,89,-160,129,-199v-6,-7,-21,-1,-31,2r2,-9v44,-11,102,5,151,-6xm150,-84r27,-113v-27,30,-53,67,-77,113v17,2,32,1,50,0xm226,-284r34,0r-60,51r-10,0","w":266},"\u01fd":{"d":"49,5v-32,-5,-24,-53,-10,-79v21,-39,44,-77,104,-70v2,-7,8,-8,16,-9r-5,17v18,-16,59,-19,56,11v-4,43,-35,45,-76,67v-2,17,-3,40,13,40v11,0,27,-7,47,-23r6,7v-25,26,-48,39,-70,39v-20,-1,-26,-16,-26,-38v-13,16,-31,34,-55,38xm185,-118v-7,-28,-31,-11,-37,8v-4,14,-9,27,-11,40v22,-10,44,-23,48,-48xm54,-41v-2,30,21,26,37,10v19,-19,25,-62,35,-93v-52,-13,-69,39,-72,83xm178,-220r34,0r-60,51r-10,0","w":194},"\u01fe":{"d":"70,-17v-67,-83,31,-240,141,-182r20,-26r9,7r-20,26v75,79,-30,250,-142,182r-24,31r-8,-7xm196,-179v-55,-52,-116,15,-116,90v0,19,3,35,9,48xm139,-8v68,0,91,-104,63,-162r-107,139v8,13,24,23,44,23xm197,-284r34,0r-60,51r-10,0","w":237},"\u01ff":{"d":"47,-9v-32,-64,32,-168,102,-130v6,-7,11,-22,20,-10r-13,18v34,63,-35,162,-102,128v-6,6,-11,21,-19,9xm110,-135v-31,0,-50,55,-41,98r62,-79v-4,-13,-11,-19,-21,-19xm92,-9v33,0,47,-54,42,-95r-62,78v5,11,11,17,20,17xm143,-220r34,0r-60,51r-10,0","w":158},"\u00a4":{"d":"189,-43v-23,22,-72,22,-95,0r-17,17r-13,-14r17,-17v-20,-24,-22,-69,0,-93r-17,-17r13,-14r17,18v22,-22,72,-22,95,0r17,-18r13,14r-17,17v22,23,22,70,0,93r17,17r-13,14xm198,-103v0,-31,-25,-56,-56,-56v-30,0,-56,25,-56,56v0,31,26,57,56,57v31,0,56,-26,56,-57","w":216}}});

//MooTools, <http://mootools.net>, My Object Oriented (JavaScript) Tools. Copyright (c) 2006-2009 Valerio Proietti, <http://mad4milk.net>, MIT Style License.

var MooTools={version:"1.2.3",build:"4980aa0fb74d2f6eb80bcd9f5b8e1fd6fbb8f607"};var Native=function(k){k=k||{};var a=k.name;var i=k.legacy;var b=k.protect;
var c=k.implement;var h=k.generics;var f=k.initialize;var g=k.afterImplement||function(){};var d=f||i;h=h!==false;d.constructor=Native;d.$family={name:"native"};
if(i&&f){d.prototype=i.prototype;}d.prototype.constructor=d;if(a){var e=a.toLowerCase();d.prototype.$family={name:e};Native.typize(d,e);}var j=function(n,l,o,m){if(!b||m||!n.prototype[l]){n.prototype[l]=o;
}if(h){Native.genericize(n,l,b);}g.call(n,l,o);return n;};d.alias=function(n,l,p){if(typeof n=="string"){var o=this.prototype[n];if((n=o)){return j(this,l,n,p);
}}for(var m in n){this.alias(m,n[m],l);}return this;};d.implement=function(m,l,o){if(typeof m=="string"){return j(this,m,l,o);}for(var n in m){j(this,n,m[n],l);
}return this;};if(c){d.implement(c);}return d;};Native.genericize=function(b,c,a){if((!a||!b[c])&&typeof b.prototype[c]=="function"){b[c]=function(){var d=Array.prototype.slice.call(arguments);
return b.prototype[c].apply(d.shift(),d);};}};Native.implement=function(d,c){for(var b=0,a=d.length;b<a;b++){d[b].implement(c);}};Native.typize=function(a,b){if(!a.type){a.type=function(c){return($type(c)===b);
};}};(function(){var a={Array:Array,Date:Date,Function:Function,Number:Number,RegExp:RegExp,String:String};for(var h in a){new Native({name:h,initialize:a[h],protect:true});
}var d={"boolean":Boolean,"native":Native,object:Object};for(var c in d){Native.typize(d[c],c);}var f={Array:["concat","indexOf","join","lastIndexOf","pop","push","reverse","shift","slice","sort","splice","toString","unshift","valueOf"],String:["charAt","charCodeAt","concat","indexOf","lastIndexOf","match","replace","search","slice","split","substr","substring","toLowerCase","toUpperCase","valueOf"]};
for(var e in f){for(var b=f[e].length;b--;){Native.genericize(a[e],f[e][b],true);}}})();var Hash=new Native({name:"Hash",initialize:function(a){if($type(a)=="hash"){a=$unlink(a.getClean());
}for(var b in a){this[b]=a[b];}return this;}});Hash.implement({forEach:function(b,c){for(var a in this){if(this.hasOwnProperty(a)){b.call(c,this[a],a,this);
}}},getClean:function(){var b={};for(var a in this){if(this.hasOwnProperty(a)){b[a]=this[a];}}return b;},getLength:function(){var b=0;for(var a in this){if(this.hasOwnProperty(a)){b++;
}}return b;}});Hash.alias("forEach","each");Array.implement({forEach:function(c,d){for(var b=0,a=this.length;b<a;b++){c.call(d,this[b],b,this);}}});Array.alias("forEach","each");
function $A(b){if(b.item){var a=b.length,c=new Array(a);while(a--){c[a]=b[a];}return c;}return Array.prototype.slice.call(b);}function $arguments(a){return function(){return arguments[a];
};}function $chk(a){return !!(a||a===0);}function $clear(a){clearTimeout(a);clearInterval(a);return null;}function $defined(a){return(a!=undefined);}function $each(c,b,d){var a=$type(c);
((a=="arguments"||a=="collection"||a=="array")?Array:Hash).each(c,b,d);}function $empty(){}function $extend(c,a){for(var b in (a||{})){c[b]=a[b];}return c;
}function $H(a){return new Hash(a);}function $lambda(a){return($type(a)=="function")?a:function(){return a;};}function $merge(){var a=Array.slice(arguments);
a.unshift({});return $mixin.apply(null,a);}function $mixin(e){for(var d=1,a=arguments.length;d<a;d++){var b=arguments[d];if($type(b)!="object"){continue;
}for(var c in b){var g=b[c],f=e[c];e[c]=(f&&$type(g)=="object"&&$type(f)=="object")?$mixin(f,g):$unlink(g);}}return e;}function $pick(){for(var b=0,a=arguments.length;
b<a;b++){if(arguments[b]!=undefined){return arguments[b];}}return null;}function $random(b,a){return Math.floor(Math.random()*(a-b+1)+b);}function $splat(b){var a=$type(b);
return(a)?((a!="array"&&a!="arguments")?[b]:b):[];}var $time=Date.now||function(){return +new Date;};function $try(){for(var b=0,a=arguments.length;b<a;
b++){try{return arguments[b]();}catch(c){}}return null;}function $type(a){if(a==undefined){return false;}if(a.$family){return(a.$family.name=="number"&&!isFinite(a))?false:a.$family.name;
}if(a.nodeName){switch(a.nodeType){case 1:return"element";case 3:return(/\S/).test(a.nodeValue)?"textnode":"whitespace";}}else{if(typeof a.length=="number"){if(a.callee){return"arguments";
}else{if(a.item){return"collection";}}}}return typeof a;}function $unlink(c){var b;switch($type(c)){case"object":b={};for(var e in c){b[e]=$unlink(c[e]);
}break;case"hash":b=new Hash(c);break;case"array":b=[];for(var d=0,a=c.length;d<a;d++){b[d]=$unlink(c[d]);}break;default:return c;}return b;}var Browser=$merge({Engine:{name:"unknown",version:0},Platform:{name:(window.orientation!=undefined)?"ipod":(navigator.platform.match(/mac|win|linux/i)||["other"])[0].toLowerCase()},Features:{xpath:!!(document.evaluate),air:!!(window.runtime),query:!!(document.querySelector)},Plugins:{},Engines:{presto:function(){return(!window.opera)?false:((arguments.callee.caller)?960:((document.getElementsByClassName)?950:925));
},trident:function(){return(!window.ActiveXObject)?false:((window.XMLHttpRequest)?5:4);},webkit:function(){return(navigator.taintEnabled)?false:((Browser.Features.xpath)?((Browser.Features.query)?525:420):419);
},gecko:function(){return(document.getBoxObjectFor==undefined)?false:((document.getElementsByClassName)?19:18);}}},Browser||{});Browser.Platform[Browser.Platform.name]=true;
Browser.detect=function(){for(var b in this.Engines){var a=this.Engines[b]();if(a){this.Engine={name:b,version:a};this.Engine[b]=this.Engine[b+a]=true;
break;}}return{name:b,version:a};};Browser.detect();Browser.Request=function(){return $try(function(){return new XMLHttpRequest();},function(){return new ActiveXObject("MSXML2.XMLHTTP");
});};Browser.Features.xhr=!!(Browser.Request());Browser.Plugins.Flash=(function(){var a=($try(function(){return navigator.plugins["Shockwave Flash"].description;
},function(){return new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version");})||"0 r0").match(/\d+/g);return{version:parseInt(a[0]||0+"."+a[1],10)||0,build:parseInt(a[2],10)||0};
})();function $exec(b){if(!b){return b;}if(window.execScript){window.execScript(b);}else{var a=document.createElement("script");a.setAttribute("type","text/javascript");
a[(Browser.Engine.webkit&&Browser.Engine.version<420)?"innerText":"text"]=b;document.head.appendChild(a);document.head.removeChild(a);}return b;}Native.UID=1;
var $uid=(Browser.Engine.trident)?function(a){return(a.uid||(a.uid=[Native.UID++]))[0];}:function(a){return a.uid||(a.uid=Native.UID++);};var Window=new Native({name:"Window",legacy:(Browser.Engine.trident)?null:window.Window,initialize:function(a){$uid(a);
if(!a.Element){a.Element=$empty;if(Browser.Engine.webkit){a.document.createElement("iframe");}a.Element.prototype=(Browser.Engine.webkit)?window["[[DOMElement.prototype]]"]:{};
}a.document.window=a;return $extend(a,Window.Prototype);},afterImplement:function(b,a){window[b]=Window.Prototype[b]=a;}});Window.Prototype={$family:{name:"window"}};
new Window(window);var Document=new Native({name:"Document",legacy:(Browser.Engine.trident)?null:window.Document,initialize:function(a){$uid(a);a.head=a.getElementsByTagName("head")[0];
a.html=a.getElementsByTagName("html")[0];if(Browser.Engine.trident&&Browser.Engine.version<=4){$try(function(){a.execCommand("BackgroundImageCache",false,true);
});}if(Browser.Engine.trident){a.window.attachEvent("onunload",function(){a.window.detachEvent("onunload",arguments.callee);a.head=a.html=a.window=null;
});}return $extend(a,Document.Prototype);},afterImplement:function(b,a){document[b]=Document.Prototype[b]=a;}});Document.Prototype={$family:{name:"document"}};
new Document(document);Array.implement({every:function(c,d){for(var b=0,a=this.length;b<a;b++){if(!c.call(d,this[b],b,this)){return false;}}return true;
},filter:function(d,e){var c=[];for(var b=0,a=this.length;b<a;b++){if(d.call(e,this[b],b,this)){c.push(this[b]);}}return c;},clean:function(){return this.filter($defined);
},indexOf:function(c,d){var a=this.length;for(var b=(d<0)?Math.max(0,a+d):d||0;b<a;b++){if(this[b]===c){return b;}}return -1;},map:function(d,e){var c=[];
for(var b=0,a=this.length;b<a;b++){c[b]=d.call(e,this[b],b,this);}return c;},some:function(c,d){for(var b=0,a=this.length;b<a;b++){if(c.call(d,this[b],b,this)){return true;
}}return false;},associate:function(c){var d={},b=Math.min(this.length,c.length);for(var a=0;a<b;a++){d[c[a]]=this[a];}return d;},link:function(c){var a={};
for(var e=0,b=this.length;e<b;e++){for(var d in c){if(c[d](this[e])){a[d]=this[e];delete c[d];break;}}}return a;},contains:function(a,b){return this.indexOf(a,b)!=-1;
},extend:function(c){for(var b=0,a=c.length;b<a;b++){this.push(c[b]);}return this;},getLast:function(){return(this.length)?this[this.length-1]:null;},getRandom:function(){return(this.length)?this[$random(0,this.length-1)]:null;
},include:function(a){if(!this.contains(a)){this.push(a);}return this;},combine:function(c){for(var b=0,a=c.length;b<a;b++){this.include(c[b]);}return this;
},erase:function(b){for(var a=this.length;a--;a){if(this[a]===b){this.splice(a,1);}}return this;},empty:function(){this.length=0;return this;},flatten:function(){var d=[];
for(var b=0,a=this.length;b<a;b++){var c=$type(this[b]);if(!c){continue;}d=d.concat((c=="array"||c=="collection"||c=="arguments")?Array.flatten(this[b]):this[b]);
}return d;},hexToRgb:function(b){if(this.length!=3){return null;}var a=this.map(function(c){if(c.length==1){c+=c;}return c.toInt(16);});return(b)?a:"rgb("+a+")";
},rgbToHex:function(d){if(this.length<3){return null;}if(this.length==4&&this[3]==0&&!d){return"transparent";}var b=[];for(var a=0;a<3;a++){var c=(this[a]-0).toString(16);
b.push((c.length==1)?"0"+c:c);}return(d)?b:"#"+b.join("");}});Function.implement({extend:function(a){for(var b in a){this[b]=a[b];}return this;},create:function(b){var a=this;
b=b||{};return function(d){var c=b.arguments;c=(c!=undefined)?$splat(c):Array.slice(arguments,(b.event)?1:0);if(b.event){c=[d||window.event].extend(c);
}var e=function(){return a.apply(b.bind||null,c);};if(b.delay){return setTimeout(e,b.delay);}if(b.periodical){return setInterval(e,b.periodical);}if(b.attempt){return $try(e);
}return e();};},run:function(a,b){return this.apply(b,$splat(a));},pass:function(a,b){return this.create({bind:b,arguments:a});},bind:function(b,a){return this.create({bind:b,arguments:a});
},bindWithEvent:function(b,a){return this.create({bind:b,arguments:a,event:true});},attempt:function(a,b){return this.create({bind:b,arguments:a,attempt:true})();
},delay:function(b,c,a){return this.create({bind:c,arguments:a,delay:b})();},periodical:function(c,b,a){return this.create({bind:b,arguments:a,periodical:c})();
}});Number.implement({limit:function(b,a){return Math.min(a,Math.max(b,this));},round:function(a){a=Math.pow(10,a||0);return Math.round(this*a)/a;},times:function(b,c){for(var a=0;
a<this;a++){b.call(c,a,this);}},toFloat:function(){return parseFloat(this);},toInt:function(a){return parseInt(this,a||10);}});Number.alias("times","each");
(function(b){var a={};b.each(function(c){if(!Number[c]){a[c]=function(){return Math[c].apply(null,[this].concat($A(arguments)));};}});Number.implement(a);
})(["abs","acos","asin","atan","atan2","ceil","cos","exp","floor","log","max","min","pow","sin","sqrt","tan"]);String.implement({test:function(a,b){return((typeof a=="string")?new RegExp(a,b):a).test(this);
},contains:function(a,b){return(b)?(b+this+b).indexOf(b+a+b)>-1:this.indexOf(a)>-1;},trim:function(){return this.replace(/^\s+|\s+$/g,"");},clean:function(){return this.replace(/\s+/g," ").trim();
},camelCase:function(){return this.replace(/-\D/g,function(a){return a.charAt(1).toUpperCase();});},hyphenate:function(){return this.replace(/[A-Z]/g,function(a){return("-"+a.charAt(0).toLowerCase());
});},capitalize:function(){return this.replace(/\b[a-z]/g,function(a){return a.toUpperCase();});},escapeRegExp:function(){return this.replace(/([-.*+?^${}()|[\]\/\\])/g,"\\$1");
},toInt:function(a){return parseInt(this,a||10);},toFloat:function(){return parseFloat(this);},hexToRgb:function(b){var a=this.match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);
return(a)?a.slice(1).hexToRgb(b):null;},rgbToHex:function(b){var a=this.match(/\d{1,3}/g);return(a)?a.rgbToHex(b):null;},stripScripts:function(b){var a="";
var c=this.replace(/<script[^>]*>([\s\S]*?)<\/script>/gi,function(){a+=arguments[1]+"\n";return"";});if(b===true){$exec(a);}else{if($type(b)=="function"){b(a,c);
}}return c;},substitute:function(a,b){return this.replace(b||(/\\?\{([^{}]+)\}/g),function(d,c){if(d.charAt(0)=="\\"){return d.slice(1);}return(a[c]!=undefined)?a[c]:"";
});}});Hash.implement({has:Object.prototype.hasOwnProperty,keyOf:function(b){for(var a in this){if(this.hasOwnProperty(a)&&this[a]===b){return a;}}return null;
},hasValue:function(a){return(Hash.keyOf(this,a)!==null);},extend:function(a){Hash.each(a||{},function(c,b){Hash.set(this,b,c);},this);return this;},combine:function(a){Hash.each(a||{},function(c,b){Hash.include(this,b,c);
},this);return this;},erase:function(a){if(this.hasOwnProperty(a)){delete this[a];}return this;},get:function(a){return(this.hasOwnProperty(a))?this[a]:null;
},set:function(a,b){if(!this[a]||this.hasOwnProperty(a)){this[a]=b;}return this;},empty:function(){Hash.each(this,function(b,a){delete this[a];},this);
return this;},include:function(a,b){if(this[a]==undefined){this[a]=b;}return this;},map:function(b,c){var a=new Hash;Hash.each(this,function(e,d){a.set(d,b.call(c,e,d,this));
},this);return a;},filter:function(b,c){var a=new Hash;Hash.each(this,function(e,d){if(b.call(c,e,d,this)){a.set(d,e);}},this);return a;},every:function(b,c){for(var a in this){if(this.hasOwnProperty(a)&&!b.call(c,this[a],a)){return false;
}}return true;},some:function(b,c){for(var a in this){if(this.hasOwnProperty(a)&&b.call(c,this[a],a)){return true;}}return false;},getKeys:function(){var a=[];
Hash.each(this,function(c,b){a.push(b);});return a;},getValues:function(){var a=[];Hash.each(this,function(b){a.push(b);});return a;},toQueryString:function(a){var b=[];
Hash.each(this,function(f,e){if(a){e=a+"["+e+"]";}var d;switch($type(f)){case"object":d=Hash.toQueryString(f,e);break;case"array":var c={};f.each(function(h,g){c[g]=h;
});d=Hash.toQueryString(c,e);break;default:d=e+"="+encodeURIComponent(f);}if(f!=undefined){b.push(d);}});return b.join("&");}});Hash.alias({keyOf:"indexOf",hasValue:"contains"});
var Event=new Native({name:"Event",initialize:function(a,f){f=f||window;var k=f.document;a=a||f.event;if(a.$extended){return a;}this.$extended=true;var j=a.type;
var g=a.target||a.srcElement;while(g&&g.nodeType==3){g=g.parentNode;}if(j.test(/key/)){var b=a.which||a.keyCode;var m=Event.Keys.keyOf(b);if(j=="keydown"){var d=b-111;
if(d>0&&d<13){m="f"+d;}}m=m||String.fromCharCode(b).toLowerCase();}else{if(j.match(/(click|mouse|menu)/i)){k=(!k.compatMode||k.compatMode=="CSS1Compat")?k.html:k.body;
var i={x:a.pageX||a.clientX+k.scrollLeft,y:a.pageY||a.clientY+k.scrollTop};var c={x:(a.pageX)?a.pageX-f.pageXOffset:a.clientX,y:(a.pageY)?a.pageY-f.pageYOffset:a.clientY};
if(j.match(/DOMMouseScroll|mousewheel/)){var h=(a.wheelDelta)?a.wheelDelta/120:-(a.detail||0)/3;}var e=(a.which==3)||(a.button==2);var l=null;if(j.match(/over|out/)){switch(j){case"mouseover":l=a.relatedTarget||a.fromElement;
break;case"mouseout":l=a.relatedTarget||a.toElement;}if(!(function(){while(l&&l.nodeType==3){l=l.parentNode;}return true;}).create({attempt:Browser.Engine.gecko})()){l=false;
}}}}return $extend(this,{event:a,type:j,page:i,client:c,rightClick:e,wheel:h,relatedTarget:l,target:g,code:b,key:m,shift:a.shiftKey,control:a.ctrlKey,alt:a.altKey,meta:a.metaKey});
}});Event.Keys=new Hash({enter:13,up:38,down:40,left:37,right:39,esc:27,space:32,backspace:8,tab:9,"delete":46});Event.implement({stop:function(){return this.stopPropagation().preventDefault();
},stopPropagation:function(){if(this.event.stopPropagation){this.event.stopPropagation();}else{this.event.cancelBubble=true;}return this;},preventDefault:function(){if(this.event.preventDefault){this.event.preventDefault();
}else{this.event.returnValue=false;}return this;}});function Class(b){if(b instanceof Function){b={initialize:b};}var a=function(){Object.reset(this);if(a._prototyping){return this;
}this._current=$empty;var c=(this.initialize)?this.initialize.apply(this,arguments):this;delete this._current;delete this.caller;return c;}.extend(this);
a.implement(b);a.constructor=Class;a.prototype.constructor=a;return a;}Function.prototype.protect=function(){this._protected=true;return this;};Object.reset=function(a,c){if(c==null){for(var e in a){Object.reset(a,e);
}return a;}delete a[c];switch($type(a[c])){case"object":var d=function(){};d.prototype=a[c];var b=new d;a[c]=Object.reset(b);break;case"array":a[c]=$unlink(a[c]);
break;}return a;};new Native({name:"Class",initialize:Class}).extend({instantiate:function(b){b._prototyping=true;var a=new b;delete b._prototyping;return a;
},wrap:function(a,b,c){if(c._origin){c=c._origin;}return function(){if(c._protected&&this._current==null){throw new Error('The method "'+b+'" cannot be called.');
}var e=this.caller,f=this._current;this.caller=f;this._current=arguments.callee;var d=c.apply(this,arguments);this._current=f;this.caller=e;return d;}.extend({_owner:a,_origin:c,_name:b});
}});Class.implement({implement:function(a,d){if($type(a)=="object"){for(var e in a){this.implement(e,a[e]);}return this;}var f=Class.Mutators[a];if(f){d=f.call(this,d);
if(d==null){return this;}}var c=this.prototype;switch($type(d)){case"function":if(d._hidden){return this;}c[a]=Class.wrap(this,a,d);break;case"object":var b=c[a];
if($type(b)=="object"){$mixin(b,d);}else{c[a]=$unlink(d);}break;case"array":c[a]=$unlink(d);break;default:c[a]=d;}return this;}});Class.Mutators={Extends:function(a){this.parent=a;
this.prototype=Class.instantiate(a);this.implement("parent",function(){var b=this.caller._name,c=this.caller._owner.parent.prototype[b];if(!c){throw new Error('The method "'+b+'" has no parent.');
}return c.apply(this,arguments);}.protect());},Implements:function(a){$splat(a).each(function(b){if(b instanceof Function){b=Class.instantiate(b);}this.implement(b);
},this);}};var Chain=new Class({$chain:[],chain:function(){this.$chain.extend(Array.flatten(arguments));return this;},callChain:function(){return(this.$chain.length)?this.$chain.shift().apply(this,arguments):false;
},clearChain:function(){this.$chain.empty();return this;}});var Events=new Class({$events:{},addEvent:function(c,b,a){c=Events.removeOn(c);if(b!=$empty){this.$events[c]=this.$events[c]||[];
this.$events[c].include(b);if(a){b.internal=true;}}return this;},addEvents:function(a){for(var b in a){this.addEvent(b,a[b]);}return this;},fireEvent:function(c,b,a){c=Events.removeOn(c);
if(!this.$events||!this.$events[c]){return this;}this.$events[c].each(function(d){d.create({bind:this,delay:a,"arguments":b})();},this);return this;},removeEvent:function(b,a){b=Events.removeOn(b);
if(!this.$events[b]){return this;}if(!a.internal){this.$events[b].erase(a);}return this;},removeEvents:function(c){var d;if($type(c)=="object"){for(d in c){this.removeEvent(d,c[d]);
}return this;}if(c){c=Events.removeOn(c);}for(d in this.$events){if(c&&c!=d){continue;}var b=this.$events[d];for(var a=b.length;a--;a){this.removeEvent(d,b[a]);
}}return this;}});Events.removeOn=function(a){return a.replace(/^on([A-Z])/,function(b,c){return c.toLowerCase();});};var Options=new Class({setOptions:function(){this.options=$merge.run([this.options].extend(arguments));
if(!this.addEvent){return this;}for(var a in this.options){if($type(this.options[a])!="function"||!(/^on[A-Z]/).test(a)){continue;}this.addEvent(a,this.options[a]);
delete this.options[a];}return this;}});var Element=new Native({name:"Element",legacy:window.Element,initialize:function(a,b){var c=Element.Constructors.get(a);
if(c){return c(b);}if(typeof a=="string"){return document.newElement(a,b);}return document.id(a).set(b);},afterImplement:function(a,b){Element.Prototype[a]=b;
if(Array[a]){return;}Elements.implement(a,function(){var c=[],g=true;for(var e=0,d=this.length;e<d;e++){var f=this[e][a].apply(this[e],arguments);c.push(f);
if(g){g=($type(f)=="element");}}return(g)?new Elements(c):c;});}});Element.Prototype={$family:{name:"element"}};Element.Constructors=new Hash;var IFrame=new Native({name:"IFrame",generics:false,initialize:function(){var f=Array.link(arguments,{properties:Object.type,iframe:$defined});
var d=f.properties||{};var c=document.id(f.iframe);var e=d.onload||$empty;delete d.onload;d.id=d.name=$pick(d.id,d.name,c?(c.id||c.name):"IFrame_"+$time());
c=new Element(c||"iframe",d);var b=function(){var g=$try(function(){return c.contentWindow.location.host;});if(!g||g==window.location.host){var h=new Window(c.contentWindow);
new Document(c.contentWindow.document);$extend(h.Element.prototype,Element.Prototype);}e.call(c.contentWindow,c.contentWindow.document);};var a=$try(function(){return c.contentWindow;
});((a&&a.document.body)||window.frames[d.id])?b():c.addListener("load",b);return c;}});var Elements=new Native({initialize:function(f,b){b=$extend({ddup:true,cash:true},b);
f=f||[];if(b.ddup||b.cash){var g={},e=[];for(var c=0,a=f.length;c<a;c++){var d=document.id(f[c],!b.cash);if(b.ddup){if(g[d.uid]){continue;}g[d.uid]=true;
}e.push(d);}f=e;}return(b.cash)?$extend(f,this):f;}});Elements.implement({filter:function(a,b){if(!a){return this;}return new Elements(Array.filter(this,(typeof a=="string")?function(c){return c.match(a);
}:a,b));}});Document.implement({newElement:function(a,b){if(Browser.Engine.trident&&b){["name","type","checked"].each(function(c){if(!b[c]){return;}a+=" "+c+'="'+b[c]+'"';
if(c!="checked"){delete b[c];}});a="<"+a+">";}return document.id(this.createElement(a)).set(b);},newTextNode:function(a){return this.createTextNode(a);
},getDocument:function(){return this;},getWindow:function(){return this.window;},id:(function(){var a={string:function(d,c,b){d=b.getElementById(d);return(d)?a.element(d,c):null;
},element:function(b,e){$uid(b);if(!e&&!b.$family&&!(/^object|embed$/i).test(b.tagName)){var c=Element.Prototype;for(var d in c){b[d]=c[d];}}return b;},object:function(c,d,b){if(c.toElement){return a.element(c.toElement(b),d);
}return null;}};a.textnode=a.whitespace=a.window=a.document=$arguments(0);return function(c,e,d){if(c&&c.$family&&c.uid){return c;}var b=$type(c);return(a[b])?a[b](c,e,d||document):null;
};})()});if(window.$==null){Window.implement({$:function(a,b){return document.id(a,b,this.document);}});}Window.implement({$$:function(a){if(arguments.length==1&&typeof a=="string"){return this.document.getElements(a);
}var f=[];var c=Array.flatten(arguments);for(var d=0,b=c.length;d<b;d++){var e=c[d];switch($type(e)){case"element":f.push(e);break;case"string":f.extend(this.document.getElements(e,true));
}}return new Elements(f);},getDocument:function(){return this.document;},getWindow:function(){return this;}});Native.implement([Element,Document],{getElement:function(a,b){return document.id(this.getElements(a,true)[0]||null,b);
},getElements:function(a,d){a=a.split(",");var c=[];var b=(a.length>1);a.each(function(e){var f=this.getElementsByTagName(e.trim());(b)?c.extend(f):c=f;
},this);return new Elements(c,{ddup:b,cash:!d});}});(function(){var h={},f={};var i={input:"checked",option:"selected",textarea:(Browser.Engine.webkit&&Browser.Engine.version<420)?"innerHTML":"value"};
var c=function(l){return(f[l]||(f[l]={}));};var g=function(n,l){if(!n){return;}var m=n.uid;if(Browser.Engine.trident){if(n.clearAttributes){var q=l&&n.cloneNode(false);
n.clearAttributes();if(q){n.mergeAttributes(q);}}else{if(n.removeEvents){n.removeEvents();}}if((/object/i).test(n.tagName)){for(var o in n){if(typeof n[o]=="function"){n[o]=$empty;
}}Element.dispose(n);}}if(!m){return;}h[m]=f[m]=null;};var d=function(){Hash.each(h,g);if(Browser.Engine.trident){$A(document.getElementsByTagName("object")).each(g);
}if(window.CollectGarbage){CollectGarbage();}h=f=null;};var j=function(n,l,s,m,p,r){var o=n[s||l];var q=[];while(o){if(o.nodeType==1&&(!m||Element.match(o,m))){if(!p){return document.id(o,r);
}q.push(o);}o=o[l];}return(p)?new Elements(q,{ddup:false,cash:!r}):null;};var e={html:"innerHTML","class":"className","for":"htmlFor",defaultValue:"defaultValue",text:(Browser.Engine.trident||(Browser.Engine.webkit&&Browser.Engine.version<420))?"innerText":"textContent"};
var b=["compact","nowrap","ismap","declare","noshade","checked","disabled","readonly","multiple","selected","noresize","defer"];var k=["value","type","defaultValue","accessKey","cellPadding","cellSpacing","colSpan","frameBorder","maxLength","readOnly","rowSpan","tabIndex","useMap"];
b=b.associate(b);Hash.extend(e,b);Hash.extend(e,k.associate(k.map(String.toLowerCase)));var a={before:function(m,l){if(l.parentNode){l.parentNode.insertBefore(m,l);
}},after:function(m,l){if(!l.parentNode){return;}var n=l.nextSibling;(n)?l.parentNode.insertBefore(m,n):l.parentNode.appendChild(m);},bottom:function(m,l){l.appendChild(m);
},top:function(m,l){var n=l.firstChild;(n)?l.insertBefore(m,n):l.appendChild(m);}};a.inside=a.bottom;Hash.each(a,function(l,m){m=m.capitalize();Element.implement("inject"+m,function(n){l(this,document.id(n,true));
return this;});Element.implement("grab"+m,function(n){l(document.id(n,true),this);return this;});});Element.implement({set:function(o,m){switch($type(o)){case"object":for(var n in o){this.set(n,o[n]);
}break;case"string":var l=Element.Properties.get(o);(l&&l.set)?l.set.apply(this,Array.slice(arguments,1)):this.setProperty(o,m);}return this;},get:function(m){var l=Element.Properties.get(m);
return(l&&l.get)?l.get.apply(this,Array.slice(arguments,1)):this.getProperty(m);},erase:function(m){var l=Element.Properties.get(m);(l&&l.erase)?l.erase.apply(this):this.removeProperty(m);
return this;},setProperty:function(m,n){var l=e[m];if(n==undefined){return this.removeProperty(m);}if(l&&b[m]){n=!!n;}(l)?this[l]=n:this.setAttribute(m,""+n);
return this;},setProperties:function(l){for(var m in l){this.setProperty(m,l[m]);}return this;},getProperty:function(m){var l=e[m];var n=(l)?this[l]:this.getAttribute(m,2);
return(b[m])?!!n:(l)?n:n||null;},getProperties:function(){var l=$A(arguments);return l.map(this.getProperty,this).associate(l);},removeProperty:function(m){var l=e[m];
(l)?this[l]=(l&&b[m])?false:"":this.removeAttribute(m);return this;},removeProperties:function(){Array.each(arguments,this.removeProperty,this);return this;
},hasClass:function(l){return this.className.contains(l," ");},addClass:function(l){if(!this.hasClass(l)){this.className=(this.className+" "+l).clean();
}return this;},removeClass:function(l){this.className=this.className.replace(new RegExp("(^|\\s)"+l+"(?:\\s|$)"),"$1");return this;},toggleClass:function(l){return this.hasClass(l)?this.removeClass(l):this.addClass(l);
},adopt:function(){Array.flatten(arguments).each(function(l){l=document.id(l,true);if(l){this.appendChild(l);}},this);return this;},appendText:function(m,l){return this.grab(this.getDocument().newTextNode(m),l);
},grab:function(m,l){a[l||"bottom"](document.id(m,true),this);return this;},inject:function(m,l){a[l||"bottom"](this,document.id(m,true));return this;},replaces:function(l){l=document.id(l,true);
l.parentNode.replaceChild(this,l);return this;},wraps:function(m,l){m=document.id(m,true);return this.replaces(m).grab(m,l);},getPrevious:function(l,m){return j(this,"previousSibling",null,l,false,m);
},getAllPrevious:function(l,m){return j(this,"previousSibling",null,l,true,m);},getNext:function(l,m){return j(this,"nextSibling",null,l,false,m);},getAllNext:function(l,m){return j(this,"nextSibling",null,l,true,m);
},getFirst:function(l,m){return j(this,"nextSibling","firstChild",l,false,m);},getLast:function(l,m){return j(this,"previousSibling","lastChild",l,false,m);
},getParent:function(l,m){return j(this,"parentNode",null,l,false,m);},getParents:function(l,m){return j(this,"parentNode",null,l,true,m);},getSiblings:function(l,m){return this.getParent().getChildren(l,m).erase(this);
},getChildren:function(l,m){return j(this,"nextSibling","firstChild",l,true,m);},getWindow:function(){return this.ownerDocument.window;},getDocument:function(){return this.ownerDocument;
},getElementById:function(o,n){var m=this.ownerDocument.getElementById(o);if(!m){return null;}for(var l=m.parentNode;l!=this;l=l.parentNode){if(!l){return null;
}}return document.id(m,n);},getSelected:function(){return new Elements($A(this.options).filter(function(l){return l.selected;}));},getComputedStyle:function(m){if(this.currentStyle){return this.currentStyle[m.camelCase()];
}var l=this.getDocument().defaultView.getComputedStyle(this,null);return(l)?l.getPropertyValue([m.hyphenate()]):null;},toQueryString:function(){var l=[];
this.getElements("input, select, textarea",true).each(function(m){if(!m.name||m.disabled||m.type=="submit"||m.type=="reset"||m.type=="file"){return;}var n=(m.tagName.toLowerCase()=="select")?Element.getSelected(m).map(function(o){return o.value;
}):((m.type=="radio"||m.type=="checkbox")&&!m.checked)?null:m.value;$splat(n).each(function(o){if(typeof o!="undefined"){l.push(m.name+"="+encodeURIComponent(o));
}});});return l.join("&");},clone:function(o,l){o=o!==false;var r=this.cloneNode(o);var n=function(v,u){if(!l){v.removeAttribute("id");}if(Browser.Engine.trident){v.clearAttributes();
v.mergeAttributes(u);v.removeAttribute("uid");if(v.options){var w=v.options,s=u.options;for(var t=w.length;t--;){w[t].selected=s[t].selected;}}}var x=i[u.tagName.toLowerCase()];
if(x&&u[x]){v[x]=u[x];}};if(o){var p=r.getElementsByTagName("*"),q=this.getElementsByTagName("*");for(var m=p.length;m--;){n(p[m],q[m]);}}n(r,this);return document.id(r);
},destroy:function(){Element.empty(this);Element.dispose(this);g(this,true);return null;},empty:function(){$A(this.childNodes).each(function(l){Element.destroy(l);
});return this;},dispose:function(){return(this.parentNode)?this.parentNode.removeChild(this):this;},hasChild:function(l){l=document.id(l,true);if(!l){return false;
}if(Browser.Engine.webkit&&Browser.Engine.version<420){return $A(this.getElementsByTagName(l.tagName)).contains(l);}return(this.contains)?(this!=l&&this.contains(l)):!!(this.compareDocumentPosition(l)&16);
},match:function(l){return(!l||(l==this)||(Element.get(this,"tag")==l));}});Native.implement([Element,Window,Document],{addListener:function(o,n){if(o=="unload"){var l=n,m=this;
n=function(){m.removeListener("unload",n);l();};}else{h[this.uid]=this;}if(this.addEventListener){this.addEventListener(o,n,false);}else{this.attachEvent("on"+o,n);
}return this;},removeListener:function(m,l){if(this.removeEventListener){this.removeEventListener(m,l,false);}else{this.detachEvent("on"+m,l);}return this;
},retrieve:function(m,l){var o=c(this.uid),n=o[m];if(l!=undefined&&n==undefined){n=o[m]=l;}return $pick(n);},store:function(m,l){var n=c(this.uid);n[m]=l;
return this;},eliminate:function(l){var m=c(this.uid);delete m[l];return this;}});window.addListener("unload",d);})();Element.Properties=new Hash;Element.Properties.style={set:function(a){this.style.cssText=a;
},get:function(){return this.style.cssText;},erase:function(){this.style.cssText="";}};Element.Properties.tag={get:function(){return this.tagName.toLowerCase();
}};Element.Properties.html=(function(){var c=document.createElement("div");var a={table:[1,"<table>","</table>"],select:[1,"<select>","</select>"],tbody:[2,"<table><tbody>","</tbody></table>"],tr:[3,"<table><tbody><tr>","</tr></tbody></table>"]};
a.thead=a.tfoot=a.tbody;var b={set:function(){var e=Array.flatten(arguments).join("");var f=Browser.Engine.trident&&a[this.get("tag")];if(f){var g=c;g.innerHTML=f[1]+e+f[2];
for(var d=f[0];d--;){g=g.firstChild;}this.empty().adopt(g.childNodes);}else{this.innerHTML=e;}}};b.erase=b.set;return b;})();if(Browser.Engine.webkit&&Browser.Engine.version<420){Element.Properties.text={get:function(){if(this.innerText){return this.innerText;
}var a=this.ownerDocument.newElement("div",{html:this.innerHTML}).inject(this.ownerDocument.body);var b=a.innerText;a.destroy();return b;}};}Element.Properties.events={set:function(a){this.addEvents(a);
}};Native.implement([Element,Window,Document],{addEvent:function(e,g){var h=this.retrieve("events",{});h[e]=h[e]||{keys:[],values:[]};if(h[e].keys.contains(g)){return this;
}h[e].keys.push(g);var f=e,a=Element.Events.get(e),c=g,i=this;if(a){if(a.onAdd){a.onAdd.call(this,g);}if(a.condition){c=function(j){if(a.condition.call(this,j)){return g.call(this,j);
}return true;};}f=a.base||f;}var d=function(){return g.call(i);};var b=Element.NativeEvents[f];if(b){if(b==2){d=function(j){j=new Event(j,i.getWindow());
if(c.call(i,j)===false){j.stop();}};}this.addListener(f,d);}h[e].values.push(d);return this;},removeEvent:function(c,b){var a=this.retrieve("events");if(!a||!a[c]){return this;
}var f=a[c].keys.indexOf(b);if(f==-1){return this;}a[c].keys.splice(f,1);var e=a[c].values.splice(f,1)[0];var d=Element.Events.get(c);if(d){if(d.onRemove){d.onRemove.call(this,b);
}c=d.base||c;}return(Element.NativeEvents[c])?this.removeListener(c,e):this;},addEvents:function(a){for(var b in a){this.addEvent(b,a[b]);}return this;
},removeEvents:function(a){var c;if($type(a)=="object"){for(c in a){this.removeEvent(c,a[c]);}return this;}var b=this.retrieve("events");if(!b){return this;
}if(!a){for(c in b){this.removeEvents(c);}this.eliminate("events");}else{if(b[a]){while(b[a].keys[0]){this.removeEvent(a,b[a].keys[0]);}b[a]=null;}}return this;
},fireEvent:function(d,b,a){var c=this.retrieve("events");if(!c||!c[d]){return this;}c[d].keys.each(function(e){e.create({bind:this,delay:a,"arguments":b})();
},this);return this;},cloneEvents:function(d,a){d=document.id(d);var c=d.retrieve("events");if(!c){return this;}if(!a){for(var b in c){this.cloneEvents(d,b);
}}else{if(c[a]){c[a].keys.each(function(e){this.addEvent(a,e);},this);}}return this;}});Element.NativeEvents={click:2,dblclick:2,mouseup:2,mousedown:2,contextmenu:2,mousewheel:2,DOMMouseScroll:2,mouseover:2,mouseout:2,mousemove:2,selectstart:2,selectend:2,keydown:2,keypress:2,keyup:2,focus:2,blur:2,change:2,reset:2,select:2,submit:2,load:1,unload:1,beforeunload:2,resize:1,move:1,DOMContentLoaded:1,readystatechange:1,error:1,abort:1,scroll:1};
(function(){var a=function(b){var c=b.relatedTarget;if(c==undefined){return true;}if(c===false){return false;}return($type(this)!="document"&&c!=this&&c.prefix!="xul"&&!this.hasChild(c));
};Element.Events=new Hash({mouseenter:{base:"mouseover",condition:a},mouseleave:{base:"mouseout",condition:a},mousewheel:{base:(Browser.Engine.gecko)?"DOMMouseScroll":"mousewheel"}});
})();Element.Properties.styles={set:function(a){this.setStyles(a);}};Element.Properties.opacity={set:function(a,b){if(!b){if(a==0){if(this.style.visibility!="hidden"){this.style.visibility="hidden";
}}else{if(this.style.visibility!="visible"){this.style.visibility="visible";}}}if(!this.currentStyle||!this.currentStyle.hasLayout){this.style.zoom=1;}if(Browser.Engine.trident){this.style.filter=(a==1)?"":"alpha(opacity="+a*100+")";
}this.style.opacity=a;this.store("opacity",a);},get:function(){return this.retrieve("opacity",1);}};Element.implement({setOpacity:function(a){return this.set("opacity",a,true);
},getOpacity:function(){return this.get("opacity");},setStyle:function(b,a){switch(b){case"opacity":return this.set("opacity",parseFloat(a));case"float":b=(Browser.Engine.trident)?"styleFloat":"cssFloat";
}b=b.camelCase();if($type(a)!="string"){var c=(Element.Styles.get(b)||"@").split(" ");a=$splat(a).map(function(e,d){if(!c[d]){return"";}return($type(e)=="number")?c[d].replace("@",Math.round(e)):e;
}).join(" ");}else{if(a==String(Number(a))){a=Math.round(a);}}this.style[b]=a;return this;},getStyle:function(g){switch(g){case"opacity":return this.get("opacity");
case"float":g=(Browser.Engine.trident)?"styleFloat":"cssFloat";}g=g.camelCase();var a=this.style[g];if(!$chk(a)){a=[];for(var f in Element.ShortStyles){if(g!=f){continue;
}for(var e in Element.ShortStyles[f]){a.push(this.getStyle(e));}return a.join(" ");}a=this.getComputedStyle(g);}if(a){a=String(a);var c=a.match(/rgba?\([\d\s,]+\)/);
if(c){a=a.replace(c[0],c[0].rgbToHex());}}if(Browser.Engine.presto||(Browser.Engine.trident&&!$chk(parseInt(a,10)))){if(g.test(/^(height|width)$/)){var b=(g=="width")?["left","right"]:["top","bottom"],d=0;
b.each(function(h){d+=this.getStyle("border-"+h+"-width").toInt()+this.getStyle("padding-"+h).toInt();},this);return this["offset"+g.capitalize()]-d+"px";
}if((Browser.Engine.presto)&&String(a).test("px")){return a;}if(g.test(/(border(.+)Width|margin|padding)/)){return"0px";}}return a;},setStyles:function(b){for(var a in b){this.setStyle(a,b[a]);
}return this;},getStyles:function(){var a={};Array.flatten(arguments).each(function(b){a[b]=this.getStyle(b);},this);return a;}});Element.Styles=new Hash({left:"@px",top:"@px",bottom:"@px",right:"@px",width:"@px",height:"@px",maxWidth:"@px",maxHeight:"@px",minWidth:"@px",minHeight:"@px",backgroundColor:"rgb(@, @, @)",backgroundPosition:"@px @px",color:"rgb(@, @, @)",fontSize:"@px",letterSpacing:"@px",lineHeight:"@px",clip:"rect(@px @px @px @px)",margin:"@px @px @px @px",padding:"@px @px @px @px",border:"@px @ rgb(@, @, @) @px @ rgb(@, @, @) @px @ rgb(@, @, @)",borderWidth:"@px @px @px @px",borderStyle:"@ @ @ @",borderColor:"rgb(@, @, @) rgb(@, @, @) rgb(@, @, @) rgb(@, @, @)",zIndex:"@",zoom:"@",fontWeight:"@",textIndent:"@px",opacity:"@"});
Element.ShortStyles={margin:{},padding:{},border:{},borderWidth:{},borderStyle:{},borderColor:{}};["Top","Right","Bottom","Left"].each(function(g){var f=Element.ShortStyles;
var b=Element.Styles;["margin","padding"].each(function(h){var i=h+g;f[h][i]=b[i]="@px";});var e="border"+g;f.border[e]=b[e]="@px @ rgb(@, @, @)";var d=e+"Width",a=e+"Style",c=e+"Color";
f[e]={};f.borderWidth[d]=f[e][d]=b[d]="@px";f.borderStyle[a]=f[e][a]=b[a]="@";f.borderColor[c]=f[e][c]=b[c]="rgb(@, @, @)";});(function(){Element.implement({scrollTo:function(h,i){if(b(this)){this.getWindow().scrollTo(h,i);
}else{this.scrollLeft=h;this.scrollTop=i;}return this;},getSize:function(){if(b(this)){return this.getWindow().getSize();}return{x:this.offsetWidth,y:this.offsetHeight};
},getScrollSize:function(){if(b(this)){return this.getWindow().getScrollSize();}return{x:this.scrollWidth,y:this.scrollHeight};},getScroll:function(){if(b(this)){return this.getWindow().getScroll();
}return{x:this.scrollLeft,y:this.scrollTop};},getScrolls:function(){var i=this,h={x:0,y:0};while(i&&!b(i)){h.x+=i.scrollLeft;h.y+=i.scrollTop;i=i.parentNode;
}return h;},getOffsetParent:function(){var h=this;if(b(h)){return null;}if(!Browser.Engine.trident){return h.offsetParent;}while((h=h.parentNode)&&!b(h)){if(d(h,"position")!="static"){return h;
}}return null;},getOffsets:function(){if(this.getBoundingClientRect){var m=this.getBoundingClientRect(),k=document.id(this.getDocument().documentElement),i=k.getScroll(),n=(d(this,"position")=="fixed");
return{x:parseInt(m.left,10)+((n)?0:i.x)-k.clientLeft,y:parseInt(m.top,10)+((n)?0:i.y)-k.clientTop};}var j=this,h={x:0,y:0};if(b(this)){return h;}while(j&&!b(j)){h.x+=j.offsetLeft;
h.y+=j.offsetTop;if(Browser.Engine.gecko){if(!f(j)){h.x+=c(j);h.y+=g(j);}var l=j.parentNode;if(l&&d(l,"overflow")!="visible"){h.x+=c(l);h.y+=g(l);}}else{if(j!=this&&Browser.Engine.webkit){h.x+=c(j);
h.y+=g(j);}}j=j.offsetParent;}if(Browser.Engine.gecko&&!f(this)){h.x-=c(this);h.y-=g(this);}return h;},getPosition:function(k){if(b(this)){return{x:0,y:0};
}var l=this.getOffsets(),i=this.getScrolls();var h={x:l.x-i.x,y:l.y-i.y};var j=(k&&(k=document.id(k)))?k.getPosition():{x:0,y:0};return{x:h.x-j.x,y:h.y-j.y};
},getCoordinates:function(j){if(b(this)){return this.getWindow().getCoordinates();}var h=this.getPosition(j),i=this.getSize();var k={left:h.x,top:h.y,width:i.x,height:i.y};
k.right=k.left+k.width;k.bottom=k.top+k.height;return k;},computePosition:function(h){return{left:h.x-e(this,"margin-left"),top:h.y-e(this,"margin-top")};
},setPosition:function(h){return this.setStyles(this.computePosition(h));}});Native.implement([Document,Window],{getSize:function(){if(Browser.Engine.presto||Browser.Engine.webkit){var i=this.getWindow();
return{x:i.innerWidth,y:i.innerHeight};}var h=a(this);return{x:h.clientWidth,y:h.clientHeight};},getScroll:function(){var i=this.getWindow(),h=a(this);
return{x:i.pageXOffset||h.scrollLeft,y:i.pageYOffset||h.scrollTop};},getScrollSize:function(){var i=a(this),h=this.getSize();return{x:Math.max(i.scrollWidth,h.x),y:Math.max(i.scrollHeight,h.y)};
},getPosition:function(){return{x:0,y:0};},getCoordinates:function(){var h=this.getSize();return{top:0,left:0,bottom:h.y,right:h.x,height:h.y,width:h.x};
}});var d=Element.getComputedStyle;function e(h,i){return d(h,i).toInt()||0;}function f(h){return d(h,"-moz-box-sizing")=="border-box";}function g(h){return e(h,"border-top-width");
}function c(h){return e(h,"border-left-width");}function b(h){return(/^(?:body|html)$/i).test(h.tagName);}function a(h){var i=h.getDocument();return(!i.compatMode||i.compatMode=="CSS1Compat")?i.html:i.body;
}})();Element.alias("setPosition","position");Native.implement([Window,Document,Element],{getHeight:function(){return this.getSize().y;},getWidth:function(){return this.getSize().x;
},getScrollTop:function(){return this.getScroll().y;},getScrollLeft:function(){return this.getScroll().x;},getScrollHeight:function(){return this.getScrollSize().y;
},getScrollWidth:function(){return this.getScrollSize().x;},getTop:function(){return this.getPosition().y;},getLeft:function(){return this.getPosition().x;
}});Native.implement([Document,Element],{getElements:function(h,g){h=h.split(",");var c,e={};for(var d=0,b=h.length;d<b;d++){var a=h[d],f=Selectors.Utils.search(this,a,e);
if(d!=0&&f.item){f=$A(f);}c=(d==0)?f:(c.item)?$A(c).concat(f):c.concat(f);}return new Elements(c,{ddup:(h.length>1),cash:!g});}});Element.implement({match:function(b){if(!b||(b==this)){return true;
}var d=Selectors.Utils.parseTagAndID(b);var a=d[0],e=d[1];if(!Selectors.Filters.byID(this,e)||!Selectors.Filters.byTag(this,a)){return false;}var c=Selectors.Utils.parseSelector(b);
return(c)?Selectors.Utils.filter(this,c,{}):true;}});var Selectors={Cache:{nth:{},parsed:{}}};Selectors.RegExps={id:(/#([\w-]+)/),tag:(/^(\w+|\*)/),quick:(/^(\w+|\*)$/),splitter:(/\s*([+>~\s])\s*([a-zA-Z#.*:\[])/g),combined:(/\.([\w-]+)|\[(\w+)(?:([!*^$~|]?=)(["']?)([^\4]*?)\4)?\]|:([\w-]+)(?:\(["']?(.*?)?["']?\)|$)/g)};
Selectors.Utils={chk:function(b,c){if(!c){return true;}var a=$uid(b);if(!c[a]){return c[a]=true;}return false;},parseNthArgument:function(h){if(Selectors.Cache.nth[h]){return Selectors.Cache.nth[h];
}var e=h.match(/^([+-]?\d*)?([a-z]+)?([+-]?\d*)?$/);if(!e){return false;}var g=parseInt(e[1],10);var d=(g||g===0)?g:1;var f=e[2]||false;var c=parseInt(e[3],10)||0;
if(d!=0){c--;while(c<1){c+=d;}while(c>=d){c-=d;}}else{d=c;f="index";}switch(f){case"n":e={a:d,b:c,special:"n"};break;case"odd":e={a:2,b:0,special:"n"};
break;case"even":e={a:2,b:1,special:"n"};break;case"first":e={a:0,special:"index"};break;case"last":e={special:"last-child"};break;case"only":e={special:"only-child"};
break;default:e={a:(d-1),special:"index"};}return Selectors.Cache.nth[h]=e;},parseSelector:function(e){if(Selectors.Cache.parsed[e]){return Selectors.Cache.parsed[e];
}var d,h={classes:[],pseudos:[],attributes:[]};while((d=Selectors.RegExps.combined.exec(e))){var i=d[1],g=d[2],f=d[3],b=d[5],c=d[6],j=d[7];if(i){h.classes.push(i);
}else{if(c){var a=Selectors.Pseudo.get(c);if(a){h.pseudos.push({parser:a,argument:j});}else{h.attributes.push({name:c,operator:"=",value:j});}}else{if(g){h.attributes.push({name:g,operator:f,value:b});
}}}}if(!h.classes.length){delete h.classes;}if(!h.attributes.length){delete h.attributes;}if(!h.pseudos.length){delete h.pseudos;}if(!h.classes&&!h.attributes&&!h.pseudos){h=null;
}return Selectors.Cache.parsed[e]=h;},parseTagAndID:function(b){var a=b.match(Selectors.RegExps.tag);var c=b.match(Selectors.RegExps.id);return[(a)?a[1]:"*",(c)?c[1]:false];
},filter:function(f,c,e){var d;if(c.classes){for(d=c.classes.length;d--;d){var g=c.classes[d];if(!Selectors.Filters.byClass(f,g)){return false;}}}if(c.attributes){for(d=c.attributes.length;
d--;d){var b=c.attributes[d];if(!Selectors.Filters.byAttribute(f,b.name,b.operator,b.value)){return false;}}}if(c.pseudos){for(d=c.pseudos.length;d--;d){var a=c.pseudos[d];
if(!Selectors.Filters.byPseudo(f,a.parser,a.argument,e)){return false;}}}return true;},getByTagAndID:function(b,a,d){if(d){var c=(b.getElementById)?b.getElementById(d,true):Element.getElementById(b,d,true);
return(c&&Selectors.Filters.byTag(c,a))?[c]:[];}else{return b.getElementsByTagName(a);}},search:function(o,h,t){var b=[];var c=h.trim().replace(Selectors.RegExps.splitter,function(k,j,i){b.push(j);
return":)"+i;}).split(":)");var p,e,A;for(var z=0,v=c.length;z<v;z++){var y=c[z];if(z==0&&Selectors.RegExps.quick.test(y)){p=o.getElementsByTagName(y);
continue;}var a=b[z-1];var q=Selectors.Utils.parseTagAndID(y);var B=q[0],r=q[1];if(z==0){p=Selectors.Utils.getByTagAndID(o,B,r);}else{var d={},g=[];for(var x=0,w=p.length;
x<w;x++){g=Selectors.Getters[a](g,p[x],B,r,d);}p=g;}var f=Selectors.Utils.parseSelector(y);if(f){e=[];for(var u=0,s=p.length;u<s;u++){A=p[u];if(Selectors.Utils.filter(A,f,t)){e.push(A);
}}p=e;}}return p;}};Selectors.Getters={" ":function(h,g,j,a,e){var d=Selectors.Utils.getByTagAndID(g,j,a);for(var c=0,b=d.length;c<b;c++){var f=d[c];if(Selectors.Utils.chk(f,e)){h.push(f);
}}return h;},">":function(h,g,j,a,f){var c=Selectors.Utils.getByTagAndID(g,j,a);for(var e=0,d=c.length;e<d;e++){var b=c[e];if(b.parentNode==g&&Selectors.Utils.chk(b,f)){h.push(b);
}}return h;},"+":function(c,b,a,e,d){while((b=b.nextSibling)){if(b.nodeType==1){if(Selectors.Utils.chk(b,d)&&Selectors.Filters.byTag(b,a)&&Selectors.Filters.byID(b,e)){c.push(b);
}break;}}return c;},"~":function(c,b,a,e,d){while((b=b.nextSibling)){if(b.nodeType==1){if(!Selectors.Utils.chk(b,d)){break;}if(Selectors.Filters.byTag(b,a)&&Selectors.Filters.byID(b,e)){c.push(b);
}}}return c;}};Selectors.Filters={byTag:function(b,a){return(a=="*"||(b.tagName&&b.tagName.toLowerCase()==a));},byID:function(a,b){return(!b||(a.id&&a.id==b));
},byClass:function(b,a){return(b.className&&b.className.contains(a," "));},byPseudo:function(a,d,c,b){return d.call(a,c,b);},byAttribute:function(c,d,b,e){var a=Element.prototype.getProperty.call(c,d);
if(!a){return(b=="!=");}if(!b||e==undefined){return true;}switch(b){case"=":return(a==e);case"*=":return(a.contains(e));case"^=":return(a.substr(0,e.length)==e);
case"$=":return(a.substr(a.length-e.length)==e);case"!=":return(a!=e);case"~=":return a.contains(e," ");case"|=":return a.contains(e,"-");}return false;
}};Selectors.Pseudo=new Hash({checked:function(){return this.checked;},empty:function(){return !(this.innerText||this.textContent||"").length;},not:function(a){return !Element.match(this,a);
},contains:function(a){return(this.innerText||this.textContent||"").contains(a);},"first-child":function(){return Selectors.Pseudo.index.call(this,0);},"last-child":function(){var a=this;
while((a=a.nextSibling)){if(a.nodeType==1){return false;}}return true;},"only-child":function(){var b=this;while((b=b.previousSibling)){if(b.nodeType==1){return false;
}}var a=this;while((a=a.nextSibling)){if(a.nodeType==1){return false;}}return true;},"nth-child":function(g,e){g=(g==undefined)?"n":g;var c=Selectors.Utils.parseNthArgument(g);
if(c.special!="n"){return Selectors.Pseudo[c.special].call(this,c.a,e);}var f=0;e.positions=e.positions||{};var d=$uid(this);if(!e.positions[d]){var b=this;
while((b=b.previousSibling)){if(b.nodeType!=1){continue;}f++;var a=e.positions[$uid(b)];if(a!=undefined){f=a+f;break;}}e.positions[d]=f;}return(e.positions[d]%c.a==c.b);
},index:function(a){var b=this,c=0;while((b=b.previousSibling)){if(b.nodeType==1&&++c>a){return false;}}return(c==a);},even:function(b,a){return Selectors.Pseudo["nth-child"].call(this,"2n+1",a);
},odd:function(b,a){return Selectors.Pseudo["nth-child"].call(this,"2n",a);},selected:function(){return this.selected;},enabled:function(){return(this.disabled===false);
}});Element.Events.domready={onAdd:function(a){if(Browser.loaded){a.call(this);}}};(function(){var b=function(){if(Browser.loaded){return;}Browser.loaded=true;
window.fireEvent("domready");document.fireEvent("domready");};if(Browser.Engine.trident){var a=document.createElement("div");(function(){($try(function(){a.doScroll();
return document.id(a).inject(document.body).set("html","temp").dispose();}))?b():arguments.callee.delay(50);})();}else{if(Browser.Engine.webkit&&Browser.Engine.version<525){(function(){(["loaded","complete"].contains(document.readyState))?b():arguments.callee.delay(50);
})();}else{window.addEvent("load",b);document.addEvent("DOMContentLoaded",b);}}})();var JSON=new Hash({$specialChars:{"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},$replaceChars:function(a){return JSON.$specialChars[a]||"\\u00"+Math.floor(a.charCodeAt()/16).toString(16)+(a.charCodeAt()%16).toString(16);
},encode:function(b){switch($type(b)){case"string":return'"'+b.replace(/[\x00-\x1f\\"]/g,JSON.$replaceChars)+'"';case"array":return"["+String(b.map(JSON.encode).clean())+"]";
case"object":case"hash":var a=[];Hash.each(b,function(e,d){var c=JSON.encode(e);if(c){a.push(JSON.encode(d)+":"+c);}});return"{"+a+"}";case"number":case"boolean":return String(b);
case false:return"null";}return null;},decode:function(string,secure){if($type(string)!="string"||!string.length){return null;}if(secure&&!(/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(string.replace(/\\./g,"@").replace(/"[^"\\\n\r]*"/g,""))){return null;
}return eval("("+string+")");}});Native.implement([Hash,Array,String,Number],{toJSON:function(){return JSON.encode(this);}});var Cookie=new Class({Implements:Options,options:{path:false,domain:false,duration:false,secure:false,document:document},initialize:function(b,a){this.key=b;
this.setOptions(a);},write:function(b){b=encodeURIComponent(b);if(this.options.domain){b+="; domain="+this.options.domain;}if(this.options.path){b+="; path="+this.options.path;
}if(this.options.duration){var a=new Date();a.setTime(a.getTime()+this.options.duration*24*60*60*1000);b+="; expires="+a.toGMTString();}if(this.options.secure){b+="; secure";
}this.options.document.cookie=this.key+"="+b;return this;},read:function(){var a=this.options.document.cookie.match("(?:^|;)\\s*"+this.key.escapeRegExp()+"=([^;]*)");
return(a)?decodeURIComponent(a[1]):null;},dispose:function(){new Cookie(this.key,$merge(this.options,{duration:-1})).write("");return this;}});Cookie.write=function(b,c,a){return new Cookie(b,a).write(c);
};Cookie.read=function(a){return new Cookie(a).read();};Cookie.dispose=function(b,a){return new Cookie(b,a).dispose();};var Swiff=new Class({Implements:[Options],options:{id:null,height:1,width:1,container:null,properties:{},params:{quality:"high",allowScriptAccess:"always",wMode:"transparent",swLiveConnect:true},callBacks:{},vars:{}},toElement:function(){return this.object;
},initialize:function(l,m){this.instance="Swiff_"+$time();this.setOptions(m);m=this.options;var b=this.id=m.id||this.instance;var a=document.id(m.container);
Swiff.CallBacks[this.instance]={};var e=m.params,g=m.vars,f=m.callBacks;var h=$extend({height:m.height,width:m.width},m.properties);var k=this;for(var d in f){Swiff.CallBacks[this.instance][d]=(function(n){return function(){return n.apply(k.object,arguments);
};})(f[d]);g[d]="Swiff.CallBacks."+this.instance+"."+d;}e.flashVars=Hash.toQueryString(g);if(Browser.Engine.trident){h.classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000";
e.movie=l;}else{h.type="application/x-shockwave-flash";h.data=l;}var j='<object id="'+b+'"';for(var i in h){j+=" "+i+'="'+h[i]+'"';}j+=">";for(var c in e){if(e[c]){j+='<param name="'+c+'" value="'+e[c]+'" />';
}}j+="</object>";this.object=((a)?a.empty():new Element("div")).set("html",j).firstChild;},replaces:function(a){a=document.id(a,true);a.parentNode.replaceChild(this.toElement(),a);
return this;},inject:function(a){document.id(a,true).appendChild(this.toElement());return this;},remote:function(){return Swiff.remote.apply(Swiff,[this.toElement()].extend(arguments));
}});Swiff.CallBacks={};Swiff.remote=function(obj,fn){var rs=obj.CallFunction('<invoke name="'+fn+'" returntype="javascript">'+__flash__argumentsToXML(arguments,2)+"</invoke>");
return eval(rs);};var Fx=new Class({Implements:[Chain,Events,Options],options:{fps:50,unit:false,duration:500,link:"ignore"},initialize:function(a){this.subject=this.subject||this;
this.setOptions(a);this.options.duration=Fx.Durations[this.options.duration]||this.options.duration.toInt();var b=this.options.wait;if(b===false){this.options.link="cancel";
}},getTransition:function(){return function(a){return -(Math.cos(Math.PI*a)-1)/2;};},step:function(){var a=$time();if(a<this.time+this.options.duration){var b=this.transition((a-this.time)/this.options.duration);
this.set(this.compute(this.from,this.to,b));}else{this.set(this.compute(this.from,this.to,1));this.complete();}},set:function(a){return a;},compute:function(c,b,a){return Fx.compute(c,b,a);
},check:function(){if(!this.timer){return true;}switch(this.options.link){case"cancel":this.cancel();return true;case"chain":this.chain(this.caller.bind(this,arguments));
return false;}return false;},start:function(b,a){if(!this.check(b,a)){return this;}this.from=b;this.to=a;this.time=0;this.transition=this.getTransition();
this.startTimer();this.onStart();return this;},complete:function(){if(this.stopTimer()){this.onComplete();}return this;},cancel:function(){if(this.stopTimer()){this.onCancel();
}return this;},onStart:function(){this.fireEvent("start",this.subject);},onComplete:function(){this.fireEvent("complete",this.subject);if(!this.callChain()){this.fireEvent("chainComplete",this.subject);
}},onCancel:function(){this.fireEvent("cancel",this.subject).clearChain();},pause:function(){this.stopTimer();return this;},resume:function(){this.startTimer();
return this;},stopTimer:function(){if(!this.timer){return false;}this.time=$time()-this.time;this.timer=$clear(this.timer);return true;},startTimer:function(){if(this.timer){return false;
}this.time=$time()-this.time;this.timer=this.step.periodical(Math.round(1000/this.options.fps),this);return true;}});Fx.compute=function(c,b,a){return(b-c)*a+c;
};Fx.Durations={"short":250,normal:500,"long":1000};Fx.CSS=new Class({Extends:Fx,prepare:function(d,e,b){b=$splat(b);var c=b[1];if(!$chk(c)){b[1]=b[0];
b[0]=d.getStyle(e);}var a=b.map(this.parse);return{from:a[0],to:a[1]};},parse:function(a){a=$lambda(a)();a=(typeof a=="string")?a.split(" "):$splat(a);
return a.map(function(c){c=String(c);var b=false;Fx.CSS.Parsers.each(function(f,e){if(b){return;}var d=f.parse(c);if($chk(d)){b={value:d,parser:f};}});
b=b||{value:c,parser:Fx.CSS.Parsers.String};return b;});},compute:function(d,c,b){var a=[];(Math.min(d.length,c.length)).times(function(e){a.push({value:d[e].parser.compute(d[e].value,c[e].value,b),parser:d[e].parser});
});a.$family={name:"fx:css:value"};return a;},serve:function(c,b){if($type(c)!="fx:css:value"){c=this.parse(c);}var a=[];c.each(function(d){a=a.concat(d.parser.serve(d.value,b));
});return a;},render:function(a,d,c,b){a.setStyle(d,this.serve(c,b));},search:function(a){if(Fx.CSS.Cache[a]){return Fx.CSS.Cache[a];}var b={};Array.each(document.styleSheets,function(e,d){var c=e.href;
if(c&&c.contains("://")&&!c.contains(document.domain)){return;}var f=e.rules||e.cssRules;Array.each(f,function(j,g){if(!j.style){return;}var h=(j.selectorText)?j.selectorText.replace(/^\w+/,function(i){return i.toLowerCase();
}):null;if(!h||!h.test("^"+a+"$")){return;}Element.Styles.each(function(k,i){if(!j.style[i]||Element.ShortStyles[i]){return;}k=String(j.style[i]);b[i]=(k.test(/^rgb/))?k.rgbToHex():k;
});});});return Fx.CSS.Cache[a]=b;}});Fx.CSS.Cache={};Fx.CSS.Parsers=new Hash({Color:{parse:function(a){if(a.match(/^#[0-9a-f]{3,6}$/i)){return a.hexToRgb(true);
}return((a=a.match(/(\d+),\s*(\d+),\s*(\d+)/)))?[a[1],a[2],a[3]]:false;},compute:function(c,b,a){return c.map(function(e,d){return Math.round(Fx.compute(c[d],b[d],a));
});},serve:function(a){return a.map(Number);}},Number:{parse:parseFloat,compute:Fx.compute,serve:function(b,a){return(a)?b+a:b;}},String:{parse:$lambda(false),compute:$arguments(1),serve:$arguments(0)}});
Fx.Tween=new Class({Extends:Fx.CSS,initialize:function(b,a){this.element=this.subject=document.id(b);this.parent(a);},set:function(b,a){if(arguments.length==1){a=b;
b=this.property||this.options.property;}this.render(this.element,b,a,this.options.unit);return this;},start:function(c,e,d){if(!this.check(c,e,d)){return this;
}var b=Array.flatten(arguments);this.property=this.options.property||b.shift();var a=this.prepare(this.element,this.property,b);return this.parent(a.from,a.to);
}});Element.Properties.tween={set:function(a){var b=this.retrieve("tween");if(b){b.cancel();}return this.eliminate("tween").store("tween:options",$extend({link:"cancel"},a));
},get:function(a){if(a||!this.retrieve("tween")){if(a||!this.retrieve("tween:options")){this.set("tween",a);}this.store("tween",new Fx.Tween(this,this.retrieve("tween:options")));
}return this.retrieve("tween");}};Element.implement({tween:function(a,c,b){this.get("tween").start(arguments);return this;},fade:function(c){var e=this.get("tween"),d="opacity",a;
c=$pick(c,"toggle");switch(c){case"in":e.start(d,1);break;case"out":e.start(d,0);break;case"show":e.set(d,1);break;case"hide":e.set(d,0);break;case"toggle":var b=this.retrieve("fade:flag",this.get("opacity")==1);
e.start(d,(b)?0:1);this.store("fade:flag",!b);a=true;break;default:e.start(d,arguments);}if(!a){this.eliminate("fade:flag");}return this;},highlight:function(c,a){if(!a){a=this.retrieve("highlight:original",this.getStyle("background-color"));
a=(a=="transparent")?"#fff":a;}var b=this.get("tween");b.start("background-color",c||"#ffff88",a).chain(function(){this.setStyle("background-color",this.retrieve("highlight:original"));
b.callChain();}.bind(this));return this;}});Fx.Morph=new Class({Extends:Fx.CSS,initialize:function(b,a){this.element=this.subject=document.id(b);this.parent(a);
},set:function(a){if(typeof a=="string"){a=this.search(a);}for(var b in a){this.render(this.element,b,a[b],this.options.unit);}return this;},compute:function(e,d,c){var a={};
for(var b in e){a[b]=this.parent(e[b],d[b],c);}return a;},start:function(b){if(!this.check(b)){return this;}if(typeof b=="string"){b=this.search(b);}var e={},d={};
for(var c in b){var a=this.prepare(this.element,c,b[c]);e[c]=a.from;d[c]=a.to;}return this.parent(e,d);}});Element.Properties.morph={set:function(a){var b=this.retrieve("morph");
if(b){b.cancel();}return this.eliminate("morph").store("morph:options",$extend({link:"cancel"},a));},get:function(a){if(a||!this.retrieve("morph")){if(a||!this.retrieve("morph:options")){this.set("morph",a);
}this.store("morph",new Fx.Morph(this,this.retrieve("morph:options")));}return this.retrieve("morph");}};Element.implement({morph:function(a){this.get("morph").start(a);
return this;}});Fx.implement({getTransition:function(){var a=this.options.transition||Fx.Transitions.Sine.easeInOut;if(typeof a=="string"){var b=a.split(":");
a=Fx.Transitions;a=a[b[0]]||a[b[0].capitalize()];if(b[1]){a=a["ease"+b[1].capitalize()+(b[2]?b[2].capitalize():"")];}}return a;}});Fx.Transition=function(b,a){a=$splat(a);
return $extend(b,{easeIn:function(c){return b(c,a);},easeOut:function(c){return 1-b(1-c,a);},easeInOut:function(c){return(c<=0.5)?b(2*c,a)/2:(2-b(2*(1-c),a))/2;
}});};Fx.Transitions=new Hash({linear:$arguments(0)});Fx.Transitions.extend=function(a){for(var b in a){Fx.Transitions[b]=new Fx.Transition(a[b]);}};Fx.Transitions.extend({Pow:function(b,a){return Math.pow(b,a[0]||6);
},Expo:function(a){return Math.pow(2,8*(a-1));},Circ:function(a){return 1-Math.sin(Math.acos(a));},Sine:function(a){return 1-Math.sin((1-a)*Math.PI/2);
},Back:function(b,a){a=a[0]||1.618;return Math.pow(b,2)*((a+1)*b-a);},Bounce:function(f){var e;for(var d=0,c=1;1;d+=c,c/=2){if(f>=(7-4*d)/11){e=c*c-Math.pow((11-6*d-11*f)/4,2);
break;}}return e;},Elastic:function(b,a){return Math.pow(2,10*--b)*Math.cos(20*b*Math.PI*(a[0]||1)/3);}});["Quad","Cubic","Quart","Quint"].each(function(b,a){Fx.Transitions[b]=new Fx.Transition(function(c){return Math.pow(c,[a+2]);
});});var Request=new Class({Implements:[Chain,Events,Options],options:{url:"",data:"",headers:{"X-Requested-With":"XMLHttpRequest",Accept:"text/javascript, text/html, application/xml, text/xml, */*"},async:true,format:false,method:"post",link:"ignore",isSuccess:null,emulation:true,urlEncoded:true,encoding:"utf-8",evalScripts:false,evalResponse:false,noCache:false},initialize:function(a){this.xhr=new Browser.Request();
this.setOptions(a);this.options.isSuccess=this.options.isSuccess||this.isSuccess;this.headers=new Hash(this.options.headers);},onStateChange:function(){if(this.xhr.readyState!=4||!this.running){return;
}this.running=false;this.status=0;$try(function(){this.status=this.xhr.status;}.bind(this));this.xhr.onreadystatechange=$empty;if(this.options.isSuccess.call(this,this.status)){this.response={text:this.xhr.responseText,xml:this.xhr.responseXML};
this.success(this.response.text,this.response.xml);}else{this.response={text:null,xml:null};this.failure();}},isSuccess:function(){return((this.status>=200)&&(this.status<300));
},processScripts:function(a){if(this.options.evalResponse||(/(ecma|java)script/).test(this.getHeader("Content-type"))){return $exec(a);}return a.stripScripts(this.options.evalScripts);
},success:function(b,a){this.onSuccess(this.processScripts(b),a);},onSuccess:function(){this.fireEvent("complete",arguments).fireEvent("success",arguments).callChain();
},failure:function(){this.onFailure();},onFailure:function(){this.fireEvent("complete").fireEvent("failure",this.xhr);},setHeader:function(a,b){this.headers.set(a,b);
return this;},getHeader:function(a){return $try(function(){return this.xhr.getResponseHeader(a);}.bind(this));},check:function(){if(!this.running){return true;
}switch(this.options.link){case"cancel":this.cancel();return true;case"chain":this.chain(this.caller.bind(this,arguments));return false;}return false;},send:function(k){if(!this.check(k)){return this;
}this.running=true;var i=$type(k);if(i=="string"||i=="element"){k={data:k};}var d=this.options;k=$extend({data:d.data,url:d.url,method:d.method},k);var g=k.data,b=k.url,a=k.method.toLowerCase();
switch($type(g)){case"element":g=document.id(g).toQueryString();break;case"object":case"hash":g=Hash.toQueryString(g);}if(this.options.format){var j="format="+this.options.format;
g=(g)?j+"&"+g:j;}if(this.options.emulation&&!["get","post"].contains(a)){var h="_method="+a;g=(g)?h+"&"+g:h;a="post";}if(this.options.urlEncoded&&a=="post"){var c=(this.options.encoding)?"; charset="+this.options.encoding:"";
this.headers.set("Content-type","application/x-www-form-urlencoded"+c);}if(this.options.noCache){var f="noCache="+new Date().getTime();g=(g)?f+"&"+g:f;
}var e=b.lastIndexOf("/");if(e>-1&&(e=b.indexOf("#"))>-1){b=b.substr(0,e);}if(g&&a=="get"){b=b+(b.contains("?")?"&":"?")+g;g=null;}this.xhr.open(a.toUpperCase(),b,this.options.async);
this.xhr.onreadystatechange=this.onStateChange.bind(this);this.headers.each(function(m,l){try{this.xhr.setRequestHeader(l,m);}catch(n){this.fireEvent("exception",[l,m]);
}},this);this.fireEvent("request");this.xhr.send(g);if(!this.options.async){this.onStateChange();}return this;},cancel:function(){if(!this.running){return this;
}this.running=false;this.xhr.abort();this.xhr.onreadystatechange=$empty;this.xhr=new Browser.Request();this.fireEvent("cancel");return this;}});(function(){var a={};
["get","post","put","delete","GET","POST","PUT","DELETE"].each(function(b){a[b]=function(){var c=Array.link(arguments,{url:String.type,data:$defined});
return this.send($extend(c,{method:b}));};});Request.implement(a);})();Element.Properties.send={set:function(a){var b=this.retrieve("send");if(b){b.cancel();
}return this.eliminate("send").store("send:options",$extend({data:this,link:"cancel",method:this.get("method")||"post",url:this.get("action")},a));},get:function(a){if(a||!this.retrieve("send")){if(a||!this.retrieve("send:options")){this.set("send",a);
}this.store("send",new Request(this.retrieve("send:options")));}return this.retrieve("send");}};Element.implement({send:function(a){var b=this.get("send");
b.send({data:this,url:a||b.options.url});return this;}});Request.HTML=new Class({Extends:Request,options:{update:false,append:false,evalScripts:true,filter:false},processHTML:function(c){var b=c.match(/<body[^>]*>([\s\S]*?)<\/body>/i);
c=(b)?b[1]:c;var a=new Element("div");return $try(function(){var d="<root>"+c+"</root>",g;if(Browser.Engine.trident){g=new ActiveXObject("Microsoft.XMLDOM");
g.async=false;g.loadXML(d);}else{g=new DOMParser().parseFromString(d,"text/xml");}d=g.getElementsByTagName("root")[0];if(!d){return null;}for(var f=0,e=d.childNodes.length;
f<e;f++){var h=Element.clone(d.childNodes[f],true,true);if(h){a.grab(h);}}return a;})||a.set("html",c);},success:function(d){var c=this.options,b=this.response;
b.html=d.stripScripts(function(e){b.javascript=e;});var a=this.processHTML(b.html);b.tree=a.childNodes;b.elements=a.getElements("*");if(c.filter){b.tree=b.elements.filter(c.filter);
}if(c.update){document.id(c.update).empty().set("html",b.html);}else{if(c.append){document.id(c.append).adopt(a.getChildren());}}if(c.evalScripts){$exec(b.javascript);
}this.onSuccess(b.tree,b.elements,b.html,b.javascript);}});Element.Properties.load={set:function(a){var b=this.retrieve("load");if(b){b.cancel();}return this.eliminate("load").store("load:options",$extend({data:this,link:"cancel",update:this,method:"get"},a));
},get:function(a){if(a||!this.retrieve("load")){if(a||!this.retrieve("load:options")){this.set("load",a);}this.store("load",new Request.HTML(this.retrieve("load:options")));
}return this.retrieve("load");}};Element.implement({load:function(){this.get("load").send(Array.link(arguments,{data:Object.type,url:String.type}));return this;
}});Request.JSON=new Class({Extends:Request,options:{secure:true},initialize:function(a){this.parent(a);this.headers.extend({Accept:"application/json","X-Request":"JSON"});
},success:function(a){this.response.json=JSON.decode(a,this.options.secure);this.onSuccess(this.response.json,a);}});

//MooTools More, <http://mootools.net/more>. Copyright (c) 2006-2009 Aaron Newton <http://clientcide.com/>, Valerio Proietti <http://mad4milk.net> & the MooTools team <http://mootools.net/developers>, MIT Style License.

MooTools.More={version:"1.2.3.1"};var Asset={javascript:function(f,d){d=$extend({onload:$empty,document:document,check:$lambda(true)},d);var b=new Element("script",{src:f,type:"text/javascript"});
var e=d.onload.bind(b),a=d.check,g=d.document;delete d.onload;delete d.check;delete d.document;b.addEvents({load:e,readystatechange:function(){if(["loaded","complete"].contains(this.readyState)){e();
}}}).set(d);if(Browser.Engine.webkit419){var c=(function(){if(!$try(a)){return;}$clear(c);e();}).periodical(50);}return b.inject(g.head);},css:function(b,a){return new Element("link",$merge({rel:"stylesheet",media:"screen",type:"text/css",href:b},a)).inject(document.head);
},image:function(c,b){b=$merge({onload:$empty,onabort:$empty,onerror:$empty},b);var d=new Image();var a=document.id(d)||new Element("img");["load","abort","error"].each(function(e){var f="on"+e;
var g=b[f];delete b[f];d[f]=function(){if(!d){return;}if(!a.parentNode){a.width=d.width;a.height=d.height;}d=d.onload=d.onabort=d.onerror=null;g.delay(1,a,a);
a.fireEvent(e,a,1);};});d.src=a.src=c;if(d&&d.complete){d.onload.delay(1);}return a.set(b);},images:function(d,c){c=$merge({onComplete:$empty,onProgress:$empty,onError:$empty,properties:{}},c);
d=$splat(d);var a=[];var b=0;return new Elements(d.map(function(e){return Asset.image(e,$extend(c.properties,{onload:function(){c.onProgress.call(this,b,d.indexOf(e));
b++;if(b==d.length){c.onComplete();}},onerror:function(){c.onError.call(this,b,d.indexOf(e));b++;if(b==d.length){c.onComplete();}}}));}));}};
window.addEvent('domready', function() {$('twit').setProperties({href: 'http://www.twitter.com/treninghotel',target: '_blank'});})

/*
	Milkbox v2.3.2 - required: mootools.js v1.2.3 core + more 1.2.3.1: Assets

	by Luca Reghellin (http://www.reghellin.com) August 2009, MIT-style license.
	Inspiration Lokesh Dhakar (http://www.lokeshdhakar.com/projects/lightbox2/)
	AND OF COURSE, SPECIAL THANKS TO THE MOOTOOLS DEVELOPERS
*/

var Milkbox = new Class({

	Implements:[Options,Events],
	
	options:{//set all the options here
		overlayOpacity:0.7,
		topPosition:50,
		initialWidth:250,
		initialHeight:250,
		canvasBorderWidth:'0px',
		canvasBorderColor:'#000000',
		canvasPadding:'0px',
		resizeDuration:500,
		resizeTransition:'sine:in:out',/*function (ex. Transitions.Sine.easeIn) or string (ex. 'bounce:out')*/
		autoPlay:false,
		autoPlayDelay:7,
		removeTitle:false,
		autoSize:true,
		maxHeight:0,//only if autoSize==true
		imageOfText:'of',
		onXmlGalleries:$empty,
		onClosed:$empty,
		onFileReady:$empty
	},
	
	initialize: function(options){
		
		this.setOptions(options);
		this.autoPlayBkup = { autoPlayDelay:this.options.autoPlayDelay, autoPlay:this.options.autoPlay };
		this.fullOptionsBkup = {};
		this.galleries = [];
		this.families = [];
		this.xmlFiles = [];
		this.loadedImages = [];//to check the preloaded images
		this.currentFile = null;
		this.currentIndex = null;
		this.currentGallery = null;
		this.currentRequest = null;
		this.currentResponse = null;
		
		this.mode = null;//'singleFile','fileGallery'
		this.closed = true;
		this.busy = true;//to control keyboard and autoplay events
		this.paused = true;
		this.fileReady = false;//to prevent overlapping loadFile calls via next_prev_aux()
		this.eventsok = false;
		this.first = true;//true if it's the first file since it opened 
		this.activated = false;//true after initMilkbox
		
		this.intObj = null;
		
		this.formtags = null;
		this.prepareGalleries();
		
		if(this.options.overlayOpacity == 0){ this.options.overlayOpacity = 0.0001 }
		this.saveOptions();//then use restoreOptions()

		//if no galleries, stop here and prevent extra memory usage.
		//so you can keep milkbox in every page of a site.
		if(this.galleries.length == 0){ return; };
				
		this.initMilkbox(true);
	},//end init
	
	initMilkbox:function(checkTags){

		if(checkTags){ this.formtags = $$('select','textarea'); }

		this.prepareHTML();
		this.prepareEffects();
		this.prepareEvents();

		this.activated = true;
	},
	
	/* ****** SHOW/HIDE ****** */
	
	//runs only 1 time per gallery
	openMilkbox:function(gallery,index){
		this.closed = false;
		if(this.formtags && this.formtags.length != 0){ this.formtags.setStyle('display','none') };
		this.overlay.setStyles({ 'top': -$(window).getScroll().y,'height':$(window).getScrollSize().y+$(window).getScroll().y });
		this.center.setStyle('top',$(window).getScroll().y+this.options.topPosition);

		this.currentGallery = gallery;
		this.currentIndex = index;
		this.overlay.tween('opacity',this.options.overlayOpacity);//onComplete: center.tween opacity
		
		if(gallery.length == 1){
			this.mode = 'singleFile';
			this.loadFile(gallery[index],index);
		} else {
			this.mode = 'fileGallery';
			var playpauseWidth = 0;
			//interface
			$$(this.prev, this.next, this.count).setStyle('display','block');
			if(this.options.autoPlay){ 
				this.playpause.setStyle('display','block');
				playpauseWidth = this.playpause.getSize().x;
			}
			var border = this.center.getStyle('border-right-width').toInt();//border-right is just ok for design purposes..
			var navWidth = this.prev.getSize().x+this.next.getSize().x+this.close.getSize().x+playpauseWidth+border;
			this.navigation.setStyle('width',navWidth);
			this.description.setStyle('margin-right',navWidth);
			//files
			var next = (index != gallery.length-1) ? gallery[index+1] : gallery[0];
			var prev = (index != 0) ? gallery[index-1] : gallery[gallery.length-1];
			var preloads = (prev == next) ? [prev] : [prev,next]; //if gallery.length == 2, then prev == next
						
			this.loadFile(gallery[index],preloads);
		}//end else
	},
	
	loadFile:function(fileObj,preloads){
		this.fileReady = false;
		var swf = this.checkFileType(fileObj,'swf');
		if(!swf){ 
			if(!this.loadedImages.contains(fileObj.retrieve('href'))){ this.center.addClass('mbLoading'); } 
			this.loadImage(fileObj.retrieve('href'));
		} else {
			this.loadSwf(fileObj);
		}
		
		if(preloads){ this.preloadFiles(preloads); }
	},
	
	preloadFiles:function(preloads){
		preloads.each(function(fileObj,index){
			var swf = this.checkFileType(fileObj.retrieve('href'),"swf");
			if(!swf){ this.preloadImage(fileObj.retrieve('href')); }
		},this);
	},
	
	loadImage:function(file){
		var imageAsset = new Asset.image(file, { onload:function(img){
			if(!this.loadedImages.contains(file)){ this.loadedImages.push(file); };//see next/prev events
			this.currentFile = img;
			this.loadAux(this.currentFile);
		}.bindWithEvent(this)});
	},
	
	preloadImage:function(file){
		if(!this.loadedImages.contains(file)){
			var imageAsset = new Asset.image(file, { onload:function(img){
					this.loadedImages.push(file);
			}.bindWithEvent(this)});
		}
	},
	

	loadSwf:function(swf){

		var swfObj = new Swiff(swf.retrieve('href'),{
			width:swf.retrieve('width').toInt(),
			height:swf.retrieve('height').toInt(),
			params:{ wMode:'opaque', swLiveConnect:'false' }
		});
		
		this.currentFile = swfObj;
		this.loadAux(swf);
	},
	
	loadAux:function(file){
		this.fileReady = true; //the file is loaded and ready to be showed (see next_prev_aux())
		this.fireEvent('fileReady');
		$$(this.description,this.navigation).setStyle('visibility','hidden');
		this.navigation.setStyle('height','');//reset the height setted in center.morph.onComplete
		$$(this.next,this.prev,this.close).setStyle('backgroundPosition','0 0');
		this.showFile(file);
	},
	
	
	showFile:function(file){
 		
 		if(this.closed){ return; };//if you close the Milkbox and an onload event is still running
 		
 		var fileSize = new Hash();
 		var centerSize = new Hash();
 		var targetSize, canvasSize;
		var canvasAddSize, gap, b, p, d;
 		targetSize = canvasSize = {};
 		canvasAddSize = gap = b = p = d = 0;
 		
 		if(this.options.canvasBorderWidth.toInt() != 0 && this.canvas.getStyle('borderWidth').toInt() == 0){
 			b = this.options.canvasBorderWidth + ' solid ' + this.options.canvasBorderColor;
 			this.canvas.setStyle('border',b);
 		}
 		
 		if(this.options.canvasPadding.toInt() != 0 && this.canvas.getStyle('padding').toInt() == 0){
 			p = this.options.canvasPadding;
 			this.canvas.setStyle('padding',p);
 		}
 		
 		canvasSize = this.canvas.getSize();
 		canvasAddSize = this.canvas.getStyle('borderWidth').toInt()*2 + this.canvas.getStyle('padding').toInt()*2;
 		this.canvas.setStyles({'opacity':0, 'width':'', 'height':''});
 		
 		if(!file.retrieve('width')){//is an image file
 			fileSize = fileSize.extend(file.getProperties('width','height')).map(function(item){ return item.toInt(); });
 			if(this.options.autoSize){ 
 				fileSize = this.computeSize(fileSize);
 				file.setProperties({ 'width':fileSize.width, 'height':fileSize.height });
 			}
 		} else {//is an swf file
 			fileSize.extend({ 'height':file.retrieve('height').toInt(), 'width':file.retrieve('width').toInt() });
 		}
 				
 		centerSize = centerSize.extend(this.center.getStyles('width','height')).map(function(item){ return item.toInt(); });

 		if(fileSize.width != centerSize.width){ 
 			targetSize.width = fileSize.width + canvasAddSize;
 			targetSize.marginLeft = -(targetSize.width/2).round();
 		}
 		 		
 		gap = (canvasSize.y-canvasAddSize > 0) ? centerSize.height - canvasSize.y : 0; 

 	   targetSize.height = fileSize.height + canvasAddSize + gap;
 	   
		//so nav doesn't move when you click next/prev
		this.canvas.setStyles({'width':fileSize.width, 'height':fileSize.height});

 		this.center.removeClass('mbLoading');
 		
 		if(this.first){ d = 500; this.first = false; }
 		(function(){ this.center.morph(targetSize); }).delay(d,this)//onComplete: show all items
	},

	computeSize:function(oSize){
	
		var size = oSize;
		var wSize = window.getSize();
		var baseSize = { width:wSize.x-60, height:wSize.y-68-this.options.topPosition*2 };//cut out some pixels to make it better
		var ratio;
		var check;
		
		var max = Math.max( baseSize.height, baseSize.width );

		if(max == baseSize.width){
			ratio = max/size.width;
			check = 'height';
		} else {
			ratio = max/size.height;
			check = 'width';
		}
		
		ratio = (ratio <= 1) ? ratio : 1;
		size = size.map(function(item){ return Math.floor(item*ratio); });
		
		ratio = (baseSize[check]/size[check] <= 1) ? baseSize[check]/size[check] : 1;
		size = size.map(function(item){ return Math.floor(item*ratio); });
		
		if(this.options.maxHeight > 0){
			ratio = (this.options.maxHeight/size.height < 1) ? this.options.maxHeight/size.height : 1;
			size = size.map(function(item){ return Math.floor(item*ratio); });
		}
		
		return size;
	},
	
	//{ gallery:'gall1', index:2, autoplay:true, delay:7 }
	showGallery:function(opt){
		if(!opt || !opt.gallery){ return; }
		var fileIndex = ($chk(opt.index)) ? opt.index : 0;
		var g = this.getGallery(opt.gallery);
		var auto = false;
		var d;
		if(opt.autoplay || (g['options'] && g['options'].autoplay)){ auto = true; }
		if(g != -1 && !this.opened){
			if(auto){
				d = (opt && opt.delay) ? opt.delay : (g['options'] && g['options'].delay) ? g['options'].delay : this.autoPlayDelay;
				this.startAutoPlay({ gallery:g, index:fileIndex, delay:d });
			} else {
				this.openMilkbox(g,fileIndex);
			}
		}
	},
	
	/* ******* XML/AJAX ******* */

	addGalleries:function(xmlfile){

		this.currentRequest = new Request({
			method:'get',
			autoCancel:true,
			url:xmlfile,
			onRequest:function(){
				//placeholder
			}.bindWithEvent(this),
			onSuccess:function(text,xml){
				var t = text.replace(/(<a.+)\/>/gi,"$1></a>");
				this.setGalleries(new Element('div',{ html:t }),xmlfile);
			}.bindWithEvent(this),
			onFailure:function(transport){ alert('Milkbox :: addGalleries: XML file path error or local Ajax test: please test addGalleries() on-line'); }
		});
		
		this.currentRequest.send();
	},
	
	setGalleries:function(container,xmlfile){
		if(!this.xmlFiles.contains(xmlfile)){ this.xmlFiles.push(xmlfile); }
		var c = container;
		var galleries = c.getElements('.gallery');
		var links = [];
		var aplist = [];
		galleries.each(function(gallery,i){
						
			var obj = { 
				gallery:gallery.getProperty('name'), 
				autoplay:Boolean(gallery.getProperty('autoplay')),
				delay:Number(gallery.getProperty('delay'))
			}
			
			var l = gallery.getChildren('a');
			var lx = l.map(function(link){ return link.setProperty('rel','milkbox['+obj.gallery+']'); });
			links.push(lx);
			if(obj.autoplay){ aplist.push(obj); }
		});
		
		this.prepareGalleries(links.flatten());
		this.setAutoPlay(aplist);
		
		if(!this.activated){ this.initMilkbox(); }
		
		this.fireEvent('xmlGalleries');
	},
	
	
	
	/* ****** UTILS ****** */
	
	checkFileType:function(file,type){
		var href = null;
		if($type(file) != 'string'){ href = file.retrieve('href'); } 
		else{ href = file; }
		var regexp = new RegExp("\.("+type+")$","i");
		return href.split('?')[0].test(regexp);
	},
	
	//retrieves galleries from strings like 'gall1' or 'milkbox[gall1]' or 'milkbox:gall1'
	getGallery:function(gallery){
		var f = null;
		if(gallery.test(/^milkbox/i)){
			f = this.families;
		} else {
			//create a temporary array with names without 'milkbox'
			f = this.families.map(function(item){
				var trimmed = item.trim();
				var name = trimmed.slice(0,trimmed.length).substr(8);
				var cleanName = name.replace(/(.+)]$/,"$1");
				return cleanName;
			});
		}
		var i = f.indexOf(gallery);
		var g = (i != -1) ? this.galleries[i] : i;
		return g;
	},
	
	setFileProps:function(fileObj,propString){
		var s = propString.split(',');
		s.each(function(p,i){
			var clean = p.trim().split(':');
			fileObj.store(clean[0].trim(),clean[1].trim())
		},this);
	},
	
	changeOptions:function(obj){
		if(!obj){ return; }
		this.setOptions(obj);
 		this.center.get('morph').setOptions({ transition:this.options.resizeTransition,  duration:this.options.resizeDuration });
	},
	
	saveOptions:function(obj){
		if($chk(obj)){
			this.fullOptionsBkup = obj;
		} else {
			this.fullOptionsBkup = this.options;
		}
	},
	
	restoreOptions:function(){
		this.setOptions(this.fullOptionsBkup);
 		var b = this.options.canvasBorderWidth + ' solid ' + this.options.canvasBorderColor;
 		this.canvas.setStyles({ 'border':b, 'padding':this.options.canvasPadding});
 		this.center.get('morph').setOptions({ transition:this.options.resizeTransition,  duration:this.options.resizeDuration });
	},
	
	reloadGalleries:function(){
	
		this.galleries = [];
		this.families = [];
		//re-check for tags
		this.formtags = $$('select','textarea');
		
		if(!this.activated){ this.initMilkbox(false); }
		
		//reload standard galleries
		this.prepareGalleries();
		this.removeGalleriesEvents();
		this.setGalleriesEvents();
		
		if(this.xmlFiles.length == 0){ return; }
		//reload xmlGalleries
		this.xmlFiles.each(function(xmlfile,index){
			this.addGalleries(xmlfile);
		}.bind(this));
	},
	
	/* ****** AUTOPLAY ****** */
	
	//list:Array of objects or an object > [ { gallery:'gall1', autoplay:true, delay:6 } ]
	//to permanently define autoplay options for any gallery 
	setAutoPlay:function(list){
		var l = ($type(list) == 'object') ? [list] : list;
		l.each(function(item){
			var g = this.getGallery(item.gallery);
			if(g == -1){ return; }
			var a = (item.autoplay == true) ? item.autoplay : false;
			var d = ($chk(item.delay) && a) ? item.delay : this.options.autoPlayDelay;
			g['options'] = { autoplay:a, delay:d }
		},this);
	},
	
	startAutoPlay:function(opt){//opt: gallery, index, delay (in seconds)
		
		var g = -1;
		var i,d;
		if(opt && opt.gallery){
			if($type(opt.gallery) == 'array'){ g = opt.gallery }
			else if($type(opt.gallery) == 'string'){ 
				g = this.getGallery(opt.gallery);
			}
		}
		
		if(g == -1){ g = this.galleries[0]; }
		
		d = (opt && opt.delay && ($type(opt.delay) == 'number')) ? opt.delay*1000 : (g['options'] && g['options'].delay) ? g['options'].delay*1000 : this.options.autoPlayDelay*1000;
		i = (opt && opt.index && ($type(opt.index) == 'number')) ? opt.index : 0;
		if(d < this.options.resizeDuration*2){ d = this.options.resizeDuration*2 };
		this.options.autoPlayDelay = d/1000;//save autoPlayDelay because now it is customized
		
		if(!this.options.autoPlay){ this.setOptions({ autoPlay:true, autoPlayDelay:this.options.autoPlayDelay }); }
		
		if(this.closed){ 
			this.openMilkbox(g,i); 
			if(this.mode != 'fileGallery'){ return; }
			this.addEvent('fileReady',function(){
				//wait until the first file is loaded
				this.intObj = this.next_prev_aux.periodical(d,this,[null,'next']);
				this.removeEvents('fileReady');
			}.bindWithEvent(this));
		} else {
			if(!this.closed){ this.next_prev_aux(null,'next'); }
			this.intObj = this.next_prev_aux.periodical(d,this,[null,'next']);
		}

		this.paused = false;
	},
	
	stopAutoPlay:function(){
		if(this.intObj){ $clear(this.intObj); this.intObj = null; }
		this.playpause.setStyle('backgroundPosition','0 -44px');
		this.paused = true;
	},
	
	
	/* ****** INIT/CLOSE ****** */
	
	removeGalleriesEvents:function(){
		this.galleries.each(function(gallery){
			$$(gallery).removeEvents('click');
		},this);
	},
	
	setGalleriesEvents:function(){
		this.galleries.each(function(gallery){
		
			$$(gallery).addEvent('click',function(e){
				var button=($(e.target).match('a')) ? $(e.target) : $(e.target).getParent('a');
				e.preventDefault();
				
				var g = this.getGallery(button.rel);
				if(g.options && g.options.autoplay){
					this.setOptions({ autoPlay:g.options.autoplay, autoPlayDelay:g.options.delay });
				}

				if(this.options.autoPlay){
					this.startAutoPlay({ gallery:gallery, index:gallery.indexOf(button) });
				} else { 
					this.openMilkbox(gallery, gallery.indexOf(button)); 
				}
				
			}.bindWithEvent(this));
		},this);
	},
	
	//all the main events
	prepareEvents:function(xml){
	
		//galleries
		this.setGalleriesEvents();
		
		//next, prev, see next_prev_aux()
		this.next.addEvent('click',this.next_prev_aux.bindWithEvent(this,'next'));
		this.prev.addEvent('click',this.next_prev_aux.bindWithEvent(this,'prev'));
		
		
		//css hover doesn't work in ie6, so I must do it via js...
		$$(this.next,this.prev,this.close).addEvents({
			'mouseover':function(){ this.setStyle('backgroundPosition','0 -22px'); },
			'mouseout':function(){ this.setStyle('backgroundPosition','0 0'); }
		});

		//keyboard next/prev/close
		$(window.document).addEvent('keydown',function(e){
			if(this.mode != 'fileGallery' || this.busy == true){ return; }
			if(e.key == 'right' || e.key == 'space'){ this.next_prev_aux(e,'next'); }
			else if(e.key == 'left'){ this.next_prev_aux(e,'prev'); }
			else if(e.key == 'esc'){ this.closeMilkbox(); }
		}.bindWithEvent(this));
		
		//playpause for autoPlay
		this.playpause.addEvents({
				'mouseover':function(e){ 
					if(this.paused == false){ this.playpause.setStyle('backgroundPosition','0 -22px'); } 
					else { this.playpause.setStyle('backgroundPosition','0 -66px'); }
				}.bindWithEvent(this),
				'mouseout':function(){ 
					if(this.paused == false){ this.playpause.setStyle('backgroundPosition','0 0'); } 
					else { this.playpause.setStyle('backgroundPosition','0 -44px'); }
				}.bindWithEvent(this),
				'click':function(){
					if(this.paused == false){ 
						this.stopAutoPlay();
						this.paused = true;
						this.playpause.setStyle('backgroundPosition','0 -66px');
					} else {
						var d = (this.currentGallery.options && this.currentGallery.options.delay) ? this.currentGallery.options.delay : this.options.autoPlayDelay;
						this.startAutoPlay({gallery:this.currentGallery, index:this.currentIndex+1, delay:d });
						this.paused = false;
						this.playpause.setStyle('backgroundPosition','0 0');
					}
				}.bindWithEvent(this)
		});
		
		//overlay
		this.overlay.get('tween').addEvent('onComplete',function(){
			if(this.overlay.getStyle('opacity') == this.options.overlayOpacity){ 
				this.center.tween('opacity',1);
			} else if(this.overlay.getStyle('opacity') == 0) {
				this.overlay.setStyles({'height':0,'top':''});
			};
		}.bindWithEvent(this));
		
		//center
		this.center.get('morph').addEvent('onComplete',function(){
						
			 if($type(this.currentFile) == "element"){//is image file
				this.canvas.grab(this.currentFile);
			 } else {//object: is swf file
			 	(function(){ this.canvas.grab(this.currentFile); }).delay(500,this);
			 }
 			 
			 this.canvas.tween('opacity',1);
			 			 
			 var d = (!(this.mode == 'showThisImage')) ? this.currentGallery[this.currentIndex].retrieve('title') : this.specialDescription;
			 if($chk(d)){ this.description.innerHTML = d; };
			 
			 if(this.mode == 'fileGallery'){
			 	this.count.appendText((this.currentIndex+1)+' '+this.options.imageOfText+' '+this.currentGallery.length); 
			 }
			 
			 var currentCenterHeight = this.center.getStyle('height').toInt();
			 
			 this.navigation.setStyle('height',this.bottom.getStyle('height').toInt());//to have the right-border height == total bottom height
			 var bottomSize = this.bottom.getSize().y;
			 
			 //after the 1st time, currentCenterHeight is always > this.canvas.getSize().y
			 var targetOffset = (currentCenterHeight > this.canvas.getSize().y) ? (this.bottom.getSize().y+this.canvas.getSize().y)-currentCenterHeight : bottomSize;
				
			 this.bottom.setStyle('display','none');//to avoid rendering problems during setFinalHeight

			 this.center.retrieve('setFinalHeight').start(currentCenterHeight,currentCenterHeight+targetOffset);
		}.bindWithEvent(this));
		
		this.center.retrieve('setFinalHeight').addEvent('onComplete',function(){
			this.bottom.setStyles({'visibility':'visible','display':'block'});
			$$(this.description,this.navigation).setStyle('visibility','visible');
			//reset overlay height based on position and height
			var scrollSize = $(window).getScrollSize().y;
			var scrollTop = $(window).getScroll().y;
			
			this.overlay.setStyles({'height':scrollSize+scrollTop, 'top':-scrollTop });
			this.busy = false;
		}.bindWithEvent(this));
		
		//reset overlay height and position onResize
		window.addEvent('resize',function(){
			if(this.overlay.getStyle('opacity') == 0){ return; };//resize only if visible
			var scrollSize = $(window).getScrollSize().y;
			var scrollTop = $(window).getScroll().y;
			this.overlay.setStyles({ 'height':scrollSize+scrollTop,'top':-scrollTop });
		}.bindWithEvent(this));

		//close
		$$(this.overlay,this.close).addEvent('click',this.closeMilkbox.bindWithEvent(this));

		//check
		this.eventsok = true;
	},
	
	next_prev_aux:function(e,direction){
		
		if(e){ 
			e.preventDefault();
			this.stopAutoPlay();
		} else { 
			//if there's no event obj, than this is called by autoPlay()
			if(this.busy || !this.fileReady){ return; }//stop autoplay()
		}

		this.busy = true; //for keyboard and autoplay
		
		var i, _i;
		
		if(direction == "next"){
			i= (this.currentIndex != this.currentGallery.length-1) ? this.currentIndex += 1 : this.currentIndex = 0;
			_i= (this.currentIndex != this.currentGallery.length-1) ? this.currentIndex + 1 : 0;
		} else {
			i= (this.currentIndex != 0) ? this.currentIndex -= 1 : this.currentIndex = this.currentGallery.length-1;
			_i= (this.currentIndex != 0) ? this.currentIndex - 1 : this.currentGallery.length-1;		
		};
		
		this.canvas.empty();
		this.description.empty();
		this.count.empty();

		this.loadFile(this.currentGallery[i],[this.currentGallery[_i]]);
	},
	
	prepareEffects:function(){
		this.overlay.set('tween',{ duration:'short',link:'cancel' });
		this.center.set('tween',{ duration:'short',link:'chain' });
		this.center.set('morph',{ duration:this.options.resizeDuration,link:'chain',transition:this.options.resizeTransition });
		this.center.store('setFinalHeight',new Fx.Tween(this.center,{property:'height',duration:'short'}));
		this.canvas.set('tween',{ link:'chain' });
	},
	
	prepareGalleries:function(responseElements){
		var milkbox_a = [];
		var a_tags = (responseElements) ? responseElements : $$('a');
				
		a_tags.each(function(a){
			//test 'milkbox' and link extension, and collect all milkbox links
			if(a.rel && a.rel.test(/^milkbox/i) && a.href.split('?')[0].test(/\.(gif|jpg|jpeg|png|swf)$/i)){
				if(a.rel.length>7 && !this.families.contains(a.rel)){ this.families.push(a.rel); };
				milkbox_a.push(a);
			}
		},this);

		//create an array of arrays with all galleries
		milkbox_a.each(function(a){
			$(a).store('href',a.href);
			$(a).store('rel',a.rel);
			$(a).store('title',a.title);
			if(this.checkFileType(a.href,"swf")){ this.setFileProps($(a),a.rev); }

			if(this.options.removeTitle){ $(a).removeProperty('title'); }
			if(a.rel.length > 7){
				this.families.each(function(f,i){
					if(a.rel == f){
						var gMounted = false;
						var index;
						this.galleries.each(function(g,k){
							if(g[0].rel == f){ 
								gMounted = true;
								index = k;
								return;
							}
						});
						
						if(gMounted == true){ this.galleries[index].push($(a)); } 
						else { this.galleries.push([$(a)]); }
					};
				},this);
			} else { this.galleries.push([$(a)]); };
		},this);
		
	},
		
	prepareHTML:function(){		
		
		this.overlay = new Element('div', { 'id':'mbOverlay','styles':{ 'opacity':0,'visibility':'visible','height':0,'overflow':'hidden' }}).inject($(document.body));
		
		this.center = new Element('div', {'id':'mbCenter', 'styles':{'width':this.options.initialWidth,'height':this.options.initialHeight,'marginLeft':-(this.options.initialWidth/2),'opacity':0 }}).inject($(document.body));
		this.canvas = new Element('div', {'id':'mbCanvas'}).inject(this.center);
		
		this.bottom = new Element('div',{'id':'mbBottom'}).inject(this.center).setStyle('visibility','hidden');

		this.navigation = new Element('div',{'id':'mbNavigation'}).setStyle('visibility','hidden');
		this.description = new Element('div',{'id':'mbDescription'}).setStyle('visibility','hidden');

		this.bottom.adopt(this.navigation, this.description, new Element('div',{'class':'mbClear'}));
		
		this.close = new Element('a',{'id':'mbCloseLink'});
		this.next = new Element('a',{'id':'mbNextLink'});
		this.prev = new Element('a',{'id':'mbPrevLink'});
		this.playpause = new Element('a',{'id':'mbPlayPause'});
		this.count = new Element('span',{'id':'mbCount'});
		
		$$(this.next, this.prev, this.count, this.playpause).setStyle('display','none');
		
		this.navigation.adopt(this.close, this.next, this.prev, this.playpause, new Element('div',{'class':'mbClear'}), this.count);
	},
	
	closeMilkbox:function(){
		this.cancelAllEffects();
		this.stopAutoPlay();
		this.setOptions(this.autoPlayBkup);

		this.currentFile = null;
		this.currentIndex = null;
		this.currentGallery = null;
		this.currentRequest = null;
		this.currentResponse = null;
 		
		$$(this.prev, this.next, this.playpause, this.count).setStyle('display','none');
		this.playpause.setStyle('backgroundPosition','0 0');
		var border = this.center.getStyle('border-right-width').toInt();
		var navWidth = this.close.getSize().x+border;
		this.navigation.setStyles({'width':navWidth,'height':'','visibility':'hidden'});
		this.description.setStyle('margin-right',navWidth);
		this.description.empty();
		this.bottom.setStyles({'visibility':'hidden','display':''});
		
   	this.canvas.setStyles({'opacity':0, 'width':'', 'height':''});
 		this.canvas.empty();
 		
 		this.count.empty();
		
		this.center.setStyles({'opacity':0,'width':this.options.initialWidth,'height':this.options.initialHeight,'marginLeft':-(this.options.initialWidth/2)});
		this.overlay.tween('opacity',0);//see onComplete in prepareEvents() 
		
		if(this.formtags && this.formtags.length != 0){ this.formtags.setStyle('display','') };
		
		this.mode = null;
		this.closed = true;
		this.first = true;
		this.fileReady = false;
		this.fireEvent('closed');
	},
	
	cancelAllEffects:function(){
		this.overlay.get('tween').cancel();
		this.center.get('morph').cancel();
		this.center.get('tween').cancel();
		this.center.retrieve('setFinalHeight').cancel();
		this.canvas.get('tween').cancel();
	}
	
});//END MILKBOX;

window.addEvent('domready', function(){ 
	milkbox = new Milkbox();
});

var SL_Slider = new Class({

	//implements
	Implements: [Options],	
	
	//variables setup
	numNav: new Array(),		    //will store number nav elements (if used)
	timer: null,					//periodical function variable holder
	isSliding: 0,					//flag for animation/click prevention
	direction: 1,					//flag for direction (forward/reverse)
	
	//options
	options: {
	slideTimer: 1000,  			    //Time between slides (1 second = 1000), a.k.a. the interval duration
	orientation: 'horizontal',      //vertical, horizontal, or none: None will create a fading in/out transition.
	fade: false,                    //if true will fade the outgoing slide - only used if orientation is != None
	isPaused: false,				//flag for paused state
	transitionTime: 1100, 		    //Transition time (1 second = 1000)
	transitionType: 'cubic:out',	//Transition type
	container: null,				//container element
	items:  null, 					//Array of elements for sliding
	itemNum: 0,						//Current item number
	numNavActive: false,			//Whether or not the number navigation will be used
	numNavHolder: null,			    //Element that holds the number navigation
	playBtn: null,					//Play (and pause) button element
	prevBtn: null,					//Previous button element
	nextBtn: null					//Next button element
	},

	//initialization
	initialize: function(options) {
		var self = this;
		
		//set options
		this.setOptions(options);
		
		//remove any scrollbar(s) on the container
		self.options.container.setStyle('overflow', "hidden");  
		
		//if there is a play/pause button, set up functionality for it
		if(self.options.playBtn != null) {
			//self.pauseIt();  
			self.options.playBtn.set('text', 'pause');
			
			self.options.playBtn.addEvents({
				'click': function() {
					self.pauseIt();
				},				
				'mouseenter' : function() {
					this.setStyle('cursor', 'pointer');
				},
				'mouseleave' : function() {
					
				}
			});
		}
		
		//if there is a prev & next button, set up functionality for them
		if(self.options.prevBtn && self.options.nextBtn){
			
			self.options.prevBtn.addEvents({ 
				'click' : function() {
					if(self.isSliding == 0){
						if(self.options.isPaused == false){
							$clear(self.timer);
							self.timer = self.slideIt.periodical(self.options.slideTimer, self, null);
						}
						self.direction = 0;
						self.slideIt();
					}
				},
				'mouseenter' : function() {
					this.setStyle('cursor', 'pointer');
				},
				'mouseleave' : function() {
				
				}
			});	
			
			this.options.nextBtn.addEvents({ 
				'click' : function() {
					if(self.isSliding == 0){
						if(self.options.isPaused == false){
							$clear(self.timer);
							self.timer = self.slideIt.periodical(self.options.slideTimer, self, null);
						}
						self.direction = 1;
						self.slideIt();
					}
				},
				'mouseenter' : function() {
					this.setStyle('cursor', 'pointer');
				},
				'mouseleave' : function() {
					
				}
			});	
		}
		
		//setup items (a.k.a. slides) from list
		self.options.items.each(function(el, i){
			  
			//f.y.i.  el = the element, i = the index
			el.setStyle('position', "absolute");
			var itemH = el.getSize().y;
			var itemW = el.getSize().x;
			if(self.options.orientation == 'vertical'){ 
                el.setStyle('top', (-1 * itemH));
                el.setStyle('left', 0);
            }else if(self.options.orientation == 'none') {
                el.setStyle('left', 0);
                el.setStyle('top', 0);
                el.set('opacity', 0);
			}else{
                el.setStyle('left', (-1 * itemW));
            }
			// -- Number nav setup
			if(self.options.numNavActive == true){
				//create numbered navigation boxes, and insert into the 'num_nav' ul)
				var numItem = new Element('li', {id: 'num'+i});
				var numLink = new Element('a', {
					'class': 'numbtn',
					'html': (i+1)
				});
				numItem.adopt(numLink);
				self.options.numNavHolder.adopt(numItem);
				self.numNav.push(numLink);
				numLink.set('morph', {duration: 100, transition: Fx.Transitions.linear, link: 'ignore'});
				
				numLink.addEvents({
					'click' : function(){
						self.numPress(i);
					},
					'mouseenter' : function() {
						this.setStyle('cursor', 'pointer');
					}
				});
				
				//set initial number to active state
				if(i == self.options.itemNum){
					var initNum = self.numNav[i];
					initNum.addClass('active');
				}
			}
			//end if num nav 'active'
		
		 });
	
	},

	//startup method
	start: function() {
		
		var self = this;
		
		self.slideIt(self.options.itemNum);  //initialize first slide
		
		if(self.options.isPaused == false){
			self.timer = self.slideIt.periodical(self.options.slideTimer, self, null);
			if(self.options.playBtn) self.options.playBtn.set('text', 'pause');
		}
		else{
			//self.pauseIt();
			if(self.options.playBtn) self.options.playBtn.set('text', 'play');
		}
		
	},
	
	
	slideIt: function(passedID) {
		
		var self = this;
		
		//get item to slide out
		var curItem = self.options.items[self.options.itemNum]; 
		if(self.options.numNavActive == true){
			var curNumItem =  self.numNav[self.options.itemNum];
		}
		
		//check for passedID presence
		if(passedID != null) {
			if(self.options.itemNum != passedID){
				if(self.options.itemNum > passedID) { 
					self.direction = 0; 
				} else { 
					self.direction = 1;
				}
				self.options.itemNum = passedID;
			}
		}
		else{
			self.changeIndex();	
		}
		
		
		//now get item to slide in using new index
		var newItem = self.options.items[self.options.itemNum];
		if(self.direction == 0){
			var curX = self.options.container.getSize().x;
			var newX = (-1 * newItem.getSize().x);
            var curY = self.options.container.getSize().y;
            var newY = (-1 * newItem.getSize().y);
		}
		else{
			var curX = (-1 * self.options.container.getSize().x);	
			var newX = newItem.getSize().x;
            var curY = (-1 * self.options.container.getSize().y);
            var newY = newItem.getSize().y;
		}
		
		
		//add/remove active number's highlight
		if(self.options.numNavActive == true){
			var newNumItem =  self.numNav[self.options.itemNum];
			newNumItem.addClass('active');
		}
		
		
		//set up our animation stylings
		var item_in = new Fx.Morph(newItem, {
		     duration: self.options.transitionTime, 
		     transition: self.options.transitionType,
		     link: 'ignore',
		     
		     onStart: function(){
				self.isSliding = 1;  //prevents extra clicks
			},
		     
		     onComplete: function(){
				self.isSliding = 0;  //prevents extra clicks
			}
		     
		});
		
		
		
        if(self.options.orientation == 'vertical'){
            if(self.options.fade == true){item_in.start({'opacity':[0,1],'top' : [newY, 0]});}
            else{item_in.start({'top' : [newY, 0]});}
        }else if(self.options.orientation == 'none') {
            item_in.start({'opacity':[0,1]});
        }else if(self.options.orientation == 'simple') {
            item_in.start({'left' : [0, 0]});
			self.options.orientation = 'horizontal';
        }else{
            if(self.options.fade == true){item_in.start({'opacity':[0,1],'left' : [newX, 0]});}
            else{item_in.start({'left' : [newX, 0]});}
        }
        
		
		if(curItem != newItem){
			var item_out = new Fx.Morph(curItem, {
				     duration: self.options.transitionTime, 
				     transition: self.options.transitionType,
				     link: 'ignore'
			});
			
			if(self.options.numNavActive == true){
				curNumItem.removeClass('active');
			}
			
            if(self.options.orientation == 'vertical'){
                if(self.options.fade == true){item_out.start({'opacity':[0],'top' : [(curY)]});}
                else{item_out.start({'top' : [(curY)]});}
            }else if(self.options.orientation == 'none') {
                item_out.start({'opacity':[1,0]});
            }else{
                if(self.options.fade == true){item_out.start({'opacity':[0],'left' : [(curX)]});}
                else{item_out.start({'left' : [(curX)]});}
            }
		}
	},
	
	
	//--------------------------------------------------------------------------------------------------------
	//supplementary functions  (mini-functions)
	//--------------------------------------------------------------------------------------------------------
	pauseIt: function () {
		
		var self = this;
		
		//only move if not currently moving
		if(self.isSliding == 0){
			if(self.options.isPaused == false){
				self.options.isPaused = true;
				$clear(self.timer);
				self.options.playBtn.set('text', 'play');				
			}
			else{
				self.options.isPaused = false;
				self.slideIt();
				self.timer = self.slideIt.periodical(self.options.slideTimer, this, null); 
				self.options.playBtn.set('text', 'pause');
			}
			
		} //end if not sliding
		
	},
	
	changeIndex: function() {
		var self = this; 
		
		var numItems = self.options.items.length;  //get number of slider items
		
		//change index based on value of 'direction' parameter
		if(self.direction == 1){
			if(self.options.itemNum < (numItems - 1)){
				self.options.itemNum++; 
			}
			else{
				self.options.itemNum = 0;
			}
		}
		else if(self.direction == 0){
			if(self.options.itemNum > 0){
				self.options.itemNum--; 
			}
			else{
				self.options.itemNum = (numItems - 1);
			}
		}	
		
	},
	
	numPress: function (theIndex) {
		var self = this;
		
		if((self.isSliding == 0) && (self.options.itemNum != theIndex)){
			if(self.options.isPaused == false){
				$clear(self.timer);
				self.timer = self.slideIt.periodical(self.options.slideTimer, this, null);
			}
			self.slideIt(theIndex);
		}
	}
	//------------------------  end supp. functions -----------------------------------------//

});


Cufon('h1');
			Cufon('h2');
			//Cufon('#main_nav ul li a');
			window.addEvent('domready', function() {
		
		//slider variables for making things easier below
		var itemsHolder = $('fadedElements');
		var myItems = $$(itemsHolder.getElements('.item'));
		
		var c=$('tabFadeControls');
		var d=$('num__nav');
		//var e=$('play_btn');
		var f=new Element('ul');
		d.adopt(f);
		var g=$(c.getElement('ul'));
		
		var thePrevBtn = $(d.getElement('.prev_btn'));
		var theNextBtn = $(d.getElement('.next_btn'));
		
		//create instance of the slider, and start it up		
		var mySlider = new SL_Slider({
			slideTimer: 6000,
			orientation: 'simple',          //vertical, horizontal, or none: None will create a fading in/out transition.
			fade: false,                    //if true will fade the outgoing slide - only used if orientation is != None
			isPaused: false,
			container: itemsHolder,
			items: myItems,
			numNavActive:true,
			numNavHolder:g,
			prevBtn: thePrevBtn,
			nextBtn: theNextBtn
			//playBtn:e
		});
		mySlider.start();
	});
