/**
 * jquery.LavaLamp v1.3.4b2 - light up your menu with fluid, jQuery powered animations.
 *
 * Requires jQuery v1.2.3 or better from http://jquery.com
 * Tested on jQuery 1.4, 1.3.2 and 1.2.6
 *
 * http://nixboxdesigns.com/projects/jquery-lavalamp/
 *
 * Copyright (c) 2008, 2009, 2010 Jolyon Terwilliger, jolyon@nixbox.com
 * Source code Copyright (c) 2008, 2009, 2010
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * credits to Guillermo Rauch and Ganeshji Marwaha (gmarwaha.com) for previous editions
 *
 * Version: 1.0 - adapted for jQuery 1.2.x series
 * Version: 1.1 - added linum parameter
 * Version: 1.2 - modified to support vertical resizing of elements
 * Version: 1.3 - enhanced automatic <li> item hi-lighting - will attempt to
 *					lock onto li > a element with href closest to selected
 *					window.location
 *			 	- click always returns 'true' by default, for standard link follow through.
 *
 * Version: 1.3.1 - verified for use with jQuery 1.3 - should still work with 1.2.x series
 *				- changed linum parameter to startItem for clarity
 *				- improved slide-in accuracy for .back elements with borders
 *				- changed .current class to .selectedLava for clarity and improved
 *					support
 *				- appended 'Lava' to all internal class names to avoid conflicts
 *				- fixed bug applying selectedLava class to elements with matching
 *					location.hash
 *				- now supports jquery.compat plugin for cross-library support
 *				- performance improvements
 *				- added new options:
 *				autoReturn: true - if set to false, hover will not return to last selected
 *									item upon list mouseout.
 *				returnDelay: 0 - if set, will delay auto-return feature specified # of
 *									milliseconds.
 *				setOnClick: true - if set to false, hover will return to default element
 *									regardless of click event.
 *				homeLeft: 0, homeTop: 0 - if either set to non zero value, absolute
 *									positioned li element with class .homeLava is 
 *									prepended to list for homing feature.
 *				homeWidth: 0, homeHeight: 0 - if set, are used for creation of li.homeLava
 *									element.
 *				returnHome: false - if set along with homeLeft or homeTop, lavalamp hover
 *									will always return to li.home after click.
 *
 * Version: 1.3.2 - fixed: stray $ references inside the plugin to work with
 *					jQuery.noConflict() properly - thanks Colin.
 *
 * Version: 1.3.3 - fixed: added closure with null passed argument for move() command in
 * 					returnDelay to fix errors some were seeing - thanks to Michel and 
 *					Richard for noticing this.
 *
 *					fixed: changed mouseover/out events to mouseenter/leave to fix jerky
 *					animation problem when using excessive margins instead of padding.  
 *					Thanks to Thomas for the solution and Chris for demonstrating the problem.
 *					* requires jQuery 1.3 or better
 *
 *					enhanced: added 'noLava' class detection to prevent LavaLamp effect
 *					application to LI elements with this class. This feature allows you to
 *					create submenus - for details, see examples at
 *					http://nixboxdesigns.com/demos/jquery-lavalamp-demos.html
 *
 *					enhanced: modified to better automatically find default location for 
 *					relative links. Thanks to Harold for testing and finding this bug.
 *
 * Version: 1.3.4 - major overhaul on practically everything:
 *					enhanced: added target and autoResize options - see below.
 *					enhanced: better automatic default item selection and URI resolution,
 *					better support for returnHome and returnDelay, refined internal variable
 *					usage and test to be as lean as possible
 *					fixed: backLava hover element now exactly covers the destination LI dimensions.
 *					fixed: changed use of mouseleave/mouseenter to bind events so will work with
 *							jQuery 1.2.2 onward.
 *					enhanced: behaves more like a plugin should and now automatically adds proper
 * 							position CSS tags to the backLava element and parent container
 *							if absent. 
 *
 * Examples and usage:
 *
 * The HTML markup used to build the menu can be as simple as...
 *
 *       <ul class="lavaLamp">
 *           <li><a href="#">Phone Home</a></li>
 *           <li><a href="#">Make Contact</a></li>
 *           <li><a href="#">Board Ship</a></li>
 *           <li><a href="#">Fly to Venus</a></li>
 *       </ul>
 *
 * Additional Styles must be added to make the LavaLamp perform properly, to wit:
 *
 * <style>
 * ul.lavaLamp {
 *   padding:5px;  // use some minimal padding to account for sloppy mouse movements
 * }
 * ul.lavaLamp li.backLava {
 *   z-index:3;   // must be less than z-index of A tags within the LI elements
 * }
 * ul.lavaLamp li a {
 *  display:block;  // helps with positioning the link within the LI element
 *  z-index:10;     // or must be higher than li.backLava z-index
 * }
 * </style>
 *
 * Once you have included the basic styles above, you will need to include 
 * the jQuery library, easing plugin (optional) and the this LavaLamp plugin.
 *
 * jQuery Easing Library 1.3 available here:  http://plugins.jquery.com/project/Easing
 * 
 * Example LavaLamp initializing statement:
 * $(function() { $("ul.lavaLamp").lavaLamp({ fx: "easeOutBack", speed: 700}) });
 * finds all UL elements in the document with the class of 'lavaLamp' and attaches the 
 * LavaLamp plugin using an easing library fx of OutBack and an animate speed of 
 * 700 milliseconds or 7/10ths of a second.
 *
 *
 * List of Parameters
 *
 * @param target - default: 'li' 
 * valid selector for target elements to receive hover effect
 *
 * Example:
 * jQuery("div#article").lavaLamp({ target:'p' });
 * assigns all p elements under div#article to receive lavaLamp hover events
 *
 * @param fx - default: 'swing'
 * selects the easing formula for the animation - requires the jQuery Easing library 
 * to be loaded for additional effects
 * 
 * Example:
 * jQuery("ul.lavaLamp").lavaLamp({ fx: "easeOutElastic" });
 * animates the backLava element using the OutElastic formula
 * 
 * @param speed - default: 500
 * sets animation speed in milliseconds
 * 
 * Example:
 * jQuery("ul.lavaLamp").lavaLamp({ speed: 1000 });
 * sets the animation speed to one second.
 * 
 * @param click - default: function() { return true; }
 * Callback to be executed when the menu item is clicked. The 'event' object and source target
 * DOM element will be passed in as arguments so you can use them in your function.
 * 
 * Example:
 * jQuery("ul.lavaLamp").lavaLamp({ click: function(event, menuItem) {
 *		alert(event+el);
 *		return false;
 * } });
 *
 * causes the browser to display an alert message of the variables passed and 
 * return false aborts any other click events on child items, including not 
 * following any links contained within the target
 *
 * @param startItem - default: 'no'
 * specifies the number target element as default, starting with 0 for the first element
 * Used to manually set the default lavaLamp hi-light on load.
 *
 * Example:
 * jQuery("ul.lavaLamp").lavaLamp({ startItem: 2 });
 * selects the third element in the list as default location for backLava
 *
 * @param autoReturn - default: true
 * defines whether the backLava hover should return to the last selectedLava element
 * upon mouseleave.
 *
 * Example:
 * jQuery("ul.lavaLamp").lavaLamp({ autoReturn: false });
 * turns off the autoReturn feature - backLava element will stay on the last element
 * that you hovered over.
 *
 * @param returnDelay - default: 0
 * how many milliseconds to wait before returning the backLava element to the last
 * selected element.  Only works if autoReturn is set to true (default setting)
 *
 * Example:
 * jQuery("ul.lavaLamp").lavaLamp({ returnDelay: 1000 });
 * waits one second after mouseleave event before returning to the last selected
 * element.
 *
 * @param setOnClick - default: true
 * defines whether a clicked element should receive the selectLava class and become the
 * most recently selected element
 *
 * Example:
 * jQuery("ul.lavaLamp").lavaLamp({ setOnClick:false });
 * disables selecting of elements once clicked - after you leave the parent list element
 * the backLava will return to the original default element the page was loaded with.
 *
 * @param homeTop - default: 0
 * @param homeLeft - default: 0
 * @param homeHeight - default: 0
 * @param homeWidth - default: 0
 * allows you to define an independent 'home' element where the backLava defaults to or can
 * be sent to. This can be used to define a unique starting and/or resting place for the 
 * backLava upon leaving the parent element.
 *
 * Example:
 * jQuery("ul.lavaLamp").lavaLamp({ homeTop:-100, homeLeft:0, homeHeight:20, homeWidth:600 });
 * creates a home element 100 pixels above the parent container with a height of 20px and
 * width of 600px.  If the parent element has CSS of overflow:hidden, this can provide
 * an interesting fly-in effect
 *
 * @param returnHome - default:false
 * adjusts behavior of the backLava element when the mouse leaves the parent container. 
 * the default behavior of 'false' causes the backLava element to stay on the active menu 
 * items after it is first triggered. this feature respects the returnDelay parameter, if set.
 * this feature overrides the autoReturn parameter.
 *
 * Example:
 * jQuery("ul.lavaLamp").lavaLamp({ returnHome:true });
 * causes the backLava element to always return to the homeLava position after 
 * mouse leaves the parent container.  this can be manually triggered by running 
 * the command jQuery("ul.lavaLamp").mouseover();
 *
 * @param autoResize - default:false
 * triggers the selectedLava mouseenter event when the window is resized 
 * setting autoResize to true causes the backLava element to reposition and change dimensions
 * if the resizing the screen changes the shape of the lavaLamp.  Best used with the
 * target option. Default is false for efficiency as this feature is new and seldom used.
 *
 * Example:
 * jQuery('div#articles').lavaLamp({target:'p',autoSize:true});
 * causes the backLava element to resize and reposition to the p.selectedLava position 
 * and dimensions when the window resizes.
 *
 */

