/**
 * Storm JavaScript plugins
 *
 * 1. jQuery Cookie
 * 2. hoverIntent
 * 3. Superfish
 * 4. Cufon
 * 5. Cufon font - Comfortaa Regular
 * 6. Cufon font - Comfortaa Bold 
 * 7. ToggleVal
 * 8. Twitter callback
 * 9. jQuery BBQ
 * 10. jQuery hashchange event
 * 11. Image preloader
 * 12. Full screen background
 */

/**
 * jQuery Cookie plugin
 *
 * Copyright (c) 2010 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */

// TODO JsDoc

/**
 * Create a cookie with the given key and value and other optional parameters.
 *
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Set the value of a cookie.
 * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
 * @desc Create a cookie with all available options.
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Create a session cookie.
 * @example $.cookie('the_cookie', null);
 * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
 *       used when the cookie was set.
 *
 * @param String key The key of the cookie.
 * @param String value The value of the cookie.
 * @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
 * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
 *                             If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
 *                             If set to null or omitted, the cookie will be a session cookie and will not be retained
 *                             when the the browser exits.
 * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
 * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
 * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
 *                        require a secure protocol (like HTTPS).
 * @type undefined
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */

/**
 * Get the value of a cookie with the given key.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String key The key of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function (key, value, options) {
    
    // key and at least value given, set cookie...
    if (arguments.length > 1 && String(value) !== "[object Object]") {
        options = jQuery.extend({}, options);

        if (value === null || value === undefined) {
            options.expires = -1;
        }

        if (typeof options.expires === 'number') {
            var days = options.expires, t = options.expires = new Date();
            t.setDate(t.getDate() + days);
        }
        
        value = String(value);
        
        return (document.cookie = [
            encodeURIComponent(key), '=',
            options.raw ? value : encodeURIComponent(value),
            options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
            options.path ? '; path=' + options.path : '',
            options.domain ? '; domain=' + options.domain : '',
            options.secure ? '; secure' : ''
        ].join(''));
    }

    // key and possibly options given, get cookie...
    options = value || {};
    var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
    return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};


;(function($){
	/* hoverIntent by Brian Cherne */
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	
})(jQuery);


/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"></span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);

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

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 20.07.2010, Johan Aakerlund (aajohan@gmail.com), with Reserved
 * Font Name "Comfortaa". This Font Software is licensed under the SIL Open Font
 * License, Version 1.1. http://scripts.sil.org/OFL
 * 
 * Manufacturer:
 * Johan Aakerlund
 * 
 * Designer:
 * Johan Aakerlund - aajohan
 * 
 * License information:
 * http://scripts.sil.org/OFL
 */
