/**
 * hashgrid (jQuery version)
 * http://github.com/dotjay/hashgrid
 * Version 4, 29 Mar 2010
 * By Jon Gibbins, accessibility.co.uk
 *
 * // Using a basic #grid setup
 * var grid = new hashgrid();
 *
 * // Using #grid with a custom id (e.g. #mygrid)
 * var grid = new hashgrid("mygrid");
 *
 * // Using #grid with additional options
 * var grid = new hashgrid({
 *     id: 'mygrid',            // id for the grid container
 *     modifierKey: 'alt',      // optional 'ctrl', 'alt' or 'shift'
 *     showGridKey: 's',        // key to show the grid
 *     holdGridKey: 'enter',    // key to hold the grid in place
 *     foregroundKey: 'f',      // key to toggle foreground/background
 *     jumpGridsKey: 'd',       // key to cycle through the grid classes
 *     numberOfGrids: 2,        // number of grid classes used
 *     classPrefix: 'class',    // prefix for the grid classes
 *     cookiePrefix: 'mygrid'   // prefix for the cookie name
 * });
 */


/**
 * You can call hashgrid from your own code, but it's loaded here by
 * default for convenience.
 */
$(document).ready(function() {

	var grid = new hashgrid({
		numberOfGrids: 4
	});

});


/**
 * hashgrid overlay
 */
var hashgrid = function(set) {

	var options = {
		id: 'grid',             // id for the grid container
		modifierKey: null,      // optional 'ctrl', 'alt' or 'shift'
		showGridKey: 'g',       // key to show the grid
		holdGridKey: 'h',       // key to hold the grid in place
		foregroundKey: 'f',     // key to toggle foreground/background
		jumpGridsKey: 'j',      // key to cycle through the grid classes
		numberOfGrids: 1,       // number of grid classes used
		classPrefix: 'grid-',   // prefix for the grid classes
		cookiePrefix: 'hashgrid'// prefix for the cookie name
	};
	var overlayOn = false,
		sticky = false,
		overlayZState = 'B',
		overlayZBackground = 1,
		overlayZForeground = 9999,
		classNumber = 1;

	// Apply options
	if (typeof set == 'object') {
		var k;
		for (k in set) options[k] = set[k];
	}
	else if (typeof set == 'string') {
		options.id = set;
	}

	// Remove any conflicting overlay
	if ($('#' + options.id).length > 0) {
		$('#' + options.id).remove();
	}

	// Create overlay, hidden before adding to DOM
	var overlayEl = $('<div></div>');
	overlayEl
		.attr('id', options.id)
		.css('display', 'none');
	$("body").prepend(overlayEl);
	var overlay = $('#' + options.id);

	// Unless a custom z-index is set, ensure the overlay will be behind everything
	if (overlay.css('z-index') == 'auto') overlay.css('z-index', overlayZBackground);

	// Override the default overlay height with the actual page height
	var pageHeight = parseFloat($(document).height());
	overlay.height(pageHeight);

	// Add the first grid line so that we can measure it
	overlay.append('<div class="horiz first-line">');

	// Calculate the number of grid lines needed
	var overlayGridLines = overlay.children('.horiz'),
		overlayGridLineHeight = parseFloat(overlayGridLines.css('height')) + parseFloat(overlayGridLines.css('border-bottom-width'));

	// Break on zero line height
	if (overlayGridLineHeight <= 0) return true;

	// Add the remaining grid lines
	var i, numGridLines = Math.floor(pageHeight / overlayGridLineHeight);
	for (i = numGridLines - 1; i >= 1; i--) {
		overlay.append('<div class="horiz"></div>');
	}

	// Check for saved state
	var overlayCookie = readCookie(options.cookiePrefix + options.id);
	if (typeof overlayCookie == 'string') {
		var state = overlayCookie.split(',');
		state[2] = Number(state[2]);
		if ((typeof state[2] == 'number') && !isNaN(state[2])) {
			classNumber = state[2].toFixed(0);
			overlay.addClass(options.classPrefix + classNumber);
		}
		if (state[1] == 'F') {
			overlayZState = 'F';
			overlay.css('z-index', overlayZForeground);
		}
		if (state[0] == '1') {
			overlayOn = true;
			sticky = true;
			overlay.show();
		}
	}
	else {
		overlay.addClass(options.classPrefix + classNumber)
	}

	// Keyboard controls
	$(document).bind('keydown', keydownHandler);
	$(document).bind('keyup', keyupHandler);

	/**
	 * Helpers
	 */

	function getModifier(e) {
		if (options.modifierKey == null) return true; // Bypass by default
		var m = true;
		switch(options.modifierKey) {
			case 'ctrl':
				m = (e.ctrlKey ? e.ctrlKey : false);
				break;

			case 'alt':
				m = (e.altKey ? e.altKey : false);
				break;

			case 'shift':
				m = (e.shiftKey ? e.shiftKey : false);
				break;
		}
		return m;
	}

	function getKey(e) {
		var k = false, c = (e.keyCode ? e.keyCode : e.which);
		// Handle keywords
		if (c == 13) k = 'enter';
		// Handle letters
		else k = String.fromCharCode(c).toLowerCase();
		return k;
	}

	function saveState() {
		createCookie(options.cookiePrefix + options.id, (sticky ? '1' : '0') + ',' + overlayZState + ',' + classNumber, 1);
	}

	/**
	 * Event handlers
	 */

	function keydownHandler(e) {
		var source = e.target.tagName.toLowerCase();
		if ((source == 'input') || (source == 'textarea') || (source == 'select')) return true;
		var m = getModifier(e);
		if (!m) return true;
		var k = getKey(e);
		if (!k) return true;
		switch(k) {
			case options.showGridKey:
				if (!overlayOn) {
					overlay.show();
					overlayOn = true;
				}
				else if (sticky) {
					overlay.hide();
					overlayOn = false;
					sticky = false;
					saveState();
				}
				break;
			case options.holdGridKey:
				if (overlayOn && !sticky) {
					// Turn sticky overlay on
					sticky = true;
					saveState();
				}
				break;
			case options.foregroundKey:
				if (overlayOn) {
					// Toggle sticky overlay z-index
					if (overlay.css('z-index') == overlayZForeground) {
						overlay.css('z-index', overlayZBackground);
						overlayZState = 'B';
					}
					else {
						overlay.css('z-index', overlayZForeground);
						overlayZState = 'F';
					}
					saveState();
				}
				break;
			case options.jumpGridsKey:
				if (overlayOn && (options.numberOfGrids > 1)) {
					// Cycle through the available grids
					overlay.removeClass(options.classPrefix + classNumber);
					classNumber++;
					if (classNumber > options.numberOfGrids) classNumber = 1;
					overlay.addClass(options.classPrefix + classNumber);
					if (/webkit/.test( navigator.userAgent.toLowerCase() )) {
						forceRepaint();
					}
					saveState();
				}
				break;
		}
	}

	function keyupHandler(e) {
		var m = getModifier(e);
		if (!m) return true;
		var k = getKey(e);
		if (!k) return true;
		if ((k == options.showGridKey) && !sticky) {
			overlay.hide();
			overlayOn = false;
		}
	}

}


/**
 * Cookie functions
 *
 * By Peter-Paul Koch:
 * http://www.quirksmode.org/js/cookies.html
 */
function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function eraseCookie(name) {
	createCookie(name,"",-1);
}


/**
 * Forces a repaint (because WebKit has issues)
 * http://www.sitepoint.com/forums/showthread.php?p=4538763
 * http://www.phpied.com/the-new-game-show-will-it-reflow/
 */