//console.log();
(function(jQuery) {
jQuery.fn.lavaLamp = function(o) {
	o = jQuery.extend({
				target: 'li', 
				fx: 'swing',
				speed: 500, 
				click: function(){return true}, 
				startItem: '',
				autoReturn: true,
				returnDelay: 0,
				setOnClick: true,
				homeTop:0,
				homeLeft:0,
				homeWidth:0,
				homeHeight:0,
				returnHome:false,
				autoResize:false
				}, 
			o || {});

	// parseInt for easy mathing
	function getInt(arg) {
		var myint = parseInt(arg);
		return (isNaN(myint)? 0: myint);
	}

	if (o.autoResize)
		jQuery(window).resize(function(){
			jQuery(o.target+'.menu-current').trigger('mouseenter');
		});

	return this.each(function() {
		// ensures parent UL or OL element has some positioning
		if (jQuery(this).css('position')=='static')
			jQuery(this).css('position','relative');

		// create homeLava element if origin dimensions set
		if (o.homeTop || o.homeLeft) { 
			var $home = jQuery('<'+o.target+' class="homeLava"></'+o.target+'>').css({ left:o.homeLeft, top:o.homeTop, width:o.homeWidth, height:o.homeHeight, position:'absolute' });
			jQuery(this).prepend($home);
		}

		var path = location.pathname + location.search + location.hash, $selected, $back, $lt = jQuery(o.target+'[class!=noLava]', this), delayTimer, bx=0, by=0;

		// start $selected default with CSS class 'selectedLava'
		$selected = jQuery(o.target+'.menu-current', this);
		
		// override $selected if startItem is set
		if (o.startItem != '')
			$selected = $lt.eq(o.startItem);

		// default to $home element
		if ((o.homeTop || o.homeLeft) && $selected.length<1)
			$selected = $home;

		// loop through all the target element a href tags and
		// the longest href to match the location path is deemed the most 
		// accurate and selected as default
		if ($selected.length<1) {
			var pathmatch_len=0, $pathel;
	
			$lt.each(function(){ 
				var thishref = $('a:first',this).attr('href');
				//console.log(thishref+' size:'+thishref.length);
				if (path.indexOf(thishref)>-1 && thishref.length > pathmatch_len )
				{
					$pathel = $(this);
					pathmatch_len = thishref.length;
				}
	
			});
			if (pathmatch_len>0) {
				//console.log('found match:'+$('a:first',$pathel).attr('href'));
				$selected = $pathel;
			}
			//else 
				//console.log('no match!');
		}
	
		// if still no matches, default to the first element
		if ( $selected.length<1 )
			$selected = $lt.eq(0);

		// make sure we only have one element as $selected and apply selectedLava class
		$selected = jQuery($selected.eq(0).addClass('menu-current'));
			
		// add mouseover event for every sub element
		$lt.bind('mouseenter', function() {
			//console.log('mouseenter');
			// help backLava behave if returnDelay is set
			if(delayTimer) {clearTimeout(delayTimer);delayTimer=null;}
			move(jQuery(this));
		}).click(function(e) {
			if (o.setOnClick) {
				$selected.removeClass('menu-current');
				$selected = jQuery(this).addClass('menu-current');
			}
			return o.click.apply(this, [e, this]);
		});
		
		// creates and adds to the container a backLava element with absolute positioning
		$back = jQuery('<li class="backLava"><div class="leftLava"></div><div class="bottomLava"></div><div class="cornerLava"></div></li>').css('position','absolute').prependTo(this);

		// setting css height and width actually sets the innerHeight and innerWidth, so
		// compute border and padding differences on styled backLava element to fit them in also.
		bx = getInt($back.css('borderLeftWidth'))+getInt($back.css('borderRightWidth'))+getInt($back.css('paddingLeft'))+getInt($back.css('paddingRight'));
		by = getInt($back.css('borderTopWidth'))+getInt($back.css('borderBottomWidth'))+getInt($back.css('paddingTop'))+getInt($back.css('paddingBottom'));

		// set the starting position for the lavalamp hover element: .back
		if (o.homeTop || o.homeLeft)
			$back.css({ left:o.homeLeft, top:o.homeTop, width:o.homeWidth, height:o.homeHeight });
		else
		{
			$back.css({ left: $selected.position().left, top: $selected.position().top, width: $selected.outerWidth()-bx, height: $selected.outerHeight()-by }); 
		}

		// after we leave the container element, move back to default/last clicked element
		jQuery(this).bind('mouseleave', function() {
			//console.log('mouseleave');
			var $returnEl = null;
			if (o.returnHome)
				$returnEl = $home;
			else if (!o.autoReturn)
				return true;
		
			if (o.returnDelay) {
				if(delayTimer) clearTimeout(delayTimer);
				delayTimer = setTimeout(function(){move($returnEl);},o.returnDelay);
			}
			else {
				move($returnEl);
			}
			return true;
		});

		function move($el) {
			if (!$el) $el = $selected;

			$back.stop()
			.animate({
				left: $el.position().left,
				top: $el.position().top,
				width: $el.outerWidth()-bx,
				height: $el.outerHeight()-by
			}, o.speed, o.fx);
		};
	});
	
};
})(jQuery);
/*
Supersized - Fullscreen Slideshow jQuery Plugin
By Sam Dunn (www.buildinternet.com // www.onemightyroar.com)
Version: supersized.2.0.js // Relase Date: 5/7/09
Website: www.buildinternet.com/project/supersized
Thanks to Aen for preloading, fade effect, & vertical centering
*/
(function($){
	//Resize image on ready or resize
	$.fn.supersized = function() {
		$.inAnimation = false;
		$.paused = false;
		var options = $.extend($.fn.supersized.defaults, $.fn.supersized.options);
		
		$(window).bind("load", function(){
			$('#loading').hide();
			$('#supersize').fadeIn('fast');
			$('#content').show();
			if ($('#slideshow .activeslide').length == 0) $('#supersize a:first').addClass('activeslide');
			if (options.slide_captions == 1) $('#slidecaption').html($('#supersize .activeslide').find('img').attr('title'));
			if (options.navigation == 0) $('#navigation').hide();
			//Slideshow
			if (options.slideshow == 1){
				if (options.slide_counter == 1){ //Initiate slide counter if active
					$('#slidecounter .slidenumber').html(1);
	    			$('#slidecounter .totalslides').html($("#supersize > *").size());
	    		}
				slideshow_interval = setInterval("nextslide()", options.slide_interval);
				if (options.navigation == 1){ //Skip if no navigation
					$('#navigation a').click(function(){  
   						$(this).blur();  
   						return false;  
   					}); 	
					//Slide Navigation
				    $('#nextslide').click(function() {
				    	if($.paused) return false; if($.inAnimation) return false;
					    clearInterval(slideshow_interval);
					    nextslide();
					    slideshow_interval = setInterval(nextslide, options.slide_interval);
					    return false;
				    });
				    $('#prevslide').click(function() {
				    	if($.paused) return false; if($.inAnimation) return false;
				        clearInterval(slideshow_interval);
				        prevslide();
				        slideshow_interval = setInterval(nextslide, options.slide_interval);
				        return false;
				    });
					$('#nextslide img').hover(function() {
						if($.paused == true) return false;
					   	$(this).attr("src", "images/forward.gif");
					}, function(){
						if($.paused == true) return false;
					    $(this).attr("src", "images/forward_dull.gif");
					});
					$('#prevslide img').hover(function() {
						if($.paused == true) return false; 
					    $(this).attr("src", "images/back.gif");
					}, function(){
						if($.paused == true) return false;
					    $(this).attr("src", "images/back_dull.gif");
					});
					
				    //Play/Pause Button
				    $('#pauseplay').click(function() {
				    	if($.inAnimation) return false;
				    	var src = ($(this).find('img').attr("src") === "images/play.gif") ? "images/pause.gif" : "images/play.gif";
      					if (src == "images/pause.gif"){
      						$(this).find('img').attr("src", "images/play.gif");
      						$.paused = false;
					        slideshow_interval = setInterval(nextslide, options.slide_interval);  
				        }else{
				        	$(this).find('img').attr("src", "images/pause.gif");
				        	clearInterval(slideshow_interval);
				        	$.paused = true;
				        }
      					$(this).find('img').attr("src", src);
					    return false;
				    });
				    $('#pauseplay').mouseover(function() {
				    	var imagecheck = ($(this).find('img').attr("src") === "images/play_dull.gif");
				    	if (imagecheck){
      						$(this).find('img').attr("src", "images/play.gif"); 
				        }else{
				        	$(this).find('img').attr("src", "images/pause.gif");
				        }
				    });
				    
				    $('#pauseplay').mouseout(function() {
				    	var imagecheck = ($(this).find('img').attr("src") === "images/play.gif");
				    	if (imagecheck){
      						$(this).find('img').attr("src", "images/play_dull.gif"); 
				        }else{
				        	$(this).find('img').attr("src", "images/pause_dull.gif");
				        }
				        return false;
				    });
				}
			}
		});				
		$(document).ready(function() {
			$('#supersize').resizenow(); 
		});		
		//Pause when hover on image
		$('#supersize > *').hover(function() {
	   		if (options.slideshow == 1 && options.pause_hover == 1){
	   			if(!($.paused) && options.navigation == 1){
	   				$('#pauseplay > img').attr("src", "images/pause.gif"); 
	   				clearInterval(slideshow_interval);
	   			}
	   		}
	   		original_title = $(this).find('img').attr("title");
	   		if($.inAnimation) return false; else $(this).find('img').attr("title","");
	   	}, function() {
			if (options.slideshow == 1 && options.pause_hover == 1){
				if(!($.paused) && options.navigation == 1){
					$('#pauseplay > img').attr("src", "images/pause_dull.gif");
					slideshow_interval = setInterval(nextslide, options.slide_interval);
				} 
			}
			$(this).find('img').attr("title", original_title);	
	   	});
		
		$(window).bind("resize", function(){
    		$('#supersize').resizenow(); 
		});
		
		$('#supersize').hide();
		$('#content').hide();
	};	
	//Adjust image size
	$.fn.resizenow = function() {
		var options = $.extend($.fn.supersized.defaults, $.fn.supersized.options);
	  	return this.each(function() {
	  		
			//Define image ratio
			var ratio = options.startheight/options.startwidth;
			
			//Gather browser and current image size
			var imagewidth = $(this).width();
			var imageheight = $(this).height();
			var browserwidth = $(window).width();
			var browserheight = $(window).height();
			var offset;

			//Resize image to proper ratio
			if ((browserheight/browserwidth) > ratio){
			    $(this).height(browserheight);
			    $(this).width(browserheight / ratio);
			    $(this).children().height(browserheight);
			    $(this).children().width(browserheight / ratio);
			} else {
			    $(this).width(browserwidth);
			    $(this).height(browserwidth * ratio);
			    $(this).children().width(browserwidth);
			    $(this).children().height(browserwidth * ratio);
			}
			if (options.vertical_center == 1){
				$(this).children().css('left', (browserwidth - $(this).width())/2);
				$(this).children().css('top', (browserheight - $(this).height())/2);
			}
			return false;
		});
	};	
	$.fn.supersized.defaults = { 
			startwidth: 170,  
			startheight: 100,
			vertical_center: 1,
			slideshow: 1,
			navigation: 1,
			transition: 3, 
			pause_hover: 0,
			slide_counter: 1,
			slide_captions: 1,
			slide_interval: 10000  
	};	
})(jQuery);

	//Slideshow Next Slide
	function nextslide() {
		if($.inAnimation) return false;
		else $.inAnimation = true;
	    var options = $.extend($.fn.supersized.defaults, $.fn.supersized.options);
	    var currentslide = $('#supersize .activeslide');
	    currentslide.removeClass('activeslide');
		
	    if ( currentslide.length == 0 ) currentslide = $('#supersize a:last');
			
	    var nextslide =  currentslide.next().length ? currentslide.next() : $('#supersize a:first');
	    var prevslide =  nextslide.prev().length ? nextslide.prev() : $('#supersize a:last');
		
		
		//Display slide counter
		if (options.slide_counter == 1){
			var slidecount = $('#slidecounter .slidenumber').html();
			currentslide.next().length ? slidecount++ : slidecount = 1;
		    $('#slidecounter .slidenumber').html(slidecount);
		}
		
		$('.prevslide').removeClass('prevslide');
		prevslide.addClass('prevslide');
		
		//Captions require img in <a>
	    if (options.slide_captions == 1) $('#slidecaption').html($(nextslide).find('img').attr('title'));
		
	    nextslide.hide().addClass('activeslide')
	    	if (options.transition == 0){
	    		nextslide.show(); $.inAnimation = false;
	    	}
	    	if (options.transition == 1){
	    		nextslide.fadeIn(750, function(){$.inAnimation = false;});
	    	}
	    	if (options.transition == 2){
	    		nextslide.show("slide", { direction: "up" }, 'slow', function(){$.inAnimation = false;});
	    	}
	    	if (options.transition == 3){
	    		nextslide.show("slide", { direction: "right" }, 'slow', function(){$.inAnimation = false;});
	    	}
	    	if (options.transition == 4){
	    		nextslide.show("slide", { direction: "down" }, 'slow', function(){$.inAnimation = false;});
	    	}
	    	if (options.transition == 5){
	    		nextslide.show("slide", { direction: "left" }, 'slow', function(){$.inAnimation = false;});
	    	}
	    	
	    $('#supersize').resizenow();//Fix for resize mid-transition
	    
	}
	
	//Slideshow Previous Slide
	function prevslide() {
		if($.inAnimation) return false;
		else $.inAnimation = true;
	    var options = $.extend($.fn.supersized.defaults, $.fn.supersized.options);
	    var currentslide = $('#supersize .activeslide');
	    currentslide.removeClass('activeslide');
		
	    if ( currentslide.length == 0 ) currentslide = $('#supersize a:first');
			
	    var nextslide =  currentslide.prev().length ? currentslide.prev() : $('#supersize a:last');
	    var prevslide =  nextslide.next().length ? nextslide.next() : $('#supersize a:first');
		
		//Display slide counter
		if (options.slide_counter == 1){
			var slidecount = $('#slidecounter .slidenumber').html();
			currentslide.prev().length ? slidecount-- : slidecount = $("#supersize > *").size();
		    $('#slidecounter .slidenumber').html(slidecount);
		}
		
		$('.prevslide').removeClass('prevslide');
		prevslide.addClass('prevslide');
		
		//Captions require img in <a>
	    if (options.slide_captions == 1) $('#slidecaption').html($(nextslide).find('img').attr('title'));
		
	    nextslide.hide().addClass('activeslide')
	    	if (options.transition == 0){
	    		nextslide.show(); $.inAnimation = false;
	    	}
	    	if (options.transition == 1){
	    		nextslide.fadeIn(750, function(){$.inAnimation = false;});
	    	}
	    	if (options.transition == 2){
	    		nextslide.show("slide", { direction: "down" }, 'slow', function(){$.inAnimation = false;});
	    	}
	    	if (options.transition == 3){
	    		nextslide.show("slide", { direction: "left" }, 'slow', function(){$.inAnimation = false;});
	    	}
	    	if (options.transition == 4){
	    		nextslide.show("slide", { direction: "up" }, 'slow', function(){$.inAnimation = false;});
	    	}
	    	if (options.transition == 5){
	    		nextslide.show("slide", { direction: "right" }, 'slow', function(){$.inAnimation = false;});
	    	}
	    	
	    	$('#supersize').resizenow();//Fix for resize mid-transition
	}
	/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																										   /*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2008 Bernd Montag - feel free to distribute - feel free to use personal and
 * commercial - read attached textfile for restrictions
 */