Cufon.registerFont({"w":240,"face":{"font-family":"Swis721 Ex BT","font-weight":400,"font-stretch":"expanded","units-per-em":"360","panose-1":"2 11 6 5 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"7","bbox":"-18 -281 408 85","underline-thickness":"23.0273","underline-position":"-22.8516","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":119},"!":{"d":"37,0r0,-43r43,0r0,43r-43,0xm47,-65v-6,-62,-10,-126,-8,-195r38,0v1,69,-2,133,-8,195r-22,0","w":116},"\"":{"d":"92,-252r0,97r-24,0r0,-97r24,0xm40,-252r0,97r-24,0r0,-97r24,0","w":107},"#":{"d":"170,-151r-45,0r-17,47r46,0xm162,-256r-28,80r45,0r29,-80r29,0r-29,80r53,0r-9,25r-53,0r-16,46r56,0r-9,26r-56,0r-29,80r-29,0r29,-80r-46,0r-28,80r-29,0r28,-80r-55,0r10,-26r54,0r16,-46r-58,0r9,-25r59,0r28,-80r29,0","w":276},"$":{"d":"110,-225v-41,-3,-73,38,-41,64v8,7,22,11,41,13r0,-77xm131,-30v47,6,79,-39,47,-67v-8,-7,-24,-11,-47,-15r0,82xm228,-72v0,51,-43,70,-97,72r0,30r-21,0r0,-30v-54,-2,-98,-27,-98,-80r37,0v3,32,25,49,61,50r0,-85v-53,-10,-91,-20,-91,-70v0,-46,41,-67,91,-68r0,-28r21,0r0,27v50,2,89,23,92,69r-37,0v-4,-27,-24,-37,-55,-39r0,80v58,12,97,19,97,72"},"%":{"d":"232,-110v-27,0,-37,18,-37,48v0,29,10,47,37,47v26,0,36,-18,36,-47v0,-29,-9,-47,-36,-48xm232,7v-41,0,-63,-26,-63,-69v0,-43,21,-69,63,-69v42,0,62,27,62,69v0,42,-21,69,-62,69xm59,7r164,-267r26,0r-163,267r-27,0xm77,-238v-26,0,-36,18,-36,47v0,29,10,47,36,47v26,0,37,-18,37,-47v0,-29,-10,-47,-37,-47xm77,-122v-41,0,-62,-27,-62,-69v0,-42,21,-69,62,-69v41,0,63,26,63,69v0,43,-22,69,-63,69","w":309},"&":{"d":"125,-231v-26,0,-43,24,-27,45v4,6,12,14,23,23v20,-10,35,-17,36,-40v1,-19,-13,-28,-32,-28xm56,-75v0,60,106,65,135,22r-82,-77v-30,16,-53,22,-53,55xm254,-121v-1,26,-7,47,-20,63r62,58r-48,0r-34,-32v-42,57,-195,54,-195,-36v1,-44,32,-68,70,-81v-49,-29,-36,-111,36,-111v37,0,66,18,66,53v-1,34,-22,50,-49,63r68,63v7,-11,11,-24,12,-40r32,0","w":283},"'":{"d":"40,-252r0,97r-24,0r0,-97r24,0","w":55},"(":{"d":"21,-96v0,-73,30,-116,68,-164r26,0v-72,79,-73,249,0,328r-26,0v-39,-48,-68,-90,-68,-164","w":116},")":{"d":"96,-96v0,72,-30,116,-68,164r-27,0v72,-79,72,-249,0,-328r27,0v38,48,68,92,68,164","w":116},"*":{"d":"81,-218r0,-49r26,0r0,49r46,-15r7,24r-46,15r29,39r-21,16r-28,-40r-29,40r-21,-16r28,-39r-45,-15r8,-24","w":187},"+":{"d":"162,-215r0,95r93,0r0,25r-93,0r0,95r-25,0r0,-95r-92,0r0,-25r92,0r0,-95r25,0","w":299},",":{"d":"37,36v16,-5,21,-15,21,-36r-21,0r0,-43r43,0v1,52,2,93,-43,103r0,-24","w":119},"-":{"d":"17,-80r0,-32r132,0r0,32r-132,0","w":166,"k":{"o":-7,"Y":28,"X":13,"W":20,"V":21,"T":33,"O":-13,"J":-20,"G":-13,"C":-7,"A":6}},".":{"d":"38,0r0,-43r44,0r0,43r-44,0","w":119},"\/":{"d":"20,33r-24,0r98,-300r24,0","w":100},"0":{"d":"120,-227v-51,0,-67,42,-67,100v0,59,16,100,67,100v52,0,67,-41,67,-100v0,-60,-16,-100,-67,-100xm120,7v-72,0,-104,-55,-104,-134v0,-79,32,-133,104,-133v71,0,104,55,104,133v0,79,-32,134,-104,134"},"1":{"d":"35,-213v48,1,81,-9,86,-47r27,0r0,260r-35,0r0,-183r-78,0r0,-30"},"2":{"d":"218,-179v0,84,-127,95,-156,144r152,0r0,35r-198,0v-3,-97,122,-93,159,-156v21,-37,-14,-73,-55,-72v-38,1,-61,22,-61,60v-12,-2,-31,3,-39,-2v0,-59,38,-90,100,-90v55,0,98,28,98,81"},"3":{"d":"120,7v-65,0,-103,-24,-102,-88r36,0v1,38,24,56,64,56v36,-1,67,-14,67,-47v0,-41,-41,-46,-87,-45r0,-29v40,1,77,-3,77,-38v0,-28,-25,-44,-55,-43v-37,0,-60,18,-59,54r-38,0v-1,-58,38,-87,97,-87v50,0,93,26,93,71v0,32,-20,48,-47,55v35,3,58,23,58,59v0,54,-46,82,-104,82"},"4":{"d":"146,0r0,-64r-132,0r0,-34r136,-159r34,0r0,162r42,0r0,31r-42,0r0,64r-38,0xm50,-95r96,0r2,-123"},"5":{"d":"221,-88v0,85,-112,122,-174,75v-18,-13,-27,-33,-30,-57r37,0v5,29,26,43,60,43v38,1,69,-22,69,-58v0,-62,-100,-75,-124,-29r-36,0r23,-139r156,0r0,32r-128,0r-12,72v49,-47,159,-18,159,61"},"6":{"d":"180,-197v-9,-41,-87,-41,-108,-7v-11,18,-19,42,-19,76v38,-64,175,-49,175,44v0,55,-47,92,-106,91v-72,-1,-108,-50,-108,-127v0,-108,87,-173,174,-124v17,10,25,27,28,47r-36,0xm124,-137v-36,0,-66,22,-66,56v0,33,29,53,64,53v39,0,69,-20,69,-54v0,-35,-30,-55,-67,-55"},"7":{"d":"213,-219v-51,62,-86,129,-102,219r-43,0v20,-90,59,-167,114,-220r-163,0r0,-33r194,0r0,34"},"8":{"d":"120,-152v30,0,56,-13,56,-40v0,-26,-25,-37,-55,-37v-31,1,-56,9,-56,37v0,28,25,40,55,40xm118,-27v38,0,68,-15,68,-50v0,-33,-30,-46,-66,-46v-37,0,-67,12,-67,46v0,33,29,50,65,50xm16,-73v0,-38,23,-60,57,-66v-26,-7,-46,-23,-46,-53v0,-48,43,-69,96,-68v49,0,90,23,91,68v-1,30,-21,46,-47,53v36,7,57,26,57,66v0,54,-46,80,-104,80v-57,0,-104,-26,-104,-80"},"9":{"d":"117,-116v36,0,66,-21,66,-56v0,-33,-29,-54,-64,-54v-38,0,-69,20,-69,55v0,36,30,56,67,55xm113,-24v56,-1,75,-41,75,-101v-38,64,-181,48,-175,-44v4,-59,43,-91,103,-91v75,0,111,47,111,126v0,109,-88,174,-174,124v-17,-10,-25,-27,-28,-47r36,0v8,21,24,34,52,33"},":":{"d":"37,0r0,-43r43,0r0,43r-43,0xm37,-149r0,-44r43,0r0,44r-43,0","w":116},";":{"d":"35,-149r0,-44r44,0r0,44r-44,0xm35,36v17,-5,24,-17,21,-36r-21,0r0,-43r44,0v2,52,1,93,-44,103r0,-24","w":116},"<":{"d":"253,-177r-170,70r170,69r0,27r-207,-85r0,-23r207,-85r0,27","w":299},"=":{"d":"255,-85r0,25r-210,0r0,-25r210,0xm255,-155r0,25r-210,0r0,-25r210,0","w":299},">":{"d":"253,-119r0,23r-207,85r0,-27r171,-69r-171,-70r0,-27","w":299},"?":{"d":"109,-267v67,0,111,60,78,121v-12,23,-75,36,-69,78r-37,0v-6,-68,76,-58,79,-119v1,-31,-24,-47,-55,-47v-35,0,-57,19,-57,55r-39,0v1,-56,42,-88,100,-88xm78,0r0,-43r42,0r0,43r-42,0","w":213},"@":{"d":"44,-91v-7,126,165,150,246,89r10,14v-30,23,-69,40,-117,40v-96,0,-164,-49,-164,-144v0,-105,72,-166,177,-166v83,0,146,42,146,121v0,67,-35,112,-99,116v-23,1,-37,-8,-36,-31v-19,48,-108,40,-108,-27v0,-51,34,-98,84,-97v23,0,36,9,43,26r10,-20r23,0r-27,111v0,11,5,19,17,17v43,-6,66,-45,67,-92v2,-63,-54,-104,-121,-102v-93,2,-146,57,-151,145xm127,-78v0,38,40,48,64,26v18,-17,21,-47,29,-73v-3,-18,-14,-33,-35,-32v-35,0,-58,40,-58,79","w":360},"A":{"d":"87,-108r102,0r-50,-111xm-2,0r123,-260r39,0r115,260r-38,0r-33,-74r-133,0r-34,74r-39,0","w":276,"k":{"y":6,"t":6,"Y":26,"W":13,"V":13,"U":6,"T":21,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,"-":8}},"B":{"d":"224,-75v2,-66,-97,-36,-157,-43r0,83v59,-6,155,21,157,-40xm217,-190v0,-59,-95,-30,-150,-37r0,75v56,-6,150,21,150,-38xm263,-76v4,106,-137,70,-233,76r0,-260v89,6,224,-29,223,66v0,32,-17,46,-41,57v31,6,50,26,51,61","w":279,"k":{"-":-10}},"C":{"d":"158,-28v49,0,88,-29,93,-72r39,0v-7,65,-60,107,-132,107v-85,0,-143,-53,-143,-137v0,-157,253,-190,272,-36r-39,0v-7,-41,-41,-66,-90,-66v-65,0,-104,38,-104,102v0,64,39,103,104,102","w":302,"k":{"-":-8}},"D":{"d":"292,-130v0,92,-45,130,-148,130r-114,0r0,-260r114,0v104,-4,148,38,148,130xm254,-130v0,-63,-28,-97,-98,-97r-89,0r0,194r89,0v70,4,98,-34,98,-97","w":307,"k":{"Y":6,"W":-7,"V":6,"A":6,"-":-11}},"E":{"d":"30,0r0,-260r207,0r0,33r-170,0r0,77r159,0r0,34r-159,0r0,81r172,0r0,35r-209,0","w":255},"F":{"d":"30,0r0,-260r198,0r0,33r-161,0r0,77r143,0r0,35r-143,0r0,115r-37,0","w":232,"k":{"a":6,"A":13,";":15,":":15,".":58,",":58}},"G":{"d":"15,-130v0,-117,133,-174,223,-112v23,17,36,38,39,64r-38,0v-10,-36,-43,-54,-89,-54v-60,0,-97,40,-97,102v0,90,98,130,162,81v17,-14,28,-32,30,-56r-83,0r0,-34r117,0r0,139r-26,0r-3,-44v-19,31,-52,51,-101,51v-80,1,-134,-57,-134,-137","w":309,"k":{"Y":6,"T":6,"-":-8}},"H":{"d":"30,0r0,-260r37,0r0,105r158,0r0,-105r37,0r0,260r-37,0r0,-121r-158,0r0,121r-37,0","w":291,"k":{".":6,",":6}},"I":{"d":"32,0r0,-260r37,0r0,260r-37,0","w":101},"J":{"d":"95,7v-62,2,-91,-31,-88,-95r37,0v-1,39,11,62,49,61v45,0,52,-25,51,-73r0,-160r37,0r0,172v2,65,-28,93,-86,95","w":204,"k":{"-":6}},"K":{"d":"30,0r0,-260r37,0r0,134r151,-134r48,0r-124,108r124,152r-43,0r-106,-130r-50,44r0,86r-37,0","w":266,"k":{"y":6,"Y":6,"W":6,"O":13,"C":13,"A":6,"-":18}},"L":{"d":"30,0r0,-260r37,0r0,225r159,0r0,35r-196,0","w":230,"k":{"y":13,"Y":40,"W":13,"V":20,"T":33,"O":6,"A":-7,"-":6}},"M":{"d":"30,0r0,-260r55,0r101,227r103,-227r54,0r0,260r-36,0r3,-233r-106,233r-37,0r-103,-233r2,233r-36,0","w":373},"N":{"d":"30,0r0,-260r50,0r163,222r0,-222r36,0r0,260r-50,0r-163,-222r0,222r-36,0","w":309},"O":{"d":"158,-232v-65,0,-104,38,-104,102v0,64,39,102,104,102v65,0,104,-38,104,-102v0,-63,-39,-102,-104,-102xm158,7v-85,0,-143,-53,-143,-137v0,-84,58,-137,143,-137v85,0,142,53,142,137v0,84,-57,137,-142,137","w":315,"k":{"Y":13,"X":13,"V":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"208,-182v0,-63,-83,-41,-141,-45r0,90v59,-3,141,16,141,-45xm245,-183v0,87,-93,77,-178,76r0,107r-37,0r0,-260v94,3,215,-23,215,77","w":256,"k":{"o":13,"e":6,"a":6,"A":31,";":10,":":10,".":79,"-":15,",":79}},"Q":{"d":"54,-130v0,79,65,117,144,97r-27,-22r20,-26r38,31v21,-15,34,-45,33,-80v0,-63,-39,-102,-104,-102v-65,0,-104,38,-104,102xm300,-130v-1,44,-16,82,-42,103r35,28r-21,27r-43,-36v-96,44,-214,-11,-214,-122v0,-84,58,-137,143,-137v85,0,143,53,142,137","w":315},"R":{"d":"222,-186v0,-64,-96,-37,-156,-43r0,85v60,-6,156,21,156,-42xm224,0v-15,-42,11,-112,-60,-112r-98,0r0,112r-36,0r0,-260v94,5,229,-26,229,71v0,36,-16,55,-45,64v58,1,30,85,53,125r-43,0","w":284,"k":{"y":-7,"e":6,".":-7,"-":10,",":-7}},"S":{"d":"249,-75v0,91,-145,100,-200,58v-20,-16,-31,-40,-31,-71r39,0v3,45,32,56,82,61v67,7,104,-68,27,-81v-60,-10,-140,-10,-140,-80v0,-84,132,-98,187,-57v18,14,27,35,27,61r-37,0v-4,-37,-28,-46,-70,-49v-46,-3,-87,30,-58,64v53,32,174,9,174,94","w":266},"T":{"d":"134,-226r0,226r-37,0r0,-226r-99,0r0,-34r235,0r0,34r-99,0","w":230,"k":{"y":29,"w":29,"u":29,"s":23,"r":16,"o":29,"e":36,"c":29,"a":29,"C":6,"A":21,";":29,":":29,".":46,"-":33,",":46}},"U":{"d":"144,-28v109,0,72,-135,78,-232r37,0r0,163v0,70,-43,104,-115,104v-73,0,-114,-34,-115,-104r0,-163r37,0v6,97,-31,232,78,232","w":289,"k":{"A":6}},"V":{"d":"112,0r-114,-260r39,0r96,227r96,-227r40,0r-115,260r-42,0","w":266,"k":{"y":6,"u":20,"o":26,"e":26,"a":26,"O":6,"A":13,";":18,":":18,".":53,"-":29,",":53}},"W":{"d":"89,0r-88,-260r39,0r72,228r71,-228r43,0r71,228r72,-228r39,0r-88,260r-43,0r-73,-224r-72,224r-43,0","w":409,"k":{"u":6,"r":10,"o":13,"i":-7,"e":13,"a":13,"A":13,";":21,":":21,".":44,"-":21,",":44}},"X":{"d":"2,0r107,-133r-97,-127r46,0r73,99r79,-99r44,0r-102,126r105,134r-47,0r-81,-107r-80,107r-47,0","w":258,"k":{"e":6,"O":13,"C":13,"-":18}},"Y":{"d":"111,0r0,-108r-116,-152r44,0r90,121r90,-121r44,0r-115,152r0,108r-37,0","w":257,"k":{"u":21,"o":33,"e":40,"a":40,"O":13,"C":6,"A":26,";":38,":":38,".":48,"-":43,",":48}},"Z":{"d":"6,0r0,-36r187,-191r-175,0r0,-33r221,0r0,36r-184,188r187,0r0,36r-236,0","w":248,"k":{"-":6}},"[":{"d":"24,68r0,-328r86,0r0,28r-52,0r0,272r52,0r0,28r-86,0","w":116},"\\":{"d":"80,33r-98,-300r24,0r98,300r-24,0","w":100},"]":{"d":"93,-260r0,328r-86,0r0,-28r51,0r0,-272r-51,0r0,-28r86,0","w":116},"^":{"d":"196,-256r90,98r-32,0r-74,-74r-75,74r-31,0r89,-98r33,0","w":360},"_":{"d":"180,60r0,25r-180,0r0,-25r180,0","w":180},"`":{"d":"89,-218r-50,-54r44,0r32,54r-26,0","w":180},"a":{"d":"235,-2v-31,6,-60,1,-62,-28v-27,47,-158,53,-155,-23v2,-53,52,-56,104,-62v33,-3,50,-11,50,-25v-2,-24,-20,-29,-50,-29v-36,0,-56,8,-59,38r-37,0v3,-50,38,-68,93,-68v59,0,88,12,88,64r0,78v-2,23,8,31,28,27r0,28xm98,-25v47,0,84,-20,74,-74v-27,22,-116,0,-116,44v1,21,18,30,42,30","w":241},"b":{"d":"132,-165v-42,0,-70,27,-70,70v0,42,28,69,70,69v43,-1,70,-25,70,-69v0,-43,-26,-70,-70,-70xm239,-95v0,94,-126,134,-177,67r0,28r-35,0r0,-260r35,0r0,97v18,-21,39,-32,74,-33v60,-1,103,42,103,101","w":252},"c":{"d":"13,-96v0,-115,179,-143,200,-33r-36,0v-7,-23,-27,-38,-56,-38v-43,-1,-72,28,-72,71v0,78,119,96,129,24r37,0v-8,46,-44,79,-98,79v-61,0,-104,-43,-104,-103","w":230},"d":{"d":"120,-26v42,0,70,-27,70,-69v0,-43,-28,-70,-70,-70v-44,0,-70,27,-70,70v0,44,27,68,70,69xm13,-95v-10,-93,126,-135,177,-68r0,-97r36,0r0,260r-36,0r0,-28v-50,66,-187,27,-177,-67","w":252},"e":{"d":"189,-114v-3,-49,-75,-68,-114,-39v-12,9,-19,23,-22,39r136,0xm121,-199v67,0,108,41,105,110r-174,1v-7,67,109,84,130,28r41,0v-13,40,-51,67,-102,67v-63,0,-106,-41,-106,-103v0,-62,43,-103,106,-103","w":241,"k":{"x":6}},"f":{"d":"122,-226v-27,-6,-55,-3,-47,33r47,0r0,31r-47,0r0,162r-35,0r0,-162r-34,0r0,-31r34,0v-9,-58,27,-76,82,-64r0,31","w":117,"k":{"y":-27,"t":-20,";":-13,":":-13,".":6,",":6}},"g":{"d":"121,-167v-43,0,-71,28,-71,71v0,44,28,70,71,70v43,1,72,-27,72,-70v0,-44,-28,-71,-72,-71xm13,-96v0,-94,131,-136,177,-65r0,-32r36,0r0,168v-1,69,-35,93,-108,93v-51,1,-87,-19,-92,-62r39,0v5,22,24,31,53,31v52,1,74,-15,72,-65v-18,21,-39,32,-74,33v-60,1,-103,-42,-103,-101","w":251},"h":{"d":"132,-168v-42,0,-73,29,-72,70r0,98r-35,0r0,-260r35,0r0,101v20,-23,42,-39,80,-39v53,0,73,27,73,87r0,111r-35,0v-7,-64,26,-168,-46,-168","w":237},"i":{"d":"63,-218r-35,0r0,-42r35,0r0,42xm28,0r0,-193r35,0r0,193r-35,0","w":90},"j":{"d":"-15,36v25,1,44,-3,43,-27r0,-202r35,0r0,204v2,51,-29,60,-78,57r0,-32xm63,-218r-35,0r0,-42r35,0r0,42","w":90},"k":{"d":"28,0r0,-260r35,0r0,152r101,-85r52,0r-91,74r98,119r-47,0r-77,-98r-36,29r0,69r-35,0","w":213,"k":{"o":6,"e":13,"a":6}},"l":{"d":"28,0r0,-260r35,0r0,260r-35,0","w":90},"m":{"d":"60,-159v26,-46,132,-57,148,3v35,-60,156,-63,156,45r0,111r-35,0v-7,-64,26,-168,-46,-168v-42,0,-71,29,-71,70r0,98r-34,0v-7,-64,26,-168,-46,-168v-42,0,-73,29,-72,70r0,98r-35,0r0,-193r35,0r0,34","w":388},"n":{"d":"132,-168v-42,0,-73,29,-72,70r0,98r-35,0r0,-193r35,0r0,34v20,-23,42,-39,80,-39v53,0,73,27,73,87r0,111r-35,0v-7,-64,26,-168,-46,-168","w":237},"o":{"d":"121,-167v-43,0,-72,28,-72,71v0,42,29,70,72,70v43,0,71,-27,71,-70v0,-43,-28,-71,-71,-71xm121,7v-64,0,-108,-40,-108,-103v0,-63,44,-103,108,-103v65,0,108,41,108,103v0,62,-44,103,-108,103","w":241,"k":{"x":6,"-":-7}},"p":{"d":"132,-165v-43,0,-71,26,-71,69v0,43,29,69,71,69v43,0,70,-26,70,-69v0,-42,-27,-69,-70,-69xm239,-96v0,94,-127,134,-178,68r0,96r-35,0r0,-261r35,0r0,29v17,-20,40,-33,75,-33v60,0,103,42,103,101","w":252},"q":{"d":"120,-27v42,0,70,-27,70,-69v0,-42,-27,-69,-70,-69v-44,0,-70,26,-70,69v0,44,26,69,70,69xm13,-96v0,-93,127,-135,177,-68r0,-29r36,0r0,261r-36,0r0,-96v-18,21,-39,32,-74,33v-60,1,-103,-42,-103,-101","w":252},"r":{"d":"147,-159v-47,-16,-87,18,-87,65r0,94r-35,0r0,-193r35,0r0,33v16,-25,49,-46,87,-36r0,37","w":143,"k":{"v":-20,"n":-7,".":36,",":36}},"s":{"d":"189,-92v39,49,-14,105,-83,99v-57,-5,-90,-19,-95,-70r38,0v-1,49,108,53,117,10v-3,-31,-51,-25,-78,-32v-42,-11,-68,-12,-68,-52v0,-46,37,-62,87,-62v51,-1,87,18,88,64r-34,0v1,-44,-99,-48,-106,-9v6,44,109,21,134,52","w":212},"t":{"d":"128,4v-42,7,-82,3,-82,-41r0,-125r-34,0r0,-31r34,0r0,-49r35,0r0,49r47,0r0,31r-47,0r0,115v-3,27,27,22,47,19r0,32","w":134},"u":{"d":"107,-24v41,0,71,-30,71,-71r0,-98r35,0r0,193r-35,0r0,-33v-19,23,-41,36,-79,38v-97,6,-71,-109,-74,-198r35,0v7,65,-26,169,47,169","w":237},"v":{"d":"84,0r-88,-193r42,0r66,163r64,-163r40,0r-85,193r-39,0","w":204,"k":{".":28,",":28}},"w":{"d":"72,0r-73,-193r43,0r49,160r49,-160r40,0r46,160r52,-160r41,0r-74,193r-40,0r-46,-158r-47,158r-40,0","w":318,"k":{".":26,"-":-13,",":26}},"x":{"d":"-1,0r85,-98r-77,-95r47,0r55,74r57,-74r46,0r-82,95r86,98r-49,0r-58,-75r-65,75r-45,0","w":213,"k":{"o":6,"e":6,"c":6}},"y":{"d":"208,-193r-105,232v-13,28,-42,32,-83,28r0,-33v35,7,59,-1,64,-34r-88,-193r42,0r66,163r64,-163r40,0","w":204,"k":{".":31,"-":6,",":31}},"z":{"d":"12,0r0,-35r143,-127r-136,0r0,-31r179,0r0,31r-140,131r144,0r0,31r-190,0","w":213},"{":{"d":"79,-197v-3,-55,22,-63,73,-63r0,27v-84,-17,-3,133,-78,140v42,5,36,52,36,100v0,35,9,40,42,40r0,26v-52,1,-76,-8,-73,-63v2,-48,5,-101,-49,-90r0,-27v52,10,51,-39,49,-90","w":180},"|":{"d":"103,-275r0,360r-26,0r0,-360r26,0","w":180},"}":{"d":"28,-260v50,0,76,8,73,63v-2,48,-4,101,50,90r0,27v-52,-10,-52,39,-50,90v3,55,-21,64,-73,63r0,-26v85,17,5,-132,78,-140v-41,-6,-35,-52,-35,-100v0,-34,-10,-40,-43,-40r0,-27","w":180},"~":{"d":"269,-108v-33,26,-76,32,-122,12v-51,-22,-80,-8,-116,17r0,-28v20,-13,40,-24,68,-25v32,-1,75,24,102,24v29,0,46,-11,68,-27r0,27","w":299},"\u00a0":{"w":119}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 20.07.2010, Johan Aakerlund (aajohan@gmail.com), with Reserved
 * Font Name "Comfortaa". This Font Software is licensed under the SIL Open Font
 * License, Version 1.1. http://scripts.sil.org/OFL
 * 
 * Manufacturer:
 * Johan Aakerlund
 * 
 * Designer:
 * Johan Aakerlund - aajohan
 * 
 * License information:
 * http://scripts.sil.org/OFL
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Swis721 Ex BT","font-weight":400,"font-stretch":"expanded","units-per-em":"360","panose-1":"2 11 6 5 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"7","bbox":"-76 -344 440 85","underline-thickness":"23.0273","underline-position":"-22.8516","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":119},"!":{"d":"37,0r0,-43r43,0r0,43r-43,0xm47,-65v-6,-62,-10,-126,-8,-195r38,0v1,69,-2,133,-8,195r-22,0","w":116},"\"":{"d":"92,-252r0,97r-24,0r0,-97r24,0xm40,-252r0,97r-24,0r0,-97r24,0","w":107},"#":{"d":"170,-151r-45,0r-17,47r46,0xm162,-256r-28,80r45,0r29,-80r29,0r-29,80r53,0r-9,25r-53,0r-16,46r56,0r-9,26r-56,0r-29,80r-29,0r29,-80r-46,0r-28,80r-29,0r28,-80r-55,0r10,-26r54,0r16,-46r-58,0r9,-25r59,0r28,-80r29,0","w":276},"$":{"d":"110,-225v-41,-3,-73,38,-41,64v8,7,22,11,41,13r0,-77xm131,-30v47,6,79,-39,47,-67v-8,-7,-24,-11,-47,-15r0,82xm228,-72v0,51,-43,70,-97,72r0,30r-21,0r0,-30v-54,-2,-98,-27,-98,-80r37,0v3,32,25,49,61,50r0,-85v-53,-10,-91,-20,-91,-70v0,-46,41,-67,91,-68r0,-28r21,0r0,27v50,2,89,23,92,69r-37,0v-4,-27,-24,-37,-55,-39r0,80v58,12,97,19,97,72","w":240},"%":{"d":"232,-110v-27,0,-37,18,-37,48v0,29,10,47,37,47v26,0,36,-18,36,-47v0,-29,-9,-47,-36,-48xm232,7v-41,0,-63,-26,-63,-69v0,-43,21,-69,63,-69v42,0,62,27,62,69v0,42,-21,69,-62,69xm59,7r164,-267r26,0r-163,267r-27,0xm77,-238v-26,0,-36,18,-36,47v0,29,10,47,36,47v26,0,37,-18,37,-47v0,-29,-10,-47,-37,-47xm77,-122v-41,0,-62,-27,-62,-69v0,-42,21,-69,62,-69v41,0,63,26,63,69v0,43,-22,69,-63,69","w":309},"&":{"d":"125,-231v-26,0,-43,24,-27,45v4,6,12,14,23,23v20,-10,35,-17,36,-40v1,-19,-13,-28,-32,-28xm56,-75v0,60,106,65,135,22r-82,-77v-30,16,-53,22,-53,55xm254,-121v-1,26,-7,47,-20,63r62,58r-48,0r-34,-32v-42,57,-195,54,-195,-36v1,-44,32,-68,70,-81v-49,-29,-36,-111,36,-111v37,0,66,18,66,53v-1,34,-22,50,-49,63r68,63v7,-11,11,-24,12,-40r32,0","w":283},"'":{"d":"40,-252r0,97r-24,0r0,-97r24,0","w":55},"(":{"d":"21,-96v0,-73,30,-116,68,-164r26,0v-72,79,-73,249,0,328r-26,0v-39,-48,-68,-90,-68,-164","w":116},")":{"d":"96,-96v0,72,-30,116,-68,164r-27,0v72,-79,72,-249,0,-328r27,0v38,48,68,92,68,164","w":116},"*":{"d":"81,-218r0,-49r26,0r0,49r46,-15r7,24r-46,15r29,39r-21,16r-28,-40r-29,40r-21,-16r28,-39r-45,-15r8,-24","w":187},"+":{"d":"162,-215r0,95r93,0r0,25r-93,0r0,95r-25,0r0,-95r-92,0r0,-25r92,0r0,-95r25,0","w":299},",":{"d":"37,36v16,-5,21,-15,21,-36r-21,0r0,-43r43,0v1,52,2,93,-43,103r0,-24","w":119},"-":{"d":"17,-80r0,-32r132,0r0,32r-132,0","w":166,"k":{"\u0153":-7,"\u0152":-13,"\u00f8":-7,"\u00d8":-13,"\u00c6":-10,"\u00c5":6,"o":-7,"Y":28,"X":13,"W":20,"V":21,"T":33,"O":-13,"J":-20,"G":-13,"C":-7,"A":6}},".":{"d":"38,0r0,-43r44,0r0,43r-44,0","w":119},"\/":{"d":"20,33r-24,0r98,-300r24,0","w":100},"0":{"d":"120,-227v-51,0,-67,42,-67,100v0,59,16,100,67,100v52,0,67,-41,67,-100v0,-60,-16,-100,-67,-100xm120,7v-72,0,-104,-55,-104,-134v0,-79,32,-133,104,-133v71,0,104,55,104,133v0,79,-32,134,-104,134","w":240},"1":{"d":"35,-213v48,1,81,-9,86,-47r27,0r0,260r-35,0r0,-183r-78,0r0,-30","w":240},"2":{"d":"218,-179v0,84,-127,95,-156,144r152,0r0,35r-198,0v-3,-97,122,-93,159,-156v21,-37,-14,-73,-55,-72v-38,1,-61,22,-61,60v-12,-2,-31,3,-39,-2v0,-59,38,-90,100,-90v55,0,98,28,98,81","w":240},"3":{"d":"120,7v-65,0,-103,-24,-102,-88r36,0v1,38,24,56,64,56v36,-1,67,-14,67,-47v0,-41,-41,-46,-87,-45r0,-29v40,1,77,-3,77,-38v0,-28,-25,-44,-55,-43v-37,0,-60,18,-59,54r-38,0v-1,-58,38,-87,97,-87v50,0,93,26,93,71v0,32,-20,48,-47,55v35,3,58,23,58,59v0,54,-46,82,-104,82","w":240},"4":{"d":"146,0r0,-64r-132,0r0,-34r136,-159r34,0r0,162r42,0r0,31r-42,0r0,64r-38,0xm50,-95r96,0r2,-123","w":240},"5":{"d":"221,-88v0,85,-112,122,-174,75v-18,-13,-27,-33,-30,-57r37,0v5,29,26,43,60,43v38,1,69,-22,69,-58v0,-62,-100,-75,-124,-29r-36,0r23,-139r156,0r0,32r-128,0r-12,72v49,-47,159,-18,159,61","w":240},"6":{"d":"180,-197v-9,-41,-87,-41,-108,-7v-11,18,-19,42,-19,76v38,-64,175,-49,175,44v0,55,-47,92,-106,91v-72,-1,-108,-50,-108,-127v0,-108,87,-173,174,-124v17,10,25,27,28,47r-36,0xm124,-137v-36,0,-66,22,-66,56v0,33,29,53,64,53v39,0,69,-20,69,-54v0,-35,-30,-55,-67,-55","w":240},"7":{"d":"213,-219v-51,62,-86,129,-102,219r-43,0v20,-90,59,-167,114,-220r-163,0r0,-33r194,0r0,34","w":240},"8":{"d":"120,-152v30,0,56,-13,56,-40v0,-26,-25,-37,-55,-37v-31,1,-56,9,-56,37v0,28,25,40,55,40xm118,-27v38,0,68,-15,68,-50v0,-33,-30,-46,-66,-46v-37,0,-67,12,-67,46v0,33,29,50,65,50xm16,-73v0,-38,23,-60,57,-66v-26,-7,-46,-23,-46,-53v0,-48,43,-69,96,-68v49,0,90,23,91,68v-1,30,-21,46,-47,53v36,7,57,26,57,66v0,54,-46,80,-104,80v-57,0,-104,-26,-104,-80","w":240},"9":{"d":"117,-116v36,0,66,-21,66,-56v0,-33,-29,-54,-64,-54v-38,0,-69,20,-69,55v0,36,30,56,67,55xm113,-24v56,-1,75,-41,75,-101v-38,64,-181,48,-175,-44v4,-59,43,-91,103,-91v75,0,111,47,111,126v0,109,-88,174,-174,124v-17,-10,-25,-27,-28,-47r36,0v8,21,24,34,52,33","w":240},":":{"d":"37,0r0,-43r43,0r0,43r-43,0xm37,-149r0,-44r43,0r0,44r-43,0","w":116},";":{"d":"35,-149r0,-44r44,0r0,44r-44,0xm35,36v17,-5,24,-17,21,-36r-21,0r0,-43r44,0v2,52,1,93,-44,103r0,-24","w":116},"<":{"d":"253,-177r-170,70r170,69r0,27r-207,-85r0,-23r207,-85r0,27","w":299},"=":{"d":"255,-85r0,25r-210,0r0,-25r210,0xm255,-155r0,25r-210,0r0,-25r210,0","w":299},">":{"d":"253,-119r0,23r-207,85r0,-27r171,-69r-171,-70r0,-27","w":299},"?":{"d":"109,-267v67,0,111,60,78,121v-12,23,-75,36,-69,78r-37,0v-6,-68,76,-58,79,-119v1,-31,-24,-47,-55,-47v-35,0,-57,19,-57,55r-39,0v1,-56,42,-88,100,-88xm78,0r0,-43r42,0r0,43r-42,0","w":213},"@":{"d":"44,-91v-7,126,165,150,246,89r10,14v-30,23,-69,40,-117,40v-96,0,-164,-49,-164,-144v0,-105,72,-166,177,-166v83,0,146,42,146,121v0,67,-35,112,-99,116v-23,1,-37,-8,-36,-31v-19,48,-108,40,-108,-27v0,-51,34,-98,84,-97v23,0,36,9,43,26r10,-20r23,0r-27,111v0,11,5,19,17,17v43,-6,66,-45,67,-92v2,-63,-54,-104,-121,-102v-93,2,-146,57,-151,145xm127,-78v0,38,40,48,64,26v18,-17,21,-47,29,-73v-3,-18,-14,-33,-35,-32v-35,0,-58,40,-58,79","w":360},"A":{"d":"87,-108r102,0r-50,-111xm-2,0r123,-260r39,0r115,260r-38,0r-33,-74r-133,0r-34,74r-39,0","w":276,"k":{"\u201e":-7,"\u201a":-7,"\u2039":13,"\u2019":43,"\u2018":26,"\u201d":43,"\u201c":26,"\u0152":6,"\u00ab":13,"\u00d8":6,"y":6,"t":6,"Y":26,"W":13,"V":13,"U":6,"T":21,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,"-":8}},"B":{"d":"224,-75v2,-66,-97,-36,-157,-43r0,83v59,-6,155,21,157,-40xm217,-190v0,-59,-95,-30,-150,-37r0,75v56,-6,150,21,150,-38xm263,-76v4,106,-137,70,-233,76r0,-260v89,6,224,-29,223,66v0,32,-17,46,-41,57v31,6,50,26,51,61","w":279,"k":{"\u201e":6,"\u201a":6,"\u2019":6,"\u201d":6,"-":-10}},"C":{"d":"158,-28v49,0,88,-29,93,-72r39,0v-7,65,-60,107,-132,107v-85,0,-143,-53,-143,-137v0,-157,253,-190,272,-36r-39,0v-7,-41,-41,-66,-90,-66v-65,0,-104,38,-104,102v0,64,39,103,104,102","w":302,"k":{"\u2019":-10,"\u201d":-10,"-":-8}},"D":{"d":"292,-130v0,92,-45,130,-148,130r-114,0r0,-260r114,0v104,-4,148,38,148,130xm254,-130v0,-63,-28,-97,-98,-97r-89,0r0,194r89,0v70,4,98,-34,98,-97","w":307,"k":{"\u201e":33,"\u201a":33,"\u00c5":6,"Y":6,"W":-7,"V":6,"A":6,"-":-11}},"E":{"d":"30,0r0,-260r207,0r0,33r-170,0r0,77r159,0r0,34r-159,0r0,81r172,0r0,35r-209,0","w":255},"F":{"d":"30,0r0,-260r198,0r0,33r-161,0r0,77r143,0r0,35r-143,0r0,115r-37,0","w":232,"k":{"\u201e":66,"\u201a":66,"\u2019":-7,"\u201d":-7,"\u00e6":6,"\u00c5":13,"a":6,"A":13,";":15,":":15,".":58,",":58}},"G":{"d":"15,-130v0,-117,133,-174,223,-112v23,17,36,38,39,64r-38,0v-10,-36,-43,-54,-89,-54v-60,0,-97,40,-97,102v0,90,98,130,162,81v17,-14,28,-32,30,-56r-83,0r0,-34r117,0r0,139r-26,0r-3,-44v-19,31,-52,51,-101,51v-80,1,-134,-57,-134,-137","w":309,"k":{"Y":6,"T":6,"-":-8}},"H":{"d":"30,0r0,-260r37,0r0,105r158,0r0,-105r37,0r0,260r-37,0r0,-121r-158,0r0,121r-37,0","w":291,"k":{".":6,",":6}},"I":{"d":"32,0r0,-260r37,0r0,260r-37,0","w":101},"J":{"d":"95,7v-62,2,-91,-31,-88,-95r37,0v-1,39,11,62,49,61v45,0,52,-25,51,-73r0,-160r37,0r0,172v2,65,-28,93,-86,95","w":204,"k":{"\u201e":20,"\u201a":20,"-":6}},"K":{"d":"30,0r0,-260r37,0r0,134r151,-134r48,0r-124,108r124,152r-43,0r-106,-130r-50,44r0,86r-37,0","w":266,"k":{"\u201e":-11,"\u201a":-11,"\u2039":10,"\u2019":8,"\u2018":13,"\u201d":8,"\u201c":13,"\u0152":13,"\u00ab":10,"\u00d8":13,"\u00c5":6,"y":6,"Y":6,"W":6,"O":13,"C":13,"A":6,"-":18}},"L":{"d":"30,0r0,-260r37,0r0,225r159,0r0,35r-196,0","w":230,"k":{"\u2019":81,"\u2018":93,"\u201d":81,"\u201c":93,"\u0152":6,"\u00d8":6,"\u00c5":-7,"y":13,"Y":40,"W":13,"V":20,"T":33,"O":6,"A":-7,"-":6}},"M":{"d":"30,0r0,-260r55,0r101,227r103,-227r54,0r0,260r-36,0r3,-233r-106,233r-37,0r-103,-233r2,233r-36,0","w":373},"N":{"d":"30,0r0,-260r50,0r163,222r0,-222r36,0r0,260r-50,0r-163,-222r0,222r-36,0","w":309},"O":{"d":"158,-232v-65,0,-104,38,-104,102v0,64,39,102,104,102v65,0,104,-38,104,-102v0,-63,-39,-102,-104,-102xm158,7v-85,0,-143,-53,-143,-137v0,-84,58,-137,143,-137v85,0,142,53,142,137v0,84,-57,137,-142,137","w":315,"k":{"\u201e":40,"\u201a":40,"\u2019":6,"\u201d":6,"\u00c5":6,"Y":13,"X":13,"V":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"208,-182v0,-63,-83,-41,-141,-45r0,90v59,-3,141,16,141,-45xm245,-183v0,87,-93,77,-178,76r0,107r-37,0r0,-260v94,3,215,-23,215,77","w":256,"k":{"\u201e":93,"\u201a":93,"\u2039":6,"\u2019":-8,"\u2018":-13,"\u201d":-8,"\u201c":-13,"\u0153":13,"\u00ab":6,"\u00f8":13,"\u00e6":6,"\u00c5":31,"o":13,"e":6,"a":6,"A":31,";":10,":":10,".":79,"-":15,",":79}},"Q":{"d":"54,-130v0,79,65,117,144,97r-27,-22r20,-26r38,31v21,-15,34,-45,33,-80v0,-63,-39,-102,-104,-102v-65,0,-104,38,-104,102xm300,-130v-1,44,-16,82,-42,103r35,28r-21,27r-43,-36v-96,44,-214,-11,-214,-122v0,-84,58,-137,143,-137v85,0,143,53,142,137","w":315},"R":{"d":"222,-186v0,-64,-96,-37,-156,-43r0,85v60,-6,156,21,156,-42xm224,0v-15,-42,11,-112,-60,-112r-98,0r0,112r-36,0r0,-260v94,5,229,-26,229,71v0,36,-16,55,-45,64v58,1,30,85,53,125r-43,0","w":284,"k":{"y":-7,"e":6,".":-7,"-":10,",":-7}},"S":{"d":"249,-75v0,91,-145,100,-200,58v-20,-16,-31,-40,-31,-71r39,0v3,45,32,56,82,61v67,7,104,-68,27,-81v-60,-10,-140,-10,-140,-80v0,-84,132,-98,187,-57v18,14,27,35,27,61r-37,0v-4,-37,-28,-46,-70,-49v-46,-3,-87,30,-58,64v53,32,174,9,174,94","w":266},"T":{"d":"134,-226r0,226r-37,0r0,-226r-99,0r0,-34r235,0r0,34r-99,0","w":230,"k":{"\u201e":46,"\u201a":46,"\u203a":33,"\u2039":46,"\u0153":29,"\u00bb":33,"\u00ab":46,"\u00f8":29,"\u00e6":29,"\u00c5":21,"y":29,"w":29,"u":29,"s":23,"r":16,"o":29,"e":36,"c":29,"a":29,"C":6,"A":21,";":29,":":29,".":46,"-":33,",":46}},"U":{"d":"144,-28v109,0,72,-135,78,-232r37,0r0,163v0,70,-43,104,-115,104v-73,0,-114,-34,-115,-104r0,-163r37,0v6,97,-31,232,78,232","w":289,"k":{"\u00c5":6,"A":6}},"V":{"d":"112,0r-114,-260r39,0r96,227r96,-227r40,0r-115,260r-42,0","w":266,"k":{"\u201e":60,"\u201a":60,"\u203a":20,"\u2039":40,"\u2019":-10,"\u201d":-10,"\u0153":26,"\u0152":6,"\u00bb":20,"\u00ab":40,"\u00f8":26,"\u00e6":26,"\u00d8":6,"\u00c5":13,"y":6,"u":20,"o":26,"e":26,"a":26,"O":6,"A":13,";":18,":":18,".":53,"-":29,",":53}},"W":{"d":"89,0r-88,-260r39,0r72,228r71,-228r43,0r71,228r72,-228r39,0r-88,260r-43,0r-73,-224r-72,224r-43,0","w":409,"k":{"\u201e":60,"\u201a":60,"\u203a":6,"\u2039":20,"\u2019":-7,"\u201d":-7,"\u0153":13,"\u00bb":6,"\u00ab":20,"\u00f8":13,"\u00e6":13,"\u00c5":13,"u":6,"r":10,"o":13,"i":-7,"e":13,"a":13,"A":13,";":21,":":21,".":44,"-":21,",":44}},"X":{"d":"2,0r107,-133r-97,-127r46,0r73,99r79,-99r44,0r-102,126r105,134r-47,0r-81,-107r-80,107r-47,0","w":258,"k":{"\u201e":-13,"\u201a":-13,"\u2039":20,"\u2018":13,"\u201c":13,"\u0152":13,"\u00ab":20,"\u00d8":13,"e":6,"O":13,"C":13,"-":18}},"Y":{"d":"111,0r0,-108r-116,-152r44,0r90,121r90,-121r44,0r-115,152r0,108r-37,0","w":257,"k":{"\u201e":60,"\u201a":60,"\u203a":26,"\u2039":40,"\u0153":33,"\u0152":13,"\u00bb":26,"\u00ab":40,"\u00f8":33,"\u00e6":40,"\u00d8":13,"\u00c5":26,"u":21,"o":33,"e":40,"a":40,"O":13,"C":6,"A":26,";":38,":":38,".":48,"-":43,",":48}},"Z":{"d":"6,0r0,-36r187,-191r-175,0r0,-33r221,0r0,36r-184,188r187,0r0,36r-236,0","w":248,"k":{"\u2018":6,"\u201c":6,"-":6}},"[":{"d":"24,68r0,-328r86,0r0,28r-52,0r0,272r52,0r0,28r-86,0","w":116},"\\":{"d":"80,33r-98,-300r24,0r98,300r-24,0","w":100},"]":{"d":"93,-260r0,328r-86,0r0,-28r51,0r0,-272r-51,0r0,-28r86,0","w":116},"^":{"d":"196,-256r90,98r-32,0r-74,-74r-75,74r-31,0r89,-98r33,0","w":360},"_":{"d":"180,60r0,25r-180,0r0,-25r180,0"},"`":{"d":"89,-218r-50,-54r44,0r32,54r-26,0"},"a":{"d":"235,-2v-31,6,-60,1,-62,-28v-27,47,-158,53,-155,-23v2,-53,52,-56,104,-62v33,-3,50,-11,50,-25v-2,-24,-20,-29,-50,-29v-36,0,-56,8,-59,38r-37,0v3,-50,38,-68,93,-68v59,0,88,12,88,64r0,78v-2,23,8,31,28,27r0,28xm98,-25v47,0,84,-20,74,-74v-27,22,-116,0,-116,44v1,21,18,30,42,30","w":241},"b":{"d":"132,-165v-42,0,-70,27,-70,70v0,42,28,69,70,69v43,-1,70,-25,70,-69v0,-43,-26,-70,-70,-70xm239,-95v0,94,-126,134,-177,67r0,28r-35,0r0,-260r35,0r0,97v18,-21,39,-32,74,-33v60,-1,103,42,103,101","w":252},"c":{"d":"13,-96v0,-115,179,-143,200,-33r-36,0v-7,-23,-27,-38,-56,-38v-43,-1,-72,28,-72,71v0,78,119,96,129,24r37,0v-8,46,-44,79,-98,79v-61,0,-104,-43,-104,-103","w":230},"d":{"d":"120,-26v42,0,70,-27,70,-69v0,-43,-28,-70,-70,-70v-44,0,-70,27,-70,70v0,44,27,68,70,69xm13,-95v-10,-93,126,-135,177,-68r0,-97r36,0r0,260r-36,0r0,-28v-50,66,-187,27,-177,-67","w":252},"e":{"d":"189,-114v-3,-49,-75,-68,-114,-39v-12,9,-19,23,-22,39r136,0xm121,-199v67,0,108,41,105,110r-174,1v-7,67,109,84,130,28r41,0v-13,40,-51,67,-102,67v-63,0,-106,-41,-106,-103v0,-62,43,-103,106,-103","w":241,"k":{"x":6}},"f":{"d":"122,-226v-27,-6,-55,-3,-47,33r47,0r0,31r-47,0r0,162r-35,0r0,-162r-34,0r0,-31r34,0v-9,-58,27,-76,82,-64r0,31","w":117,"k":{"\u201e":20,"\u201a":20,"\u2019":-25,"\u2018":-25,"\u201d":-25,"\u201c":-25,"y":-27,"t":-20,";":-13,":":-13,".":6,",":6}},"g":{"d":"121,-167v-43,0,-71,28,-71,71v0,44,28,70,71,70v43,1,72,-27,72,-70v0,-44,-28,-71,-72,-71xm13,-96v0,-94,131,-136,177,-65r0,-32r36,0r0,168v-1,69,-35,93,-108,93v-51,1,-87,-19,-92,-62r39,0v5,22,24,31,53,31v52,1,74,-15,72,-65v-18,21,-39,32,-74,33v-60,1,-103,-42,-103,-101","w":251},"h":{"d":"132,-168v-42,0,-73,29,-72,70r0,98r-35,0r0,-260r35,0r0,101v20,-23,42,-39,80,-39v53,0,73,27,73,87r0,111r-35,0v-7,-64,26,-168,-46,-168","w":237},"i":{"d":"63,-218r-35,0r0,-42r35,0r0,42xm28,0r0,-193r35,0r0,193r-35,0","w":90},"j":{"d":"-15,36v25,1,44,-3,43,-27r0,-202r35,0r0,204v2,51,-29,60,-78,57r0,-32xm63,-218r-35,0r0,-42r35,0r0,42","w":90},"k":{"d":"28,0r0,-260r35,0r0,152r101,-85r52,0r-91,74r98,119r-47,0r-77,-98r-36,29r0,69r-35,0","w":213,"k":{"\u0153":6,"\u00f8":6,"\u00e6":6,"o":6,"e":13,"a":6}},"l":{"d":"28,0r0,-260r35,0r0,260r-35,0","w":90},"m":{"d":"60,-159v26,-46,132,-57,148,3v35,-60,156,-63,156,45r0,111r-35,0v-7,-64,26,-168,-46,-168v-42,0,-71,29,-71,70r0,98r-34,0v-7,-64,26,-168,-46,-168v-42,0,-73,29,-72,70r0,98r-35,0r0,-193r35,0r0,34","w":388},"n":{"d":"132,-168v-42,0,-73,29,-72,70r0,98r-35,0r0,-193r35,0r0,34v20,-23,42,-39,80,-39v53,0,73,27,73,87r0,111r-35,0v-7,-64,26,-168,-46,-168","w":237,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6}},"o":{"d":"121,-167v-43,0,-72,28,-72,71v0,42,29,70,72,70v43,0,71,-27,71,-70v0,-43,-28,-71,-71,-71xm121,7v-64,0,-108,-40,-108,-103v0,-63,44,-103,108,-103v65,0,108,41,108,103v0,62,-44,103,-108,103","w":241,"k":{"\u2018":6,"\u201c":6,"x":6,"-":-7}},"p":{"d":"132,-165v-43,0,-71,26,-71,69v0,43,29,69,71,69v43,0,70,-26,70,-69v0,-42,-27,-69,-70,-69xm239,-96v0,94,-127,134,-178,68r0,96r-35,0r0,-261r35,0r0,29v17,-20,40,-33,75,-33v60,0,103,42,103,101","w":252},"q":{"d":"120,-27v42,0,70,-27,70,-69v0,-42,-27,-69,-70,-69v-44,0,-70,26,-70,69v0,44,26,69,70,69xm13,-96v0,-93,127,-135,177,-68r0,-29r36,0r0,261r-36,0r0,-96v-18,21,-39,32,-74,33v-60,1,-103,-42,-103,-101","w":252},"r":{"d":"147,-159v-47,-16,-87,18,-87,65r0,94r-35,0r0,-193r35,0r0,33v16,-25,49,-46,87,-36r0,37","w":143,"k":{"\u201e":41,"\u201a":41,"\u2019":-28,"\u201d":-28,"v":-20,"n":-7,".":36,",":36}},"s":{"d":"189,-92v39,49,-14,105,-83,99v-57,-5,-90,-19,-95,-70r38,0v-1,49,108,53,117,10v-3,-31,-51,-25,-78,-32v-42,-11,-68,-12,-68,-52v0,-46,37,-62,87,-62v51,-1,87,18,88,64r-34,0v1,-44,-99,-48,-106,-9v6,44,109,21,134,52","w":212},"t":{"d":"128,4v-42,7,-82,3,-82,-41r0,-125r-34,0r0,-31r34,0r0,-49r35,0r0,49r47,0r0,31r-47,0r0,115v-3,27,27,22,47,19r0,32","w":134},"u":{"d":"107,-24v41,0,71,-30,71,-71r0,-98r35,0r0,193r-35,0r0,-33v-19,23,-41,36,-79,38v-97,6,-71,-109,-74,-198r35,0v7,65,-26,169,47,169","w":237},"v":{"d":"84,0r-88,-193r42,0r66,163r64,-163r40,0r-85,193r-39,0","w":204,"k":{".":28,",":28}},"w":{"d":"72,0r-73,-193r43,0r49,160r49,-160r40,0r46,160r52,-160r41,0r-74,193r-40,0r-46,-158r-47,158r-40,0","w":318,"k":{"\u201e":21,"\u201a":21,"\u2019":-20,"\u2018":-17,"\u201d":-20,"\u201c":-17,".":26,"-":-13,",":26}},"x":{"d":"-1,0r85,-98r-77,-95r47,0r55,74r57,-74r46,0r-82,95r86,98r-49,0r-58,-75r-65,75r-45,0","w":213,"k":{"\u0153":6,"\u00f8":6,"o":6,"e":6,"c":6}},"y":{"d":"208,-193r-105,232v-13,28,-42,32,-83,28r0,-33v35,7,59,-1,64,-34r-88,-193r42,0r66,163r64,-163r40,0","w":204,"k":{"\u201e":46,"\u201a":46,"\u2019":-20,"\u2018":-13,"\u201d":-20,"\u201c":-13,".":31,"-":6,",":31}},"z":{"d":"12,0r0,-35r143,-127r-136,0r0,-31r179,0r0,31r-140,131r144,0r0,31r-190,0","w":213},"{":{"d":"79,-197v-3,-55,22,-63,73,-63r0,27v-84,-17,-3,133,-78,140v42,5,36,52,36,100v0,35,9,40,42,40r0,26v-52,1,-76,-8,-73,-63v2,-48,5,-101,-49,-90r0,-27v52,10,51,-39,49,-90"},"|":{"d":"103,-275r0,360r-26,0r0,-360r26,0"},"}":{"d":"28,-260v50,0,76,8,73,63v-2,48,-4,101,50,90r0,27v-52,-10,-52,39,-50,90v3,55,-21,64,-73,63r0,-26v85,17,5,-132,78,-140v-41,-6,-35,-52,-35,-100v0,-34,-10,-40,-43,-40r0,-27"},"~":{"d":"269,-108v-33,26,-76,32,-122,12v-51,-22,-80,-8,-116,17r0,-28v20,-13,40,-24,68,-25v32,-1,75,24,102,24v29,0,46,-11,68,-27r0,27","w":299},"\u00c4":{"d":"87,-108r102,0r-50,-111xm-2,0r123,-260r39,0r115,260r-38,0r-33,-74r-133,0r-34,74r-39,0xm201,-293r-35,0r0,-40r35,0r0,40xm116,-293r-35,0r0,-40r35,0r0,40","w":276},"\u00c5":{"d":"142,-325v-11,0,-20,7,-20,17v0,11,9,18,20,18v11,0,20,-7,20,-18v1,-11,-9,-17,-20,-17xm142,-272v-26,0,-42,-12,-42,-36v0,-24,17,-36,42,-36v25,0,42,13,42,36v0,23,-17,36,-42,36xm87,-108r102,0r-50,-111xm-2,0r123,-260r39,0r115,260r-38,0r-33,-74r-133,0r-34,74r-39,0","w":276,"k":{"\u201e":-7,"\u201a":-7,"\u2039":13,"\u2019":43,"\u2018":26,"\u201d":43,"\u201c":26,"\u0152":6,"\u00ab":13,"\u00d8":6,"y":6,"t":6,"Y":26,"W":13,"V":13,"U":6,"T":21,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,"-":8}},"\u00c7":{"d":"158,-28v49,0,88,-29,93,-72r39,0v-7,65,-60,107,-132,107v-85,0,-143,-53,-143,-137v0,-157,253,-190,272,-36r-39,0v-7,-41,-41,-66,-90,-66v-65,0,-104,38,-104,102v0,64,39,103,104,102xm201,49v0,41,-62,33,-92,22r7,-15v16,5,53,15,55,-7v2,-21,-30,-6,-37,-17r18,-32r15,0r-13,22v22,-7,47,4,47,27","w":302},"\u00c9":{"d":"30,0r0,-260r207,0r0,33r-170,0r0,77r159,0r0,34r-159,0r0,81r172,0r0,35r-209,0xm112,-286r32,-54r44,0r-51,54r-25,0","w":255},"\u00d1":{"d":"30,0r0,-260r50,0r163,222r0,-222r36,0r0,260r-50,0r-163,-222r0,222r-36,0xm186,-291v-29,0,-67,-42,-78,-1r-22,0v-1,-34,33,-55,63,-37v18,6,49,26,52,-6r23,0v0,24,-15,44,-38,44","w":309},"\u00d6":{"d":"158,-232v-65,0,-104,38,-104,102v0,64,39,102,104,102v65,0,104,-38,104,-102v0,-63,-39,-102,-104,-102xm158,7v-85,0,-143,-53,-143,-137v0,-84,58,-137,143,-137v85,0,142,53,142,137v0,84,-57,137,-142,137xm218,-293r-35,0r0,-40r35,0r0,40xm133,-293r-35,0r0,-40r35,0r0,40","w":315},"\u00dc":{"d":"144,-28v109,0,72,-135,78,-232r37,0r0,163v0,70,-43,104,-115,104v-73,0,-114,-34,-115,-104r0,-163r37,0v6,97,-31,232,78,232xm205,-293r-35,0r0,-40r35,0r0,40xm120,-293r-35,0r0,-40r35,0r0,40","w":289},"\u00e1":{"d":"235,-2v-31,6,-60,1,-62,-28v-27,47,-158,53,-155,-23v2,-53,52,-56,104,-62v33,-3,50,-11,50,-25v-2,-24,-20,-29,-50,-29v-36,0,-56,8,-59,38r-37,0v3,-50,38,-68,93,-68v59,0,88,12,88,64r0,78v-2,23,8,31,28,27r0,28xm98,-25v47,0,84,-20,74,-74v-27,22,-116,0,-116,44v1,21,18,30,42,30xm96,-218r32,-54r44,0r-51,54r-25,0","w":241},"\u00e0":{"d":"235,-2v-31,6,-60,1,-62,-28v-27,47,-158,53,-155,-23v2,-53,52,-56,104,-62v33,-3,50,-11,50,-25v-2,-24,-20,-29,-50,-29v-36,0,-56,8,-59,38r-37,0v3,-50,38,-68,93,-68v59,0,88,12,88,64r0,78v-2,23,8,31,28,27r0,28xm98,-25v47,0,84,-20,74,-74v-27,22,-116,0,-116,44v1,21,18,30,42,30xm120,-218r-50,-54r44,0r32,54r-26,0","w":241},"\u00e2":{"d":"235,-2v-31,6,-60,1,-62,-28v-27,47,-158,53,-155,-23v2,-53,52,-56,104,-62v33,-3,50,-11,50,-25v-2,-24,-20,-29,-50,-29v-36,0,-56,8,-59,38r-37,0v3,-50,38,-68,93,-68v59,0,88,12,88,64r0,78v-2,23,8,31,28,27r0,28xm98,-25v47,0,84,-20,74,-74v-27,22,-116,0,-116,44v1,21,18,30,42,30xm121,-252r-31,34r-37,0r48,-54r40,0r48,54r-37,0","w":241},"\u00e4":{"d":"235,-2v-31,6,-60,1,-62,-28v-27,47,-158,53,-155,-23v2,-53,52,-56,104,-62v33,-3,50,-11,50,-25v-2,-24,-20,-29,-50,-29v-36,0,-56,8,-59,38r-37,0v3,-50,38,-68,93,-68v59,0,88,12,88,64r0,78v-2,23,8,31,28,27r0,28xm98,-25v47,0,84,-20,74,-74v-27,22,-116,0,-116,44v1,21,18,30,42,30xm181,-225r-35,0r0,-40r35,0r0,40xm96,-225r-35,0r0,-40r35,0r0,40","w":241},"\u00e3":{"d":"235,-2v-31,6,-60,1,-62,-28v-27,47,-158,53,-155,-23v2,-53,52,-56,104,-62v33,-3,50,-11,50,-25v-2,-24,-20,-29,-50,-29v-36,0,-56,8,-59,38r-37,0v3,-50,38,-68,93,-68v59,0,88,12,88,64r0,78v-2,23,8,31,28,27r0,28xm98,-25v47,0,84,-20,74,-74v-27,22,-116,0,-116,44v1,21,18,30,42,30xm152,-223v-29,0,-67,-42,-78,-1r-22,0v-1,-34,33,-55,63,-37v18,6,49,26,52,-6r23,0v0,24,-15,44,-38,44","w":241},"\u00e5":{"d":"122,-264v-12,0,-19,6,-19,17v-1,11,8,18,19,18v11,0,20,-7,20,-18v0,-11,-8,-17,-20,-17xm122,-211v-24,0,-40,-13,-41,-36v0,-23,17,-36,41,-36v25,0,42,12,42,36v0,24,-17,36,-42,36xm235,-2v-31,6,-60,1,-62,-28v-27,47,-158,53,-155,-23v2,-53,52,-56,104,-62v33,-3,50,-11,50,-25v-2,-24,-20,-29,-50,-29v-36,0,-56,8,-59,38r-37,0v3,-50,38,-68,93,-68v59,0,88,12,88,64r0,78v-2,23,8,31,28,27r0,28xm98,-25v47,0,84,-20,74,-74v-27,22,-116,0,-116,44v1,21,18,30,42,30","w":241},"\u00e7":{"d":"13,-96v0,-115,179,-143,200,-33r-36,0v-7,-23,-27,-38,-56,-38v-43,-1,-72,28,-72,71v0,78,119,96,129,24r37,0v-8,46,-44,79,-98,79v-61,0,-104,-43,-104,-103xm159,49v0,41,-62,33,-92,22r7,-15v16,5,53,15,55,-7v2,-21,-30,-6,-37,-17r18,-32r15,0r-13,22v22,-7,47,4,47,27","w":230},"\u00e9":{"d":"189,-114v-3,-49,-75,-68,-114,-39v-12,9,-19,23,-22,39r136,0xm121,-199v67,0,108,41,105,110r-174,1v-7,67,109,84,130,28r41,0v-13,40,-51,67,-102,67v-63,0,-106,-41,-106,-103v0,-62,43,-103,106,-103xm101,-218r32,-54r44,0r-51,54r-25,0","w":241},"\u00e8":{"d":"189,-114v-3,-49,-75,-68,-114,-39v-12,9,-19,23,-22,39r136,0xm121,-199v67,0,108,41,105,110r-174,1v-7,67,109,84,130,28r41,0v-13,40,-51,67,-102,67v-63,0,-106,-41,-106,-103v0,-62,43,-103,106,-103xm125,-218r-50,-54r44,0r32,54r-26,0","w":241},"\u00ea":{"d":"189,-114v-3,-49,-75,-68,-114,-39v-12,9,-19,23,-22,39r136,0xm121,-199v67,0,108,41,105,110r-174,1v-7,67,109,84,130,28r41,0v-13,40,-51,67,-102,67v-63,0,-106,-41,-106,-103v0,-62,43,-103,106,-103xm126,-252r-31,34r-37,0r48,-54r40,0r48,54r-37,0","w":241},"\u00eb":{"d":"189,-114v-3,-49,-75,-68,-114,-39v-12,9,-19,23,-22,39r136,0xm121,-199v67,0,108,41,105,110r-174,1v-7,67,109,84,130,28r41,0v-13,40,-51,67,-102,67v-63,0,-106,-41,-106,-103v0,-62,43,-103,106,-103xm186,-225r-35,0r0,-40r35,0r0,40xm101,-225r-35,0r0,-40r35,0r0,40","w":241},"\u00ed":{"d":"28,0r0,-193r35,0r0,193r-35,0xm20,-218r32,-54r44,0r-51,54r-25,0","w":90},"\u00ec":{"d":"28,0r0,-193r35,0r0,193r-35,0xm44,-218r-50,-54r44,0r32,54r-26,0","w":90},"\u00ee":{"d":"28,0r0,-193r35,0r0,193r-35,0xm45,-252r-31,34r-37,0r48,-54r40,0r48,54r-37,0","w":90},"\u00ef":{"d":"28,0r0,-193r35,0r0,193r-35,0xm105,-225r-35,0r0,-40r35,0r0,40xm20,-225r-35,0r0,-40r35,0r0,40","w":90},"\u00f1":{"d":"132,-168v-42,0,-73,29,-72,70r0,98r-35,0r0,-193r35,0r0,34v20,-23,42,-39,80,-39v53,0,73,27,73,87r0,111r-35,0v-7,-64,26,-168,-46,-168xm150,-223v-29,0,-67,-42,-78,-1r-22,0v-1,-34,33,-55,63,-37v18,6,49,26,52,-6r23,0v0,24,-15,44,-38,44","w":237},"\u00f3":{"d":"121,-167v-43,0,-72,28,-72,71v0,42,29,70,72,70v43,0,71,-27,71,-70v0,-43,-28,-71,-71,-71xm121,7v-64,0,-108,-40,-108,-103v0,-63,44,-103,108,-103v65,0,108,41,108,103v0,62,-44,103,-108,103xm96,-218r32,-54r44,0r-51,54r-25,0","w":241},"\u00f2":{"d":"121,-167v-43,0,-72,28,-72,71v0,42,29,70,72,70v43,0,71,-27,71,-70v0,-43,-28,-71,-71,-71xm121,7v-64,0,-108,-40,-108,-103v0,-63,44,-103,108,-103v65,0,108,41,108,103v0,62,-44,103,-108,103xm120,-218r-50,-54r44,0r32,54r-26,0","w":241},"\u00f4":{"d":"121,-167v-43,0,-72,28,-72,71v0,42,29,70,72,70v43,0,71,-27,71,-70v0,-43,-28,-71,-71,-71xm121,7v-64,0,-108,-40,-108,-103v0,-63,44,-103,108,-103v65,0,108,41,108,103v0,62,-44,103,-108,103xm121,-252r-31,34r-37,0r48,-54r40,0r48,54r-37,0","w":241},"\u00f6":{"d":"121,-167v-43,0,-72,28,-72,71v0,42,29,70,72,70v43,0,71,-27,71,-70v0,-43,-28,-71,-71,-71xm121,7v-64,0,-108,-40,-108,-103v0,-63,44,-103,108,-103v65,0,108,41,108,103v0,62,-44,103,-108,103xm181,-225r-35,0r0,-40r35,0r0,40xm96,-225r-35,0r0,-40r35,0r0,40","w":241},"\u00f5":{"d":"121,-167v-43,0,-72,28,-72,71v0,42,29,70,72,70v43,0,71,-27,71,-70v0,-43,-28,-71,-71,-71xm121,7v-64,0,-108,-40,-108,-103v0,-63,44,-103,108,-103v65,0,108,41,108,103v0,62,-44,103,-108,103xm152,-223v-29,0,-67,-42,-78,-1r-22,0v-1,-34,33,-55,63,-37v18,6,49,26,52,-6r23,0v0,24,-15,44,-38,44","w":241},"\u00fa":{"d":"107,-24v41,0,71,-30,71,-71r0,-98r35,0r0,193r-35,0r0,-33v-19,23,-41,36,-79,38v-97,6,-71,-109,-74,-198r35,0v7,65,-26,169,47,169xm94,-218r32,-54r44,0r-51,54r-25,0","w":237},"\u00f9":{"d":"107,-24v41,0,71,-30,71,-71r0,-98r35,0r0,193r-35,0r0,-33v-19,23,-41,36,-79,38v-97,6,-71,-109,-74,-198r35,0v7,65,-26,169,47,169xm118,-218r-50,-54r44,0r32,54r-26,0","w":237},"\u00fb":{"d":"107,-24v41,0,71,-30,71,-71r0,-98r35,0r0,193r-35,0r0,-33v-19,23,-41,36,-79,38v-97,6,-71,-109,-74,-198r35,0v7,65,-26,169,47,169xm119,-252r-31,34r-37,0r48,-54r40,0r48,54r-37,0","w":237},"\u00fc":{"d":"107,-24v41,0,71,-30,71,-71r0,-98r35,0r0,193r-35,0r0,-33v-19,23,-41,36,-79,38v-97,6,-71,-109,-74,-198r35,0v7,65,-26,169,47,169xm179,-225r-35,0r0,-40r35,0r0,40xm94,-225r-35,0r0,-40r35,0r0,40","w":237},"\u2020":{"d":"103,-146r-82,0r0,-32r82,0r0,-82r34,0r0,82r81,0r0,32r-81,0r0,213r-34,0r0,-213","w":239},"\u00b0":{"d":"59,-171v17,0,34,-17,34,-34v0,-18,-16,-36,-34,-34v-18,-2,-34,16,-34,34v0,17,17,34,34,34xm9,-205v0,-28,23,-51,50,-51v27,0,51,24,51,51v0,27,-24,50,-51,50v-27,0,-50,-22,-50,-50","w":118},"\u00a2":{"d":"108,-172v-55,2,-76,77,-43,117v10,12,24,19,43,22r0,-139xm126,-33v29,-3,48,-18,52,-45r37,0v-7,45,-41,75,-89,78r0,35r-18,0r0,-35v-54,-2,-95,-45,-95,-103v0,-59,39,-98,95,-102r0,-33r18,0r0,32v46,3,79,29,87,71r-36,0v-7,-23,-24,-36,-51,-38r0,140","w":240},"\u00a3":{"d":"65,-33v49,-21,117,24,155,-14r12,33v-45,52,-145,-21,-196,21r-21,-32v36,-7,53,-52,34,-88r-34,0r0,-24r25,0v-34,-65,17,-123,94,-123v59,0,93,29,95,85r-35,0v-3,-35,-22,-54,-61,-54v-54,0,-82,48,-56,92r81,0r0,24r-70,0v16,32,-2,64,-23,80","w":240},"\u00a7":{"d":"72,-155v-19,8,-33,34,-14,51v25,22,79,31,111,49v17,-7,31,-36,14,-51v-27,-24,-77,-31,-111,-49xm188,-43v43,43,-1,102,-71,102v-52,0,-86,-22,-89,-69v12,1,27,-2,37,1v1,28,24,35,55,37v36,3,61,-25,38,-50v-45,-29,-143,-26,-143,-95v0,-29,15,-40,38,-51v-43,-40,4,-104,66,-99v49,4,85,20,84,67r-36,0v-2,-26,-20,-35,-50,-35v-25,0,-44,7,-44,28v0,43,158,40,151,114v-3,26,-16,41,-36,50","w":239},"\u2022":{"d":"106,-82v-28,0,-52,-24,-52,-52v0,-28,24,-52,52,-52v28,0,52,24,52,52v0,28,-24,52,-52,52","w":212},"\u00b6":{"d":"12,-199v0,-71,84,-62,156,-61r0,15r-21,0r0,245r-19,0r0,-245r-31,0r0,245r-20,0r0,-137v-37,-1,-65,-24,-65,-62"},"\u00df":{"d":"117,-230v-45,1,-57,16,-57,62r0,168r-35,0r0,-180v0,-56,32,-80,88,-80v52,0,92,17,92,64v0,30,-16,46,-39,54v90,24,50,146,-37,146v-12,0,-22,-2,-33,-4r0,-29v43,9,85,-4,85,-48v0,-44,-34,-50,-83,-48r0,-30v38,2,72,-2,71,-37v0,-27,-22,-39,-52,-38","w":230,"k":{"\u2018":6,"\u201c":6,"-":-13}},"\u00ae":{"d":"186,-160v0,-29,-31,-26,-60,-26r0,49v27,0,60,4,60,-23xm215,-163v0,22,-14,36,-34,39r33,67r-31,0r-30,-63r-27,0r0,63r-28,0r0,-147v52,0,117,-8,117,41xm149,-15v66,0,113,-43,113,-112v0,-69,-44,-113,-112,-113v-68,0,-113,46,-113,112v0,66,46,113,112,113xm21,-128v0,-76,50,-129,129,-129v79,0,130,53,130,129v0,78,-53,130,-130,130v-77,0,-129,-52,-129,-130","w":299},"\u00a9":{"d":"81,-129v0,-61,63,-100,111,-65v11,9,18,21,19,35r-26,0v-4,-17,-16,-29,-36,-29v-28,1,-40,28,-39,60v-11,59,66,80,77,28r25,0v-2,31,-29,51,-62,51v-45,0,-69,-33,-69,-80xm150,-15v66,0,112,-45,112,-113v0,-67,-45,-112,-112,-112v-68,0,-113,46,-113,112v0,66,47,113,113,113xm30,-79v-33,-92,28,-178,120,-178v79,0,125,52,130,129v6,115,-147,170,-221,91v-12,-12,-23,-26,-29,-42","w":299},"\u2122":{"d":"169,-256r27,67r25,-67r26,0r0,94r-17,0r0,-78r-29,78r-10,0r-31,-78r0,78r-17,0r0,-94r26,0xm122,-256r0,14r-30,0r0,80r-19,0r0,-80r-30,0r0,-14r79,0","w":299},"\u00b4":{"d":"65,-218r32,-54r44,0r-51,54r-25,0"},"\u00a8":{"d":"150,-225r-35,0r0,-40r35,0r0,40xm65,-225r-35,0r0,-40r35,0r0,40"},"\u2260":{"d":"231,-195r-33,41r57,0r0,24r-73,0r-36,46r109,0r0,24r-124,0r-44,55r-19,-15r33,-40r-56,0r0,-24r71,0r36,-46r-107,0r0,-24r123,0r44,-56","w":299},"\u00c6":{"d":"189,-108r0,-119r-27,0r-63,119r90,0xm5,0r134,-260r257,0r0,33r-170,0r0,77r159,0r0,35r-159,0r0,80r172,0r0,35r-209,0r0,-74r-107,0r-39,74r-38,0","w":415,"k":{"\u2019":16,"\u201d":16,"-":-7}},"\u00d8":{"d":"158,-232v-92,0,-131,99,-84,168r154,-147v-15,-14,-40,-21,-70,-21xm158,-27v90,6,132,-99,84,-170r-154,147v15,16,39,21,70,23xm158,7v-43,0,-73,-11,-97,-31r-32,31r-13,-14r31,-30v-19,-22,-31,-55,-32,-93v-1,-84,58,-138,143,-137v42,0,75,11,97,31r32,-32r14,14r-33,31v19,22,32,53,32,93v1,84,-57,139,-142,137","w":315,"k":{"\u201e":40,"\u201a":40,"\u2019":6,"\u201d":6,"\u00c5":6,"Y":13,"X":13,"V":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"\u221e":{"d":"248,-109v0,-34,-37,-55,-62,-30v-8,8,-16,22,-25,41v13,41,87,42,87,-11xm52,-106v0,33,38,56,62,30v8,-8,16,-22,25,-41v-13,-41,-87,-42,-87,11xm92,-176v30,0,41,19,56,46v14,-25,27,-46,57,-47v33,-1,56,34,56,69v0,37,-18,70,-53,68v-31,-2,-41,-19,-56,-45v-14,26,-26,45,-57,46v-33,1,-56,-33,-56,-68v0,-37,19,-69,53,-69","w":299},"\u00b1":{"d":"255,-30r0,25r-210,0r0,-25r210,0xm162,-210r0,60r93,0r0,25r-93,0r0,59r-25,0r0,-59r-92,0r0,-25r92,0r0,-60r25,0","w":299},"\u2264":{"d":"254,-28r0,24r-208,0r0,-24r208,0xm254,-186r-165,54r165,54r0,26r-208,-69r0,-22r208,-69r0,26","w":299},"\u2265":{"d":"254,-28r0,24r-208,0r0,-24r208,0xm254,-143r0,22r-208,69r0,-26r165,-54r-165,-54r0,-26","w":299},"\u00a5":{"d":"250,-253r-63,82r48,0r0,18r-62,0r-21,28r83,0r0,18r-98,0r0,107r-33,0r0,-107r-97,0r0,-18r82,0r-21,-28r-61,0r0,-18r47,0r-64,-82r43,0r88,118r88,-118r41,0","w":240},"\u00b5":{"d":"124,-21v-14,29,-76,31,-93,3r-19,93r-32,0r56,-263r32,0v-8,44,-21,81,-25,129v-3,41,52,46,71,20v23,-31,30,-102,42,-149r32,0r-32,152v0,11,8,13,19,11v-4,14,-1,30,-25,27v-17,-2,-22,-8,-26,-23","w":202},"\u2202":{"d":"86,-142v26,1,40,12,47,33v5,-33,16,-98,-20,-103v-11,-2,-33,21,-42,20v-8,1,-15,-6,-14,-13v1,-16,23,-29,43,-28v47,1,69,47,69,101v0,66,-30,135,-88,136v-36,1,-63,-30,-63,-66v0,-42,28,-81,68,-80xm80,-5v32,0,44,-43,44,-82v0,-25,-8,-42,-29,-42v-32,0,-44,44,-44,82v0,24,8,42,29,42","w":186},"\u2211":{"d":"10,-259r221,0r0,34r-169,0r118,126r-122,134r177,0r0,34r-231,0r0,-26r128,-141r-122,-130r0,-31","w":242},"\u220f":{"d":"27,-259r218,0r0,328r-42,0r0,-292r-134,0r0,292r-42,0r0,-328","w":272},"\u03c0":{"d":"-5,-137v7,-38,17,-50,59,-51r156,0r-6,28r-32,0r-24,118v-3,21,19,21,36,17r-6,25v-38,11,-70,-8,-59,-53v6,-27,15,-77,21,-107r-57,0r-34,160r-32,0r35,-160v-19,-2,-28,6,-29,23r-28,0","w":211},"\u222b":{"d":"31,18v18,0,16,20,24,28v12,0,19,-40,21,-121v3,-96,-2,-189,71,-197v17,-2,32,10,32,26v0,12,-9,21,-21,20v-20,3,-17,-19,-25,-28v-13,0,-18,36,-21,109v-4,99,5,199,-72,210v-33,5,-46,-47,-9,-47","w":187},"\u00aa":{"d":"176,-127v-22,4,-45,3,-46,-19v-21,32,-118,37,-116,-17v2,-37,38,-38,77,-42v25,-2,38,-8,38,-18v-1,-18,-16,-20,-38,-20v-26,0,-42,4,-44,26r-27,0v2,-36,29,-48,69,-48v43,0,63,7,67,45v3,26,-15,80,20,74r0,19xm42,-163v0,37,89,20,87,-12r0,-20v-20,16,-87,0,-87,32","w":181},"\u00ba":{"d":"91,-242v-32,0,-54,19,-54,49v0,30,23,50,54,50v32,0,53,-19,53,-50v0,-31,-21,-49,-53,-49xm91,-121v-47,0,-82,-27,-81,-72v0,-45,35,-72,81,-72v46,0,80,26,80,72v0,46,-33,72,-80,72","w":181},"\u03a9":{"d":"258,-142v-1,56,-20,81,-53,111r56,0r0,31r-105,0r0,-31v37,-21,65,-59,66,-111v1,-54,-32,-93,-85,-93v-51,0,-84,40,-84,93v0,53,29,91,66,111r0,31r-105,0r0,-31r56,0v-33,-29,-52,-55,-53,-109v-1,-73,48,-126,120,-126v70,0,123,53,121,124","w":275},"\u00e6":{"d":"346,-114v-4,-69,-132,-69,-136,0r136,0xm101,-25v47,0,84,-20,74,-74v-27,22,-116,0,-116,44v1,21,18,30,42,30xm380,-60v-14,75,-155,90,-191,24v-27,51,-168,64,-168,-17v0,-46,37,-56,89,-59v30,-1,70,-11,65,-27v-2,-24,-20,-29,-50,-29v-36,0,-56,8,-59,38r-37,0v-7,-79,138,-89,173,-40v19,-19,40,-29,76,-29v68,1,108,42,105,110r-174,1v-7,68,109,85,130,28r41,0","w":398,"k":{"x":6}},"\u00f8":{"d":"167,-153v-59,-44,-153,21,-107,98xm73,-41v50,39,143,-1,117,-78v-2,-7,-6,-14,-10,-20xm229,-96v0,93,-117,132,-181,79r-26,25r-13,-15r25,-24v-13,-15,-21,-37,-21,-65v0,-93,116,-131,180,-81r27,-26r14,14r-28,26v13,17,23,38,23,67","w":241,"k":{"\u2018":6,"\u201c":6,"x":6,"-":-7}},"\u00bf":{"d":"17,-72v0,-68,77,-61,82,-120r36,0v10,66,-77,59,-79,119v0,30,24,47,56,47v35,-1,56,-20,57,-56r38,0v-1,56,-41,89,-99,89v-50,0,-91,-30,-91,-79xm138,-260r0,43r-41,0r0,-43r41,0","w":213},"\u00a1":{"d":"80,-260r0,43r-43,0r0,-43r43,0xm69,-195v6,62,10,126,8,195r-38,0v-1,-69,2,-133,8,-195r22,0","w":116},"\u00ac":{"d":"255,-151r0,88r-24,0r0,-64r-186,0r0,-24r210,0","w":299},"\u221a":{"d":"229,-292r0,17r-20,0r-104,282r-12,0r-56,-155r-22,8r-4,-14r49,-17r45,124r91,-245r33,0","w":229},"\u0192":{"d":"100,-112r-39,0r5,-25r39,0v13,-60,11,-145,98,-120r-6,32v-19,-4,-42,-6,-42,18r-14,70r41,0r-4,25r-42,0v-14,54,-17,134,-44,172v-11,16,-43,15,-67,9r6,-31v21,3,38,4,43,-19","w":240},"\u2248":{"d":"201,-76v30,-1,45,-11,68,-27r0,27v-20,15,-39,23,-68,25v-20,1,-81,-26,-102,-24v-29,3,-43,13,-68,28r0,-27v22,-14,40,-24,68,-26v22,-3,82,25,102,24xm201,-140v30,-2,44,-12,68,-28r0,28v-21,14,-40,23,-68,25v-20,2,-81,-26,-102,-24v-30,2,-43,12,-68,27r0,-27v20,-13,40,-23,68,-25v23,-2,82,25,102,24","w":299},"\u2206":{"d":"194,-31r-74,-191r-73,191r147,0xm140,-259r102,259r-243,0r102,-259r39,0","w":240},"\u00ab":{"d":"109,-117r64,-50r0,38r-42,33r42,32r0,39r-64,-50r0,-42xm25,-117r65,-50r0,38r-42,33r42,32r0,39r-65,-50r0,-42","w":200,"k":{"\u00c6":-27,"Y":26,"W":6,"V":20,"T":33,"J":-7}},"\u00bb":{"d":"91,-75r-64,50r0,-39r42,-32r-42,-33r0,-38r64,50r0,42xm175,-75r-65,50r0,-39r42,-32r-42,-33r0,-38r65,50r0,42","w":200,"k":{"\u00c5":13,"Y":40,"X":20,"W":20,"V":40,"T":46,"J":-13,"A":13}},"\u2026":{"d":"38,0r0,-43r44,0r0,43r-44,0xm158,0r0,-43r44,0r0,43r-44,0xm278,0r0,-43r44,0r0,43r-44,0","w":360},"\u00a0":{"w":240},"\u00c0":{"d":"87,-108r102,0r-50,-111xm-2,0r123,-260r39,0r115,260r-38,0r-33,-74r-133,0r-34,74r-39,0xm140,-286r-50,-54r44,0r32,54r-26,0","w":276},"\u00c3":{"d":"87,-108r102,0r-50,-111xm-2,0r123,-260r39,0r115,260r-38,0r-33,-74r-133,0r-34,74r-39,0xm172,-291v-29,0,-67,-42,-78,-1r-22,0v-1,-34,33,-55,63,-37v18,6,49,26,52,-6r23,0v0,24,-15,44,-38,44","w":276},"\u00d5":{"d":"158,-232v-65,0,-104,38,-104,102v0,64,39,102,104,102v65,0,104,-38,104,-102v0,-63,-39,-102,-104,-102xm158,7v-85,0,-143,-53,-143,-137v0,-84,58,-137,143,-137v85,0,142,53,142,137v0,84,-57,137,-142,137xm189,-291v-29,0,-67,-42,-78,-1r-22,0v-1,-34,33,-55,63,-37v18,6,49,26,52,-6r23,0v0,24,-15,44,-38,44","w":315},"\u0152":{"d":"147,-267v40,0,68,13,84,37r0,-30r206,0r0,33r-170,0r0,77r159,0r0,35r-159,0r0,80r172,0r0,35r-208,0r0,-30v-13,25,-45,36,-83,37v-81,1,-133,-55,-133,-137v0,-79,54,-138,132,-137xm154,-28v39,0,63,-19,77,-46r0,-112v-15,-27,-38,-46,-77,-46v-62,0,-100,39,-100,102v0,62,38,103,100,102","w":456},"\u0153":{"d":"398,-60v-13,74,-152,89,-189,27v-17,25,-47,40,-88,40v-64,0,-108,-40,-108,-103v0,-63,44,-105,108,-103v43,0,69,14,89,40v16,-25,46,-40,86,-40v68,1,108,42,105,110r-174,1v-7,67,110,84,130,28r41,0xm364,-114v-4,-49,-75,-69,-114,-39v-12,9,-19,22,-22,39r136,0xm121,-167v-43,0,-72,28,-72,71v0,42,29,70,72,70v43,0,71,-27,71,-70v0,-43,-28,-71,-71,-71","w":416,"k":{"x":6}},"\u2013":{"d":"0,-85r0,-23r180,0r0,23r-180,0"},"\u2014":{"d":"360,-108r0,23r-360,0r0,-23r360,0","w":360},"\u201c":{"d":"147,-243v-16,5,-21,15,-21,36r21,0r0,43r-43,0v-2,-51,-3,-93,43,-103r0,24xm77,-243v-15,5,-22,15,-21,36r21,0r0,43r-43,0v-1,-52,-2,-93,43,-103r0,24","w":177,"k":{"\u0152":15,"\u00d8":15,"\u00c6":50,"\u00c5":48,"r":6,"Y":-25,"X":-11,"W":-15,"V":-23,"T":-7,"O":15,"J":74,"A":48}},"\u201d":{"d":"100,-217r0,-43r44,0v1,52,1,93,-44,103r0,-23v16,-6,24,-17,21,-37r-21,0xm31,-217r0,-43r44,0v1,52,1,93,-44,103r0,-23v16,-6,24,-17,21,-37r-21,0","w":177},"\u2018":{"d":"77,-243v-15,5,-22,15,-21,36r21,0r0,43r-43,0v-1,-52,-2,-93,43,-103r0,24","w":108,"k":{"\u0152":15,"\u00d8":15,"\u00c6":50,"\u00c5":48,"r":6,"Y":-25,"X":-11,"W":-15,"V":-23,"T":-7,"O":15,"J":74,"A":48}},"\u2019":{"d":"31,-217r0,-43r44,0v1,52,1,93,-44,103r0,-23v16,-6,24,-17,21,-37r-21,0","w":108},"\u00f7":{"d":"128,-43v0,-12,11,-21,22,-22v12,0,22,10,22,22v0,12,-9,22,-22,22v-12,0,-23,-9,-22,-22xm255,-120r0,25r-210,0r0,-25r210,0xm128,-172v0,-12,10,-22,22,-22v12,0,23,9,22,22v0,12,-10,22,-22,22v-12,0,-21,-11,-22,-22","w":299},"\u25ca":{"d":"89,-248r-68,144r68,145r68,-145xm89,-291r88,187r-88,188r-88,-188","w":177},"\u00ff":{"d":"208,-193r-105,232v-13,28,-42,32,-83,28r0,-33v35,7,59,-1,64,-34r-88,-193r42,0r66,163r64,-163r40,0xm163,-225r-35,0r0,-40r35,0r0,40xm78,-225r-35,0r0,-40r35,0r0,40","w":204},"\u0178":{"d":"111,0r0,-108r-116,-152r44,0r90,121r90,-121r44,0r-115,152r0,108r-37,0xm189,-293r-35,0r0,-40r35,0r0,40xm104,-293r-35,0r0,-40r35,0r0,40","w":257},"\u2215":{"d":"-76,7r200,-267r28,0r-199,267r-29,0","w":76},"\u00a4":{"d":"110,-102v29,0,53,-25,53,-54v0,-29,-23,-53,-53,-53v-30,0,-54,24,-54,53v0,29,25,54,54,54xm50,-111v-18,-20,-19,-68,0,-89r-36,-36r14,-14r37,36v20,-20,69,-20,89,0r36,-36r14,14r-36,36v19,21,19,68,0,89r36,36r-14,14r-36,-36v-21,21,-67,18,-89,0r-37,36r-14,-14","w":218},"\u2039":{"d":"25,-117r65,-50r0,38r-42,33r42,32r0,39r-65,-50r0,-42","w":116,"k":{"\u00c6":-27,"Y":26,"W":6,"V":20,"T":33,"J":-7}},"\u203a":{"d":"91,-75r-64,50r0,-39r42,-32r-42,-33r0,-38r64,50r0,42","w":116,"k":{"\u00c5":13,"Y":40,"X":20,"W":20,"V":40,"T":46,"J":-13,"A":13}},"\uf001":{"d":"122,-226v-27,-6,-55,-3,-47,33r47,0r0,31r-47,0r0,162r-35,0r0,-162r-34,0r0,-31r34,0v-9,-58,27,-76,82,-64r0,31xm148,0r0,-193r35,0r0,193r-35,0xm183,-218r-35,0r0,-42r35,0r0,42","w":211},"\uf002":{"d":"122,-226v-27,-6,-55,-3,-47,33r47,0r0,31r-47,0r0,162r-35,0r0,-162r-34,0r0,-31r34,0v-9,-58,27,-76,82,-64r0,31xm148,0r0,-260r35,0r0,260r-35,0","w":211},"\u2021":{"d":"103,-151r-82,0r0,-33r82,0r0,-76r33,0r0,76r82,0r0,33r-82,0r0,109r82,0r0,32r-82,0r0,77r-33,0r0,-77r-82,0r0,-32r82,0r0,-109","w":239},"\u00b7":{"d":"60,-100v-14,0,-27,-13,-27,-27v0,-14,13,-26,27,-26v14,0,26,12,26,26v0,15,-12,27,-26,27","w":119},"\u201a":{"d":"31,36v17,-5,24,-17,21,-36r-21,0r0,-43r44,0v1,52,1,93,-44,103r0,-24","w":108,"k":{"\uf002":-7,"\uf001":-7,"\u0152":20,"\u00d8":20,"\u00c6":-20,"\u00c5":-13,"w":21,"f":-7,"Y":60,"W":31,"V":60,"T":50,"O":20,"J":-7,"G":13,"C":20,"A":-13}},"\u201e":{"d":"100,36v17,-5,24,-17,21,-36r-21,0r0,-43r44,0v1,52,1,93,-44,103r0,-24xm31,36v17,-5,24,-17,21,-36r-21,0r0,-43r44,0v1,52,1,93,-44,103r0,-24","w":177,"k":{"\uf002":-7,"\uf001":-7,"\u0152":20,"\u00d8":20,"\u00c6":-20,"\u00c5":-13,"w":21,"f":-7,"Y":60,"W":31,"V":60,"T":50,"O":20,"J":-7,"G":13,"C":20,"A":-13}},"\u2030":{"d":"377,-110v-27,0,-36,19,-36,48v0,29,10,47,36,47v26,0,37,-18,37,-47v0,-30,-10,-48,-37,-48xm377,7v-41,0,-62,-27,-62,-69v0,-42,20,-69,62,-69v42,0,63,26,63,69v0,43,-22,69,-63,69xm232,-110v-27,0,-37,18,-37,48v0,29,10,47,37,47v26,0,36,-18,36,-47v0,-29,-9,-47,-36,-48xm232,7v-41,0,-63,-26,-63,-69v0,-43,21,-69,63,-69v42,0,62,27,62,69v0,42,-21,69,-62,69xm59,7r164,-267r26,0r-163,267r-27,0xm77,-238v-26,0,-36,18,-36,47v0,29,10,47,36,47v26,0,37,-18,37,-47v0,-29,-10,-47,-37,-47xm77,-122v-41,0,-62,-27,-62,-69v0,-42,21,-69,62,-69v41,0,63,26,63,69v0,43,-22,69,-63,69","w":455},"\u00c2":{"d":"87,-108r102,0r-50,-111xm-2,0r123,-260r39,0r115,260r-38,0r-33,-74r-133,0r-34,74r-39,0xm141,-320r-31,34r-37,0r48,-54r40,0r48,54r-37,0","w":276},"\u00ca":{"d":"30,0r0,-260r207,0r0,33r-170,0r0,77r159,0r0,34r-159,0r0,81r172,0r0,35r-209,0xm137,-320r-31,34r-37,0r48,-54r40,0r48,54r-37,0","w":255},"\u00c1":{"d":"87,-108r102,0r-50,-111xm-2,0r123,-260r39,0r115,260r-38,0r-33,-74r-133,0r-34,74r-39,0xm116,-286r32,-54r44,0r-51,54r-25,0","w":276},"\u00cb":{"d":"30,0r0,-260r207,0r0,33r-170,0r0,77r159,0r0,34r-159,0r0,81r172,0r0,35r-209,0xm197,-293r-35,0r0,-40r35,0r0,40xm112,-293r-35,0r0,-40r35,0r0,40","w":255},"\u00c8":{"d":"30,0r0,-260r207,0r0,33r-170,0r0,77r159,0r0,34r-159,0r0,81r172,0r0,35r-209,0xm136,-286r-50,-54r44,0r32,54r-26,0","w":255},"\u00cd":{"d":"32,0r0,-260r37,0r0,260r-37,0xm26,-286r32,-54r44,0r-51,54r-25,0","w":101},"\u00ce":{"d":"32,0r0,-260r37,0r0,260r-37,0xm51,-320r-31,34r-37,0r48,-54r40,0r48,54r-37,0","w":101},"\u00cf":{"d":"32,0r0,-260r37,0r0,260r-37,0xm111,-293r-35,0r0,-40r35,0r0,40xm26,-293r-35,0r0,-40r35,0r0,40","w":101},"\u00cc":{"d":"32,0r0,-260r37,0r0,260r-37,0xm50,-286r-50,-54r44,0r32,54r-26,0","w":101},"\u00d3":{"d":"158,-232v-65,0,-104,38,-104,102v0,64,39,102,104,102v65,0,104,-38,104,-102v0,-63,-39,-102,-104,-102xm158,7v-85,0,-143,-53,-143,-137v0,-84,58,-137,143,-137v85,0,142,53,142,137v0,84,-57,137,-142,137xm133,-286r32,-54r44,0r-51,54r-25,0","w":315},"\u00d4":{"d":"158,-232v-65,0,-104,38,-104,102v0,64,39,102,104,102v65,0,104,-38,104,-102v0,-63,-39,-102,-104,-102xm158,7v-85,0,-143,-53,-143,-137v0,-84,58,-137,143,-137v85,0,142,53,142,137v0,84,-57,137,-142,137xm158,-320r-31,34r-37,0r48,-54r40,0r48,54r-37,0","w":315},"\uf000":{"d":"205,-284v6,37,-31,78,-58,68v-2,-36,27,-63,58,-68xm224,-130v0,31,18,49,41,59v-21,43,-30,70,-72,77v-9,1,-35,-13,-45,-11v-9,-2,-37,13,-45,11v-54,-12,-79,-76,-83,-136v-3,-49,32,-86,79,-86v13,0,39,12,49,12v20,-7,58,-21,83,-6v10,6,19,12,28,22v-20,14,-35,28,-35,58","w":284},"\u00d2":{"d":"158,-232v-65,0,-104,38,-104,102v0,64,39,102,104,102v65,0,104,-38,104,-102v0,-63,-39,-102,-104,-102xm158,7v-85,0,-143,-53,-143,-137v0,-84,58,-137,143,-137v85,0,142,53,142,137v0,84,-57,137,-142,137xm157,-286r-50,-54r44,0r32,54r-26,0","w":315},"\u00da":{"d":"144,-28v109,0,72,-135,78,-232r37,0r0,163v0,70,-43,104,-115,104v-73,0,-114,-34,-115,-104r0,-163r37,0v6,97,-31,232,78,232xm120,-286r32,-54r44,0r-51,54r-25,0","w":289},"\u00db":{"d":"144,-28v109,0,72,-135,78,-232r37,0r0,163v0,70,-43,104,-115,104v-73,0,-114,-34,-115,-104r0,-163r37,0v6,97,-31,232,78,232xm145,-320r-31,34r-37,0r48,-54r40,0r48,54r-37,0","w":289},"\u00d9":{"d":"144,-28v109,0,72,-135,78,-232r37,0r0,163v0,70,-43,104,-115,104v-73,0,-114,-34,-115,-104r0,-163r37,0v6,97,-31,232,78,232xm144,-286r-50,-54r44,0r32,54r-26,0","w":289},"\u0131":{"d":"28,0r0,-193r35,0r0,193r-35,0","w":90},"\u02c6":{"d":"90,-252r-31,34r-37,0r48,-54r40,0r48,54r-37,0"},"\u02dc":{"d":"121,-223v-29,0,-67,-42,-78,-1r-22,0v-1,-34,33,-55,63,-37v18,6,49,26,52,-6r23,0v0,24,-15,44,-38,44"},"\u00af":{"d":"159,-232r-138,0r0,-27r138,0r0,27"},"\u02d8":{"d":"52,-271v0,30,76,35,76,0r24,0v3,52,-71,64,-106,39v-10,-7,-16,-22,-18,-39r24,0"},"\u02d9":{"d":"71,-226r0,-42r38,0r0,42r-38,0"},"\u02da":{"d":"90,-269v-11,0,-20,6,-20,17v0,11,9,18,20,18v11,0,20,-7,20,-18v0,-10,-10,-17,-20,-17xm90,-215v-25,0,-42,-12,-42,-36v0,-24,16,-36,42,-36v26,0,42,12,42,36v0,24,-17,36,-42,36"},"\u00b8":{"d":"136,49v0,41,-62,33,-92,22r7,-15v16,5,53,15,55,-7v2,-21,-30,-6,-37,-17r18,-32r15,0r-13,22v22,-7,47,4,47,27"},"\u02dd":{"d":"54,-218r28,-54r35,0r-45,54r-18,0xm99,-218r29,-54r34,0r-44,54r-19,0"},"\u02db":{"d":"61,47v1,-23,16,-33,33,-47r16,0v-12,11,-22,19,-23,37v-1,18,16,15,32,15r0,27v-32,1,-60,-2,-58,-32"},"\u02c7":{"d":"90,-239r31,-33r37,0r-48,54r-40,0r-48,-54r37,0"},"\u0141":{"d":"32,0r0,-106r-27,19r-13,-18r40,-28r0,-127r36,0r0,104r68,-46r12,18r-80,56r0,93r159,0r0,35r-195,0","w":232,"k":{"\u2019":81,"\u2018":93,"\u201d":81,"\u201c":93,"\u0152":6,"\u00d8":6,"\u00c5":-7,"y":13,"Y":40,"W":13,"V":20,"T":33,"O":6,"A":-7,"-":6}},"\u0142":{"d":"30,0r0,-110r-25,19r-11,-16r36,-26r0,-127r35,0r0,105r24,-16r11,15r-35,25r0,131r-35,0","w":94},"\u0160":{"d":"249,-75v0,91,-145,100,-200,58v-20,-16,-31,-40,-31,-71r39,0v3,45,32,56,82,61v67,7,104,-68,27,-81v-60,-10,-140,-10,-140,-80v0,-84,132,-98,187,-57v18,14,27,35,27,61r-37,0v-4,-37,-28,-46,-70,-49v-46,-3,-87,30,-58,64v53,32,174,9,174,94xm134,-307r31,-33r37,0r-48,54r-40,0r-48,-54r37,0","w":266},"\u0161":{"d":"189,-92v39,49,-14,105,-83,99v-57,-5,-90,-19,-95,-70r38,0v-1,49,108,53,117,10v-3,-31,-51,-25,-78,-32v-42,-11,-68,-12,-68,-52v0,-46,37,-62,87,-62v51,-1,87,18,88,64r-34,0v1,-44,-99,-48,-106,-9v6,44,109,21,134,52xm107,-239r31,-33r37,0r-48,54r-40,0r-48,-54r37,0","w":212},"\u017d":{"d":"6,0r0,-36r187,-191r-175,0r0,-33r221,0r0,36r-184,188r187,0r0,36r-236,0xm124,-307r31,-33r37,0r-48,54r-40,0r-48,-54r37,0","w":248},"\u017e":{"d":"12,0r0,-35r143,-127r-136,0r0,-31r179,0r0,31r-140,131r144,0r0,31r-190,0xm107,-239r31,-33r37,0r-48,54r-40,0r-48,-54r37,0","w":213},"\u00a6":{"d":"103,-72r0,134r-26,0r0,-134r26,0xm103,-252r0,134r-26,0r0,-134r26,0"},"\u00d0":{"d":"256,-130v0,-64,-29,-97,-99,-97r-89,0r0,77r89,0r0,23r-89,0r0,94r89,0v70,3,99,-34,99,-97xm294,-130v0,92,-45,130,-148,130r-114,0r0,-127r-32,0r0,-23r32,0r0,-110r114,0v104,-4,148,38,148,130","w":309,"k":{"\u201e":33,"\u201a":33,"\u00c5":6,"Y":6,"W":-7,"V":6,"A":6,"-":-11}},"\u00f0":{"d":"13,-88v0,-73,75,-110,149,-86v-9,-14,-19,-27,-31,-40r-66,26r-7,-17r59,-25r-22,-20r20,-20v12,9,22,19,33,30r48,-20r7,18r-41,16v36,43,67,77,67,138v0,59,-45,95,-108,95v-62,0,-108,-35,-108,-95xm121,-150v-41,0,-72,23,-72,62v0,39,30,62,72,62v42,0,72,-22,71,-62v0,-40,-30,-62,-71,-62","w":241},"\u00dd":{"d":"111,0r0,-108r-116,-152r44,0r90,121r90,-121r44,0r-115,152r0,108r-37,0xm104,-286r32,-54r44,0r-51,54r-25,0","w":257},"\u00fd":{"d":"208,-193r-105,232v-13,28,-42,32,-83,28r0,-33v35,7,59,-1,64,-34r-88,-193r42,0r66,163r64,-163r40,0xm78,-218r32,-54r44,0r-51,54r-25,0","w":204},"\u00de":{"d":"208,-131v0,-64,-82,-42,-141,-46r0,91v59,-3,141,15,141,-45xm245,-133v0,87,-92,78,-178,77r0,56r-37,0r0,-260r37,0r0,51v85,0,178,-11,178,76","w":256},"\u00fe":{"d":"132,-165v-43,0,-71,26,-71,69v0,43,29,69,71,69v43,0,70,-26,70,-69v0,-42,-27,-69,-70,-69xm239,-96v0,94,-127,134,-178,68r0,96r-35,0r0,-328r35,0r0,96v18,-21,40,-32,75,-33v60,-1,103,42,103,101","w":252},"\u2212":{"d":"255,-120r0,25r-210,0r0,-25r210,0","w":299},"\u00d7":{"d":"151,-125r83,-82r17,17r-83,83r83,82r-17,17r-83,-82r-82,82r-17,-17r82,-82r-82,-83r17,-17","w":299},"\u00b9":{"d":"23,-229v31,-1,53,-3,57,-28r18,0r0,156r-23,0r0,-110r-52,0r0,-18","w":158},"\u00b2":{"d":"79,-257v58,0,88,60,41,89v-19,12,-71,31,-79,46r100,0r0,21r-131,0v0,-59,78,-58,106,-94v12,-24,-11,-43,-37,-43v-25,0,-39,12,-40,36v-8,-1,-20,2,-26,-1v0,-37,26,-54,66,-54","w":158},"\u00b3":{"d":"79,-97v-42,-1,-67,-13,-67,-52r24,0v1,23,17,33,42,33v23,0,44,-8,44,-28v0,-25,-27,-28,-57,-27r0,-18v25,0,50,-1,50,-23v0,-38,-78,-32,-75,7v-8,-1,-21,3,-25,-2v1,-34,27,-51,64,-50v31,0,60,14,61,42v0,20,-12,31,-30,34v22,1,38,13,38,35v-1,33,-31,50,-69,49","w":158},"\u00bc":{"d":"320,0r0,-36r-83,0r0,-19r85,-89r21,0r0,91r27,0r0,17r-27,0r0,36r-23,0xm259,-53r61,0r2,-69xm76,7r199,-267r28,0r-199,267r-28,0xm22,-230v29,0,50,-5,54,-27r17,0r0,146r-22,0r0,-102r-49,0r0,-17","w":379},"\u00bd":{"d":"365,-100v1,50,-80,52,-98,80r95,0r0,20v-40,-2,-88,4,-124,-2v0,-60,91,-47,104,-98v0,-18,-19,-27,-39,-27v-23,0,-38,11,-38,33v-8,-1,-19,2,-25,-1v1,-34,26,-50,63,-50v34,0,62,13,62,45xm76,7r199,-267r28,0r-199,267r-28,0xm22,-230v29,0,50,-5,54,-27r17,0r0,146r-22,0r0,-102r-49,0r0,-17","w":379},"\u00be":{"d":"320,0r0,-36r-83,0r0,-19r85,-89r21,0r0,91r27,0r0,17r-27,0r0,36r-23,0xm259,-53r61,0r2,-69xm76,7r199,-267r28,0r-199,267r-28,0xm141,-153v3,48,-82,57,-114,34v-10,-8,-15,-21,-15,-37r22,0v1,22,17,31,41,31v23,1,41,-8,41,-27v1,-24,-29,-27,-54,-24r0,-17v24,1,48,-2,48,-22v0,-34,-77,-31,-72,7v-7,-1,-20,3,-23,-2v0,-33,25,-46,60,-47v31,0,59,12,59,40v0,19,-12,27,-29,31v22,2,35,13,36,33","w":379},"\u20a3":{"d":"30,0r0,-260r198,0r0,33r-161,0r0,77r143,0r0,35r-143,0r0,115r-37,0xm379,-159v-47,-16,-87,18,-87,65r0,94r-35,0r0,-193r35,0r0,33v16,-25,49,-46,87,-36r0,37","w":375},"\u011e":{"d":"15,-130v0,-117,133,-174,223,-112v23,17,36,38,39,64r-38,0v-10,-36,-43,-54,-89,-54v-60,0,-97,40,-97,102v0,90,98,130,162,81v17,-14,28,-32,30,-56r-83,0r0,-34r117,0r0,139r-26,0r-3,-44v-19,31,-52,51,-101,51v-80,1,-134,-57,-134,-137xm117,-339v0,30,76,35,76,0r24,0v3,52,-71,64,-106,39v-10,-7,-16,-22,-18,-39r24,0","w":309},"\u011f":{"d":"121,-167v-43,0,-71,28,-71,71v0,44,28,70,71,70v43,1,72,-27,72,-70v0,-44,-28,-71,-72,-71xm13,-96v0,-94,131,-136,177,-65r0,-32r36,0r0,168v-1,69,-35,93,-108,93v-51,1,-87,-19,-92,-62r39,0v5,22,24,31,53,31v52,1,74,-15,72,-65v-18,21,-39,32,-74,33v-60,1,-103,-42,-103,-101xm88,-271v0,30,76,35,76,0r24,0v3,52,-71,64,-106,39v-10,-7,-16,-22,-18,-39r24,0","w":251},"\u0130":{"d":"32,0r0,-260r37,0r0,260r-37,0xm32,-294r0,-42r38,0r0,42r-38,0","w":101},"\u015e":{"d":"249,-75v0,91,-145,100,-200,58v-20,-16,-31,-40,-31,-71r39,0v3,45,32,56,82,61v67,7,104,-68,27,-81v-60,-10,-140,-10,-140,-80v0,-84,132,-98,187,-57v18,14,27,35,27,61r-37,0v-4,-37,-28,-46,-70,-49v-46,-3,-87,30,-58,64v53,32,174,9,174,94xm180,49v0,41,-62,33,-92,22r7,-15v16,5,53,15,55,-7v2,-21,-30,-6,-37,-17r18,-32r15,0r-13,22v22,-7,47,4,47,27","w":266},"\u015f":{"d":"189,-92v39,49,-14,105,-83,99v-57,-5,-90,-19,-95,-70r38,0v-1,49,108,53,117,10v-3,-31,-51,-25,-78,-32v-42,-11,-68,-12,-68,-52v0,-46,37,-62,87,-62v51,-1,87,18,88,64r-34,0v1,-44,-99,-48,-106,-9v6,44,109,21,134,52xm153,49v0,41,-62,33,-92,22r7,-15v16,5,53,15,55,-7v2,-21,-30,-6,-37,-17r18,-32r15,0r-13,22v22,-7,47,4,47,27","w":212},"\u0106":{"d":"158,-28v49,0,88,-29,93,-72r39,0v-7,65,-60,107,-132,107v-85,0,-143,-53,-143,-137v0,-157,253,-190,272,-36r-39,0v-7,-41,-41,-66,-90,-66v-65,0,-104,38,-104,102v0,64,39,103,104,102xm135,-286r32,-54r44,0r-51,54r-25,0","w":302},"\u0107":{"d":"13,-96v0,-115,179,-143,200,-33r-36,0v-7,-23,-27,-38,-56,-38v-43,-1,-72,28,-72,71v0,78,119,96,129,24r37,0v-8,46,-44,79,-98,79v-61,0,-104,-43,-104,-103xm96,-218r32,-54r44,0r-51,54r-25,0","w":230},"\u010c":{"d":"158,-28v49,0,88,-29,93,-72r39,0v-7,65,-60,107,-132,107v-85,0,-143,-53,-143,-137v0,-157,253,-190,272,-36r-39,0v-7,-41,-41,-66,-90,-66v-65,0,-104,38,-104,102v0,64,39,103,104,102xm160,-307r31,-33r37,0r-48,54r-40,0r-48,-54r37,0","w":302},"\u010d":{"d":"13,-96v0,-115,179,-143,200,-33r-36,0v-7,-23,-27,-38,-56,-38v-43,-1,-72,28,-72,71v0,78,119,96,129,24r37,0v-8,46,-44,79,-98,79v-61,0,-104,-43,-104,-103xm121,-239r31,-33r37,0r-48,54r-40,0r-48,-54r37,0","w":230},"\u0111":{"d":"120,-26v42,0,70,-27,70,-69v0,-43,-28,-70,-70,-70v-44,0,-70,27,-70,70v0,43,27,69,70,69xm13,-95v0,-93,126,-135,177,-68r0,-54r-86,0r0,-20r86,0r0,-23r35,0r0,23r29,0r0,20r-29,0r0,217r-35,0r0,-28v-17,20,-39,34,-74,34v-59,1,-103,-42,-103,-101","w":253},"\u00ad":{"d":"17,-80r0,-32r132,0r0,32r-132,0","w":166},"\u2219":{"d":"60,-100v-14,0,-27,-13,-27,-27v0,-14,13,-26,27,-26v14,0,26,12,26,26v0,15,-12,27,-26,27","w":119}}});

/* -------------------------------------------------- *
 * ToggleVal 3.0
 * Updated: 01/15/2010
 * -------------------------------------------------- *
 * Author: Aaron Kuzemchak
 * URL: http://aaronkuzemchak.com/
 * Copyright: 2008-2010 Aaron Kuzemchak
 * License: MIT License
** -------------------------------------------------- */

;(function($) {
	// main plugin function
	$.fn.toggleVal = function(theOptions) {
		// check whether we want real options, or to destroy functionality
		if(!theOptions || typeof theOptions == 'object') {
			theOptions = $.extend({}, $.fn.toggleVal.defaults, theOptions);
		}
		else if(typeof theOptions == 'string' && theOptions.toLowerCase() == 'destroy') {
			var destroy = true;
		}
		
		return this.each(function() {
			// unbind everything if we're destroying, and stop executing the script
			if(destroy) {
				$(this).unbind('focus.toggleval').unbind('blur.toggleval').removeData('defText');
				return false;
			}
			
			// define our variables
			var defText = '';
			
			// let's populate the field, if not default
			switch(theOptions.populateFrom) {
				case 'title':
					if($(this).attr('title')) {
						defText = $(this).attr('title');
						$(this).val(defText);
					}
					break;
				case 'label':
					if($(this).attr('id')) {
						defText = $('label[for="' + $(this).attr('id') + '"]').text();
						$(this).val(defText);
					}
					break;
				case 'custom':
					defText = theOptions.text;
					$(this).val(defText);
					break;
				default:
					defText = $(this).val();
			}
			
			// let's give this field a special class, so we can identify it later
			// also, we'll give it a data attribute, which will help jQuery remember what the default value is
			$(this).addClass('toggleval').data('defText', defText);
			
			// now that fields are populated, let's remove the labels if applicable
			if(theOptions.removeLabels == true && $(this).attr('id')) {
				$('label[for="' + $(this).attr('id') + '"]').remove();
			}
			
			// on to the good stuff... the focus and blur actions
			$(this).bind('focus.toggleval', function() {
				if($(this).val() == $(this).data('defText')) { $(this).val(''); }
				
				// add the focusClass, remove changedClass
				$(this).addClass(theOptions.focusClass);
			}).bind('blur.toggleval', function() {
				if($(this).val() == '' && !theOptions.sticky) { $(this).val($(this).data('defText')); }
				
				// remove focusClass, add changedClass if, well, different
				$(this).removeClass(theOptions.focusClass);
				if($(this).val() != '' && $(this).val() != $(this).data('defText')) { $(this).addClass(theOptions.changedClass); }
					else { $(this).removeClass(theOptions.changedClass); }
			});
		});
	};
	
	// default options
	$.fn.toggleVal.defaults = {
		focusClass: 'tv-focused', // class during focus
		changedClass: 'tv-changed', // class after focus
		populateFrom: 'default', // choose from: default, label, custom, or title
		text: null, // text to use in conjunction with populateFrom: custom
		removeLabels: false, // remove labels associated with the fields
		sticky: false // if true, default text won't reappear
	};
	
	// create custom selectors
	// :toggleval for affected elements
	// :changed for changed elements
	$.extend($.expr[':'], {
		toggleval: function(elem) {
			return $(elem).data('defText') || false;
		},
		changed: function(elem) {
			if($(elem).data('defText') && $(elem).val() != $(elem).data('defText')) {
				return true;
			}
			return false;
		}
	});
})(jQuery);

function twitterCallback2(twitters) {
  var statusHTML = [];
  for (var i=0; i<twitters.length; i++){
    var username = twitters[i].user.screen_name;
    var status = twitters[i].text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g, function(url) {
      return '<a href="'+url+'">'+url+'</a>';
    }).replace(/\B@([_a-z0-9]+)/ig, function(reply) {
      return  reply.charAt(0)+'<a href="http://twitter.com/'+reply.substring(1)+'">'+reply.substring(1)+'</a>';
    });
    statusHTML.push('<li><span>'+status+'</span> <a style="font-size:85%" href="http://twitter.com/'+username+'/statuses/'+twitters[i].id_str+'">'+relative_time(twitters[i].created_at)+'</a></li>');
  }
  document.getElementById('twitter_update_list').innerHTML = statusHTML.join('');
}

function relative_time(time_value) {
  var values = time_value.split(" ");
  time_value = values[1] + " " + values[2] + ", " + values[5] + " " + values[3];
  var parsed_date = Date.parse(time_value);
  var relative_to = (arguments.length > 1) ? arguments[1] : new Date();
  var delta = parseInt((relative_to.getTime() - parsed_date) / 1000);
  delta = delta + (relative_to.getTimezoneOffset() * 60);

  if (delta < 60) {
    return 'less than a minute ago';
  } else if(delta < 120) {
    return 'about a minute ago';
  } else if(delta < (60*60)) {
    return (parseInt(delta / 60)).toString() + ' minutes ago';
  } else if(delta < (120*60)) {
    return 'about an hour ago';
  } else if(delta < (24*60*60)) {
    return 'about ' + (parseInt(delta / 3600)).toString() + ' hours ago';
  } else if(delta < (48*60*60)) {
    return '1 day ago';
  } else {
    return (parseInt(delta / 86400)).toString() + ' days ago';
  }
}
	
/*
 * jQuery BBQ: Back Button & Query Library - v1.2.1 - 2/17/2010
 * http://benalman.com/projects/jquery-bbq-plugin/
 * 
 * Copyright (c) 2010 "Cowboy" Ben Alman
 * Dual licensed under the MIT and GPL licenses.
 * http://benalman.com/about/license/
 */
;(function($,p){var i,m=Array.prototype.slice,r=decodeURIComponent,a=$.param,c,l,v,b=$.bbq=$.bbq||{},q,u,j,e=$.event.special,d="hashchange",A="querystring",D="fragment",y="elemUrlAttr",g="location",k="href",t="src",x=/^.*\?|#.*$/g,w=/^.*\#/,h,C={};function E(F){return typeof F==="string"}function B(G){var F=m.call(arguments,1);return function(){return G.apply(this,F.concat(m.call(arguments)))}}function n(F){return F.replace(/^[^#]*#?(.*)$/,"$1")}function o(F){return F.replace(/(?:^[^?#]*\?([^#]*).*$)?.*/,"$1")}function f(H,M,F,I,G){var O,L,K,N,J;if(I!==i){K=F.match(H?/^([^#]*)\#?(.*)$/:/^([^#?]*)\??([^#]*)(#?.*)/);J=K[3]||"";if(G===2&&E(I)){L=I.replace(H?w:x,"")}else{N=l(K[2]);I=E(I)?l[H?D:A](I):I;L=G===2?I:G===1?$.extend({},I,N):$.extend({},N,I);L=a(L);if(H){L=L.replace(h,r)}}O=K[1]+(H?"#":L||!K[1]?"?":"")+L+J}else{O=M(F!==i?F:p[g][k])}return O}a[A]=B(f,0,o);a[D]=c=B(f,1,n);c.noEscape=function(G){G=G||"";var F=$.map(G.split(""),encodeURIComponent);h=new RegExp(F.join("|"),"g")};c.noEscape(",/");$.deparam=l=function(I,F){var H={},G={"true":!0,"false":!1,"null":null};$.each(I.replace(/\+/g," ").split("&"),function(L,Q){var K=Q.split("="),P=r(K[0]),J,O=H,M=0,R=P.split("]["),N=R.length-1;if(/\[/.test(R[0])&&/\]$/.test(R[N])){R[N]=R[N].replace(/\]$/,"");R=R.shift().split("[").concat(R);N=R.length-1}else{N=0}if(K.length===2){J=r(K[1]);if(F){J=J&&!isNaN(J)?+J:J==="undefined"?i:G[J]!==i?G[J]:J}if(N){for(;M<=N;M++){P=R[M]===""?O.length:R[M];O=O[P]=M<N?O[P]||(R[M+1]&&isNaN(R[M+1])?{}:[]):J}}else{if($.isArray(H[P])){H[P].push(J)}else{if(H[P]!==i){H[P]=[H[P],J]}else{H[P]=J}}}}else{if(P){H[P]=F?i:""}}});return H};function z(H,F,G){if(F===i||typeof F==="boolean"){G=F;F=a[H?D:A]()}else{F=E(F)?F.replace(H?w:x,""):F}return l(F,G)}l[A]=B(z,0);l[D]=v=B(z,1);$[y]||($[y]=function(F){return $.extend(C,F)})({a:k,base:k,iframe:t,img:t,input:t,form:"action",link:k,script:t});j=$[y];function s(I,G,H,F){if(!E(H)&&typeof H!=="object"){F=H;H=G;G=i}return this.each(function(){var L=$(this),J=G||j()[(this.nodeName||"").toLowerCase()]||"",K=J&&L.attr(J)||"";L.attr(J,a[I](K,H,F))})}$.fn[A]=B(s,A);$.fn[D]=B(s,D);b.pushState=q=function(I,F){if(E(I)&&/^#/.test(I)&&F===i){F=2}var H=I!==i,G=c(p[g][k],H?I:{},H?F:2);p[g][k]=G+(/#/.test(G)?"":"#")};b.getState=u=function(F,G){return F===i||typeof F==="boolean"?v(F):v(G)[F]};b.removeState=function(F){var G={};if(F!==i){G=u();$.each($.isArray(F)?F:arguments,function(I,H){delete G[H]})}q(G,2)};e[d]=$.extend(e[d],{add:function(F){var H;function G(J){var I=J[D]=c();J.getState=function(K,L){return K===i||typeof K==="boolean"?l(I,K):l(I,L)[K]};H.apply(this,arguments)}if($.isFunction(F)){H=F;return G}else{H=F.handler;F.handler=G}}})})(jQuery,this);

/*
 * jQuery hashchange event - v1.3 - 7/21/2010
 * http://benalman.com/projects/jquery-hashchange-plugin/
 * 
 * Copyright (c) 2010 "Cowboy" Ben Alman
 * Dual licensed under the MIT and GPL licenses.
 * http://benalman.com/about/license/
 */
(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('<iframe tabindex="-1" title="empty"/>').hide().one("load",function(){r||l(a());n()}).attr("src",r||"javascript:0").insertAfter("body")[0].contentWindow;h.onpropertychange=function(){try{if(event.propertyName==="title"){q.document.title=h.title}}catch(s){}}}};j.stop=k;o=function(){return a(q.location.href)};l=function(v,s){var u=q.document,t=$.fn[c].domain;if(v!==s){u.title=h.title;u.open();t&&u.write('<script>document.domain="'+t+'"<\/script>');u.close();q.location.hash=v}}})();return j})()})(jQuery,this);

