/**
 * 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":210,"face":{"font-family":"Comfortaa","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 15 6 3 7 0 0 6 0 3","ascent":"288","descent":"-72","bbox":"-1.78362 -327 294.305 74.4232","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0030-U+017C"},"glyphs":{" ":{},"0":{"d":"80,0v-86,1,-99,-144,-63,-215v14,-27,37,-38,61,-38v83,0,101,141,63,216v-13,26,-36,37,-61,37xm79,-227v-43,0,-56,60,-55,105v1,46,12,95,55,97v39,2,55,-47,55,-102v0,-42,-13,-100,-55,-100","w":173},"1":{"d":"7,-228v-5,-17,34,-19,49,-25v8,2,12,6,12,12r0,228v0,17,-26,16,-26,2r0,-211v-21,6,-30,13,-35,-6","w":99},"2":{"d":"0,-177v-2,-36,34,-75,76,-75v36,0,77,34,76,75v0,23,-13,44,-34,67r-74,84r99,0v7,0,11,5,12,13v-1,8,-5,13,-12,13r-129,0v-19,-6,-13,-16,0,-31r103,-118v22,-33,2,-76,-42,-77v-26,0,-48,19,-49,52v-4,15,-26,8,-26,-3","w":171},"3":{"d":"15,-186v-2,-33,25,-64,63,-66v52,-3,89,78,39,113v63,40,34,137,-42,139v-37,1,-73,-32,-75,-76v0,-6,5,-10,14,-12v7,0,12,4,12,13v0,23,21,47,51,49v47,3,70,-79,17,-96v-11,-3,-29,-3,-28,-17v0,-8,5,-12,17,-12v13,0,33,-19,33,-38v0,-18,-16,-37,-38,-37v-22,-5,-38,27,-40,46v-7,10,-24,2,-23,-6","w":167},"4":{"d":"118,-246v9,-10,27,-2,23,13r0,132v18,1,36,-6,39,13v2,14,-21,14,-39,13v-5,26,12,69,-13,75v-26,-6,-8,-50,-13,-75r-105,0v-13,-5,-13,-16,-3,-24v71,-92,106,-142,111,-147xm40,-101r75,0r0,-97","w":193},"5":{"d":"28,-67v12,56,99,52,102,-11v3,-46,-48,-58,-102,-52v-6,0,-10,-4,-12,-11r0,-98v-1,-6,9,-14,18,-11r102,0v16,1,18,26,-1,26r-92,0r0,67v68,-9,109,20,115,79v4,37,-35,78,-80,78v-38,0,-77,-32,-78,-78v7,-19,30,-16,28,11","w":178},"6":{"d":"77,0v-59,4,-104,-77,-58,-126r71,-123v11,-6,19,-4,22,10v-7,21,-38,64,-49,89v48,-10,85,29,89,74v2,36,-35,73,-75,76xm28,-89v-7,35,12,61,48,63v25,2,48,-18,49,-50v1,-25,-17,-49,-50,-49v-22,0,-37,12,-47,36","w":167},"7":{"d":"18,-251r128,0v16,4,15,13,6,27r-125,221v-10,7,-23,0,-22,-12v-1,-1,44,-82,118,-210r-102,0v-18,-1,-17,-25,-3,-26","w":169},"8":{"d":"37,-142v-43,-32,-16,-111,42,-111v53,0,89,79,39,114v63,40,32,139,-44,139v-34,0,-74,-35,-74,-76v0,-26,12,-48,37,-66xm79,-152v20,1,37,-14,37,-37v0,-19,-12,-37,-38,-37v-45,0,-52,73,1,74xm124,-63v11,-33,-12,-61,-48,-63v-27,-2,-48,19,-50,50v-2,26,19,50,51,50v22,0,39,-13,47,-37","w":170},"9":{"d":"0,-177v-2,-37,32,-75,76,-75v59,0,93,74,52,130r-88,119v-9,7,-25,-1,-22,-10v6,-21,51,-67,62,-89v-41,7,-78,-32,-80,-75xm76,-226v-27,-2,-49,19,-50,52v-1,21,20,46,50,46v25,1,48,-20,48,-49v0,-25,-17,-47,-48,-49","w":170},"A":{"d":"86,-244v14,-14,22,-5,30,17r80,215v-6,19,-27,14,-30,-10r-29,-78r-78,0r-36,96v-9,8,-24,2,-23,-9xm70,-126r57,0r-29,-75","w":209,"k":{"t":26,"j":33,"Y":31,"W":20,"V":33,"T":31}},"B":{"d":"113,-144v69,33,51,144,-31,144v-24,0,-72,10,-72,-13r0,-226v3,-24,38,-6,59,-13v47,-3,86,69,44,108xm36,-151v37,2,68,-2,68,-38v0,-29,-30,-41,-68,-36r0,74xm36,-26v51,3,92,-5,94,-50v2,-41,-43,-54,-94,-49r0,99","w":175,"k":{"j":40}},"C":{"d":"11,-126v0,-88,116,-167,199,-103v9,32,-21,18,-35,11v-69,-32,-132,25,-137,92v-5,71,89,130,158,81v11,0,17,5,16,14v3,12,-46,31,-77,31v-61,0,-124,-57,-124,-126","w":239,"k":{"y":20,"v":15,"j":45,"f":16}},"D":{"d":"192,-125v0,60,-56,128,-124,125v-21,-1,-57,8,-58,-13r0,-227v2,-22,34,-11,57,-13v62,-5,125,57,125,128xm166,-127v0,-60,-50,-108,-130,-100r0,201v75,9,130,-29,130,-101","k":{"j":49,"T":25}},"E":{"d":"24,-253r136,0v8,0,13,4,14,14v-2,8,-7,12,-15,12r-122,0r0,90r90,0v13,0,17,23,1,26r-91,0r0,85r125,0v6,0,11,5,12,14v-2,8,-6,12,-12,12r-138,0v-8,-2,-13,-6,-13,-13r0,-227v1,-8,6,-13,13,-13","w":192,"k":{"y":21,"v":16,"j":32}},"F":{"d":"22,-253r137,0v8,0,12,4,13,14v-2,8,-6,12,-14,12r-122,0r0,90r89,0v13,0,17,23,1,26r-90,0r0,98v-1,18,-26,15,-26,0r0,-227v1,-8,5,-13,12,-13","w":181,"k":{"z":11,"j":39,"J":26,"A":32}},"G":{"d":"207,-221v-9,33,-45,-13,-80,-4v-42,-3,-93,49,-93,100v0,65,81,126,150,85r0,-60v-22,-3,-60,9,-61,-14v6,-24,49,-12,74,-12v7,0,12,4,12,12r0,74v-4,36,-51,38,-77,40v-61,5,-125,-56,-125,-126v0,-87,115,-166,196,-104v2,3,4,6,4,9","w":227,"k":{"j":35}},"H":{"d":"8,-237v-2,-21,25,-17,26,-4r0,105r125,0r0,-103v1,-9,5,-14,14,-13v8,1,12,6,12,12r0,229v0,6,-5,9,-13,11v-8,-2,-13,-6,-13,-13r0,-98r-125,0r0,99v-1,15,-26,17,-26,-1r0,-224","w":208,"k":{"j":28}},"I":{"d":"11,-242v-2,-19,27,-9,43,-13v19,1,16,28,1,27r-3,0r0,202v10,-1,13,2,16,13v-2,19,-26,11,-45,13v-18,-2,-13,-30,3,-26r0,-202v-10,1,-14,-4,-15,-14","w":94,"k":{"j":34}},"J":{"d":"87,-26v28,0,53,-19,53,-53r0,-162v3,-17,26,-16,26,1r0,162v5,69,-108,111,-146,41v-9,-16,-22,-51,2,-54v8,0,13,6,13,20v0,19,28,45,52,45","w":179,"k":{"j":25}},"K":{"d":"11,-239v1,-18,26,-15,26,-1r0,115v90,-85,113,-123,130,-124v19,7,12,18,-2,32r-82,82r94,116v-3,26,-18,19,-35,-2r-78,-95r-27,28r0,76v-1,15,-26,17,-26,-1r0,-226","w":195,"k":{"y":12,"v":21,"j":32}},"L":{"d":"8,-237v-2,-21,25,-17,26,-4r0,215r108,0v7,0,12,5,13,14v-2,8,-7,12,-13,12r-121,0v-7,0,-11,-4,-13,-13r0,-224","w":175,"k":{"\u00d3":28,"y":25,"v":42,"j":39,"Y":54,"W":40,"V":49,"T":56,"Q":25,"O":29,"G":27,"C":29}},"M":{"d":"11,-237v3,-23,24,-18,28,3r84,188r92,-202v9,-8,23,-4,23,11r0,224v-1,18,-26,16,-26,1r-1,-165v-50,112,-75,169,-77,172v-15,12,-20,0,-30,-23r-68,-149r0,165v-1,15,-25,17,-25,-1r0,-224","w":261,"k":{"j":33}},"N":{"d":"7,-237v2,-21,23,-19,28,-1v5,3,60,78,147,187r0,-189v2,-17,25,-16,26,1r0,226v-7,21,-20,12,-37,-10r-138,-177r0,187v-1,14,-25,18,-26,-1r0,-223","w":232,"k":{"j":31}},"O":{"d":"7,-127v0,-61,58,-125,126,-125v61,0,126,55,126,126v0,62,-56,126,-128,126v-62,0,-124,-54,-124,-127xm133,-226v-50,-2,-100,42,-100,101v0,49,45,99,102,99v48,0,98,-46,98,-100v0,-50,-44,-99,-100,-100","w":280,"k":{"j":45,"T":19}},"P":{"d":"150,-182v1,55,-48,85,-116,76r0,94v-1,13,-26,18,-26,-1r0,-225v3,-30,46,-11,72,-15v31,-5,69,33,70,71xm124,-180v2,-39,-42,-52,-90,-47r0,95v49,3,87,-1,90,-48","w":169,"k":{"j":43,"J":31,"A":40}},"Q":{"d":"8,-127v-2,-61,58,-125,126,-125v92,0,168,122,99,205v19,19,28,28,28,34v0,7,-4,11,-13,13v-5,2,-24,-20,-33,-29v-81,68,-204,10,-207,-98xm134,-226v-50,-1,-100,44,-100,101v0,73,100,133,163,77v-19,-23,-30,-27,-30,-38v9,-21,21,-13,36,6v5,4,7,10,13,13v46,-67,1,-158,-82,-159","w":281,"k":{"j":29,"T":24}},"R":{"d":"19,-252v67,-6,117,5,120,70v1,24,-15,48,-40,60v40,69,60,105,60,107v1,9,-4,14,-13,15v-6,0,-12,-9,-20,-23r-55,-93r-38,0r0,104v-1,15,-26,17,-26,-1r0,-224v1,-10,6,-15,12,-15xm112,-176v9,-41,-31,-56,-79,-51r0,85v41,1,70,3,79,-34","w":171,"k":{"j":26}},"S":{"d":"135,-220v-7,38,-32,-13,-57,-7v-40,-2,-52,66,-6,77v32,-2,73,41,73,76v0,68,-100,103,-138,41v-3,-9,4,-19,12,-18v13,2,32,33,54,26v21,1,46,-21,46,-52v0,-30,-35,-48,-65,-53v-63,-29,-44,-123,26,-123v22,0,43,11,55,33","w":162,"k":{"j":31}},"T":{"d":"18,-252r164,0v17,3,17,24,-3,25r-66,0r0,215v-1,15,-26,17,-26,-1r0,-214v-26,-4,-75,11,-80,-13v2,-8,5,-12,11,-12","w":215,"k":{"\u00f3":28,"\u00d3":31,"z":16,"y":26,"x":24,"w":20,"v":27,"u":20,"s":24,"r":17,"q":45,"p":43,"o":42,"n":32,"m":36,"j":47,"g":43,"f":33,"e":50,"d":42,"c":54,"a":49,"Q":29,"O":22,"J":47,"G":28,"C":33,"A":57}},"U":{"d":"97,0v-47,0,-90,-38,-90,-94r0,-143v-2,-21,25,-17,26,-4v5,86,-26,215,62,215v32,1,63,-25,63,-66r0,-147v1,-9,5,-14,14,-13v8,1,12,6,12,12r0,155v3,39,-42,85,-87,85","w":205,"k":{"j":33}},"V":{"d":"20,-253v7,0,11,10,18,28r66,173r73,-196v9,-9,22,-7,24,8r-84,227v-10,23,-22,13,-32,-13r-79,-215v0,-7,5,-12,14,-12","w":219,"k":{"j":47,"J":38,"A":41}},"W":{"d":"7,-240v6,-19,27,-15,28,8r51,171v34,-121,53,-183,55,-187v13,-10,24,-3,26,19v4,7,19,69,50,168r54,-185v6,-11,26,-5,23,7r-67,234v-14,12,-21,1,-27,-20r-49,-168r-54,187v-13,13,-22,6,-28,-19v-34,-131,-59,-202,-62,-215","w":312,"k":{"j":39,"A":27}},"X":{"d":"6,-236v-4,-18,20,-24,26,-7r75,96r80,-104v11,-4,19,-1,21,12v-21,35,-60,78,-85,113v28,38,60,72,85,113v-4,17,-22,17,-28,0r-73,-93r-81,103v-8,7,-23,-1,-21,-12v13,-23,65,-83,85,-112v-55,-70,-83,-106,-84,-109","w":228,"k":{"y":18,"j":23,"G":25}},"Y":{"d":"96,-149v57,-70,53,-101,79,-103v21,12,8,21,-12,50r-54,80r0,107v0,20,-22,20,-26,4r0,-109v-9,-20,-61,-88,-76,-119v4,-18,22,-17,28,0","w":202,"k":{"\u00f3":28,"s":23,"q":32,"p":30,"o":34,"j":35,"g":29,"e":28,"d":28,"c":28,"a":30,"J":34,"A":42}},"Z":{"d":"17,-253r180,0v17,6,12,17,-3,36r-148,191r150,0v18,0,15,27,0,26r-177,0v-7,0,-12,-5,-13,-14v41,-62,114,-149,162,-213r-149,0v-18,-1,-14,-26,-2,-26","w":223,"k":{"j":20}},"a":{"d":"7,-91v-2,-42,39,-88,90,-89v44,-2,90,37,90,92r0,76v1,13,-25,18,-25,2r0,-18v-55,59,-152,20,-155,-63xm97,-154v-31,-2,-63,25,-64,65v-1,32,25,63,67,63v30,0,62,-28,62,-65v0,-32,-27,-62,-65,-63","k":{"j":46,"Y":54,"T":62}},"b":{"d":"106,0v-49,3,-93,-40,-93,-96r0,-144v0,-6,5,-11,14,-12v8,2,12,6,12,12r0,86v54,-62,156,-12,156,63v0,44,-39,88,-89,91xm105,-156v-35,-2,-64,25,-66,66v-1,32,24,64,67,64v31,0,63,-25,63,-66v0,-31,-25,-63,-64,-64","w":216,"k":{"j":35,"Y":52,"V":23,"T":49}},"c":{"d":"6,-90v0,-70,99,-123,153,-64v5,9,-1,21,-11,20v-8,-2,-34,-25,-54,-20v-31,-2,-59,26,-62,65v-3,49,70,86,110,45v10,-2,18,0,19,12v4,10,-39,32,-68,32v-40,0,-87,-44,-87,-90","w":182,"k":{"j":30,"Y":26,"T":49}},"d":{"d":"6,-91v0,-71,100,-125,156,-64r-1,-85v2,-17,26,-14,26,-1r1,154v0,43,-47,94,-94,87v-40,4,-88,-44,-88,-91xm98,-156v-33,-2,-65,25,-66,66v-1,32,24,64,67,64v31,0,63,-25,63,-66v0,-31,-25,-63,-64,-64","k":{"j":27}},"e":{"d":"6,-90v-2,-44,39,-89,89,-90v47,-2,92,38,91,95v-2,9,-5,13,-12,13r-139,0v9,38,58,58,101,36v9,2,11,6,11,14v0,11,-21,20,-52,22v-45,2,-87,-38,-89,-90xm159,-98v0,-23,-34,-62,-65,-55v-27,-2,-58,24,-61,55r126,0","w":204,"k":{"j":40,"Y":43,"T":56}},"f":{"d":"50,-177v-3,-48,21,-78,71,-76v13,1,17,26,-2,26v-31,0,-45,15,-43,50v20,3,50,-10,51,14v0,18,-33,11,-51,12r1,139v0,13,-23,17,-27,1v3,-44,0,-94,1,-140v-19,-2,-45,8,-46,-14v0,-13,26,-13,45,-12","w":152,"k":{"j":43,"J":31,"A":22}},"g":{"d":"7,-90v0,-44,40,-89,89,-89v50,0,89,47,89,107r0,79v2,28,-51,66,-89,66v-36,0,-75,-22,-87,-59v4,-15,24,-15,29,5v36,53,136,34,122,-46v-56,58,-153,13,-153,-63xm98,-154v-35,-2,-64,24,-66,65v-1,32,24,63,66,63v30,0,61,-25,62,-65v1,-30,-24,-61,-62,-63","w":212,"k":{"Y":45,"T":50}},"h":{"d":"93,-155v-32,0,-54,22,-54,67r0,76v-1,14,-26,17,-26,0r0,-227v0,-17,26,-13,26,-2r0,81v50,-48,135,-12,135,55r0,93v-1,15,-25,17,-26,0v-3,-66,16,-143,-55,-143","w":197,"k":{"j":35,"Y":46,"T":54}},"i":{"d":"18,-213v2,-19,29,-14,26,2v-1,13,-25,17,-26,-2xm18,-166v-2,-20,25,-16,26,-4r0,158v-1,14,-25,18,-26,-1r0,-153","w":75,"k":{"j":30}},"j":{"d":"77,-224v18,2,17,25,-1,26v-16,-4,-17,-23,1,-26xm77,-180v8,2,13,5,13,12v-7,101,35,240,-77,240v-15,0,-19,-26,1,-26v29,1,50,-20,50,-57r0,-157v0,-7,4,-11,13,-12","w":115},"k":{"d":"165,-168v-5,17,-84,58,-75,56r75,94v-4,28,-20,17,-37,-5r-60,-75r-28,18r0,68v-1,14,-26,17,-26,0r0,-228v0,-18,25,-13,26,-2r0,132v68,-42,94,-68,113,-72v7,0,11,5,12,14","w":185,"k":{"j":27,"T":44}},"l":{"d":"11,-236v-1,-20,25,-17,26,-4r0,214v24,-9,33,23,13,26v-18,-1,-39,6,-39,-13r0,-223","w":83,"k":{"j":27}},"m":{"d":"83,-151v-59,0,-46,80,-47,139v0,15,-25,17,-25,-1r0,-149v-2,-20,25,-17,25,-4r0,7v34,-29,78,-23,106,13v8,-15,30,-29,57,-31v35,-2,72,30,72,70r0,96v0,6,-5,9,-13,11v-8,-1,-12,-5,-12,-12v-5,-60,23,-138,-49,-139v-20,-1,-43,16,-43,43r0,95v0,19,-25,15,-25,1v-1,-60,12,-139,-46,-139","w":294,"k":{"j":29,"Y":39,"T":46}},"n":{"d":"102,-154v-36,-1,-63,24,-63,73r0,69v-1,15,-25,17,-25,-1r0,-152v-2,-20,25,-17,25,-4r0,15v54,-56,148,-13,149,59r0,84v0,6,-4,10,-13,11v-8,-2,-12,-5,-12,-12v2,-70,7,-140,-61,-142","k":{"j":22,"Y":33,"T":39}},"o":{"d":"7,-89v0,-44,39,-90,89,-90v46,0,90,45,90,90v0,46,-38,89,-93,89v-39,0,-86,-44,-86,-89xm95,-153v-31,0,-61,25,-62,65v-1,32,26,61,65,62v31,1,61,-25,61,-65v0,-31,-28,-62,-64,-62","w":205,"k":{"j":35,"Y":40,"T":45}},"p":{"d":"189,-90v0,69,-99,124,-153,62r0,90v-2,13,-26,16,-26,-2v0,-109,-28,-232,89,-239v45,-2,90,44,90,89xm99,-153v-32,0,-61,25,-63,64v-1,32,27,61,65,62v31,1,62,-25,62,-65v1,-30,-29,-61,-64,-61","w":206,"k":{"j":32,"Y":40,"T":52}},"q":{"d":"8,-89v-1,-44,42,-89,89,-89v47,0,88,41,88,95r0,144v-1,19,-25,14,-25,2r0,-90v-54,60,-150,13,-152,-62xm160,-91v0,-79,-123,-81,-126,0v-1,36,25,64,65,65v31,1,61,-26,61,-65","w":207,"k":{"Y":43,"V":21,"T":46}},"r":{"d":"136,-149v-50,-19,-93,6,-93,59r0,78v-1,15,-26,17,-26,-1r0,-153v-1,-19,26,-17,26,-4r0,15v19,-17,40,-26,62,-26v13,0,43,2,43,20v-1,8,-5,12,-12,12","w":162,"k":{"j":30,"Z":35,"T":39,"J":41}},"s":{"d":"20,-91v-45,-35,11,-88,58,-88v30,0,61,14,72,47v-2,17,-24,15,-31,-3v-27,-28,-75,-21,-89,15v0,6,7,9,20,10v75,23,91,5,100,53v5,24,-38,58,-76,57v-26,-1,-61,-13,-69,-48v0,-6,4,-10,14,-11v12,4,35,38,58,32v18,0,39,-10,47,-30v0,-6,-4,-8,-12,-10v-58,-12,-89,-21,-92,-24","w":170,"k":{"j":33,"Y":45,"T":41}},"t":{"d":"98,0v-37,4,-62,-16,-62,-53r0,-99v-15,2,-36,2,-34,-12v2,-17,17,-11,34,-12v4,-23,-11,-67,14,-68v25,5,7,45,12,68v19,3,42,-10,44,12v1,17,-25,12,-44,12v9,46,-28,132,38,127v6,0,10,4,11,13v-1,8,-6,12,-13,12","w":123,"k":{"j":25}},"u":{"d":"162,-25v-58,54,-152,16,-150,-69r0,-71v-2,-21,25,-17,26,-4r0,70v-1,46,23,71,62,73v32,2,62,-25,62,-65r0,-76v1,-20,26,-15,26,-1r0,157v0,6,-5,10,-14,11v-13,-2,-12,-11,-12,-25","w":208,"k":{"j":27,"T":44}},"v":{"d":"5,-166v6,-24,20,-16,31,7r57,116v41,-87,62,-132,65,-135v9,-7,23,1,22,10v-9,25,-60,127,-78,164v-16,11,-20,0,-30,-21v-42,-88,-65,-134,-67,-141","w":198,"k":{"j":38,"Z":42,"T":44,"A":28}},"w":{"d":"165,-54v34,-80,25,-116,49,-123v9,2,13,6,13,13r-51,159v-14,11,-21,2,-28,-20r-32,-97r-38,116v-8,10,-20,7,-24,-6r-48,-152v2,-9,6,-13,13,-13v8,0,12,10,17,26r32,97v33,-87,25,-117,49,-123v8,0,11,7,15,21","w":248,"k":{"j":39,"Y":23,"T":58}},"x":{"d":"80,-68v-42,48,-44,65,-61,68v-23,-12,-10,-20,12,-46r33,-42v-18,-26,-42,-47,-57,-76v2,-9,6,-13,13,-13v18,8,57,67,60,69v4,-4,21,-26,53,-66v8,-5,26,0,21,12v-5,14,-45,56,-58,74v39,50,59,66,58,76v-3,16,-23,15,-30,-3","w":170,"k":{"j":27,"T":37}},"y":{"d":"72,-53v41,-87,38,-118,60,-125v8,2,12,6,12,12r-92,223v-7,7,-24,1,-21,-10v0,-2,10,-25,28,-69r-58,-143v9,-21,21,-11,30,12v25,64,40,97,41,100","w":160,"k":{"j":32,"Z":21,"Y":17,"X":14,"T":54,"A":22}},"z":{"d":"7,-165v2,-11,9,-14,18,-12r118,-1v20,9,12,17,-3,35r-94,118r97,0v17,2,16,25,-1,25r-123,0v-7,0,-11,-5,-12,-14v24,-38,78,-99,108,-139r-97,1v-7,-3,-11,-7,-11,-13","w":178,"k":{"j":32,"Y":11,"T":53}},"\u00d3":{"d":"150,-308v0,0,-39,65,-47,25v0,-4,6,-13,19,-27v7,-17,27,-12,28,2xm0,-126v0,-62,58,-126,126,-126v60,0,126,57,126,127v0,62,-57,125,-128,125v-61,0,-124,-53,-124,-126xm126,-226v-51,-2,-100,44,-100,102v0,49,45,98,102,98v48,0,98,-46,98,-100v0,-50,-44,-98,-100,-100","w":269,"k":{"j":30,"T":23}},"\u00f3":{"d":"117,-232v-1,10,-37,62,-45,25v0,-4,7,-13,20,-28v6,-15,26,-8,25,3xm0,-88v0,-43,41,-88,88,-88v43,0,88,44,88,88v0,44,-37,88,-91,88v-40,0,-85,-43,-85,-88xm87,-150v-32,-1,-60,24,-61,64v-1,30,25,60,64,60v30,0,60,-24,60,-64v0,-31,-29,-60,-63,-60","w":196,"k":{"j":38,"Y":28,"T":20}},"\u0104":{"d":"203,15v3,14,-21,8,-20,23v1,19,51,-3,48,23v-2,19,-22,10,-39,12v-35,3,-51,-53,-15,-69v-1,-15,-15,-40,-37,-102r-78,0r-38,97v-9,8,-25,2,-23,-9r88,-236v13,-14,21,-5,29,16r85,228r0,17xm72,-125r58,0r-29,-76","w":235},"\u0105":{"d":"1,-88v-1,-44,39,-87,90,-89v44,-2,90,38,90,92r0,100v4,12,-22,8,-20,23v4,20,48,-6,48,21v0,19,-21,12,-39,13v-34,3,-50,-53,-14,-68v-2,-9,0,-18,0,-28v-55,58,-152,19,-155,-64xm91,-151v-34,-2,-64,25,-65,65v-1,33,27,63,68,64v30,1,62,-29,62,-66v0,-32,-27,-62,-65,-63","w":218},"\u0106":{"d":"0,-126v0,-88,116,-167,199,-103v9,32,-21,18,-36,11v-69,-31,-131,25,-136,92v-5,71,89,130,158,81v11,0,17,5,16,14v3,12,-46,31,-77,31v-61,0,-124,-57,-124,-126xm94,-274v-3,-10,45,-52,52,-53v8,0,14,5,14,15v0,5,-10,17,-32,36v-11,19,-28,19,-34,2","w":219},"\u0107":{"d":"0,-90v0,-70,99,-123,153,-64v5,9,-1,21,-11,20v-8,-2,-34,-25,-54,-20v-31,-2,-59,26,-62,65v-3,49,70,86,110,45v10,-2,18,0,19,12v4,10,-39,32,-68,32v-40,0,-87,-44,-87,-90xm57,-204v-4,-10,46,-53,52,-54v8,0,14,6,14,16v0,5,-11,15,-32,35v-10,10,-13,16,-21,15v-8,-1,-13,-5,-13,-12","w":171},"\u0118":{"d":"145,74v-32,2,-58,-2,-59,-36v-4,-16,22,-19,18,-38r-86,0v-8,-2,-13,-6,-13,-13r0,-226v1,-9,7,-14,16,-13r133,0v8,0,13,4,14,14v-2,8,-7,12,-15,12r-122,0r0,90r89,-1v13,0,17,23,2,27v-29,-2,-61,-1,-91,-1r0,85r125,0v6,0,11,5,12,14v-3,18,-23,10,-40,12v2,5,0,14,1,20v2,12,-20,8,-19,20v0,21,47,-2,45,22v0,5,-3,10,-10,12","w":184},"\u0119":{"d":"154,-96v-1,-24,-33,-61,-65,-54v-28,-2,-54,25,-59,54r124,0xm133,70v-34,4,-58,-2,-59,-35v0,-11,6,-21,18,-28v0,-2,1,-7,-1,-7v-44,3,-87,-37,-87,-88v0,-43,37,-87,87,-88v45,-1,92,36,89,92v0,9,-5,13,-12,13r-136,0v9,38,57,57,99,35v9,2,11,6,11,14v0,8,-8,14,-26,18r0,21v3,12,-18,9,-18,20v0,19,46,-3,44,22v0,5,-2,10,-9,11","w":197},"\u0141":{"d":"33,-123r0,-114v-1,-21,24,-16,25,-4r0,99v32,-21,38,-31,50,-30v19,7,14,27,-10,36r-40,29r0,81r109,0v7,0,11,5,12,14v-2,8,-6,12,-12,12r-122,0v-7,0,-10,-4,-12,-13r0,-76v-10,12,-26,5,-27,-8v0,-7,10,-16,27,-26","w":189},"\u0142":{"d":"3,-84v-3,-8,25,-25,36,-33r0,-119v-2,-21,25,-17,26,-4r0,104v25,-16,30,-24,39,-23v6,0,11,6,12,15v-3,14,-41,33,-51,43r0,75v24,-9,33,23,13,26v-18,-1,-39,6,-39,-13r0,-70v-16,9,-13,14,-22,13v-9,-2,-14,-6,-14,-14","w":122},"\u0143":{"d":"6,-237v2,-22,23,-19,29,-1v5,3,60,78,147,187r0,-189v2,-17,24,-16,25,1r0,226v-6,21,-21,11,-37,-10r-138,-177r0,187v-1,15,-26,17,-26,-1r0,-223xm93,-256v-4,-9,45,-54,52,-53v8,0,14,5,14,15v0,5,-11,16,-32,36v-11,10,-13,16,-22,15v-8,-1,-12,-6,-12,-13","w":225},"\u0144":{"d":"62,-215v-3,-9,45,-54,52,-53v8,0,14,5,14,15v0,5,-10,17,-32,36v-11,19,-28,19,-34,2xm92,-150v-34,0,-63,24,-61,71v-5,27,12,72,-13,79v-7,0,-11,-4,-13,-13r0,-148v-2,-20,25,-16,26,-4r0,14v53,-55,145,-12,145,58r0,82v0,6,-4,9,-12,11v-8,-1,-13,-5,-13,-12v1,-67,9,-137,-59,-138","w":192},"\u0179":{"d":"17,-253r179,0v16,6,13,17,-2,36r-148,191r149,0v18,0,15,27,0,26r-177,0v-7,0,-12,-5,-13,-14v41,-63,115,-149,163,-213r-149,0v-19,-1,-15,-26,-2,-26xm136,-305v-1,10,-38,62,-46,25v-2,-2,21,-35,33,-38v9,2,13,7,13,13","w":223},"\u017a":{"d":"113,-232v-1,10,-39,65,-46,25v-2,-2,20,-35,33,-37v9,2,13,6,13,12xm8,-165v2,-11,9,-14,18,-12r118,-1v20,9,12,17,-3,35r-94,118r97,0v17,2,16,25,-1,25r-123,0v-7,0,-11,-5,-12,-14v24,-38,78,-99,108,-139r-97,1v-7,-3,-11,-7,-11,-13","w":171},"\u017b":{"d":"19,-253r179,0v16,6,13,17,-2,36r-148,191r150,0v17,0,13,27,0,26r-178,0v-7,0,-11,-5,-12,-14v41,-62,114,-149,162,-213r-149,0v-18,-1,-14,-26,-2,-26xm92,-295v-2,-24,38,-30,41,-2v1,13,-7,22,-21,22v-11,0,-19,-6,-20,-20","w":232},"\u017c":{"d":"7,-165v2,-11,10,-14,18,-12r118,-1v20,9,12,17,-3,35r-93,118r96,0v17,2,16,25,0,25r-124,0v-7,0,-11,-5,-12,-14v25,-36,78,-99,108,-139r-97,1v-7,-3,-11,-7,-11,-13xm85,-197v-28,0,-26,-40,0,-42v12,0,19,8,20,23v0,9,-7,18,-20,19","w":176},"\u00a0":{}}});
/*!
 * 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":193,"face":{"font-family":"Comfortaa","font-weight":700,"font-stretch":"expanded","units-per-em":"360","panose-1":"2 15 8 3 0 0 0 6 0 3","ascent":"288","descent":"-72","x-height":"5","cap-height":"5","bbox":"-1.96357 -333.263 298.575 79.3391","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0030-U+017C"},"glyphs":{" ":{},"0":{"d":"85,5v-90,3,-106,-148,-67,-223v15,-29,40,-40,66,-40v86,0,106,144,67,223v-14,29,-40,40,-66,40xm84,-222v-40,0,-51,58,-50,100v1,43,9,89,50,91v36,1,50,-45,50,-96v0,-39,-12,-95,-50,-95","w":173},"1":{"d":"7,-227v-6,-21,34,-26,55,-31v11,2,16,8,16,17r0,229v0,24,-36,20,-36,1r0,-203v-19,6,-30,5,-35,-13","w":99},"2":{"d":"0,-177v0,-39,38,-79,81,-81v39,-2,83,37,82,81v0,25,-15,45,-36,70r-66,76r88,0v9,0,16,7,17,19v-2,12,-8,17,-18,17r-129,0v-23,-5,-20,-22,-4,-40r103,-117v19,-28,3,-68,-38,-68v-23,0,-40,19,-44,47v-3,22,-36,15,-36,-4","w":171},"3":{"d":"15,-186v-2,-36,28,-67,68,-71v54,-5,96,80,48,118v60,41,27,144,-51,144v-39,0,-80,-33,-80,-81v0,-20,36,-24,36,1v0,56,85,58,89,2v2,-29,-20,-46,-50,-49v-16,-11,-11,-34,14,-34v36,0,35,-61,-6,-65v-32,-4,-24,50,-50,51v-12,-3,-18,-8,-18,-16","w":167},"4":{"d":"119,-249v12,-15,37,-5,32,17r0,126v20,0,36,-4,39,17v2,17,-17,22,-39,19v-5,28,14,75,-19,75v-31,0,-12,-47,-17,-75r-101,1v-16,-6,-19,-24,-6,-34v70,-91,107,-140,111,-146xm56,-106r59,0r0,-76"},"5":{"d":"39,-68v10,50,89,47,91,-10v1,-41,-47,-52,-96,-47v-9,0,-15,-5,-18,-15r0,-99v-1,-8,10,-21,24,-17r101,0v21,0,25,38,0,38r-88,0r0,56v67,-9,110,23,115,84v3,40,-37,83,-85,83v-41,0,-81,-36,-83,-84v7,-25,42,-21,39,11","w":178},"6":{"d":"38,-88v-6,32,10,55,43,57v23,2,43,-16,44,-45v1,-23,-16,-43,-45,-44v-19,0,-33,11,-42,32xm82,5v-61,0,-111,-82,-62,-134r72,-124v14,-10,27,-5,31,13v-5,19,-35,62,-46,84v44,-5,83,35,85,80v2,39,-35,81,-80,81","w":167},"7":{"d":"119,-220r-94,0v-25,0,-19,-36,-1,-36r128,0v20,4,20,18,10,35r-126,221v-13,11,-33,1,-31,-15v1,-5,39,-74,114,-205","w":169},"8":{"d":"34,-142v-40,-36,-12,-116,50,-116v54,0,95,79,47,118v62,42,28,145,-52,145v-37,0,-80,-37,-79,-81v0,-28,12,-50,34,-66xm53,-198v-7,23,7,37,31,41v33,5,46,-57,7,-63v-19,-4,-33,4,-38,22xm125,-64v9,-31,-11,-54,-43,-57v-23,-2,-44,15,-45,45v0,24,16,45,45,45v20,0,36,-10,43,-33","w":170},"9":{"d":"124,-177v0,-55,-84,-59,-87,-3v-2,25,14,45,44,47v22,1,43,-17,43,-44xm81,-258v62,-4,100,80,56,140r-88,119v-13,9,-34,0,-31,-14v4,-19,44,-62,58,-83v-38,-1,-74,-36,-76,-81v-2,-40,36,-79,81,-81","w":170},"A":{"d":"125,-131r-22,-56r-20,56r42,0xm87,-247v17,-18,29,-7,39,19r81,216v-6,24,-37,22,-40,-9r-29,-73r-70,0r-35,93v-12,12,-35,5,-33,-13","w":209,"k":{"t":26,"j":33,"Y":31,"W":20,"V":33,"T":31}},"B":{"d":"117,-145v67,35,46,150,-39,150v-28,0,-78,11,-78,-18r0,-226v3,-33,36,-13,64,-18v48,-8,92,70,53,112xm36,-156v33,2,58,-4,59,-33v1,-25,-28,-34,-59,-31r0,64xm36,-31v46,3,84,-4,84,-45v0,-37,-39,-49,-84,-44r0,89","w":165,"k":{"j":40}},"C":{"d":"0,-126v0,-94,123,-175,208,-106v9,15,3,32,-17,31v-60,-47,-154,-4,-154,75v0,68,87,124,152,76v15,0,24,7,23,19v3,15,-48,36,-82,36v-63,0,-130,-59,-130,-131","w":228,"k":{"y":20,"v":15,"j":45,"f":16}},"D":{"d":"193,-125v0,64,-60,131,-130,130v-24,-1,-63,7,-63,-18r0,-227v2,-12,6,-18,13,-18r0,-2v13,3,34,3,49,1v65,-3,131,61,131,134xm157,-127v0,-54,-45,-102,-120,-95r0,191v69,8,120,-30,120,-96","w":200,"k":{"j":49,"T":25}},"E":{"d":"13,-260v42,4,97,2,141,1v11,0,17,7,19,20v-2,11,-9,18,-20,18r-116,0r0,79v35,6,93,-18,101,17v-1,34,-65,14,-101,19r0,75r120,0v9,0,14,6,16,19v-3,11,-9,17,-17,17r-139,0v-12,-2,-17,-8,-17,-18r0,-227v2,-12,6,-18,13,-18r0,-2","w":181,"k":{"y":21,"v":16,"j":32}},"F":{"d":"13,-260v42,4,97,2,141,1v11,0,17,7,19,20v-2,11,-9,18,-20,18r-116,0r0,79v35,6,93,-18,101,17v-1,34,-65,14,-101,19r0,94v-2,25,-37,20,-37,-1r0,-227v2,-12,6,-18,13,-18r0,-2","w":168,"k":{"z":11,"j":39,"J":26,"A":32}},"G":{"d":"210,-221v-8,41,-50,-6,-85,1v-40,-3,-88,47,-88,95v0,61,74,119,139,82r0,-52v-24,-1,-63,7,-60,-19v3,-31,50,-12,79,-17v31,2,18,60,18,91v0,41,-54,43,-83,45v-63,5,-130,-58,-130,-131v0,-92,120,-175,205,-108v3,4,5,9,5,13","w":219,"k":{"j":35}},"H":{"d":"0,-238v1,-14,7,-20,20,-19v11,1,16,8,16,16r0,99r115,0r0,-98v0,-24,36,-20,36,0r0,229v0,9,-6,15,-19,16v-11,-2,-17,-8,-17,-18r0,-93r-115,0r0,94v-1,21,-36,23,-36,-1r0,-225","k":{"j":28}},"I":{"d":"11,-242v-3,-21,28,-18,48,-18v25,0,23,38,1,37r3,0r0,192r-2,0v9,0,17,6,17,19v0,24,-27,16,-50,17v-26,1,-16,-39,-2,-36r0,-192r2,0v-11,0,-16,-6,-17,-19","w":94,"k":{"j":34}},"J":{"d":"37,-71v0,50,94,56,94,-8r0,-163v3,-21,37,-23,37,1r0,163v2,42,-36,83,-86,83v-39,0,-82,-38,-82,-84v4,-13,8,-19,19,-18v12,0,18,9,18,26","w":171,"k":{"j":25}},"K":{"d":"4,-239v-1,-26,36,-20,36,-1r0,102v86,-81,105,-115,125,-116v24,6,18,24,1,41r-78,79r92,113v1,32,-29,34,-44,3r-74,-90r-22,22v-6,33,17,91,-19,91v-10,0,-17,-6,-17,-18r0,-226","w":188,"k":{"y":12,"v":21,"j":32}},"L":{"d":"0,-238v1,-14,7,-20,20,-19v11,1,16,8,16,16r0,210r104,0v10,0,16,6,18,19v-3,11,-9,17,-18,17r-122,0v-10,0,-18,-6,-18,-18r0,-225","w":167,"k":{"\u00d3":28,"y":25,"v":42,"j":39,"Y":54,"W":40,"V":49,"T":56,"Q":25,"O":29,"G":27,"C":29}},"M":{"d":"47,-154r0,142v-1,21,-35,24,-36,-1r0,-224v2,-28,35,-27,38,1r81,180v1,-5,64,-149,86,-195v11,-12,33,-7,32,14r0,224v0,25,-37,21,-36,1r0,-142v-44,99,-67,150,-69,153v-20,14,-27,2,-39,-25","w":261,"k":{"j":33}},"N":{"d":"175,-66r0,-174v3,-22,37,-24,37,0r0,227v-6,26,-33,22,-47,-7r-129,-165r0,172v0,9,-5,18,-18,18v-10,0,-18,-6,-18,-18r0,-224v1,-26,31,-26,38,-4v6,7,52,65,137,175","w":225,"k":{"j":31}},"O":{"d":"0,-127v-2,-64,60,-131,131,-131v63,0,132,58,132,132v0,65,-57,131,-133,131v-65,0,-127,-58,-130,-132xm131,-221v-47,-1,-95,41,-95,96v0,46,43,94,97,94v46,0,93,-43,93,-95v0,-48,-41,-94,-95,-95","w":270,"k":{"j":45,"T":19}},"P":{"d":"153,-182v1,55,-48,90,-116,81r0,89v-1,21,-37,24,-37,-1r0,-225v1,-34,48,-16,77,-20v35,-4,76,34,76,76xm116,-180v2,-34,-37,-46,-79,-41r0,84v43,2,77,0,79,-43","w":161,"k":{"j":43,"J":31,"A":40}},"Q":{"d":"36,-125v0,66,90,125,150,77v-17,-22,-27,-23,-27,-39v10,-36,39,-6,53,12v40,-65,-6,-145,-81,-146v-47,-1,-95,41,-95,96xm131,-258v92,0,176,125,106,210v18,18,26,28,26,35v0,9,-6,15,-18,18v-7,3,-22,-17,-34,-26v-84,65,-208,2,-211,-106v-2,-64,60,-131,131,-131","w":272,"k":{"j":29,"T":24}},"R":{"d":"142,-185v1,29,-12,49,-38,65v39,67,58,103,58,105v-4,28,-33,25,-43,-5r-53,-91r-29,0r0,99v-1,21,-37,24,-37,-1r0,-225v1,-33,44,-17,72,-20v33,-3,68,32,70,73xm105,-177v7,-34,-26,-49,-68,-45r0,75v35,1,60,2,68,-30","w":164,"k":{"j":26}},"S":{"d":"52,-125v-68,-32,-49,-133,27,-133v24,0,54,11,61,42v0,9,-6,14,-18,16v-10,1,-25,-27,-45,-22v-16,0,-30,15,-31,35v0,15,9,25,27,32v34,-2,82,45,77,81v5,72,-109,111,-148,43v-7,-12,4,-26,16,-25v14,1,32,32,55,25v19,1,40,-18,40,-46v0,-28,-34,-43,-61,-48","w":156,"k":{"j":31}},"T":{"d":"17,-258r164,0v23,3,24,37,-3,37r-61,0r0,209v-1,21,-36,23,-36,-1r0,-208v-29,-3,-80,11,-81,-19v3,-12,9,-18,17,-18","w":208,"k":{"\u00f3":28,"\u00d3":31,"z":16,"y":26,"x":24,"w":20,"v":27,"u":20,"s":24,"r":17,"q":45,"p":43,"o":42,"n":32,"m":36,"j":47,"g":43,"f":33,"e":50,"d":42,"c":54,"a":49,"Q":29,"O":22,"J":47,"G":28,"C":33,"A":57}},"U":{"d":"103,5v-50,0,-97,-40,-96,-99r0,-144v1,-14,7,-20,20,-19v11,1,16,8,16,16v6,83,-26,209,58,210v30,1,57,-25,57,-61r0,-148v0,-24,36,-20,36,0r0,155v4,42,-44,90,-91,90","w":205,"k":{"j":33}},"V":{"d":"103,-66r69,-185v12,-14,32,-9,34,12r-84,227v-9,27,-38,21,-43,-12r-79,-217v0,-10,6,-18,19,-18v10,0,15,12,23,32","w":213,"k":{"j":47,"J":38,"A":41}},"W":{"d":"149,-175r-49,171v-15,17,-30,9,-38,-20v-33,-130,-59,-202,-62,-216v6,-27,31,-23,39,6r45,156v32,-111,48,-169,51,-173v15,-14,34,-7,36,21v3,8,18,59,44,152r50,-171v9,-17,38,-8,33,11r-68,236v-17,15,-29,4,-37,-22","w":305,"k":{"j":39,"A":27}},"X":{"d":"1,-234v-5,-25,26,-33,36,-12r70,90r77,-99v14,-7,27,-2,29,16v-17,35,-60,79,-83,113v26,40,62,69,83,114v-3,23,-30,22,-37,2r-69,-87r-77,98v-13,10,-33,0,-30,-16v12,-23,64,-83,84,-112v-54,-68,-81,-103,-83,-107","w":223,"k":{"y":18,"j":23,"G":25}},"Y":{"d":"94,-158v54,-71,49,-94,79,-99v26,11,14,25,-7,57r-53,80r0,106v-2,25,-31,26,-37,4r0,-110v-24,-41,-55,-75,-76,-119v4,-24,31,-24,38,-3","w":195,"k":{"\u00f3":28,"s":23,"q":32,"p":30,"o":34,"j":35,"g":29,"e":28,"d":28,"c":28,"a":30,"J":34,"A":42}},"Z":{"d":"17,-258r179,0v21,5,22,27,1,44r-141,183r140,0v12,2,18,8,17,19v-1,12,-8,17,-18,17r-177,0v-10,0,-16,-6,-18,-19v38,-62,111,-145,157,-207r-139,0v-26,-1,-19,-37,-1,-37","w":217,"k":{"j":20}},"a":{"d":"95,-149v-29,-1,-58,24,-59,60v-1,30,24,58,62,58v27,0,56,-25,56,-60v0,-29,-23,-57,-59,-58xm95,-185v47,-1,99,39,95,97v-2,33,16,93,-18,93v-9,0,-18,-7,-18,-20v-57,49,-154,5,-154,-76v0,-45,40,-93,95,-94","w":211,"k":{"j":43,"Y":54,"T":62}},"b":{"d":"106,5v-51,2,-98,-43,-98,-101r0,-144v0,-10,6,-17,19,-17v32,6,11,59,17,91v56,-53,156,2,156,75v0,47,-40,94,-94,96xm105,-151v-31,-2,-59,23,-61,61v-1,30,23,59,62,59v28,0,58,-24,58,-61v0,-29,-24,-57,-59,-59","w":211,"k":{"j":35,"Y":52,"V":23,"T":49}},"c":{"d":"0,-90v0,-75,106,-132,163,-68v8,14,-1,30,-16,29v-8,0,-34,-24,-53,-20v-28,-2,-56,24,-58,60v-3,47,67,80,103,40v14,-5,25,1,27,17v4,12,-42,37,-74,37v-43,0,-92,-46,-92,-95","w":176,"k":{"j":30,"Y":26,"T":49}},"d":{"d":"0,-91v0,-71,98,-129,156,-75v4,-31,-15,-90,19,-91v11,2,17,8,17,16r0,154v0,46,-49,99,-99,92v-43,3,-93,-47,-93,-96xm98,-151v-32,-2,-60,23,-62,61v-1,29,23,58,62,59v28,1,58,-24,58,-61v0,-29,-23,-57,-58,-59","w":204,"k":{"j":27}},"e":{"d":"0,-90v-2,-47,42,-94,95,-95v50,-2,98,41,96,100v0,12,-8,18,-18,18r-132,0v7,27,55,48,89,26v15,0,22,7,22,19v0,14,-22,24,-57,27v-46,2,-93,-39,-95,-95xm153,-103v-2,-16,-34,-53,-60,-45v-24,-3,-50,22,-55,45r115,0","w":198,"k":{"j":40,"Y":43,"T":56}},"f":{"d":"45,-182v-2,-48,24,-79,76,-76v20,1,24,34,-1,37v-26,-3,-41,9,-38,39v24,2,50,-8,51,19v1,18,-30,18,-51,17r0,134v0,20,-32,23,-37,1v3,-43,0,-90,1,-135v-23,-1,-44,6,-46,-19v-1,-15,23,-19,45,-17","w":147,"k":{"j":43,"J":31,"A":22}},"g":{"d":"1,-90v0,-47,44,-95,95,-95v52,-1,94,49,94,113r0,79v2,29,-53,71,-94,71v-37,0,-82,-22,-92,-64v3,-22,32,-23,38,2v30,44,117,35,112,-31v-57,51,-153,0,-153,-75xm97,-149v-32,-2,-59,21,-60,60v-1,29,22,58,61,58v28,0,56,-22,56,-60v0,-28,-23,-56,-57,-58","w":201,"k":{"Y":45,"T":50}},"h":{"d":"94,-150v-28,0,-52,21,-49,62v-6,33,17,93,-19,93v-9,0,-15,-5,-18,-16r0,-228v0,-24,37,-21,37,-2r0,70v51,-41,135,0,135,66r0,93v0,20,-34,24,-36,1v-4,-62,17,-139,-50,-139","k":{"j":35,"Y":46,"T":54}},"i":{"d":"18,-213v0,-25,36,-20,36,-2v0,13,-3,21,-18,21v-9,0,-15,-7,-18,-19xm18,-166v-2,-26,36,-23,36,-4r0,158v0,9,-5,17,-18,17v-10,0,-18,-6,-18,-18r0,-153","w":75,"k":{"j":30}},"j":{"d":"100,-5v1,44,-31,81,-82,82v-10,0,-18,-6,-18,-19v0,-10,6,-18,19,-18v27,0,45,-17,45,-51r0,-157v0,-10,7,-16,19,-18v12,2,17,9,17,18r0,163xm82,-230v24,3,25,35,-1,37v-23,-5,-24,-32,1,-37","w":115},"k":{"d":"176,-168v-3,20,-79,56,-73,57r72,91v-2,36,-24,28,-46,0r-57,-71r-22,14v-5,30,16,79,-19,82v-9,0,-14,-5,-17,-16r0,-229v-1,-26,36,-20,36,-2r0,122v63,-39,86,-67,108,-67v10,0,16,6,18,19","w":185,"k":{"j":27,"T":44}},"l":{"d":"11,-237v1,-14,7,-20,20,-19v11,1,17,8,17,16r0,209v15,-1,25,2,25,19v0,22,-23,16,-44,17v-10,0,-18,-6,-18,-18r0,-224","w":83,"k":{"j":27}},"m":{"d":"89,-146v-56,0,-40,79,-42,134v-1,20,-36,24,-36,0r0,-150v-1,-22,30,-27,36,-9v28,-20,80,-12,99,16v5,-10,32,-26,58,-27v37,-3,77,31,77,75r0,96v0,9,-6,15,-18,16v-11,-2,-17,-7,-17,-17v0,-56,24,-133,-44,-134v-18,-1,-38,15,-38,38r0,96v-1,25,-35,19,-35,0v0,-55,13,-134,-40,-134","w":303,"k":{"j":29,"Y":39,"T":46}},"n":{"d":"107,-148v-33,0,-59,21,-57,67v-6,31,16,86,-19,86v-10,0,-17,-6,-17,-18r0,-152v-2,-26,36,-23,36,-4r0,3v55,-48,149,1,149,71r0,84v0,9,-7,15,-19,16v-32,-6,-14,-59,-17,-91v-3,-35,-18,-62,-56,-62","w":210,"k":{"j":22,"Y":33,"T":39}},"o":{"d":"0,-89v0,-47,43,-95,95,-95v47,0,94,47,94,95v0,49,-41,94,-98,94v-42,0,-91,-46,-91,-94xm153,-91v0,-73,-112,-74,-116,0v-2,32,23,59,60,60v28,1,56,-23,56,-60","w":195,"k":{"j":35,"Y":40,"T":45}},"p":{"d":"199,-90v0,69,-96,126,-153,74v-6,34,16,87,-18,94v-9,0,-15,-5,-18,-17r0,-145v0,-55,34,-96,95,-101v47,-4,94,47,94,95xm104,-148v-29,0,-56,22,-57,59v-1,29,24,57,60,57v28,0,55,-24,56,-60v1,-27,-26,-56,-59,-56","w":206,"k":{"j":32,"Y":40,"T":52}},"q":{"d":"4,-89v0,-47,43,-94,94,-94v50,0,94,44,94,100r0,144v-2,25,-36,20,-36,2r0,-78v-57,51,-152,0,-152,-74xm97,-146v-28,0,-56,21,-57,58v0,29,23,57,59,57v27,1,56,-23,56,-60v0,-27,-26,-55,-58,-55","w":202,"k":{"Y":43,"V":21,"T":46}},"r":{"d":"141,-144v-48,-15,-82,4,-87,54v-4,34,17,95,-19,95v-10,0,-18,-6,-18,-18r0,-153v-1,-28,40,-24,37,-1v15,-13,34,-20,57,-20v16,1,48,6,48,26v0,11,-8,17,-18,17","w":162,"k":{"j":30,"Z":35,"T":39,"J":41}},"s":{"d":"82,-32v16,0,32,-9,42,-25v0,-2,-2,-5,-7,-5v-87,-24,-102,-7,-113,-59v-6,-26,42,-63,79,-63v32,0,58,14,77,44v5,29,-29,34,-40,9v-23,-23,-66,-22,-79,11v64,25,117,9,120,63v1,27,-40,64,-81,62v-29,-1,-75,-15,-75,-53v0,-9,6,-16,19,-17v14,2,32,40,58,33","w":170,"k":{"j":33,"Y":45,"T":41}},"t":{"d":"101,5v-39,4,-67,-16,-67,-58r0,-93v-18,2,-35,-4,-34,-18v3,-22,14,-17,34,-17v2,-26,-9,-72,19,-69v29,3,13,42,17,69v22,1,41,-7,44,17v2,18,-22,20,-44,18v8,42,-25,120,33,116v9,0,15,6,16,18v-2,11,-8,17,-18,17","w":121,"k":{"j":25}},"u":{"d":"105,-31v29,2,55,-24,57,-60v2,-33,-13,-92,19,-95v11,3,17,9,17,18r0,157v0,9,-7,15,-19,16v-12,-2,-18,-7,-17,-19v-62,47,-155,3,-150,-80v2,-32,-13,-89,19,-92v33,7,13,55,18,87v-2,44,21,66,56,68","w":208,"k":{"j":27,"T":44}},"v":{"d":"0,-165v5,-31,27,-24,41,4r52,106v38,-81,59,-123,62,-126v12,-10,34,-1,30,13v-7,27,-60,129,-78,167v-19,14,-27,3,-39,-22v-41,-88,-65,-134,-68,-142","k":{"j":38,"Z":42,"T":44,"A":28}},"w":{"d":"116,-105r-33,102v-9,14,-29,9,-34,-7r-49,-154v9,-30,29,-22,40,11r27,83v21,-68,33,-103,35,-106v15,-14,27,-5,35,19r28,87v20,-64,32,-100,34,-105v11,-16,34,-4,33,12r-52,161v-18,15,-28,4,-37,-22","w":242,"k":{"j":39,"Y":23,"T":58}},"x":{"d":"18,-182v19,0,56,63,61,66v6,-7,21,-29,49,-61v8,-10,35,-1,30,15v-4,12,-44,56,-56,74v38,49,57,65,56,76v-2,21,-31,22,-40,0r-39,-48v-41,46,-40,60,-61,65v-30,-10,-15,-26,8,-55r30,-38v-18,-26,-43,-45,-56,-76v2,-12,8,-18,18,-18","w":163,"k":{"j":27,"T":37}},"y":{"d":"80,-67v29,-71,45,-108,47,-111v11,-10,32,-2,30,13r-94,226v-10,9,-33,1,-29,-14v0,-2,9,-25,27,-69r-58,-144v9,-26,30,-19,40,11v24,68,29,68,37,88","w":162,"k":{"j":32,"Z":21,"Y":17,"X":14,"T":54,"A":22}},"z":{"d":"12,-184v39,4,89,2,130,1v26,9,18,22,0,44r-86,108r86,0v23,2,23,36,0,36r-124,0v-31,-11,-15,-26,10,-58r75,-94v-34,-4,-97,14,-103,-18v1,-13,9,-14,12,-19","w":172,"k":{"j":32,"Y":11,"T":53}},"\u00d3":{"d":"103,-282v0,-6,23,-46,40,-44v12,2,18,9,18,18v2,9,-58,75,-58,26xm0,-126v0,-65,60,-131,131,-131v63,0,131,59,131,132v0,65,-58,130,-132,130v-64,0,-130,-55,-130,-131xm131,-220v-47,-1,-95,41,-95,96v0,46,43,93,97,93v46,0,93,-44,93,-95v0,-47,-41,-93,-95,-94","w":269,"k":{"j":30,"T":23}},"\u00f3":{"d":"128,-232v-1,17,-47,73,-56,25v-1,-3,21,-42,38,-42v12,3,18,8,18,17xm0,-88v0,-46,43,-93,93,-93v47,0,93,46,93,93v0,47,-40,93,-96,93v-41,0,-90,-46,-90,-93xm92,-145v-28,0,-55,22,-56,59v-1,28,23,55,59,55v27,0,55,-23,55,-59v0,-28,-26,-55,-58,-55","w":196,"k":{"j":38,"Y":28,"T":20}},"\u0104":{"d":"128,-130r-22,-57r-21,57r43,0xm213,-7v7,27,-7,36,-20,45v9,10,53,-5,49,23v-3,23,-23,16,-45,18v-38,3,-58,-60,-20,-78v-2,-7,-14,-38,-35,-94r-72,0r-36,96v-13,12,-36,4,-33,-14r89,-238v17,-18,29,-7,38,18v52,147,85,221,85,224","w":235},"\u0105":{"d":"96,-146v-29,-1,-58,24,-59,60v-1,30,24,58,62,58v27,0,57,-26,57,-60v0,-29,-24,-58,-60,-58xm96,-182v47,-2,96,40,96,97r0,100v3,14,-16,12,-20,23v13,9,48,-7,48,22v0,23,-23,15,-45,17v-36,4,-57,-59,-20,-76r0,-12v-57,49,-154,4,-154,-77v0,-46,40,-92,95,-94","w":218},"\u0106":{"d":"171,-312v4,4,-37,46,-51,55v34,-4,60,6,88,25v9,15,3,32,-17,31v-60,-47,-154,-4,-154,75v0,68,87,124,152,76v15,0,24,7,23,19v3,15,-48,36,-82,36v-63,0,-130,-59,-130,-131v0,-61,49,-119,112,-130v-12,-2,-19,-8,-18,-21v5,-10,67,-95,77,-35","w":219},"\u0107":{"d":"0,-90v0,-75,106,-132,163,-68v8,14,-1,30,-16,29v-8,0,-34,-24,-53,-20v-28,-2,-56,24,-58,60v-3,47,67,80,103,40v14,-5,25,1,27,17v4,12,-42,37,-74,37v-43,0,-92,-46,-92,-95xm57,-204v1,-16,77,-96,77,-39v0,6,-13,19,-34,40v-11,11,-16,17,-25,16v-12,-1,-18,-7,-18,-17","w":171},"\u0118":{"d":"151,79v-36,2,-64,-4,-65,-41v0,-13,6,-23,18,-30r0,-3v-33,-5,-99,14,-99,-18r0,-226v2,-12,6,-18,13,-18r141,-1v11,0,17,7,19,20v-2,11,-9,17,-20,17r-116,0r0,79v35,6,93,-17,101,18v-2,32,-65,13,-101,18r0,75r120,0v9,0,14,6,16,19v-4,19,-18,17,-38,17v0,-2,-1,-3,-1,-4v0,19,3,34,-17,36v-3,2,0,8,5,7v18,-2,40,0,38,18v0,8,-5,13,-14,17","w":184},"\u0119":{"d":"154,-101v-2,-15,-33,-52,-59,-44v-24,-3,-47,23,-54,44r113,0xm139,76v-36,2,-64,-4,-65,-41v0,-13,6,-23,17,-30v-43,0,-85,-41,-87,-93v-2,-46,41,-93,93,-94v48,-1,97,39,94,99v-1,12,-8,17,-18,17r-129,0v8,26,54,49,87,25v15,0,23,7,22,19v0,11,-8,18,-25,22v-1,17,1,32,-18,34v-4,3,-1,7,5,7v18,-1,40,0,38,18v0,8,-5,13,-14,17","w":197},"\u0141":{"d":"33,-126r0,-112v1,-14,6,-20,19,-19v11,1,17,8,17,16r0,89v27,-18,32,-27,44,-25v23,4,23,35,-6,45r-38,27r0,74r103,0v10,0,16,6,18,19v-3,11,-9,17,-18,17r-122,0v-29,-2,-13,-56,-17,-84v-13,5,-27,-7,-27,-18v0,-9,10,-19,27,-29","w":189},"\u0142":{"d":"22,-64v-41,-13,-7,-42,17,-55r0,-118v1,-14,7,-20,20,-19v11,1,17,8,17,16r0,94v21,-13,23,-19,34,-18v9,0,17,7,17,20v0,16,-39,33,-51,45r0,68v15,-1,25,2,25,19v0,22,-23,16,-44,17v-28,0,-15,-50,-18,-77v-10,7,-10,6,-17,8","w":122},"\u0143":{"d":"93,-256v2,-14,76,-96,76,-38v0,6,-11,20,-33,40v-13,22,-41,21,-43,-2xm182,-66r0,-174v2,-23,36,-23,36,0r0,227v-6,26,-33,22,-47,-7r-128,-165r0,172v0,22,-37,25,-37,0r0,-224v1,-26,31,-26,38,-4v6,7,53,65,138,175","w":225},"\u0144":{"d":"62,-215v3,-15,65,-94,77,-38v0,6,-12,20,-34,40v-13,22,-41,21,-43,-2xm97,-145v-32,-1,-56,23,-56,66v0,31,15,84,-18,84v-9,0,-18,-5,-18,-17r0,-150v-2,-26,37,-21,36,-3r0,2v55,-46,146,2,146,70r0,82v0,9,-7,15,-19,16v-32,-6,-14,-58,-17,-89v-3,-34,-18,-60,-54,-61","w":192},"\u0179":{"d":"22,-258r179,0v22,4,24,26,2,44r-141,183r139,0v25,0,21,36,0,36r-178,0v-10,0,-16,-6,-18,-19v38,-62,111,-145,157,-207r-138,0v-26,0,-21,-38,-2,-37xm147,-305v0,17,-48,73,-57,25v-1,-4,23,-43,39,-43v12,3,18,9,18,18","w":223},"\u017a":{"d":"123,-232v0,17,-48,73,-56,25v-1,-4,23,-42,39,-42v12,3,17,8,17,17xm19,-184v39,4,90,2,131,1v25,10,17,23,0,44r-87,108r87,0v22,2,21,36,-1,36r-124,0v-10,0,-15,-6,-17,-18v19,-36,76,-96,103,-134v-34,-5,-97,14,-103,-18v1,-13,8,-15,11,-19","w":171},"\u017b":{"d":"24,-258r180,0v21,5,22,27,1,44r-141,183r139,0v25,0,21,36,0,36r-177,0v-10,0,-16,-6,-18,-19v38,-62,111,-145,156,-207r-138,0v-25,0,-20,-38,-2,-37xm92,-295v-3,-29,47,-37,51,-3v2,17,-8,29,-26,29v-14,0,-23,-9,-25,-26","w":232},"\u017c":{"d":"19,-184v39,4,89,2,130,1v26,9,18,22,0,44r-86,108r86,0v23,2,23,36,0,36r-124,0v-31,-11,-15,-26,10,-58r75,-94v-34,-4,-97,14,-103,-18v1,-13,9,-14,12,-19xm89,-192v-33,-1,-32,-52,1,-52v34,0,34,50,0,52r-1,0","w":176},"\u00a0":{}}});

/* -------------------------------------------------- *
 * 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([
	    'http://foto.perfect-sps.pl/wp-content/themes/dev/images/loading.gif',
	    'http://foto.perfect-sps.pl/wp-content/themes/dev/images/backward1.png',
	    'http://foto.perfect-sps.pl/wp-content/themes/dev/images/play.png',
	    'http://foto.perfect-sps.pl/wp-content/themes/dev/images/play1.png',
	    'http://foto.perfect-sps.pl/wp-content/themes/dev/images/pause.png',
	    'http://foto.perfect-sps.pl/wp-content/themes/dev/images/pause1.png',
	    'http://foto.perfect-sps.pl/wp-content/themes/dev/images/forward1.png',
	    'http://foto.perfect-sps.pl/wp-content/themes/dev/images/close.png',
	    'http://foto.perfect-sps.pl/wp-content/themes/dev/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);