Cufon.registerFont({"w":85,"face":{"font-family":"Sansation","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 2 0 4","ascent":"288","descent":"-72","bbox":"-6 -323 352 76","underline-thickness":"26.3672","underline-position":"-15.6445","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{},"!":{"d":"59,-251r0,186r-33,0r0,-186r33,0xm59,-33r0,33r-33,0r0,-33r33,0"},"\"":{"d":"115,-251r-5,76r-22,0r-5,-76r32,0xm50,-251r-5,76r-22,0r-5,-76r32,0","w":132},"#":{"d":"141,-154r-16,66r67,0r15,-66r-66,0xm71,1r15,-61r-68,0r5,-28r71,0r15,-66r-70,0r5,-27r72,0r18,-69r32,0r-18,69r66,0r18,-70r32,0r-18,70r69,0r-5,27r-71,0r-15,66r70,0r-5,28r-73,0r-15,61r-32,0r16,-61r-67,0r-16,61r-31,0","w":332},"$":{"d":"26,-42r0,-28v32,11,106,22,108,-16v2,-26,-28,-25,-55,-25v-41,0,-61,-18,-61,-54v0,-30,20,-48,61,-53r0,-33r31,0r0,33v18,1,33,4,48,9r0,28v-33,-14,-109,-20,-111,16v-2,25,31,24,58,24v41,0,62,19,62,55v0,30,-19,48,-57,53r0,33r-31,0r0,-33v-21,-1,-38,-4,-53,-9","w":184},"%":{"d":"54,0r-36,0r178,-251r36,0xm66,-182v17,0,26,-9,26,-26v0,-17,-9,-25,-26,-25v-17,0,-26,8,-26,25v0,17,9,26,26,26xm18,-207v0,-30,15,-46,48,-46v32,0,49,16,49,46v0,30,-17,45,-49,45v-33,0,-48,-15,-48,-45xm184,-18v17,0,26,-9,26,-26v0,-17,-9,-25,-26,-25v-17,0,-26,8,-26,25v0,17,9,26,26,26xm135,-44v0,-30,16,-45,49,-45v32,0,48,15,48,45v0,30,-16,46,-48,46v-33,0,-49,-16,-49,-46","w":249},"&":{"d":"52,-128v-23,-10,-34,-29,-34,-56v0,-68,89,-78,153,-59r0,27v-43,-14,-121,-17,-121,31v0,56,62,43,113,44r0,-25v20,-2,19,17,29,25r32,0r0,27r-28,0v5,74,-19,116,-91,115v-58,0,-87,-23,-87,-70v0,-29,11,-49,34,-59xm163,-114v-51,1,-113,-12,-113,44v0,29,18,44,53,44v51,0,64,-34,60,-88","w":224},"'":{"d":"50,-251r-5,76r-22,0r-5,-76r32,0","w":67},"(":{"d":"85,-251v-46,106,-47,212,0,318r-32,0v-46,-106,-47,-212,0,-318r32,0","w":98},")":{"d":"46,-251v46,106,47,212,0,318r-33,0v46,-106,47,-212,0,-318r33,0","w":98},"*":{"d":"57,-251r28,0r-5,40r36,-17r9,26r-40,7r28,30r-22,16r-20,-36r-20,36r-21,-16r28,-30r-41,-7r9,-27r37,19","w":142},"+":{"d":"70,-105r0,-53r27,0r0,53r52,0r0,26r-52,0r0,53r-27,0r0,-53r-52,0r0,-26r52,0","w":166},",":{"d":"76,-33r-26,77r-32,0r26,-77r32,0","w":94},"-":{"d":"105,-105r0,26r-87,0r0,-26r87,0","w":123},"\u2010":{"d":"105,-105r0,26r-87,0r0,-26r87,0","w":123},".":{"d":"50,-33r0,33r-32,0r0,-33r32,0","w":67},"\/":{"d":"40,0r-36,0r128,-251r36,0","w":172},"0":{"d":"122,-25v48,0,72,-33,72,-101v0,-67,-24,-101,-72,-101v-50,0,-75,34,-75,101v0,68,25,101,75,101xm13,-125v0,-85,37,-128,109,-128v71,0,107,43,107,128v0,85,-36,127,-107,127v-72,0,-109,-42,-109,-127","w":241},"1":{"d":"44,0r0,-218r-26,0r0,-16r58,-17r0,251r-32,0","w":111},"2":{"d":"18,0r0,-26v93,-64,139,-115,139,-153v0,-62,-92,-55,-132,-28r0,-29v60,-33,165,-20,165,57v0,43,-42,94,-126,153r126,0r0,26r-172,0","w":207},"3":{"d":"18,-243v64,-21,160,-14,160,58v0,28,-11,48,-33,58v22,10,33,29,33,57v0,75,-94,84,-160,61r0,-28v45,17,128,24,128,-33v0,-52,-53,-44,-102,-44r0,-27v49,0,102,8,102,-44v0,-54,-86,-47,-128,-29r0,-29","w":195},"4":{"d":"159,0r-33,0r0,-74r-113,0r0,-26r70,-151r32,0r-68,151r79,0r0,-93r33,0r0,93v10,8,30,5,26,26r-26,0r0,74","w":197,"k":{"7":26}},"5":{"d":"26,-251r150,0r0,26r-122,0r-6,71v71,-14,153,6,145,73v9,85,-100,96,-172,72r0,-28v50,18,146,25,140,-44v6,-61,-94,-56,-143,-42","w":206},"6":{"d":"18,-93v0,-55,29,-110,89,-166r22,19v-31,29,-53,58,-66,86v11,-3,26,-4,45,-4v61,0,92,25,92,75v0,56,-32,85,-97,85v-57,0,-85,-32,-85,-95xm105,-25v43,0,64,-19,64,-58v0,-54,-74,-54,-116,-44v-15,51,3,102,52,102","w":217,"k":{"9":17,"7":26}},"7":{"d":"18,-251r167,0r0,26r-101,225r-37,0r104,-225r-133,0r0,-26","w":197,"k":{"6":26,"4":26}},"8":{"d":"109,2v-93,0,-122,-100,-54,-133v-54,-35,-35,-134,54,-123v89,-10,108,88,53,123v25,11,38,30,38,56v0,51,-30,77,-91,77xm161,-186v0,-27,-17,-41,-53,-41v-34,0,-51,14,-51,41v0,28,18,42,53,42v34,0,51,-14,51,-42xm168,-73v0,-30,-20,-45,-60,-45v-38,0,-58,15,-58,45v0,33,20,48,60,48v39,0,58,-15,58,-48","w":217},"9":{"d":"200,-159v0,55,-29,110,-89,166r-22,-19v31,-29,53,-58,66,-86v-62,27,-137,6,-137,-71v0,-56,31,-85,93,-85v59,0,89,32,89,95xm110,-227v-40,0,-61,19,-61,58v0,64,82,63,116,40v15,-49,-6,-98,-55,-98","w":217,"k":{"7":17}},":":{"d":"50,-185r0,33r-32,0r0,-33r32,0xm50,-33r0,33r-32,0r0,-33r32,0","w":67},";":{"d":"76,-185r0,33r-32,0r0,-33r32,0xm76,-33r-26,77r-32,0r26,-77r32,0","w":94},"<":{"d":"18,-79r0,-26r158,-71r0,27r-131,57r131,57r0,26","w":193},"=":{"d":"149,-79r0,26r-131,0r0,-26r131,0xm149,-132r0,27r-131,0r0,-27r131,0","w":166},">":{"d":"18,-9r0,-26r130,-57r-130,-57r0,-27r158,71r0,26","w":193},"?":{"d":"44,-33r0,33r32,0r0,-33r-32,0xm18,-243v69,-18,160,-11,160,60v0,51,-38,72,-102,69r0,49r-32,0r0,-76v47,1,102,3,102,-42v0,-53,-80,-46,-128,-33r0,-27","w":195},"@":{"d":"110,-57v-7,-55,68,-63,123,-54v13,-58,-65,-51,-108,-38r0,-27v56,-20,140,-10,140,50r0,111v0,10,6,15,18,15v24,0,36,-32,36,-95v0,-88,-43,-132,-128,-132v-88,0,-132,44,-132,132v0,90,40,135,120,135r0,27v-102,0,-153,-54,-153,-162v0,-105,55,-158,163,-158v109,0,163,53,163,158v0,81,-25,121,-75,121v-28,0,-43,-13,-43,-39v-42,25,-133,15,-124,-44xm233,-84v-29,-5,-96,-11,-91,26v-4,44,70,36,91,17r0,-43","w":377},"A":{"d":"4,0r107,-251r36,0r107,251r-34,0r-33,-79r-84,0r9,-26r62,0r-46,-113r-90,218r-34,0","w":258,"k":{"Y":31,"V":31,"T":22}},"B":{"d":"26,0r0,-251v73,3,179,-19,179,58v0,29,-15,50,-46,62v33,6,49,25,49,57v0,50,-26,74,-78,74r-104,0xm59,-26v52,-1,114,12,114,-46v0,-34,-30,-48,-74,-45r0,-21v48,-6,72,-24,72,-52v0,-49,-67,-32,-112,-35r0,199","w":230},"C":{"d":"220,-9v-22,7,-46,11,-71,11v-88,0,-131,-44,-131,-131v0,-111,101,-143,202,-114r0,29v-77,-31,-170,-8,-170,85v0,98,89,122,170,92r0,28","w":243},"D":{"d":"59,-26v95,7,155,-9,155,-107v0,-87,-67,-98,-155,-92r0,199xm26,0r0,-251r102,0v79,0,118,39,118,118v0,88,-39,133,-118,133r-102,0","w":263},"E":{"d":"191,-251r0,26r-132,0r0,84r126,0r0,27r-126,0r0,88r134,0r0,26r-167,0r0,-251r165,0","w":215},"F":{"d":"191,-251r0,26r-132,0r0,84r126,0r0,27r-126,0r0,114r-33,0r0,-251r165,0","w":212,"k":{"\u00c1":26,"\u00c2":26,"\u00c3":26,"\u00c0":26,"\u00c6":26,"\u00c5":26,"\u00c4":26,"A":26}},"G":{"d":"220,-10v-20,8,-43,12,-66,12v-91,0,-136,-44,-136,-131v0,-111,101,-143,202,-114r0,29v-77,-31,-170,-8,-170,85v0,84,56,116,137,100r0,-85r33,0r0,104","w":243},"H":{"d":"26,0r0,-251r33,0r0,110r152,0r0,-110r32,0r0,251r-32,0r0,-114r-152,0r0,114r-33,0","w":269},"I":{"d":"59,-251r0,251r-33,0r0,-251r33,0"},"J":{"d":"90,-251r0,179v0,48,-29,72,-86,72r0,-26v35,0,53,-15,53,-46r0,-179r33,0","w":116},"K":{"d":"59,-251r0,251r-33,0r0,-251r33,0xm232,-251r-112,117r127,134r-49,0r-111,-123r0,-19r104,-109r41,0","w":251,"k":{"\u00d2":26,"\u00d4":26,"\u00d3":26,"\u00d5":26,"\u00d8":26,"\u00d6":26,"\u00c7":26,"Q":26,"O":26,"G":26,"C":26}},"L":{"d":"59,-251r0,225r131,0r0,26r-164,0r0,-251r33,0","w":207,"k":{"\u00d2":26,"\u00d4":26,"\u00d3":26,"\u00d5":26,"\u00d8":26,"\u00d6":26,"\u00c7":26,"Y":51,"V":53,"T":53,"Q":26,"O":26,"G":26,"C":26}},"M":{"d":"26,0r0,-251r42,0r92,209r90,-209r40,0r0,251r-29,0r0,-203r-89,203r-26,0r-91,-203r0,203r-29,0","w":316},"N":{"d":"26,0r0,-251r33,0r154,200r0,-200r30,0r0,251r-32,0r-154,-201r0,201r-31,0","w":269},"O":{"d":"144,-25v60,0,90,-33,90,-101v0,-67,-30,-101,-90,-101v-61,0,-92,34,-92,101v0,68,31,101,92,101xm18,-125v0,-85,42,-128,126,-128v83,0,124,43,124,128v0,85,-41,127,-124,127v-84,0,-126,-42,-126,-127","w":285},"P":{"d":"26,0r0,-251v74,3,179,-19,179,60v0,45,-33,73,-100,84r-6,-27v48,-8,72,-27,72,-56v0,-48,-68,-31,-112,-34r0,224r-33,0","w":218,"k":{"\u00c1":26,"\u00c2":26,"\u00c3":26,"\u00c0":26,"\u00c6":26,"\u00c5":26,"\u00c4":26,"A":26}},"Q":{"d":"144,-25v60,0,90,-33,90,-101v0,-67,-30,-101,-90,-101v-61,0,-92,34,-92,101v0,68,31,101,92,101xm18,-125v0,-85,42,-128,126,-128v83,0,124,43,124,128v0,70,-28,111,-85,124r41,47r-26,19r-54,-63v-84,0,-126,-42,-126,-127","w":285},"R":{"d":"26,0r0,-251v74,3,179,-19,179,60v0,33,-23,57,-70,73r86,118r-42,0r-80,-113r0,-21v48,-8,72,-27,72,-56v0,-48,-68,-31,-112,-34r0,224r-33,0","w":225},"S":{"d":"30,-9r0,-30v46,18,150,30,150,-33v0,-40,-41,-40,-83,-40v-53,0,-79,-23,-79,-69v0,-76,113,-83,182,-62r0,30v-46,-19,-150,-26,-150,32v0,40,40,40,82,40v54,0,81,23,81,69v0,80,-114,85,-183,63","w":230,"k":{"S":17}},"T":{"d":"191,-251r0,26r-79,0r0,225r-33,0r0,-225r-79,0r0,-26r191,0","w":190,"k":{"\u00c1":22,"\u00c2":22,"\u00c3":22,"\u00c0":22,"\u00f8":26,"\u00e6":26,"\u00c6":22,"\u00fc":26,"\u00fb":26,"\u00f9":26,"\u00fa":26,"\u00f5":26,"\u00f6":26,"\u00f4":26,"\u00f2":26,"\u00f3":26,"\u00eb":26,"\u00ea":26,"\u00e8":26,"\u00e9":26,"\u00e7":26,"\u00e5":26,"\u00e3":26,"\u00e4":26,"\u00e2":26,"\u00e0":26,"\u00e1":26,"\u00c5":22,"\u00c4":22,"z":26,"y":26,"x":26,"w":26,"v":26,"u":26,"t":26,"s":26,"r":26,"q":26,"p":26,"o":26,"n":26,"m":25,"g":26,"e":26,"d":26,"c":26,"a":26,"A":22}},"U":{"d":"26,-97r0,-154r33,0v8,92,-33,226,72,226v105,0,64,-134,72,-226r33,0r0,154v0,66,-35,99,-105,99v-70,0,-105,-33,-105,-99","w":261},"V":{"d":"254,-251r-106,251r-36,0r-108,-251r35,0r92,217r90,-217r33,0","w":258,"k":{"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c0":31,"\u00f8":22,"\u00e6":18,"\u00c6":31,"\u00f5":22,"\u00f6":22,"\u00f4":22,"\u00f2":22,"\u00f3":22,"\u00f1":17,"\u00eb":22,"\u00ea":22,"\u00e8":22,"\u00e9":22,"\u00e7":22,"\u00e5":18,"\u00e3":18,"\u00e4":18,"\u00e2":18,"\u00e0":18,"\u00e1":18,"\u00c5":31,"\u00c4":31,"z":17,"s":22,"r":17,"q":22,"p":17,"o":22,"n":17,"m":17,"g":22,"e":22,"d":22,"c":22,"a":18,"A":31}},"W":{"d":"4,-251r32,0r35,218r71,-218r33,0r76,218r40,-218r30,0r-47,251r-45,0r-71,-211r-69,211r-43,0","w":325},"X":{"d":"4,-251r40,0r198,251r-40,0xm44,0r-40,0r198,-251r40,0","w":247},"Y":{"d":"4,-251r36,0r73,131r73,-131r38,0r-96,163r0,88r-32,0r0,-88","w":228,"k":{"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c0":31,"\u00f8":26,"\u00e6":26,"\u00c6":31,"\u00fc":17,"\u00fb":17,"\u00f9":17,"\u00fa":17,"\u00f5":26,"\u00f6":26,"\u00f4":26,"\u00f2":26,"\u00f3":26,"\u00f1":17,"\u00eb":26,"\u00ea":26,"\u00e8":26,"\u00e9":26,"\u00e7":26,"\u00e5":26,"\u00e3":26,"\u00e4":26,"\u00e2":26,"\u00e0":26,"\u00e1":26,"\u00c5":31,"\u00c4":31,"z":17,"x":17,"u":17,"s":26,"r":17,"q":26,"p":17,"o":26,"n":17,"m":17,"g":26,"e":26,"d":26,"c":26,"a":26,"A":31}},"Z":{"d":"198,-251r0,26r-137,199r133,0r0,26r-172,0r0,-26r141,-199r-138,0r0,-26r173,0","w":219},"[":{"d":"105,-251r0,26r-46,0r0,265r46,0r0,27r-79,0r0,-318r79,0","w":114},"\\":{"d":"4,-251r36,0r128,251r-36,0","w":172},"]":{"d":"88,-251r0,318r-79,0r0,-27r46,0r0,-265r-46,0r0,-26r79,0","w":114},"^":{"d":"79,-251r26,0r71,128r-27,0r-57,-106r-57,106r-26,0","w":184},"_":{"d":"180,0r0,26r-176,0r0,-26r176,0","w":184},"`":{"d":"70,-238r0,26r-70,-26r0,-27","w":70},"a":{"d":"18,-57v-7,-55,68,-63,123,-54v13,-58,-65,-51,-108,-38r0,-27v56,-20,140,-10,140,50r0,126v-17,3,-22,-6,-29,-13v-43,25,-134,16,-126,-44xm141,-84v-29,-5,-96,-11,-91,26v-4,44,70,36,91,17r0,-43","w":199},"b":{"d":"59,-32v52,14,100,-1,100,-65v0,-59,-56,-70,-100,-50r0,115xm26,-251r33,0r0,75v65,-25,132,3,132,80v0,95,-84,108,-165,88r0,-243","w":208},"c":{"d":"167,-5v-79,18,-149,-8,-149,-91v0,-77,75,-102,149,-83r0,26v-56,-14,-117,-3,-117,57v0,65,58,81,117,64r0,27","w":180},"d":{"d":"150,-147v-43,-20,-100,-9,-100,50v0,68,49,81,100,63r0,-113xm183,-11v-22,7,-50,11,-83,11v-55,0,-82,-32,-82,-96v0,-77,66,-105,132,-80r0,-75r33,0r0,240","w":209},"e":{"d":"174,-83r-124,0v-6,56,67,66,120,51r0,27v-77,16,-152,-2,-152,-89v0,-60,29,-91,88,-91v56,0,79,34,68,102xm50,-110r95,0v2,-32,-13,-49,-44,-49v-32,0,-49,17,-51,49","w":198},"f":{"d":"26,1r0,-195v-6,-61,59,-79,110,-59r0,26v-34,-14,-91,-11,-77,42r55,0r0,27r-55,0r0,158","w":126},"g":{"d":"150,-153v-49,-13,-100,-3,-100,59v0,66,54,78,100,56r0,-115xm182,0v9,67,-87,78,-145,58r0,-26v41,12,125,19,113,-41v-66,26,-132,-3,-132,-84v0,-91,84,-104,164,-84r0,177","w":208},"h":{"d":"26,0r0,-251r33,0r0,86v46,-34,126,-28,126,49r0,116r-32,0v-7,-59,25,-158,-41,-158v-19,0,-36,8,-53,24r0,134r-33,0","w":211},"i":{"d":"59,-251r0,26r-33,0r0,-26r33,0xm59,-185r0,185r-33,0r0,-185r33,0"},"j":{"d":"59,-251r0,26r-33,0r0,-26r33,0xm59,-185v-6,88,18,206,-27,255r-28,-18v41,-48,15,-156,22,-237r33,0"},"k":{"d":"26,0r0,-251r33,0r0,81v43,-25,131,-23,131,39v0,26,-18,43,-53,53r59,78r-41,0r-59,-78r0,-15v41,-4,61,-16,61,-38v0,-40,-70,-29,-98,-11r0,142r-33,0","w":207},"l":{"d":"59,-251r0,251r-33,0r0,-251r33,0"},"m":{"d":"26,0r0,-185r22,0r6,24v35,-28,89,-36,112,2v50,-41,125,-38,125,45r0,114r-33,0r0,-116v2,-56,-57,-49,-83,-18r0,134r-33,0r0,-116v2,-56,-59,-49,-83,-18r0,134r-33,0","w":317},"n":{"d":"26,0r0,-185r22,0r6,24v48,-39,131,-35,131,45r0,116r-32,0v-7,-59,25,-158,-41,-158v-19,0,-36,8,-53,24r0,134r-33,0","w":211},"o":{"d":"105,-26v37,0,56,-23,56,-67v0,-43,-19,-65,-56,-65v-37,0,-55,22,-55,65v0,44,18,67,55,67xm18,-92v0,-62,28,-93,87,-93v59,0,88,31,88,93v0,61,-29,92,-88,92v-58,0,-87,-31,-87,-92","w":210},"p":{"d":"59,-38v47,23,100,8,100,-59v0,-59,-51,-69,-100,-56r0,115xm26,-177v78,-19,165,-10,165,80v0,83,-62,114,-132,88r0,76r-33,0r0,-244","w":208},"q":{"d":"150,-153v-49,-13,-100,-3,-100,59v0,66,54,78,100,56r0,-115xm182,67r-32,0r0,-76v-66,26,-132,-3,-132,-84v0,-91,84,-104,164,-84r0,244","w":208},"r":{"d":"26,0r0,-185r22,0r6,24v16,-16,35,-24,58,-24r0,27v-22,0,-39,8,-53,24r0,134r-33,0","w":118},"s":{"d":"26,-9r0,-28v32,12,106,23,108,-16v2,-27,-31,-25,-58,-24v-39,0,-58,-19,-58,-55v0,-57,88,-61,140,-44r0,28v-32,-12,-108,-21,-110,16v-1,27,29,25,57,25v41,0,62,18,62,54v0,57,-89,62,-141,44","w":184},"t":{"d":"26,-214r21,0r7,29r43,0r0,27r-38,0r0,106v-1,24,15,28,38,26r0,26v-44,3,-71,-7,-71,-50r0,-164","w":114},"u":{"d":"185,-185r0,185r-22,0r-5,-24v-48,39,-132,35,-132,-45r0,-116r33,0v7,59,-26,158,41,158v19,0,36,-7,53,-23r0,-135r32,0","w":211},"v":{"d":"0,-185r35,0r53,145r53,-145r35,0r-75,185r-31,0","w":175},"w":{"d":"5,-185r32,0r35,143r46,-143r29,0r50,143r31,-143r35,0r-48,185r-34,0r-49,-138r-47,138r-34,0","w":267},"x":{"d":"4,-185r38,0r138,185r-38,0xm42,0r-38,0r138,-185r38,0","w":196},"y":{"d":"4,-185r36,0r52,145r54,-145r34,0r-76,190v-14,34,-34,55,-61,63r-13,-23v21,-9,36,-24,45,-44","w":184},"z":{"d":"21,-185r135,0r0,27r-99,133r96,0r0,25r-135,0r0,-25r101,-133r-98,0r0,-27","w":174},"{":{"d":"110,-251v-36,35,-6,146,-60,159v54,13,24,124,60,159r-33,0v-36,-27,-4,-146,-59,-146r0,-26v25,0,36,-21,36,-62v0,-35,8,-63,23,-84r33,0","w":118},"|":{"d":"59,-251r0,318r-33,0r0,-318r33,0"},"}":{"d":"41,-251v35,28,4,147,60,146r0,26v-25,0,-37,21,-37,62v0,35,-8,63,-23,84r-32,0v36,-35,6,-146,60,-159v-54,-13,-24,-124,-60,-159r32,0","w":118},"~":{"d":"149,-109r0,26v-21,33,-107,-25,-131,7r0,-26v22,-32,108,27,131,-7","w":166},"\u00c4":{"d":"4,0r107,-251r36,0r107,251r-34,0r-33,-79r-84,0r9,-26r62,0r-46,-113r-90,218r-34,0xm177,-314r0,26r-32,0r0,-26r32,0xm112,-314r0,26r-32,0r0,-26r32,0","w":258,"k":{"Y":31,"V":31,"T":22}},"\u00c5":{"d":"4,0r107,-251r36,0r107,251r-34,0r-33,-79r-84,0r9,-26r62,0r-46,-113r-90,218r-34,0xm129,-252v17,0,25,-8,25,-25v0,-17,-8,-26,-25,-26v-17,0,-26,9,-26,26v0,17,9,25,26,25xm80,-277v0,-30,16,-46,49,-46v32,0,48,16,48,46v0,30,-16,45,-48,45v-33,0,-49,-15,-49,-45","w":258,"k":{"Y":31,"V":31,"T":22}},"\u00c7":{"d":"220,-9v-22,7,-46,11,-71,11v-88,0,-131,-44,-131,-131v0,-111,101,-143,202,-114r0,29v-77,-31,-170,-8,-170,85v0,98,89,122,170,92r0,28xm102,46v13,6,25,9,38,9v23,0,26,-23,5,-22r-32,0r23,-46r23,0r-14,27v25,0,38,10,38,30v0,34,-54,36,-81,21r0,-19","w":243},"\u00c9":{"d":"147,-323r0,26r-70,27r0,-27xm26,-251r0,251r167,0r0,-26r-134,0r0,-88r126,0r0,-27r-126,0r0,-84r132,0r0,-26r-165,0","w":215},"\u00d1":{"d":"26,0r0,-251r33,0r154,200r0,-200r30,0r0,251r-32,0r-154,-201r0,201r-31,0xm178,-318r0,26v-24,23,-60,-15,-87,7r0,-26v25,-22,61,16,87,-7","w":269},"\u00d6":{"d":"144,-25v60,0,90,-33,90,-101v0,-67,-30,-101,-90,-101v-61,0,-92,34,-92,101v0,68,31,101,92,101xm18,-125v0,-85,42,-128,126,-128v83,0,124,43,124,128v0,85,-41,127,-124,127v-84,0,-126,-42,-126,-127xm193,-314r0,26r-33,0r0,-26r33,0xm128,-314r0,26r-33,0r0,-26r33,0","w":285},"\u00dc":{"d":"26,-97r0,-154r33,0v8,92,-33,226,72,226v105,0,64,-134,72,-226r33,0r0,154v0,66,-35,99,-105,99v-70,0,-105,-33,-105,-99xm180,-314r0,26r-33,0r0,-26r33,0xm115,-314r0,26r-33,0r0,-26r33,0","w":261},"\u00e1":{"d":"18,-57v-7,-55,68,-63,123,-54v13,-58,-65,-51,-108,-38r0,-27v56,-20,140,-10,140,50r0,126v-17,3,-22,-6,-29,-13v-43,25,-134,16,-126,-44xm141,-84v-29,-5,-96,-11,-91,26v-4,44,70,36,91,17r0,-43xm133,-265r0,27r-70,26r0,-26","w":199},"\u00e0":{"d":"18,-57v-7,-55,68,-63,123,-54v13,-58,-65,-51,-108,-38r0,-27v56,-20,140,-10,140,50r0,126v-17,3,-22,-6,-29,-13v-43,25,-134,16,-126,-44xm141,-84v-29,-5,-96,-11,-91,26v-4,44,70,36,91,17r0,-43xm133,-238r0,26r-70,-26r0,-27","w":199},"\u00e2":{"d":"18,-57v-7,-55,68,-63,123,-54v13,-58,-65,-51,-108,-38r0,-27v56,-20,140,-10,140,50r0,126v-17,3,-22,-6,-29,-13v-43,25,-134,16,-126,-44xm141,-84v-29,-5,-96,-11,-91,26v-4,44,70,36,91,17r0,-43xm86,-271r26,0r31,46r-26,0r-18,-28r-17,28r-27,0","w":199},"\u00e4":{"d":"18,-57v-7,-55,68,-63,123,-54v13,-58,-65,-51,-108,-38r0,-27v56,-20,140,-10,140,50r0,126v-17,3,-22,-6,-29,-13v-43,25,-134,16,-126,-44xm141,-84v-29,-5,-96,-11,-91,26v-4,44,70,36,91,17r0,-43xm149,-251r0,26r-33,0r0,-26r33,0xm84,-251r0,26r-33,0r0,-26r33,0","w":199},"\u00e3":{"d":"18,-57v-7,-55,68,-63,123,-54v13,-58,-65,-51,-108,-38r0,-27v56,-20,140,-10,140,50r0,126v-17,3,-22,-6,-29,-13v-43,25,-134,16,-126,-44xm141,-84v-29,-5,-96,-11,-91,26v-4,44,70,36,91,17r0,-43xm141,-255r0,27v-25,22,-61,-16,-88,7r0,-27v25,-22,61,16,88,-7","w":199},"\u00e5":{"d":"18,-57v-7,-55,68,-63,123,-54v13,-58,-65,-51,-108,-38r0,-27v56,-20,140,-10,140,50r0,126v-17,3,-22,-6,-29,-13v-43,25,-134,16,-126,-44xm141,-84v-29,-5,-96,-11,-91,26v-4,44,70,36,91,17r0,-43xm99,-245v17,0,26,-9,26,-26v0,-17,-9,-25,-26,-25v-17,0,-26,8,-26,25v0,17,9,26,26,26xm50,-271v0,-30,16,-45,49,-45v32,0,48,15,48,45v0,30,-16,46,-48,46v-33,0,-49,-16,-49,-46","w":199},"\u00e7":{"d":"167,-5v-79,18,-149,-8,-149,-91v0,-77,75,-102,149,-83r0,26v-56,-14,-117,-3,-117,57v0,65,58,81,117,64r0,27xm70,46v13,6,25,9,38,9v24,0,25,-22,4,-22r-32,0r23,-46r24,0r-14,27v25,0,37,10,37,30v0,34,-53,36,-80,21r0,-19","w":180},"\u00e9":{"d":"174,-83r-124,0v-6,56,67,66,120,51r0,27v-77,16,-152,-2,-152,-89v0,-60,29,-91,88,-91v56,0,79,34,68,102xm50,-110r95,0v2,-32,-13,-49,-44,-49v-32,0,-49,17,-51,49xm135,-265r0,27r-70,26r0,-26","w":198},"\u00e8":{"d":"174,-83r-124,0v-6,56,67,66,120,51r0,27v-77,16,-152,-2,-152,-89v0,-60,29,-91,88,-91v56,0,79,34,68,102xm50,-110r95,0v2,-32,-13,-49,-44,-49v-32,0,-49,17,-51,49xm135,-238r0,26r-70,-26r0,-27","w":198},"\u00ea":{"d":"174,-83r-124,0v-6,56,67,66,120,51r0,27v-77,16,-152,-2,-152,-89v0,-60,29,-91,88,-91v56,0,79,34,68,102xm50,-110r95,0v2,-32,-13,-49,-44,-49v-32,0,-49,17,-51,49xm87,-271r26,0r31,46r-27,0r-17,-28r-18,28r-26,0","w":198},"\u00eb":{"d":"174,-83r-124,0v-6,56,67,66,120,51r0,27v-77,16,-152,-2,-152,-89v0,-60,29,-91,88,-91v56,0,79,34,68,102xm50,-110r95,0v2,-32,-13,-49,-44,-49v-32,0,-49,17,-51,49xm149,-251r0,26r-33,0r0,-26r33,0xm84,-251r0,26r-33,0r0,-26r33,0","w":198},"\u00ed":{"d":"59,-185r0,185r-33,0r0,-185r33,0xm78,-265r0,27r-70,26r0,-26"},"\u00ec":{"d":"59,-185r0,185r-33,0r0,-185r33,0xm78,-238r0,26r-70,-26r0,-27"},"\u00ee":{"d":"59,-185r0,185r-33,0r0,-185r33,0xm29,-271r27,0r30,46r-26,0r-17,-28r-18,28r-26,0"},"\u00ef":{"d":"59,-185r0,185r-33,0r0,-185r33,0xm91,-251r0,26r-32,0r0,-26r32,0xm26,-251r0,26r-32,0r0,-26r32,0"},"\u00f1":{"d":"26,0r0,-185r22,0r6,24v48,-39,131,-35,131,45r0,116r-32,0v-7,-59,25,-158,-41,-158v-19,0,-36,8,-53,24r0,134r-33,0xm150,-255r0,27v-25,22,-61,-16,-88,7r0,-27v25,-22,61,16,88,-7","w":211},"\u00f3":{"d":"105,-26v37,0,56,-23,56,-67v0,-43,-19,-65,-56,-65v-37,0,-55,22,-55,65v0,44,18,67,55,67xm18,-92v0,-62,28,-93,87,-93v59,0,88,31,88,93v0,61,-29,92,-88,92v-58,0,-87,-31,-87,-92xm139,-265r0,27r-70,26r0,-26","w":210},"\u00f2":{"d":"105,-26v37,0,56,-23,56,-67v0,-43,-19,-65,-56,-65v-37,0,-55,22,-55,65v0,44,18,67,55,67xm18,-92v0,-62,28,-93,87,-93v59,0,88,31,88,93v0,61,-29,92,-88,92v-58,0,-87,-31,-87,-92xm138,-238r0,26r-70,-26r0,-27","w":210},"\u00f4":{"d":"105,-26v37,0,56,-23,56,-67v0,-43,-19,-65,-56,-65v-37,0,-55,22,-55,65v0,44,18,67,55,67xm18,-92v0,-62,28,-93,87,-93v59,0,88,31,88,93v0,61,-29,92,-88,92v-58,0,-87,-31,-87,-92xm90,-271r27,0r30,46r-26,0r-18,-28r-17,28r-27,0","w":210},"\u00f6":{"d":"105,-26v37,0,56,-23,56,-67v0,-43,-19,-65,-56,-65v-37,0,-55,22,-55,65v0,44,18,67,55,67xm18,-92v0,-62,28,-93,87,-93v59,0,88,31,88,93v0,61,-29,92,-88,92v-58,0,-87,-31,-87,-92xm154,-251r0,26r-33,0r0,-26r33,0xm89,-251r0,26r-33,0r0,-26r33,0","w":210},"\u00f5":{"d":"105,-26v37,0,56,-23,56,-67v0,-43,-19,-65,-56,-65v-37,0,-55,22,-55,65v0,44,18,67,55,67xm18,-92v0,-62,28,-93,87,-93v59,0,88,31,88,93v0,61,-29,92,-88,92v-58,0,-87,-31,-87,-92xm149,-255r0,27v-25,22,-61,-16,-88,7r0,-27v25,-22,61,16,88,-7","w":210},"\u00fa":{"d":"185,-185r0,185r-22,0r-5,-24v-48,39,-132,35,-132,-45r0,-116r33,0v7,59,-26,158,41,158v19,0,36,-7,53,-23r0,-135r32,0xm142,-265r0,27r-70,26r0,-26","w":211},"\u00f9":{"d":"185,-185r0,185r-22,0r-5,-24v-48,39,-132,35,-132,-45r0,-116r33,0v7,59,-26,158,41,158v19,0,36,-7,53,-23r0,-135r32,0xm142,-238r0,26r-70,-26r0,-27","w":211},"\u00fb":{"d":"185,-185r0,185r-22,0r-5,-24v-48,39,-132,35,-132,-45r0,-116r33,0v7,59,-26,158,41,158v19,0,36,-7,53,-23r0,-135r32,0xm93,-271r26,0r31,46r-27,0r-17,-28r-18,28r-26,0","w":211},"\u00fc":{"d":"185,-185r0,185r-22,0r-5,-24v-48,39,-132,35,-132,-45r0,-116r33,0v7,59,-26,158,41,158v19,0,36,-7,53,-23r0,-135r32,0xm156,-251r0,26r-33,0r0,-26r33,0xm91,-251r0,26r-33,0r0,-26r33,0","w":211},"\u00b0":{"d":"66,-180v17,0,26,-9,26,-26v0,-17,-9,-25,-26,-25v-17,0,-26,8,-26,25v0,17,9,26,26,26xm18,-206v0,-30,15,-45,48,-45v32,0,49,15,49,45v0,30,-17,46,-49,46v-33,0,-48,-16,-48,-46","w":132},"\u00a2":{"d":"167,-39v-15,4,-27,6,-36,6r0,33r-31,0r0,-33v-55,-6,-82,-38,-82,-96v0,-53,27,-83,82,-89r0,-33r31,0r0,33v10,0,22,1,36,5r0,27v-55,-15,-117,-3,-117,57v0,64,57,79,117,64r0,26","w":184},"\u00a3":{"d":"18,-21v66,-28,5,-109,5,-160v0,-48,33,-72,98,-72v32,0,57,5,75,17r0,32v-30,-30,-138,-38,-138,23v0,17,3,30,8,40r66,0r0,27r-57,0v11,31,12,58,-3,83v11,-2,28,0,53,7v25,7,48,1,71,-15r0,30v-42,36,-128,-15,-178,14r0,-26","w":213},"\u00a7":{"d":"26,-7r0,-28v32,11,105,21,108,-16v2,-21,-27,-26,-53,-23v-60,6,-84,-61,-42,-87v-44,-35,-18,-92,59,-92v20,0,39,3,60,9r0,28v-33,-14,-109,-20,-111,16v-1,21,27,24,53,22v64,-6,88,59,46,88v44,33,18,92,-56,92v-22,0,-43,-3,-64,-9xm47,-126v0,24,25,26,53,26v23,0,34,-8,34,-24v0,-25,-25,-27,-53,-27v-23,0,-34,8,-34,25","w":184},"\u00b6":{"d":"78,76r0,-171v-52,0,-78,-26,-78,-78v0,-52,26,-78,78,-78r90,0r0,15r-27,0r0,312r-17,0r0,-312r-29,0r0,312r-17,0","w":167},"\u00df":{"d":"161,-53v-2,-23,-72,-31,-62,-69v0,-24,17,-44,51,-59v0,-29,-14,-43,-43,-43v-32,0,-48,18,-48,56r0,168r-33,0r0,-169v0,-55,28,-82,82,-82v56,0,80,29,76,87v-55,18,-79,45,-21,66v22,8,32,23,32,45v0,42,-42,57,-97,53r0,-26v31,2,65,-1,63,-27","w":212},"\u00ae":{"d":"71,-133r0,-94v28,1,69,-7,67,22v0,12,-8,22,-26,28r32,44r-16,0v-9,-17,-27,-27,-30,-50v18,-3,27,-10,27,-21v1,-19,-25,-12,-42,-13r0,84r-12,0xm102,-117v42,0,63,-21,63,-63v0,-43,-21,-65,-63,-65v-42,0,-63,22,-63,65v0,42,21,63,63,63xm26,-180v0,-50,26,-75,76,-75v51,0,76,25,76,75v0,49,-25,73,-76,73v-49,0,-76,-24,-76,-73","w":204},"\u00a9":{"d":"102,-117v42,0,63,-21,63,-63v0,-43,-21,-65,-63,-65v-42,0,-63,22,-63,65v0,42,21,63,63,63xm26,-180v0,-50,26,-75,76,-75v51,0,76,25,76,75v0,49,-25,73,-76,73v-49,0,-76,-24,-76,-73xm134,-146v-30,12,-65,3,-65,-35v0,-35,36,-45,65,-33r0,-11v-38,-12,-82,2,-77,44v-4,45,38,58,77,46r0,-11","w":204},"\u00b4":{"d":"70,-265r0,27r-70,26r0,-26","w":70},"\u00a8":{"d":"98,-251r0,26r-33,0r0,-26r33,0xm33,-251r0,26r-33,0r0,-26r33,0","w":97},"\u00c6":{"d":"4,0r107,-251r193,0r0,26r-147,0r37,84r104,0r0,27r-92,0r40,88r62,0r0,26r-88,0r-92,-218r-47,113r62,0r10,26r-81,0r-34,79r-34,0","w":329},"\u00d8":{"d":"52,-126v0,68,31,101,92,101v60,0,90,-33,90,-101v0,-67,-30,-101,-90,-101v-61,0,-92,34,-92,101xm144,2v-84,0,-126,-42,-126,-127v0,-85,42,-128,126,-128v83,0,124,43,124,128v0,85,-41,127,-124,127xm30,0r190,-251r35,0r-191,251r-34,0","w":285},"\u00b1":{"w":111},"\u00a5":{"d":"9,-251r36,0r63,110r65,-110r38,0r-76,123r55,0r0,26r-66,0r0,20r66,0r0,26r-66,0r0,56r-33,0r0,-56r-61,0r0,-26r61,0r0,-20r-61,0r0,-26r50,0","w":219},"\u00b5":{"d":"185,-185r0,185r-22,0r-5,-24v-32,23,-71,35,-99,10r0,81r-33,0r0,-252r33,0v5,59,-21,159,41,158v19,0,36,-7,53,-23r0,-135r32,0","w":211},"\u03bc":{"d":"185,-185r0,185r-22,0r-5,-24v-32,23,-71,35,-99,10r0,81r-33,0r0,-252r33,0v5,59,-21,159,41,158v19,0,36,-7,53,-23r0,-135r32,0","w":211},"\u00aa":{"w":70},"\u00ba":{"w":70},"\u00e6":{"d":"141,-84v-29,-5,-96,-11,-91,26v-4,44,70,36,91,17r0,-43xm173,-110r95,0v2,-32,-13,-48,-44,-48v-32,0,-49,16,-51,48xm33,-150r0,-25v42,-15,111,-14,129,16v14,-17,36,-26,68,-26v56,0,79,34,68,102r-124,0v-6,56,66,64,120,52r0,26v-43,9,-106,9,-130,-18v-47,34,-146,37,-146,-35v0,-55,70,-63,123,-52v15,-59,-65,-52,-108,-40","w":322},"\u00f8":{"d":"50,-93v0,44,18,67,55,67v37,0,56,-23,56,-67v0,-43,-19,-65,-56,-65v-37,0,-55,22,-55,65xm105,0v-58,0,-87,-31,-87,-92v0,-62,28,-93,87,-93v59,0,88,31,88,93v0,61,-29,92,-88,92xm20,0r141,-185r35,0r-141,185r-35,0","w":210},"\u00bf":{"d":"44,-152r0,-33r32,0r0,33r-32,0xm18,32v49,12,128,18,128,-34v0,-45,-54,-44,-102,-42r0,-76r32,0r0,50v63,-3,102,17,102,68v0,72,-92,79,-160,60r0,-26","w":195},"\u00a1":{"d":"26,67r0,-187r33,0r0,187r-33,0xm26,-152r0,-33r33,0r0,33r-33,0"},"\u00ac":{"w":245},"\u00ab":{"d":"88,-92r45,-66r36,0r-46,66r46,66r-36,0xm18,-92r45,-66r35,0r-45,66r45,66r-35,0","w":177},"\u00bb":{"d":"44,-26r-35,0r45,-66r-45,-66r35,0r46,66xm114,-26r-35,0r45,-66r-45,-66r35,0r46,66","w":177},"\u00a0":{"w":87},"\u00c0":{"d":"4,0r107,-251r36,0r107,251r-34,0r-33,-79r-84,0r9,-26r62,0r-46,-113r-90,218r-34,0xm163,-297r0,27r-71,-27r0,-26","w":258,"k":{"Y":31,"V":31,"T":22}},"\u00c3":{"d":"4,0r107,-251r36,0r107,251r-34,0r-33,-79r-84,0r9,-26r62,0r-46,-113r-90,218r-34,0xm174,-318r0,26v-25,23,-61,-15,-88,7r0,-26v25,-22,61,16,88,-7","w":258,"k":{"Y":31,"V":31,"T":22}},"\u00d5":{"d":"144,-25v60,0,90,-33,90,-101v0,-67,-30,-101,-90,-101v-61,0,-92,34,-92,101v0,68,31,101,92,101xm18,-125v0,-85,42,-128,126,-128v83,0,124,43,124,128v0,85,-41,127,-124,127v-84,0,-126,-42,-126,-127xm187,-318r0,26v-25,23,-60,-15,-88,7r0,-26v25,-22,61,16,88,-7","w":285},"\u00f7":{"d":"18,-105r0,26r138,0r0,-26r-138,0xm103,-53r0,27r-33,0r0,-27r33,0xm103,-158r0,26r-33,0r0,-26r33,0","w":173},"\u00ff":{"w":69},"\u00a4":{"d":"38,-133r-20,-21r19,-20r22,22v24,-16,59,-16,82,0r22,-22r20,20r-21,21v14,20,14,62,-2,81r23,22r-20,19r-22,-21v-26,14,-57,13,-84,0r-20,21r-19,-19r20,-22v-14,-22,-13,-59,0,-81xm57,-93v0,29,14,43,43,43v29,0,43,-14,43,-43v0,-29,-14,-43,-43,-43v-29,0,-43,14,-43,43","w":200},"\u00b7":{"d":"18,-92v0,-15,7,-22,22,-22v15,0,22,7,22,22v0,15,-7,22,-22,22v-15,0,-22,-7,-22,-22","w":79},"\u2219":{"d":"18,-92v0,-15,7,-22,22,-22v15,0,22,7,22,22v0,15,-7,22,-22,22v-15,0,-22,-7,-22,-22","w":79},"\u00c2":{"d":"4,0r107,-251r36,0r107,251r-34,0r-33,-79r-84,0r9,-26r62,0r-46,-113r-90,218r-34,0xm115,-322r27,0r31,45r-27,0r-17,-28r-18,28r-26,0","w":258,"k":{"Y":31,"V":31,"T":22}},"\u00ca":{"d":"97,-322r27,0r31,45r-27,0r-17,-28r-18,28r-26,0xm26,-251r0,251r167,0r0,-26r-134,0r0,-88r126,0r0,-27r-126,0r0,-84r132,0r0,-26r-165,0","w":215},"\u00c1":{"d":"4,0r107,-251r36,0r107,251r-34,0r-33,-79r-84,0r9,-26r62,0r-46,-113r-90,218r-34,0xm163,-323r0,26r-71,27r0,-27","w":258,"k":{"Y":31,"V":31,"T":22}},"\u00cb":{"d":"157,-314r0,26r-33,0r0,-26r33,0xm92,-314r0,26r-33,0r0,-26r33,0xm26,-251r0,251r167,0r0,-26r-134,0r0,-88r126,0r0,-27r-126,0r0,-84r132,0r0,-26r-165,0","w":215},"\u00c8":{"d":"147,-297r0,27r-70,-27r0,-26xm26,-251r0,251r167,0r0,-26r-134,0r0,-88r126,0r0,-27r-126,0r0,-84r132,0r0,-26r-165,0","w":215},"\u00cd":{"d":"26,-251r0,251r33,0r0,-251r-33,0xm78,-323r0,26r-70,27r0,-27"},"\u00ce":{"d":"26,-251r0,251r33,0r0,-251r-33,0xm29,-322r27,0r30,45r-26,0r-17,-28r-18,28r-26,0"},"\u00cf":{"d":"26,-251r0,251r33,0r0,-251r-33,0xm91,-314r0,26r-32,0r0,-26r32,0xm26,-314r0,26r-32,0r0,-26r32,0"},"\u00cc":{"d":"26,-251r0,251r33,0r0,-251r-33,0xm78,-297r0,27r-70,-27r0,-26"},"\u00d3":{"d":"144,-25v60,0,90,-33,90,-101v0,-67,-30,-101,-90,-101v-61,0,-92,34,-92,101v0,68,31,101,92,101xm18,-125v0,-85,42,-128,126,-128v83,0,124,43,124,128v0,85,-41,127,-124,127v-84,0,-126,-42,-126,-127xm174,-323r0,26r-70,27r0,-27","w":285},"\u00d4":{"d":"144,-25v60,0,90,-33,90,-101v0,-67,-30,-101,-90,-101v-61,0,-92,34,-92,101v0,68,31,101,92,101xm18,-125v0,-85,42,-128,126,-128v83,0,124,43,124,128v0,85,-41,127,-124,127v-84,0,-126,-42,-126,-127xm129,-322r26,0r31,45r-26,0r-18,-28r-17,28r-27,0","w":285},"\u00d2":{"d":"144,-25v60,0,90,-33,90,-101v0,-67,-30,-101,-90,-101v-61,0,-92,34,-92,101v0,68,31,101,92,101xm18,-125v0,-85,42,-128,126,-128v83,0,124,43,124,128v0,85,-41,127,-124,127v-84,0,-126,-42,-126,-127xm174,-297r0,27r-70,-27r0,-26","w":285},"\u00da":{"d":"26,-97r0,-154r33,0v8,92,-33,226,72,226v105,0,64,-134,72,-226r33,0r0,154v0,66,-35,99,-105,99v-70,0,-105,-33,-105,-99xm167,-323r0,26r-71,27r0,-27","w":261},"\u00db":{"d":"26,-97r0,-154r33,0v8,92,-33,226,72,226v105,0,64,-134,72,-226r33,0r0,154v0,66,-35,99,-105,99v-70,0,-105,-33,-105,-99xm115,-322r26,0r31,45r-26,0r-18,-28r-18,28r-26,0","w":261},"\u00d9":{"d":"26,-97r0,-154r33,0v8,92,-33,226,72,226v105,0,64,-134,72,-226r33,0r0,154v0,66,-35,99,-105,99v-70,0,-105,-33,-105,-99xm167,-297r0,27r-71,-27r0,-26","w":261},"\u00af":{"w":63},"\u02c9":{"w":63},"\u00b8":{"d":"0,46v13,6,25,9,38,9v24,0,25,-22,4,-22r-32,0r23,-46r24,0r-14,27v25,0,37,10,37,30v0,34,-53,36,-80,21r0,-19","w":80},"\u00a6":{"w":35},"\u00d0":{"w":116},"\u00f0":{"w":84},"\u00dd":{"w":92},"\u00fd":{"w":69},"\u00de":{"w":101},"\u00fe":{"w":61},"\u00ad":{"w":111},"\u2212":{"w":111},"\u00d7":{"w":111},"\u00b9":{"w":52},"\u00b2":{"w":52},"\u00b3":{"w":52},"\u00bd":{"w":138},"\u00bc":{"w":138},"\u00be":{"w":138}}});

