/**
 * 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":178,"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 -326 335.035 76.2676","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+01FF"},"glyphs":{" ":{"w":89},"\u00a0":{"w":89},"!":{"d":"25,-242v3,-16,28,-15,28,1r0,168v-1,17,-29,14,-28,0r0,-169xm19,-18v0,-26,37,-20,37,-2v0,12,-5,20,-19,20v-9,0,-18,-6,-18,-18","w":89},"\"":{"d":"14,-260v0,-19,28,-16,27,-2v-4,41,0,56,-14,56v-13,-1,-13,-38,-13,-54xm57,-262v2,-12,25,-18,27,1v-6,42,0,52,-14,55v-14,-1,-9,-40,-13,-56","w":97},"#":{"d":"147,-170v16,-61,5,-75,28,-82v9,3,13,7,12,14v0,3,-4,26,-13,68v18,2,34,-7,37,13v-2,20,-24,11,-43,13r-6,34v17,0,42,-3,40,13v-3,20,-26,10,-46,12v-18,60,-3,78,-29,85v-8,-2,-12,-6,-12,-12r15,-73r-38,0v-5,4,-14,130,-42,73r14,-73v-17,-1,-31,6,-34,-13v-1,-14,24,-12,40,-12r7,-34v-16,0,-39,2,-37,-13v3,-20,22,-11,42,-13v17,-62,4,-78,28,-81v7,0,11,4,12,13r-13,68r38,0xm104,-144r-7,34r38,0r7,-34r-38,0","w":234},"$":{"d":"143,-224v-4,32,-28,1,-44,-5r0,81v67,17,74,126,0,144v1,15,0,36,-13,35v-28,-1,3,-36,-29,-34v-21,-8,-38,-18,-45,-36v6,-21,20,-15,32,2v10,7,20,9,28,10r0,-101v-64,-14,-65,-113,0,-126v0,-16,-2,-39,15,-36v13,-2,13,21,12,35v11,0,39,16,44,31xm72,-224v-32,14,-31,57,0,72r0,-72xm99,-118r0,90v38,-20,38,-69,0,-90"},"%":{"d":"18,-189v0,-32,23,-61,65,-63v31,-1,62,30,62,62v0,31,-24,63,-64,64v-32,1,-62,-26,-63,-63xm219,-250v10,-6,23,2,21,12v0,3,-9,15,-25,36r-151,199v-9,7,-23,0,-21,-11v0,-4,7,-13,19,-28xm90,-226v-25,-6,-46,10,-46,38v0,20,13,36,39,36v19,0,36,-14,36,-37v0,-18,-10,-32,-29,-37xm139,-61v0,-34,28,-64,63,-66v31,-2,63,25,63,65v0,31,-26,61,-64,62v-30,2,-62,-26,-62,-61xm165,-70v-6,23,10,42,38,44v41,2,51,-69,6,-75v-25,-3,-38,7,-44,31","w":283},"&":{"d":"36,-187v-9,-32,14,-64,53,-65v26,-1,51,20,53,55v1,20,-18,39,-34,55r57,57v12,-10,19,-27,36,-31v24,9,14,24,-10,43r-7,8v13,16,33,25,41,47v-16,33,-45,-15,-61,-28v-38,39,-36,42,-73,46v-33,3,-65,-29,-68,-69v-2,-26,23,-52,45,-73v-22,-20,-32,-35,-32,-45xm94,-224v-17,-4,-32,7,-32,27v0,9,9,21,26,35v29,-24,38,-44,6,-62xm88,-122v-27,26,-37,34,-37,55v0,19,13,36,39,39v19,2,40,-23,55,-37","w":256},"'":{"d":"16,-258v0,-19,29,-15,28,-2v-3,41,-2,56,-14,56v-13,0,-10,-39,-14,-54","w":60},"(":{"d":"120,-269v-41,99,-52,225,1,329v-9,23,-23,13,-33,-11v-42,-106,-41,-223,9,-325v5,-11,24,-3,23,7","w":133},")":{"d":"12,-265v7,-25,21,-19,32,8v42,107,40,227,-9,327v-10,6,-21,3,-23,-10v45,-99,52,-220,0,-325","w":133},"*":{"d":"92,-274v26,4,3,31,5,45v11,-8,43,-31,45,-3v1,16,-27,11,-45,11v12,9,47,32,16,44v-16,2,-15,-27,-22,-37v-5,13,-5,36,-21,37v-36,-12,11,-35,15,-44v-18,0,-47,6,-45,-13v4,-28,32,0,47,4v-3,-16,-20,-40,5,-44","w":180},"+":{"d":"77,-144v2,-20,-7,-52,15,-52v19,0,12,33,13,52v20,1,55,-6,53,14v-2,24,-30,11,-53,14v-1,20,6,55,-14,53v-24,-2,-11,-32,-14,-53v-22,-4,-53,12,-53,-15v0,-18,34,-12,53,-13"},",":{"d":"45,0v-35,-4,-34,-50,0,-50v26,0,27,19,28,39v1,25,-18,45,-43,53v-13,-4,-12,-21,6,-22v6,-4,14,-12,17,-22","w":97},"-":{"d":"12,-101v8,-26,55,-13,84,-13v7,0,11,5,13,14v-7,29,-56,8,-84,14v-8,0,-12,-5,-13,-15","w":117},"\u00ad":{"d":"12,-101v8,-26,55,-13,84,-13v7,0,11,5,13,14v-7,29,-56,8,-84,14v-8,0,-12,-5,-13,-15","w":117},".":{"d":"23,-24v-3,-27,44,-34,48,-2v1,14,-8,26,-24,26v-13,0,-22,-8,-24,-24","w":97},"\/":{"d":"98,-260v8,-12,31,-5,26,10v-57,164,-92,251,-98,266v-9,10,-23,7,-25,-8v0,-3,32,-93,97,-268","w":135},"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"},"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},":":{"d":"30,-146v0,-29,38,-27,43,-3v3,15,-5,23,-22,25v-15,-2,-21,-10,-21,-22xm52,-6v-31,-1,-25,-47,0,-44v25,0,30,41,0,44","w":97},";":{"d":"25,-141v0,-29,39,-29,44,-3v3,14,-6,22,-22,25v-15,-2,-22,-10,-22,-22xm46,-45v20,-4,28,9,28,34v0,22,-15,40,-43,46v-14,-1,-10,-21,1,-20v11,2,27,-15,20,-17v-28,-2,-32,-38,-6,-43","w":97},"\u037e":{"d":"25,-141v0,-29,39,-29,44,-3v3,14,-6,22,-22,25v-15,-2,-22,-10,-22,-22xm46,-45v20,-4,28,9,28,34v0,22,-15,40,-43,46v-14,-1,-10,-21,1,-20v11,2,27,-15,20,-17v-28,-2,-32,-38,-6,-43","w":97},"<":{"d":"144,-194v26,6,16,27,-8,36v-1,1,-25,17,-75,47v2,2,33,22,94,60v8,9,4,24,-10,24v-37,-18,-83,-51,-120,-72v-11,-14,-2,-20,15,-30v68,-41,101,-65,104,-65"},"=":{"d":"37,-146r108,0v7,0,11,5,13,14v-2,9,-6,13,-13,13r-108,0v-8,0,-12,-5,-13,-15v2,-8,6,-12,13,-12xm38,-88r106,0v19,0,16,28,1,27r-109,0v-16,-2,-16,-27,2,-27"},">":{"d":"123,-114v-68,-46,-91,-47,-99,-69v2,-9,6,-14,14,-14v22,15,136,71,125,85v0,7,-7,10,-17,16v-69,43,-104,66,-106,66v-26,-7,-15,-20,7,-35"},"?":{"d":"10,-177v0,-34,36,-75,77,-75v63,0,109,96,46,137v-20,13,-31,27,-31,49v0,18,-26,14,-26,2v-1,-34,15,-51,44,-74v36,-28,14,-87,-35,-88v-26,-1,-47,23,-50,54v-6,13,-25,6,-25,-5xm87,1v-24,-2,-22,-36,2,-36v8,0,17,6,17,19v-2,11,-9,17,-19,17","w":172},"@":{"d":"-1,-110v0,-84,79,-166,172,-166v82,0,166,79,164,167v-2,59,-23,97,-78,97v-27,0,-33,-8,-29,-31v-60,62,-163,21,-166,-68v-2,-47,42,-94,96,-96v47,-3,97,41,97,99r0,67v34,6,52,-30,52,-71v0,-67,-68,-137,-139,-137v-71,0,-141,60,-141,141v0,102,129,183,223,115v9,2,14,6,14,14v4,14,-60,38,-100,38v-85,0,-165,-82,-165,-169xm158,-179v-34,-1,-67,28,-69,69v-1,35,27,69,72,69v31,0,66,-30,66,-70v0,-34,-27,-66,-69,-68","w":354},"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","w":210,"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":{"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":{"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":{"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}},"[":{"d":"43,-262v4,-31,49,-8,79,-16v16,4,19,22,2,28r-53,0r0,297v22,3,63,-9,64,14v-4,24,-53,9,-78,13v-9,-2,-14,-6,-14,-14r0,-322","w":136},"\\":{"d":"0,-258v1,-9,5,-14,14,-14v9,0,13,11,20,30v62,173,65,172,90,244v-11,24,-24,16,-35,-15v-51,-150,-85,-231,-89,-245","w":121},"]":{"d":"5,-264v0,-25,51,-8,78,-14v8,2,13,6,13,13r0,327v-5,22,-53,12,-78,12v-15,0,-19,-25,0,-28v15,3,34,0,51,1r0,-297v-22,-2,-64,8,-64,-14","w":133},"^":{"d":"8,-164v24,-32,49,-131,82,-68v25,48,42,58,41,70v0,7,-5,11,-15,12v-13,-2,-35,-49,-47,-63r-39,60v-11,6,-19,3,-22,-11","w":165},"_":{"d":"13,5r156,0v19,0,15,28,0,27r-156,0v-7,0,-12,-5,-13,-15v2,-8,7,-12,13,-12","w":168,"k":{"_":7}},"`":{"d":"90,-183v-10,-2,-81,-54,-40,-65v17,4,55,47,53,52v-2,9,-6,13,-13,13","w":132},"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","w":210,"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","w":210,"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","w":210,"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","k":{"j":32,"Y":11,"T":53}},"{":{"d":"83,-241v-2,-29,25,-38,62,-38v17,0,20,24,2,26v-16,1,-38,-6,-38,13v0,42,9,93,-8,123v20,27,9,84,9,126v0,24,49,-3,49,25v0,14,-23,12,-38,12v-53,1,-37,-88,-37,-140v0,-19,-38,-2,-38,-24v0,-22,36,-3,37,-22r0,-101"},"|":{"d":"76,-271v1,-19,26,-17,26,-1r0,335v-3,14,-26,15,-26,-3r0,-331"},"}":{"d":"19,-264v0,-19,22,-12,39,-13v52,-2,36,84,36,135v0,20,39,1,36,26v-2,19,-42,-1,-37,28v-6,60,29,131,-62,131v-16,0,-15,-26,-1,-26v15,0,37,5,37,-11v0,-42,-9,-96,9,-124v-17,-30,-8,-81,-8,-123v0,-25,-49,4,-49,-23"},"~":{"d":"33,-128v0,-29,52,-27,74,-7v11,2,19,-1,28,-4v11,2,17,8,17,17v-2,23,-54,29,-75,7v-10,-5,-19,2,-29,3v-10,-2,-15,-8,-15,-16"},"\u0192":{"d":"21,35v31,2,47,-11,46,-45r0,-133v-20,-3,-49,9,-49,-15v0,-16,28,-12,48,-12v-3,-50,18,-84,75,-80v16,1,16,25,-2,27v-33,-4,-49,14,-45,53v21,3,53,-12,53,15v0,17,-34,11,-53,12r0,150v-5,34,-34,56,-74,56v-7,0,-10,-5,-12,-14v1,-9,5,-14,13,-14","w":171},"\u01fa":{"d":"96,-258v0,15,22,13,22,1v1,-15,-22,-17,-22,-1xm107,-193v-12,22,-19,49,-29,72r57,0xm116,-326v27,7,2,27,-8,39v25,-3,39,45,10,55r87,221v-6,18,-27,13,-30,-10r-30,-75r-77,0r-37,92v-9,8,-24,3,-23,-9r86,-219v-16,-7,-23,-40,-2,-50v-16,-10,10,-36,24,-44","w":222},"\u01fb":{"d":"92,-254v37,-9,55,53,13,63v-21,4,-38,-6,-39,-32v0,-15,8,-27,26,-31xm98,-234v-17,-1,-14,24,-2,24v9,0,13,-3,14,-12v-1,-8,-5,-12,-12,-12xm7,-89v-2,-43,37,-85,88,-87v44,-1,90,36,89,90r0,74v0,13,-22,17,-26,2r1,-17v-54,57,-149,19,-152,-62xm95,-151v-31,0,-62,24,-63,63v-1,32,26,62,66,63v28,1,60,-27,60,-64v0,-32,-24,-62,-63,-62xm125,-304v0,11,-39,64,-46,25v-2,-2,20,-35,33,-37v9,2,13,6,13,12","w":205},"\u01fc":{"d":"139,-248v29,-10,77,-1,113,-4v5,0,9,4,11,12v-2,9,-6,14,-13,14r-88,0r0,99v26,5,77,-13,80,15v0,7,-4,11,-12,11r-68,0r0,75r88,0v15,0,19,26,0,26r-101,0v-7,0,-11,-4,-13,-13r0,-88r-49,0r-54,97v-9,8,-22,4,-23,-10xm101,-127r35,0r0,-61xm194,-309v-2,9,-38,62,-46,25v-2,-2,20,-36,33,-38v9,2,13,7,13,13","w":283},"\u01fd":{"d":"187,-71v9,38,58,58,97,35v9,2,13,6,13,13v3,12,-25,23,-51,23v-22,0,-43,-8,-62,-26v6,21,-16,37,-25,16r0,-18v-53,57,-148,20,-151,-61v-2,-43,37,-87,88,-87v32,-1,54,16,76,43v14,-23,39,-42,75,-43v44,-1,89,37,87,93v-1,8,-5,12,-12,12r-135,0xm96,-152v-32,-2,-61,25,-63,64v-1,31,24,62,65,62v29,0,61,-28,61,-63v0,-32,-26,-61,-63,-63xm308,-96v3,-23,-34,-58,-62,-54v-28,-3,-57,25,-61,54r123,0xm203,-227v-1,10,-38,62,-46,25v-2,-2,21,-35,33,-38v9,2,13,7,13,13","w":358},"\u01fe":{"d":"40,-45v-69,-80,-6,-205,96,-206v31,0,61,12,87,35v19,-19,25,-28,33,-27v21,9,13,21,-6,36r-11,10v60,83,-3,197,-104,197v-27,0,-53,-9,-77,-27v-22,20,-25,26,-35,27v-20,-8,-13,-22,10,-38v0,-1,3,-4,7,-7xm204,-199v-64,-58,-168,-13,-167,75v0,23,7,43,22,61xm77,-45v82,65,204,-40,143,-134xm167,-308v-1,10,-38,62,-46,25v-2,-2,20,-36,33,-38v9,2,13,7,13,13","w":290},"\u01ff":{"d":"127,-236v-1,11,-38,64,-46,25v-2,-2,20,-35,33,-37v9,2,13,6,13,12xm26,-36v-60,-72,39,-181,120,-123v14,-19,29,-29,36,-5v0,3,-6,11,-18,22v47,55,7,143,-71,142v-16,0,-33,-6,-50,-18v-11,12,-14,18,-24,17v-18,-6,-11,-21,7,-35xm127,-141v-50,-35,-120,30,-83,87xm61,-36v55,39,125,-31,85,-88","w":208}}});

/*!
 * 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":178,"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 -332 346.033 81.7361","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+01FF"},"glyphs":{" ":{"w":89},"\u00a0":{"w":89},"!":{"d":"25,-243v2,-22,38,-21,38,1r0,169v-2,25,-38,20,-38,0r0,-170xm19,-18v0,-33,47,-27,47,-2v0,15,-6,25,-24,25v-12,0,-23,-7,-23,-23","w":89},"\"":{"d":"14,-260v0,-26,40,-21,38,-2v-4,44,-3,60,-19,61v-19,1,-19,-39,-19,-59xm57,-262v2,-21,34,-23,38,1v-9,47,1,60,-20,60v-19,1,-14,-42,-18,-61","w":97},"#":{"d":"148,-175v17,-61,2,-75,33,-82v33,18,11,24,4,82v20,-2,33,-2,37,18v-2,22,-22,18,-44,18r-5,23v20,-1,41,1,39,19v-3,28,-21,16,-46,18v-18,62,-2,76,-34,85v-35,-11,-3,-57,-3,-85r-31,0v-8,30,-2,90,-30,85v-37,-7,-5,-67,-5,-85v-32,9,-47,-31,-15,-37r23,0r5,-23v-19,2,-37,-3,-36,-19v3,-26,21,-15,43,-17v17,-62,5,-78,32,-81v33,6,7,56,5,81r28,0xm113,-139r-4,23r27,0r5,-23r-28,0","w":234},"$":{"d":"109,-37v25,-15,25,-57,0,-71r0,71xm72,-216v-19,7,-18,48,0,56r0,-56xm154,-224v0,30,-32,18,-45,2r0,70v31,9,55,41,55,76v0,35,-18,61,-55,76v2,19,-3,39,-18,37v-19,-3,-20,-16,-19,-37v-26,5,-52,-18,-60,-39v2,-12,9,-19,19,-19v8,-2,30,28,41,26r0,-93v-30,-10,-49,-35,-49,-70v0,-28,24,-53,49,-65v-9,-33,30,-53,37,-18r0,18v9,-1,41,21,45,36"},"%":{"d":"14,-193v-1,-34,26,-66,71,-68v32,-2,67,33,67,68v0,35,-27,66,-69,69v-35,2,-68,-29,-69,-69xm220,-253v12,-11,33,-1,30,15v-48,78,-122,164,-177,240v-14,7,-33,0,-30,-16v0,-5,8,-15,20,-31xm91,-224v-21,-6,-38,8,-40,32v-2,35,59,44,64,6v3,-21,-5,-32,-24,-38xm144,-59v-3,-37,30,-70,69,-72v33,-2,67,28,68,71v1,33,-28,67,-70,67v-32,0,-64,-30,-67,-66xm218,-94v-39,-9,-53,55,-15,63v23,5,42,-6,42,-32v0,-15,-9,-27,-27,-31","w":283},"&":{"d":"93,-115v-24,25,-32,28,-32,48v0,37,55,47,75,9r7,-7xm93,-169v24,-20,31,-36,5,-50v-31,0,-33,33,-5,50xm91,-257v60,-6,83,86,29,115r50,50v11,-15,45,-49,55,-10v2,7,-15,22,-28,36v12,17,35,24,38,49v-14,43,-48,-8,-65,-21v-37,36,-35,40,-74,43v-36,2,-72,-30,-73,-74v-1,-26,20,-51,43,-73v-27,-30,-31,-24,-32,-57v-1,-28,22,-55,57,-58","w":256},"'":{"d":"16,-258v1,-26,40,-21,38,-2v-4,46,-3,61,-18,62v-19,2,-16,-41,-20,-60","w":60},"(":{"d":"97,-279v11,-13,37,-6,34,13v-46,98,-50,222,0,326v-8,30,-36,23,-42,-9v-46,-105,-42,-226,8,-330","w":133},")":{"d":"13,-263v-3,-15,6,-24,20,-24v9,0,13,10,21,28v45,108,42,230,-10,332v-14,10,-30,6,-32,-14v45,-97,52,-218,1,-322","w":133},"*":{"d":"137,-190v-4,28,-39,20,-40,-7v2,28,-40,33,-40,5v0,-8,8,-17,20,-23v-35,9,-53,-31,-18,-38v5,0,13,5,24,13v-6,-16,-10,-36,14,-39v23,4,21,23,13,39v11,-14,43,-18,43,8v0,13,-18,20,-36,17v8,7,22,10,20,25","w":180},"+":{"d":"77,-149v0,0,-4,-56,20,-53v22,-2,18,31,18,53v24,0,56,-3,54,20v-3,30,-27,15,-54,18v0,23,4,56,-20,54v-26,-3,-16,-30,-18,-54v-25,-2,-51,9,-53,-20v-2,-19,31,-19,53,-18"},",":{"d":"21,32v-2,-16,23,-14,29,-27v-42,-4,-41,-60,0,-60v29,0,33,18,33,44v0,28,-20,50,-48,58v-8,0,-13,-5,-14,-15","w":97},"-":{"d":"12,-105v7,-33,56,-18,89,-18v10,0,16,7,19,20v-7,33,-56,18,-89,18v-11,0,-17,-6,-19,-20","w":117},"\u00ad":{"d":"12,-105v7,-33,56,-18,89,-18v10,0,16,7,19,20v-7,33,-56,18,-89,18v-11,0,-17,-6,-19,-20","w":117},".":{"d":"23,-24v-2,-34,55,-41,59,-3v1,18,-9,31,-30,32v-16,0,-28,-9,-29,-29","w":97},"\/":{"d":"99,-263v12,-16,42,-7,35,13v-56,164,-92,254,-98,269v-12,13,-33,11,-35,-11v1,-4,33,-95,98,-271","w":135},"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","w":193},"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"},"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},":":{"d":"30,-146v0,-35,48,-36,54,-4v3,18,-7,29,-28,32v-18,-3,-26,-12,-26,-28xm57,-1v-39,0,-30,-58,0,-54v34,2,36,50,0,54","w":97},";":{"d":"25,-142v0,-35,48,-34,54,-3v3,17,-6,28,-27,31v-18,-3,-27,-12,-27,-28xm51,-51v24,-2,33,12,33,40v0,24,-16,45,-48,51v-21,-1,-16,-32,2,-30r20,-6v-35,-3,-39,-46,-7,-55","w":97},"\u037e":{"d":"25,-142v0,-35,48,-34,54,-3v3,17,-6,28,-27,31v-18,-3,-27,-12,-27,-28xm51,-51v24,-2,33,12,33,40v0,24,-16,45,-48,51v-21,-1,-16,-32,2,-30r20,-6v-35,-3,-39,-46,-7,-55","w":97},"<":{"d":"75,-110v3,1,32,20,89,55v11,13,7,32,-13,33v-39,-17,-86,-52,-124,-73v-15,-17,-4,-27,16,-39v69,-41,103,-65,107,-65v31,7,24,35,-5,45v-1,1,-24,16,-70,44"},"=":{"d":"43,-152r107,0v10,0,16,7,19,20v-3,12,-10,18,-19,18r-107,0v-11,0,-17,-6,-19,-20v3,-12,10,-18,19,-18xm43,-93r107,0v27,0,21,38,0,38r-109,0v-21,-1,-24,-38,2,-38"},">":{"d":"118,-114v-66,-45,-86,-41,-94,-69v15,-35,27,-19,64,6v60,40,86,35,86,65v0,9,-8,14,-20,21v-75,44,-98,67,-112,66v-29,-8,-21,-34,7,-45"},"?":{"d":"10,-177v0,-38,39,-80,83,-80v39,0,80,39,80,82v0,24,-11,45,-32,64v-19,10,-29,25,-29,45v1,25,-36,19,-36,2v0,-35,16,-54,46,-78v33,-26,12,-77,-31,-79v-24,-2,-44,23,-46,51v-9,18,-35,9,-35,-7xm92,6v-32,0,-28,-46,3,-46v11,0,22,8,22,25v-3,14,-11,21,-25,21","w":172},"@":{"d":"163,-174v-31,-1,-62,25,-63,64v-1,32,25,63,66,63v29,0,61,-28,61,-64v0,-32,-26,-62,-64,-63xm346,-109v-2,62,-26,102,-84,102v-24,0,-36,-4,-35,-24v-62,54,-165,6,-165,-80v0,-50,43,-99,101,-101v50,-2,103,42,102,104r0,63v28,1,42,-31,42,-67v0,-65,-65,-131,-134,-131v-68,0,-135,57,-135,135v0,97,121,177,212,111v14,-3,26,7,25,18v5,18,-63,44,-106,44v-87,0,-170,-86,-170,-175v0,-86,82,-171,177,-171v84,0,172,82,170,172","w":354},"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","w":193,"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":{"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":{"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":{"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}},"[":{"d":"56,-284v27,9,88,-13,89,21v1,23,-38,18,-64,18r0,287v24,1,65,-7,64,19v-2,30,-54,16,-83,19v-13,-2,-19,-10,-19,-20r0,-322v0,-16,9,-17,13,-22","w":136},"\\":{"d":"0,-258v2,-13,8,-19,20,-19v12,0,17,12,25,34r90,245v-3,14,-9,20,-22,19v-10,0,-15,-12,-23,-33v-53,-150,-86,-231,-90,-246","w":121},"]":{"d":"5,-264v0,-30,53,-13,84,-19v12,3,18,9,18,18r0,327v-2,28,-55,18,-84,18v-21,0,-26,-34,0,-39v13,2,31,0,46,1r0,-287v-25,0,-64,6,-64,-19","w":133},"^":{"d":"65,-255v39,-10,77,94,76,93v0,10,-6,15,-19,17v-14,1,-36,-43,-48,-58r-35,54v-31,10,-38,-15,-16,-44v28,-37,39,-60,42,-62","w":165},"_":{"d":"19,0r156,0v13,2,18,8,17,20v-1,11,-8,17,-17,17r-156,0v-11,0,-17,-7,-19,-20v3,-11,10,-17,19,-17","w":168,"k":{"_":7}},"`":{"d":"95,-177v-14,-3,-92,-62,-41,-76v22,2,62,51,60,57v-3,12,-9,19,-19,19","w":132},"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","w":193,"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","w":193,"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}},"{":{"d":"83,-241v-1,-32,28,-44,67,-44v22,0,29,34,3,37v-12,2,-33,-6,-33,8v0,41,8,92,-7,122v16,30,3,86,7,127v7,14,55,-6,50,25v2,18,-24,17,-44,17v-57,0,-40,-88,-42,-145v-7,-10,-41,-2,-38,-24v3,-23,24,-13,37,-22r0,-101"},"|":{"d":"76,-272v0,-26,37,-21,37,0r0,335v-2,19,-37,25,-37,-2r0,-333"},"}":{"d":"19,-264v0,-23,22,-19,44,-19v19,0,41,12,41,39r0,102v4,12,43,1,36,26v1,13,-15,17,-31,16v-4,0,-5,4,-5,12v-5,65,27,146,-68,136v-25,-2,-19,-37,0,-36v10,-2,30,5,31,-6v3,-41,-8,-96,8,-124v-15,-29,-4,-83,-7,-123v-8,-15,-49,8,-49,-23"},"~":{"d":"33,-128v2,-34,57,-34,82,-12v10,2,17,-2,25,-4v15,3,22,10,22,22v0,28,-59,37,-82,12v-10,-3,-17,3,-27,3v-13,-3,-20,-10,-20,-21"},"\u0192":{"d":"26,30v28,1,41,-8,41,-40r0,-128v-24,-1,-47,6,-49,-20v0,-16,25,-20,48,-17v-2,-50,23,-83,80,-81v21,1,24,36,-2,38v-28,-4,-41,12,-40,43v25,1,53,-10,54,20v1,20,-32,17,-54,17r1,145v-6,36,-36,61,-79,61v-10,0,-16,-7,-18,-19v2,-13,8,-19,18,-19","w":171},"\u01fa":{"d":"133,-126r-21,-53r-21,53r42,0xm103,-259v1,11,19,9,17,-1v-1,-11,-16,-9,-17,1xm93,-230v-15,-5,-20,-44,-5,-53v-7,-16,17,-42,34,-49v27,8,15,26,1,43v9,-8,17,5,22,24v4,15,-2,29,-14,35r85,219v-5,23,-38,21,-41,-9r-28,-70r-71,0r-35,89v-12,12,-36,5,-33,-13","w":222},"\u01fb":{"d":"96,-259v45,-11,64,63,15,73v-24,5,-45,-7,-45,-37v0,-17,9,-31,30,-36xm104,-229v-10,0,-9,13,-3,14v6,0,8,-1,9,-7v-1,-5,-3,-7,-6,-7xm101,-146v-30,-1,-57,22,-58,58v-1,29,23,57,60,58v25,1,55,-26,55,-59v0,-28,-23,-56,-57,-57xm136,-304v-1,17,-48,73,-57,25v-1,-4,23,-42,39,-42v12,3,18,8,18,17xm101,-182v45,-1,97,39,93,96v-2,33,16,85,-18,91v-8,0,-20,-8,-17,-19v-57,47,-152,5,-152,-75v0,-46,40,-92,94,-93","w":205},"\u01fc":{"d":"140,-252v28,-15,79,-2,117,-6v8,0,14,6,17,18v-7,36,-66,13,-102,19r0,89v29,4,82,-13,81,20v-2,27,-53,14,-81,17r0,64r84,0v23,2,24,36,-1,36r-101,0v-32,-4,-13,-67,-18,-100r-41,0r-53,94v-13,11,-30,7,-32,-13v20,-45,99,-179,130,-238xm115,-132r21,0r0,-36xm204,-309v-1,17,-48,73,-56,25v-1,-4,23,-43,39,-43v12,3,17,9,17,18","w":283},"\u01fd":{"d":"101,-146v-30,-1,-56,23,-58,58v-1,28,23,57,61,57v26,0,55,-25,55,-58v0,-28,-24,-56,-58,-57xm308,-101v-7,-41,-81,-65,-105,-16v-5,9,-7,14,-7,16r112,0xm214,-227v0,16,-49,73,-57,25v-1,-4,23,-43,39,-43v12,3,18,9,18,18xm200,-65v13,32,54,43,90,24v12,3,18,9,18,18v1,32,-94,38,-114,9v3,20,-30,28,-35,5r0,-6v-56,48,-151,6,-151,-74v0,-46,40,-92,93,-93v31,0,57,13,76,39v13,-21,41,-37,75,-38v47,-2,97,40,93,99v-1,11,-8,17,-18,17r-127,0","w":358},"\u01fe":{"d":"91,-45v76,51,181,-39,133,-126xm201,-199v-60,-51,-154,-4,-154,75v0,22,6,40,18,54xm177,-308v-1,17,-47,71,-56,25v-1,-4,23,-43,39,-43v12,3,17,9,17,18xm251,-196v57,85,-8,202,-111,201v-28,0,-53,-8,-76,-25v-21,18,-24,27,-35,25v-25,-5,-22,-30,5,-46v0,-1,2,-3,4,-5v-68,-83,0,-212,104,-210v33,0,61,11,86,33v18,-18,25,-25,34,-25v35,11,7,39,-11,52","w":290},"\u01ff":{"d":"138,-236v-1,17,-48,73,-57,25v-1,-4,23,-42,39,-42v12,3,18,8,18,17xm125,-140v-44,-19,-97,23,-75,77xm74,-37v48,27,104,-27,77,-79xm24,-37v-57,-74,43,-184,126,-129v14,-20,36,-26,42,1v0,5,-5,13,-16,23v45,59,1,149,-78,147v-17,0,-34,-5,-49,-16v-15,20,-35,24,-41,-3v0,-5,6,-13,16,-23","w":208}}});

/* -------------------------------------------------- *
 * 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);
