/**
 * 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":530,"face":{"font-family":"TitilliumText22L-Thin","font-weight":100,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"750","descent":"-250","x-height":"9","bbox":"-49 -923 925 239","underline-thickness":"50","underline-position":"-50","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":235},"C":{"d":"489,-45r3,34v0,0,-106,20,-185,20v-206,0,-249,-134,-249,-356v0,-218,36,-362,249,-362v95,0,185,19,185,19r-3,35v0,0,-101,-20,-182,-20v-188,0,-211,129,-211,328v0,200,27,322,211,322v71,0,182,-20,182,-20","w":537},"c":{"d":"265,-509v38,0,120,10,120,10r-2,32v0,0,-80,-10,-118,-10v-128,0,-168,58,-168,216v0,172,26,238,168,238v38,0,120,-9,120,-9r2,32v0,0,-84,9,-122,9v-167,0,-205,-69,-205,-270v0,-185,56,-248,205,-248","w":437},"d":{"d":"437,-700r0,700r-35,0r0,-42v0,0,-82,51,-173,51v-62,0,-169,-9,-169,-252v0,-172,46,-266,210,-266v47,0,107,8,132,12r0,-203r35,0xm229,-23v86,0,173,-52,173,-52r0,-390v-26,-3,-93,-12,-132,-12v-142,0,-175,85,-175,237v0,199,78,217,134,217","w":538},"e":{"d":"249,-23v70,0,182,-9,182,-9r2,32v0,0,-112,9,-185,9v-149,-1,-188,-96,-188,-259v0,-198,88,-259,202,-259v133,0,198,91,190,273r-355,0v0,138,36,213,152,213xm97,-268r318,0v0,-153,-49,-209,-153,-209v-100,0,-165,57,-165,209","w":507},"f":{"d":"139,-468r0,468r-35,0r0,-468r-69,0r0,-32r69,0r0,-61v0,-144,36,-178,127,-178v35,0,92,3,92,3r0,31v0,0,-64,-2,-92,-2v-68,0,-92,27,-92,147r0,60r162,0r0,32r-162,0","w":328},"g":{"d":"253,239v-166,0,-198,-41,-198,-159v0,-66,31,-89,85,-128v-16,-10,-22,-34,-22,-65v0,-15,30,-78,30,-78v-46,-15,-86,-55,-86,-152v0,-119,64,-167,171,-167v54,0,106,13,106,13r140,-3r0,35r-108,0v25,23,40,53,40,122v0,146,-94,176,-236,160v0,0,-23,57,-23,70v0,49,6,54,137,54v124,0,177,20,177,144v0,108,-64,154,-213,154xm287,-27v-41,0,-121,-3,-121,-3v-58,40,-75,61,-75,109v0,95,25,128,163,128v124,0,175,-36,175,-122v0,-101,-41,-112,-142,-112xm229,-211v104,0,145,-32,145,-132v0,-113,-37,-135,-142,-135v-88,0,-134,32,-134,135v0,90,30,132,131,132","w":504},"h":{"d":"136,0r-35,0r0,-750r35,0r0,280v0,0,88,-39,174,-39v136,0,164,55,164,249r0,260r-35,0r0,-258v0,-170,-18,-219,-129,-219v-89,0,-174,40,-174,40r0,437","w":567},"i":{"d":"90,0r0,-500r35,0r0,500r-35,0xm90,-645r0,-55r35,0r0,55r-35,0","w":215},"j":{"d":"108,-6r0,-494r35,0r0,495v0,112,-30,157,-159,223r-14,-31v114,-62,138,-95,138,-193xm108,-645r0,-55r35,0r0,55r-35,0","w":233},"k":{"d":"136,0r-35,0r0,-730r35,0r0,438r94,0r182,-208r41,0r-192,226r192,274r-41,0r-182,-257r-94,0r0,257","w":483},"l":{"d":"95,0r0,-730r35,0r0,730r-35,0","w":225},"m":{"d":"300,-509v61,0,106,12,130,48v14,-6,108,-48,188,-48v136,0,164,55,164,249r0,260r-35,0r0,-258v0,-170,-18,-219,-129,-219v-87,0,-168,46,-172,49v31,99,14,293,18,428r-35,0r0,-258v0,-170,-18,-219,-129,-219v-89,0,-164,50,-164,50r0,427r-35,0r0,-500r35,0r0,40v0,0,78,-49,164,-49","w":875},"A":{"d":"35,0r215,-700r106,0r213,698r-36,0r-67,-213r-328,0r-67,215r-36,0xm275,-666r-127,417r308,0r-127,-417r-54,0","w":604},"p":{"d":"101,230r0,-730r35,0r0,42v0,0,82,-51,173,-51v122,0,171,81,171,252v0,185,-57,266,-212,266v-54,0,-109,-9,-132,-14r0,235r-35,0xm309,-477v-86,0,-173,53,-173,53r0,387v22,4,78,14,132,14v129,0,175,-65,175,-237v0,-159,-48,-217,-134,-217","w":540},"q":{"d":"240,9v-136,0,-180,-86,-180,-248v0,-187,52,-270,228,-270v48,0,149,9,149,9r0,730r-35,0r0,-259v0,0,-73,38,-162,38xm289,-477v-157,0,-192,77,-192,236v0,140,32,218,143,218v89,0,162,-40,162,-40r0,-408v0,0,-78,-6,-113,-6","w":538},"r":{"d":"101,0r0,-500r35,0r0,78v0,0,88,-67,198,-88r0,34v-98,19,-198,87,-198,87r0,389r-35,0","w":354},"s":{"d":"403,-494r-2,33v0,0,-102,-16,-170,-16v-64,0,-134,19,-134,100v0,62,27,81,142,99v131,21,182,40,182,134v0,117,-72,153,-190,153v-57,0,-165,-16,-165,-16r4,-33v0,0,108,17,159,17v94,0,155,-22,155,-118v0,-72,-36,-86,-155,-104v-117,-18,-169,-37,-169,-130v0,-106,90,-134,171,-134v77,0,172,15,172,15","w":483},"u":{"d":"421,-500r35,0r0,500r-35,0r0,-40v0,0,-78,49,-164,49v-136,0,-164,-55,-164,-249r0,-260r35,0r0,258v0,170,18,219,129,219v89,0,164,-50,164,-50r0,-427","w":557},"w":{"d":"38,-500r37,0r127,468r11,0r148,-458r39,0r147,458r11,0r128,-468r37,0r-137,500r-68,0r-138,-448r-139,448r-68,0","w":761},"y":{"d":"35,-500r37,0r147,468r41,0r148,-468r37,0r-229,730r-37,0r72,-230r-61,0","w":480},"z":{"d":"55,-468r0,-32r371,0r0,32r-328,436r328,0r0,32r-371,0r0,-32r328,-436r-328,0","w":481},"Z":{"d":"60,-666r0,-34r450,0r0,70r-413,575r0,22r413,0r0,34r-450,0r0,-69r413,-574r0,-24r-413,0","w":570},"0":{"d":"264,-670v150,0,231,68,231,354v0,255,-88,325,-230,325v-142,0,-231,-67,-231,-324v0,-286,86,-355,230,-355xm264,-636v-127,0,-192,61,-192,322v0,236,73,289,193,289v120,0,192,-54,192,-291v0,-256,-63,-320,-193,-320"},"1":{"d":"90,-524r204,-136r36,0r0,660r-36,0r0,-621r-187,126"},"2":{"d":"479,0r-418,0r0,-34r227,-239v75,-79,132,-140,132,-228v0,-101,-60,-135,-168,-135v-76,0,-180,26,-180,26r-5,-34v0,0,93,-26,186,-26v131,0,205,44,205,169v0,97,-50,156,-131,240r-217,226r369,0r0,35"},"3":{"d":"65,-648v0,0,95,-22,195,-22v144,0,198,52,198,165v0,124,-112,152,-113,152v75,20,132,52,132,171v0,129,-67,191,-208,191v-108,0,-217,-23,-217,-23r6,-34v0,0,105,23,211,23v118,-1,170,-53,170,-154v0,-171,-141,-153,-296,-153r0,-34r133,0v54,0,144,-43,144,-140v0,-94,-41,-130,-159,-130v-99,0,-190,22,-190,22"},"5":{"d":"82,-660r372,0r0,35r-338,0r-18,264v0,0,86,-51,179,-51v125,0,208,49,208,192v0,154,-84,227,-218,227v-100,0,-209,-24,-209,-24r5,-34v0,0,110,24,203,24v108,0,181,-66,181,-193v0,-123,-74,-158,-171,-158v-90,0,-179,55,-179,55r-34,-4"},"7":{"d":"59,-626r0,-34r402,0r0,65r-268,604r-35,-14r265,-598r0,-23r-364,0"},"8":{"d":"268,-670v142,0,237,49,237,165v0,89,-46,131,-136,157v83,24,146,66,146,169v0,149,-111,188,-247,188v-129,0,-244,-42,-244,-177v0,-111,57,-148,135,-180v-77,-27,-124,-68,-124,-158v0,-114,89,-164,233,-164xm268,-25v118,0,209,-32,209,-153v0,-107,-72,-131,-156,-152r-117,0v-87,21,-141,60,-141,161v0,111,94,144,205,144xm268,-636v-120,0,-195,32,-195,131v0,81,44,118,131,142r117,0v92,-22,145,-60,145,-141v0,-98,-76,-132,-198,-132"},"E":{"d":"103,0r0,-700r409,0r0,34r-373,0r0,289r313,0r0,34r-313,0r0,309r373,0r0,34r-409,0","w":572},"F":{"d":"103,0r0,-700r410,0r0,34r-374,0r0,316r314,0r0,34r-314,0r0,316r-36,0","w":563},"G":{"d":"356,-313r0,-34r186,0r0,331v0,0,-141,25,-220,25v-206,0,-262,-134,-262,-356v0,-218,49,-362,262,-362v105,0,220,25,220,25r-3,35v0,0,-126,-26,-217,-26v-188,0,-224,129,-224,328v0,200,40,322,224,322v71,0,178,-20,184,-20r0,-268r-150,0","w":617},"H":{"d":"557,0r0,-334r-418,0r0,334r-36,0r0,-700r36,0r0,332r418,0r0,-332r36,0r0,700r-36,0","w":696},"K":{"d":"501,0r-231,-329r-131,0r0,329r-36,0r0,-700r36,0r0,337r129,0r220,-337r43,0r-231,352r247,348r-46,0","w":597},"Q":{"d":"525,138r-87,-143v-31,9,-67,14,-110,14v-216,0,-268,-124,-268,-356v0,-228,54,-362,268,-362v214,0,268,132,268,362v0,173,-27,280,-121,328r86,140xm328,-25v193,0,230,-102,230,-322v0,-207,-42,-328,-230,-328v-190,0,-230,119,-230,328v0,210,37,322,230,322","w":656},"R":{"d":"534,0r-156,-290r-239,0r0,290r-36,0r0,-700r251,0v139,0,208,60,208,200v0,111,-38,185,-145,205r158,295r-41,0xm524,-500v0,-116,-53,-166,-170,-166r-215,0r0,342r215,0v131,0,170,-69,170,-176","w":630},"S":{"d":"468,-695r-4,35v0,0,-137,-17,-195,-17v-114,0,-178,40,-178,140v0,122,62,137,188,157v132,21,204,51,204,177v0,156,-74,210,-212,210v-75,0,-214,-16,-214,-16r4,-35v0,0,138,17,209,17v114,0,175,-48,175,-173v0,-102,-52,-125,-175,-144v-137,-21,-217,-44,-217,-191v0,-129,83,-176,216,-176v77,0,199,16,199,16","w":536},"T":{"d":"0,-666r0,-34r500,0r0,34r-231,0r0,666r-36,0r0,-666r-233,0","w":500},"V":{"d":"508,-700r36,0r-194,700r-116,0r-199,-700r36,0r192,666r58,0","w":579},"N":{"d":"103,0r0,-700r85,0r333,666r27,0r0,-666r36,0r0,700r-85,0r-334,-666r-26,0r0,666r-36,0","w":687},"$":{"d":"458,-660r-4,33v0,0,-67,-8,-125,-13r-36,282v115,20,179,50,179,165v1,157,-82,207,-227,199r-14,114v0,0,-35,-3,-35,-7r14,-109v-68,-4,-143,-13,-143,-13r4,-33v0,0,77,10,143,14r40,-301v-121,-20,-191,-46,-191,-179v0,-133,97,-174,236,-166r15,-116r35,0r-16,118v62,4,125,12,125,12xm99,-510v0,110,52,129,159,146r37,-278v-117,-8,-196,29,-196,132xm436,-190v0,-91,-45,-116,-148,-134r-38,298v120,4,186,-37,186,-164"},"!":{"d":"250,0r0,-80r40,0r0,80r-40,0xm252,-213r0,-486r35,0r0,486r-35,0"},"a":{"d":"418,-353r0,287v3,29,41,39,75,42r-2,32v-43,0,-81,-9,-103,-40v0,0,-93,41,-206,41v-78,0,-127,-49,-127,-146v0,-85,39,-134,138,-144r190,-20r0,-52v0,-87,-38,-122,-111,-122v-73,0,-189,17,-189,17r-3,-33v0,0,112,-18,192,-18v101,0,146,53,146,156xm383,-268r-186,18v-78,8,-105,51,-105,113v0,73,35,114,91,114v99,0,200,-40,200,-40r0,-205","w":518},"o":{"d":"265,-509v135,0,201,68,201,250v0,187,-36,268,-201,268v-166,0,-205,-69,-205,-270v0,-185,57,-248,205,-248xm265,-23v147,0,164,-77,164,-236v0,-160,-53,-218,-164,-218v-128,0,-168,48,-168,216v0,172,21,238,168,238","w":526},"J":{"d":"208,-701v0,212,1,382,1,596v0,178,-54,178,-174,178r0,-34v117,0,137,0,137,-154r0,-586r36,0","w":304},"t":{"d":"331,-468r-182,0r0,262v0,149,11,184,92,184v28,0,98,-8,98,-8r3,32v0,0,-66,8,-101,8v-91,0,-127,-34,-127,-178r0,-300r-79,0r0,-32r79,0r0,-163r35,0r0,163r182,0r0,32","w":372},"n":{"d":"136,0r-35,0r0,-500r35,0r0,40v0,0,89,-49,175,-49v136,0,164,55,164,249r0,260r-35,0r0,-258v0,-170,-18,-219,-129,-219v-89,0,-175,50,-175,50r0,427","w":573},"#":{"d":"513,-190r-120,0r0,190r-36,0r0,-190r-188,0r0,190r-36,0r0,-190r-120,0r0,-32r120,0r0,-226r-120,0r0,-32r120,0r0,-190r36,0r0,190r188,0r0,-190r36,0r0,190r120,0r0,32r-120,0r0,226r120,0r0,32xm357,-222r0,-226r-188,0r0,226r188,0"},"W":{"d":"45,-700r35,0r143,666r38,0r155,-656r40,0r160,656r38,0r138,-666r35,0r-144,700r-96,0r-151,-643r-146,643r-96,0","w":872},"@":{"d":"504,-719v311,-1,421,136,421,431v0,289,-68,298,-163,298v-56,0,-89,-3,-107,-63v-34,19,-120,62,-191,62v-62,0,-169,-9,-169,-252v0,-172,46,-266,210,-266v57,0,132,27,132,27r0,-18r35,0r0,200v0,272,13,280,90,280v77,0,126,-9,126,-268v0,-274,-95,-399,-384,-399v-277,0,-407,107,-407,426v0,332,130,428,407,428v40,0,143,-10,143,-10r3,33v0,0,-98,9,-146,9v-296,0,-444,-99,-444,-460v0,-338,148,-458,444,-458xm464,-23v69,0,146,-38,184,-60v-14,-68,-11,-256,-11,-367v0,0,-73,-27,-132,-27v-142,0,-175,85,-175,237v0,199,78,217,134,217","w":985},"`":{"d":"26,-732r192,96r-15,27r-193,-92","w":215},"M":{"d":"103,0r0,-700r77,0r245,645r247,-645r76,0r0,700r-36,0r0,-666r-14,0r-249,645r-50,0r-246,-645r-14,0r0,666r-36,0","w":851},"U":{"d":"126,-196v0,126,73,171,190,171v126,0,200,-44,200,-171r0,-504r36,0r0,504v0,150,-86,205,-236,205v-140,0,-226,-54,-226,-205r0,-504r36,0r0,504","w":642},"X":{"d":"83,-700r208,326r207,-326r43,0r-223,353r223,347r-43,0r-206,-322r-209,322r-43,0r226,-347r-226,-353r43,0","w":581},"Y":{"d":"289,-301r0,301r-36,0r0,-301r-228,-399r41,0r205,359r202,-359r42,0","w":540},"\u00f6":{"d":"265,-509v135,0,201,68,201,250v0,187,-36,268,-201,268v-166,0,-205,-69,-205,-270v0,-185,57,-248,205,-248xm265,-23v147,0,164,-77,164,-236v0,-160,-53,-218,-164,-218v-128,0,-168,48,-168,216v0,172,21,238,168,238xm146,-638r0,-62r35,0r0,62r-35,0xm336,-638r0,-62r35,0r0,62r-35,0","w":526},"\u00fc":{"d":"421,-500r35,0r0,500r-35,0r0,-40v0,0,-78,49,-164,49v-136,0,-164,-55,-164,-249r0,-260r35,0r0,258v0,170,18,219,129,219v89,0,164,-50,164,-50r0,-427xm173,-638r0,-62r35,0r0,62r-35,0xm363,-638r0,-62r35,0r0,62r-35,0","w":557},"\u0131":{"d":"113,0r0,-500r35,0r0,500r-35,0","w":261},"\u00dc":{"d":"126,-196v0,126,73,171,190,171v126,0,200,-44,200,-171r0,-504r36,0r0,504v0,150,-86,205,-236,205v-140,0,-226,-54,-226,-205r0,-504r36,0r0,504xm220,-838r0,-62r35,0r0,62r-35,0xm410,-838r0,-62r35,0r0,62r-35,0","w":642},"\u00d6":{"d":"328,-25v193,0,230,-102,230,-322v0,-207,-42,-328,-230,-328v-190,0,-230,119,-230,328v0,210,37,322,230,322xm328,9v-216,0,-268,-124,-268,-356v0,-228,54,-362,268,-362v214,0,268,132,268,362v0,242,-53,356,-268,356xm213,-838r0,-62r35,0r0,62r-35,0xm403,-838r0,-62r35,0r0,62r-35,0","w":656},"\u00c7":{"d":"422,127v0,53,-34,74,-82,74v-44,0,-81,-4,-81,-4r2,-28v0,0,44,4,78,4v29,0,48,-11,48,-46v0,-52,-54,-41,-102,-42r0,-77v-187,-9,-227,-141,-227,-355v0,-218,36,-362,249,-362v95,0,185,19,185,19r-3,35v0,0,-101,-20,-182,-20v-188,0,-211,129,-211,328v0,200,27,322,211,322v71,0,182,-20,182,-20r3,34v0,0,-97,18,-174,20r0,48v71,0,104,14,104,70","w":537},"\u00e7":{"d":"357,127v0,53,-34,74,-82,74v-44,0,-81,-4,-81,-4r2,-28v0,0,44,4,78,4v29,0,48,-11,48,-46v0,-52,-54,-41,-102,-42r0,-78v-129,-12,-160,-86,-160,-268v0,-185,56,-248,205,-248v38,0,120,10,120,10r-2,32v0,0,-80,-10,-118,-10v-128,0,-168,58,-168,216v0,172,26,238,168,238v38,0,120,-9,120,-9r2,32r-134,9r0,48v71,0,104,14,104,70","w":437},"I":{"d":"95,0r0,-700r36,0r0,700r-36,0","w":226},"O":{"d":"328,-25v193,0,230,-102,230,-322v0,-207,-42,-328,-230,-328v-190,0,-230,119,-230,328v0,210,37,322,230,322xm328,9v-216,0,-268,-124,-268,-356v0,-228,54,-362,268,-362v214,0,268,132,268,362v0,242,-53,356,-268,356","w":656},"~":{"d":"455,-370r7,37v0,0,-54,52,-100,52v-62,0,-143,-54,-192,-54v-37,0,-95,53,-95,53r-7,-35v0,0,56,-54,102,-54v63,0,147,54,191,54v37,0,94,-53,94,-53"},"L":{"d":"480,0r-377,0r0,-700r36,0r0,666r341,0r0,34"},"B":{"d":"103,-700r240,0v134,0,202,52,202,170v0,99,-40,148,-97,169v62,17,124,57,124,165v0,256,-247,186,-469,196r0,-700xm354,-341r-215,0r0,307v185,-8,396,51,396,-162v0,-142,-130,-145,-181,-145xm343,-666r-204,0r0,292r215,0v109,0,154,-54,154,-156v0,-97,-53,-136,-165,-136","w":627},"D":{"d":"363,0r-260,0r0,-700r260,0v176,0,234,164,234,340v0,176,-58,360,-234,360xm559,-360v0,-150,-46,-306,-196,-306r-224,0r0,632r224,0v150,0,196,-176,196,-326","w":653},"P":{"d":"358,-257r-219,0r0,257r-36,0r0,-700r255,0v145,0,207,66,207,211v0,145,-62,232,-207,232xm139,-291r219,0v121,0,169,-77,169,-198v0,-121,-48,-177,-169,-177r-219,0r0,375","w":615},"b":{"d":"308,-509v136,0,170,76,170,248v0,187,-42,270,-228,270v-68,0,-149,-9,-149,-9r0,-730r35,0r0,261v0,0,83,-40,172,-40xm249,-23v167,0,192,-77,192,-236v0,-150,-22,-218,-133,-218v-89,0,-172,40,-172,40r0,408v0,0,78,6,113,6","w":538},"v":{"d":"35,-500r37,0r146,468r43,0r147,-468r37,0r-157,500r-98,0","w":480},"x":{"d":"38,-500r40,0r150,223r150,-223r40,0r-169,250r169,250r-41,0r-149,-223r-149,223r-41,0r169,-250","w":456},"6":{"d":"457,-659r-4,33v0,0,-82,-10,-166,-10v-130,0,-207,95,-208,278v0,1,104,-48,192,-48v143,0,218,66,218,198v0,135,-77,217,-224,217v-156,0,-224,-130,-224,-346v0,-231,97,-333,246,-333v84,0,170,11,170,11xm270,-372v-92,0,-192,49,-192,49v3,172,53,298,187,298v121,0,186,-64,186,-183v0,-112,-69,-164,-181,-164"},"9":{"d":"74,-2r4,-33v0,0,82,10,166,10v140,0,212,-82,214,-275v0,0,-114,44,-202,44v-136,0,-209,-59,-209,-195v0,-133,87,-219,220,-219v161,0,228,136,228,346v0,252,-92,333,-251,333v-84,0,-170,-11,-170,-11xm258,-290v79,0,201,-45,201,-45v-4,-178,-55,-301,-192,-301v-112,0,-182,73,-182,185v0,114,59,161,173,161"},"<":{"d":"410,-520r-315,206r315,217r0,41v0,0,-313,-213,-347,-238r0,-36r347,-229r0,39"},">":{"d":"378,-314r-315,-206r0,-39r347,229r0,36v-34,25,-347,238,-347,238r0,-41"},"[":{"d":"231,-749r0,32r-147,0r0,808r147,0r0,32r-182,0r0,-872r182,0","w":300},"\\":{"d":"432,-14r-35,14r-301,-687r35,-14"},"]":{"d":"49,-717r0,-32r182,0r0,872r-182,0r0,-32r147,0r0,-808r-147,0","w":300},"|":{"d":"242,59r0,-759r35,0r0,759r-35,0"},"4":{"d":"380,0r0,-142r-347,0r0,-30r205,-488r39,0r-201,484r304,0r0,-219r36,0r0,219r98,0r0,34r-98,0r0,142r-36,0"},"\"":{"d":"226,-501r-35,0r0,-200r35,0r0,200xm85,-501r-35,0r0,-200r35,0r0,200","w":280},"'":{"d":"32,-488r-2,-210r40,0r-5,210r-33,0","w":100},"(":{"d":"153,-750r35,0v0,0,-95,260,-95,449v0,186,95,426,95,426r-35,0v0,0,-97,-226,-97,-426v0,-200,97,-449,97,-449","w":260},")":{"d":"56,-750r35,0v0,0,97,239,97,439v0,200,-97,436,-97,436r-35,0v0,0,95,-250,95,-436v0,-189,-95,-439,-95,-439","w":260},",":{"d":"47,123r42,-210r40,0r-51,210r-31,0","w":170},"-":{"d":"60,-264r0,-34r320,0r0,34r-320,0","w":440},".":{"d":"98,0r0,-80r40,0r0,80r-40,0","w":248},":":{"d":"77,-344r0,-80r40,0r0,80r-40,0xm77,0r0,-80r40,0r0,80r-40,0","w":141},";":{"d":"37,123r41,-210r42,0r-52,210r-31,0xm75,-344r0,-80r40,0r0,80r-40,0","w":170},"=":{"d":"41,-343r0,-34r445,0r0,34r-445,0xm42,-174r0,-34r445,0r0,34r-445,0"},"?":{"d":"376,-551v0,163,-199,211,-199,323r0,38r-35,0v-25,-174,199,-199,199,-361v0,-96,-59,-125,-165,-125v-48,0,-161,28,-161,28r-5,-34v0,0,112,-27,166,-27v127,0,200,41,200,158xm140,-1r0,-80r40,0r0,80r-40,0","w":386},"_":{"d":"27,34r428,0r0,34r-428,0r0,-34","w":520},"{":{"d":"139,-169v0,135,-29,260,136,261r-2,32v-128,-5,-176,-58,-176,-177v0,-129,30,-212,-97,-241r0,-32v129,-25,97,-121,97,-248v0,-119,48,-172,176,-177r2,32v-166,-1,-136,129,-136,264v0,88,-27,120,-100,144v73,24,100,58,100,142","w":285},"}":{"d":"136,-169v0,-84,27,-118,100,-142v-73,-24,-100,-56,-100,-144v0,-29,7,-86,7,-119v0,-90,-29,-140,-143,-145r2,-32v128,5,176,58,176,177v0,125,-32,225,97,248r0,32v-126,30,-97,110,-97,241v0,119,-48,172,-176,177r-2,-32v165,-1,136,-125,136,-261","w":285},"\u20ac":{"d":"5,-427r64,0v13,-159,66,-250,246,-250v95,0,175,19,175,19r-3,35v0,0,-91,-20,-172,-20v-156,0,-198,77,-208,216r311,1r0,33r-313,0r0,114r313,1r0,33r-312,0v10,144,53,220,209,220v71,0,172,-20,172,-20r3,34v0,0,-96,20,-175,20v-178,0,-234,-87,-246,-254r-64,0r0,-34r62,0r0,-114r-62,0r0,-34"},"&":{"d":"323,-694v109,0,153,60,153,145v0,99,-50,144,-165,182r187,185v14,-40,24,-88,31,-146r35,0v-9,69,-21,126,-39,172r140,137r-24,26r-131,-130v-47,94,-120,132,-222,132v-176,0,-230,-83,-230,-217v0,-124,52,-169,163,-201v-47,-51,-51,-88,-51,-141v0,-84,50,-144,153,-144xm290,-24v90,0,154,-37,194,-124r-237,-235v-113,30,-154,69,-154,174v0,119,52,185,197,185xm323,-662v-134,0,-152,153,-73,235r36,36v112,-38,155,-72,155,-159v0,-69,-32,-112,-118,-112","w":700},"*":{"d":"434,-519r-137,0r42,129r-32,10r-42,-130r-110,79r-19,-27r110,-80r-109,-80r20,-27r110,81r42,-129r32,10r-42,130r135,0r0,34"},"%":{"d":"416,-272v71,0,106,38,106,134v0,96,-36,138,-106,138v-71,0,-106,-42,-106,-139v0,-95,34,-133,106,-133xm186,-6r144,-695r36,7r-144,695xm345,-139v0,68,16,107,71,107v55,0,71,-38,71,-106v0,-68,-16,-102,-71,-102v-54,0,-71,34,-71,101xm135,-702v71,0,106,38,106,134v0,96,-36,138,-106,138v-71,0,-106,-42,-106,-139v0,-95,34,-133,106,-133xm64,-569v0,68,16,107,71,107v55,0,71,-38,71,-106v0,-68,-16,-102,-71,-102v-54,0,-71,34,-71,101"},"+":{"d":"-49,-234r0,-34r232,0r0,-232r36,0r0,232r234,0r0,34r-234,0r0,234r-36,0r0,-234r-232,0","w":410},"^":{"d":"417,-333r-158,-291r-149,291r-40,0r171,-327r37,0r181,327r-42,0"},"\u011e":{"d":"356,-313r0,-34r186,0r0,331v0,0,-141,25,-220,25v-206,0,-262,-134,-262,-356v0,-218,49,-362,262,-362v105,0,220,25,220,25r-3,35v0,0,-126,-26,-217,-26v-188,0,-224,129,-224,328v0,200,40,322,224,322v71,0,178,-20,184,-20r0,-268r-150,0xm190,-923r35,0v0,55,48,87,103,87v55,0,103,-32,103,-87r35,0v0,74,-64,119,-138,119v-74,0,-138,-45,-138,-119","w":617},"\u0130":{"d":"95,0r0,-700r36,0r0,700r-36,0xm95,-845r0,-55r35,0r0,55r-35,0","w":226},"\u015e":{"d":"390,127v0,53,-34,74,-82,74v-44,0,-81,-4,-81,-4r2,-28v0,0,44,4,78,4v29,0,48,-11,48,-46v0,-52,-54,-41,-102,-42r0,-78v-77,-2,-196,-16,-196,-16r4,-35v0,0,138,17,209,17v114,0,175,-48,175,-173v0,-102,-52,-125,-175,-144v-137,-21,-217,-44,-217,-191v0,-129,83,-176,216,-176v77,0,199,16,199,16r-4,35v0,0,-137,-17,-195,-17v-114,0,-178,40,-178,140v0,122,62,137,188,157v132,21,204,51,204,177v0,150,-69,205,-197,209r0,51v71,0,104,14,104,70","w":536},"\u011f":{"d":"253,239v-166,0,-198,-41,-198,-159v0,-66,31,-89,85,-128v-16,-10,-22,-34,-22,-65v0,-15,30,-78,30,-78v-46,-15,-86,-55,-86,-152v0,-119,64,-167,171,-167v54,0,106,13,106,13r140,-3r0,35r-108,0v25,23,40,53,40,122v0,146,-94,176,-236,160v0,0,-23,57,-23,70v0,49,6,54,137,54v124,0,177,20,177,144v0,108,-64,154,-213,154xm287,-27v-41,0,-121,-3,-121,-3v-58,40,-75,61,-75,109v0,95,25,128,163,128v124,0,175,-36,175,-122v0,-101,-41,-112,-142,-112xm229,-211v104,0,145,-32,145,-132v0,-113,-37,-135,-142,-135v-88,0,-134,32,-134,135v0,90,30,132,131,132xm114,-723r35,0v0,55,38,96,103,96v65,0,103,-41,103,-96r35,0v0,74,-54,128,-138,128v-84,0,-138,-54,-138,-128","w":504},"\u015f":{"d":"351,127v0,53,-34,74,-82,74v-44,0,-81,-4,-81,-4r2,-28v0,0,44,4,78,4v29,0,48,-11,48,-46v0,-52,-54,-41,-102,-42r0,-77v-59,-2,-148,-15,-148,-15r4,-33v0,0,108,17,159,17v94,0,155,-22,155,-118v0,-72,-36,-86,-155,-104v-117,-18,-169,-37,-169,-130v0,-106,90,-134,171,-134v77,0,172,15,172,15r-2,33v0,0,-102,-16,-170,-16v-64,0,-134,19,-134,100v0,62,27,81,142,99v131,21,182,40,182,134v0,112,-66,150,-174,153r0,48v71,0,104,14,104,70","w":483},"\/":{"d":"109,-12r277,-690r33,14r-277,689"},"\u00a0":{"w":235}}});
/*!
 * 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":530,"face":{"font-family":"TitilliumText22L-Regular","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"750","descent":"-250","x-height":"10","bbox":"-32 -926 933 239","underline-thickness":"50","underline-position":"-50","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":235},"C":{"d":"491,-83r3,70v0,0,-111,23,-190,23v-207,0,-253,-127,-253,-356v0,-235,49,-360,253,-360v91,0,191,23,191,23r-4,69v0,0,-109,-17,-179,-17v-155,0,-182,93,-182,285v0,188,26,281,184,281v62,0,177,-18,177,-18","w":536},"c":{"d":"257,-510v46,0,136,15,136,15r-2,65v0,0,-80,-9,-118,-9v-115,0,-146,48,-146,180v0,146,23,199,146,199v38,0,119,-9,119,-9r3,65v0,0,-94,14,-139,14v-160,0,-206,-73,-206,-269v0,-181,58,-251,207,-251","w":437},"d":{"d":"456,-700r0,700r-75,0r0,-33v0,0,-77,43,-152,43v-97,0,-179,-42,-179,-258v0,-175,56,-262,209,-262v43,0,107,10,122,13r0,-203r75,0xm239,-59v67,0,142,-37,142,-37r0,-335v-15,-2,-78,-11,-118,-11v-105,0,-138,65,-138,196v0,160,55,187,114,187","w":543},"e":{"d":"258,-58v75,0,183,-9,183,-9r2,61v0,0,-113,16,-194,16v-150,0,-199,-87,-199,-257v0,-190,83,-263,210,-263v151,0,219,113,197,292r-331,0v1,105,33,160,132,160xm126,-279r260,0v0,-120,-39,-164,-126,-164v-86,0,-134,47,-134,164","w":507},"f":{"d":"165,-432r0,432r-74,0r0,-432r-63,0r0,-68r63,0r0,-45v0,-144,36,-182,134,-182v35,0,101,7,101,7r-1,62v0,0,-56,-2,-85,-2v-56,0,-75,24,-75,116r0,44r146,0r0,68r-146,0","w":334},"g":{"d":"262,239v-158,0,-215,-35,-215,-155v0,-58,27,-85,79,-124v-18,-12,-27,-38,-27,-69v0,-19,33,-79,33,-79v-41,-19,-78,-58,-78,-151v0,-123,75,-171,186,-171v50,0,104,13,104,13r146,-3r0,64r-90,0v18,19,31,44,31,97v0,149,-99,181,-243,165v0,0,-18,44,-18,57v0,40,9,46,121,46v143,0,194,28,194,147v0,116,-82,163,-223,163xm286,-5v-36,0,-109,-5,-109,-5v-41,31,-56,49,-56,88v0,69,29,94,142,94v101,0,146,-27,146,-93v0,-76,-33,-84,-123,-84xm237,-234v84,0,119,-26,119,-105v0,-86,-32,-106,-117,-106v-74,0,-110,27,-110,106v0,72,25,105,108,105","w":518},"h":{"d":"162,0r-75,0r0,-730r75,0r0,254v0,0,84,-34,154,-34v138,0,169,68,169,249r0,261r-75,0r0,-260v0,-132,-15,-181,-105,-181v-67,0,-143,29,-143,29r0,412","w":565},"i":{"d":"81,0r0,-500r74,0r0,500r-74,0xm81,-613r0,-87r74,0r0,87r-74,0","w":236},"j":{"d":"93,-6r0,-494r74,0r0,495v0,123,-33,167,-166,235r-33,-63v102,-58,125,-83,125,-173xm93,-616r0,-88r74,0r0,88r-74,0","w":248},"k":{"d":"162,0r-75,0r0,-718r75,0r0,419r77,-4r149,-197r84,0r-167,230r170,270r-85,0r-150,-229r-78,4r0,225","w":497},"l":{"d":"84,0r0,-718r74,0r0,718r-74,0","w":242},"m":{"d":"162,0r-75,0r0,-500r75,0r0,34v0,0,60,-34,125,-40v66,-6,119,7,147,41v29,-11,112,-45,181,-45v136,0,169,65,169,250r0,260r-75,0r0,-237v0,-153,-10,-204,-105,-204v-68,0,-138,36,-140,37v21,93,9,282,12,404r-75,0r0,-258v0,-138,-14,-183,-105,-183v-67,0,-134,37,-134,37r0,404","w":864},"A":{"d":"29,0r190,-696r169,0r187,695r-76,0r-53,-174r-290,0r-50,175r-77,0xm277,-625r-103,376r256,0r-103,-376r-50,0","w":604},"p":{"d":"87,222r0,-722r75,0r0,35v0,0,75,-45,149,-45v126,0,181,75,181,254v0,196,-63,266,-218,266v-47,0,-98,-8,-112,-11r0,223r-75,0xm301,-441v-66,0,-139,39,-139,39r0,334v13,3,65,11,108,11v110,0,146,-55,146,-201v0,-135,-43,-183,-115,-183","w":542},"q":{"d":"249,10v-147,0,-199,-90,-199,-251v0,-176,54,-269,228,-269v52,0,172,10,172,10r0,722r-75,0r0,-239v0,0,-54,27,-126,27xm279,-442v-120,0,-153,66,-153,200v0,119,31,185,123,185v67,0,126,-31,126,-31r0,-350v0,0,-65,-4,-96,-4","w":537},"r":{"d":"87,0r0,-500r75,0r0,66v0,0,77,-58,174,-76r0,78v-94,18,-174,69,-174,69r0,363r-75,0","w":356},"s":{"d":"416,-491r-2,65v0,0,-111,-16,-175,-16v-62,0,-108,16,-108,75v0,47,23,61,122,76v132,21,180,48,180,145v0,117,-74,156,-195,156v-64,0,-176,-19,-176,-19r4,-65v0,0,114,17,165,17v82,0,126,-18,126,-86v0,-52,-26,-64,-126,-80v-122,-19,-176,-43,-176,-141v0,-110,89,-146,180,-146v75,0,181,19,181,19","w":489},"u":{"d":"397,-500r74,0r0,500r-74,0r0,-32v0,0,-78,42,-148,42v-140,0,-169,-64,-169,-249r0,-261r74,0r0,260v0,138,12,183,106,183v66,0,137,-37,137,-37r0,-406","w":559},"w":{"d":"28,-500r75,0r100,432r16,0r120,-422r79,0r119,422r16,0r101,-432r75,0r-119,500r-127,0r-105,-391r-107,391r-125,0","w":757},"y":{"d":"24,-500r75,0r125,428r34,0r125,-428r75,0r-208,722r-75,0r64,-222r-73,0","w":482},"z":{"d":"54,-432r0,-68r371,0r0,68r-281,364r281,0r0,68r-371,0r0,-68r281,-364r-281,0","w":479},"Z":{"d":"60,-622r0,-74r450,0r0,95r-357,509r0,19r357,0r0,74r-450,0r0,-95r357,-508r0,-20r-357,0","w":570},"0":{"d":"264,-671v156,0,241,79,241,351v0,253,-90,330,-240,330v-151,0,-242,-75,-242,-329v0,-272,89,-352,241,-352xm264,-598v-108,0,-159,58,-159,279v0,207,56,256,160,256v104,0,158,-50,158,-257v0,-218,-49,-278,-159,-278"},"1":{"d":"65,-521r209,-139r73,0r0,660r-77,0r0,-572r-169,113"},"2":{"d":"479,0r-422,0r0,-71r191,-198v80,-82,134,-138,134,-217v0,-81,-48,-110,-144,-110v-72,0,-170,22,-170,22r-6,-71v0,0,98,-26,191,-26v139,0,209,53,209,177v0,99,-44,157,-134,248r-168,172r319,0r0,74"},"3":{"d":"61,-647v0,0,103,-24,195,-24v156,0,211,55,211,172v0,103,-79,135,-99,148v67,24,115,55,115,162v0,133,-66,199,-215,199v-104,0,-218,-23,-218,-23r8,-70v0,0,108,19,202,19v98,0,143,-41,143,-122v0,-141,-137,-119,-269,-120r0,-70r133,0v51,0,120,-43,120,-115v0,-77,-41,-106,-135,-106v-90,0,-183,19,-183,19"},"5":{"d":"78,-660r384,0r0,73r-314,0r-17,209v0,0,77,-38,146,-38v132,0,212,55,212,198v0,150,-83,227,-221,227v-101,0,-219,-28,-219,-28r9,-69v0,0,118,24,207,24v86,0,144,-53,144,-151v0,-96,-58,-129,-139,-129v-78,0,-149,39,-149,39r-63,-11"},"7":{"d":"55,-587r0,-73r410,0r0,101r-256,572r-72,-23r248,-553r0,-24r-330,0"},"8":{"d":"268,-671v142,0,239,56,239,172v0,85,-33,120,-110,154v71,32,120,71,120,166v0,145,-112,189,-249,189v-133,0,-246,-41,-246,-178v0,-103,46,-140,114,-177v-69,-34,-103,-73,-103,-155v0,-114,91,-171,235,-171xm268,-63v98,0,167,-31,167,-124v0,-77,-51,-102,-117,-120r-105,0v-69,19,-109,52,-109,126v0,87,70,118,164,118xm269,-598v-96,0,-154,28,-154,107v0,61,33,92,98,116r105,0v68,-22,107,-54,107,-115v0,-79,-59,-108,-156,-108"},"E":{"d":"90,0r0,-696r420,0r0,73r-344,0r0,235r284,0r0,72r-284,0r0,243r344,0r0,73r-420,0","w":564},"F":{"d":"90,0r0,-696r421,0r0,73r-345,0r0,269r285,0r0,73r-285,0r0,281r-76,0","w":553},"G":{"d":"354,-285r0,-70r191,0r0,341v0,0,-142,24,-225,24v-210,0,-268,-131,-268,-357v0,-230,58,-359,266,-359v105,0,227,26,227,26r-3,69v0,0,-124,-21,-215,-21v-160,0,-195,94,-195,285v0,189,34,283,194,283v59,0,140,-13,143,-13r0,-208r-115,0","w":608},"H":{"d":"519,0r0,-314r-352,0r0,314r-77,0r0,-696r77,0r0,308r352,0r0,-308r76,0r0,696r-76,0","w":685},"K":{"d":"466,0r-184,-306r-115,4r0,302r-77,0r0,-696r77,0r0,321r113,-4r177,-317r89,0r-198,348r209,348r-91,0","w":595},"Q":{"d":"497,145r-88,-144v-24,6,-52,9,-83,9v-216,0,-274,-122,-274,-354v0,-230,60,-362,274,-362v214,0,273,131,273,362v0,163,-27,268,-114,319r84,136xm326,-63v160,0,194,-90,194,-281v0,-184,-37,-289,-194,-289v-159,0,-194,104,-194,289v0,185,33,281,194,281","w":651},"R":{"d":"488,0r-125,-263r-196,0r0,263r-77,0r0,-696r256,0v149,0,221,62,221,212v0,107,-38,174,-127,201r133,283r-85,0xm488,-484v0,-96,-45,-139,-142,-139r-179,0r0,287r180,0v106,0,141,-59,141,-148","w":624},"S":{"d":"475,-687r-7,70v0,0,-138,-16,-196,-16v-98,0,-151,32,-151,110v0,91,48,106,170,133v138,31,199,65,199,189v0,150,-85,210,-224,210v-76,0,-213,-21,-213,-21r8,-70v0,0,133,17,204,17v98,0,147,-37,147,-133v0,-78,-41,-99,-154,-122v-143,-30,-214,-65,-214,-201v0,-130,87,-186,228,-186v77,0,203,20,203,20","w":534},"T":{"d":"-4,-622r0,-74r500,0r0,74r-211,0r0,622r-76,0r0,-622r-213,0","w":492},"V":{"d":"484,-696r80,0r-181,696r-171,0r-183,-696r80,0r162,623r53,0","w":593},"N":{"d":"90,0r0,-696r138,0r276,606r22,0r0,-606r77,0r0,696r-135,0r-280,-606r-21,0r0,606r-77,0","w":693},"$":{"d":"469,-666r-7,68v0,0,-69,-8,-129,-13r-30,236v125,30,180,64,180,180v0,150,-86,207,-229,204r-15,115v0,0,-51,-3,-51,-7r14,-111v-68,-6,-143,-18,-143,-18r8,-68v0,0,78,11,144,15r32,-248v-128,-29,-192,-65,-192,-192v0,-132,96,-188,241,-180r14,-109r51,0r-15,112v64,6,127,16,127,16xm125,-507v0,78,37,99,128,121r29,-228v-98,-2,-157,28,-157,107xm408,-192v0,-67,-32,-91,-114,-110r-31,239v96,1,145,-35,145,-129"},"!":{"d":"230,0r0,-114r82,0r0,114r-82,0xm232,-232r-2,-467r81,0r-2,467r-77,0"},"a":{"d":"433,-347r0,246v2,32,26,42,58,46r-3,65v-60,0,-92,-11,-118,-38v0,0,-90,38,-185,38v-87,0,-136,-55,-136,-153v0,-96,49,-139,152,-148r158,-15v6,-79,-16,-132,-87,-132v-73,0,-191,13,-191,13r-3,-65v0,0,120,-20,197,-20v106,0,158,50,158,163xm359,-245r-148,12v-61,6,-86,37,-86,88v0,58,26,90,71,90v76,0,163,-30,163,-30r0,-160","w":522},"o":{"d":"265,-510v151,0,213,84,213,255v0,173,-44,265,-213,265v-169,0,-215,-84,-215,-267v0,-172,57,-253,215,-253xm265,-57v118,0,136,-66,136,-198v0,-133,-40,-187,-136,-187v-106,0,-138,48,-138,185v0,140,20,200,138,200","w":528},"J":{"d":"222,-697v0,212,1,374,1,588v0,166,-58,181,-190,181r0,-72v89,0,113,-7,113,-118r0,-579r76,0","w":308},"t":{"d":"331,-432r-158,0r0,233v0,109,6,139,72,139v28,0,89,-5,89,-5r4,65v0,0,-66,11,-101,11v-103,0,-139,-39,-139,-183r0,-260r-71,0r0,-68r71,0r0,-153r75,0r0,153r158,0r0,68","w":363},"n":{"d":"162,0r-75,0r0,-500r75,0r0,33v0,0,84,-43,155,-43v137,0,168,68,168,250r0,260r-74,0r0,-259v0,-133,-15,-182,-106,-182v-66,0,-143,37,-143,37r0,404","w":568},"#":{"d":"519,-180r-110,0r0,180r-68,0r0,-180r-154,0r0,180r-68,0r0,-180r-111,0r0,-64r111,0r0,-178r-111,0r0,-64r111,0r0,-180r68,0r0,180r154,0r0,-180r68,0r0,180r110,0r0,64r-110,0r0,178r110,0r0,64xm341,-244r0,-178r-154,0r0,178r154,0"},"W":{"d":"37,-696r79,0r127,619r29,0r134,-613r87,0r138,613r29,0r124,-619r79,0r-148,696r-140,0r-125,-581r-123,581r-139,0","w":900},"@":{"d":"504,-723v307,0,429,144,429,435v0,261,-68,298,-175,298v-58,0,-94,-7,-116,-55v-36,19,-112,54,-175,54v-86,0,-176,-33,-176,-252v0,-168,42,-266,202,-266v45,0,116,25,116,25r0,-16r75,0r0,200v0,228,13,240,74,240v62,0,99,-17,99,-228v0,-254,-92,-363,-353,-363v-253,0,-376,111,-376,390v0,296,113,392,376,392v40,0,143,-9,143,-9r4,72v0,0,-99,9,-147,9v-296,0,-452,-103,-452,-464v0,-330,164,-462,452,-462xm471,-63v54,0,114,-26,148,-42v-13,-68,-9,-217,-10,-314v0,0,-61,-20,-104,-20v-114,0,-139,62,-139,198v0,155,54,178,105,178","w":985},"`":{"d":"25,-749r218,94r-24,58r-220,-86","w":236},"M":{"d":"90,0r0,-696r134,0r201,585r202,-585r133,0r0,696r-77,0r0,-606r-14,0r-202,581r-85,0r-201,-581r-14,0r0,606r-77,0","w":850},"U":{"d":"155,-210v0,108,64,145,162,145v104,0,169,-36,169,-145r0,-486r76,0r0,486v0,158,-87,219,-245,219v-152,0,-239,-60,-239,-219r0,-486r77,0r0,486","w":640},"X":{"d":"117,-696r174,292r173,-292r87,0r-207,351r207,345r-87,0r-172,-288r-175,288r-87,0r210,-345r-210,-351r87,0","w":581},"Y":{"d":"316,-298r0,298r-77,0r0,-299r-220,-397r86,0r172,312r170,-312r86,0","w":552},"\u00f6":{"d":"265,-510v151,0,213,84,213,255v0,173,-44,265,-213,265v-169,0,-215,-84,-215,-267v0,-172,57,-253,215,-253xm265,-57v118,0,136,-66,136,-198v0,-133,-40,-187,-136,-187v-106,0,-138,48,-138,185v0,140,20,200,138,200xm124,-625r0,-90r73,0r0,90r-73,0xm325,-625r0,-90r72,0r0,90r-72,0","w":528},"\u00fc":{"d":"397,-500r74,0r0,500r-74,0r0,-32v0,0,-78,42,-148,42v-140,0,-169,-64,-169,-249r0,-261r74,0r0,260v0,138,12,183,106,183v66,0,137,-37,137,-37r0,-406xm147,-625r0,-90r72,0r0,90r-72,0xm347,-625r0,-90r73,0r0,90r-73,0","w":559},"\u0131":{"d":"95,0r0,-500r74,0r0,500r-74,0","w":261},"\u00dc":{"d":"157,-210v0,108,64,145,162,145v104,0,169,-36,169,-145r0,-486r76,0r0,486v0,158,-87,219,-245,219v-152,0,-239,-60,-239,-219r0,-486r77,0r0,486xm204,-825r0,-90r72,0r0,90r-72,0xm404,-825r0,-90r73,0r0,90r-73,0","w":642},"\u00d6":{"d":"328,-63v161,0,194,-90,194,-281v0,-184,-36,-289,-194,-289v-159,0,-194,104,-194,289v0,185,33,281,194,281xm328,10v-215,0,-274,-122,-274,-354v0,-230,60,-362,274,-362v214,0,274,131,274,362v0,238,-59,354,-274,354xm188,-825r0,-90r72,0r0,90r-72,0xm389,-825r0,-90r72,0r0,90r-72,0","w":656},"\u00c7":{"d":"426,127v0,63,-38,90,-94,90v-44,0,-86,-7,-86,-7r3,-48v0,0,39,3,66,3v28,0,44,-10,44,-38v0,-40,-47,-34,-86,-34r0,-84v-181,-12,-222,-138,-222,-355v0,-235,49,-360,253,-360v91,0,191,23,191,23r-4,69v0,0,-109,-17,-179,-17v-155,0,-182,93,-182,285v0,188,26,281,184,281v62,0,177,-18,177,-18r3,70v0,0,-102,21,-180,23r0,39v74,0,112,14,112,78","w":537},"\u00e7":{"d":"373,127v0,63,-38,90,-94,90v-44,0,-86,-7,-86,-7r3,-48v0,0,39,3,66,3v28,0,44,-10,44,-38v0,-40,-47,-34,-86,-34r0,-85v-131,-10,-170,-86,-170,-267v0,-181,58,-251,207,-251v46,0,136,15,136,15r-2,65v0,0,-80,-9,-118,-9v-115,0,-146,48,-146,180v0,146,23,199,146,199v38,0,119,-9,119,-9r3,65v0,0,-88,13,-134,14r0,39v74,0,112,14,112,78","w":437},"I":{"d":"85,0r0,-696r77,0r0,696r-77,0","w":247},"O":{"d":"326,-63v160,0,194,-90,194,-281v0,-184,-37,-289,-194,-289v-159,0,-194,104,-194,289v0,185,33,281,194,281xm326,10v-216,0,-274,-122,-274,-354v0,-230,60,-362,274,-362v214,0,273,131,273,362v0,238,-59,354,-273,354","w":651},"~":{"d":"459,-377r7,72v0,0,-52,52,-106,52v-58,0,-143,-50,-187,-50v-42,0,-101,48,-101,48r-8,-71v0,0,55,-54,112,-54v58,0,140,50,185,50v38,0,98,-47,98,-47"},"L":{"d":"471,0r-381,0r0,-696r77,0r0,622r304,0r0,74","w":513},"B":{"d":"90,-696r250,0v130,0,206,51,206,172v0,95,-33,140,-88,166v62,21,109,62,109,162v0,147,-84,196,-214,196r-263,0r0,-696xm345,-318r-179,0r0,247v149,-7,322,41,322,-129v0,-107,-90,-118,-143,-118xm337,-625r-171,0r0,237r178,0v87,0,123,-43,123,-126v0,-79,-42,-111,-130,-111","w":618},"D":{"d":"337,0r-247,0r0,-696r247,0v200,0,256,140,256,337v0,199,-53,359,-256,359xm513,-359v0,-146,-33,-264,-176,-264r-171,0r0,550r171,0v143,0,176,-139,176,-286","w":642},"P":{"d":"343,-233r-176,0r0,233r-77,0r0,-696r253,0v151,0,221,72,221,223v0,151,-70,240,-221,240xm167,-307r175,0v101,0,143,-63,143,-166v0,-102,-42,-149,-143,-149r-175,0r0,315","w":606},"b":{"d":"308,-510v136,0,183,72,183,251v0,198,-54,269,-236,269v-60,0,-168,-11,-168,-11r0,-717r75,0r0,241v0,0,75,-33,146,-33xm254,-57v137,0,161,-62,161,-200v0,-130,-26,-184,-114,-184v-66,0,-139,27,-139,27r0,351v0,0,65,6,92,6","w":541},"v":{"d":"24,-500r78,0r120,436r37,0r122,-436r76,0r-142,500r-150,0","w":482},"x":{"d":"27,-500r81,0r122,196r122,-196r82,0r-157,250r157,250r-82,0r-122,-195r-121,195r-82,0r156,-250","w":460},"6":{"d":"472,-655r-7,70v0,0,-90,-12,-174,-12v-114,0,-177,77,-178,223v0,1,94,-39,166,-39v145,0,221,66,221,205v0,140,-83,218,-231,218v-164,0,-236,-126,-236,-343v0,-243,101,-338,258,-338v84,0,181,16,181,16xm273,-342v-77,0,-161,37,-161,37v2,138,43,243,157,243v98,0,152,-49,152,-146v0,-92,-56,-134,-148,-134"},"9":{"d":"59,-5r7,-70v0,0,90,12,174,12v121,0,181,-72,182,-221v0,0,-100,36,-172,36v-138,0,-216,-64,-216,-203v0,-138,91,-220,229,-220v166,0,238,127,238,343v0,256,-98,338,-261,338v-84,0,-181,-15,-181,-15xm256,-319v69,0,167,-35,167,-35v-2,-143,-47,-244,-160,-244v-92,0,-149,55,-149,147v0,93,50,132,142,132"},"<":{"d":"410,-480r-275,168r275,175r0,81v-46,-24,-280,-176,-347,-215r0,-78r347,-210r0,79"},">":{"d":"338,-312r-275,-168r0,-79r347,210r0,78v-67,39,-301,191,-347,215r0,-81"},"[":{"d":"251,-749r0,72r-134,0r0,728r134,0r0,72r-210,0r0,-872r210,0","w":300},"\\":{"d":"460,-19r-81,33r-308,-692r81,-35","w":537},"]":{"d":"41,-677r0,-72r210,0r0,872r-210,0r0,-72r134,0r0,-728r-134,0","w":300},"|":{"d":"222,127r0,-847r76,0r0,847r-76,0"},"4":{"d":"350,4r0,-128r-321,0r0,-62r188,-474r84,0r-184,463r233,0r0,-211r77,0r0,211r83,0r0,73r-83,0r0,128r-77,0"},"\"":{"d":"266,-477r-70,0r-1,-220r73,0xm114,-477r-70,0r-1,-220r73,0","w":310},"'":{"d":"12,-469r-2,-226r76,0r-5,226r-69,0","w":100},"(":{"d":"133,-750r79,0v0,0,-95,260,-95,449v0,186,95,426,95,426r-79,0v0,0,-97,-226,-97,-426v0,-200,97,-449,97,-449","w":260},")":{"d":"36,-750r79,0v0,0,97,239,97,439v0,200,-97,436,-97,436r-79,0v0,0,95,-250,95,-436v0,-189,-95,-439,-95,-439","w":260},",":{"d":"26,123r46,-230r81,0r-55,230r-72,0","w":170},"-":{"d":"64,-244r0,-74r312,0r0,74r-312,0","w":440},".":{"d":"77,0r0,-114r81,0r0,114r-81,0","w":248},":":{"d":"60,-322r0,-114r82,0r0,114r-82,0xm60,0r0,-114r82,0r0,114r-82,0","w":177},";":{"d":"24,119r49,-234r83,0r-64,234r-68,0xm67,-322r0,-114r82,0r0,114r-82,0","w":198},"=":{"d":"33,-339r0,-69r457,0r0,69r-457,0xm34,-151r0,-69r457,0r0,69r-457,0"},"?":{"d":"386,-537v0,171,-190,206,-190,301r0,38r-79,0v-26,-174,189,-187,189,-332v0,-77,-38,-104,-132,-104v-50,0,-157,24,-157,24r-9,-74v0,0,114,-27,168,-27v139,0,210,45,210,174xm116,-1r0,-114r82,0r0,114r-82,0","w":386},"_":{"d":"27,14r428,0r0,70r-428,0r0,-70","w":520},"{":{"d":"189,-170v0,112,-38,228,107,226r-1,72v-136,-5,-192,-56,-192,-175v0,-125,34,-202,-93,-232r0,-64v131,-26,93,-113,93,-236v0,-123,56,-171,192,-176r1,72v-93,5,-114,38,-114,108v0,33,7,94,7,123v0,85,-27,116,-100,140v73,24,100,59,100,142","w":307},"}":{"d":"117,-170v0,-83,27,-118,100,-142v-73,-24,-100,-55,-100,-140v0,-29,7,-90,7,-123v0,-70,-22,-103,-114,-108r1,-72v136,5,192,53,192,176v0,121,-38,212,93,236r0,64v-127,31,-93,106,-93,232v0,119,-56,170,-192,175r-1,-72v144,0,107,-113,107,-226","w":307},"\u20ac":{"d":"30,-441r63,0v15,-158,74,-234,244,-234v91,0,177,19,177,19r-3,69v0,0,-95,-13,-166,-13v-122,0,-160,51,-172,159r270,1r0,61r-275,0r0,94r275,1r0,61r-270,0v12,108,51,158,174,158v63,0,164,-14,164,-14r3,70v0,0,-98,19,-177,19v-172,0,-230,-76,-244,-233r-63,0r0,-62r59,0v-2,-29,-1,-64,0,-94r-59,0r0,-62","w":555},"&":{"d":"323,-702v118,0,173,60,173,157v0,95,-45,142,-151,192r143,143v10,-32,23,-89,28,-134r73,1v-9,66,-26,136,-43,182r129,124r-47,51r-120,-113v-57,79,-123,114,-227,114v-163,0,-233,-81,-233,-219v0,-114,56,-166,153,-203v-102,-112,-56,-295,122,-295xm284,-56v75,0,126,-26,168,-92r-203,-206v-85,29,-125,69,-125,149v0,95,49,149,160,149xm225,-542v0,54,35,108,72,141v88,-38,124,-68,124,-139v0,-60,-29,-92,-98,-92v-63,0,-98,29,-98,90","w":700},"*":{"d":"442,-511r-131,0r40,125r-48,15r-42,-126r-107,79r-30,-40r108,-79r-107,-77r31,-42r105,76r42,-124r49,16r-40,127r130,0r0,50"},"%":{"d":"411,-280v78,0,114,46,114,138v0,92,-37,141,-114,141v-77,0,-113,-49,-113,-142v0,-91,35,-137,113,-137xm121,-27r256,-672r47,23r-255,672xm358,-143v0,60,11,91,53,91v42,0,54,-31,54,-90v0,-59,-12,-87,-54,-87v-41,0,-53,28,-53,86xm131,-702v78,0,114,46,114,139v0,92,-37,141,-114,141v-77,0,-113,-49,-113,-142v0,-92,35,-138,113,-138xm78,-564v0,59,11,91,53,91v43,0,54,-31,54,-90v0,-59,-11,-87,-54,-87v-41,0,-53,28,-53,86"},"+":{"d":"-23,-232r0,-70r215,0r0,-214r70,0r0,214r217,0r0,70r-217,0r0,216r-70,0r0,-216r-215,0","w":458},"^":{"d":"401,-325r-139,-261r-134,261r-80,0r175,-335r78,0r181,335r-81,0"},"\u011e":{"d":"354,-285r0,-70r191,0r0,341v0,0,-142,24,-225,24v-210,0,-268,-131,-268,-357v0,-230,58,-359,266,-359v105,0,227,26,227,26r-3,69v0,0,-124,-21,-215,-21v-160,0,-195,94,-195,285v0,189,34,283,194,283v59,0,140,-13,143,-13r0,-208r-115,0xm166,-926r77,0v2,42,37,68,81,68v44,0,79,-26,81,-68r76,0v-4,79,-65,132,-157,132v-93,0,-154,-53,-158,-132","w":608},"\u0130":{"d":"85,0r0,-696r77,0r0,696r-77,0xm86,-818r0,-87r74,0r0,87r-74,0","w":247},"\u015e":{"d":"405,127v0,63,-38,90,-94,90v-44,0,-86,-7,-86,-7r3,-48v0,0,39,3,66,3v28,0,44,-10,44,-38v0,-40,-47,-34,-86,-34r0,-84v-78,-2,-199,-21,-199,-21r8,-70v0,0,133,17,204,17v98,0,147,-37,147,-133v0,-78,-41,-99,-154,-122v-143,-30,-214,-65,-214,-201v0,-130,87,-186,228,-186v77,0,203,20,203,20r-7,70v0,0,-138,-16,-196,-16v-98,0,-151,32,-151,110v0,91,48,106,170,133v138,31,199,65,199,189v0,140,-74,201,-197,209r0,41v74,0,112,14,112,78","w":534},"\u011f":{"d":"262,239v-158,0,-215,-35,-215,-155v0,-58,27,-85,79,-124v-18,-12,-27,-38,-27,-69v0,-19,33,-79,33,-79v-41,-19,-78,-58,-78,-151v0,-123,75,-171,186,-171v50,0,104,13,104,13r146,-3r0,64r-90,0v18,19,31,44,31,97v0,149,-99,181,-243,165v0,0,-18,44,-18,57v0,40,9,46,121,46v143,0,194,28,194,147v0,116,-82,163,-223,163xm286,-5v-36,0,-109,-5,-109,-5v-41,31,-56,49,-56,88v0,69,29,94,142,94v101,0,146,-27,146,-93v0,-76,-33,-84,-123,-84xm237,-234v84,0,119,-26,119,-105v0,-86,-32,-106,-117,-106v-74,0,-110,27,-110,106v0,72,25,105,108,105xm98,-733r77,0v2,45,32,75,84,75v52,0,82,-30,84,-75r76,0v-4,82,-61,142,-160,142v-100,0,-157,-60,-161,-142","w":518},"\u015f":{"d":"367,127v0,63,-38,90,-94,90v-44,0,-86,-7,-86,-7r3,-48v0,0,39,3,66,3v28,0,44,-10,44,-38v0,-40,-47,-34,-86,-34r0,-84v-65,-3,-152,-18,-152,-18r4,-65v0,0,114,17,165,17v82,0,126,-18,126,-86v0,-52,-26,-64,-126,-80v-122,-19,-176,-43,-176,-141v0,-110,89,-146,180,-146v75,0,181,19,181,19r-2,65v0,0,-111,-16,-175,-16v-62,0,-108,16,-108,75v0,47,23,61,122,76v132,21,180,48,180,145v0,112,-67,152,-178,156r0,39v74,0,112,14,112,78","w":489},"\/":{"d":"88,-15r279,-694r71,26r-279,693"},"\u00a0":{"w":235}}});

/* -------------------------------------------------- *
 * 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(a,m){function n(){a.each(arguments,function(a,b){if(typeof t[b]==="undefined")t[b]=document.createElement("img"),t[b].src=k[b]})}function C(b,c){c&&typeof c==="function"&&c.call();a.event.trigger(b)}function J(){D=a('<div class="fullscreen-outer"></div>').append(a('<div class="fullscreen-overlay"></div>'),u=a('<div class="fullscreen-stage"></div>'));o=a('<div class="fullscreen-controls-outer"></div>').append(E=a('<div class="fullscreen-controls"></div>').append(v=a('<div class="fullscreen-prev"></div>'),
		p=a('<div class="fullscreen-play"></div>'),w=a('<div class="fullscreen-next"></div>')),x=a('<div class="fullscreen-loading-wrap"></div>').append(a('<div class="fullscreen-loading"></div>')),F=a('<div class="fullscreen-close-wrap"></div>').append(a('<div class="fullscreen-close"></div>')));G=a('<div class="storm-controls"></div>').append(y=a('<div class="storm-loading"></div>'),z=a('<div class="storm-prev"></div>'),g=a('<div class="storm-play"></div>'),A=a('<div class="storm-next"></div>'));a(".foot-right-col").after(G);
		a("body").prepend(D).append(o);if(h>1&&(E.add(z).add(A).show(),e.bindKeyboard(),b.slideshow)){var f,i,j;i=function(){a.cookie("stormSlideshow","start");p.bind("fullscreenComplete",function(){f=setTimeout(e.next,b.slideshowSpeed)}).bind("fullscreenLoad",function(){clearTimeout(f)}).removeClass("fullscreen-play").addClass("fullscreen-pause").add(g).unbind("click").one("click",j);g.removeClass("storm-play").addClass("storm-pause");f=setTimeout(e.next,b.slideshowSpeed)};j=function(){a.cookie("stormSlideshow",
		"stop");clearTimeout(f);p.unbind("fullscreenLoad fullscreenComplete").removeClass("fullscreen-pause").addClass("fullscreen-play").add(g).unbind("click").one("click",i);g.removeClass("storm-pause").addClass("storm-play")};a.cookie("stormSlideshow")==="start"?i():a.cookie("stormSlideshow")==="stop"?j():b.slideshowAuto?i():j();p.add(g).show()}v.add(z).click(function(){if(l)return!1;else e.prev()});w.add(A).click(function(){if(l)return!1;else e.next()});F.click(e.close);H=a("body").css("overflow");a("#minimise-button").click(function(c){c.preventDefault();
		a("body").css("overflow","hidden");a("div.outside").fadeOut(b.minimiseSpeedOut).hide(0,function(){o.fadeIn(b.controlSpeedIn).show(0,function(){b.keyboard&&a(document).bind("keydown.fullscreen",function(a){a.keyCode===27&&(a.preventDefault(),e.close())})})});q.resize()});q.resize(I);if(b.save)for(var d=a.cookie("stormSavedBackground"),r=0;r<h;r++)if(r==d){c=r;break}B(function(){b.preload&&n(c==h-1?0:c+1,c==0?h-1:c-1)})}function B(f){var i=document.createElement("img"),j;d=a(i).css("position","fixed");
		d.load(function(){d.unbind("load");setTimeout(function(){s=i.height/i.width;var a=u.find("img");u.append(d);I(function(){clearTimeout(j);x.add(y).hide();var c=function(){d.animate({opacity:"show"},{duration:b.speedIn,complete:function(){l=!1;C("fullscreenComplete",b.onComplete);typeof f==="function"&&f.call()}})};a.length?(a.animate({opacity:"hide"},{duration:b.speedOut,complete:function(){b.sync||c();a.remove()}}),b.sync&&c()):c()})},1)});j=setTimeout(function(){x.add(y).fadeIn()},200);C("fullscreenLoad",
		b.onLoad);l=!0;setTimeout(function(){d.attr("src",k[c])},1)}function I(a){if(d){var b=q.width(),c=q.height();c/b>s?d.height(c).width(c/s):d.width(b).height(b*s);d.css({left:(b-d.width())/2+"px",top:(c-d.height())/2+"px"});typeof a==="function"&&a.call()}}var K={speedIn:3E3,speedOut:3E3,sync:!0,minimiseSpeedIn:1E3,minimiseSpeedOut:1E3,controlSpeedIn:500,fadeIE:!1,preload:!0,save:!0,slideshow:!0,slideshowAuto:!0,slideshowSpeed:7E3,random:!1,keyboard:!0,onLoad:!1,onComplete:!1},D,u,o,E,v,p,w,x,F,G,y,
		z,g,A,d,q=a(m),L=a.browser.msie&&!a.support.opacity,k,h,t=[],s,H,c=0,l=!1,b,e;e=a.fullscreen=function(f){b=a.extend({},K,f||{});k=b.backgrounds;h=k.length;if(b.random){var f=k,e,d,g=f.length;if(g)for(;--g;)d=Math.floor(Math.random()*(g+1)),e=f[d],f[d]=f[g],f[g]=e;k=f;b.save=!1}if(typeof b.backgroundIndex==="number")c=b.backgroundIndex,b.save=!1;if(L&&!b.fadeIE)b.minimiseSpeedOut=0,b.minimiseSpeedIn=0,b.controlSpeedIn=0;J()};e.close=function(){o.hide();a("div.outside").fadeIn(b.minimiseSpeedIn);a("body").css("overflow",
		H);a(m).resize();e.unbindKeyboard()};e.next=function(){c=c==h-1?0:c+1;B(function(){b.preload&&n(c==h-1?0:c+1);b.save&&a.cookie("stormSavedBackground",c,{expires:365})})};e.prev=function(){c=c==0?h-1:c-1;B(function(){b.preload&&n(c==0?h-1:c-1);b.save&&a.cookie("stormSavedBackground",c,{expires:365})})};e.bindKeyboard=function(){b.keyboard&&a(document).bind("keydown.fullscreen",function(a){l||(a.keyCode===37?(a.preventDefault(),v.click()):a.keyCode===39&&(a.preventDefault(),w.click()))})};e.unbindKeyboard=
		function(){b.keyboard&&a(document).unbind("keydown.fullscreen")};m.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"]);a(m).load(function(){b.preload&&n(c==0?h-1:c-1,c==h-1?0:c+1)})})(jQuery,window);