function forceRepaint() {
	var ss = document.styleSheets[0];
	try {
		ss.addRule('.xxxxxx', 'position: relative');
		ss.removeRule(ss.rules.length - 1);
	} catch(e){}
}/*************************************************
**  jQuery Masonry version 1.2.0
**  copyright David DeSandro, licensed GPL & MIT
**  http://desandro.com/resources/jquery-masonry
**************************************************/
;(function($){var n=$.event,resizeTimeout;n.special["smartresize"]={setup:function(){$(this).bind("resize",n.special.smartresize.handler)},teardown:function(){$(this).unbind("resize",n.special.smartresize.handler)},handler:function(a,b){var c=this,args=arguments;a.type="smartresize";if(resizeTimeout)clearTimeout(resizeTimeout);resizeTimeout=setTimeout(function(){jQuery.event.handle.apply(c,args)},b==="execAsap"?0:100)}};$.fn.smartresize=function(a){return a?this.bind("smartresize",a):this.trigger("smartresize",["execAsap"])};$.fn.masonry=function(l,m){function getBricks(a,b){a.$bricks=b.itemSelector==undefined?b.$brickParent.children():b.$brickParent.find(b.itemSelector)}function placeBrick(a,b,c,d,e,f){var g=0;for(i=0;i<b;i++){if(c[i]<c[g])g=i}var h={left:e.colW*g+e.posLeft,top:c[g]};if(e.masoned&&f.animate){a.animate(h,{duration:f.animationOptions.duration,easing:f.animationOptions.easing,complete:f.animationOptions.complete,step:f.animationOptions.step,queue:f.animationOptions.queue,specialEasing:f.animationOptions.specialEasing})}else{a.css(h)}for(i=0;i<d;i++){e.colY[g+i]=c[g]+a.outerHeight(true)}};function masonrySetup(a,b,c){getBricks(c,b);if(b.columnWidth==undefined){c.colW=c.masoned?a.data('masonry').colW:c.$bricks.outerWidth(true)}else{c.colW=b.columnWidth}c.colCount=Math.floor(a.width()/c.colW);c.colCount=Math.max(c.colCount,1)};function masonryArrange(e,f,g){if(!g.masoned)e.css('position','relative');if(!g.masoned||f.appendedContent!=undefined){g.$bricks.css('position','absolute')}var h=$('<div />');e.prepend(h);g.posTop=Math.round(h.position().top);g.posLeft=Math.round(h.position().left);h.remove();if(g.masoned&&f.appendedContent!=undefined){g.colY=e.data('masonry').colY;for(i=e.data('masonry').colCount;i<g.colCount;i++){g.colY[i]=g.posTop}}else{g.colY=[];for(i=0;i<g.colCount;i++){g.colY[i]=g.posTop}}if(f.singleMode){g.$bricks.each(function(){var a=$(this);placeBrick(a,g.colCount,g.colY,1,g,f)})}else{g.$bricks.each(function(){var a=$(this);var b=Math.ceil(a.outerWidth(true)/g.colW);b=Math.min(b,g.colCount);if(b==1){placeBrick(a,g.colCount,g.colY,1,g,f)}else{var c=g.colCount+1-b;var d=[0];for(i=0;i<c;i++){d[i]=0;for(j=0;j<b;j++){d[i]=Math.max(d[i],g.colY[i+j])}}placeBrick(a,c,d,b,g,f)}})}g.wallH=0;for(i=0;i<g.colCount;i++){g.wallH=Math.max(g.wallH,g.colY[i])}var k={height:g.wallH-g.posTop};if(g.masoned&&f.animate){e.animate(k,{duration:f.animationOptions.duration,easing:f.animationOptions.easing,complete:f.animationOptions.complete,step:f.animationOptions.step,queue:f.animationOptions.queue,specialEasing:f.animationOptions.specialEasing})}else{e.css(k)}if(!g.masoned)e.addClass('masoned');m.call(g.$bricks);e.data('masonry',g)};function masonryResize(a,b,c){c.masoned=a.data('masonry')!=undefined;var d=a.data('masonry').colCount;masonrySetup(a,b,c);if(c.colCount!=d)masonryArrange(a,b,c)};return this.each(function(){var a=$(this);var b=$.extend({},$.masonry);b.masoned=a.data('masonry')!=undefined;var c=b.masoned?a.data('masonry').options:{};var d=$.extend({},b.defaults,c,l);b.options=d.saveOptions?d:c;m=m||function(){};if(b.masoned&&d.appendedContent!=undefined){d.$brickParent=d.appendedContent}else{d.$brickParent=a}getBricks(b,d);if(b.$bricks.length){masonrySetup(a,d,b);masonryArrange(a,d,b);var e=c.resizeable;if(!e&&d.resizeable){$(window).bind('smartresize.masonry',function(){masonryResize(a,d,b)})}if(e&&!d.resizeable)$(window).unbind('smartresize.masonry')}else{return this}})};$.masonry={defaults:{singleMode:false,columnWidth:undefined,itemSelector:undefined,appendedContent:undefined,saveOptions:true,resizeable:true,animate:false,animationOptions:{}},colW:undefined,colCount:undefined,colY:undefined,wallH:undefined,masoned:undefined,posTop:0,posLeft:0,options:undefined,$bricks:undefined,$brickParent:undefined}})(jQuery);/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
(function($){$.fn.columnize=function(options){var defaults={width:400,columns:false,buildOnce:false,overflow:false,doneFunc:function(){},target:false,ignoreImageLoading:true,float:"left",lastNeverTallest:false};var options=$.extend(defaults,options);return this.each(function(){var $inBox=options.target?$(options.target):$(this);var maxHeight=$(this).height();var $cache=$('<div></div>');var lastWidth=0;var columnizing=false;$cache.append($(this).children().clone(true));if(!options.ignoreImageLoading&&!options.target){if(!$inBox.data("imageLoaded")){$inBox.data("imageLoaded",true);if($(this).find("img").length>0){var func=function($inBox,$cache){return function(){if(!$inBox.data("firstImageLoaded")){$inBox.data("firstImageLoaded","true");$inBox.empty().append($cache.children().clone(true));$inBox.columnize(options);}}}($(this),$cache);$(this).find("img").one("load",func);$(this).find("img").one("abort",func);return;}}}
$inBox.empty();columnizeIt();if(!options.buildOnce){$(window).resize(function(){if(!options.buildOnce&&$.browser.msie){if($inBox.data("timeout")){clearTimeout($inBox.data("timeout"));}
$inBox.data("timeout",setTimeout(columnizeIt,200));}else if(!options.buildOnce){columnizeIt();}else{}});}
function columnize($putInHere,$pullOutHere,$parentColumn,height){while($parentColumn.height()<height&&$pullOutHere[0].childNodes.length){$putInHere.append($pullOutHere[0].childNodes[0]);}
if($putInHere[0].childNodes.length==0)return;var kids=$putInHere[0].childNodes;var lastKid=kids[kids.length-1];$putInHere[0].removeChild(lastKid);var $item=$(lastKid);if($item[0].nodeType==3){var oText=$item[0].nodeValue;var counter2=options.width/18;if(options.accuracy)
counter2=options.accuracy;var columnText;var latestTextNode=null;while($parentColumn.height()<height&&oText.length){if(oText.indexOf(' ',counter2)!='-1'){columnText=oText.substring(0,oText.indexOf(' ',counter2));}else{columnText=oText;}
latestTextNode=document.createTextNode(columnText);$putInHere.append(latestTextNode);if(oText.length>counter2){oText=oText.substring(oText.indexOf(' ',counter2));}else{oText="";}}
if($parentColumn.height()>=height&&latestTextNode!=null){$putInHere[0].removeChild(latestTextNode);oText=latestTextNode.nodeValue+oText;}
if(oText.length){$item[0].nodeValue=oText;}else{return false;}}
if($pullOutHere.children().length){$pullOutHere.prepend($item);}else{$pullOutHere.append($item);}
return $item[0].nodeType==3;}
function split($putInHere,$pullOutHere,$parentColumn,height){if($pullOutHere.children().length){$cloneMe=$pullOutHere.children(":first");$clone=$cloneMe.clone(true);if($clone.attr("nodeType")==1&&!$clone.hasClass("dontend")){$putInHere.append($clone);if($clone.is("img")&&$parentColumn.height()<height+20){$cloneMe.remove();}else if(!$cloneMe.hasClass("dontsplit")&&$parentColumn.height()<height+20){$cloneMe.remove();}else if($clone.is("img")||$cloneMe.hasClass("dontsplit")){$clone.remove();}else{$clone.empty();if(!columnize($clone,$cloneMe,$parentColumn,height)){if($cloneMe.children().length){split($clone,$cloneMe,$parentColumn,height);}}
if($clone.get(0).childNodes.length==0){$clone.remove();}}}}}
function singleColumnizeIt(){if($inBox.data("columnized")&&$inBox.children().length==1){return;}
$inBox.data("columnized",true);$inBox.data("columnizing",true);$inBox.empty();$inBox.append($("<div class='first last column' style='width:98%; padding: 3px; float: "+options.float+";'></div>"));$col=$inBox.children().eq($inBox.children().length-1);$destroyable=$cache.clone(true);if(options.overflow){targetHeight=options.overflow.height;columnize($col,$destroyable,$col,targetHeight);if(!$destroyable.children().find(":first-child").hasClass("dontend")){split($col,$destroyable,$col,targetHeight);}
while(checkDontEndColumn($col.children(":last").length&&$col.children(":last").get(0))){var $lastKid=$col.children(":last");$lastKid.remove();$destroyable.prepend($lastKid);}
var html="";var div=document.createElement('DIV');while($destroyable[0].childNodes.length>0){var kid=$destroyable[0].childNodes[0];for(var i=0;i<kid.attributes.length;i++){if(kid.attributes[i].nodeName.indexOf("jQuery")==0){kid.removeAttribute(kid.attributes[i].nodeName);}}
div.innerHTML="";div.appendChild($destroyable[0].childNodes[0]);html+=div.innerHTML;}
var overflow=$(options.overflow.id)[0];overflow.innerHTML=html;}else{$col.append($destroyable);}
$inBox.data("columnizing",false);if(options.overflow){options.overflow.doneFunc();}}
function checkDontEndColumn(dom){if(dom.nodeType!=1)return false;if($(dom).hasClass("dontend"))return true;if(dom.childNodes.length==0)return false;return checkDontEndColumn(dom.childNodes[dom.childNodes.length-1]);}
function columnizeIt(){if(lastWidth==$inBox.width())return;lastWidth=$inBox.width();var numCols=Math.round($inBox.width()/options.width);if(options.columns)numCols=options.columns;if(numCols<=1){return singleColumnizeIt();}
if($inBox.data("columnizing"))return;$inBox.data("columnized",true);$inBox.data("columnizing",true);$inBox.empty();$inBox.append($("<div style='width:"+(Math.round(100/numCols)-2)+"%; padding: 3px; float: "+options.float+";'></div>"));$col=$inBox.children(":last");$col.append($cache.clone());maxHeight=$col.height();$inBox.empty();var targetHeight=maxHeight/numCols;var firstTime=true;var maxLoops=3;var scrollHorizontally=false;if(options.overflow){maxLoops=1;targetHeight=options.overflow.height;}else if(options.height&&options.width){maxLoops=1;targetHeight=options.height;scrollHorizontally=true;}
for(var loopCount=0;loopCount<maxLoops;loopCount++){$inBox.empty();var $destroyable;try{$destroyable=$cache.clone(true);}catch(e){$destroyable=$cache.clone();}
$destroyable.css("visibility","hidden");for(var i=0;i<numCols;i++){var className=(i==0)?"first column":"column";var className=(i==numCols-1)?("last "+className):className;$inBox.append($("<div class='"+className+"' style='width:"+(Math.round(100/numCols)-2)+"%; float: "+options.float+";'></div>"));}
var i=0;while(i<numCols-(options.overflow?0:1)||scrollHorizontally&&$destroyable.children().length){if($inBox.children().length<=i){$inBox.append($("<div class='"+className+"' style='width:"+(Math.round(100/numCols)-2)+"%; float: "+options.float+";'></div>"));}
var $col=$inBox.children().eq(i);columnize($col,$destroyable,$col,targetHeight);if(!$destroyable.children().find(":first-child").hasClass("dontend")){split($col,$destroyable,$col,targetHeight);}else{}
while(checkDontEndColumn($col.children(":last").length&&$col.children(":last").get(0))){var $lastKid=$col.children(":last");$lastKid.remove();$destroyable.prepend($lastKid);}
i++;}
if(options.overflow&&!scrollHorizontally){var IE6=false;var IE7=(document.all)&&(navigator.appVersion.indexOf("MSIE 7.")!=-1);if(IE6||IE7){var html="";var div=document.createElement('DIV');while($destroyable[0].childNodes.length>0){var kid=$destroyable[0].childNodes[0];for(var i=0;i<kid.attributes.length;i++){if(kid.attributes[i].nodeName.indexOf("jQuery")==0){kid.removeAttribute(kid.attributes[i].nodeName);}}
div.innerHTML="";div.appendChild($destroyable[0].childNodes[0]);html+=div.innerHTML;}
var overflow=$(options.overflow.id)[0];overflow.innerHTML=html;}else{$(options.overflow.id).empty().append($destroyable.children().clone(true));}}else if(!scrollHorizontally){$col=$inBox.children().eq($inBox.children().length-1);while($destroyable.children().length)$col.append($destroyable.children(":first"));var afterH=$col.height();var diff=afterH-targetHeight;var totalH=0;var min=10000000;var max=0;var lastIsMax=false;$inBox.children().each(function($inBox){return function($item){var h=$inBox.children().eq($item).height();lastIsMax=false;totalH+=h;if(h>max){max=h;lastIsMax=true;}
if(h<min)min=h;}}($inBox));var avgH=totalH/numCols;if(options.lastNeverTallest&&lastIsMax){targetHeight=targetHeight+30;if(loopCount==maxLoops-1)maxLoops++;}else if(max-min>30){targetHeight=avgH+30;}else if(Math.abs(avgH-targetHeight)>20){targetHeight=avgH;}else{loopCount=maxLoops;}}else{$inBox.children().each(function(i){$col=$inBox.children().eq(i);$col.width(options.width+"px");if(i==0){$col.addClass("first");}else if(i==$inBox.children().length-1){$col.addClass("last");}else{$col.removeClass("first");$col.removeClass("last");}});$inBox.width($inBox.children().length*options.width+"px");}
$inBox.append($("<br style='clear:both;'>"));}
$inBox.find('.column').find(':first.removeiffirst').remove();$inBox.find('.column').find(':last.removeiflast').remove();$inBox.data("columnizing",false);if(options.overflow){options.overflow.doneFunc();}
options.doneFunc();}});};})(jQuery);function simpleSlide(e){jQuery(function($){var b={'status_width':20,'status_color_inside':'#fff','status_color_outside':'#aaa','set_speed':500,'fullscreen':'false','swipe':'false','callback':'function()'};$.extend(b,e);$.ss_options=b;$('.simpleSlide-slide').css({'opacity':'0'});$('.simpleSlide-window').prepend('<span id="ssLoading" style="color: #808080;font-family:Helvetica, Arial, sans-serif;font-size: 12px; margin: 10px 0 0 10px;display: block">Loading slides...</span>');var c=$('.simpleSlide-slide img').size();if(c>0){var d=new Array();var i=0;$('.simpleSlide-slide img').each(function(){d[i]=$(this).attr('src');i++});i=0;$(d).each(function(){var a=new Image();a.src=d[i];if((a).complete){c--;i++;if(c==0){ssInit()}}else{$(a).load(function(){c--;i++;if(c==0){ssInit()}})}})}else{ssInit()}})};function ssInit(){jQuery(function($){$('.simpleSlide-window').each(function(){if($.ss_options.fullscreen=='true'){$('body').css('overflow','hidden')}var a=$(this).html();var b=removeWhiteSpace(a);$(this).html(b);var c=$(this).find('.simpleSlide-slide').size();$(this).find('.simpleSlide-slide').css('display','block');var d=$(this).find('.simpleSlide-slide').first().outerHeight();if($.ss_options.fullscreen=='true'){fullScreen(this)};$(this).find('.simpleSlide-slide').css({'display':'inline','float':'left'});var e=$(this).find('.simpleSlide-slide').first().outerWidth();var f=$(this).attr('rel');if($.ss_options.fullscreen=='false'){$(this).css({'height':d,'width':e,'position':'relative'})};$(this).css('overflow','hidden');setTraySize(this,c,e);setSimpleSlideStatus(f,d,e,c);setPaging(this);$(this).find('#ssLoading').remove();if($.ss_options.swipe='true'&&!$.browser.msie){simpleSwipe(this)};$(this).find('.simpleSlide-slide').animate({'opacity':'1'},300,"swing")});if(typeof($.ss_options.callback)=='function'){$.ss_options.callback.call(this)};function setPaging(a){var b=1;$(a).find('.simpleSlide-slide').each(function(){$(this).attr('alt',b);b++})};function fullScreen(a){var b=new Image();b.src=$(a).find('img').first().attr('src');var c=$(window).width()/$(window).height();var d=b.width/b.height;var e=$(window).height();var f=$(window).width();if(c>d){var g=(f/b.width)*b.height;var h=(g-e)/2;$(a).find('img').attr('width',f).attr('height',g).css('marginLeft',0);$(a).css({'marginLeft':0,'marginTop':'-'+h+'px','height':e+h});$(a).find('.simpleSlide-slide').css({'width':f,'height':g,'overflow':'hidden'})}else{var i=(e/b.height)*b.width;var j=(i-f)/2;$(a).find('img').attr('height',e).attr('width',i);$(a).find('img').css({'marginLeft':'-'+j+'px'});$(a).find('.simpleSlide-slide').css({'width':f,'height':e,'overflow':'hidden'});$(a).css({'marginTop':0,'height':e})};$(a).find('.simpleSlide-tray').css('marginLeft',0)};function setTraySize(a,b,c){var d=b*c;$(a).find('.simpleSlide-tray').css({'width':d+'px'});$(a).find('.simpleSlide-slide').css('display','inline-block')};function setSimpleSlideStatus(a,b,c,d){var e=$.ss_options.status_width/c;var f=e*b;$('.simpleSlideStatus-tray[rel="'+a+'"]').css({'width':$.ss_options.status_width*d,'height':f,'background-color':$.ss_options.status_color_outside});$('.simpleSlideStatus-window[rel="'+a+'"]').css({'width':$.ss_options.status_width,'height':f,'background-color':$.ss_options.status_color_inside});if(jQuery.support.opacity){$('.simpleSlideStatus-window .simpleSlideStatus-tray[rel="'+a+'"]').css({'opacity':'.5','background-color':$.ss_options.status_color_inside})};if(!jQuery.support.opacity){$('.simpleSlideStatus-window .simpleSlideStatus-tray[rel="'+a+'"]').css({'filter':'alpha(opacity=50)','background-color':$.ss_options.status_color_inside})}};$('.left-button, .right-button, .jump-to').live('click',function(){var a=$(this).attr('rel');if(!$('div.simpleSlide-tray[rel="'+a+'"]').is(':animated')){simpleSlideAction(this,a)}})})};function simpleSwipe(f){var g={threshold:{x:$(f).width()*.15,y:$(f).height()*.1},swipeLeft:function(){simpleSlideAction('.right-button',$(f).attr('rel'))},swipeRight:function(){simpleSlideAction('.left-button',$(f).attr('rel'))},preventDefaultEvents:true};var h=$.extend(g,h);if(!f)return false;return $(f).each(function(){var c=$(f);var d={x:0,y:0};var e={x:0,y:0};function touchStart(a){d.x=a.targetTouches[0].pageX;d.y=a.targetTouches[0].pageY};function touchMove(a){if(g.preventDefaultEvents){a.preventDefault()};e.x=a.targetTouches[0].pageX;e.y=a.targetTouches[0].pageY};function touchEnd(a){var b=d.y-e.y;if(b<g.threshold.y&&b>(g.threshold.y*-1)){changeX=d.x-e.x;if(changeX>g.threshold.x){g.swipeLeft()};if(changeX<(g.threshold.x*-1)){g.swipeRight()}}};function touchCancel(a){console.log('Canceling swipe gesture...')};f.addEventListener("touchstart",touchStart,false);f.addEventListener("touchmove",touchMove,false);f.addEventListener("touchend",touchEnd,false);f.addEventListener("touchcancel",touchCancel,false)})};function simpleSlideAction(p,q){jQuery(function($){var d=$.ss_options.set_speed;var e=$('.simpleSlide-window[rel="'+q+'"]').find('.simpleSlide-slide').size();var f=$('.simpleSlide-window[rel="'+q+'"]').innerWidth();var g=$('.simpleSlideStatus-window[rel="'+q+'"]').innerWidth();var h=g*e;var i=parseInt($('.simpleSlide-tray[rel="'+q+'"]').css('marginLeft'),10);var j=parseInt($('.simpleSlideStatus-tray .simpleSlideStatus-window[rel="'+q+'"]').css('marginLeft'),10);var k=parseInt($('.simpleSlideStatus-window .simpleSlideStatus-tray[rel="'+q+'"]').css('marginLeft'),10);if($(p).is('.jump-to')){var l=$(p).attr('alt');var m=(l-1)*(f*(-1));var n=(l-1)*(g*(-1));var o=(l-1)*(g);move(m,o,n)};if($(p).is('.left-button')){if(i==0){var m=i-((e-1)*f);var n=k-((e-1)*g);var o=j+((e-1)*g)}else{var m=i+f;var n=k+g;var o=j-g};move(m,o,n)};if($(p).is('.right-button')){if(i==(e-1)*(f*-1)){var m=0;var n=0;var o=0}else{var m=i-f;var n=k-g;var o=j+g};move(m,o,n)};function move(a,b,c){$('.simpleSlide-tray[rel="'+q+'"]').animate({'marginLeft':a},d,"swing");$('.simpleSlideStatus-window .simpleSlideStatus-tray[rel="'+q+'"]').animate({'marginLeft':c},d,"swing");$('.simpleSlideStatus-tray .simpleSlideStatus-window[rel="'+q+'"]').animate({'marginLeft':b},d,"swing")}})};function removeWhiteSpace(a){var b=a.replace(/[\r+\n+\t+]\s\s+/g,"");return b};/*!
 * Copyright (c) 2010 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		}

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 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
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/(?:^|\s)./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement, simple) {
				if (simple) return text.replace(wsStart, '').replace(wsEnd, ''); // @fixme too simple
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		function isContainerReady(el) {
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = (function(glyphs) {
			var key, fallbacks = {
				'\u2011': '\u002d',
				'\u00ad': '\u2011'
			};
			for (key in fallbacks) {
				if (!hasOwnProperty(fallbacks, key)) continue;
				if (!glyphs[key]) glyphs[key] = glyphs[fallbacks[key]];
			}
			return glyphs;
		})(data.glyphs);

		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		function onEnterLeave(e) {
			trigger(this, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				api.replace(el, hoverState ? merge(options, options.hover) : options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			el.attachEvent('on' + type, function() {
				return listener.call(el, window.event);
			});
		}
	}

	function attach(el, options) {
		var storage = sharedStorage.get(el);
		if (storage.options) return el;
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		if (options.onBeforeReplace) options.onBeforeReplace(el, options);
		var replace = !options.textless[name], simple = (options.trim === 'simple');
		var style = CSS.getStyle(attach(el, options)).extend(options);
		// may cause issues if the element contains other elements
		// with larger fontSize, however such cases are rare and can
		// be fixed by using a more specific selector
		if (parseFloat(style.get('fontSize')) === 0) return;
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		var isShy = options.softHyphens, anyShy = false, pos, shy, reShy = /\u00ad/g;
		var modifyText = options.modifyText;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				if (isShy && el.nodeName.toLowerCase() != TAG_SHY) {
					pos = node.data.indexOf('\u00ad');
					if (pos >= 0) {
						node.splitText(pos);
						next = node.nextSibling;
						next.deleteData(0, 1);
						shy = document.createElement(TAG_SHY);
						shy.appendChild(document.createTextNode('\u00ad'));
						el.insertBefore(shy, next);
						next = shy;
						anyShy = true;
					}
				}
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				text = anchor.data;
				if (!isShy) text = text.replace(reShy, '');
				text = CSS.whiteSpace(text, style, anchor, lastElement, simple);
				// modify text only on the first replace
				if (modifyText) text = modifyText(text, anchor, el, options);
				el.replaceChild(process(font, text, style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
		if (isShy && anyShy) {
			updateShy(el);
			if (!trackingShy) addEvent(window, 'resize', updateShyOnResize);
			trackingShy = true;
		}
		if (options.onAfterReplace) options.onAfterReplace(el, options);
	}

	function updateShy(context) {
		var shys, shy, parent, glue, newGlue, next, prev, i;
		shys = context.getElementsByTagName(TAG_SHY);
		// unfortunately there doesn't seem to be any easy
		// way to avoid having to loop through the shys twice.
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = C_SHY_DISABLED;
			glue = parent = shy.parentNode;
			if (glue.nodeName.toLowerCase() != TAG_GLUE) {
				newGlue = document.createElement(TAG_GLUE);
				newGlue.appendChild(shy.previousSibling);
				parent.insertBefore(newGlue, shy);
				newGlue.appendChild(shy);
			}
			else {
				// get rid of double glue (edge case fix)
				glue = glue.parentNode;
				if (glue.nodeName.toLowerCase() == TAG_GLUE) {
					parent = glue.parentNode;
					while (glue.firstChild) {
						parent.insertBefore(glue.firstChild, glue);
					}
					parent.removeChild(glue);
				}
			}
		}
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = '';
			glue = shy.parentNode;
			parent = glue.parentNode;
			next = glue.nextSibling || parent.nextSibling;
			// make sure we're comparing same types
			prev = (next.nodeName.toLowerCase() == TAG_GLUE) ? glue : shy.previousSibling;
			if (prev.offsetTop >= next.offsetTop) {
				shy.className = C_SHY_DISABLED;
				if (prev.offsetTop < next.offsetTop) {
					// we have an annoying edge case, double the glue
					newGlue = document.createElement(TAG_GLUE);
					parent.insertBefore(newGlue, glue);
					newGlue.appendChild(glue);
					newGlue.appendChild(next);
				}
			}
		}
	}

	function updateShyOnResize() {
		if (ignoreResize) return; // needed for IE
		CSS.addClass(DOM.root(), C_VIEWPORT_RESIZING);
		clearTimeout(shyTimer);
		shyTimer = setTimeout(function() {
			ignoreResize = true;
			CSS.removeClass(DOM.root(), C_VIEWPORT_RESIZING);
			updateShy(document);
			ignoreResize = false;
		}, 100);
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	var TAG_GLUE = 'cufonglue';
	var TAG_SHY = 'cufonshy';
	var C_SHY_DISABLED = 'cufon-shy-disabled';
	var C_VIEWPORT_RESIZING = 'cufon-viewport-resizing';

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;
	var trackingShy = false;
	var shyTimer;
	var ignoreResize = false;

	var engines = {}, fonts = {}, defaultOptions = {
		autoDetect: false,
		engine: null,
		//fontScale: 1,
		//fontScaling: false,
		forceHitArea: false,
		hover: false,
		hoverables: {
			a: true
		},
		ignore: {
			applet: 1,
			canvas: 1,
			col: 1,
			colgroup: 1,
			head: 1,
			iframe: 1,
			map: 1,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		modifyText: null,
		onAfterReplace: null,
		onBeforeReplace: null,
		printable: true,
		//rotation: 0,
		//selectable: false,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		softHyphens: true,
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none',
		trim: 'advanced'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (!ignoreHistory) replaceHistory.add(elements, arguments);
		if (elements.nodeType || typeof elements == 'string') elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (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:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;}' +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Generated in 2009 by FontLab Studio. Copyright info pending.
 * 
 * Full name:
 * LeagueGothic
 */