/*
 * Global image preloader
 * 
 * Copyright 2011 ThemeCatcher.net
 * All rights reserved
 * 
 */
window.preloadedImages = [];
window.preload = function (images) {
	for (var i in images) {
		var elem = document.createElement('img');
		elem.src = images[i];
		window.preloadedImages.push(elem);
	}
};

/*
 * Full screen background plugin
 * 
 * Copyright 2011 ThemeCatcher.net
 * All rights reserved
 * 
 */
;(function ($, window) {
	// Full screen background default settings
	var defaults = {
		speedIn: 3000,			// Speed of the "fade in" transition between background images, in milliseconds 1000 = 1 second
		speedOut: 3000,			// Speed of the "fade out" transition between background images
		sync: true,			    // If true, both fade animations occur simultaneously, otherwise "fade in" waits for "fade out" to complete
		minimiseSpeedIn: 1000,	// Speed that the website fades in, in full screen mode, in milliseconds
		minimiseSpeedOut: 1000, // Speed that the website fades out, in full screen mode, in milliseconds
		controlSpeedIn: 500,	// Speed that the controls fades in, in full screen mode, in milliseconds
		fadeIE: false,			// Whether or not to fade the website in IE 7,8
		preload: true,			// Whether or not to preload images
		save: true,				// Whether or not to save the current background across pages
		slideshow: true,		// Whether or not to use the slideshow functionality
		slideshowAuto: true,	// Whether or not to start the slideshow automatically
		slideshowSpeed: 7000,   // How long the slideshow stays on one image, in milliseconds
		random: false,			// Whether the images should be displayed in random order, forces save = false
		keyboard: true,			// Whether or not to use the keyboard controls, left arrow, right arrow and esc key
		onLoad: false,			// Callback when the current image starts loading
		onComplete: false		// Callback when the current image has completely loaded
	},
	
	// Wrappers & overlay
	$outer,
	$overlay,
	$stage,
	
	// Full screen controls
	$controlsWrap,
	$controls,
	$prev,
	$play,
	$next,
	$loadingWrap,
	$loading,
	$closeWrap,
	$close,
	
	// Storm footer controls
	$stormControls,
	$stormLoading,
	$stormPrev,
	$stormPlay,
	$stormNext,
	
	// Current image & window
	$image,
	$window = $(window),
	
	// Misc
	isIE = $.browser.msie && !$.support.opacity,
	backgrounds,
	total,
	imageCache = [],
	imageRatio,
	bodyOverflow,
	index = 0,
	active = false,
	settings,
	fullscreen;
	
	// Cache the images with given indices
	function cache()
	{
		$.each(arguments, function (i, cacheIndex) {
			if (typeof imageCache[cacheIndex] === 'undefined') {
				imageCache[cacheIndex] = document.createElement('img');
				imageCache[cacheIndex].src = backgrounds[cacheIndex];
			}
		});
	}
	
	// Randomly shuffle a given array
    function shuffle(array) {
        var tmp, current, top = array.length;

        if(top) while(--top) {
        	current = Math.floor(Math.random() * (top + 1));
        	tmp = array[current];
        	array[current] = array[top];
        	array[top] = tmp;
        }

        return array;
    }
    
    function trigger(event, callback) {
    	if (callback && typeof callback === 'function') {
    		callback.call();
    	}
    	
    	$.event.trigger(event);
    }
	
	// Initialisation
	function init() {
		// Create the div structure
		$outer = $('<div class="fullscreen-outer"></div>').append(
			$overlay = $('<div class="fullscreen-overlay"></div>'),
			$stage = $('<div class="fullscreen-stage"></div>')
		);
		
		$controlsWrap = $('<div class="fullscreen-controls-outer"></div>').append(
			$controls = $('<div class="fullscreen-controls"></div>').append(
				$prev = $('<div class="fullscreen-prev"></div>'),
				$play = $('<div class="fullscreen-play"></div>'),
				$next = $('<div class="fullscreen-next"></div>')
			),
			$loadingWrap = $('<div class="fullscreen-loading-wrap"></div>').append(
				$loading = $('<div class="fullscreen-loading"></div>')
			),
			$closeWrap = $('<div class="fullscreen-close-wrap"></div>').append(
				$close = $('<div class="fullscreen-close"></div>')
			)
		);
		
		$stormControls = $('<div class="storm-controls"></div>').append(
			$stormLoading = $('<div class="storm-loading"></div>'),
			$stormPrev = $('<div class="storm-prev"></div>'),
			$stormPlay = $('<div class="storm-play"></div>'),
			$stormNext = $('<div class="storm-next"></div>')
		);
		

		// Put the controls on the page
		$('.foot-right-col').after($stormControls);
		$('body').prepend($outer).append($controlsWrap);
		
		if (total > 1) {
			$controls.add($stormPrev).add($stormNext).show();
			fullscreen.bindKeyboard();
			
			if (settings.slideshow) {
				// Slideshow functionality
				
				var timeout,
				start,
				stop;
				
				start = function () {
					$.cookie('stormSlideshow', 'start');
					$play
						.bind('fullscreenComplete', function () {
							timeout = setTimeout(fullscreen.next, settings.slideshowSpeed);
						})
						.bind('fullscreenLoad', function () {						 
							clearTimeout(timeout);
						})
						.removeClass('fullscreen-play')
						.addClass('fullscreen-pause')
						.add($stormPlay)
						.unbind('click')
						.one('click', stop);
					$stormPlay
					 	.removeClass('storm-play')
					    .addClass('storm-pause');
					
					timeout = setTimeout(fullscreen.next, settings.slideshowSpeed);
				};
				
				stop = function () {
					$.cookie('stormSlideshow', 'stop');
					clearTimeout(timeout);
					$play
						.unbind('fullscreenLoad fullscreenComplete')
						.removeClass('fullscreen-pause')
						.addClass('fullscreen-play')
						.add($stormPlay)
						.unbind('click')
						.one('click', start);
					$stormPlay
					 	.removeClass('storm-pause')
					 	.addClass('storm-play');
				};
				
				if ($.cookie('stormSlideshow') === 'start') {
					start();
				} else if ($.cookie('stormSlideshow') === 'stop') {
					stop();
				} else {
					if (settings.slideshowAuto) {
						start();
					} else {
						stop();
					}
				}
				
				$play.add($stormPlay).show();
			}
		}
		
		// Bind the next button to load the next image
		$prev.add($stormPrev).click(function () {
			if (!active) {
				fullscreen.prev();
			} else {
				return false;
			}
		});
		
		// Bind the next button to load the next image
		$next.add($stormNext).click(function () {
			if (!active) {
				fullscreen.next();
			} else {
				return false;
			}
		});
		
		// Bind the close button to close it
		$closeWrap.click(fullscreen.close);
		
		// Save the current body overflow value
		bodyOverflow = $('body').css('overflow');
		
		$('#minimise-button').click(function (e) {
			e.preventDefault();
			$('body').css('overflow', 'hidden');			
			$('div.outside').fadeOut(settings.minimiseSpeedOut).hide(0, function () {
				$controlsWrap.fadeIn(settings.controlSpeedIn).show(0, function () {
					if (settings.keyboard) {
						$(document).bind('keydown.fullscreen', function (e) {
							if (e.keyCode === 27) {
								e.preventDefault();
								fullscreen.close();
							}
						});
					}
				});
			});
			$window.resize();
		});
		
		$window.resize(windowResize);
		
		if (settings.save) {
			// Check for the saved background cookie to override the default
			var savedBackground = $.cookie('stormSavedBackground');		
			for(var i = 0; i < total; i++) {
				if (i == savedBackground) {
					index = i;
					break;
				}
			}
		}
						
		// Fade in the first image, then cache one next image and one previous image
		load(function () {
			if (settings.preload) {
				cache((index == (total - 1)) ? 0 : index + 1, (index == 0) ? total - 1 : index - 1);
			}
		});
	};
	
	// Load the current image
	function load(callback) {
		var image = document.createElement('img'),
		loadingTimeout;
		$image = $(image).css('position', 'fixed');
		$image.load(function () {
			$image.unbind('load');
			setTimeout(function () { // Chrome will sometimes report a 0 by 0 size if there isn't pause in execution
				imageRatio = image.height / image.width;
				var $current = $stage.find('img');
				$stage.append($image);
				windowResize(function () {
					clearTimeout(loadingTimeout);
					$loadingWrap.add($stormLoading).hide();
					var fn = function () {
						$image.animate({ opacity: 'show' }, {
							duration: settings.speedIn,
							complete: function () {
								active = false;
								
								trigger('fullscreenComplete', settings.onComplete);
								
								if (typeof callback === 'function') {
									callback.call();
								}
							}
						});
					};
					
					if ($current.length) {
						$current.animate({ opacity: 'hide' }, {
							duration: settings.speedOut,
							complete: function () {
								if (!settings.sync) {
									fn();
								}
								$current.remove();
							}
						});
						
						if (settings.sync) {
							fn();
						}
					} else {
						fn();
					}
				});
			}, 1);
		});
		
		loadingTimeout = setTimeout(function () { $loadingWrap.add($stormLoading).fadeIn(); }, 200);
		trigger('fullscreenLoad', settings.onLoad);
		active = true;
		setTimeout(function () { // Opera 10.6+ will sometimes load the src before the onload function is set, so wait 1ms
			$image.attr('src', backgrounds[index]);
		}, 1);
	}
	
	// Resize the current image to set dimensions on window resize
	function windowResize(callback)
	{
		if ($image) {
			var windowWidth = $window.width(),
			windowHeight = $window.height();
						
			if ((windowHeight / windowWidth) > imageRatio) {
				$image.height(windowHeight).width(windowHeight / imageRatio);
			} else {
				$image.width(windowWidth).height(windowWidth * imageRatio);
			}
			
			$image.css({
				left: ((windowWidth - $image.width()) / 2) + 'px',
				top: ((windowHeight - $image.height()) / 2) + 'px'
			});
			
			if (typeof callback === 'function') {
				callback.call();
			}
		}
	}
	
	
	fullscreen = $.fullscreen = function (options) {
		settings = $.extend({}, defaults, options || {});
		
		backgrounds = settings.backgrounds;
		total = backgrounds.length;
		
		if (settings.random) {
			backgrounds = shuffle(backgrounds);
			settings.save = false;
		}

		if (typeof settings.backgroundIndex === 'number') {
			index = settings.backgroundIndex;
			settings.save = false;
		}
		
		if (isIE && !settings.fadeIE) {
			settings.minimiseSpeedOut = 0;
			settings.minimiseSpeedIn = 0;
			settings.controlSpeedIn = 0;
		}
		
		init();
	};
	
	fullscreen.close = function () {
		$controlsWrap.hide();
		$('div.outside').fadeIn(settings.minimiseSpeedIn);
		$('body').css('overflow', bodyOverflow);
		$(window).resize();
		fullscreen.unbindKeyboard();
	};
	
	fullscreen.next = function () {
		index = (index == (total - 1)) ? 0 : index + 1;
		load(function () {
			if (settings.preload) {
				cache((index == (total - 1)) ? 0 : index + 1); // Cache the next next image
			}
			
			if (settings.save) {
				$.cookie('stormSavedBackground', index, {expires: 365});
			}
		});
	};
	
	fullscreen.prev = function () {
		index = (index == 0) ? total - 1 : index - 1;
		load(function () {
			if (settings.preload) {
				cache((index == 0) ? total - 1 : index - 1); // Cache the next previous image
			}
			
			if (settings.save) {
				$.cookie('stormSavedBackground', index, {expires: 365});
			}
		});
	};
	
	fullscreen.bindKeyboard = function () {
		if (settings.keyboard) {
			$(document).bind('keydown.fullscreen', function (e) {
				if (!active) {
					if (e.keyCode === 37) {
						e.preventDefault();
						$prev.click();
					} else if (e.keyCode === 39) {
						e.preventDefault();
						$next.click();
					}
				}
			});
		}
	};
	
	fullscreen.unbindKeyboard = function () {
		if (settings.keyboard) {
			$(document).unbind('keydown.fullscreen');
		}
	};
	
	window.preload([
	    'images/loading.gif',
	    'images/backward1.png',
	    'images/play.png',
	    'images/play1.png',
	    'images/pause.png',
	    'images/pause1.png',
	    'images/forward1.png',
	    'images/close.png',
	    'images/close1.png'
	]);
	
	$(window).load(function () {
		// Preload one next image and one previous image
		if (settings.preload) {
			var previousIndex = (index == 0) ? total - 1 : index - 1;
			var nextIndex = (index == (total - 1)) ? 0 : index + 1;
			cache(previousIndex, nextIndex);
		}
	});
})(jQuery, window);