Cufon.registerFont({"w":115,"face":{"font-family":"League Gothic","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"265","descent":"-95","x-height":"3","bbox":"-12 -335 280 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":55},"D":{"d":"122,-132v0,119,-14,136,-108,132r0,-265v93,-4,108,12,108,133xm53,-226r0,187v27,0,29,-6,29,-93v0,-86,-2,-94,-29,-94","w":133},"F":{"d":"107,-265r0,40r-54,0r0,70r36,0r0,40r-36,0r0,115r-39,0r0,-265r93,0","w":108,"k":{"\u00e7":4,"\u00e5":4,"\u0153":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e8":4,"\u00e0":4,"\u00f3":4,"\u00e9":4,"\u00e1":4,"a":4,"o":4,"e":4,"c":4}},"H":{"d":"84,0r0,-115r-31,0r0,115r-39,0r0,-265r39,0r0,110r31,0r0,-110r38,0r0,265r-38,0","w":136},"J":{"d":"2,3r0,-39v0,0,21,5,21,-19r0,-210r39,0r0,216v0,28,-14,55,-60,52","w":74},"L":{"d":"14,0r0,-265r39,0r0,229r52,0r0,36r-91,0","w":106,"k":{"\u00c5":-4,"\u00dd":7,"\u00c2":-4,"\u0178":7,"\u00c3":-4,"\u00c1":-4,"\u00c0":-4,"\u00c4":-4,"A":-4,"Y":7}},"N":{"d":"93,0v-16,-49,-24,-104,-43,-150r0,150r-36,0r0,-265r35,0v16,49,24,105,43,151r0,-151r36,0r0,265r-35,0","w":142},"P":{"d":"14,0r0,-265v65,-3,108,1,108,80v0,61,-35,79,-69,79r0,106r-39,0xm53,-225r0,80v24,0,29,-9,29,-39v0,-30,-5,-41,-29,-41","w":126,"k":{"\u00e7":4,"\u0153":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00f3":4,"\u00e9":4,"o":4,"e":4,"c":4}},"R":{"d":"123,0r-39,0r-20,-112r-11,0r0,112r-39,0r0,-265v67,-6,108,10,106,77v0,26,-7,50,-22,60xm82,-187v0,-38,-18,-39,-29,-39r0,78v11,0,29,-1,29,-39","w":129},"T":{"d":"37,-225r-36,0r0,-40r112,0r0,40r-37,0r0,225r-39,0r0,-225","w":113,"k":{"\u00e7":10,"\u00e5":12,"\u00c5":8,"\u00fd":2,"\u00c2":8,"\u00ff":2,"\u00c3":8,"\u00c1":8,"\u00c0":8,"\u0153":10,"\u00f5":10,"\u00f6":10,"\u00f4":10,"\u00f2":10,"\u00f1":9,"\u00eb":10,"\u00ea":10,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e8":10,"\u00e0":12,"\u00f3":10,"\u00e9":10,"\u00e1":12,"\u00c4":8,"y":2,"w":2,"v":2,"r":9,"p":9,"a":12,"o":10,"m":9,"e":10,"c":10,"A":8,"n":9,"x":7,"T":-3}},"V":{"d":"64,-108r21,-157r38,0r-41,265r-38,0r-41,-265r38,0v9,51,10,110,23,157","w":126,"k":{"A":8,"\u00c4":8,"\u00c0":8,"\u00c1":8,"\u00c3":8,"\u00c2":8,"\u00c5":8,"c":5,"e":5,"o":5,"\u00e9":5,"\u00f3":5,"\u00e8":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f4":5,"\u00f6":5,"\u00f5":5,"\u0153":5,"\u00e7":5,"a":6,"\u00e1":6,"\u00e0":6,"\u00e2":6,"\u00e4":6,"\u00e3":6,"\u00e5":6,"n":4,"m":4,"p":4,"r":4,"\u00f1":4}},"X":{"d":"64,-82r-23,82r-38,0r43,-139r-42,-126r38,0v9,23,12,51,24,71r22,-71r38,0r-42,126r43,139r-38,0v-9,-26,-12,-59,-25,-82","w":129},"Z":{"d":"4,0r0,-42r60,-184r-52,0r0,-39r95,0r0,39r-62,187r62,0r0,39r-103,0","w":110},"b":{"d":"14,0r0,-265r37,0r0,81v0,0,16,-16,29,-16v20,0,28,23,28,39r0,125v0,16,-8,39,-28,39v-19,0,-34,-32,-29,-3r-37,0xm51,-43v0,15,20,17,20,0r0,-111v0,-7,-4,-12,-9,-12v-5,0,-11,6,-11,12r0,111","w":120,"k":{"t":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"s":2,"\u0161":2}},"d":{"d":"106,-265r0,265r-36,0r0,-13v0,0,-16,16,-29,16v-20,0,-28,-23,-28,-39r0,-125v0,-16,8,-39,28,-39v13,0,29,16,29,16r0,-81r36,0xm70,-43r0,-111v0,-14,-21,-17,-21,0r0,111v0,16,21,15,21,0","w":120},"f":{"d":"81,-232v-19,-10,-26,18,-23,35r19,0r0,33r-19,0r0,164r-36,0r0,-164r-18,0r0,-33r18,0v0,-26,-2,-65,42,-69v30,-3,12,17,17,34","w":83,"k":{"\u00e5":1,"\u00e3":1,"\u00e4":1,"\u00e2":1,"\u00e0":1,"\u00e1":1,"a":1,"f":2}},"h":{"d":"63,-165v-7,0,-12,10,-12,10r0,155r-37,0r0,-265r37,0r0,85v3,-2,16,-20,29,-20v19,0,28,23,28,39r0,161r-37,0r0,-156v0,-8,-4,-9,-8,-9","w":121,"k":{"t":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"s":2,"\u0161":2}},"j":{"d":"13,-228r0,-37r37,0r0,37r-37,0xm13,-197r37,0r0,202v0,21,0,63,-42,63v-31,0,-11,-19,-16,-36v16,7,24,-13,21,-27r0,-202","w":64},"l":{"d":"51,0r-37,0r0,-265r37,0r0,265","w":65,"k":{"t":1,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":2,"\u0161":2}},"n":{"d":"63,-165v-7,0,-12,10,-12,10r0,155r-37,0r0,-197r37,0r0,17v3,-2,16,-20,29,-20v19,0,28,23,28,39r0,161r-37,0r0,-156v0,-8,-4,-9,-8,-9","w":121,"k":{"t":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"s":2,"\u0161":2}},"C":{"d":"79,-91r37,0r0,37v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,36r-37,0v-4,-25,12,-46,-15,-56v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v28,-9,10,-31,15,-56","w":124},"E":{"d":"14,0r0,-265r89,0r0,40r-50,0r0,70r36,0r0,42r-36,0r0,73r50,0r0,40r-89,0","w":110,"k":{"A":-1,"\u00c4":-1,"\u00c0":-1,"\u00c1":-1,"\u00c3":-1,"\u00c2":-1,"\u00c5":-1}},"G":{"d":"116,-170r-39,0v-4,-26,11,-49,-13,-60v-14,0,-13,20,-13,20r0,159v0,0,-1,19,13,19v26,-10,8,-40,13,-67r-16,0r0,-33r55,0r0,132r-23,0r-5,-13v-7,9,-18,16,-30,16v-49,0,-46,-57,-46,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,40","w":129},"I":{"d":"14,0r0,-265r39,0r0,265r-39,0","w":67,"k":{"t":1,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":2,"\u0161":2}},"K":{"d":"14,-265r39,0v2,30,-4,67,2,93r34,-93r38,0r-36,88r40,177r-37,0v-11,-39,-15,-85,-30,-121v-17,27,-10,78,-11,121r-39,0r0,-265","w":135},"M":{"d":"95,0r-16,0r-26,-177v-6,-1,-2,7,-3,11r0,166r-36,0r0,-265r48,0r25,135r25,-135r48,0r0,265r-36,0r0,-177v-14,49,-18,120,-29,177","w":174},"O":{"d":"116,-54v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,156xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156","w":127,"k":{"T":4}},"Q":{"d":"116,-210v-4,66,10,133,-8,188v3,4,7,8,15,9r0,33v-22,0,-34,-9,-40,-20v-5,2,-11,3,-19,3v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156","w":128},"S":{"d":"79,-62v0,-43,-67,-95,-67,-144v0,-29,14,-60,51,-61v47,-1,54,40,54,70r-38,3v0,-18,-3,-38,-16,-38v-10,0,-13,11,-13,26v0,43,67,94,67,142v0,35,-12,67,-54,67v-50,0,-57,-38,-57,-77r39,-4v0,22,2,45,18,45v12,0,16,-12,16,-29","w":123},"U":{"d":"79,-265r39,0r0,211v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-211r39,0r0,211v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-211","w":131},"W":{"d":"90,-141r-20,141r-30,0r-36,-265r36,0v8,48,8,103,19,147r18,-147r28,0r18,147v5,1,2,-6,3,-9r16,-138r36,0r-36,265r-30,0v-9,-46,-10,-99,-22,-141","w":182,"k":{"A":8,"\u00c4":8,"\u00c0":8,"\u00c1":8,"\u00c3":8,"\u00c2":8,"\u00c5":8,"c":5,"e":5,"o":5,"\u00e9":5,"\u00f3":5,"\u00e8":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f4":5,"\u00f6":5,"\u00f5":5,"\u0153":5,"\u00e7":5,"a":6,"\u00e1":6,"\u00e0":6,"\u00e2":6,"\u00e4":6,"\u00e3":6,"\u00e5":6,"n":4,"m":4,"p":4,"r":4,"\u00f1":4}},"Y":{"d":"41,-265r21,88r20,-88r39,0r-40,152r0,113r-39,0r0,-113r-39,-152r38,0","w":123,"k":{"A":9,"\u00c4":9,"\u00c0":9,"\u00c1":9,"\u00c3":9,"\u00c2":9,"\u00c5":9,"d":9,"q":9,"c":14,"e":14,"o":14,"\u00e9":14,"\u00f3":14,"\u00e8":14,"\u00ea":14,"\u00eb":14,"\u00f2":14,"\u00f4":14,"\u00f6":14,"\u00f5":14,"\u0153":14,"\u00e7":14,"a":15,"\u00e1":15,"\u00e0":15,"\u00e2":15,"\u00e4":15,"\u00e3":15,"\u00e5":15}},"A":{"d":"41,0r-37,0r40,-265r47,0r40,265r-38,0r-7,-54r-37,0xm81,-95v-6,-29,-5,-65,-15,-90r-12,90r27,0","w":134,"k":{"T":8}},"c":{"d":"48,-152r0,107v0,7,0,15,10,15v16,2,8,-29,10,-43r37,0v3,47,-9,76,-47,76v-26,0,-46,-14,-46,-58r0,-86v0,-44,20,-59,46,-59v36,0,50,25,47,72r-37,0v-1,-14,5,-39,-10,-39v-10,0,-10,8,-10,15","w":113,"k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"e":{"d":"72,-71r33,0r0,23v0,0,0,51,-47,51v-47,0,-46,-52,-46,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51r0,57r-60,0v4,26,-11,52,14,63v21,-8,10,-23,13,-42xm59,-168v-22,9,-11,27,-14,48r27,0v-3,-22,9,-39,-13,-48","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"g":{"d":"102,-163v3,23,0,43,1,68v0,0,0,49,-46,49v-8,-3,-12,3,-12,8v0,8,14,10,27,12v23,3,51,12,51,46v0,39,-33,51,-63,51v-58,0,-78,-52,-29,-68v-29,-6,-26,-46,0,-56v-35,-35,-16,-50,-21,-97v0,0,2,-50,47,-50v18,0,29,8,36,18v5,-5,18,-18,30,-18r0,33v-10,0,-17,2,-21,4xm68,-148v0,0,1,-18,-11,-18v-12,0,-11,18,-11,18r0,54v0,0,-1,17,11,17v12,0,11,-17,11,-17r0,-54xm61,40v25,0,45,-22,8,-27v-14,-6,-32,-2,-32,13v0,8,7,14,24,14","w":123,"k":{"\u0161":1,"\u00e7":2,"\u201a":-4,"\u0153":2,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00f3":2,"\u00e9":2,",":-4,"s":1,"o":2,"e":2,"c":2}},"i":{"d":"51,0r-37,0r0,-197r37,0r0,197xm14,-228r0,-37r37,0r0,37r-37,0","w":65,"k":{"t":1,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":2,"\u0161":2}},"k":{"d":"14,-265r37,0v2,41,-4,90,2,126r19,-58r33,0r-26,64r33,133r-35,0r-20,-82v-12,17,-4,55,-6,82r-37,0r0,-265","w":112,"k":{"\u00e7":2,"\u0153":2,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00f3":2,"\u00e9":2,"o":2,"e":2,"c":2}},"m":{"d":"132,-156v-1,-19,-24,-3,-24,1r0,155r-34,0r0,-156v-1,-18,-23,-3,-23,1r0,155r-37,0r0,-197r37,0r0,17v3,-2,17,-20,30,-20v13,0,20,10,24,22v6,-4,21,-22,34,-22v19,0,27,23,27,39r0,161r-34,0r0,-156","w":179,"k":{"t":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"s":2,"\u0161":2}},"o":{"d":"104,-149r0,101v0,0,1,51,-46,51v-47,0,-47,-52,-47,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51xm70,-148v0,0,2,-20,-12,-20v-13,0,-13,20,-13,20r0,99v0,0,0,20,13,20v14,0,12,-20,12,-20r0,-99","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"a":{"d":"44,-51v0,5,1,18,10,18v26,-1,12,-39,15,-62v-18,8,-25,25,-25,44xm9,-46v1,-85,60,-50,60,-104v0,-7,0,-18,-10,-18v-12,0,-10,18,-10,29r-36,0v-3,-35,18,-61,49,-61v74,0,33,126,46,200r-35,0v-5,-4,-1,-17,-6,-16v-16,25,-58,34,-58,-30","w":119,"k":{"t":3,"f":2,"v":1,"w":1,"y":1,"\u00ff":1,"\u00fd":1,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1}},"p":{"d":"14,68r0,-265r37,0r0,13v0,0,16,-16,29,-16v20,0,28,23,28,39r0,125v0,16,-8,39,-28,39v-13,0,-29,-16,-29,-16r0,81r-37,0xm51,-154r0,111v0,13,20,17,20,0r0,-111v0,-7,-4,-12,-9,-12v-5,0,-11,5,-11,12","w":120,"k":{"t":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"s":2,"\u0161":2}},"q":{"d":"106,-197r0,265r-36,0r0,-81v0,0,-16,16,-29,16v-20,0,-28,-23,-28,-39r0,-125v0,-16,8,-39,28,-39v19,0,34,32,29,3r36,0xm70,-154v0,-15,-21,-16,-21,0r0,111v0,16,21,14,21,0r0,-111","w":120},"r":{"d":"87,-200r0,41v0,0,-16,-6,-28,4v-6,6,-8,12,-8,18r0,137r-37,0r0,-197r37,0r0,22v1,-5,9,-25,36,-25","w":88,"k":{"\u0161":2,"\u00e7":1,"\u00e5":3,"\u0153":1,"\u00f5":1,"\u00f6":1,"\u00f4":1,"\u00f2":1,"\u00eb":1,"\u00ea":1,"\u00e3":3,"\u00e4":3,"\u00e2":3,"\u00e8":1,"\u00e0":3,"\u00f3":1,"\u00e9":1,"\u00e1":3,"s":2,"a":3,"o":1,"e":1,"c":1}},"s":{"d":"70,-51v0,-35,-57,-51,-57,-96v0,-23,9,-52,44,-53v42,-1,46,31,46,53r-34,0v0,-9,1,-23,-11,-23v-10,0,-12,13,-12,23v0,36,58,52,58,96v0,24,-12,54,-47,54v-44,0,-51,-39,-51,-60r34,0v0,10,2,30,17,30v10,0,13,-12,13,-24","w":110,"k":{"t":3}},"t":{"d":"22,-246r36,0r0,49r25,0r0,33r-25,0r0,98v0,12,0,32,12,32v6,0,13,-1,13,-1v-4,20,13,38,-19,38v-42,0,-42,-43,-42,-66r0,-101r-18,0r0,-33r18,0r0,-49","w":88,"k":{"\u00e5":1,"\u00e3":1,"\u00e4":1,"\u00e2":1,"\u00e0":1,"\u00e1":1,"a":1,"z":-2,"t":2}},"u":{"d":"59,-32v7,0,12,-10,12,-10r0,-155r36,0r0,197r-36,0r0,-17v-3,2,-17,20,-30,20v-19,0,-27,-23,-27,-39r0,-161r36,0r0,156v0,8,5,9,9,9","w":121,"k":{"t":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":1,"\u0161":1}},"v":{"d":"71,0r-36,0r-32,-197r35,0r13,127v6,0,3,-9,5,-13r12,-114r35,0","w":105,"k":{"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"a":3,"\u00e1":3,"\u00e0":3,"\u00e2":3,"\u00e4":3,"\u00e3":3,"\u00e5":3,"'":-4,"\u201d":-4,"\u201c":-4,"\u2018":-4,"\u2019":-4}},"w":{"d":"126,0r-30,0r-17,-105r-16,105r-30,0r-29,-197r33,0v6,37,5,81,15,114r17,-114r21,0v8,37,8,81,19,114r13,-114r34,0","w":159,"k":{"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"a":3,"\u00e1":3,"\u00e0":3,"\u00e2":3,"\u00e4":3,"\u00e3":3,"\u00e5":3,"'":-4,"\u201d":-4,"\u201c":-4,"\u2018":-4,"\u2019":-4}},"x":{"d":"3,0r34,-102r-31,-95r34,0v6,17,8,37,15,52r14,-52r34,0r-31,95r34,102r-35,0v-6,-18,-9,-39,-17,-55r-16,55r-35,0","w":108},"y":{"d":"6,70r0,-33v18,5,35,-15,32,-31r-34,-203r36,0v7,42,6,92,17,131v2,-46,11,-87,15,-131r35,0r-35,212v-5,32,-26,63,-66,55","w":111,"k":{"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"a":3,"\u00e1":3,"\u00e0":3,"\u00e2":3,"\u00e4":3,"\u00e3":3,"\u00e5":3,"'":-4,"\u201d":-4,"\u201c":-4,"\u2018":-4,"\u2019":-4}},"z":{"d":"2,0r0,-30r50,-134r-42,0r0,-33r81,0r0,30r-50,134r50,0r0,33r-89,0","w":93},"1":{"d":"30,-207r-26,0r0,-25v49,-12,25,-41,65,-33r0,265r-39,0r0,-207","w":83},"2":{"d":"50,-181r-39,0v-1,-46,3,-85,52,-86v40,0,51,29,51,65v0,54,-40,129,-60,163r61,0r0,39r-105,0r0,-39v0,0,66,-95,66,-160v0,-14,-1,-32,-13,-32v-16,0,-13,31,-13,50","w":128},"4":{"d":"64,0r0,-58r-60,0r0,-34r57,-173r39,0r0,173r18,0r0,34r-18,0r0,58r-36,0xm62,-183r-25,91r27,0v-2,-29,4,-66,-2,-91","w":120,"k":{"9":-1,"3":-2,"8":-3}},"6":{"d":"70,-164v61,0,43,59,43,110v0,13,-3,57,-51,57v-48,0,-50,-44,-50,-57r0,-151v0,-19,1,-62,50,-62v57,0,51,43,51,79r-39,0v0,-36,-1,-46,-12,-46v-20,1,-9,53,-12,76v6,-4,13,-6,20,-6xm50,-43v0,3,3,12,12,12v8,0,12,-9,12,-12r0,-79v0,-3,-4,-12,-12,-12v-8,0,-12,7,-12,11r0,80","w":123},"8":{"d":"93,-140v20,20,21,47,20,83v0,7,-1,60,-52,60v-51,0,-52,-53,-52,-60v-1,-36,1,-63,21,-83v-17,-17,-19,-40,-18,-71v0,-7,0,-56,49,-56v49,0,50,49,50,56v1,31,-1,54,-18,71xm75,-72v0,-32,-1,-47,-14,-47v-13,0,-14,15,-14,47v0,28,3,39,14,39v13,0,14,-15,14,-39xm73,-197v0,-24,-2,-36,-12,-36v-9,0,-11,9,-11,36v0,28,1,40,11,40v10,0,12,-12,12,-40","w":122,"k":{"2":1}},"0":{"d":"116,-54v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,156xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156","w":127},"3":{"d":"73,-65v1,-34,4,-55,-33,-55r0,-32v32,-2,30,-14,30,-47v0,-15,0,-34,-12,-34v-10,0,-12,9,-12,45r-38,0v0,-30,1,-79,50,-79v49,0,50,49,50,56v0,40,-8,57,-19,71v19,15,22,41,22,72v0,7,-1,71,-50,71v-49,0,-52,-49,-52,-79r39,0v0,36,3,45,13,45v12,0,12,-19,12,-34","w":120,"k":{"7":1}},"5":{"d":"52,-77v-1,22,1,50,12,46v19,-1,10,-68,12,-94v0,-11,-5,-20,-13,-20v-9,0,-15,14,-15,20r-33,0r0,-140r94,0r0,39r-60,0r0,55v0,0,12,-9,22,-9v40,0,43,46,43,55v-4,59,20,128,-50,128v-48,0,-51,-45,-51,-80r39,0","w":123},"7":{"d":"20,0r40,-226r-59,0r0,-39r98,0v-1,100,-28,175,-39,265r-40,0","w":103,"k":{"4":4,"1":-2}},"9":{"d":"53,-103v-60,0,-39,-57,-43,-107v0,-13,3,-57,51,-57v48,0,51,44,51,57r0,150v0,19,-2,63,-51,63v-56,0,-51,-45,-51,-79r39,0v0,36,1,45,12,45v20,-1,9,-55,12,-78v-6,4,-13,6,-20,6xm73,-144r0,-78v0,-3,-3,-12,-12,-12v-8,0,-12,9,-12,12r0,77v0,3,4,12,12,12v8,0,12,-7,12,-11","w":123},".":{"d":"9,0r0,-40r38,0r0,40r-38,0","w":56},";":{"d":"13,-157r0,-40r38,0r0,40r-38,0xm51,-40v4,40,-9,62,-20,87r-18,0r13,-47r-13,0r0,-40r38,0","w":63},",":{"d":"46,-40v4,40,-9,62,-20,87r-18,0r13,-47r-13,0r0,-40r38,0","w":54},":":{"d":"13,0r0,-40r38,0r0,40r-38,0xm13,-157r0,-40r38,0r0,40r-38,0","w":63},"!":{"d":"15,0r0,-40r38,0r0,40r-38,0xm23,-71r-10,-194r42,0r-10,194r-22,0","w":68},"$":{"d":"79,-65v0,-50,-66,-82,-66,-138v0,-26,8,-53,37,-60r0,-23r22,0r0,22v28,3,38,25,41,49r-33,5v-1,-12,-6,-22,-17,-22v-11,0,-14,14,-14,28v0,50,65,83,66,139v0,31,-10,61,-43,65r0,38r-22,0r0,-39v-31,-5,-43,-32,-44,-62r34,-2v1,17,7,33,23,33v12,0,16,-16,16,-33","w":121},"&":{"d":"62,3v-69,-3,-60,-99,-23,-135v-12,-26,-19,-50,-19,-78v0,0,-2,-57,47,-57v49,0,47,57,47,57v0,23,-15,49,-36,76v12,26,20,40,26,50v5,-13,7,-31,8,-37r31,6v-1,10,-4,40,-16,63v8,9,14,12,16,13r0,42v-4,0,-21,-8,-37,-25v-13,15,-28,25,-44,25xm86,-46v-10,-15,-20,-31,-31,-52v0,0,-9,15,-9,41v0,30,29,33,40,11xm81,-211v0,0,1,-26,-14,-26v-15,0,-13,27,-13,27v0,15,3,27,9,43v9,-13,18,-30,18,-44","w":150},"?":{"d":"35,-40r0,40r38,0r0,-40r-38,0xm106,-216v-2,39,-36,54,-35,100r0,45r-34,0v-3,-51,6,-103,24,-125v6,-7,9,-15,10,-20v1,-5,-2,-16,-12,-16v-13,0,-21,18,-23,25r-32,-14v4,-11,22,-46,55,-45v41,1,47,36,47,50","w":113},"-":{"d":"13,-80r0,-34r52,0r0,34r-52,0","w":78,"k":{"7":7}},"'":{"d":"46,-265v4,40,-9,62,-20,87r-18,0r13,-47r-13,0r0,-40r38,0","w":54},"\/":{"d":"1,26r96,-291r28,0r-94,291r-30,0","w":126},"_":{"d":"13,57r0,-30r187,0r0,30r-187,0","w":212},"=":{"d":"13,-84r0,-30r160,0r0,30r-160,0xm13,-152r0,-30r160,0r0,30r-160,0","w":186},"+":{"d":"13,-114r0,-30r65,0r0,-61r30,0r0,61r66,0r0,30r-66,0r0,61r-30,0r0,-61r-65,0","w":186},">":{"d":"173,-142r0,28r-160,83r0,-35r123,-62r-123,-63r0,-35","w":186},"\u201d":{"d":"47,-265v4,40,-9,62,-20,87r-18,0r13,-47r-13,0r0,-40r38,0xm100,-265v4,39,-8,62,-19,87r-18,0r12,-47r-12,0r0,-40r37,0","w":109},"\u201c":{"d":"63,-178v-4,-39,8,-62,19,-87r18,0r-12,47r12,0r0,40r-37,0xm9,-178v-4,-40,9,-62,20,-87r18,0r-12,47r12,0r0,40r-38,0","w":109},"\u2013":{"d":"13,-114r0,-34r116,0r0,34r-116,0","w":141},"\u2014":{"d":"13,-114r0,-34r145,0r0,34r-145,0","w":171},"\u2212":{"d":"13,-114r0,-30r110,0r0,30r-110,0","w":136},"|":{"d":"48,90r-34,0r0,-387r34,0r0,387","w":62,"k":{"t":1,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":2,"\u0161":2}},"~":{"d":"158,-229v-33,0,-51,-30,-79,-30v-25,0,-35,31,-35,31r-24,-10v0,0,17,-54,59,-54v34,0,50,31,79,31v23,0,34,-32,34,-32r23,10v0,0,-18,54,-57,54","w":225},"[":{"d":"85,-265r0,35r-36,0r0,233r36,0r0,34r-71,0r0,-302r71,0","w":94},"]":{"d":"10,-230r0,-35r70,0r0,302r-70,0r0,-34r36,0r0,-233r-36,0","w":94},"\\":{"d":"30,-297r108,329r-30,0r-107,-329r29,0","w":139},"{":{"d":"34,-203v0,-54,21,-65,77,-64r0,30v-84,-12,-9,111,-65,143v32,15,22,66,22,109v0,28,12,34,43,34r0,31v-56,1,-77,-11,-77,-65v0,-39,18,-85,-23,-95r0,-28v41,-9,23,-56,23,-95","w":120},"}":{"d":"87,-203v0,39,-18,86,23,95r0,28v-41,10,-23,56,-23,95v0,54,-21,66,-77,65r0,-31v84,12,9,-111,65,-143v-32,-15,-22,-66,-22,-109v0,-28,-12,-34,-43,-34r0,-30v56,-1,77,10,77,64","w":120},"@":{"d":"143,-210r0,140r-29,0v-4,-19,-2,2,-23,2v-45,0,-16,-76,-25,-116v-7,-29,39,-35,45,-18v1,-18,-3,-35,-34,-35v-27,0,-33,19,-33,27r0,157v0,9,6,27,33,27v15,0,24,-4,30,-11r27,15v-10,13,-27,25,-57,25v-53,0,-65,-39,-65,-56r0,-157v0,-17,12,-57,65,-57v53,0,66,40,66,57xm111,-101r0,-80v0,-6,-4,-9,-9,-9v-5,0,-8,3,-8,9r0,80v0,6,3,10,8,10v5,0,9,-4,9,-10","w":153},"*":{"d":"49,-234r-3,-31r27,0r-3,31r29,-12r7,26r-30,6r20,24r-23,14r-14,-26r-13,26r-23,-14r20,-24r-30,-6r8,-26","w":119},"\u2022":{"d":"14,-144v0,-24,20,-43,45,-43v24,0,43,19,43,43v0,25,-19,45,-43,45v-25,0,-45,-20,-45,-45","w":116},"(":{"d":"63,-279r28,14v0,0,-45,63,-45,152v0,89,45,150,45,150r-28,15v0,0,-51,-75,-51,-165v0,-90,51,-166,51,-166","w":98},"`":{"d":"51,-262r38,0r19,33r-28,0","w":180},"%":{"d":"52,0r-24,0r97,-265r23,0xm44,-237v0,0,0,-10,-6,-10v-7,0,-7,10,-7,10r0,77v0,0,0,10,7,10v6,0,6,-10,6,-10r0,-77xm145,-104v0,0,0,-10,-6,-10v-7,0,-7,10,-7,10r0,76v0,0,0,10,7,10v6,0,6,-10,6,-10r0,-76xm66,-160v0,0,0,31,-28,31v-28,0,-28,-31,-28,-31r0,-77v0,0,0,-30,28,-30v28,0,28,30,28,30r0,77xm167,-28v0,0,0,31,-28,31v-28,0,-28,-31,-28,-31r0,-76v0,0,0,-31,28,-31v28,0,28,31,28,31r0,76","w":176},"#":{"d":"9,-77r4,-34r35,0r7,-46r-35,0r5,-34r34,0r10,-74r35,0r-10,74r46,0r10,-74r34,0r-10,74r34,0r-5,34r-33,0r-7,46r34,0r-5,34r-34,0r-10,77r-35,0r11,-77r-46,0r-10,77r-35,0r11,-77r-35,0xm89,-157r-6,46r46,0r6,-46r-46,0","w":216},"\"":{"d":"42,-168r-27,0r-5,-97r38,0","w":57},")":{"d":"7,-265r29,-14v0,0,51,76,51,166v0,90,-51,165,-51,165r-29,-15v0,0,46,-61,46,-150v0,-89,-46,-152,-46,-152","w":98},"<":{"d":"13,-114r0,-28r160,-84r0,35r-123,63r123,62r0,35","w":186},"^":{"d":"76,-265r41,0r67,123r-35,0r-52,-96r-53,96r-35,0","w":193},"\u2122":{"d":"31,-246r-18,0r0,-19r56,0r0,19r-18,0r0,102r-20,0r0,-102xm118,-144r-9,0r-14,-79r0,79r-18,0r0,-121r25,0v5,18,6,40,12,57r12,-57r24,0r0,121r-18,0r0,-79","w":164},"\u00ae":{"d":"110,-210v43,-3,78,3,75,46v0,15,-1,27,-15,39r18,70r-26,0r-17,-64r-10,0r0,64r-25,0r0,-155xm161,-164v1,-14,-6,-26,-26,-23r0,46v19,3,28,-10,26,-23xm9,-132v0,-75,61,-135,135,-135v75,0,136,60,136,135v0,74,-61,135,-136,135v-74,0,-135,-61,-135,-135xm30,-132v0,62,52,114,114,114v63,0,115,-52,115,-114v0,-63,-52,-115,-115,-115v-62,0,-114,52,-114,115","w":289},"\u00a9":{"d":"9,-132v0,-75,61,-135,135,-135v75,0,136,60,136,135v0,74,-61,135,-136,135v-74,0,-135,-61,-135,-135xm153,-108r24,0r0,22v0,0,0,35,-33,35v-34,0,-34,-35,-34,-35r0,-93v0,0,0,-34,34,-34v43,11,31,29,33,56r-24,0v-3,-15,8,-28,-9,-33v-9,0,-8,11,-8,11r0,93v0,0,-1,11,8,11v17,-5,6,-18,9,-33xm30,-132v0,62,52,114,114,114v63,0,115,-52,115,-114v0,-63,-52,-115,-115,-115v-62,0,-114,52,-114,115","w":289},"\u00a2":{"d":"48,-275r22,0r0,42v26,2,35,31,33,71r-33,0v0,-16,3,-39,-13,-39v-10,0,-12,9,-12,16r0,106v0,7,2,16,12,16v18,0,12,-27,13,-44r33,0v2,40,-5,75,-33,75r0,54r-22,0r0,-53v-47,0,-36,-91,-36,-144v0,-39,14,-55,36,-58r0,-42","w":111},"\u2018":{"d":"9,-178v-4,-39,8,-62,19,-87r18,0r-12,47r12,0r0,40r-37,0","w":54},"\u2019":{"d":"46,-265v4,40,-9,62,-20,87r-18,0r13,-47r-13,0r0,-40r38,0","w":54},"\u00bf":{"d":"78,-197r0,40r-37,0r0,-40r37,0xm7,19v2,-39,36,-54,36,-100r0,-45r33,0v3,51,-6,103,-24,125v-6,7,-8,15,-9,20v-1,5,2,16,12,16v13,0,21,-18,23,-25r31,14v-4,11,-22,46,-55,45v-41,-1,-47,-36,-47,-50","w":113},"\u00a1":{"d":"15,-157r0,-40r38,0r0,40r-38,0xm13,68r10,-194r22,0r10,194r-42,0","w":68},"\u00a3":{"d":"127,-197r-37,0v0,-17,-5,-34,-21,-34v-12,0,-15,15,-15,29v0,21,8,42,13,64r37,0r0,24r-31,0v8,29,7,42,-5,69v21,13,35,19,37,-23r34,4v-3,44,-22,67,-45,67v-17,0,-34,-18,-48,-18v-13,0,-20,18,-20,18r-25,-14v0,0,12,-34,37,-38v7,-23,8,-42,1,-65r-33,0r0,-24r26,0v-20,-53,-30,-123,37,-129v47,-4,58,35,58,70","w":143},"\u2026":{"d":"9,0r0,-40r38,0r0,40r-38,0xm66,0r0,-40r38,0r0,40r-38,0xm122,0r0,-40r38,0r0,40r-38,0","w":169},"\ufb01":{"d":"121,0r-36,0r0,-164r-27,0r0,164r-36,0r0,-164r-18,0r0,-33r18,0v0,-27,-2,-68,45,-70v13,0,26,2,26,2r0,33v0,0,-8,-2,-20,-2v-18,0,-15,24,-15,37r63,0r0,197","w":135},"\ufb02":{"d":"121,0r-36,0r0,-234v-26,-5,-29,18,-27,37r19,0r0,33r-19,0r0,164r-36,0r0,-164r-18,0r0,-33r18,0v0,-27,-2,-72,45,-70r54,2r0,265","w":135},"\u00a5":{"d":"13,-60r0,-24r31,0r0,-24r-31,0r0,-24r26,0r-35,-133r38,0r22,88r20,-88r38,0r-34,133r26,0r0,24r-31,0r0,24r31,0r0,24r-31,0r0,60r-39,0r0,-60r-31,0","w":126},"\u00b4":{"d":"91,-262r38,0r-29,33r-28,0","w":180},"\u02c6":{"d":"71,-262r38,0r25,33r-33,0r-11,-13r-11,13r-33,0","w":179},"\u00a8":{"d":"48,-229r0,-36r33,0r0,36r-33,0xm99,-229r0,-36r33,0r0,36r-33,0","w":180},"\u02dc":{"d":"125,-235v-10,14,-57,-7,-70,6v1,-20,-6,-33,19,-34v14,3,43,11,51,1r0,27","w":180},"\u00c4":{"d":"41,0r-37,0r40,-265r47,0r40,265r-38,0r-7,-54r-37,0xm81,-95v-6,-29,-5,-65,-15,-90r-12,90r27,0xm25,-288r0,-35r34,0r0,35r-34,0xm76,-288r0,-35r33,0r0,35r-33,0","w":134,"k":{"T":8}},"\u00c9":{"d":"14,0r0,-265r89,0r0,40r-50,0r0,70r36,0r0,42r-36,0r0,73r50,0r0,40r-89,0xm60,-320r38,0r-29,32r-28,0","w":110,"k":{"A":-1,"\u00c4":-1,"\u00c0":-1,"\u00c1":-1,"\u00c3":-1,"\u00c2":-1,"\u00c5":-1}},"\u00d1":{"d":"93,0v-16,-49,-24,-104,-43,-150r0,150r-36,0r0,-265r35,0v16,49,24,105,43,151r0,-151r36,0r0,265r-35,0xm106,-293v-10,14,-57,-7,-70,6v1,-20,-6,-33,19,-33v14,0,42,9,51,1r0,26","w":142},"\u00d6":{"d":"116,-54v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,156xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156xm22,-288r0,-35r33,0r0,35r-33,0xm72,-288r0,-35r34,0r0,35r-34,0","w":127,"k":{"T":4}},"\u00dc":{"d":"79,-265r39,0r0,211v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-211r39,0r0,211v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-211xm24,-288r0,-35r33,0r0,35r-33,0xm75,-288r0,-35r33,0r0,35r-33,0","w":131},"\u00e1":{"d":"44,-51v0,5,1,18,10,18v26,-1,12,-39,15,-62v-18,8,-25,25,-25,44xm9,-46v1,-85,60,-50,60,-104v0,-7,0,-18,-10,-18v-12,0,-10,18,-10,29r-36,0v-3,-35,18,-61,49,-61v74,0,33,126,46,200r-35,0v-5,-4,-1,-17,-6,-16v-16,25,-58,34,-58,-30xm65,-262r38,0r-28,33r-29,0","w":119,"k":{"t":3,"f":2,"v":1,"w":1,"y":1,"\u00ff":1,"\u00fd":1,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1}},"\u00e9":{"d":"72,-71r33,0r0,23v0,0,0,51,-47,51v-47,0,-46,-52,-46,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51r0,57r-60,0v4,26,-11,52,14,63v21,-8,10,-23,13,-42xm59,-168v-22,9,-11,27,-14,48r27,0v-3,-22,9,-39,-13,-48xm65,-262r38,0r-28,33r-29,0","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00ed":{"d":"14,0r37,0r0,-197r-37,0r0,197xm33,-262r38,0r-29,33r-28,0","w":65,"k":{"t":1,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":2,"\u0161":2}},"\u00f3":{"d":"104,-149r0,101v0,0,1,51,-46,51v-47,0,-47,-52,-47,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51xm70,-148v0,0,2,-20,-12,-20v-13,0,-13,20,-13,20r0,99v0,0,0,20,13,20v14,0,12,-20,12,-20r0,-99xm64,-262r38,0r-28,33r-28,0","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00e0":{"d":"44,-51v0,5,1,18,10,18v26,-1,12,-39,15,-62v-18,8,-25,25,-25,44xm9,-46v1,-85,60,-50,60,-104v0,-7,0,-18,-10,-18v-12,0,-10,18,-10,29r-36,0v-3,-35,18,-61,49,-61v74,0,33,126,46,200r-35,0v-5,-4,-1,-17,-6,-16v-16,25,-58,34,-58,-30xm18,-262r38,0r19,33r-29,0","w":119,"k":{"t":3,"f":2,"v":1,"w":1,"y":1,"\u00ff":1,"\u00fd":1,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1}},"\u00e8":{"d":"72,-71r33,0r0,23v0,0,0,51,-47,51v-47,0,-46,-52,-46,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51r0,57r-60,0v4,26,-11,52,14,63v21,-8,10,-23,13,-42xm59,-168v-22,9,-11,27,-14,48r27,0v-3,-22,9,-39,-13,-48xm18,-262r38,0r19,33r-29,0","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00e2":{"d":"44,-51v0,5,1,18,10,18v26,-1,12,-39,15,-62v-18,8,-25,25,-25,44xm9,-46v1,-85,60,-50,60,-104v0,-7,0,-18,-10,-18v-12,0,-10,18,-10,29r-36,0v-3,-35,18,-61,49,-61v74,0,33,126,46,200r-35,0v-5,-4,-1,-17,-6,-16v-16,25,-58,34,-58,-30xm41,-262r38,0r25,33r-33,0r-11,-13r-11,13r-33,0","w":119,"k":{"t":3,"f":2,"v":1,"w":1,"y":1,"\u00ff":1,"\u00fd":1,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1}},"\u00e4":{"d":"44,-51v0,5,1,18,10,18v26,-1,12,-39,15,-62v-18,8,-25,25,-25,44xm9,-46v1,-85,60,-50,60,-104v0,-7,0,-18,-10,-18v-12,0,-10,18,-10,29r-36,0v-3,-35,18,-61,49,-61v74,0,33,126,46,200r-35,0v-5,-4,-1,-17,-6,-16v-16,25,-58,34,-58,-30xm18,-229r0,-36r33,0r0,36r-33,0xm69,-229r0,-36r33,0r0,36r-33,0","w":119,"k":{"t":3,"f":2,"v":1,"w":1,"y":1,"\u00ff":1,"\u00fd":1,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1}},"\u00e3":{"d":"44,-51v0,5,1,18,10,18v26,-1,12,-39,15,-62v-18,8,-25,25,-25,44xm9,-46v1,-85,60,-50,60,-104v0,-7,0,-18,-10,-18v-12,0,-10,18,-10,29r-36,0v-3,-35,18,-61,49,-61v74,0,33,126,46,200r-35,0v-5,-4,-1,-17,-6,-16v-16,25,-58,34,-58,-30xm95,-235v-10,14,-57,-7,-70,6v1,-20,-6,-33,19,-34v14,3,43,11,51,1r0,27","w":119,"k":{"t":3,"f":2,"v":1,"w":1,"y":1,"\u00ff":1,"\u00fd":1,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1}},"\u00ea":{"d":"72,-71r33,0r0,23v0,0,0,51,-47,51v-47,0,-46,-52,-46,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51r0,57r-60,0v4,26,-11,52,14,63v21,-8,10,-23,13,-42xm59,-168v-22,9,-11,27,-14,48r27,0v-3,-22,9,-39,-13,-48xm39,-262r38,0r25,33r-33,0r-11,-13r-11,13r-33,0","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00eb":{"d":"72,-71r33,0r0,23v0,0,0,51,-47,51v-47,0,-46,-52,-46,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51r0,57r-60,0v4,26,-11,52,14,63v21,-8,10,-23,13,-42xm59,-168v-22,9,-11,27,-14,48r27,0v-3,-22,9,-39,-13,-48xm16,-229r0,-36r33,0r0,36r-33,0xm67,-229r0,-36r33,0r0,36r-33,0","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00ec":{"d":"14,0r37,0r0,-197r-37,0r0,197xm-6,-262r38,0r19,33r-28,0","w":65,"k":{"t":1,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":2,"\u0161":2}},"\u00ee":{"d":"14,0r37,0r0,-197r-37,0r0,197xm13,-262r39,0r25,33r-33,0r-12,-13r-10,13r-34,0","w":65,"k":{"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1}},"\u00ef":{"d":"51,0r-37,0r0,-197r37,0r0,197xm-9,-229r0,-36r33,0r0,36r-33,0xm41,-229r0,-36r34,0r0,36r-34,0","w":65,"k":{"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1}},"\u00f1":{"d":"63,-165v-7,0,-12,10,-12,10r0,155r-37,0r0,-197r37,0r0,17v3,-2,16,-20,29,-20v19,0,28,23,28,39r0,161r-37,0r0,-156v0,-8,-4,-9,-8,-9xm96,-235v-10,14,-57,-7,-70,6v1,-20,-6,-33,19,-34v14,3,43,11,51,1r0,27","w":121,"k":{"t":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"s":2,"\u0161":2}},"\u00f2":{"d":"104,-149r0,101v0,0,1,51,-46,51v-47,0,-47,-52,-47,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51xm70,-148v0,0,2,-20,-12,-20v-13,0,-13,20,-13,20r0,99v0,0,0,20,13,20v14,0,12,-20,12,-20r0,-99xm17,-262r38,0r19,33r-28,0","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00f4":{"d":"104,-149r0,101v0,0,1,51,-46,51v-47,0,-47,-52,-47,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51xm70,-148v0,0,2,-20,-12,-20v-13,0,-13,20,-13,20r0,99v0,0,0,20,13,20v14,0,12,-20,12,-20r0,-99xm39,-262r38,0r25,33r-33,0r-11,-13r-11,13r-33,0","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00f6":{"d":"104,-149r0,101v0,0,1,51,-46,51v-47,0,-47,-52,-47,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51xm70,-148v0,0,2,-20,-12,-20v-13,0,-13,20,-13,20r0,99v0,0,0,20,13,20v14,0,12,-20,12,-20r0,-99xm16,-229r0,-36r33,0r0,36r-33,0xm67,-229r0,-36r33,0r0,36r-33,0","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00f5":{"d":"104,-149r0,101v0,0,1,51,-46,51v-47,0,-47,-52,-47,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51xm70,-148v0,0,2,-20,-12,-20v-13,0,-13,20,-13,20r0,99v0,0,0,20,13,20v14,0,12,-20,12,-20r0,-99xm93,-235v-10,14,-57,-7,-70,6v1,-20,-6,-33,19,-34v14,3,43,11,51,1r0,27","k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00fa":{"d":"59,-32v7,0,12,-10,12,-10r0,-155r36,0r0,197r-36,0r0,-17v-3,2,-17,20,-30,20v-19,0,-27,-23,-27,-39r0,-161r36,0r0,156v0,8,5,9,9,9xm67,-262r38,0r-29,33r-28,0","w":121,"k":{"t":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":1,"\u0161":1}},"\u00f9":{"d":"59,-32v7,0,12,-10,12,-10r0,-155r36,0r0,197r-36,0r0,-17v-3,2,-17,20,-30,20v-19,0,-27,-23,-27,-39r0,-161r36,0r0,156v0,8,5,9,9,9xm20,-262r38,0r18,33r-28,0","w":121,"k":{"t":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":1,"\u0161":1}},"\u00fb":{"d":"59,-32v7,0,12,-10,12,-10r0,-155r36,0r0,197r-36,0r0,-17v-3,2,-17,20,-30,20v-19,0,-27,-23,-27,-39r0,-161r36,0r0,156v0,8,5,9,9,9xm41,-262r39,0r25,33r-33,0r-12,-13r-10,13r-33,0","w":121,"k":{"t":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":1,"\u0161":1}},"\u00fc":{"d":"59,-32v7,0,12,-10,12,-10r0,-155r36,0r0,197r-36,0r0,-17v-3,2,-17,20,-30,20v-19,0,-27,-23,-27,-39r0,-161r36,0r0,156v0,8,5,9,9,9xm19,-229r0,-36r33,0r0,36r-33,0xm69,-229r0,-36r34,0r0,36r-34,0","w":121,"k":{"t":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":1,"\u0161":1}},"\u00d8":{"d":"36,-5v0,12,-15,9,-26,9r9,-28v-17,-58,-2,-120,-7,-186v0,0,0,-57,52,-57v12,0,20,2,27,7v0,-11,14,-8,25,-8r-8,26v19,57,3,121,8,188v0,0,0,57,-52,57v-12,0,-21,-3,-28,-8xm64,-35v14,0,13,-19,13,-19r0,-86r-26,86v0,0,-1,19,13,19xm51,-210r0,82r26,-84v0,-4,-1,-18,-13,-18v-14,0,-13,20,-13,20","w":127},"\u00f8":{"d":"36,14r-14,0r5,-22v-17,-15,-16,-41,-16,-41r0,-99v0,0,0,-52,47,-52v7,0,13,1,18,3r4,-14r13,0r-5,22v17,15,16,40,16,40r0,101v0,0,1,51,-46,51v-7,0,-13,-1,-18,-3xm45,-148r0,71r22,-85v-2,-4,-4,-6,-9,-6v-13,0,-13,20,-13,20xm58,-29v14,0,12,-20,12,-20r0,-71r-22,85v2,3,5,6,10,6"},"\u00e6":{"d":"130,-71r33,0r0,23v0,0,0,51,-47,51v-22,0,-33,-11,-39,-23v-24,28,-68,43,-68,-26v0,-67,56,-71,60,-83v-2,-15,6,-39,-10,-39v-12,0,-10,18,-10,29r-36,0v-6,-45,39,-77,75,-52v7,-5,16,-9,29,-9v47,0,46,51,46,51r0,57r-60,0v4,26,-11,52,14,63v21,-8,10,-23,13,-42xm44,-51v0,5,1,18,10,18v26,-1,12,-39,15,-62v-18,8,-25,25,-25,44xm117,-168v-22,9,-11,27,-14,48r27,0v-3,-22,9,-39,-13,-48","w":173},"\u0153":{"d":"131,-71r34,0r0,23v0,0,-1,51,-48,51v-13,0,-23,-4,-30,-10v-7,6,-16,10,-29,10v-47,0,-47,-52,-47,-52r0,-99v0,0,0,-52,47,-52v14,0,23,5,30,11v7,-6,16,-11,30,-11v47,0,47,51,47,51r0,57r-61,0v4,25,-11,55,14,63v21,-8,10,-23,13,-42xm70,-148v0,0,2,-20,-12,-20v-13,0,-13,20,-13,20r0,99v0,0,0,20,13,20v14,0,12,-20,12,-20r0,-99xm118,-168v-22,5,-12,27,-14,48r27,0v-3,-22,9,-39,-13,-48","w":174,"k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00c0":{"d":"41,0r-37,0r40,-265r47,0r40,265r-38,0r-7,-54r-37,0xm81,-95v-6,-29,-5,-65,-15,-90r-12,90r27,0xm25,-320r38,0r18,32r-28,0","w":134,"k":{"T":8}},"\u00c6":{"d":"97,0r0,-54r-40,0r-16,54r-38,0r74,-265r109,0r0,40r-50,0r0,70r36,0r0,42r-36,0r0,73r50,0r0,40r-89,0xm95,-185r-26,90r28,0v-2,-29,4,-65,-2,-90","w":193},"\u00c1":{"d":"41,0r-37,0r40,-265r47,0r40,265r-38,0r-7,-54r-37,0xm81,-95v-6,-29,-5,-65,-15,-90r-12,90r27,0xm70,-320r38,0r-28,32r-29,0","w":134,"k":{"T":8}},"\u00c3":{"d":"41,0r-37,0r40,-265r47,0r40,265r-38,0r-7,-54r-37,0xm81,-95v-6,-29,-5,-65,-15,-90r-12,90r27,0xm102,-293v-10,14,-57,-7,-70,6v1,-20,-6,-33,19,-33v14,0,42,9,51,1r0,26","w":134,"k":{"T":8}},"\u00d5":{"d":"116,-54v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,156xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156xm99,-293v-10,14,-57,-7,-70,6v1,-20,-6,-33,19,-33v14,0,42,9,51,1r0,26","w":127,"k":{"T":4}},"\u00ff":{"d":"6,70r0,-33v18,5,35,-15,32,-31r-34,-203r36,0v7,42,6,92,17,131v2,-46,11,-87,15,-131r35,0r-35,212v-5,32,-26,63,-66,55xm14,-229r0,-36r33,0r0,36r-33,0xm64,-229r0,-36r34,0r0,36r-34,0","w":111,"k":{"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"a":3,"\u00e1":3,"\u00e0":3,"\u00e2":3,"\u00e4":3,"\u00e3":3,"\u00e5":3,"'":-4,"\u201d":-4,"\u201c":-4,"\u2018":-4,"\u2019":-4}},"\u0178":{"d":"41,-265v8,29,11,61,21,88r21,-88r38,0r-40,152r0,113r-39,0r0,-113r-39,-152r38,0xm20,-288r0,-35r33,0r0,35r-33,0xm71,-288r0,-35r33,0r0,35r-33,0","w":123,"k":{"A":9,"\u00c4":9,"\u00c0":9,"\u00c1":9,"\u00c3":9,"\u00c2":9,"\u00c5":9,"d":9,"q":9,"c":14,"e":14,"o":14,"\u00e9":14,"\u00f3":14,"\u00e8":14,"\u00ea":14,"\u00eb":14,"\u00f2":14,"\u00f4":14,"\u00f6":14,"\u00f5":14,"\u0153":14,"\u00e7":14,"a":15,"\u00e1":15,"\u00e0":15,"\u00e2":15,"\u00e4":15,"\u00e3":15,"\u00e5":15}},"\u00c2":{"d":"41,0r-37,0r40,-265r47,0r40,265r-38,0r-7,-54r-37,0xm81,-95v-6,-29,-5,-65,-15,-90r-12,90r27,0xm48,-320r39,0r25,32r-34,0r-11,-13r-10,13r-34,0","w":134,"k":{"T":8}},"\u00ca":{"d":"14,0r0,-265r89,0r0,40r-50,0r0,70r36,0r0,42r-36,0r0,73r50,0r0,40r-89,0xm40,-320r38,0r25,32r-33,0r-11,-13r-11,13r-33,0","w":110,"k":{"A":-1,"\u00c4":-1,"\u00c0":-1,"\u00c1":-1,"\u00c3":-1,"\u00c2":-1,"\u00c5":-1}},"\u00cb":{"d":"14,0r0,-265r89,0r0,40r-50,0r0,70r36,0r0,42r-36,0r0,73r50,0r0,40r-89,0xm17,-288r0,-35r33,0r0,35r-33,0xm67,-288r0,-35r34,0r0,35r-34,0","w":110,"k":{"A":-1,"\u00c4":-1,"\u00c0":-1,"\u00c1":-1,"\u00c3":-1,"\u00c2":-1,"\u00c5":-1}},"\u00c8":{"d":"14,0r0,-265r89,0r0,40r-50,0r0,70r36,0r0,42r-36,0r0,73r50,0r0,40r-89,0xm19,-320r38,0r19,32r-28,0","w":110,"k":{"A":-1,"\u00c4":-1,"\u00c0":-1,"\u00c1":-1,"\u00c3":-1,"\u00c2":-1,"\u00c5":-1}},"\u00cd":{"d":"14,0r0,-265r39,0r0,265r-39,0xm34,-320r38,0r-29,32r-28,0","w":70,"k":{"t":1,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":2,"\u0161":2}},"\u00cc":{"d":"17,0r0,-265r39,0r0,265r-39,0xm-1,-320r38,0r18,32r-28,0","w":70,"k":{"t":1,"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"s":2,"\u0161":2}},"\u00ce":{"d":"13,0r0,-265r39,0r0,265r-39,0xm13,-320r39,0r25,32r-33,0r-12,-13r-10,13r-34,0","w":65,"k":{"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1}},"\u00cf":{"d":"13,0r0,-265r39,0r0,265r-39,0xm-9,-288r0,-35r33,0r0,35r-33,0xm41,-288r0,-35r34,0r0,35r-34,0","w":65,"k":{"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1}},"\u00d3":{"d":"116,-54v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,156xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156xm69,-320r38,0r-29,32r-28,0","w":127,"k":{"T":4}},"\u00d2":{"d":"116,-54v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,156xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156xm21,-320r38,0r19,32r-28,0","w":127,"k":{"T":4}},"\u00d4":{"d":"116,-54v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,156xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156xm45,-320r38,0r25,32r-33,0r-11,-13r-11,13r-33,0","w":127,"k":{"T":4}},"\u00da":{"d":"118,-265r-39,0r0,211v0,0,1,19,-13,19v-14,0,-13,-19,-13,-19r0,-211r-39,0r0,211v0,0,0,57,52,57v52,0,52,-57,52,-57r0,-211xm73,-320r38,0r-29,32r-28,0","w":131},"\u00d9":{"d":"118,-265r-39,0r0,211v0,0,1,19,-13,19v-14,0,-13,-19,-13,-19r0,-211r-39,0r0,211v0,0,0,57,52,57v52,0,52,-57,52,-57r0,-211xm26,-320r37,0r19,32r-28,0","w":131},"\u00db":{"d":"118,-265r-39,0r0,211v0,0,1,19,-13,19v-14,0,-13,-19,-13,-19r0,-211r-39,0r0,211v0,0,0,57,52,57v52,0,52,-57,52,-57r0,-211xm47,-320r38,0r25,32r-33,0r-11,-13r-11,13r-33,0","w":131},"\u00dd":{"d":"62,-177v-10,-26,-13,-59,-21,-88r-38,0r39,152r0,113r39,0r0,-113r40,-152r-38,0xm63,-320r38,0r-28,32r-28,0","w":123,"k":{"A":9,"\u00c4":9,"\u00c0":9,"\u00c1":9,"\u00c3":9,"\u00c2":9,"\u00c5":9,"d":9,"q":9,"c":14,"e":14,"o":14,"\u00e9":14,"\u00f3":14,"\u00e8":14,"\u00ea":14,"\u00eb":14,"\u00f2":14,"\u00f4":14,"\u00f6":14,"\u00f5":14,"\u0153":14,"\u00e7":14,"a":15,"\u00e1":15,"\u00e0":15,"\u00e2":15,"\u00e4":15,"\u00e3":15,"\u00e5":15}},"\u00fd":{"d":"6,37r0,33v39,8,61,-23,66,-55r35,-212r-35,0v-7,42,-6,92,-17,131r-15,-131r-36,0r34,203v1,16,-13,37,-32,31xm59,-262r38,0r-28,33r-28,0","w":111,"k":{"c":1,"e":1,"o":1,"\u00e9":1,"\u00f3":1,"\u00e8":1,"\u00ea":1,"\u00eb":1,"\u00f2":1,"\u00f4":1,"\u00f6":1,"\u00f5":1,"\u0153":1,"\u00e7":1,"a":3,"\u00e1":3,"\u00e0":3,"\u00e2":3,"\u00e4":3,"\u00e3":3,"\u00e5":3,"'":-4,"\u201d":-4,"\u201c":-4,"\u2018":-4,"\u2019":-4}},"\u0152":{"d":"64,0v-52,0,-52,-54,-52,-54r0,-156v0,0,0,-55,52,-55r102,0r0,40r-50,0r0,70r36,0r0,42r-36,0r0,73r50,0r0,40r-102,0xm77,-213v0,-5,-2,-17,-13,-17v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-159","w":172},"\u0131":{"d":"51,0r-37,0r0,-197r37,0r0,197","w":65},"\u02d8":{"d":"111,-262r19,16v0,0,-16,17,-40,17v-25,0,-40,-17,-40,-17r20,-16v0,0,7,8,20,8v14,0,21,-8,21,-8","w":180},"\u02c7":{"d":"109,-229r-38,0r-25,-33r33,0r11,13r11,-13r33,0","w":179},"\u02db":{"d":"61,37v8,-27,17,-42,41,-37v0,0,-16,13,-16,30v1,16,23,16,33,10r-3,24v-25,12,-57,-5,-55,-27","w":180},"\u00b8":{"d":"105,19v2,21,-2,36,-8,49r-18,0r7,-24r-11,0r0,-25r30,0","w":180},"\u02da":{"d":"63,-250v0,-15,12,-25,27,-25v15,0,27,10,27,25v0,15,-12,25,-27,25v-15,0,-27,-10,-27,-25xm77,-250v0,7,6,13,13,13v7,0,13,-6,13,-13v0,-7,-6,-12,-13,-12v-7,0,-13,5,-13,12","w":179},"\u02d9":{"d":"72,-228r0,-37r36,0r0,37r-36,0","w":179},"\u02dd":{"d":"57,-262r37,0r-28,33r-28,0xm110,-262r38,0r-29,33r-28,0","w":180},"\u00b7":{"d":"0,-114r0,-40r38,0r0,40r-38,0","w":37},"\u201a":{"d":"46,-40v4,40,-9,62,-20,87r-18,0r13,-47r-13,0r0,-40r38,0","w":54},"\u201e":{"d":"47,-40v4,40,-9,62,-20,87r-18,0r13,-47r-13,0r0,-40r38,0xm100,-40v4,39,-8,62,-19,87r-18,0r12,-47r-12,0r0,-40r37,0","w":109},"\u00c5":{"d":"41,0r-37,0r40,-265r47,0r40,265r-38,0r-7,-54r-37,0xm81,-95v-6,-29,-5,-65,-15,-90r-12,90r27,0xm41,-310v0,-15,12,-25,27,-25v15,0,26,10,26,25v0,15,-11,26,-26,26v-15,0,-27,-11,-27,-26xm54,-310v0,18,27,16,27,0v0,-7,-6,-12,-13,-12v-7,0,-14,5,-14,12","w":134,"k":{"T":8}},"\u00e5":{"d":"44,-51v0,5,1,18,10,18v26,-1,12,-39,15,-62v-18,8,-25,25,-25,44xm9,-46v1,-85,60,-50,60,-104v0,-7,0,-18,-10,-18v-12,0,-10,18,-10,29r-36,0v-3,-35,18,-61,49,-61v74,0,33,126,46,200r-35,0v-5,-4,-1,-17,-6,-16v-16,25,-58,34,-58,-30xm33,-250v0,-15,12,-25,27,-25v15,0,27,10,27,25v0,15,-12,25,-27,25v-15,0,-27,-10,-27,-25xm47,-250v0,7,6,13,13,13v7,0,13,-6,13,-13v0,-7,-6,-12,-13,-12v-7,0,-13,5,-13,12","w":119,"k":{"t":3,"f":2,"v":1,"w":1,"y":1,"\u00ff":1,"\u00fd":1,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1}},"\u00e7":{"d":"48,-152r0,107v0,7,0,15,10,15v16,2,8,-29,10,-43r37,0v3,47,-9,76,-47,76v-26,0,-46,-14,-46,-58r0,-86v0,-44,20,-59,46,-59v36,0,50,25,47,72r-37,0v-1,-14,5,-39,-10,-39v-10,0,-10,8,-10,15xm64,68v5,-14,10,-28,8,-49r-30,0r0,25r11,0r-7,24r18,0","w":113,"k":{"t":2,"f":2,"v":2,"w":2,"y":2,"\u00ff":2,"\u00fd":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"n":1,"m":1,"p":1,"r":1,"\u00f1":1,"l":1,"I":1,"i":1,"|":1,"\u00ed":1,"\u00ec":1,"\u00cd":1,"\u00cc":1,"s":1,"\u0161":1,"\u00ee":1,"\u00ef":1,"\u00ce":1,"\u00cf":1}},"\u00c7":{"d":"79,-91r37,0r0,37v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,36r-37,0v-4,-25,12,-46,-15,-56v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v28,-9,10,-31,15,-56xm69,68v5,-14,10,-28,8,-49r-30,0r0,25r11,0r-7,24r18,0","w":124},"\u017d":{"d":"4,0r0,-42r60,-184r-52,0r0,-39r95,0r0,39r-62,187r62,0r0,39r-103,0xm79,-288r-39,0r-25,-32r34,0r10,12r12,-12r33,0","w":110},"\u017e":{"d":"2,0r0,-30r50,-134r-42,0r0,-33r81,0r0,30r-50,134r50,0r0,33r-89,0xm68,-229r-39,0r-25,-33r33,0r11,13r11,-13r34,0","w":93},"\u0160":{"d":"79,-62v0,-43,-67,-95,-67,-144v0,-29,14,-60,51,-61v47,-1,54,40,54,70r-38,3v0,-18,-3,-38,-16,-38v-10,0,-13,11,-13,26v0,43,67,94,67,142v0,35,-12,67,-54,67v-50,0,-57,-38,-57,-77r39,-4v0,22,2,45,18,45v12,0,16,-12,16,-29xm81,-288r-39,0r-24,-32r33,0r11,12r11,-12r33,0","w":123},"\u0161":{"d":"70,-51v0,-35,-57,-51,-57,-96v0,-23,9,-52,44,-53v42,-1,46,31,46,53r-34,0v0,-9,1,-23,-11,-23v-10,0,-12,13,-12,23v0,36,58,52,58,96v0,24,-12,54,-47,54v-44,0,-51,-39,-51,-60r34,0v0,10,2,30,17,30v10,0,13,-12,13,-24xm75,-229r-39,0r-24,-33r33,0r10,13r12,-13r33,0","w":110,"k":{"t":3}},"\u00af":{"d":"55,-231r0,-29r70,0r0,29r-70,0","w":180},"\u20ac":{"d":"9,-144r0,-24r19,0r0,-42v0,0,0,-57,52,-57v60,0,51,51,52,72r-37,0v-2,-17,7,-28,-14,-35v-26,10,-9,36,-14,62r41,0r0,24r-41,0r0,24r41,0r0,24r-41,0v4,26,-12,51,14,61v22,-7,12,-18,14,-34r37,0r0,15v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-42r-19,0r0,-24r19,0r0,-24r-19,0","w":142},"\u00de":{"d":"14,0r0,-265r39,0r0,43v34,0,69,18,69,79v0,61,-35,80,-69,80r0,63r-39,0xm53,-183r0,80v24,0,29,-8,29,-38v0,-30,-5,-42,-29,-42","w":127},"\u00fe":{"d":"14,68r0,-333r37,0r0,81v0,0,16,-16,29,-16v20,0,28,23,28,39r0,125v0,16,-8,39,-28,39v-13,0,-29,-16,-29,-16r0,81r-37,0xm51,-154r0,111v0,13,20,17,20,0r0,-111v0,-7,-4,-12,-9,-12v-5,0,-11,5,-11,12","w":120,"k":{"t":2,"a":2,"\u00e1":2,"\u00e0":2,"\u00e2":2,"\u00e4":2,"\u00e3":2,"\u00e5":2,"s":2,"\u0161":2}},"\u0142":{"d":"59,0r-36,0r0,-112r-18,13r0,-39r18,-13r0,-114r36,0r0,85r18,-13r0,39r-18,13r0,141","w":82},"\u00d0":{"d":"4,-115r0,-40r10,0r0,-110v93,-4,108,12,108,133v0,119,-14,136,-108,132r0,-115r-10,0xm53,-226r0,71r15,0r0,40r-15,0r0,76v27,0,29,-6,29,-93v0,-86,-2,-94,-29,-94","w":133},"\u0141":{"d":"7,-99r0,-39r12,-9r0,-118r39,0r0,88r21,-16r0,39r-21,16r0,102r51,0r0,36r-90,0r0,-108","w":110},"\u00f0":{"d":"55,-236v-16,-18,5,-16,12,-29r9,11r17,-15r9,12r-17,15v29,35,21,127,22,194v0,0,0,51,-47,51v-47,0,-47,-52,-47,-52r0,-102v0,-7,0,-49,31,-49v8,0,18,6,27,14v-2,-15,-5,-27,-9,-36r-14,13r-10,-11xm72,-148v0,0,2,-20,-12,-20v-13,0,-12,20,-12,20r0,99v0,0,-1,20,12,20v14,0,12,-20,12,-20r0,-99","w":118},"\u00df":{"d":"61,-172r0,-25v8,0,15,-8,15,-20v0,-10,-5,-18,-15,-18v-9,0,-13,8,-13,18r0,217r-36,0r0,-217v0,-27,15,-50,49,-50v46,0,62,57,32,80v16,9,27,33,27,86v0,87,-21,101,-59,101r0,-34v15,0,22,-9,22,-67v0,-61,-7,-71,-22,-71","w":128},"B":{"d":"62,0r-48,0r0,-265v63,-3,108,3,106,71v0,24,-6,38,-25,54v0,0,27,12,27,65v0,39,-14,75,-60,75xm82,-79v0,-44,-22,-41,-29,-41r0,81v7,0,29,4,29,-40xm82,-191v0,-36,-22,-35,-29,-35r0,70v7,0,29,1,29,-35","w":131,"k":{"\u00dd":4,"\u0178":4,"Y":4}},"\u00a0":{"w":55}}});

