/******************/
/* Menu functions */
/******************/
window.Menu = {
	delay		: 600,
	timer		: null,
	menuitem	: null,
	
	/**
	 * apply
	 * @param	string	selector
	 */
	apply: function( selector ) {
		$(selector).hover(Menu.open, Menu.setTimer);
		$(document).click(Menu.close);
	},
	
	/** 
	 * cancelTimer
	 */
	cancelTimer: function() {
		if(Menu.timer)	{
			clearTimeout(Menu.timer);featureList
     		Menu.timer = null;
		}
	},
	
	/**
	 * setTimer
	 */
	setTimer: function() {
		Menu.timer = window.setTimeout(Menu.close, Menu.delay);
	},
		
	/** 
	 * close
	 * @param	string	current_menu_id
	 */
	close: function( current_menu_id ) {
		if(Menu.menuitem)	{
			if(Menu.menuitem.data("menuID") != current_menu_id)	
			{
				$(".submenu", Menu.menuitem).css({ height: 'auto' }).stop().hide();
				$(Menu.menuitem).removeClass("open");
			}
		}
	},
			
	/** 
	 * open
	 */
	open: function() {
		current_menu = $(this);
		
		current_menu.addClass("open");
		
		// uniek menu id per submenu, dit om bij het sluiten te checken of niet de actieve wordt gesloten
		if(!current_menu.data("menuID"))	{
			current_menu.data("menuID", (Math.random() +''+ Math.random()).replace(/\./g,""))
		}
		
		Menu.cancelTimer();
		Menu.close( current_menu.data("menuID") );
		Menu.menuitem = current_menu;
		
		$(".submenu", Menu.menuitem).css({ height: 'auto'}).stop().show();	
	}

};

/**
 * maak hele blokken klikbaar
 *
 * @param	bool	trigger_click		trigger het click event ipv de url.	default is false
 * @return	jQuery
 */
$.fn.hoverClick = function( trigger_click )
{
	return this.live("mouseover mouseout click", function( event )
	{
		if (event.type == 'mouseover')
		{
			if($("a", this).length)
			{
				$(this).addClass("hover").css("cursor", "pointer");
				$(this).attr("title", $("a:first", this).attr("title"));
			}
		}
		else if(event.type == 'click' && event.target.nodeName.toUpperCase() != 'A' && $("a", this).length)
		{
			if(trigger_click)
			{
				$("a:first", this).trigger("click");
			}
			else
			{
				var link = $("a:first", this);
				
				if (link.attr("target")) 
				{
					window.open(link.attr("href"), link.attr("target"));
				}
				else 
				{
					window.location = link.attr("href");
				}
			}

			return false;
		}
		else
		{
			$(this).removeClass("hover");
		}
	});
};


/**
 * bij hover een className toevoegen/eraf halen
 *
 * @param	string	className		default is 'hover'
 * @return	jQuery
 */
$.fn.hoverClass = function( className )
{
	if(!className)
		className = 'hover';
	
	return this.live('mouseover mouseout', function( event )
	{ 
		if (event.type == 'mouseover')
			$(this).addClass(className);
		else
			$(this).removeClass(className);
	});
};



/** 
 * jquery.defaultvalue 
 * @param	string	defaultvalue
 * @return	jQuery
 */
$.fn.defaultvalue = function( defVal )
{
	return this.each(function()
	{
		var $input = $(this);
		if($input.val() == "" || $input.val() == defVal)
		{
			$input.addClass("defaultvalue").val(defVal);
		}
		
		$input
			.focus(function() {
				if($input.val() == defVal) 
					$input.val("").removeClass("defaultvalue");
			})
			.blur(function(){
				if($input.val() == "") 
					$input.addClass("defaultvalue").val(defVal);
			});
	});
};


var landkaartInterval = 0;
var landkaartTimeout = 0;

/**
 * Gedrag bij hovers op vestigingen
 */
function initVestigingenKaart()
{
    // Function 1. For hover over the .landkaart
    $(".landkaart > ul > li > a").hover(
        function() {
            clearInterval( landkaartInterval );
            clearTimeout( landkaartTimeout );
            $(".landkaart > ul > li").removeClass('open');
            $(this).parent('li').addClass('open');
        },
        function() {
            clearInterval( landkaartInterval );
            clearTimeout( landkaartTimeout );
            landkaartTimeout = setTimeout(
                function() {
                    $(".landkaart > ul > li").removeClass('open');
                    _startLandkaartInterval();
                },
                2000
            );
        }
    );

    // Hover over de ballonnen...
    $(".landkaart > ul > li > div").hover(
        function() {
            clearInterval( landkaartInterval );
            clearTimeout( landkaartTimeout );
        },
        function() {
            landkaartTimeout = setTimeout(
                function() {
                    $(".landkaart > ul > li").removeClass('open');
                    _startLandkaartInterval();
                },
                2000
            );
        }
    );

    _startLandkaartInterval();
}

function _startLandkaartInterval()
{
	// Interval for the .landkaart
	var listitem = $(".landkaart > ul > li"),
		len = listitem.length,
		index = 0;

	$(".landkaart > ul > li:first").addClass('open');

    landkaartInterval = setInterval( function() {
		$(".landkaart > ul > li").removeClass('open');

		if( ( index + 1 ) >= len )
		{
			index = 0;
			$(".landkaart > ul > li:first").addClass('open');
		}
		else
		{
			listitem.eq( index ).next().addClass('open');
		}
		index++;
	}, 5000);
}

/* Controleer zoekveld */
function controleerZoeken(formulier)
{
	if( ($("#header .zoeken input[type=text]").val().length < 3 || $("#header .zoeken input[type=text]").val() == $("#header .zoeken input[type=text]").attr("title") ) )
	{
		$("#header form.zoeken").css({backgroundPosition: 'left -136px'});

		setTimeout( function()
			{
				$("#header form.zoeken").css({backgroundPosition: 'left -108px'});
			}, 4000);

		return false;
	}
}

/*!
 * jQuery UI 1.8.6
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI
 */
(function( $, undefined ) {

// prevent duplicate loading
// this is only a problem because we proxy existing functions
// and we don't want to double proxy them
$.ui = $.ui || {};
if ( $.ui.version ) {
	return;
}

$.extend( $.ui, {
	version: "1.8.6",

	keyCode: {
		ALT: 18,
		BACKSPACE: 8,
		CAPS_LOCK: 20,
		COMMA: 188,
		COMMAND: 91,
		COMMAND_LEFT: 91, // COMMAND
		COMMAND_RIGHT: 93,
		CONTROL: 17,
		DELETE: 46,
		DOWN: 40,
		END: 35,
		ENTER: 13,
		ESCAPE: 27,
		HOME: 36,
		INSERT: 45,
		LEFT: 37,
		MENU: 93, // COMMAND_RIGHT
		NUMPAD_ADD: 107,
		NUMPAD_DECIMAL: 110,
		NUMPAD_DIVIDE: 111,
		NUMPAD_ENTER: 108,
		NUMPAD_MULTIPLY: 106,
		NUMPAD_SUBTRACT: 109,
		PAGE_DOWN: 34,
		PAGE_UP: 33,
		PERIOD: 190,
		RIGHT: 39,
		SHIFT: 16,
		SPACE: 32,
		TAB: 9,
		UP: 38,
		WINDOWS: 91 // COMMAND
	}
});

// plugins
$.fn.extend({
	_focus: $.fn.focus,
	focus: function( delay, fn ) {
		return typeof delay === "number" ?
			this.each(function() {
				var elem = this;
				setTimeout(function() {
					$( elem ).focus();
					if ( fn ) {
						fn.call( elem );
					}
				}, delay );
			}) :
			this._focus.apply( this, arguments );
	},

	scrollParent: function() {
		var scrollParent;
		if (($.browser.msie && (/(static|relative)/).test(this.css('position'))) || (/absolute/).test(this.css('position'))) {
			scrollParent = this.parents().filter(function() {
				return (/(relative|absolute|fixed)/).test($.curCSS(this,'position',1)) && (/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));
			}).eq(0);
		} else {
			scrollParent = this.parents().filter(function() {
				return (/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));
			}).eq(0);
		}

		return (/fixed/).test(this.css('position')) || !scrollParent.length ? $(document) : scrollParent;
	},

	zIndex: function( zIndex ) {
		if ( zIndex !== undefined ) {
			return this.css( "zIndex", zIndex );
		}

		if ( this.length ) {
			var elem = $( this[ 0 ] ), position, value;
			while ( elem.length && elem[ 0 ] !== document ) {
				// Ignore z-index if position is set to a value where z-index is ignored by the browser
				// This makes behavior of this function consistent across browsers
				// WebKit always returns auto if the element is positioned
				position = elem.css( "position" );
				if ( position === "absolute" || position === "relative" || position === "fixed" ) {
					// IE returns 0 when zIndex is not specified
					// other browsers return a string
					// we ignore the case of nested elements with an explicit value of 0
					// <div style="z-index: -10;"><div style="z-index: 0;"></div></div>
					value = parseInt( elem.css( "zIndex" ), 10 );
					if ( !isNaN( value ) && value !== 0 ) {
						return value;
					}
				}
				elem = elem.parent();
			}
		}

		return 0;
	},

	disableSelection: function() {
		return this.bind( ( $.support.selectstart ? "selectstart" : "mousedown" ) +
			".ui-disableSelection", function( event ) {
				event.preventDefault();
			});
	},

	enableSelection: function() {
		return this.unbind( ".ui-disableSelection" );
	}
});

$.each( [ "Width", "Height" ], function( i, name ) {
	var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ],
		type = name.toLowerCase(),
		orig = {
			innerWidth: $.fn.innerWidth,
			innerHeight: $.fn.innerHeight,
			outerWidth: $.fn.outerWidth,
			outerHeight: $.fn.outerHeight
		};

	function reduce( elem, size, border, margin ) {
		$.each( side, function() {
			size -= parseFloat( $.curCSS( elem, "padding" + this, true) ) || 0;
			if ( border ) {
				size -= parseFloat( $.curCSS( elem, "border" + this + "Width", true) ) || 0;
			}
			if ( margin ) {
				size -= parseFloat( $.curCSS( elem, "margin" + this, true) ) || 0;
			}
		});
		return size;
	}

	$.fn[ "inner" + name ] = function( size ) {
		if ( size === undefined ) {
			return orig[ "inner" + name ].call( this );
		}

		return this.each(function() {
			$( this ).css( type, reduce( this, size ) + "px" );
		});
	};

	$.fn[ "outer" + name] = function( size, margin ) {
		if ( typeof size !== "number" ) {
			return orig[ "outer" + name ].call( this, size );
		}

		return this.each(function() {
			$( this).css( type, reduce( this, size, true, margin ) + "px" );
		});
	};
});

// selectors
function visible( element ) {
	return !$( element ).parents().andSelf().filter(function() {
		return $.curCSS( this, "visibility" ) === "hidden" ||
			$.expr.filters.hidden( this );
	}).length;
}

$.extend( $.expr[ ":" ], {
	data: function( elem, i, match ) {
		return !!$.data( elem, match[ 3 ] );
	},

	focusable: function( element ) {
		var nodeName = element.nodeName.toLowerCase(),
			tabIndex = $.attr( element, "tabindex" );
		if ( "area" === nodeName ) {
			var map = element.parentNode,
				mapName = map.name,
				img;
			if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) {
				return false;
			}
			img = $( "img[usemap=#" + mapName + "]" )[0];
			return !!img && visible( img );
		}
		return ( /input|select|textarea|button|object/.test( nodeName )
			? !element.disabled
			: "a" == nodeName
				? element.href || !isNaN( tabIndex )
				: !isNaN( tabIndex ))
			// the element and all of its ancestors must be visible
			&& visible( element );
	},

	tabbable: function( element ) {
		var tabIndex = $.attr( element, "tabindex" );
		return ( isNaN( tabIndex ) || tabIndex >= 0 ) && $( element ).is( ":focusable" );
	}
});

// support
$(function() {
	var body = document.body,
		div = body.appendChild( div = document.createElement( "div" ) );

	$.extend( div.style, {
		minHeight: "100px",
		height: "auto",
		padding: 0,
		borderWidth: 0
	});

	$.support.minHeight = div.offsetHeight === 100;
	$.support.selectstart = "onselectstart" in div;

	// set display to none to avoid a layout bug in IE
	// http://dev.jquery.com/ticket/4014
	body.removeChild( div ).style.display = "none";
});


// deprecated
$.extend( $.ui, {
	// $.ui.plugin is deprecated.  Use the proxy pattern instead.
	plugin: {
		add: function( module, option, set ) {
			var proto = $.ui[ module ].prototype;
			for ( var i in set ) {
				proto.plugins[ i ] = proto.plugins[ i ] || [];
				proto.plugins[ i ].push( [ option, set[ i ] ] );
			}
		},
		call: function( instance, name, args ) {
			var set = instance.plugins[ name ];
			if ( !set || !instance.element[ 0 ].parentNode ) {
				return;
			}
	
			for ( var i = 0; i < set.length; i++ ) {
				if ( instance.options[ set[ i ][ 0 ] ] ) {
					set[ i ][ 1 ].apply( instance.element, args );
				}
			}
		}
	},
	
	// will be deprecated when we switch to jQuery 1.4 - use jQuery.contains()
	contains: function( a, b ) {
		return document.compareDocumentPosition ?
			a.compareDocumentPosition( b ) & 16 :
			a !== b && a.contains( b );
	},
	
	// only used by resizable
	hasScroll: function( el, a ) {
	
		//If overflow is hidden, the element might have extra content, but the user wants to hide it
		if ( $( el ).css( "overflow" ) === "hidden") {
			return false;
		}
	
		var scroll = ( a && a === "left" ) ? "scrollLeft" : "scrollTop",
			has = false;
	
		if ( el[ scroll ] > 0 ) {
			return true;
		}
	
		// TODO: determine which cases actually cause this to happen
		// if the element doesn't have the scroll set, see if it's possible to
		// set the scroll
		el[ scroll ] = 1;
		has = ( el[ scroll ] > 0 );
		el[ scroll ] = 0;
		return has;
	},
	
	// these are odd functions, fix the API or move into individual plugins
	isOverAxis: function( x, reference, size ) {
		//Determines when x coordinate is over "b" element axis
		return ( x > reference ) && ( x < ( reference + size ) );
	},
	isOver: function( y, x, top, left, height, width ) {
		//Determines when x, y coordinates is over "b" element
		return $.ui.isOverAxis( y, top, height ) && $.ui.isOverAxis( x, left, width );
	}
});

})( jQuery );
/*!
 * jQuery UI Widget 1.8.6
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Widget
 */
(function( $, undefined ) {

// jQuery 1.4+
if ( $.cleanData ) {
	var _cleanData = $.cleanData;
	$.cleanData = function( elems ) {
		for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {
			$( elem ).triggerHandler( "remove" );
		}
		_cleanData( elems );
	};
} else {
	var _remove = $.fn.remove;
	$.fn.remove = function( selector, keepData ) {
		return this.each(function() {
			if ( !keepData ) {
				if ( !selector || $.filter( selector, [ this ] ).length ) {
					$( "*", this ).add( [ this ] ).each(function() {
						$( this ).triggerHandler( "remove" );
					});
				}
			}
			return _remove.call( $(this), selector, keepData );
		});
	};
}

$.widget = function( name, base, prototype ) {
	var namespace = name.split( "." )[ 0 ],
		fullName;
	name = name.split( "." )[ 1 ];
	fullName = namespace + "-" + name;

	if ( !prototype ) {
		prototype = base;
		base = $.Widget;
	}

	// create selector for plugin
	$.expr[ ":" ][ fullName ] = function( elem ) {
		return !!$.data( elem, name );
	};

	$[ namespace ] = $[ namespace ] || {};
	$[ namespace ][ name ] = function( options, element ) {
		// allow instantiation without initializing for simple inheritance
		if ( arguments.length ) {
			this._createWidget( options, element );
		}
	};

	var basePrototype = new base();
	// we need to make the options hash a property directly on the new instance
	// otherwise we'll modify the options hash on the prototype that we're
	// inheriting from
//	$.each( basePrototype, function( key, val ) {
//		if ( $.isPlainObject(val) ) {
//			basePrototype[ key ] = $.extend( {}, val );
//		}
//	});
	basePrototype.options = $.extend( true, {}, basePrototype.options );
	$[ namespace ][ name ].prototype = $.extend( true, basePrototype, {
		namespace: namespace,
		widgetName: name,
		widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name,
		widgetBaseClass: fullName
	}, prototype );

	$.widget.bridge( name, $[ namespace ][ name ] );
};

$.widget.bridge = function( name, object ) {
	$.fn[ name ] = function( options ) {
		var isMethodCall = typeof options === "string",
			args = Array.prototype.slice.call( arguments, 1 ),
			returnValue = this;

		// allow multiple hashes to be passed on init
		options = !isMethodCall && args.length ?
			$.extend.apply( null, [ true, options ].concat(args) ) :
			options;

		// prevent calls to internal methods
		if ( isMethodCall && options.charAt( 0 ) === "_" ) {
			return returnValue;
		}

		if ( isMethodCall ) {
			this.each(function() {
				var instance = $.data( this, name ),
					methodValue = instance && $.isFunction( instance[options] ) ?
						instance[ options ].apply( instance, args ) :
						instance;
				// TODO: add this back in 1.9 and use $.error() (see #5972)
//				if ( !instance ) {
//					throw "cannot call methods on " + name + " prior to initialization; " +
//						"attempted to call method '" + options + "'";
//				}
//				if ( !$.isFunction( instance[options] ) ) {
//					throw "no such method '" + options + "' for " + name + " widget instance";
//				}
//				var methodValue = instance[ options ].apply( instance, args );
				if ( methodValue !== instance && methodValue !== undefined ) {
					returnValue = methodValue;
					return false;
				}
			});
		} else {
			this.each(function() {
				var instance = $.data( this, name );
				if ( instance ) {
					instance.option( options || {} )._init();
				} else {
					$.data( this, name, new object( options, this ) );
				}
			});
		}

		return returnValue;
	};
};


$.Widget = function( options, element ) {
	// allow instantiation without initializing for simple inheritance
	if ( arguments.length ) {
		this._createWidget( options, element );
	}
};

$.Widget.prototype = {
	widgetName: "widget",
	widgetEventPrefix: "",
	options: {
		disabled: false
	},
	_createWidget: function( options, element ) {
		// $.widget.bridge stores the plugin instance, but we do it anyway
		// so that it's stored even before the _create function runs
		$.data( element, this.widgetName, this );
		this.element = $( element );
		this.options = $.extend( true, {},
			this.options,
			this._getCreateOptions(),
			options );

		var self = this;
		this.element.bind( "remove." + this.widgetName, function() {
			self.destroy();
		});

		this._create();
		this._trigger( "create" );
		this._init();
	},
	_getCreateOptions: function() {
		return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ];
	},
	_create: function() {},
	_init: function() {},

	destroy: function() {
		this.element
			.unbind( "." + this.widgetName )
			.removeData( this.widgetName );
		this.widget()
			.unbind( "." + this.widgetName )
			.removeAttr( "aria-disabled" )
			.removeClass(
				this.widgetBaseClass + "-disabled " +
				"ui-state-disabled" );
	},

	widget: function() {
		return this.element;
	},

	option: function( key, value ) {
		var options = key;

		if ( arguments.length === 0 ) {
			// don't return a reference to the internal hash
			return $.extend( {}, this.options );
		}

		if  (typeof key === "string" ) {
			if ( value === undefined ) {
				return this.options[ key ];
			}
			options = {};
			options[ key ] = value;
		}

		this._setOptions( options );

		return this;
	},
	_setOptions: function( options ) {
		var self = this;
		$.each( options, function( key, value ) {
			self._setOption( key, value );
		});

		return this;
	},
	_setOption: function( key, value ) {
		this.options[ key ] = value;

		if ( key === "disabled" ) {
			this.widget()
				[ value ? "addClass" : "removeClass"](
					this.widgetBaseClass + "-disabled" + " " +
					"ui-state-disabled" )
				.attr( "aria-disabled", value );
		}

		return this;
	},

	enable: function() {
		return this._setOption( "disabled", false );
	},
	disable: function() {
		return this._setOption( "disabled", true );
	},

	_trigger: function( type, event, data ) {
		var callback = this.options[ type ];

		event = $.Event( event );
		event.type = ( type === this.widgetEventPrefix ?
			type :
			this.widgetEventPrefix + type ).toLowerCase();
		data = data || {};

		// copy original event properties over to the new event
		// this would happen if we could call $.event.fix instead of $.Event
		// but we don't have a way to force an event to be fixed multiple times
		if ( event.originalEvent ) {
			for ( var i = $.event.props.length, prop; i; ) {
				prop = $.event.props[ --i ];
				event[ prop ] = event.originalEvent[ prop ];
			}
		}

		this.element.trigger( event, data );

		return !( $.isFunction(callback) &&
			callback.call( this.element[0], event, data ) === false ||
			event.isDefaultPrevented() );
	}
};

})( jQuery );

/*
 * jQuery UI Tabs 1.8.6
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.widget.js
 */
(function( $, undefined ) {

var tabId = 0,
	listId = 0;

function getNextTabId() {
	return ++tabId;
}

function getNextListId() {
	return ++listId;
}

$.widget( "ui.tabs", {
	options: {
		add: null,
		ajaxOptions: null,
		cache: false,
		cookie: null, // e.g. { expires: 7, path: '/', domain: 'jquery.com', secure: true }
		collapsible: false,
		disable: null,
		disabled: [],
		enable: null,
		event: "click",
		fx: null, // e.g. { height: 'toggle', opacity: 'toggle', duration: 200 }
		idPrefix: "ui-tabs-",
		load: null,
		panelTemplate: "<div></div>",
		remove: null,
		select: null,
		show: null,
		spinner: "<em>Loading&#8230;</em>",
		tabTemplate: "<li><a href='#{href}'><span>#{label}</span></a></li>"
	},

	_create: function() {
		this._tabify( true );
	},

	_setOption: function( key, value ) {
		if ( key == "selected" ) {
			if (this.options.collapsible && value == this.options.selected ) {
				return;
			}
			this.select( value );
		} else {
			this.options[ key ] = value;
			this._tabify();
		}
	},

	_tabId: function( a ) {
		return a.title && a.title.replace( /\s/g, "_" ).replace( /[^\w\u00c0-\uFFFF-]/g, "" ) ||
			this.options.idPrefix + getNextTabId();
	},

	_sanitizeSelector: function( hash ) {
		// we need this because an id may contain a ":"
		return hash.replace( /:/g, "\\:" );
	},

	_cookie: function() {
		var cookie = this.cookie ||
			( this.cookie = this.options.cookie.name || "ui-tabs-" + getNextListId() );
		return $.cookie.apply( null, [ cookie ].concat( $.makeArray( arguments ) ) );
	},

	_ui: function( tab, panel ) {
		return {
			tab: tab,
			panel: panel,
			index: this.anchors.index( tab )
		};
	},

	_cleanup: function() {
		// restore all former loading tabs labels
		this.lis.filter( ".ui-state-processing" )
			.removeClass( "ui-state-processing" )
			.find( "span:data(label.tabs)" )
				.each(function() {
					var el = $( this );
					el.html( el.data( "label.tabs" ) ).removeData( "label.tabs" );
				});
	},

	_tabify: function( init ) {
		var self = this,
			o = this.options,
			fragmentId = /^#.+/; // Safari 2 reports '#' for an empty hash

		this.list = this.element.find( "ol,ul" ).eq( 0 );
		this.lis = $( " > li:has(a[href])", this.list );
		this.anchors = this.lis.map(function() {
			return $( "a", this )[ 0 ];
		});
		this.panels = $( [] );

		this.anchors.each(function( i, a ) {
			var href = $( a ).attr( "href" );
			// For dynamically created HTML that contains a hash as href IE < 8 expands
			// such href to the full page url with hash and then misinterprets tab as ajax.
			// Same consideration applies for an added tab with a fragment identifier
			// since a[href=#fragment-identifier] does unexpectedly not match.
			// Thus normalize href attribute...
			var hrefBase = href.split( "#" )[ 0 ],
				baseEl;
			if ( hrefBase && ( hrefBase === location.toString().split( "#" )[ 0 ] ||
					( baseEl = $( "base" )[ 0 ]) && hrefBase === baseEl.href ) ) {
				href = a.hash;
				a.href = href;
			}

			// inline tab
			if ( fragmentId.test( href ) ) {
				self.panels = self.panels.add( self._sanitizeSelector( href ) );
			// remote tab
			// prevent loading the page itself if href is just "#"
			} else if ( href && href !== "#" ) {
				// required for restore on destroy
				$.data( a, "href.tabs", href );

				// TODO until #3808 is fixed strip fragment identifier from url
				// (IE fails to load from such url)
				$.data( a, "load.tabs", href.replace( /#.*$/, "" ) );

				var id = self._tabId( a );
				a.href = "#" + id;
				var $panel = $( "#" + id );
				if ( !$panel.length ) {
					$panel = $( o.panelTemplate )
						.attr( "id", id )
						.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" )
						.insertAfter( self.panels[ i - 1 ] || self.list );
					$panel.data( "destroy.tabs", true );
				}
				self.panels = self.panels.add( $panel );
			// invalid tab href
			} else {
				o.disabled.push( i );
			}
		});

		// initialization from scratch
		if ( init ) {
			// attach necessary classes for styling
			this.element.addClass( "ui-tabs ui-widget ui-widget-content ui-corner-all" );
			this.list.addClass( "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" );
			this.lis.addClass( "ui-state-default ui-corner-top" );
			this.panels.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" );

			// Selected tab
			// use "selected" option or try to retrieve:
			// 1. from fragment identifier in url
			// 2. from cookie
			// 3. from selected class attribute on <li>
			if ( o.selected === undefined ) {
				if ( location.hash ) {
					this.anchors.each(function( i, a ) {
						if ( a.hash == location.hash ) {
							o.selected = i;
							return false;
						}
					});
				}
				if ( typeof o.selected !== "number" && o.cookie ) {
					o.selected = parseInt( self._cookie(), 10 );
				}
				if ( typeof o.selected !== "number" && this.lis.filter( ".ui-tabs-selected" ).length ) {
					o.selected = this.lis.index( this.lis.filter( ".ui-tabs-selected" ) );
				}
				o.selected = o.selected || ( this.lis.length ? 0 : -1 );
			} else if ( o.selected === null ) { // usage of null is deprecated, TODO remove in next release
				o.selected = -1;
			}

			// sanity check - default to first tab...
			o.selected = ( ( o.selected >= 0 && this.anchors[ o.selected ] ) || o.selected < 0 )
				? o.selected
				: 0;

			// Take disabling tabs via class attribute from HTML
			// into account and update option properly.
			// A selected tab cannot become disabled.
			o.disabled = $.unique( o.disabled.concat(
				$.map( this.lis.filter( ".ui-state-disabled" ), function( n, i ) {
					return self.lis.index( n );
				})
			) ).sort();

			if ( $.inArray( o.selected, o.disabled ) != -1 ) {
				o.disabled.splice( $.inArray( o.selected, o.disabled ), 1 );
			}

			// highlight selected tab
			this.panels.addClass( "ui-tabs-hide" );
			this.lis.removeClass( "ui-tabs-selected ui-state-active" );
			// check for length avoids error when initializing empty list
			if ( o.selected >= 0 && this.anchors.length ) {
				$( self._sanitizeSelector( self.anchors[ o.selected ].hash ) ).removeClass( "ui-tabs-hide" );
				this.lis.eq( o.selected ).addClass("ui-tabs-selected ui-state-active");
				
				Cufon.replace('#tabs ul li.ui-state-active a', {
					color: '#014696'
				});

	
				// seems to be expected behavior that the show callback is fired
				self.element.queue( "tabs", function() {
					self._trigger( "show", null,
						self._ui( self.anchors[ o.selected ], $( self._sanitizeSelector( self.anchors[ o.selected ].hash ) ) ) );
				});

				this.load( o.selected );
			}

			// clean up to avoid memory leaks in certain versions of IE 6
			// TODO: namespace this event
			$( window ).bind( "unload", function() {
				self.lis.add( self.anchors ).unbind( ".tabs" );
				self.lis = self.anchors = self.panels = null;
			});
		// update selected after add/remove
		} else {
			o.selected = this.lis.index( this.lis.filter( ".ui-tabs-selected" ) );
		}

		// update collapsible
		// TODO: use .toggleClass()
		this.element[ o.collapsible ? "addClass" : "removeClass" ]( "ui-tabs-collapsible" );

		// set or update cookie after init and add/remove respectively
		if ( o.cookie ) {
			this._cookie( o.selected, o.cookie );
		}

		// disable tabs
		for ( var i = 0, li; ( li = this.lis[ i ] ); i++ ) {
			$( li )[ $.inArray( i, o.disabled ) != -1 &&
				// TODO: use .toggleClass()
				!$( li ).hasClass( "ui-tabs-selected" ) ? "addClass" : "removeClass" ]( "ui-state-disabled" );
		}

		// reset cache if switching from cached to not cached
		if ( o.cache === false ) {
			this.anchors.removeData( "cache.tabs" );
		}

		// remove all handlers before, tabify may run on existing tabs after add or option change
		this.lis.add( this.anchors ).unbind( ".tabs" );

		if ( o.event !== "mouseover" ) {
			var addState = function( state, el ) {
				if ( el.is( ":not(.ui-state-disabled)" ) ) {
					el.addClass( "ui-state-" + state );
				}
			};
			var removeState = function( state, el ) {
				el.removeClass( "ui-state-" + state );
			};
			this.lis.bind( "mouseover.tabs" , function() {
				addState( "hover", $( this ) );
			});
			this.lis.bind( "mouseout.tabs", function() {
				removeState( "hover", $( this ) );
			});
			this.anchors.bind( "focus.tabs", function() {
				addState( "focus", $( this ).closest( "li" ) );
			});
			this.anchors.bind( "blur.tabs", function() {
				removeState( "focus", $( this ).closest( "li" ) );
			});
		}

		// set up animations
		var hideFx, showFx;
		if ( o.fx ) {
			if ( $.isArray( o.fx ) ) {
				hideFx = o.fx[ 0 ];
				showFx = o.fx[ 1 ];
			} else {
				hideFx = showFx = o.fx;
			}
		}

		// Reset certain styles left over from animation
		// and prevent IE's ClearType bug...
		function resetStyle( $el, fx ) {
			$el.css( "display", "" );
			if ( !$.support.opacity && fx.opacity ) {
				$el[ 0 ].style.removeAttribute( "filter" );
			}
		}

		// Show a tab...
		var showTab = showFx
			? function( clicked, $show ) {
				$( clicked ).closest( "li" ).addClass( "ui-tabs-selected ui-state-active" );
				$show.hide().removeClass( "ui-tabs-hide" ) // avoid flicker that way
					.animate( showFx, showFx.duration || "normal", function() {
						resetStyle( $show, showFx );
						self._trigger( "show", null, self._ui( clicked, $show[ 0 ] ) );
					});
			}
			: function( clicked, $show ) {
				$( clicked ).closest( "li" ).addClass( "ui-tabs-selected ui-state-active" );
				
				Cufon.replace('#tabs ul li.ui-state-active a', {
					color: '#014696'
				});
				
				
				$show.removeClass( "ui-tabs-hide" );
				self._trigger( "show", null, self._ui( clicked, $show[ 0 ] ) );
			};

		// Hide a tab, $show is optional...
		var hideTab = hideFx
			? function( clicked, $hide ) {
				$hide.animate( hideFx, hideFx.duration || "normal", function() {
					self.lis.removeClass( "ui-tabs-selected ui-state-active" );
					$hide.addClass( "ui-tabs-hide" );
					resetStyle( $hide, hideFx );
					self.element.dequeue( "tabs" );
				});
			}
			: function( clicked, $hide, $show ) {
				self.lis.removeClass( "ui-tabs-selected ui-state-active" );
				
				Cufon.replace('#tabs ul li a', {
					color: '#FFF'
				});
				
				$hide.addClass( "ui-tabs-hide" );
				self.element.dequeue( "tabs" );
			};

		// attach tab event handler, unbind to avoid duplicates from former tabifying...
		this.anchors.bind( o.event + ".tabs", function() {
			var el = this,
				$li = $(el).closest( "li" ),
				$hide = self.panels.filter( ":not(.ui-tabs-hide)" ),
				$show = $( self._sanitizeSelector( el.hash ) );

			// If tab is already selected and not collapsible or tab disabled or
			// or is already loading or click callback returns false stop here.
			// Check if click handler returns false last so that it is not executed
			// for a disabled or loading tab!
			if ( ( $li.hasClass( "ui-tabs-selected" ) && !o.collapsible) ||
				$li.hasClass( "ui-state-disabled" ) ||
				$li.hasClass( "ui-state-processing" ) ||
				self.panels.filter( ":animated" ).length ||
				self._trigger( "select", null, self._ui( this, $show[ 0 ] ) ) === false ) {
				this.blur();
				return false;
			}

			o.selected = self.anchors.index( this );

			self.abort();

			// if tab may be closed
			if ( o.collapsible ) {
				if ( $li.hasClass( "ui-tabs-selected" ) ) {
					o.selected = -1;

					if ( o.cookie ) {
						self._cookie( o.selected, o.cookie );
					}

					self.element.queue( "tabs", function() {
						hideTab( el, $hide );
					}).dequeue( "tabs" );

					this.blur();
					return false;
				} else if ( !$hide.length ) {
					if ( o.cookie ) {
						self._cookie( o.selected, o.cookie );
					}

					self.element.queue( "tabs", function() {
						showTab( el, $show );
					});

					// TODO make passing in node possible, see also http://dev.jqueryui.com/ticket/3171
					self.load( self.anchors.index( this ) );

					this.blur();
					return false;
				}
			}

			if ( o.cookie ) {
				self._cookie( o.selected, o.cookie );
			}

			// show new tab
			if ( $show.length ) {
				if ( $hide.length ) {
					self.element.queue( "tabs", function() {
						hideTab( el, $hide );
					});
				}
				self.element.queue( "tabs", function() {
					showTab( el, $show );
				});

				self.load( self.anchors.index( this ) );
			} else {
				throw "jQuery UI Tabs: Mismatching fragment identifier.";
			}

			// Prevent IE from keeping other link focussed when using the back button
			// and remove dotted border from clicked link. This is controlled via CSS
			// in modern browsers; blur() removes focus from address bar in Firefox
			// which can become a usability and annoying problem with tabs('rotate').
			if ( $.browser.msie ) {
				this.blur();
			}
		});

		// disable click in any case
		this.anchors.bind( "click.tabs", function(){
			return false;
		});
	},

    _getIndex: function( index ) {
		// meta-function to give users option to provide a href string instead of a numerical index.
		// also sanitizes numerical indexes to valid values.
		if ( typeof index == "string" ) {
			index = this.anchors.index( this.anchors.filter( "[href$=" + index + "]" ) );
		}

		return index;
	},

	destroy: function() {
		var o = this.options;

		this.abort();

		this.element
			.unbind( ".tabs" )
			.removeClass( "ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible" )
			.removeData( "tabs" );

		this.list.removeClass( "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" );

		this.anchors.each(function() {
			var href = $.data( this, "href.tabs" );
			if ( href ) {
				this.href = href;
			}
			var $this = $( this ).unbind( ".tabs" );
			$.each( [ "href", "load", "cache" ], function( i, prefix ) {
				$this.removeData( prefix + ".tabs" );
			});
		});

		this.lis.unbind( ".tabs" ).add( this.panels ).each(function() {
			if ( $.data( this, "destroy.tabs" ) ) {
				$( this ).remove();
			} else {
				$( this ).removeClass([
					"ui-state-default",
					"ui-corner-top",
					"ui-tabs-selected",
					"ui-state-active",
					"ui-state-hover",
					"ui-state-focus",
					"ui-state-disabled",
					"ui-tabs-panel",
					"ui-widget-content",
					"ui-corner-bottom",
					"ui-tabs-hide"
				].join( " " ) );
			}
		});

		if ( o.cookie ) {
			this._cookie( null, o.cookie );
		}

		return this;
	},

	add: function( url, label, index ) {
		if ( index === undefined ) {
			index = this.anchors.length;
		}

		var self = this,
			o = this.options,
			$li = $( o.tabTemplate.replace( /#\{href\}/g, url ).replace( /#\{label\}/g, label ) ),
			id = !url.indexOf( "#" ) ? url.replace( "#", "" ) : this._tabId( $( "a", $li )[ 0 ] );

		$li.addClass( "ui-state-default ui-corner-top" ).data( "destroy.tabs", true );

		// try to find an existing element before creating a new one
		var $panel = $( "#" + id );
		if ( !$panel.length ) {
			$panel = $( o.panelTemplate )
				.attr( "id", id )
				.data( "destroy.tabs", true );
		}
		$panel.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide" );

		if ( index >= this.lis.length ) {
			$li.appendTo( this.list );
			$panel.appendTo( this.list[ 0 ].parentNode );
		} else {
			$li.insertBefore( this.lis[ index ] );
			$panel.insertBefore( this.panels[ index ] );
		}

		o.disabled = $.map( o.disabled, function( n, i ) {
			return n >= index ? ++n : n;
		});

		this._tabify();

		if ( this.anchors.length == 1 ) {
			o.selected = 0;
			$li.addClass( "ui-tabs-selected ui-state-active" );
			$panel.removeClass( "ui-tabs-hide" );
			this.element.queue( "tabs", function() {
				self._trigger( "show", null, self._ui( self.anchors[ 0 ], self.panels[ 0 ] ) );
			});

			this.load( 0 );
		}

		this._trigger( "add", null, this._ui( this.anchors[ index ], this.panels[ index ] ) );
		return this;
	},

	remove: function( index ) {
		index = this._getIndex( index );
		var o = this.options,
			$li = this.lis.eq( index ).remove(),
			$panel = this.panels.eq( index ).remove();

		// If selected tab was removed focus tab to the right or
		// in case the last tab was removed the tab to the left.
		if ( $li.hasClass( "ui-tabs-selected" ) && this.anchors.length > 1) {
			this.select( index + ( index + 1 < this.anchors.length ? 1 : -1 ) );
		}

		o.disabled = $.map(
			$.grep( o.disabled, function(n, i) {
				return n != index;
			}),
			function( n, i ) {
				return n >= index ? --n : n;
			});

		this._tabify();

		this._trigger( "remove", null, this._ui( $li.find( "a" )[ 0 ], $panel[ 0 ] ) );
		return this;
	},

	enable: function( index ) {
		index = this._getIndex( index );
		var o = this.options;
		if ( $.inArray( index, o.disabled ) == -1 ) {
			return;
		}

		this.lis.eq( index ).removeClass( "ui-state-disabled" );
		o.disabled = $.grep( o.disabled, function( n, i ) {
			return n != index;
		});

		this._trigger( "enable", null, this._ui( this.anchors[ index ], this.panels[ index ] ) );
		return this;
	},

	disable: function( index ) {
		index = this._getIndex( index );
		var self = this, o = this.options;
		// cannot disable already selected tab
		if ( index != o.selected ) {
			this.lis.eq( index ).addClass( "ui-state-disabled" );

			o.disabled.push( index );
			o.disabled.sort();

			this._trigger( "disable", null, this._ui( this.anchors[ index ], this.panels[ index ] ) );
		}

		return this;
	},

	select: function( index ) {
		index = this._getIndex( index );
		if ( index == -1 ) {
			if ( this.options.collapsible && this.options.selected != -1 ) {
				index = this.options.selected;
			} else {
				return this;
			}
		}
		this.anchors.eq( index ).trigger( this.options.event + ".tabs" );
		return this;
	},

	load: function( index ) {
		index = this._getIndex( index );
		var self = this,
			o = this.options,
			a = this.anchors.eq( index )[ 0 ],
			url = $.data( a, "load.tabs" );

		this.abort();

		// not remote or from cache
		if ( !url || this.element.queue( "tabs" ).length !== 0 && $.data( a, "cache.tabs" ) ) {
			this.element.dequeue( "tabs" );
			return;
		}

		// load remote from here on
		this.lis.eq( index ).addClass( "ui-state-processing" );

		if ( o.spinner ) {
			var span = $( "span", a );
			span.data( "label.tabs", span.html() ).html( o.spinner );
		}

		this.xhr = $.ajax( $.extend( {}, o.ajaxOptions, {
			url: url,
			success: function( r, s ) {
				$( self._sanitizeSelector( a.hash ) ).html( r );

				// take care of tab labels
				self._cleanup();

				if ( o.cache ) {
					$.data( a, "cache.tabs", true );
				}

				self._trigger( "load", null, self._ui( self.anchors[ index ], self.panels[ index ] ) );
				try {
					o.ajaxOptions.success( r, s );
				}
				catch ( e ) {}
			},
			error: function( xhr, s, e ) {
				// take care of tab labels
				self._cleanup();

				self._trigger( "load", null, self._ui( self.anchors[ index ], self.panels[ index ] ) );
				try {
					// Passing index avoid a race condition when this method is
					// called after the user has selected another tab.
					// Pass the anchor that initiated this request allows
					// loadError to manipulate the tab content panel via $(a.hash)
					o.ajaxOptions.error( xhr, s, index, a );
				}
				catch ( e ) {}
			}
		} ) );

		// last, so that load event is fired before show...
		self.element.dequeue( "tabs" );

		return this;
	},

	abort: function() {
		// stop possibly running animations
		this.element.queue( [] );
		this.panels.stop( false, true );

		// "tabs" queue must not contain more than two elements,
		// which are the callbacks for the latest clicked tab...
		this.element.queue( "tabs", this.element.queue( "tabs" ).splice( -2, 2 ) );

		// terminate pending requests from other tabs
		if ( this.xhr ) {
			this.xhr.abort();
			delete this.xhr;
		}

		// take care of tab labels
		this._cleanup();
		return this;
	},

	url: function( index, url ) {
		this.anchors.eq( index ).removeData( "cache.tabs" ).data( "load.tabs", url );
		return this;
	},

	length: function() {
		return this.anchors.length;
	}
});

$.extend( $.ui.tabs, {
	version: "1.8.6"
});

/*
 * Tabs Extensions
 */

/*
 * Rotate
 */
$.extend( $.ui.tabs.prototype, {
	rotation: null,
	rotate: function( ms, continuing ) {
		var self = this,
			o = this.options;

		var rotate = self._rotate || ( self._rotate = function( e ) {
			clearTimeout( self.rotation );
			self.rotation = setTimeout(function() {
				var t = o.selected;
				self.select( ++t < self.anchors.length ? t : 0 );
			}, ms );
			
			if ( e ) {
				e.stopPropagation();
			}
		});

		var stop = self._unrotate || ( self._unrotate = !continuing
			? function(e) {
				if (e.clientX) { // in case of a true click
					self.rotate(null);
				}
			}
			: function( e ) {
				t = o.selected;
				rotate();
			});

		// start rotation
		if ( ms ) {
			this.element.bind( "tabsshow", rotate );
			this.anchors.bind( o.event + ".tabs", stop );
			rotate();
		// stop rotation
		} else {
			clearTimeout( self.rotation );
			this.element.unbind( "tabsshow", rotate );
			this.anchors.unbind( o.event + ".tabs", stop );
			delete this._rotate;
			delete this._unrotate;
		}

		return this;
	}
});

})( jQuery );




/*
 * jQuery autoResize (textarea auto-resizer)
 * @copyright James Padolsey http://james.padolsey.com
 * @version 1.04
 */
(function(a){a.fn.autoResize=function(j){var b=a.extend({onResize:function(){},animate:true,animateDuration:150,animateCallback:function(){},extraSpace:20,limit:1000},j);this.filter('textarea').each(function(){var c=a(this).css({resize:'none','overflow-y':'hidden'}),k=c.height(),f=(function(){var l=['height','width','lineHeight','textDecoration','letterSpacing'],h={};a.each(l,function(d,e){h[e]=c.css(e)});return c.clone().removeAttr('id').removeAttr('name').css({position:'absolute',top:0,left:-9999}).css(h).attr('tabIndex','-1').insertBefore(c)})(),i=null,g=function(){f.height(0).val(a(this).val()).scrollTop(10000);var d=Math.max(f.scrollTop(),k)+b.extraSpace,e=a(this).add(f);if(i===d){return}i=d;if(d>=b.limit){a(this).css('overflow-y','');return}b.onResize.call(this);b.animate&&c.css('display')==='block'?e.stop().animate({height:d},b.animateDuration,b.animateCallback):e.height(d)};c.unbind('.dynSiz').bind('keyup.dynSiz',g).bind('keydown.dynSiz',g).bind('change.dynSiz',g)});return this}})(jQuery);

/*
 * jQuery Corners 0.3
 * Copyright (c) 2008 David Turnbull, Steven Wittens
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 */
jQuery.fn.corners=function(C){var N="rounded_by_jQuery_corners";var V=B(C);var F=false;try{F=(document.body.style.WebkitBorderRadius!==undefined);var Y=navigator.userAgent.indexOf("Chrome");if(Y>=0){F=false}}catch(E){}var W=false;try{W=(document.body.style.MozBorderRadius!==undefined);var Y=navigator.userAgent.indexOf("Firefox");if(Y>=0&&parseInt(navigator.userAgent.substring(Y+8))<3){W=false}}catch(E){}return this.each(function(b,h){$e=jQuery(h);if($e.hasClass(N)){return }$e.addClass(N);var a=/{(.*)}/.exec(h.className);var c=a?B(a[1],V):V;var j=h.nodeName.toLowerCase();if(j=="input"){h=O(h)}if(F&&c.webkit){K(h,c)}else{if(W&&c.mozilla&&(c.sizex==c.sizey)){M(h,c)}else{var d=D(h.parentNode);var f=D(h);switch(j){case"a":case"input":Z(h,c,d,f);break;default:R(h,c,d,f);break}}}});function K(d,c){var a=""+c.sizex+"px "+c.sizey+"px";var b=jQuery(d);if(c.tl){b.css("WebkitBorderTopLeftRadius",a)}if(c.tr){b.css("WebkitBorderTopRightRadius",a)}if(c.bl){b.css("WebkitBorderBottomLeftRadius",a)}if(c.br){b.css("WebkitBorderBottomRightRadius",a)}}function M(d,c){var a=""+c.sizex+"px";var b=jQuery(d);if(c.tl){b.css("-moz-border-radius-topleft",a)}if(c.tr){b.css("-moz-border-radius-topright",a)}if(c.bl){b.css("-moz-border-radius-bottomleft",a)}if(c.br){b.css("-moz-border-radius-bottomright",a)}}function Z(k,n,l,a){var m=S("table");var i=S("tbody");m.appendChild(i);var j=S("tr");var d=S("td","top");j.appendChild(d);var h=S("tr");var c=T(k,n,S("td"));h.appendChild(c);var f=S("tr");var b=S("td","bottom");f.appendChild(b);if(n.tl||n.tr){i.appendChild(j);X(d,n,l,a,true)}i.appendChild(h);if(n.bl||n.br){i.appendChild(f);X(b,n,l,a,false)}k.appendChild(m);if(jQuery.browser.msie){m.onclick=Q}k.style.overflow="hidden"}function Q(){if(!this.parentNode.onclick){this.parentNode.click()}}function O(c){var b=document.createElement("a");b.id=c.id;b.className=c.className;if(c.onclick){b.href="javascript:";b.onclick=c.onclick}else{jQuery(c).parent("form").each(function(){b.href=this.action});b.onclick=I}var a=document.createTextNode(c.value);b.appendChild(a);c.parentNode.replaceChild(b,c);return b}function I(){jQuery(this).parent("form").each(function(){this.submit()});return false}function R(d,a,b,c){var f=T(d,a,document.createElement("div"));d.appendChild(f);if(a.tl||a.tr){X(d,a,b,c,true)}if(a.bl||a.br){X(d,a,b,c,false)}}function T(j,i,k){var b=jQuery(j);var l;while(l=j.firstChild){k.appendChild(l)}if(j.style.height){var f=parseInt(b.css("height"));k.style.height=f+"px";f+=parseInt(b.css("padding-top"))+parseInt(b.css("padding-bottom"));j.style.height=f+"px"}if(j.style.width){var a=parseInt(b.css("width"));k.style.width=a+"px";a+=parseInt(b.css("padding-left"))+parseInt(b.css("padding-right"));j.style.width=a+"px"}k.style.paddingLeft=b.css("padding-left");k.style.paddingRight=b.css("padding-right");if(i.tl||i.tr){k.style.paddingTop=U(j,i,b.css("padding-top"),true)}else{k.style.paddingTop=b.css("padding-top")}if(i.bl||i.br){k.style.paddingBottom=U(j,i,b.css("padding-bottom"),false)}else{k.style.paddingBottom=b.css("padding-bottom")}j.style.padding=0;return k}function U(f,a,d,c){if(d.indexOf("px")<0){try{console.error("%s padding not in pixels",(c?"top":"bottom"),f)}catch(b){}d=a.sizey+"px"}d=parseInt(d);if(d-a.sizey<0){try{console.error("%s padding is %ipx for %ipx corner:",(c?"top":"bottom"),d,a.sizey,f)}catch(b){}d=a.sizey}return d-a.sizey+"px"}function S(b,a){var c=document.createElement(b);c.style.border="none";c.style.borderCollapse="collapse";c.style.borderSpacing=0;c.style.padding=0;c.style.margin=0;if(a){c.style.verticalAlign=a}return c}function D(b){try{var d=jQuery.css(b,"background-color");if(d.match(/^(transparent|rgba\(0,\s*0,\s*0,\s*0\))$/i)&&b.parentNode){return D(b.parentNode)}if(d==null){return"#ffffff"}if(d.indexOf("rgb")>-1){d=A(d)}if(d.length==4){d=L(d)}return d}catch(a){return"#ffffff"}}function L(a){return"#"+a.substring(1,2)+a.substring(1,2)+a.substring(2,3)+a.substring(2,3)+a.substring(3,4)+a.substring(3,4)}function A(h){var a=255;var d="";var b;var e=/([0-9]+)[, ]+([0-9]+)[, ]+([0-9]+)/;var f=e.exec(h);for(b=1;b<4;b++){d+=("0"+parseInt(f[b]).toString(16)).slice(-2)}return"#"+d}function B(b,d){var b=b||"";var c={sizex:5,sizey:5,tl:false,tr:false,bl:false,br:false,webkit:true,mozilla:true,transparent:false};if(d){c.sizex=d.sizex;c.sizey=d.sizey;c.webkit=d.webkit;c.transparent=d.transparent;c.mozilla=d.mozilla}var a=false;var e=false;jQuery.each(b.split(" "),function(f,j){j=j.toLowerCase();var h=parseInt(j);if(h>0&&j==h+"px"){c.sizey=h;if(!a){c.sizex=h}a=true}else{switch(j){case"no-native":c.webkit=c.mozilla=false;break;case"webkit":c.webkit=true;break;case"no-webkit":c.webkit=false;break;case"mozilla":c.mozilla=true;break;case"no-mozilla":c.mozilla=false;break;case"anti-alias":c.transparent=false;break;case"transparent":c.transparent=true;break;case"top":e=c.tl=c.tr=true;break;case"right":e=c.tr=c.br=true;break;case"bottom":e=c.bl=c.br=true;break;case"left":e=c.tl=c.bl=true;break;case"top-left":e=c.tl=true;break;case"top-right":e=c.tr=true;break;case"bottom-left":e=c.bl=true;break;case"bottom-right":e=c.br=true;break}}});if(!e){if(!d){c.tl=c.tr=c.bl=c.br=true}else{c.tl=d.tl;c.tr=d.tr;c.bl=d.bl;c.br=d.br}}return c}function P(f,d,h){var e=Array(parseInt("0x"+f.substring(1,3)),parseInt("0x"+f.substring(3,5)),parseInt("0x"+f.substring(5,7)));var c=Array(parseInt("0x"+d.substring(1,3)),parseInt("0x"+d.substring(3,5)),parseInt("0x"+d.substring(5,7)));r="0"+Math.round(e[0]+(c[0]-e[0])*h).toString(16);g="0"+Math.round(e[1]+(c[1]-e[1])*h).toString(16);d="0"+Math.round(e[2]+(c[2]-e[2])*h).toString(16);return"#"+r.substring(r.length-2)+g.substring(g.length-2)+d.substring(d.length-2)}function X(f,a,b,d,c){if(a.transparent){G(f,a,b,c)}else{J(f,a,b,d,c)}}function J(k,z,p,a,n){var h,f;var l=document.createElement("div");l.style.fontSize="1px";l.style.backgroundColor=p;var b=0;for(h=1;h<=z.sizey;h++){var u,t,q;arc=Math.sqrt(1-Math.pow(1-h/z.sizey,2))*z.sizex;var c=z.sizex-Math.ceil(arc);var w=Math.floor(b);var v=z.sizex-c-w;var o=document.createElement("div");var m=l;o.style.margin="0px "+c+"px";o.style.height="1px";o.style.overflow="hidden";for(f=1;f<=v;f++){if(f==1){if(f==v){u=((arc+b)*0.5)-w}else{t=Math.sqrt(1-Math.pow(1-(c+1)/z.sizex,2))*z.sizey;u=(t-(z.sizey-h))*(arc-w-v+1)*0.5}}else{if(f==v){t=Math.sqrt(1-Math.pow((z.sizex-c-f+1)/z.sizex,2))*z.sizey;u=1-(1-(t-(z.sizey-h)))*(1-(b-w))*0.5}else{q=Math.sqrt(1-Math.pow((z.sizex-c-f)/z.sizex,2))*z.sizey;t=Math.sqrt(1-Math.pow((z.sizex-c-f+1)/z.sizex,2))*z.sizey;u=((t+q)*0.5)-(z.sizey-h)}}H(z,o,m,n,P(p,a,u));m=o;var o=m.cloneNode(false);o.style.margin="0px 1px"}H(z,o,m,n,a);b=arc}if(n){k.insertBefore(l,k.firstChild)}else{k.appendChild(l)}}function H(c,a,e,d,b){if(d&&!c.tl){a.style.marginLeft=0}if(d&&!c.tr){a.style.marginRight=0}if(!d&&!c.bl){a.style.marginLeft=0}if(!d&&!c.br){a.style.marginRight=0}a.style.backgroundColor=b;if(d){e.appendChild(a)}else{e.insertBefore(a,e.firstChild)}}function G(c,o,l,h){var f=document.createElement("div");f.style.fontSize="1px";var a=document.createElement("div");a.style.overflow="hidden";a.style.height="1px";a.style.borderColor=l;a.style.borderStyle="none solid";var m=o.sizex-1;var j=o.sizey-1;if(!j){j=1}for(var b=0;b<o.sizey;b++){var n=m-Math.floor(Math.sqrt(1-Math.pow(1-b/j,2))*m);if(b==2&&o.sizex==6&&o.sizey==6){n=2}var k=a.cloneNode(false);k.style.borderWidth="0 "+n+"px";if(h){k.style.borderWidth="0 "+(o.tr?n:0)+"px 0 "+(o.tl?n:0)+"px"}else{k.style.borderWidth="0 "+(o.br?n:0)+"px 0 "+(o.bl?n:0)+"px"}h?f.appendChild(k):f.insertBefore(k,f.firstChild)}if(h){c.insertBefore(f,c.firstChild)}else{c.appendChild(f)}}};


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());


/*!
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */

(function(i){var q={vertical:false,rtl:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:"normal",easing:"swing",auto:0,wrap:null,initCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null,itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,buttonNextHTML:"<div></div>",buttonPrevHTML:"<div></div>",buttonNextEvent:"click",buttonPrevEvent:"click",buttonNextCallback:null,buttonPrevCallback:null, itemFallbackDimension:null},r=false;i(window).bind("load.jcarousel",function(){r=true});i.jcarousel=function(a,c){this.options=i.extend({},q,c||{});this.autoStopped=this.locked=false;this.buttonPrevState=this.buttonNextState=this.buttonPrev=this.buttonNext=this.list=this.clip=this.container=null;if(!c||c.rtl===undefined)this.options.rtl=(i(a).attr("dir")||i("html").attr("dir")||"").toLowerCase()=="rtl";this.wh=!this.options.vertical?"width":"height";this.lt=!this.options.vertical?this.options.rtl? "right":"left":"top";for(var b="",d=a.className.split(" "),f=0;f<d.length;f++)if(d[f].indexOf("jcarousel-skin")!=-1){i(a).removeClass(d[f]);b=d[f];break}if(a.nodeName.toUpperCase()=="UL"||a.nodeName.toUpperCase()=="OL"){this.list=i(a);this.container=this.list.parent();if(this.container.hasClass("jcarousel-clip")){if(!this.container.parent().hasClass("jcarousel-container"))this.container=this.container.wrap("<div></div>");this.container=this.container.parent()}else if(!this.container.hasClass("jcarousel-container"))this.container= this.list.wrap("<div></div>").parent()}else{this.container=i(a);this.list=this.container.find("ul,ol").eq(0)}b!==""&&this.container.parent()[0].className.indexOf("jcarousel-skin")==-1&&this.container.wrap('<div class=" '+b+'"></div>');this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass("jcarousel-clip"))this.clip=this.list.wrap("<div></div>").parent();this.buttonNext=i(".jcarousel-next",this.container);if(this.buttonNext.size()===0&&this.options.buttonNextHTML!==null)this.buttonNext= this.clip.after(this.options.buttonNextHTML).next();this.buttonNext.addClass(this.className("jcarousel-next"));this.buttonPrev=i(".jcarousel-prev",this.container);if(this.buttonPrev.size()===0&&this.options.buttonPrevHTML!==null)this.buttonPrev=this.clip.after(this.options.buttonPrevHTML).next();this.buttonPrev.addClass(this.className("jcarousel-prev"));this.clip.addClass(this.className("jcarousel-clip")).css({overflow:"hidden",position:"relative"});this.list.addClass(this.className("jcarousel-list")).css({overflow:"hidden", position:"relative",top:0,margin:0,padding:0}).css(this.options.rtl?"right":"left",0);this.container.addClass(this.className("jcarousel-container")).css({position:"relative"});!this.options.vertical&&this.options.rtl&&this.container.addClass("jcarousel-direction-rtl").attr("dir","rtl");var j=this.options.visible!==null?Math.ceil(this.clipping()/this.options.visible):null;b=this.list.children("li");var e=this;if(b.size()>0){var g=0,k=this.options.offset;b.each(function(){e.format(this,k++);g+=e.dimension(this, j)});this.list.css(this.wh,g+100+"px");if(!c||c.size===undefined)this.options.size=b.size()}this.container.css("display","block");this.buttonNext.css("display","block");this.buttonPrev.css("display","block");this.funcNext=function(){e.next()};this.funcPrev=function(){e.prev()};this.funcResize=function(){e.reload()};this.options.initCallback!==null&&this.options.initCallback(this,"init");if(!r&&i.browser.safari){this.buttons(false,false);i(window).bind("load.jcarousel",function(){e.setup()})}else this.setup()}; var h=i.jcarousel;h.fn=h.prototype={jcarousel:"0.2.7"};h.fn.extend=h.extend=i.extend;h.fn.extend({setup:function(){this.prevLast=this.prevFirst=this.last=this.first=null;this.animating=false;this.tail=this.timer=null;this.inTail=false;if(!this.locked){this.list.css(this.lt,this.pos(this.options.offset)+"px");var a=this.pos(this.options.start,true);this.prevFirst=this.prevLast=null;this.animate(a,false);i(window).unbind("resize.jcarousel",this.funcResize).bind("resize.jcarousel",this.funcResize)}}, reset:function(){this.list.empty();this.list.css(this.lt,"0px");this.list.css(this.wh,"10px");this.options.initCallback!==null&&this.options.initCallback(this,"reset");this.setup()},reload:function(){this.tail!==null&&this.inTail&&this.list.css(this.lt,h.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=false;this.options.reloadCallback!==null&&this.options.reloadCallback(this);if(this.options.visible!==null){var a=this,c=Math.ceil(this.clipping()/this.options.visible),b=0,d=0; this.list.children("li").each(function(f){b+=a.dimension(this,c);if(f+1<a.first)d=b});this.list.css(this.wh,b+"px");this.list.css(this.lt,-d+"px")}this.scroll(this.first,false)},lock:function(){this.locked=true;this.buttons()},unlock:function(){this.locked=false;this.buttons()},size:function(a){if(a!==undefined){this.options.size=a;this.locked||this.buttons()}return this.options.size},has:function(a,c){if(c===undefined||!c)c=a;if(this.options.size!==null&&c>this.options.size)c=this.options.size;for(var b= a;b<=c;b++){var d=this.get(b);if(!d.length||d.hasClass("jcarousel-item-placeholder"))return false}return true},get:function(a){return i(".jcarousel-item-"+a,this.list)},add:function(a,c){var b=this.get(a),d=0,f=i(c);if(b.length===0){var j,e=h.intval(a);for(b=this.create(a);;){j=this.get(--e);if(e<=0||j.length){e<=0?this.list.prepend(b):j.after(b);break}}}else d=this.dimension(b);if(f.get(0).nodeName.toUpperCase()=="LI"){b.replaceWith(f);b=f}else b.empty().append(c);this.format(b.removeClass(this.className("jcarousel-item-placeholder")), a);f=this.options.visible!==null?Math.ceil(this.clipping()/this.options.visible):null;d=this.dimension(b,f)-d;a>0&&a<this.first&&this.list.css(this.lt,h.intval(this.list.css(this.lt))-d+"px");this.list.css(this.wh,h.intval(this.list.css(this.wh))+d+"px");return b},remove:function(a){var c=this.get(a);if(!(!c.length||a>=this.first&&a<=this.last)){var b=this.dimension(c);a<this.first&&this.list.css(this.lt,h.intval(this.list.css(this.lt))+b+"px");c.remove();this.list.css(this.wh,h.intval(this.list.css(this.wh))- b+"px")}},next:function(){this.tail!==null&&!this.inTail?this.scrollTail(false):this.scroll((this.options.wrap=="both"||this.options.wrap=="last")&&this.options.size!==null&&this.last==this.options.size?1:this.first+this.options.scroll)},prev:function(){this.tail!==null&&this.inTail?this.scrollTail(true):this.scroll((this.options.wrap=="both"||this.options.wrap=="first")&&this.options.size!==null&&this.first==1?this.options.size:this.first-this.options.scroll)},scrollTail:function(a){if(!(this.locked|| this.animating||!this.tail)){this.pauseAuto();var c=h.intval(this.list.css(this.lt));c=!a?c-this.tail:c+this.tail;this.inTail=!a;this.prevFirst=this.first;this.prevLast=this.last;this.animate(c)}},scroll:function(a,c){if(!(this.locked||this.animating)){this.pauseAuto();this.animate(this.pos(a),c)}},pos:function(a,c){var b=h.intval(this.list.css(this.lt));if(this.locked||this.animating)return b;if(this.options.wrap!="circular")a=a<1?1:this.options.size&&a>this.options.size?this.options.size:a;for(var d= this.first>a,f=this.options.wrap!="circular"&&this.first<=1?1:this.first,j=d?this.get(f):this.get(this.last),e=d?f:f-1,g=null,k=0,l=false,m=0;d?--e>=a:++e<a;){g=this.get(e);l=!g.length;if(g.length===0){g=this.create(e).addClass(this.className("jcarousel-item-placeholder"));j[d?"before":"after"](g);if(this.first!==null&&this.options.wrap=="circular"&&this.options.size!==null&&(e<=0||e>this.options.size)){j=this.get(this.index(e));if(j.length)g=this.add(e,j.clone(true))}}j=g;m=this.dimension(g);if(l)k+= m;if(this.first!==null&&(this.options.wrap=="circular"||e>=1&&(this.options.size===null||e<=this.options.size)))b=d?b+m:b-m}f=this.clipping();var p=[],o=0,n=0;j=this.get(a-1);for(e=a;++o;){g=this.get(e);l=!g.length;if(g.length===0){g=this.create(e).addClass(this.className("jcarousel-item-placeholder"));j.length===0?this.list.prepend(g):j[d?"before":"after"](g);if(this.first!==null&&this.options.wrap=="circular"&&this.options.size!==null&&(e<=0||e>this.options.size)){j=this.get(this.index(e));if(j.length)g= this.add(e,j.clone(true))}}j=g;m=this.dimension(g);if(m===0)throw Error("jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...");if(this.options.wrap!="circular"&&this.options.size!==null&&e>this.options.size)p.push(g);else if(l)k+=m;n+=m;if(n>=f)break;e++}for(g=0;g<p.length;g++)p[g].remove();if(k>0){this.list.css(this.wh,this.dimension(this.list)+k+"px");if(d){b-=k;this.list.css(this.lt,h.intval(this.list.css(this.lt))-k+"px")}}k=a+o-1;if(this.options.wrap!="circular"&& this.options.size&&k>this.options.size)k=this.options.size;if(e>k){o=0;e=k;for(n=0;++o;){g=this.get(e--);if(!g.length)break;n+=this.dimension(g);if(n>=f)break}}e=k-o+1;if(this.options.wrap!="circular"&&e<1)e=1;if(this.inTail&&d){b+=this.tail;this.inTail=false}this.tail=null;if(this.options.wrap!="circular"&&k==this.options.size&&k-o+1>=1){d=h.margin(this.get(k),!this.options.vertical?"marginRight":"marginBottom");if(n-d>f)this.tail=n-f-d}if(c&&a===this.options.size&&this.tail){b-=this.tail;this.inTail= true}for(;a-- >e;)b+=this.dimension(this.get(a));this.prevFirst=this.first;this.prevLast=this.last;this.first=e;this.last=k;return b},animate:function(a,c){if(!(this.locked||this.animating)){this.animating=true;var b=this,d=function(){b.animating=false;a===0&&b.list.css(b.lt,0);if(!b.autoStopped&&(b.options.wrap=="circular"||b.options.wrap=="both"||b.options.wrap=="last"||b.options.size===null||b.last<b.options.size||b.last==b.options.size&&b.tail!==null&&!b.inTail))b.startAuto();b.buttons();b.notify("onAfterAnimation"); if(b.options.wrap=="circular"&&b.options.size!==null)for(var f=b.prevFirst;f<=b.prevLast;f++)if(f!==null&&!(f>=b.first&&f<=b.last)&&(f<1||f>b.options.size))b.remove(f)};this.notify("onBeforeAnimation");if(!this.options.animation||c===false){this.list.css(this.lt,a+"px");d()}else this.list.animate(!this.options.vertical?this.options.rtl?{right:a}:{left:a}:{top:a},this.options.animation,this.options.easing,d)}},startAuto:function(a){if(a!==undefined)this.options.auto=a;if(this.options.auto===0)return this.stopAuto(); if(this.timer===null){this.autoStopped=false;var c=this;this.timer=window.setTimeout(function(){c.next()},this.options.auto*1E3)}},stopAuto:function(){this.pauseAuto();this.autoStopped=true},pauseAuto:function(){if(this.timer!==null){window.clearTimeout(this.timer);this.timer=null}},buttons:function(a,c){if(a==null){a=!this.locked&&this.options.size!==0&&(this.options.wrap&&this.options.wrap!="first"||this.options.size===null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap== "first")&&this.options.size!==null&&this.last>=this.options.size)a=this.tail!==null&&!this.inTail}if(c==null){c=!this.locked&&this.options.size!==0&&(this.options.wrap&&this.options.wrap!="last"||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=="last")&&this.options.size!==null&&this.first==1)c=this.tail!==null&&this.inTail}var b=this;if(this.buttonNext.size()>0){this.buttonNext.unbind(this.options.buttonNextEvent+".jcarousel",this.funcNext);a&&this.buttonNext.bind(this.options.buttonNextEvent+ ".jcarousel",this.funcNext);this.buttonNext[a?"removeClass":"addClass"](this.className("jcarousel-next-disabled")).attr("disabled",a?false:true);this.options.buttonNextCallback!==null&&this.buttonNext.data("jcarouselstate")!=a&&this.buttonNext.each(function(){b.options.buttonNextCallback(b,this,a)}).data("jcarouselstate",a)}else this.options.buttonNextCallback!==null&&this.buttonNextState!=a&&this.options.buttonNextCallback(b,null,a);if(this.buttonPrev.size()>0){this.buttonPrev.unbind(this.options.buttonPrevEvent+ ".jcarousel",this.funcPrev);c&&this.buttonPrev.bind(this.options.buttonPrevEvent+".jcarousel",this.funcPrev);this.buttonPrev[c?"removeClass":"addClass"](this.className("jcarousel-prev-disabled")).attr("disabled",c?false:true);this.options.buttonPrevCallback!==null&&this.buttonPrev.data("jcarouselstate")!=c&&this.buttonPrev.each(function(){b.options.buttonPrevCallback(b,this,c)}).data("jcarouselstate",c)}else this.options.buttonPrevCallback!==null&&this.buttonPrevState!=c&&this.options.buttonPrevCallback(b, null,c);this.buttonNextState=a;this.buttonPrevState=c},notify:function(a){var c=this.prevFirst===null?"init":this.prevFirst<this.first?"next":"prev";this.callback("itemLoadCallback",a,c);if(this.prevFirst!==this.first){this.callback("itemFirstInCallback",a,c,this.first);this.callback("itemFirstOutCallback",a,c,this.prevFirst)}if(this.prevLast!==this.last){this.callback("itemLastInCallback",a,c,this.last);this.callback("itemLastOutCallback",a,c,this.prevLast)}this.callback("itemVisibleInCallback", a,c,this.first,this.last,this.prevFirst,this.prevLast);this.callback("itemVisibleOutCallback",a,c,this.prevFirst,this.prevLast,this.first,this.last)},callback:function(a,c,b,d,f,j,e){if(!(this.options[a]==null||typeof this.options[a]!="object"&&c!="onAfterAnimation")){var g=typeof this.options[a]=="object"?this.options[a][c]:this.options[a];if(i.isFunction(g)){var k=this;if(d===undefined)g(k,b,c);else if(f===undefined)this.get(d).each(function(){g(k,this,d,b,c)});else{a=function(m){k.get(m).each(function(){g(k, this,m,b,c)})};for(var l=d;l<=f;l++)l!==null&&!(l>=j&&l<=e)&&a(l)}}}},create:function(a){return this.format("<li></li>",a)},format:function(a,c){a=i(a);for(var b=a.get(0).className.split(" "),d=0;d<b.length;d++)b[d].indexOf("jcarousel-")!=-1&&a.removeClass(b[d]);a.addClass(this.className("jcarousel-item")).addClass(this.className("jcarousel-item-"+c)).css({"float":this.options.rtl?"right":"left","list-style":"none"}).attr("jcarouselindex",c);return a},className:function(a){return a+" "+a+(!this.options.vertical? "-horizontal":"-vertical")},dimension:function(a,c){var b=a.jquery!==undefined?a[0]:a,d=!this.options.vertical?(b.offsetWidth||h.intval(this.options.itemFallbackDimension))+h.margin(b,"marginLeft")+h.margin(b,"marginRight"):(b.offsetHeight||h.intval(this.options.itemFallbackDimension))+h.margin(b,"marginTop")+h.margin(b,"marginBottom");if(c==null||d==c)return d;d=!this.options.vertical?c-h.margin(b,"marginLeft")-h.margin(b,"marginRight"):c-h.margin(b,"marginTop")-h.margin(b,"marginBottom");i(b).css(this.wh, d+"px");return this.dimension(b)},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-h.intval(this.clip.css("borderLeftWidth"))-h.intval(this.clip.css("borderRightWidth")):this.clip[0].offsetHeight-h.intval(this.clip.css("borderTopWidth"))-h.intval(this.clip.css("borderBottomWidth"))},index:function(a,c){if(c==null)c=this.options.size;return Math.round(((a-1)/c-Math.floor((a-1)/c))*c)+1}});h.extend({defaults:function(a){return i.extend(q,a||{})},margin:function(a,c){if(!a)return 0; var b=a.jquery!==undefined?a[0]:a;if(c=="marginRight"&&i.browser.safari){var d={display:"block","float":"none",width:"auto"},f,j;i.swap(b,d,function(){f=b.offsetWidth});d.marginRight=0;i.swap(b,d,function(){j=b.offsetWidth});return j-f}return h.intval(i.css(b,c))},intval:function(a){a=parseInt(a,10);return isNaN(a)?0:a}});i.fn.jcarousel=function(a){if(typeof a=="string"){var c=i(this).data("jcarousel"),b=Array.prototype.slice.call(arguments,1);return c[a].apply(c,b)}else return this.each(function(){i(this).data("jcarousel", new h(this,a))})}})(jQuery);
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																										/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com.
 * All rights reserved. This software is the property of Linotype GmbH, and may not
 * be reproduced, used, displayed, modified, disclosed or transferred without the
 * express written approval of Linotype GmbH.  Copyright © 1988, 1990, 1994 Adobe
 * Systems Incorporated. All Rights Reserved. Frutiger is a trademark of
 * Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and
 * may be registered in certain jurisdictions. This typeface is original artwork of
 * Adrian Frutiger. The design may be protected in certain jurisdictions.
 * 
 * Trademark:
 * Frutiger is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype GmbH, and may be registered in certain jurisdictions.
 * 
 * Description:
 * In 1968, Adrian Frutiger was commissioned to develop a sign and directional
 * system for the new Charles de Gaulle Airport in Paris. Though everyone thought
 * he would want to use his successful Univers font family. Frutiger decided
 * instead to make a new sans serif typeface that would be suitable for the
 * specific legibility requirements of airport signage: easy recognition from the
 * distances and angles of driving and walking. The resulting font was in accord
 * with the modern architecture of the airport. In 1976, he expanded and completed
 * the family for D. Stempel AG in conjunction with Linotype, and it was named
 * Frutiger. The Frutiger family is neither strictly geometric nor humanistic in
 * construction; its forms are designed so that each individual character is
 * quickly and easily recognized. Such distinctness makes it good for signage and
 * display work. Although it was originally intended for the large scale of an
 * airport, the full family has a warmth and subtlety that have, in recent years,
 * made it popular for the smaller scale of body text in magazines and booklets.
 * See also the new revised version Frutiger Next from the Linotype Platinum
 * Collection.
 * 
 * Manufacturer:
 * Linotype GmbH
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.linotype.com/license
 */
Cufon.registerFont({"w":172,"face":{"font-family":"Frutiger LT Com 47 Light Cn","font-weight":300,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 3 6 3 5 4 2 2 4","ascent":"270","descent":"-90","x-height":"3","bbox":"-15 -329 360 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86,"k":{"\u00dd":20,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"\u0178":20,"\u201c":13,"\u2018":13,"Y":20,"W":20,"V":20,"T":20,"A":20}},"!":{"d":"50,-32r27,0r0,32r-27,0r0,-32xm50,-251r27,0r-4,189r-19,0","w":126},"\"":{"d":"102,-270r20,0r0,80r-20,0r0,-80xm50,-270r21,0r0,80r-21,0r0,-80"},"#":{"d":"60,-98r45,0r7,-55r-45,0xm40,-80r-31,0r0,-18r33,0r7,-55r-31,0r0,-18r33,0r10,-80r18,0r-10,80r45,0r10,-80r18,0r-10,80r32,0r0,18r-34,0r-7,55r32,0r0,18r-34,0r-9,80r-18,0r9,-80r-45,0r-9,80r-18,0"},"$":{"d":"52,-142v-40,-28,-26,-112,28,-110r0,-30r13,0v1,9,-2,21,1,28v15,-1,30,4,39,8r-1,25v-11,-6,-22,-13,-39,-12r0,92v26,20,51,32,52,74v1,35,-23,62,-52,68r0,32r-13,0r0,-30v-19,0,-39,-4,-50,-12r1,-26v12,11,28,16,49,17r0,-103v-11,-5,-20,-16,-28,-21xm80,-231v-26,1,-36,40,-21,61v5,6,12,13,21,19r0,-80xm93,-21v25,-7,36,-46,21,-70v-5,-7,-12,-14,-21,-21r0,91"},"%":{"d":"193,-263r19,0r-112,275r-20,0xm47,-199v-1,30,-1,62,27,62v28,0,27,-35,26,-62v-1,-19,-7,-35,-26,-35v-20,0,-26,17,-27,35xm122,-186v0,36,-10,68,-48,68v-37,0,-48,-30,-48,-68v0,-38,12,-68,48,-68v37,0,48,32,48,68xm193,-79v0,30,-2,62,27,62v28,0,27,-35,26,-62v-1,-18,-7,-35,-26,-35v-19,0,-26,17,-27,35xm267,-66v0,38,-11,69,-47,69v-37,0,-48,-31,-48,-69v0,-38,12,-68,48,-68v36,0,47,30,47,68","w":293},"&":{"d":"64,-114v-34,24,-27,99,26,96v22,-1,40,-14,50,-28r-59,-82xm88,-152v17,-11,38,-23,38,-51v0,-18,-9,-30,-28,-30v-47,2,-34,59,-10,81xm149,-206v0,39,-26,54,-49,70r52,72v9,-19,15,-49,16,-78r21,0v-1,37,-11,70,-25,96r37,46r-29,0r-20,-30v-13,17,-34,33,-64,33v-46,-1,-68,-29,-68,-73v0,-38,23,-59,50,-73v-12,-15,-29,-33,-27,-59v2,-31,21,-52,56,-52v30,0,50,20,50,48","w":206},"'":{"d":"33,-270r21,0r0,80r-21,0r0,-80","w":86},"(":{"d":"39,-111v0,66,23,113,44,159r-17,2v-49,-66,-66,-200,-20,-285v7,-13,13,-25,20,-37r17,2v-21,47,-43,92,-44,159","w":93},")":{"d":"54,-111v-1,-66,-23,-112,-44,-159r17,-2v49,67,67,200,20,285v-7,13,-13,25,-20,37r-17,-2v21,-46,44,-93,44,-159","w":93},"*":{"d":"73,-207r-43,-14r7,-21r41,19r-3,-47r23,0r-3,47r40,-19r8,21r-43,14r26,41r-18,11r-22,-42r-21,42r-19,-11"},"+":{"d":"99,-82r-82,0r0,-18r82,0r0,-82r18,0r0,82r82,0r0,18r-82,0r0,82r-18,0r0,-82","w":216},",":{"d":"34,48r-21,0r18,-80r26,0","w":86,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"17,-111r73,0r0,21r-73,0r0,-21","w":106},".":{"d":"29,-35r28,0r0,35r-28,0r0,-35","w":86,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"22,3r-18,0r67,-257r18,0","w":93},"0":{"d":"86,-18v50,-7,48,-70,48,-126v0,-41,-8,-85,-48,-89v-49,7,-47,71,-47,126v0,40,8,85,47,89xm86,-254v60,0,70,66,70,128v0,62,-10,129,-70,129v-59,0,-69,-67,-69,-129v0,-61,10,-128,69,-128"},"1":{"d":"88,-251r22,0r0,251r-22,0r0,-226r-33,37r-12,-16"},"2":{"d":"31,-238v40,-31,121,-15,114,50v-9,78,-59,118,-96,167r100,0r0,21r-125,0v-2,-41,27,-50,44,-76v21,-32,54,-63,54,-112v0,-25,-12,-46,-40,-45v-17,0,-37,11,-47,20"},"3":{"d":"120,-188v2,-47,-62,-57,-92,-30r-1,-24v45,-26,117,-6,117,52v0,33,-21,47,-45,57v27,8,46,28,46,64v0,68,-77,86,-127,61r1,-24v36,24,107,17,103,-40v-3,-39,-33,-51,-77,-48r0,-21v41,1,73,-8,75,-47"},"4":{"d":"31,-81r80,0r-1,-148xm104,-251r29,0r0,170r29,0r0,21r-29,0r0,60r-22,0r0,-60r-100,0r0,-23"},"5":{"d":"154,-80v0,69,-66,99,-123,73r1,-24v41,28,98,9,98,-49v0,-53,-53,-66,-96,-47r0,-124r107,0r0,21r-86,0r0,79v52,-18,99,12,99,71"},"6":{"d":"86,-138v-57,1,-58,120,0,120v33,0,46,-26,46,-62v0,-32,-12,-58,-46,-58xm104,-254v15,0,30,3,42,7r-2,25v-8,-3,-22,-12,-37,-11v-55,1,-68,59,-69,109v10,-20,25,-35,52,-35v47,0,66,37,66,82v0,46,-23,80,-70,80v-63,0,-72,-67,-69,-133v3,-63,20,-122,87,-124"},"7":{"d":"23,-251r126,0r0,22r-78,229r-26,0r82,-230r-104,0r0,-21"},"8":{"d":"87,-18v43,3,62,-60,29,-83v-11,-7,-26,-26,-40,-16v-19,14,-37,22,-36,52v1,28,18,45,47,47xm91,-140v20,-15,36,-30,36,-55v0,-24,-18,-36,-41,-38v-36,-1,-53,44,-29,70v8,9,19,17,34,23xm16,-66v-1,-36,25,-54,48,-65v-22,-12,-42,-32,-42,-64v1,-39,27,-59,65,-59v39,0,63,20,63,58v0,34,-22,50,-42,64v23,13,49,28,49,65v0,43,-26,70,-71,70v-43,0,-69,-27,-70,-69"},"9":{"d":"86,-113v58,0,59,-122,0,-120v-32,1,-46,27,-46,62v0,30,13,58,46,58xm68,3v-15,0,-30,-3,-41,-7r2,-26v7,4,21,13,37,12v53,-4,67,-54,69,-109v-10,21,-26,35,-53,35v-46,0,-65,-38,-65,-83v0,-45,22,-79,69,-79v64,0,73,65,70,133v-3,64,-21,122,-88,124"},":":{"d":"29,-35r28,0r0,35r-28,0r0,-35xm29,-184r28,0r0,36r-28,0r0,-36","w":86,"k":{" ":13}},";":{"d":"29,-184r28,0r0,36r-28,0r0,-36xm34,48r-21,0r18,-80r26,0","w":86,"k":{" ":13}},"<":{"d":"17,-101r182,-84r0,20r-160,74r160,74r0,20r-182,-84r0,-20","w":216},"=":{"d":"17,-65r182,0r0,18r-182,0r0,-18xm17,-135r182,0r0,18r-182,0r0,-18","w":216},">":{"d":"199,-81r-182,84r0,-20r160,-74r-160,-74r0,-20r182,84r0,20","w":216},"?":{"d":"59,-32r27,0r0,32r-27,0r0,-32xm112,-191v2,-41,-49,-54,-78,-30r-2,-25v45,-20,103,-3,103,53v0,58,-52,70,-51,131r-21,0v-4,-60,46,-77,49,-129","w":159},"@":{"d":"157,-201v21,-1,30,15,38,29r8,-23r18,0r-39,113v1,9,5,12,16,12v36,0,56,-40,56,-78v0,-61,-49,-89,-110,-89v-67,0,-110,44,-110,111v0,68,44,112,110,112v47,0,83,-17,103,-46r19,0v-22,39,-64,63,-122,63v-76,0,-128,-51,-128,-129v0,-77,51,-128,128,-128v72,0,128,35,128,107v0,49,-30,88,-75,93v-17,2,-29,-9,-32,-22v-22,33,-98,28,-92,-27v5,-52,31,-95,84,-98xm155,-184v-41,0,-64,40,-64,80v0,20,8,34,30,34v39,0,62,-42,62,-82v0,-22,-10,-32,-28,-32","w":288},"A":{"d":"56,-90r87,0r-43,-138xm88,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0","w":200,"k":{"\u00dd":23,"\u00dc":13,"\u00db":13,"\u00da":13,"\u00d9":13,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":23,"\u201d":40,"\u2019":27,"Y":23,"W":6,"V":16,"U":13,"T":16,"Q":6,"O":6,"G":6,"C":6}},"B":{"d":"157,-70v0,68,-59,73,-128,70r0,-251v64,-3,123,0,123,61v0,33,-20,47,-40,59v26,8,45,25,45,61xm134,-69v1,-44,-35,-56,-83,-51r0,99v48,5,82,-7,83,-48xm128,-188v0,-41,-35,-44,-77,-42r0,89v44,4,77,-6,77,-47","w":180,"k":{".":13,",":13}},"C":{"d":"44,-126v-3,78,58,130,125,96r1,25v-85,29,-149,-31,-149,-122v0,-91,64,-148,150,-119r-1,26v-10,-8,-25,-13,-43,-13v-58,0,-80,45,-83,107","w":193,"k":{".":13,",":13}},"D":{"d":"161,-126v1,-71,-32,-110,-110,-104r0,209v77,6,108,-36,110,-105xm184,-129v-1,92,-52,139,-155,129r0,-251v101,-7,156,27,155,122","w":200,"k":{"\u00dd":16,"\u0178":16,"Y":16,".":13,",":13}},"E":{"d":"29,-251r106,0r0,21r-84,0r0,89r80,0r0,21r-80,0r0,99r88,0r0,21r-110,0r0,-251","w":159},"F":{"d":"29,-251r102,0r0,21r-80,0r0,89r76,0r0,21r-76,0r0,120r-22,0r0,-251","w":146,"k":{"\u0105":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e5":13,"\u00e4":13,"\u00e3":13,"\u00e2":13,"\u00e1":13,"\u00e0":13,"\u00c5":16,"\u00c4":16,"\u00c3":16,"\u00c2":16,"\u00c1":16,"\u00c0":16,"r":13,"o":13,"e":13,"a":13,"A":16,".":46,",":46}},"G":{"d":"42,-126v0,72,52,128,122,100r0,-88r-45,0r0,-21r67,0r0,124v-16,9,-36,14,-58,14v-76,0,-107,-56,-110,-131v-3,-90,76,-152,162,-114r-1,25v-64,-40,-137,6,-137,91","w":213,"k":{".":13,",":13}},"H":{"d":"29,-251r22,0r0,110r98,0r0,-110r22,0r0,251r-22,0r0,-120r-98,0r0,120r-22,0r0,-251","w":200},"I":{"d":"29,-251r22,0r0,251r-22,0r0,-251","w":79},"J":{"d":"78,-69v3,48,-21,83,-70,69r0,-24v29,14,47,-8,47,-46r0,-181r23,0r0,182","w":106,"k":{"\u0105":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"a":4,".":13,",":13}},"K":{"d":"29,-251r22,0r1,110r91,-110r27,0r-101,119r109,132r-29,0r-98,-123r0,123r-22,0r0,-251","w":180,"k":{"\u00fd":13,"\u00fc":13,"\u00f9":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"y":13,"u":13,"o":13,"e":13,"O":13}},"L":{"d":"29,-251r22,0r0,230r82,0r0,21r-104,0r0,-251","w":140,"k":{"\u00fd":13,"\u00dd":40,"\u0178":40,"\u201d":46,"\u2019":33,"y":13,"Y":40,"W":16,"V":27,"T":33}},"M":{"d":"29,-251r34,0r71,218r69,-218r35,0r0,251r-21,0r-1,-230r-74,230r-17,0r-75,-230r0,230r-21,0r0,-251","w":266},"N":{"d":"29,-251r29,0r106,223r0,-223r21,0r0,251r-29,0r-106,-222r0,222r-21,0r0,-251","w":213,"k":{".":13,",":13}},"O":{"d":"107,-233v-58,0,-68,60,-65,122v2,47,15,93,65,93v58,0,66,-64,64,-123v-2,-48,-15,-92,-64,-92xm107,3v-75,0,-92,-71,-88,-146v3,-59,23,-111,88,-111v75,0,92,67,88,145v-3,60,-24,112,-88,112","w":213,"k":{"\u00dd":16,"\u0178":16,"Y":16,"V":6,"T":16,".":16,",":16}},"P":{"d":"153,-180v-2,57,-41,75,-102,71r0,109r-22,0r0,-251v69,-4,126,3,124,71xm129,-180v0,-45,-30,-54,-78,-50r0,100v45,2,78,-5,78,-50","w":166,"k":{"\u0105":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e5":13,"\u00e4":13,"\u00e3":13,"\u00e2":13,"\u00e1":13,"\u00e0":13,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"o":13,"e":13,"a":13,"A":20,".":46,",":46}},"Q":{"d":"107,-233v-58,0,-68,60,-65,122v2,47,15,93,65,93v58,0,66,-64,64,-123v-2,-48,-15,-92,-64,-92xm195,-143v4,66,-9,118,-53,138r47,51r-28,0r-41,-45v-82,11,-107,-64,-101,-144v4,-59,23,-111,88,-111v64,0,84,51,88,111","w":213,"k":{".":13,",":13}},"R":{"d":"129,-186v0,-43,-35,-46,-78,-44r0,92v46,5,78,-8,78,-48xm153,-187v0,36,-20,55,-49,61v11,3,21,10,25,22r38,104r-24,0v-15,-36,-24,-78,-43,-110v-10,-10,-30,-6,-49,-7r0,117r-22,0r0,-251v65,-3,126,0,124,64","w":180,"k":{"\u00dd":20,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u0178":20,"Y":20,"V":4,"U":4,"T":16}},"S":{"d":"135,-67v0,63,-67,86,-115,58r2,-26v32,35,110,9,86,-48v-19,-46,-88,-46,-90,-110v-2,-57,62,-71,105,-53r-1,25v-23,-18,-84,-17,-80,25v6,67,93,55,93,129","w":153,"k":{".":13,",":13}},"T":{"d":"7,-251r139,0r0,21r-58,0r0,230r-22,0r0,-230r-59,0r0,-21","w":153,"k":{"\u0105":27,"\u00fd":13,"\u00fc":27,"\u00f9":27,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00d6":16,"\u00d5":16,"\u00d4":16,"\u00d3":16,"\u00d2":16,"\u00c5":16,"\u00c4":16,"\u00c3":16,"\u00c2":16,"\u00c1":16,"\u00c0":16,"y":13,"w":19,"u":27,"r":27,"o":13,"i":13,"h":13,"e":20,"a":27,"O":16,"A":16,";":27,":":27,".":40,"-":33,",":40}},"U":{"d":"103,3v-109,0,-65,-153,-74,-254r22,0r0,158v0,42,10,75,52,75v43,0,52,-34,53,-75r0,-158r22,0v-8,102,34,254,-75,254","w":206,"k":{"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"A":13,".":13,",":13}},"V":{"d":"6,-251r24,0r62,220r67,-220r22,0r-79,251r-21,0","w":186,"k":{"\u0105":17,"\u00fc":13,"\u00f9":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e5":17,"\u00e4":17,"\u00e3":17,"\u00e2":17,"\u00e1":17,"\u00e0":17,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c5":16,"\u00c4":16,"\u00c3":16,"\u00c2":16,"\u00c1":16,"\u00c0":16,"u":13,"o":13,"i":7,"e":13,"a":17,"O":6,"G":6,"A":16,";":16,":":16,".":46,"-":13,",":46}},"W":{"d":"4,-251r24,0r46,224r52,-224r31,0r47,224r49,-224r23,0r-58,251r-28,0r-50,-226r-54,226r-26,0","w":280,"k":{"\u0105":13,"\u00fc":6,"\u00f9":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":13,"\u00e4":13,"\u00e3":13,"\u00e2":13,"\u00e1":13,"\u00e0":13,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"u":6,"o":6,"e":6,"a":13,"A":6,";":6,":":6,".":27,",":27}},"X":{"d":"13,-251r27,0r57,100r59,-100r23,0r-70,118r74,133r-26,0r-62,-114r-65,114r-26,0r78,-133","w":186},"Y":{"d":"79,-109r-64,-142r24,0r51,121r51,-121r24,0r-64,142r0,109r-22,0r0,-109","w":180,"k":{"\u0105":27,"\u00fc":20,"\u00f9":20,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00d6":16,"\u00d5":16,"\u00d4":16,"\u00d3":16,"\u00d2":16,"\u00c5":23,"\u00c4":23,"\u00c3":23,"\u00c2":23,"\u00c1":23,"\u00c0":23,"\u0160":16,"u":20,"o":27,"i":20,"e":27,"a":27,"S":16,"O":16,"A":23,";":16,":":16,".":46,"-":40,",":46}},"Z":{"d":"13,-22r108,-208r-104,0r0,-21r127,0r0,21r-108,209r111,0r0,21r-134,0r0,-22","w":159},"[":{"d":"28,-272r46,0r0,16r-26,0r0,290r26,0r0,16r-46,0r0,-322","w":93},"\\":{"d":"4,-254r18,0r67,257r-18,0","w":93},"]":{"d":"65,50r-46,0r0,-16r27,0r0,-290r-27,0r0,-16r46,0r0,322","w":93},"^":{"d":"108,-229r-71,141r-21,0r83,-163r18,0r83,163r-21,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"`":{"d":"23,-262r27,51r-18,0r-35,-51r26,0","w":66},"a":{"d":"71,-17v38,0,50,-33,46,-76v-41,1,-82,0,-80,42v1,20,12,34,34,34xm116,-129v3,-48,-63,-43,-84,-19r-3,-22v38,-30,106,-18,107,45r2,125r-18,0v-2,-8,0,-20,-3,-26v-19,46,-102,33,-102,-25v0,-54,48,-60,102,-60v0,-6,-1,-11,-1,-18","w":159},"b":{"d":"88,-17v37,0,42,-40,42,-75v0,-37,-6,-75,-43,-75v-39,0,-45,39,-45,77v0,37,8,73,46,73xm90,3v-27,0,-35,-14,-49,-28r0,25r-19,0r1,-270r21,0r1,110v11,-14,22,-26,46,-26v85,3,83,186,-1,189","w":166,"k":{".":13,",":13}},"c":{"d":"15,-91v0,-70,45,-111,110,-89r-1,24v-42,-25,-93,6,-87,59v-6,59,42,96,88,69r2,24v-62,23,-112,-19,-112,-87","w":133},"d":{"d":"79,-167v-40,0,-42,43,-42,86v0,31,8,64,42,64v45,-1,47,-50,44,-95v-1,-30,-13,-55,-44,-55xm76,-186v26,-1,35,13,47,26r0,-110r21,0r1,270r-19,0v-1,-8,2,-19,-1,-25v-12,14,-23,28,-48,28v-51,0,-63,-48,-62,-102v1,-45,16,-85,61,-87","w":166},"e":{"d":"116,-104v9,-53,-44,-86,-69,-40v-5,11,-10,26,-10,40r79,0xm15,-78v-7,-71,37,-133,96,-99v24,14,28,54,28,92r-102,0v-7,61,53,85,92,53r1,24v-11,5,-25,11,-43,11v-50,-1,-68,-35,-72,-81","w":153,"k":{".":13,",":13}},"f":{"d":"95,-252v-20,-9,-40,2,-40,25r0,43r32,0r0,20r-32,0r0,164r-21,0r0,-164r-29,0r0,-20r29,0v-4,-54,1,-101,61,-89r0,21","w":93,"k":{"\u201d":6,".":25,",":25}},"g":{"d":"79,-167v-36,0,-42,38,-42,75v0,38,6,75,42,75v41,0,45,-36,45,-77v0,-37,-7,-73,-45,-73xm76,3v-50,-2,-63,-50,-61,-104v2,-45,16,-84,62,-85v27,-1,36,13,49,29r0,-27r19,0r-1,180v7,73,-57,101,-121,74r1,-24v14,9,33,14,51,14v45,2,52,-42,47,-85v-11,16,-21,29,-46,28","w":166},"h":{"d":"87,-167v-64,4,-36,103,-42,167r-21,0r0,-270r21,0r1,113v8,-15,21,-29,45,-29v78,1,43,114,51,186r-21,0r0,-136v-2,-18,-12,-33,-34,-31","w":166},"i":{"d":"24,-257r25,0r0,33r-25,0r0,-33xm26,-184r21,0r0,184r-21,0r0,-184","w":73},"j":{"d":"24,-257r25,0r0,33r-25,0r0,-33xm-3,57v16,6,29,-1,29,-22r0,-219r21,0r-1,231v0,25,-22,38,-49,31r0,-21","w":73},"k":{"d":"25,-270r21,0r0,160r70,-74r26,0r-78,82r85,102r-28,0r-75,-93r0,93r-21,0r0,-270","w":153,"k":{"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"o":9,"e":13}},"l":{"d":"26,-270r21,0r0,270r-21,0r0,-270","w":73},"m":{"d":"85,-167v-62,0,-34,104,-40,167r-21,0r-1,-184r19,0v2,8,0,20,3,27v6,-16,20,-28,42,-29v24,0,36,12,42,29v9,-13,21,-30,46,-29v75,3,39,117,47,186r-20,0r-1,-136v-1,-18,-10,-31,-29,-31v-62,0,-31,106,-38,167r-21,0r0,-128v1,-22,-9,-39,-28,-39","w":246},"n":{"d":"87,-167v-64,4,-36,103,-42,167r-21,0r-1,-184r19,0v2,8,0,20,3,27v8,-16,21,-29,46,-29v78,1,43,114,51,186r-21,0r0,-136v-2,-18,-12,-33,-34,-31","w":166},"o":{"d":"152,-92v0,53,-17,95,-68,95v-52,0,-69,-42,-69,-95v1,-52,16,-94,69,-94v52,0,68,42,68,94xm37,-102v-2,43,4,85,47,85v42,0,46,-42,46,-85v0,-33,-11,-65,-46,-65v-35,0,-46,32,-47,65","w":167,"k":{"x":3,".":13,",":13}},"p":{"d":"87,-17v39,0,43,-45,42,-85v-1,-33,-9,-65,-41,-65v-45,0,-47,51,-45,96v2,29,13,54,44,54xm91,3v-23,1,-37,-12,-47,-26r0,101r-21,0r-1,-262r19,0v1,8,-2,21,1,27v11,-17,23,-29,48,-29v48,0,62,42,62,88v0,50,-12,99,-61,101","w":166,"k":{".":13,",":13}},"q":{"d":"79,-167v-36,0,-42,38,-42,75v0,38,6,75,42,75v41,0,45,-36,45,-77v0,-37,-7,-73,-45,-73xm77,-186v27,-1,36,13,49,29r0,-27r19,0r-1,262r-21,0r-1,-103v-11,16,-21,29,-46,28v-50,-2,-63,-50,-61,-104v2,-45,16,-84,62,-85","w":166},"r":{"d":"94,-164v-75,-4,-42,100,-49,164r-21,0r-1,-184r19,0v2,9,0,22,3,30v9,-19,21,-33,49,-32r0,22","w":100,"k":{"\u0105":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"a":6,".":33,"-":16,",":33}},"s":{"d":"15,-135v1,-44,45,-60,88,-46r-3,22v-34,-27,-90,18,-46,47v24,16,58,22,60,61v3,52,-59,64,-101,45r3,-24v21,18,79,19,75,-19v-5,-47,-77,-32,-76,-86","w":126,"k":{".":13,",":13}},"t":{"d":"92,0v-33,10,-58,-4,-58,-39r0,-125r-28,0r0,-20r28,0r0,-36r21,-7r0,43r37,0r0,20r-37,0r0,130v-1,17,24,22,37,13r0,21","w":100},"u":{"d":"80,-17v64,-4,35,-104,41,-167r21,0r2,184r-20,0v-1,-8,1,-20,-2,-27v-6,17,-23,30,-47,30v-78,0,-44,-115,-51,-187r21,0r1,136v2,19,12,32,34,31","w":166},"v":{"d":"4,-184r22,0r45,160r45,-160r20,0r-53,184r-25,0","w":140,"k":{"\u0105":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"a":6,".":16,",":16}},"w":{"d":"4,-184r22,0r40,162r37,-162r26,0r41,162r38,-162r21,0r-48,184r-25,0r-41,-160r-37,160r-25,0","w":233,"k":{"\u0105":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"a":6,".":16,",":16}},"x":{"d":"8,-184r25,0r37,69r38,-69r23,0r-49,86r54,98r-25,0r-43,-81r-40,81r-24,0r52,-99","w":140},"y":{"d":"15,57v33,14,35,-29,43,-53r-54,-188r22,0r42,153r41,-153r21,0r-66,236v-5,21,-24,32,-50,26","w":133,"k":{"\u0105":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"a":6,".":16,",":16}},"z":{"d":"11,-21r88,-143r-85,0r0,-20r107,0r0,21r-88,144r89,0r0,19r-111,0r0,-21","w":133},"{":{"d":"34,-166v2,-52,-15,-118,53,-106r0,16v-73,-12,1,122,-57,145v36,9,23,76,23,119v0,22,12,28,34,26r0,16v-35,2,-53,-5,-53,-41v0,-40,15,-105,-22,-112r0,-16v22,-1,22,-23,22,-47","w":93},"|":{"d":"31,-270r18,0r0,360r-18,0r0,-360","w":79},"}":{"d":"81,-103v-62,10,32,166,-75,153r0,-16v73,12,-1,-122,57,-145v-36,-9,-23,-76,-23,-119v0,-22,-12,-28,-34,-26r0,-16v35,-2,53,6,53,42v0,40,-15,105,22,111r0,16","w":93},"~":{"d":"70,-112v40,2,86,49,108,-2r13,13v-11,28,-54,42,-82,19v-21,-18,-65,-14,-71,14r-13,-13v8,-16,20,-32,45,-31","w":216},"\u20ac":{"d":"33,-158v7,-65,66,-115,139,-88r-4,24v-51,-30,-109,10,-111,64r101,0r-3,15r-101,0v-1,11,-1,23,0,34r96,0r-3,15r-90,0v4,54,57,95,111,66r2,24v-73,25,-132,-24,-138,-90r-26,0r3,-15r22,0v-1,-11,-1,-23,0,-34r-25,0r3,-15r24,0"},"\u201a":{"d":"42,48r-21,0r18,-80r26,0","w":86},"\u0192":{"d":"14,55v39,13,43,-29,48,-65r19,-120r-32,0r0,-18r35,0v7,-49,15,-124,77,-101r-3,20v-44,-21,-45,42,-52,81r33,0r0,18r-36,0v-16,68,-10,158,-51,201v-8,10,-28,12,-40,5"},"\u201e":{"d":"59,48r-20,0r17,-80r26,0xm111,48r-21,0r18,-80r26,0"},"\u2026":{"d":"286,-35r28,0r0,35r-28,0r0,-35xm166,-35r28,0r0,35r-28,0r0,-35xm46,-35r28,0r0,35r-28,0r0,-35","w":360},"\u2020":{"d":"77,-168r-51,0r0,-18r51,0r0,-65r19,0r0,65r51,0r0,18r-51,0r0,168r-19,0r0,-168"},"\u2021":{"d":"77,-251r19,0r0,62r51,0r0,18r-51,0r0,90r51,0r0,18r-51,0r0,63r-19,0r0,-63r-51,0r0,-18r51,0r0,-90r-51,0r0,-18r51,0r0,-62"},"\u02c6":{"d":"23,-262r21,0r35,51r-21,0r-25,-37r-24,37r-21,0","w":66},"\u2030":{"d":"146,-263r15,0r-92,275r-15,0xm33,-203v1,28,-6,64,21,64v26,0,20,-38,20,-64v-1,-17,-4,-33,-20,-33v-16,0,-21,16,-21,33xm94,-187v0,34,-6,66,-40,66v-35,0,-41,-34,-41,-66v0,-33,7,-67,41,-67v33,0,40,33,40,67xm239,-80v1,28,-5,65,21,65v26,0,20,-38,20,-65v0,-17,-4,-33,-20,-33v-16,0,-21,16,-21,33xm260,-131v57,0,55,134,0,134v-34,0,-41,-34,-41,-67v0,-33,7,-67,41,-67xm141,-80v1,28,-5,65,21,65v25,0,20,-39,20,-65v-1,-17,-4,-33,-20,-33v-16,0,-21,16,-21,33xm202,-64v0,34,-7,67,-40,67v-57,0,-57,-134,0,-134v33,0,40,33,40,67","w":313},"\u0160":{"d":"31,-313r21,0r25,37r24,-37r21,0r-35,51r-21,0xm135,-67v0,63,-67,86,-115,58r2,-26v32,35,110,9,86,-48v-19,-46,-88,-46,-90,-110v-2,-57,62,-71,105,-53r-1,25v-23,-18,-84,-17,-80,25v6,67,93,55,93,129","w":153,"k":{".":13,",":13}},"\u2039":{"d":"58,-168r19,0r-38,73r38,76r-19,0r-42,-76","w":93},"\u0152":{"d":"41,-126v0,70,27,121,100,105r0,-209v-70,-16,-100,34,-100,104xm18,-126v-2,-84,36,-125,130,-125r94,0r0,21r-78,0r0,89r74,0r0,21r-74,0r0,99r82,0r0,21r-132,3v-73,-1,-95,-57,-96,-129","w":266},"\u017d":{"d":"35,-313r20,0r25,37r24,-37r21,0r-35,51r-21,0xm13,-22r108,-208r-104,0r0,-21r127,0r0,21r-108,209r111,0r0,21r-134,0r0,-22","w":159},"\u2018":{"d":"44,-270r21,0r-17,80r-27,0","w":86,"k":{"\u00c5":36,"\u00c4":36,"\u00c3":36,"\u00c2":36,"\u00c1":36,"\u00c0":36,"\u2018":32,"A":36}},"\u2019":{"d":"42,-190r-21,0r18,-80r26,0","w":86,"k":{"\u0161":20,"\u201d":20,"\u2019":32,"s":20,"r":6,"d":27}},"\u201c":{"d":"113,-270r21,0r-17,80r-27,0xm62,-270r20,0r-17,80r-26,0","k":{"\u00c5":33,"\u00c4":33,"\u00c3":33,"\u00c2":33,"\u00c1":33,"\u00c0":33,"\u2018":20,"A":33}},"\u201d":{"d":"59,-190r-20,0r17,-80r26,0xm111,-190r-21,0r18,-80r26,0","k":{" ":13}},"\u2022":{"d":"90,-63v-38,0,-63,-25,-63,-63v0,-38,25,-63,63,-63v38,0,63,25,63,63v0,38,-25,63,-63,63","w":180},"\u2013":{"d":"0,-110r180,0r0,19r-180,0r0,-19","w":180},"\u2014":{"d":"0,-110r360,0r0,19r-360,0r0,-19","w":360},"\u02dc":{"d":"54,-220v0,0,-44,-33,-54,2r-15,0v2,-18,9,-35,30,-35v16,0,24,15,39,15v7,0,13,-8,13,-17r15,0v-3,16,-9,35,-28,35","w":66},"\u2122":{"d":"298,-102r-1,-133r-53,133r-11,0r-54,-133r0,133r-18,0r0,-149r31,0r47,120r46,-120r31,0r0,149r-18,0xm67,-235r-48,0r0,-16r115,0r0,16r-49,0r0,133r-18,0r0,-133","w":360},"\u0161":{"d":"18,-262r21,0r24,37r25,-37r21,0r-35,51r-21,0xm15,-135v1,-44,45,-60,88,-46r-3,22v-34,-27,-90,18,-46,47v24,16,58,22,60,61v3,52,-59,64,-101,45r3,-24v21,18,79,19,75,-19v-5,-47,-77,-32,-76,-86","w":126,"k":{".":13,",":13}},"\u203a":{"d":"36,-19r-20,0r39,-73r-39,-76r20,0r41,76","w":93},"\u0153":{"d":"233,-104v11,-68,-67,-83,-78,-20v-2,7,-3,14,-3,20r81,0xm246,-8v-33,22,-96,8,-105,-27v-10,21,-26,38,-57,38v-52,-2,-69,-42,-69,-95v1,-52,16,-93,69,-94v32,0,47,17,58,38v12,-45,89,-51,104,-4v6,18,9,43,9,67r-103,0v-8,61,55,85,93,53xm37,-102v-2,43,4,85,47,85v42,0,46,-42,46,-85v0,-33,-11,-65,-46,-65v-35,0,-46,32,-47,65","w":266},"\u017e":{"d":"21,-262r21,0r25,37r24,-37r21,0r-35,51r-21,0xm11,-21r88,-143r-85,0r0,-20r107,0r0,21r-88,144r89,0r0,19r-111,0r0,-21","w":133},"\u0178":{"d":"79,-109r-64,-142r24,0r51,121r51,-121r24,0r-64,142r0,109r-22,0r0,-109xm107,-307r21,0r0,35r-21,0r0,-35xm53,-307r21,0r0,35r-21,0r0,-35","w":180,"k":{"\u0105":27,"\u00fc":20,"\u00f9":20,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00d6":16,"\u00d5":16,"\u00d4":16,"\u00d3":16,"\u00d2":16,"\u00c5":23,"\u00c4":23,"\u00c3":23,"\u00c2":23,"\u00c1":23,"\u00c0":23,"\u0160":16,"u":20,"o":27,"i":20,"e":27,"a":27,"S":16,"O":16,"A":23,";":16,":":16,".":46,"-":40,",":46}},"\u00a1":{"d":"77,-151r-27,0r0,-33r27,0r0,33xm77,68r-27,0r4,-190r19,0","w":126},"\u00a2":{"d":"123,-184v17,-3,12,15,12,28v-4,-3,-9,-6,-15,-7r-21,144v13,2,31,-1,37,-9r2,24v-11,6,-29,7,-43,6r-6,44r-15,0r7,-47v-35,-12,-55,-43,-55,-90v0,-57,23,-97,83,-95r6,-40r15,0xm105,-165v-72,-6,-71,122,-21,142"},"\u00a3":{"d":"154,-222v-35,-26,-91,-2,-83,49r0,29r57,0r0,20r-57,0r0,103r83,0r0,21r-131,0r0,-21r25,0r0,-103r-25,0r0,-20r25,0v-10,-81,40,-132,110,-100"},"\u00a4":{"d":"86,-185v-36,0,-59,23,-59,59v0,37,24,60,59,60v36,0,60,-24,60,-60v0,-35,-23,-59,-60,-59xm147,-174v22,22,22,75,0,97r17,17r-12,12r-17,-17v-22,22,-75,22,-97,0r-17,17r-12,-12r17,-17v-22,-22,-22,-75,0,-97r-17,-18r12,-11r17,17v22,-22,75,-22,97,0r17,-17r12,11"},"\u00a5":{"d":"29,-118r42,0r-59,-133r24,0r50,122r51,-122r24,0r-59,133r42,0r0,15r-46,0r0,32r46,0r0,16r-46,0r0,55r-23,0r0,-55r-46,0r0,-16r46,0r0,-32r-46,0r0,-15"},"\u00a6":{"d":"31,-243r18,0r0,126r-18,0r0,-126xm31,-63r18,0r0,126r-18,0r0,-126","w":79},"\u00a7":{"d":"105,-63v17,-14,27,-50,4,-66v-8,-8,-21,-16,-32,-21v-16,7,-32,40,-14,59v10,11,25,19,42,28xm118,-53v43,30,19,105,-40,100v-19,-2,-36,-8,-50,-13r4,-24v23,20,91,25,87,-19v-5,-57,-104,-41,-82,-118v4,-15,15,-25,27,-33v-42,-19,-24,-100,34,-94v15,2,30,5,41,10r-4,22v-22,-16,-76,-16,-73,18v5,52,83,40,82,101v-1,23,-11,37,-26,50"},"\u00a8":{"d":"50,-256r21,0r0,35r-21,0r0,-35xm-4,-256r21,0r0,35r-21,0r0,-35","w":66},"\u00a9":{"d":"144,3v-76,0,-128,-51,-128,-129v0,-77,51,-128,128,-128v77,0,128,51,128,128v0,78,-52,129,-128,129xm144,-237v-67,0,-110,44,-110,111v0,68,44,112,110,112v66,0,110,-44,110,-112v0,-67,-43,-111,-110,-111xm72,-126v-4,-65,64,-99,116,-65v13,8,19,21,21,38r-18,0v-18,-59,-108,-37,-101,27v-9,65,90,86,101,26r18,0v-7,30,-30,54,-64,53v-47,-1,-70,-32,-73,-79","w":288},"\u00aa":{"d":"46,-155v21,-1,33,-15,30,-42v-23,2,-51,-2,-52,22v0,10,9,21,22,20xm19,-244v24,-17,72,-14,72,26v0,25,-2,53,2,75r-15,0v-1,-5,1,-12,-2,-15v-13,26,-68,21,-68,-14v0,-35,34,-37,68,-37v7,-36,-36,-36,-55,-20","w":104},"\u00ab":{"d":"122,-168r20,0r-39,73r39,76r-20,0r-41,-76xm72,-168r20,0r-39,73r39,76r-20,0r-41,-76"},"\u00ac":{"d":"181,-117r-164,0r0,-18r182,0r0,96r-18,0r0,-78","w":216},"\u00ad":{"d":"17,-111r73,0r0,21r-73,0r0,-21","w":106},"\u00ae":{"d":"144,3v-76,0,-128,-51,-128,-129v0,-77,51,-128,128,-128v77,0,128,51,128,128v0,78,-52,129,-128,129xm144,-237v-67,0,-110,44,-110,111v0,68,44,112,110,112v66,0,110,-44,110,-112v0,-67,-43,-111,-110,-111xm181,-158v0,-34,-39,-25,-70,-26r0,52v31,-1,70,6,70,-26xm198,-158v-1,25,-16,37,-37,41r43,65r-19,0r-43,-65r-31,0r0,65r-17,0r0,-147v48,1,107,-10,104,41","w":288},"\u00af":{"d":"-9,-245r85,0r0,17r-85,0r0,-17","w":66},"\u00b0":{"d":"72,-237v-19,0,-36,16,-36,35v0,19,16,36,36,36v20,0,36,-17,36,-36v0,-19,-17,-35,-36,-35xm72,-149v-30,-3,-52,-21,-52,-53v0,-31,21,-52,52,-52v31,0,52,21,52,52v0,32,-22,50,-52,53","w":144},"\u00b1":{"d":"17,-18r182,0r0,18r-182,0r0,-18xm99,-182r18,0r0,65r82,0r0,18r-82,0r0,66r-18,0r0,-66r-82,0r0,-18r82,0r0,-65","w":216},"\u00b2":{"d":"21,-244v34,-26,94,1,71,52v-14,31,-36,53,-56,75r61,0r0,15r-82,0v-1,-25,17,-30,28,-45v14,-19,33,-37,35,-66v3,-32,-39,-29,-55,-14","w":112},"\u00b3":{"d":"80,-145v0,-23,-22,-29,-48,-27r0,-16v25,2,51,-5,46,-32v-4,-22,-41,-24,-57,-10r-2,-17v30,-14,78,-5,78,31v0,20,-15,29,-29,35v51,16,32,81,-24,81v-14,0,-22,-2,-30,-6r1,-17v20,13,65,11,65,-22","w":112},"\u00b4":{"d":"69,-262r-34,51r-18,0r27,-51r25,0","w":66},"\u00b5":{"d":"80,-17v64,-4,35,-104,41,-167r21,0r2,184r-20,0v-1,-8,1,-20,-2,-27v-5,27,-59,40,-77,18r0,87r-21,0r0,-262r21,0r1,136v2,19,12,32,34,31","w":166},"\u00b6":{"d":"11,-183v-3,-71,71,-72,144,-68r0,295r-18,0r0,-279r-36,0r0,279r-18,0r0,-161v-40,-4,-71,-23,-72,-66"},"\u00b7":{"d":"43,-91v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20","w":86},"\u00b8":{"d":"50,45v1,-16,-22,-18,-34,-11r-5,-5v11,-10,11,-31,34,-29v-4,7,-14,14,-15,21v17,-6,39,2,39,22v0,31,-45,34,-69,23r4,-10v14,7,46,10,46,-11","w":66},"\u00b9":{"d":"22,-226v15,-10,18,-31,45,-28r0,152r-16,0r0,-134r-21,23","w":112},"\u00ba":{"d":"56,-141v-35,0,-47,-25,-47,-57v0,-32,13,-56,47,-56v34,1,47,23,47,56v0,34,-13,56,-47,57xm56,-240v-42,0,-41,86,0,85v26,-1,32,-23,30,-52v-1,-18,-11,-33,-30,-33","w":112},"\u00bb":{"d":"50,-19r-19,0r38,-73r-38,-76r19,0r42,76xm100,-19r-19,0r39,-73r-39,-76r19,0r42,76"},"\u00bc":{"d":"22,-226v15,-10,18,-31,45,-28r0,152r-16,0r0,-134r-21,23xm166,-263r19,0r-113,275r-19,0xm205,-50v-1,-26,2,-57,-1,-81r-49,81r50,0xm201,-151r20,0r0,101r17,0r0,15r-17,0r0,35r-16,0r0,-35r-65,0r0,-15","w":259},"\u00bd":{"d":"162,-143v25,-18,79,-10,75,30v-5,46,-37,69,-60,98r61,0r0,15r-82,0v0,-26,16,-29,28,-46v14,-19,32,-36,35,-65v4,-32,-41,-31,-55,-14xm22,-226v15,-10,18,-31,45,-28r0,152r-16,0r0,-134r-21,23xm170,-263r19,0r-112,275r-20,0","w":259},"\u00be":{"d":"80,-145v0,-23,-22,-29,-48,-27r0,-16v25,2,51,-5,46,-32v-4,-22,-41,-24,-57,-10r-2,-17v30,-14,78,-5,78,31v0,20,-15,29,-29,35v51,16,32,81,-24,81v-14,0,-22,-2,-30,-6r1,-17v20,13,65,11,65,-22xm179,-263r19,0r-113,275r-19,0xm212,-131r-49,81r49,0r0,-81xm208,-151r21,0r0,101r17,0r0,15r-17,0r0,35r-17,0r0,-35r-64,0r0,-15","w":259},"\u00bf":{"d":"101,-151r-27,0r0,-33r27,0r0,33xm49,-3v-10,47,46,67,77,40r2,25v-46,20,-106,1,-104,-52v2,-58,53,-71,52,-132r20,0v5,60,-37,72,-47,119","w":159},"\u00c0":{"d":"56,-90r87,0r-43,-138xm88,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm90,-313r27,51r-18,0r-35,-51r26,0","w":200,"k":{"\u00dd":23,"\u00dc":13,"\u00db":13,"\u00da":13,"\u00d9":13,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":23,"\u201d":40,"\u2019":27,"Y":23,"W":6,"V":16,"U":13,"T":16,"Q":6,"O":6,"G":6,"C":6}},"\u00c1":{"d":"56,-90r87,0r-43,-138xm88,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm136,-313r-34,51r-18,0r27,-51r25,0","w":200,"k":{"\u00dd":23,"\u00dc":13,"\u00db":13,"\u00da":13,"\u00d9":13,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":23,"\u201d":40,"\u2019":27,"Y":23,"W":6,"V":16,"U":13,"T":16,"Q":6,"O":6,"G":6,"C":6}},"\u00c2":{"d":"56,-90r87,0r-43,-138xm88,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm90,-313r21,0r35,51r-21,0r-25,-37r-24,37r-21,0","w":200,"k":{"\u00dd":23,"\u00dc":13,"\u00db":13,"\u00da":13,"\u00d9":13,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":23,"\u201d":40,"\u2019":27,"Y":23,"W":6,"V":16,"U":13,"T":16,"Q":6,"O":6,"G":6,"C":6}},"\u00c3":{"d":"56,-90r87,0r-43,-138xm88,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm121,-271v0,0,-44,-33,-54,2r-15,0v2,-18,9,-35,30,-35v16,0,24,15,39,15v7,0,13,-8,13,-17r15,0v-3,16,-9,35,-28,35","w":200,"k":{"\u00dd":23,"\u00dc":13,"\u00db":13,"\u00da":13,"\u00d9":13,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":23,"\u201d":40,"\u2019":27,"Y":23,"W":6,"V":16,"U":13,"T":16,"Q":6,"O":6,"G":6,"C":6}},"\u00c4":{"d":"56,-90r87,0r-43,-138xm88,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm117,-307r21,0r0,35r-21,0r0,-35xm63,-307r21,0r0,35r-21,0r0,-35","w":200,"k":{"\u00dd":23,"\u00dc":13,"\u00db":13,"\u00da":13,"\u00d9":13,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":23,"\u201d":40,"\u2019":27,"Y":23,"W":6,"V":16,"U":13,"T":16,"Q":6,"O":6,"G":6,"C":6}},"\u00c5":{"d":"100,-316v-13,0,-23,10,-23,22v0,12,11,23,23,23v12,0,23,-11,23,-23v0,-12,-10,-22,-23,-22xm100,-259v-19,0,-35,-16,-35,-35v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,35,-35,35xm56,-90r87,0r-43,-138xm88,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0","w":200,"k":{"\u00dd":23,"\u00dc":13,"\u00db":13,"\u00da":13,"\u00d9":13,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":23,"\u201d":40,"\u2019":27,"Y":23,"W":6,"V":16,"U":13,"T":16,"Q":6,"O":6,"G":6,"C":6}},"\u00c6":{"d":"133,-251r116,0r0,21r-80,0r0,89r76,0r0,21r-76,0r0,99r84,0r0,21r-106,0r0,-69r-82,0r-35,69r-25,0xm75,-90r72,0r-1,-143","w":273},"\u00c7":{"d":"131,45v1,-16,-22,-18,-35,-11v-9,-10,11,-22,15,-33v-62,-9,-87,-59,-90,-128v-4,-91,64,-148,150,-119r-1,26v-10,-8,-25,-13,-43,-13v-58,0,-80,45,-83,107v-3,78,58,130,125,96r1,25v-12,3,-29,9,-47,8v-3,6,-12,12,-12,18v17,-7,39,3,39,22v0,31,-46,35,-69,23r3,-10v14,7,46,10,47,-11","w":193,"k":{".":13,",":13}},"\u00c8":{"d":"29,-251r106,0r0,21r-84,0r0,89r80,0r0,21r-80,0r0,99r88,0r0,21r-110,0r0,-251xm77,-313r27,51r-18,0r-35,-51r26,0","w":159},"\u00c9":{"d":"29,-251r106,0r0,21r-84,0r0,89r80,0r0,21r-80,0r0,99r88,0r0,21r-110,0r0,-251xm123,-313r-34,51r-18,0r27,-51r25,0","w":159},"\u00ca":{"d":"29,-251r106,0r0,21r-84,0r0,89r80,0r0,21r-80,0r0,99r88,0r0,21r-110,0r0,-251xm77,-313r21,0r35,51r-21,0r-25,-37r-24,37r-21,0","w":159},"\u00cb":{"d":"29,-251r106,0r0,21r-84,0r0,89r80,0r0,21r-80,0r0,99r88,0r0,21r-110,0r0,-251xm104,-307r21,0r0,35r-21,0r0,-35xm50,-307r21,0r0,35r-21,0r0,-35","w":159},"\u00cc":{"d":"29,-251r22,0r0,251r-22,0r0,-251xm29,-313r27,51r-18,0r-35,-51r26,0","w":79},"\u00cd":{"d":"29,-251r22,0r0,251r-22,0r0,-251xm75,-313r-34,51r-18,0r27,-51r25,0","w":79},"\u00ce":{"d":"29,-251r22,0r0,251r-22,0r0,-251xm29,-313r21,0r35,51r-21,0r-25,-37r-24,37r-21,0","w":79},"\u00cf":{"d":"29,-251r22,0r0,251r-22,0r0,-251xm56,-307r21,0r0,35r-21,0r0,-35xm2,-307r21,0r0,35r-21,0r0,-35","w":79},"\u00d0":{"d":"161,-126v1,-71,-32,-110,-110,-104r0,92r64,0r0,15r-64,0r0,102v77,6,108,-36,110,-105xm184,-129v-1,92,-52,139,-155,129r0,-123r-25,0r0,-15r25,0r0,-113v101,-7,156,27,155,122","w":200},"\u00d1":{"d":"29,-251r29,0r106,223r0,-223r21,0r0,251r-29,0r-106,-222r0,222r-21,0r0,-251xm127,-271v0,0,-44,-33,-54,2r-15,0v2,-18,9,-35,30,-35v16,0,24,15,39,15v7,0,13,-8,13,-17r15,0v-3,16,-9,35,-28,35","w":213,"k":{".":13,",":13}},"\u00d2":{"d":"107,-233v-58,0,-68,60,-65,122v2,47,15,93,65,93v58,0,66,-64,64,-123v-2,-48,-15,-92,-64,-92xm107,3v-75,0,-92,-71,-88,-146v3,-59,23,-111,88,-111v75,0,92,67,88,145v-3,60,-24,112,-88,112xm96,-313r27,51r-18,0r-35,-51r26,0","w":213,"k":{"\u00dd":16,"\u0178":16,"Y":16,"V":6,"T":16,".":16,",":16}},"\u00d3":{"d":"107,-233v-58,0,-68,60,-65,122v2,47,15,93,65,93v58,0,66,-64,64,-123v-2,-48,-15,-92,-64,-92xm107,3v-75,0,-92,-71,-88,-146v3,-59,23,-111,88,-111v75,0,92,67,88,145v-3,60,-24,112,-88,112xm142,-313r-34,51r-18,0r27,-51r25,0","w":213,"k":{"\u00dd":16,"\u0178":16,"Y":16,"V":6,"T":16,".":16,",":16}},"\u00d4":{"d":"107,-233v-58,0,-68,60,-65,122v2,47,15,93,65,93v58,0,66,-64,64,-123v-2,-48,-15,-92,-64,-92xm107,3v-75,0,-92,-71,-88,-146v3,-59,23,-111,88,-111v75,0,92,67,88,145v-3,60,-24,112,-88,112xm96,-313r21,0r35,51r-21,0r-25,-37r-24,37r-21,0","w":213,"k":{"\u00dd":16,"\u0178":16,"Y":16,"V":6,"T":16,".":16,",":16}},"\u00d5":{"d":"107,-233v-58,0,-68,60,-65,122v2,47,15,93,65,93v58,0,66,-64,64,-123v-2,-48,-15,-92,-64,-92xm107,3v-75,0,-92,-71,-88,-146v3,-59,23,-111,88,-111v75,0,92,67,88,145v-3,60,-24,112,-88,112xm127,-271v0,0,-44,-33,-54,2r-15,0v2,-18,9,-35,30,-35v16,0,24,15,39,15v7,0,13,-8,13,-17r15,0v-3,16,-9,35,-28,35","w":213,"k":{"\u00dd":16,"\u0178":16,"Y":16,"V":6,"T":16,".":16,",":16}},"\u00d6":{"d":"107,-233v-58,0,-68,60,-65,122v2,47,15,93,65,93v58,0,66,-64,64,-123v-2,-48,-15,-92,-64,-92xm107,3v-75,0,-92,-71,-88,-146v3,-59,23,-111,88,-111v75,0,92,67,88,145v-3,60,-24,112,-88,112xm123,-307r21,0r0,35r-21,0r0,-35xm69,-307r21,0r0,35r-21,0r0,-35","w":213,"k":{"\u00dd":16,"\u0178":16,"Y":16,"V":6,"T":16,".":16,",":16}},"\u00d7":{"d":"176,-172r13,13r-68,68r68,68r-13,13r-68,-68r-68,68r-13,-13r68,-68r-68,-68r13,-13r68,68","w":216},"\u00d8":{"d":"107,3v-34,0,-53,-15,-67,-35r-27,35r-10,-9r30,-38v-28,-76,-23,-212,74,-210v31,1,53,14,66,33r28,-35r10,9r-31,39v30,73,23,213,-73,211xm107,-18v73,0,72,-108,56,-170r-107,137v10,18,24,33,51,33xm107,-233v-73,2,-72,104,-57,168r107,-136v-10,-17,-23,-32,-50,-32","w":213},"\u00d9":{"d":"103,3v-109,0,-65,-153,-74,-254r22,0r0,158v0,42,10,75,52,75v43,0,52,-34,53,-75r0,-158r22,0v-8,102,34,254,-75,254xm93,-313r27,51r-18,0r-35,-51r26,0","w":206,"k":{"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"A":13,".":13,",":13}},"\u00da":{"d":"103,3v-109,0,-65,-153,-74,-254r22,0r0,158v0,42,10,75,52,75v43,0,52,-34,53,-75r0,-158r22,0v-8,102,34,254,-75,254xm139,-313r-34,51r-18,0r27,-51r25,0","w":206,"k":{"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"A":13,".":13,",":13}},"\u00db":{"d":"103,3v-109,0,-65,-153,-74,-254r22,0r0,158v0,42,10,75,52,75v43,0,52,-34,53,-75r0,-158r22,0v-8,102,34,254,-75,254xm93,-313r21,0r35,51r-21,0r-25,-37r-24,37r-21,0","w":206,"k":{"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"A":13,".":13,",":13}},"\u00dc":{"d":"103,3v-109,0,-65,-153,-74,-254r22,0r0,158v0,42,10,75,52,75v43,0,52,-34,53,-75r0,-158r22,0v-8,102,34,254,-75,254xm120,-307r21,0r0,35r-21,0r0,-35xm66,-307r21,0r0,35r-21,0r0,-35","w":206,"k":{"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"A":13,".":13,",":13}},"\u00dd":{"d":"79,-109r-64,-142r24,0r51,121r51,-121r24,0r-64,142r0,109r-22,0r0,-109xm126,-313r-34,51r-18,0r27,-51r25,0","w":180,"k":{"\u0105":27,"\u00fc":20,"\u00f9":20,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00d6":16,"\u00d5":16,"\u00d4":16,"\u00d3":16,"\u00d2":16,"\u00c5":23,"\u00c4":23,"\u00c3":23,"\u00c2":23,"\u00c1":23,"\u00c0":23,"\u0160":16,"u":20,"o":27,"i":20,"e":27,"a":27,"S":16,"O":16,"A":23,";":16,":":16,".":46,"-":40,",":46}},"\u00de":{"d":"153,-126v-1,58,-41,75,-102,71r0,55r-22,0r0,-251r22,0r0,54v62,-4,103,12,102,71xm129,-126v0,-45,-30,-54,-78,-50r0,100v45,2,78,-5,78,-50","w":166},"\u00df":{"d":"85,-274v69,-4,75,119,12,128v35,7,56,30,55,72v0,50,-31,89,-88,74r3,-22v38,14,63,-16,63,-58v0,-37,-24,-51,-59,-53r0,-21v35,1,52,-28,47,-64v-2,-19,-12,-35,-35,-35v-36,0,-41,35,-41,67r0,186r-20,0r0,-193v0,-49,19,-79,63,-81","w":166},"\u00e0":{"d":"71,-17v38,0,50,-33,46,-76v-41,1,-82,0,-80,42v1,20,12,34,34,34xm116,-129v3,-48,-63,-43,-84,-19r-3,-22v38,-30,106,-18,107,45r2,125r-18,0v-2,-8,0,-20,-3,-26v-19,46,-102,33,-102,-25v0,-54,48,-60,102,-60v0,-6,-1,-11,-1,-18xm69,-262r27,51r-18,0r-35,-51r26,0","w":159},"\u00e1":{"d":"71,-17v38,0,50,-33,46,-76v-41,1,-82,0,-80,42v1,20,12,34,34,34xm116,-129v3,-48,-63,-43,-84,-19r-3,-22v38,-30,106,-18,107,45r2,125r-18,0v-2,-8,0,-20,-3,-26v-19,46,-102,33,-102,-25v0,-54,48,-60,102,-60v0,-6,-1,-11,-1,-18xm115,-262r-34,51r-18,0r27,-51r25,0","w":159},"\u00e2":{"d":"71,-17v38,0,50,-33,46,-76v-41,1,-82,0,-80,42v1,20,12,34,34,34xm116,-129v3,-48,-63,-43,-84,-19r-3,-22v38,-30,106,-18,107,45r2,125r-18,0v-2,-8,0,-20,-3,-26v-19,46,-102,33,-102,-25v0,-54,48,-60,102,-60v0,-6,-1,-11,-1,-18xm69,-262r21,0r35,51r-21,0r-25,-37r-24,37r-21,0","w":159},"\u00e3":{"d":"71,-17v38,0,50,-33,46,-76v-41,1,-82,0,-80,42v1,20,12,34,34,34xm116,-129v3,-48,-63,-43,-84,-19r-3,-22v38,-30,106,-18,107,45r2,125r-18,0v-2,-8,0,-20,-3,-26v-19,46,-102,33,-102,-25v0,-54,48,-60,102,-60v0,-6,-1,-11,-1,-18xm100,-220v0,0,-44,-33,-54,2r-15,0v2,-18,9,-35,30,-35v16,0,24,15,39,15v7,0,13,-8,13,-17r15,0v-3,16,-9,35,-28,35","w":159},"\u00e4":{"d":"71,-17v38,0,50,-33,46,-76v-41,1,-82,0,-80,42v1,20,12,34,34,34xm116,-129v3,-48,-63,-43,-84,-19r-3,-22v38,-30,106,-18,107,45r2,125r-18,0v-2,-8,0,-20,-3,-26v-19,46,-102,33,-102,-25v0,-54,48,-60,102,-60v0,-6,-1,-11,-1,-18xm96,-256r21,0r0,35r-21,0r0,-35xm42,-256r21,0r0,35r-21,0r0,-35","w":159},"\u00e5":{"d":"80,-262v-12,0,-23,11,-23,23v0,12,10,22,23,22v13,0,23,-10,23,-22v0,-12,-11,-23,-23,-23xm80,-204v-18,0,-35,-16,-35,-35v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-17,35,-35,35xm71,-17v38,0,50,-33,46,-76v-41,1,-82,0,-80,42v1,20,12,34,34,34xm116,-129v3,-48,-63,-43,-84,-19r-3,-22v38,-30,106,-18,107,45r2,125r-18,0v-2,-8,0,-20,-3,-26v-19,46,-102,33,-102,-25v0,-54,48,-60,102,-60v0,-6,-1,-11,-1,-18","w":159},"\u00e6":{"d":"211,-111v-2,-27,-8,-57,-39,-56v-29,1,-39,28,-41,56r80,0xm109,-93v-37,0,-73,5,-73,43v0,20,13,33,31,33v37,-2,43,-37,42,-76xm108,-130v3,-44,-55,-43,-74,-20r-2,-21v24,-23,87,-19,91,18v10,-19,22,-34,49,-33v49,2,60,44,61,93r-102,0v1,38,10,74,49,76v15,1,32,-9,40,-13v-1,11,6,27,-8,27v-41,14,-83,-1,-93,-36v-8,23,-25,41,-56,42v-34,0,-50,-25,-50,-53v0,-50,42,-63,96,-61v0,-7,-1,-12,-1,-19","w":246},"\u00e7":{"d":"15,-91v-4,-70,45,-111,110,-89r-1,24v-42,-25,-93,6,-87,59v-6,59,42,96,88,69r2,24v-11,4,-24,7,-39,7v-4,6,-10,11,-13,18v17,-7,41,3,40,22v-1,30,-45,35,-70,23r4,-10v14,7,45,10,46,-11v1,-17,-22,-18,-34,-11v-9,-11,12,-22,16,-33v-41,-9,-59,-42,-62,-92","w":133},"\u00e8":{"d":"116,-104v9,-53,-44,-86,-69,-40v-5,11,-10,26,-10,40r79,0xm15,-78v-7,-71,37,-133,96,-99v24,14,28,54,28,92r-102,0v-7,61,53,85,92,53r1,24v-11,5,-25,11,-43,11v-50,-1,-68,-35,-72,-81xm66,-262r27,51r-18,0r-35,-51r26,0","w":153,"k":{".":13,",":13}},"\u00e9":{"d":"116,-104v9,-53,-44,-86,-69,-40v-5,11,-10,26,-10,40r79,0xm15,-78v-7,-71,37,-133,96,-99v24,14,28,54,28,92r-102,0v-7,61,53,85,92,53r1,24v-11,5,-25,11,-43,11v-50,-1,-68,-35,-72,-81xm112,-262r-34,51r-18,0r27,-51r25,0","w":153,"k":{".":13,",":13}},"\u00ea":{"d":"116,-104v9,-53,-44,-86,-69,-40v-5,11,-10,26,-10,40r79,0xm15,-78v-7,-71,37,-133,96,-99v24,14,28,54,28,92r-102,0v-7,61,53,85,92,53r1,24v-11,5,-25,11,-43,11v-50,-1,-68,-35,-72,-81xm66,-262r21,0r35,51r-21,0r-25,-37r-24,37r-21,0","w":153,"k":{".":13,",":13}},"\u00eb":{"d":"116,-104v9,-53,-44,-86,-69,-40v-5,11,-10,26,-10,40r79,0xm15,-78v-7,-71,37,-133,96,-99v24,14,28,54,28,92r-102,0v-7,61,53,85,92,53r1,24v-11,5,-25,11,-43,11v-50,-1,-68,-35,-72,-81xm93,-256r21,0r0,35r-21,0r0,-35xm39,-256r21,0r0,35r-21,0r0,-35","w":153,"k":{".":13,",":13}},"\u00ec":{"d":"26,-184r21,0r0,184r-21,0r0,-184xm26,-262r27,51r-18,0r-35,-51r26,0","w":73},"\u00ed":{"d":"26,-184r21,0r0,184r-21,0r0,-184xm72,-262r-34,51r-18,0r27,-51r25,0","w":73},"\u00ee":{"d":"26,-184r21,0r0,184r-21,0r0,-184xm26,-262r21,0r35,51r-21,0r-25,-37r-24,37r-21,0","w":73},"\u00ef":{"d":"26,-184r21,0r0,184r-21,0r0,-184xm53,-256r21,0r0,35r-21,0r0,-35xm-1,-256r21,0r0,35r-21,0r0,-35","w":73},"\u00f0":{"d":"84,-181v21,-1,33,13,41,18v-9,-29,-25,-54,-47,-72r-36,23r-10,-9r34,-22v-12,-9,-25,-15,-39,-19r12,-12v16,6,30,13,42,21r33,-21r11,9r-32,21v35,30,59,72,59,135v0,65,-12,112,-68,112v-50,0,-69,-39,-69,-90v1,-52,16,-92,69,-94xm37,-97v-2,42,6,80,47,80v40,0,46,-39,46,-80v0,-33,-11,-65,-46,-65v-35,0,-46,32,-47,65","w":167},"\u00f1":{"d":"87,-167v-64,4,-36,103,-42,167r-21,0r-1,-184r19,0v2,8,0,20,3,27v8,-16,21,-29,46,-29v78,1,43,114,51,186r-21,0r0,-136v-2,-18,-12,-33,-34,-31xm104,-220v0,0,-44,-33,-54,2r-15,0v2,-18,9,-35,30,-35v16,0,24,15,39,15v7,0,13,-8,13,-17r15,0v-3,16,-9,35,-28,35","w":166},"\u00f2":{"d":"152,-92v0,53,-17,95,-68,95v-52,0,-69,-42,-69,-95v1,-52,16,-94,69,-94v52,0,68,42,68,94xm37,-102v-2,43,4,85,47,85v42,0,46,-42,46,-85v0,-33,-11,-65,-46,-65v-35,0,-46,32,-47,65xm73,-262r27,51r-18,0r-35,-51r26,0","w":167,"k":{"x":3,".":13,",":13}},"\u00f3":{"d":"152,-92v0,53,-17,95,-68,95v-52,0,-69,-42,-69,-95v1,-52,16,-94,69,-94v52,0,68,42,68,94xm37,-102v-2,43,4,85,47,85v42,0,46,-42,46,-85v0,-33,-11,-65,-46,-65v-35,0,-46,32,-47,65xm119,-262r-34,51r-18,0r27,-51r25,0","w":167,"k":{"x":3,".":13,",":13}},"\u00f4":{"d":"152,-92v0,53,-17,95,-68,95v-52,0,-69,-42,-69,-95v1,-52,16,-94,69,-94v52,0,68,42,68,94xm37,-102v-2,43,4,85,47,85v42,0,46,-42,46,-85v0,-33,-11,-65,-46,-65v-35,0,-46,32,-47,65xm73,-262r21,0r35,51r-21,0r-25,-37r-24,37r-21,0","w":167,"k":{"x":3,".":13,",":13}},"\u00f5":{"d":"152,-92v0,53,-17,95,-68,95v-52,0,-69,-42,-69,-95v1,-52,16,-94,69,-94v52,0,68,42,68,94xm37,-102v-2,43,4,85,47,85v42,0,46,-42,46,-85v0,-33,-11,-65,-46,-65v-35,0,-46,32,-47,65xm104,-220v0,0,-44,-33,-54,2r-15,0v2,-18,9,-35,30,-35v16,0,24,15,39,15v7,0,13,-8,13,-17r15,0v-3,16,-9,35,-28,35","w":167,"k":{"x":3,".":13,",":13}},"\u00f6":{"d":"152,-92v0,53,-17,95,-68,95v-52,0,-69,-42,-69,-95v1,-52,16,-94,69,-94v52,0,68,42,68,94xm37,-102v-2,43,4,85,47,85v42,0,46,-42,46,-85v0,-33,-11,-65,-46,-65v-35,0,-46,32,-47,65xm100,-256r21,0r0,35r-21,0r0,-35xm46,-256r21,0r0,35r-21,0r0,-35","w":167,"k":{"x":3,".":13,",":13}},"\u00f7":{"d":"108,3v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20xm108,-145v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20xm17,-100r182,0r0,18r-182,0r0,-18","w":216},"\u00f8":{"d":"84,-167v-51,2,-52,69,-42,116r76,-97v-6,-11,-18,-19,-34,-19xm84,3v-24,-1,-39,-10,-50,-24r-19,24r-9,-8r21,-27v-25,-54,-16,-154,57,-154v22,0,38,10,48,21r16,-21r10,8r-19,24v26,55,18,159,-55,157xm84,-17v52,-1,50,-74,40,-118r-76,96v6,12,17,23,36,22","w":166},"\u00f9":{"d":"80,-17v64,-4,35,-104,41,-167r21,0r2,184r-20,0v-1,-8,1,-20,-2,-27v-6,17,-23,30,-47,30v-78,0,-44,-115,-51,-187r21,0r1,136v2,19,12,32,34,31xm73,-262r27,51r-18,0r-35,-51r26,0","w":166},"\u00fc":{"d":"80,-17v64,-4,35,-104,41,-167r21,0r2,184r-20,0v-1,-8,1,-20,-2,-27v-6,17,-23,30,-47,30v-78,0,-44,-115,-51,-187r21,0r1,136v2,19,12,32,34,31xm100,-256r21,0r0,35r-21,0r0,-35xm46,-256r21,0r0,35r-21,0r0,-35","w":166},"\u00fd":{"d":"15,57v33,14,35,-29,43,-53r-54,-188r22,0r42,153r41,-153r21,0r-66,236v-5,21,-24,32,-50,26xm102,-262r-34,51r-18,0r27,-51r25,0","w":133,"k":{"\u0105":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"a":6,".":16,",":16}},"\u0105":{"d":"116,-129v3,-48,-63,-43,-84,-19r-3,-22v38,-30,114,-18,107,45v-4,40,6,89,0,125v-23,7,-46,53,-12,61v12,0,19,-7,22,5v-23,11,-62,7,-61,-23v1,-21,18,-35,37,-43r-2,0v-2,-8,0,-20,-3,-26v-19,46,-102,33,-102,-25v0,-54,48,-60,102,-60v0,-6,-1,-11,-1,-18xm71,-17v38,0,50,-33,46,-76v-41,1,-82,0,-80,42v1,20,12,34,34,34","w":159},"\u013e":{"d":"70,-262r22,0r-10,59r-16,0xm26,-270r21,0r0,270r-21,0r0,-270","w":81},"\u0142":{"d":"0,-85v-4,-30,16,-37,26,-54r0,-131r21,0r1,104r25,-32v4,31,-16,38,-26,55r0,143r-21,0r0,-117","w":73},"\u00a0":{"w":86,"k":{"\u00dd":20,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"\u0178":20,"\u201c":13,"\u2018":13,"Y":20,"W":20,"V":20,"T":20,"A":20}}}});


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com.
 * All rights reserved. This software is the property of Linotype GmbH, and may not
 * be reproduced, used, displayed, modified, disclosed or transferred without the
 * express written approval of Linotype GmbH.  Copyright © 1988, 1990, 1994 Adobe
 * Systems Incorporated. All Rights Reserved. Frutiger is a trademark of
 * Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and
 * may be registered in certain jurisdictions. This typeface is original artwork of
 * Adrian Frutiger. The design may be protected in certain jurisdictions.
 * 
 * Trademark:
 * Frutiger is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype GmbH, and may be registered in certain jurisdictions.
 * 
 * Description:
 * In 1968, Adrian Frutiger was commissioned to develop a sign and directional
 * system for the new Charles de Gaulle Airport in Paris. Though everyone thought
 * he would want to use his successful Univers font family. Frutiger decided
 * instead to make a new sans serif typeface that would be suitable for the
 * specific legibility requirements of airport signage: easy recognition from the
 * distances and angles of driving and walking. The resulting font was in accord
 * with the modern architecture of the airport. In 1976, he expanded and completed
 * the family for D. Stempel AG in conjunction with Linotype, and it was named
 * Frutiger. The Frutiger family is neither strictly geometric nor humanistic in
 * construction; its forms are designed so that each individual character is
 * quickly and easily recognized. Such distinctness makes it good for signage and
 * display work. Although it was originally intended for the large scale of an
 * airport, the full family has a warmth and subtlety that have, in recent years,
 * made it popular for the smaller scale of body text in magazines and booklets.
 * See also the new revised version Frutiger Next from the Linotype Platinum
 * Collection.
 * 
 * Manufacturer:
 * Linotype GmbH
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.linotype.com/license
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Frutiger LT Com 67 Bold Cn","font-weight":700,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 8 6 3 5 4 2 2 4","ascent":"270","descent":"-90","x-height":"3","bbox":"-14.0739 -338 360 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93,"k":{"\u00dd":20,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"\u0178":20,"\u201c":13,"\u2018":13,"Y":20,"W":20,"V":20,"T":20,"A":20}},"!":{"d":"44,-251r46,0r-6,177r-35,0xm45,-45r43,0r0,45r-43,0r0,-45","w":133},"\"":{"d":"105,-270r36,0r0,89r-36,0r0,-89xm46,-270r36,0r0,89r-36,0r0,-89","w":186},"#":{"d":"108,-74r-43,0r-10,74r-28,0r10,-74r-33,0r0,-28r37,0r7,-47r-34,0r0,-28r37,0r11,-74r28,0r-10,74r42,0r10,-74r29,0r-11,74r34,0r0,28r-38,0r-6,47r33,0r0,28r-37,0r-11,74r-28,0xm118,-149r-42,0r-7,47r43,0","w":187},"$":{"d":"100,-30v31,1,42,-56,16,-70r-16,-7r0,77xm124,-139v73,19,50,148,-24,142r0,31r-16,0r0,-30v-24,0,-44,-6,-60,-12r3,-41v14,9,34,20,57,20r0,-85v-32,-13,-66,-26,-66,-69v0,-44,27,-67,68,-71r0,-29r16,0r0,28v21,-1,42,6,54,11r-2,38v-15,-9,-29,-15,-52,-16r0,74xm86,-221v-30,0,-37,44,-14,58v4,3,8,6,14,9r0,-67","w":187},"%":{"d":"50,-184v0,31,7,46,21,46v14,0,20,-15,20,-46v0,-31,-6,-46,-20,-46v-14,0,-21,15,-21,46xm71,-112v-37,0,-52,-30,-52,-72v0,-42,15,-71,52,-71v37,0,52,29,52,71v0,42,-15,72,-52,72xm208,-68v0,31,7,46,21,46v14,0,20,-15,20,-46v0,-31,-6,-46,-20,-46v-14,0,-21,15,-21,46xm229,4v-37,0,-52,-30,-52,-72v0,-42,15,-71,52,-71v37,0,52,29,52,71v0,42,-15,72,-52,72xm193,-264r28,0r-113,276r-28,0","w":299},"&":{"d":"99,-157v26,-8,50,-68,4,-70v-33,-1,-32,46,-12,61v4,4,4,5,8,9xm61,-71v0,43,57,52,77,22r-51,-67v-14,9,-26,22,-26,45xm216,-140v1,39,-13,68,-30,90r40,50r-49,0r-18,-23v-35,48,-148,29,-142,-46v3,-38,22,-60,46,-73v-12,-15,-27,-28,-26,-56v2,-37,28,-54,68,-57v70,-5,81,82,32,110r-14,11r39,52v10,-14,13,-37,14,-58r40,0","w":233},"'":{"d":"29,-270r36,0r0,89r-36,0r0,-89","w":93},"(":{"d":"55,-101v0,61,23,118,45,161r-34,0v-24,-45,-50,-90,-50,-161v0,-70,26,-115,50,-161r34,0v-22,43,-45,100,-45,161","w":106},")":{"d":"52,-101v0,-62,-23,-118,-46,-161r35,0v46,70,71,203,18,287r-18,35r-35,0v23,-43,46,-99,46,-161","w":106},"*":{"d":"75,-182r-45,-11r11,-32r42,21r-6,-47r34,0r-6,47r42,-21r10,32r-45,11r32,37r-28,19r-22,-42r-22,42r-28,-19","w":186},"+":{"d":"92,-75r-75,0r0,-32r75,0r0,-75r32,0r0,75r75,0r0,32r-75,0r0,75r-32,0r0,-75","w":216},",":{"d":"68,-46r-27,89r-35,0r19,-89r43,0","w":93,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"15,-121r83,0r0,37r-83,0r0,-37","w":113},".":{"d":"25,-47r43,0r0,47r-43,0r0,-47","w":93,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"67,-255r30,0r-64,259r-30,0","w":100},"0":{"d":"94,-221v-37,5,-35,53,-35,95v0,42,-2,91,35,96v37,-5,34,-54,34,-96v0,-42,2,-90,-34,-95xm94,4v-66,0,-80,-64,-80,-130v0,-65,14,-129,80,-129v65,0,79,62,79,129v0,68,-13,130,-79,130","w":187},"1":{"d":"84,-198r-33,31r-21,-31r61,-53r38,0r0,251r-45,0r0,-198","w":187},"2":{"d":"28,-240v44,-27,142,-21,134,52v-8,71,-52,109,-89,151r92,0r0,37r-143,0r0,-37v32,-47,86,-76,94,-144v6,-49,-65,-41,-84,-18","w":187},"3":{"d":"165,-72v2,74,-86,88,-147,65r3,-39v28,19,96,21,96,-29v0,-34,-33,-41,-67,-37r0,-35v35,1,66,-4,66,-38v0,-43,-62,-36,-88,-21r-3,-38v49,-20,136,-15,136,52v0,37,-23,52,-49,60v31,7,53,22,53,60","w":187},"4":{"d":"107,-86r-1,-119r-62,119r63,0xm107,-52r-96,0r0,-42r87,-157r50,0r0,165r28,0r0,34r-28,0r0,52r-41,0r0,-52","w":187},"5":{"d":"121,-82v0,-48,-58,-55,-93,-39r0,-130r128,0r0,35r-87,0r0,58v53,-15,98,18,98,74v0,80,-80,104,-143,77r3,-38v33,22,94,14,94,-37","w":187},"6":{"d":"94,-125v-24,0,-32,22,-32,47v0,27,8,48,32,48v26,0,33,-20,33,-48v0,-25,-8,-47,-33,-47xm113,-255v19,0,36,4,47,9r-3,37v-10,-4,-24,-12,-41,-11v-45,1,-57,41,-58,85v9,-14,22,-26,46,-25v46,2,67,33,67,82v0,49,-24,82,-73,82v-65,0,-81,-53,-82,-118v0,-77,21,-139,97,-141","w":187},"7":{"d":"122,-215r-100,0r0,-36r143,0r0,40r-75,211r-50,0","w":187},"8":{"d":"94,-29v33,0,42,-39,28,-63v-7,-7,-28,-31,-40,-17v-31,14,-32,80,12,80xm93,4v-76,7,-107,-97,-44,-128r13,-6v-22,-12,-41,-25,-40,-58v1,-45,27,-67,72,-67v40,0,72,20,72,61v0,30,-20,49,-41,61v24,13,47,30,48,65v0,49,-33,68,-80,72xm94,-222v-30,0,-41,41,-20,59v21,29,50,2,50,-26v0,-20,-9,-33,-30,-33","w":187},"9":{"d":"93,-221v-25,0,-33,20,-33,47v0,26,8,48,33,48v24,0,32,-23,32,-48v0,-28,-8,-47,-32,-47xm74,4v-19,0,-36,-4,-47,-9r3,-37v27,16,82,13,88,-20v6,-14,14,-37,11,-54v-9,14,-22,26,-46,25v-46,-2,-67,-33,-67,-82v0,-50,24,-82,74,-82v64,0,81,52,81,117v0,78,-20,141,-97,142","w":187},":":{"d":"25,-47r43,0r0,47r-43,0r0,-47xm25,-185r43,0r0,46r-43,0r0,-46","w":93,"k":{" ":13}},";":{"d":"25,-46r43,0r-27,89r-35,0xm25,-185r43,0r0,46r-43,0r0,-46","w":93,"k":{" ":13}},"<":{"d":"199,-154r-142,63r142,62r0,32r-182,-80r0,-28r182,-80r0,31","w":216},"=":{"d":"17,-145r182,0r0,32r-182,0r0,-32xm17,-69r182,0r0,32r-182,0r0,-32","w":216},">":{"d":"17,-29r142,-62r-142,-63r0,-31r182,80r0,28r-182,80r0,-32","w":216},"?":{"d":"151,-194v-3,52,-49,69,-50,121r-39,0v-5,-53,39,-65,43,-109v3,-42,-56,-42,-78,-24r-3,-39v45,-19,130,-13,127,51xm60,-45r43,0r0,45r-43,0r0,-45","w":166},"@":{"d":"145,-167v-28,0,-43,25,-44,56v0,17,11,32,28,32v45,0,72,-88,16,-88xm152,-22v34,1,64,-13,81,-31r26,0v-21,33,-59,57,-108,57v-83,0,-136,-45,-136,-130v0,-82,53,-129,134,-129v71,0,124,36,124,106v0,58,-37,100,-88,100v-12,0,-22,-7,-22,-20v-10,9,-26,20,-46,20v-33,0,-46,-26,-48,-57v-7,-68,81,-123,120,-66r6,-19r27,0r-28,106v0,6,3,9,9,9v28,-6,44,-35,44,-67v0,-58,-41,-87,-98,-87v-65,0,-104,41,-104,105v0,67,40,102,107,103","w":288},"A":{"d":"143,-96r-32,-117r-35,117r67,0xm153,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0","w":219,"k":{"\u00fd":6,"\u00dd":29,"\u00dc":9,"\u00db":9,"\u00da":9,"\u00d9":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u0178":29,"\u201d":33,"\u2019":27,"y":6,"w":7,"v":13,"Y":29,"W":9,"V":18,"U":9,"T":20,"Q":9,"O":9,"G":9,"C":9}},"B":{"d":"131,-184v0,-31,-27,-36,-60,-33r0,71v35,4,60,-6,60,-38xm135,-74v0,-34,-27,-41,-64,-38r0,77v36,3,64,-5,64,-39xm181,-71v0,77,-77,73,-154,71r0,-251v70,0,149,-12,149,62v0,34,-19,49,-42,58v27,8,47,23,47,60","w":200,"k":{"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"U":4,"A":9,".":27,",":27}},"C":{"d":"66,-126v-6,75,64,113,118,78r2,43v-91,31,-169,-22,-169,-121v0,-98,80,-153,169,-118r-2,41v-12,-6,-27,-15,-48,-14v-50,2,-66,38,-70,91","w":200,"k":{".":6,",":6}},"D":{"d":"210,-126v0,105,-73,136,-186,126r0,-251r66,0v81,0,120,43,120,125xm161,-126v0,-60,-25,-95,-90,-90r0,181v64,4,91,-30,90,-91","w":226,"k":{"\u00dd":20,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"\u0178":20,"Y":20,"W":3,"V":6,"A":13,".":27,",":27}},"E":{"d":"27,-251r132,0r0,36r-86,0r0,67r81,0r0,37r-81,0r0,74r89,0r0,37r-135,0r0,-251"},"F":{"d":"27,-251r127,0r0,36r-81,0r0,69r77,0r0,37r-77,0r0,109r-46,0r0,-251","w":166,"k":{"\u0105":20,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"o":9,"e":6,"a":20,"A":27,".":33,",":33}},"G":{"d":"66,-126v-2,65,37,106,99,88r0,-67r-38,0r0,-36r81,0r0,132v-16,7,-39,14,-68,13v-80,-3,-120,-48,-123,-130v-4,-104,91,-151,184,-118r-2,41v-14,-9,-35,-15,-58,-15v-52,2,-73,38,-75,92","w":233,"k":{".":20,",":20}},"H":{"d":"27,-251r46,0r0,102r74,0r0,-102r46,0r0,251r-46,0r0,-111r-74,0r0,111r-46,0r0,-251","w":219},"I":{"d":"27,-251r46,0r0,251r-46,0r0,-251","w":100},"J":{"d":"7,-42v26,12,50,0,50,-32r0,-177r46,0r0,178v4,59,-44,91,-96,70r0,-39","w":126,"k":{"\u0105":9,"\u00fc":4,"\u00f9":4,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":9,"\u00e4":9,"\u00e3":9,"\u00e2":9,"\u00e1":9,"\u00e0":9,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"u":4,"o":6,"e":6,"a":9,"A":6,".":20,",":20}},"K":{"d":"27,-251r46,0r1,106r71,-106r53,0r-85,118r92,133r-56,0r-76,-118r0,118r-46,0r0,-251","w":206,"k":{"\u00fd":13,"\u00fc":9,"\u00f9":9,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00d6":27,"\u00d5":27,"\u00d4":27,"\u00d3":27,"\u00d2":27,"y":13,"u":9,"o":13,"e":13,"O":27}},"L":{"d":"24,-251r47,0r0,214r82,0r0,37r-129,0r0,-251","w":159,"k":{"\u00fd":16,"\u00dd":40,"\u0178":40,"\u201d":46,"\u2019":27,"y":16,"Y":40,"W":27,"V":36,"T":36}},"M":{"d":"225,-210r-63,210r-33,0r-61,-210r0,210r-42,0r0,-251r69,0r53,187r53,-187r66,0r0,251r-42,0r0,-210","w":293},"N":{"d":"26,-251r55,0r84,197r0,-197r42,0r0,251r-55,0r-84,-196r0,196r-42,0r0,-251","w":233,"k":{".":9,",":9}},"O":{"d":"117,-220v-45,0,-53,45,-53,94v0,49,8,94,53,94v44,0,52,-45,52,-94v0,-49,-8,-94,-52,-94xm117,4v-70,0,-100,-53,-100,-130v0,-76,30,-129,100,-129v69,0,100,54,100,129v0,75,-30,130,-100,130","w":233,"k":{"\u00dd":18,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"\u0178":18,"Y":18,"X":13,"W":6,"V":6,"T":16,"A":9,".":27,",":27}},"P":{"d":"129,-175v0,-34,-22,-44,-58,-41r0,82v36,3,58,-6,58,-41xm175,-175v0,59,-40,83,-104,77r0,98r-47,0r0,-251v79,-3,151,-4,151,76","w":186,"k":{"\u0105":20,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e5":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"o":13,"e":13,"a":20,"A":27,".":46,",":46}},"Q":{"d":"117,-220v-45,0,-53,45,-53,94v0,49,8,94,53,94v44,0,52,-45,52,-94v0,-49,-8,-94,-52,-94xm217,-126v0,58,-19,97,-54,118r50,56r-53,0r-35,-44v-77,-1,-108,-51,-108,-130v0,-76,30,-129,100,-129v69,0,98,54,100,129","w":233,"k":{".":13,",":13}},"R":{"d":"178,-185v0,35,-23,53,-49,60v16,2,23,14,28,29r33,96r-49,0v-20,-39,-8,-111,-70,-108r0,108r-47,0r0,-251v74,-1,154,-10,154,66xm130,-180v0,-36,-25,-37,-59,-36r0,74v34,2,59,-5,59,-38","w":200,"k":{"\u00dd":20,"\u00dc":3,"\u00db":3,"\u00da":3,"\u00d9":3,"\u0178":20,"Y":20,"V":9,"U":3,"T":9}},"S":{"d":"119,-140v72,32,46,144,-41,144v-26,0,-45,-5,-57,-12r2,-41v26,22,107,26,90,-32v-25,-41,-95,-38,-95,-105v0,-67,77,-80,131,-60r-2,39v-29,-22,-109,-8,-74,39v13,12,29,21,46,28","k":{".":20,",":20}},"T":{"d":"64,-215r-56,0r0,-36r158,0r0,36r-56,0r0,215r-46,0r0,-215","w":173,"k":{"\u0105":27,"\u00fd":27,"\u00fc":31,"\u00f9":31,"\u00f6":31,"\u00f5":31,"\u00f4":31,"\u00f3":31,"\u00f2":31,"\u00eb":31,"\u00ea":31,"\u00e9":31,"\u00e8":31,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00d6":16,"\u00d5":16,"\u00d4":16,"\u00d3":16,"\u00d2":16,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"y":27,"w":27,"u":31,"r":31,"o":31,"e":31,"a":27,"O":16,"A":27,";":23,":":23,".":36,"-":36,",":36}},"U":{"d":"110,4v-57,0,-86,-34,-86,-93r0,-162r47,0r0,162v0,37,7,56,39,56v32,0,39,-19,39,-56r0,-162r46,0r0,162v0,60,-28,93,-85,93","w":219,"k":{"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"A":9,".":20,",":20}},"V":{"d":"3,-251r50,0r51,193r52,-193r48,0r-77,251r-49,0","w":206,"k":{"\u0105":23,"\u00fc":20,"\u00f9":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e5":23,"\u00e4":23,"\u00e3":23,"\u00e2":23,"\u00e1":23,"\u00e0":23,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"u":20,"o":20,"i":6,"e":20,"a":23,"O":6,"G":6,"A":18,";":20,":":20,".":33,"-":27,",":33}},"W":{"d":"150,-206r-40,206r-54,0r-51,-251r43,0r36,193r38,-193r56,0r38,193r37,-193r42,0r-52,251r-55,0","w":299,"k":{"\u0105":16,"\u00fd":6,"\u00fc":13,"\u00f9":13,"\u00f6":16,"\u00f5":16,"\u00f4":16,"\u00f3":16,"\u00f2":16,"\u00eb":16,"\u00ea":16,"\u00e9":16,"\u00e8":16,"\u00e5":16,"\u00e4":16,"\u00e3":16,"\u00e2":16,"\u00e1":16,"\u00e0":16,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"y":6,"u":13,"o":16,"i":6,"h":6,"e":16,"a":16,"O":6,"A":9,";":20,":":20,".":27,"-":16,",":27}},"X":{"d":"105,-94r-52,94r-51,0r75,-133r-66,-118r53,0r40,81r46,-81r49,0r-67,118r72,133r-52,0","w":206},"Y":{"d":"77,-101r-74,-150r50,0r49,100r46,-100r49,0r-74,151r0,100r-46,0r0,-101","w":200,"k":{"\u0105":33,"\u00fc":27,"\u00f9":27,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e5":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u00d6":18,"\u00d5":18,"\u00d4":18,"\u00d3":18,"\u00d2":18,"\u00c5":29,"\u00c4":29,"\u00c3":29,"\u00c2":29,"\u00c1":29,"\u00c0":29,"\u0160":13,"u":27,"o":33,"i":6,"e":36,"a":33,"S":13,"O":18,"A":29,";":27,":":27,".":50,"-":46,",":50}},"Z":{"d":"13,-40r99,-175r-96,0r0,-36r150,0r0,38r-100,176r101,0r0,37r-154,0r0,-40"},"[":{"d":"27,-262r65,0r0,28r-31,0r0,266r31,0r0,28r-65,0r0,-322","w":106},"\\":{"d":"3,-255r32,0r62,259r-30,0","w":100},"]":{"d":"14,32r31,0r0,-266r-31,0r0,-28r66,0r0,322r-66,0r0,-28","w":106},"^":{"d":"93,-251r30,0r71,145r-31,0r-55,-113r-55,113r-31,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18"},"`":{"d":"38,-258r23,52r-28,0r-37,-52r42,0","w":79},"a":{"d":"117,-114v8,-55,-62,-47,-85,-25r-3,-36v15,-7,34,-13,59,-13v96,0,65,103,73,188r-40,0v-2,-8,-2,-15,-3,-25v-20,43,-111,35,-108,-26v3,-54,48,-65,107,-63xm81,-27v33,0,37,-29,36,-64v-34,0,-64,4,-65,35v0,17,11,29,29,29"},"b":{"d":"113,3v-27,0,-41,-15,-50,-32r-2,29r-42,0v6,-84,0,-182,2,-270r45,0r0,111v10,-16,21,-30,48,-29v46,1,65,43,64,95v-1,51,-15,94,-65,96xm100,-156v-29,0,-33,32,-34,63v-1,33,5,63,35,63v31,0,33,-28,33,-64v0,-31,-6,-62,-34,-62","w":193,"k":{".":13,",":13}},"c":{"d":"61,-92v-4,50,44,75,83,52r2,35v-66,25,-131,-12,-131,-88v0,-73,60,-112,129,-88r-3,36v-38,-23,-87,1,-80,53","w":153,"k":{".":6,",":6}},"d":{"d":"79,-188v27,-1,38,14,49,29r0,-111r44,0r2,270r-42,0v-1,-9,1,-22,-2,-29v-8,18,-23,32,-50,32v-50,0,-64,-45,-65,-96v-1,-52,18,-94,64,-95xm93,-156v-28,0,-33,30,-33,62v1,37,1,64,33,64v49,0,49,-126,0,-126","w":193},"e":{"d":"58,-81v-9,56,66,61,96,37r2,35v-64,30,-146,-1,-141,-81v4,-55,23,-98,76,-98v58,0,77,44,75,107r-108,0xm122,-109v7,-59,-54,-63,-62,-18v-1,6,-2,12,-2,18r64,0","k":{".":13,",":13}},"f":{"d":"118,-238v-18,-6,-39,0,-39,21r0,32r34,0r0,32r-34,0r0,153r-44,0r0,-153r-31,0r0,-32r31,0v-3,-51,2,-89,53,-89v11,0,24,2,32,4","w":119,"k":{"\u201d":9,".":27,",":27}},"g":{"d":"94,-154v-47,0,-44,121,-4,121v33,0,40,-25,40,-62v1,-32,-9,-58,-36,-59xm87,80v-25,0,-49,-6,-64,-12r3,-39v12,6,35,16,55,16v43,0,53,-35,48,-76v-9,17,-23,32,-49,31v-47,-2,-65,-40,-65,-92v0,-52,16,-94,67,-96v29,-1,37,17,50,31r2,-28r40,0v-9,109,36,265,-87,265","w":193,"k":{".":13,",":6}},"h":{"d":"96,-152v-53,7,-24,98,-31,152r-45,0r0,-270r45,0r1,108v10,-13,21,-26,46,-26v81,1,48,113,55,188r-45,0r0,-111v0,-25,-5,-40,-26,-41","w":186},"i":{"d":"24,-185r45,0r0,185r-45,0r0,-185xm24,-264r46,0r0,44r-46,0r0,-44","w":93},"j":{"d":"-5,44v22,7,29,-5,29,-29r0,-200r45,0r0,193v4,53,-19,82,-75,70xm24,-264r46,0r0,44r-46,0r0,-44","w":93},"k":{"d":"20,-270r45,0r1,159r54,-74r48,0r-65,83r71,102r-52,0r-57,-90r0,90r-45,0r0,-270","k":{"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"o":4,"e":4}},"l":{"d":"24,-270r45,0r0,270r-45,0r0,-270","w":93},"m":{"d":"64,-156v10,-38,83,-42,94,-3v11,-15,24,-29,50,-29v79,1,46,115,53,188r-45,0r0,-117v1,-21,-5,-35,-23,-35v-54,0,-24,99,-31,152r-44,0r0,-117v0,-21,-6,-34,-24,-35v-52,8,-23,99,-30,152r-45,0r-1,-185r44,0","w":280},"n":{"d":"96,-152v-53,7,-24,98,-31,152r-45,0r-1,-185r41,0v2,9,0,21,3,28v9,-17,22,-31,49,-31v81,0,48,113,55,188r-45,0r0,-111v0,-25,-5,-40,-26,-41","w":186},"o":{"d":"97,-157v-31,0,-36,33,-36,64v0,31,4,64,36,64v30,0,35,-32,35,-64v0,-32,-6,-64,-35,-64xm97,3v-56,0,-82,-35,-82,-96v0,-60,26,-95,82,-95v55,0,81,35,81,95v0,60,-25,96,-81,96","w":193,"k":{".":13,",":13}},"p":{"d":"114,3v-25,0,-39,-13,-48,-30r0,105r-45,0r-2,-263r42,0v2,9,0,21,3,28v8,-18,22,-32,49,-31v51,1,64,45,65,95v1,52,-18,96,-64,96xm101,-156v-29,0,-36,30,-35,64v1,31,5,62,34,62v28,0,34,-30,34,-61v0,-36,-1,-65,-33,-65","w":193,"k":{".":13,",":13}},"q":{"d":"80,-188v29,-1,39,16,51,31r1,-28r42,0r-2,263r-44,0r-1,-105v-7,18,-23,30,-48,30v-46,0,-65,-44,-64,-96v1,-50,14,-93,65,-95xm93,-156v-32,0,-32,28,-33,65v0,32,5,61,33,61v51,0,48,-126,0,-126","w":193},"r":{"d":"117,-145v-69,-16,-48,83,-51,145r-44,0r-2,-185r40,0v2,10,0,24,3,33v6,-20,27,-40,54,-35r0,42","w":126,"k":{"\u0105":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u0161":4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,".":36,"-":27,",":36}},"s":{"d":"125,-78v38,65,-59,100,-112,72r2,-37v17,12,88,25,72,-17v-21,-26,-74,-28,-74,-76v0,-51,67,-61,110,-45r-2,35v-19,-13,-85,-12,-59,22v21,16,45,28,63,46","w":146,"k":{".":13,",":13}},"t":{"d":"81,-57v-3,26,21,31,37,22r0,32v-37,15,-81,1,-81,-48r0,-102r-30,0r0,-32r30,0r0,-39r44,-13r0,52r37,0r0,32r-37,0r0,96","w":126},"u":{"d":"91,-34v54,0,23,-98,31,-151r45,0r1,185r-42,0v-1,-8,0,-25,-2,-28v-10,15,-23,31,-49,31v-80,-1,-49,-113,-55,-188r45,0r0,111v0,25,4,40,26,40","w":186},"v":{"d":"4,-185r46,0r38,143r38,-143r44,0r-57,185r-53,0","w":173,"k":{".":27,",":27}},"w":{"d":"167,0r-34,-144r-32,144r-49,0r-50,-185r46,0r30,144r32,-144r51,0r31,144r30,-144r43,0r-49,185r-49,0","w":266,"k":{".":25,",":25}},"x":{"d":"57,-100r-52,-85r51,0r29,59r31,-59r46,0r-52,85r56,100r-49,0r-35,-69r-34,69r-47,0","w":166},"y":{"d":"18,41v29,14,44,-11,45,-39r-61,-187r46,0r38,140r36,-140r43,0r-75,238v-10,23,-45,33,-74,22","w":166,"k":{".":25,",":25}},"z":{"d":"10,-39r79,-113r-76,0r0,-33r121,0r0,38r-78,113r80,0r0,34r-126,0r0,-39","w":146},"{":{"d":"47,-101v69,9,-14,142,66,136r0,25v-42,4,-68,-8,-69,-45v-1,-43,12,-102,-32,-103r0,-25v75,-5,-24,-171,101,-149r0,25v-75,-15,3,122,-66,136","w":119},"|":{"d":"24,-270r32,0r0,360r-32,0r0,-360","w":79},"}":{"d":"76,-52v-1,50,10,113,-41,112r-28,0r0,-25v73,15,-3,-122,66,-136v-42,-6,-31,-69,-32,-118v-1,-15,-14,-20,-34,-18r0,-25v41,-4,68,8,69,45v2,43,-11,102,32,104r0,25v-21,1,-31,15,-32,36","w":119},"~":{"d":"70,-118v36,0,89,47,108,-2r13,25v-10,15,-21,31,-45,31v-29,0,-48,-24,-77,-24v-16,0,-24,15,-31,26r-13,-25v8,-16,21,-31,45,-31","w":216},"\u20ac":{"d":"35,-161v8,-69,78,-117,153,-82r-9,37v-42,-24,-91,3,-95,45r86,0r-5,21r-85,0r0,28r80,0r-4,22r-72,0v7,40,52,67,95,45r2,42v-75,24,-138,-20,-146,-87r-31,0r5,-22r23,0v-1,-9,-1,-19,0,-28r-28,0r5,-21r26,0","w":187},"\u201a":{"d":"73,-46r-27,89r-34,0r18,-89r43,0","w":93},"\u0192":{"d":"10,41v22,14,43,-5,41,-31r22,-129r-33,0r4,-28r33,0v6,-58,23,-132,96,-101r-5,31v-38,-23,-43,35,-47,70r32,0r-4,28r-33,0v-12,59,-15,136,-40,179v-12,21,-47,25,-70,13","w":187},"\u201e":{"d":"156,-46r-27,89r-35,0r19,-89r43,0xm93,-46r-28,89r-34,0r18,-89r44,0","w":186},"\u2026":{"d":"39,-47r43,0r0,47r-43,0r0,-47xm158,-47r44,0r0,47r-44,0r0,-47xm278,-47r43,0r0,47r-43,0r0,-47","w":360},"\u2020":{"d":"74,-154r-50,0r0,-34r50,0r0,-63r39,0r0,63r50,0r0,34r-50,0r0,154r-39,0r0,-154","w":187},"\u2021":{"d":"75,-56r-51,0r0,-31r51,0r0,-77r-51,0r0,-31r51,0r0,-56r37,0r0,56r51,0r0,31r-51,0r0,77r51,0r0,31r-51,0r0,56r-37,0r0,-56","w":187},"\u02c6":{"d":"21,-258r39,0r33,52r-34,0r-19,-31r-19,31r-33,0","w":79},"\u2030":{"d":"278,-107v-25,-2,-17,55,-14,75v1,7,7,10,14,10v18,-2,16,-19,16,-42v0,-23,1,-42,-16,-43xm321,-64v0,38,-8,68,-43,68v-35,0,-44,-29,-44,-68v0,-39,9,-68,44,-68v35,0,43,30,43,68xm156,-64v0,24,-2,42,17,42v18,0,17,-19,17,-42v0,-24,1,-40,-17,-43v-18,2,-17,19,-17,43xm217,-64v0,39,-9,68,-44,68v-35,0,-43,-30,-43,-68v0,-38,8,-68,43,-68v35,0,44,29,44,68xm56,-230v-25,-2,-17,55,-14,75v1,7,7,10,14,10v26,-2,24,-84,0,-85xm99,-187v0,38,-8,67,-43,67v-36,0,-44,-29,-44,-67v0,-39,9,-68,44,-68v35,0,43,30,43,68xm153,-259r22,0r-99,267r-22,0","w":333},"\u0160":{"d":"38,-315r33,0r19,31r20,-31r32,0r-33,52r-39,0xm119,-140v72,32,46,144,-41,144v-26,0,-45,-5,-57,-12r2,-41v26,22,107,26,90,-32v-25,-41,-95,-38,-95,-105v0,-67,77,-80,131,-60r-2,39v-29,-22,-109,-8,-74,39v13,12,29,21,46,28","k":{".":20,",":20}},"\u2039":{"d":"14,-93r38,-75r36,0r-35,75r35,74r-36,0","w":106},"\u0152":{"d":"17,-125v0,-96,56,-141,160,-126r103,0r0,36r-82,0r0,67r77,0r0,37r-77,0r0,74r86,0r0,37r-164,2v-75,-1,-103,-51,-103,-127xm66,-126v0,61,25,107,86,89r0,-178v-63,-16,-86,27,-86,89","w":299},"\u017d":{"d":"38,-315r33,0r19,31r20,-31r32,0r-33,52r-39,0xm13,-40r99,-175r-96,0r0,-36r150,0r0,38r-100,176r101,0r0,37r-154,0r0,-40"},"\u2018":{"d":"43,-270r35,0r-19,89r-43,0","w":93,"k":{"\u00c5":40,"\u00c4":40,"\u00c3":40,"\u00c2":40,"\u00c1":40,"\u00c0":40,"\u2018":27,"A":40}},"\u2019":{"d":"78,-270r-28,89r-34,0r19,-89r43,0","w":93,"k":{"\u0161":20,"\u201d":13,"\u2019":27,"s":20,"d":27}},"\u201c":{"d":"58,-270r35,0r-19,89r-43,0xm122,-270r34,0r-18,89r-44,0","w":186,"k":{"\u00c5":40,"\u00c4":40,"\u00c3":40,"\u00c2":40,"\u00c1":40,"\u00c0":40,"\u2018":13,"A":40}},"\u201d":{"d":"156,-270r-27,89r-35,0r19,-89r43,0xm93,-270r-28,89r-34,0r18,-89r44,0","w":186,"k":{" ":13}},"\u2022":{"d":"90,-63v-38,0,-63,-25,-63,-63v0,-38,25,-63,63,-63v38,0,63,25,63,63v0,38,-25,63,-63,63"},"\u2013":{"d":"0,-118r180,0r0,32r-180,0r0,-32"},"\u2014":{"d":"0,-118r360,0r0,32r-360,0r0,-32","w":360},"\u02dc":{"d":"60,-212v-18,0,-49,-26,-53,2r-21,0v-2,-38,37,-52,67,-32v10,5,20,-1,19,-12r22,0v-1,22,-11,42,-34,42","w":79},"\u2122":{"d":"64,-225r-45,0r0,-26r119,0r0,26r-45,0r0,123r-29,0r0,-123xm310,-102r-1,-114r-42,114r-23,0r-42,-114r0,114r-28,0r0,-149r43,0r39,101r38,-101r44,0r0,149r-28,0","w":360},"\u0161":{"d":"22,-258r32,0r20,32r20,-32r31,0r-32,52r-39,0xm125,-78v38,65,-59,100,-112,72r2,-37v17,12,88,25,72,-17v-21,-26,-74,-28,-74,-76v0,-51,67,-61,110,-45r-2,35v-19,-13,-85,-12,-59,22v21,16,45,28,63,46","w":146,"k":{".":13,",":13}},"\u203a":{"d":"93,-93r-38,74r-36,0r35,-74r-35,-75r36,0","w":106},"\u0153":{"d":"174,-81v-10,57,67,61,96,37r2,35v-14,5,-34,12,-56,12v-32,0,-49,-15,-62,-33v-9,20,-29,33,-57,33v-56,0,-82,-35,-82,-96v0,-60,26,-93,82,-95v29,0,46,13,56,33v11,-22,29,-33,54,-33v57,2,76,44,74,107r-107,0xm238,-109v7,-59,-54,-63,-62,-18v-1,6,-2,12,-2,18r64,0xm97,-157v-31,0,-36,33,-36,64v0,31,4,64,36,64v30,0,35,-32,35,-64v0,-32,-6,-64,-35,-64","w":293},"\u017e":{"d":"22,-258r32,0r20,32r20,-32r31,0r-32,52r-39,0xm10,-39r79,-113r-76,0r0,-33r121,0r0,38r-78,113r80,0r0,34r-126,0r0,-39","w":146},"\u0178":{"d":"77,-101r-74,-150r50,0r49,100r46,-100r49,0r-74,151r0,100r-46,0r0,-101xm52,-314r35,0r0,40r-35,0r0,-40xm113,-314r34,0r0,40r-34,0r0,-40","w":200,"k":{"\u0105":33,"\u00fc":27,"\u00f9":27,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e5":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u00d6":18,"\u00d5":18,"\u00d4":18,"\u00d3":18,"\u00d2":18,"\u00c5":29,"\u00c4":29,"\u00c3":29,"\u00c2":29,"\u00c1":29,"\u00c0":29,"\u0160":13,"u":27,"o":33,"i":6,"e":36,"a":33,"S":13,"O":18,"A":29,";":27,":":27,".":50,"-":46,",":50}},"\u00a1":{"d":"90,66r-46,0r5,-177r35,0xm88,-140r-43,0r0,-45r43,0r0,45","w":133},"\u00a2":{"d":"113,-154v-48,3,-49,92,-17,114xm159,-5v-14,6,-33,7,-51,8r-7,43r-18,0r7,-46v-42,-9,-62,-44,-62,-93v0,-58,29,-95,90,-95r7,-41r18,0r-7,42r21,6r-3,36v-6,-3,-14,-8,-23,-9r-18,122v16,4,34,-2,44,-8","w":187},"\u00a3":{"d":"126,-221v-38,-1,-41,34,-39,73r56,0r0,28r-56,0r0,85r81,0r0,35r-149,0r0,-35r26,0r0,-85r-26,0r0,-28r26,0v-3,-64,14,-108,78,-107v16,0,32,3,45,7r-3,35v-13,-6,-22,-7,-39,-8","w":187},"\u00a4":{"d":"143,-58v-24,21,-75,21,-99,0r-19,19r-18,-18r19,-19v-21,-24,-22,-75,0,-99r-19,-19r18,-18r19,19v22,-22,77,-22,99,0r19,-19r18,18r-19,19v22,22,22,77,0,99r19,19r-18,18xm37,-126v0,34,22,58,57,58v34,0,56,-24,56,-58v0,-33,-21,-57,-56,-57v-36,0,-57,24,-57,57","w":187},"\u00a5":{"d":"72,-53r-55,0r0,-26r55,0r0,-28r-55,0r0,-26r43,0r-57,-118r46,0r45,100r44,-100r46,0r-56,118r42,0r0,26r-55,0r0,28r55,0r0,26r-55,0r0,53r-43,0r0,-53","w":187},"\u00a6":{"d":"24,-63r32,0r0,126r-32,0r0,-126xm24,-243r32,0r0,126r-32,0r0,-126","w":79},"\u00a7":{"d":"33,-204v0,-56,78,-60,117,-40r-3,34v-18,-11,-69,-24,-72,9v12,49,102,38,84,110v-5,16,-15,27,-25,37v44,29,17,100,-50,100v-24,0,-42,-6,-58,-13r4,-35v18,14,79,30,82,-9v-11,-47,-87,-40,-87,-99v1,-24,17,-37,32,-47v-12,-10,-24,-25,-24,-47xm111,-69v13,-13,18,-48,-3,-57v-18,-18,-46,-23,-44,12v1,27,29,34,47,45","w":186},"\u00a8":{"d":"-8,-257r35,0r0,40r-35,0r0,-40xm53,-257r34,0r0,40r-34,0r0,-40","w":79},"\u00a9":{"d":"102,-126v-10,53,74,76,81,23r27,0v-5,33,-26,56,-63,56v-48,0,-68,-31,-73,-79v-8,-84,123,-109,136,-24r-27,0v-17,-51,-86,-28,-81,24xm144,4v-78,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,78,-51,130,-129,130xm144,-228v-61,0,-99,42,-99,102v0,61,38,103,99,103v61,0,99,-42,99,-103v0,-60,-38,-102,-99,-102","w":288},"\u00aa":{"d":"83,-212v5,-31,-41,-23,-55,-13r-1,-22v32,-15,94,-12,86,37r2,67r-28,0v-1,-4,0,-11,-3,-14v-15,24,-74,21,-72,-16v2,-34,35,-39,71,-39xm60,-161v20,1,23,-14,23,-34v-19,0,-41,2,-41,19v0,10,7,15,18,15","w":126},"\u00ab":{"d":"86,-93r38,-75r36,0r-35,75r35,74r-36,0xm22,-93r38,-75r36,0r-35,75r35,74r-36,0","w":186},"\u00ac":{"d":"167,-113r-150,0r0,-32r182,0r0,108r-32,0r0,-76","w":216},"\u00ad":{"d":"15,-121r83,0r0,37r-83,0r0,-37","w":113},"\u00ae":{"d":"204,-156v-1,27,-14,39,-38,43r39,60r-31,0r-38,-59r-15,0r0,59r-28,0r0,-147v51,1,114,-11,111,44xm176,-157v0,-27,-32,-17,-55,-19r0,41v25,-1,55,5,55,-22xm144,4v-78,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,78,-51,130,-129,130xm144,-228v-61,0,-99,42,-99,102v0,61,38,103,99,103v61,0,99,-42,99,-103v0,-60,-38,-102,-99,-102","w":288},"\u00af":{"d":"-10,-246r100,0r0,27r-100,0r0,-27","w":79},"\u00b0":{"d":"72,-152v-30,0,-51,-19,-51,-51v0,-33,21,-52,51,-52v30,0,51,19,51,52v0,32,-21,51,-51,51xm72,-230v-14,0,-26,12,-26,27v0,14,12,26,26,26v14,0,26,-12,26,-26v0,-15,-12,-27,-26,-27","w":144},"\u00b1":{"d":"92,-98r-75,0r0,-31r75,0r0,-53r32,0r0,53r75,0r0,31r-75,0r0,53r-32,0r0,-53xm17,-32r182,0r0,32r-182,0r0,-32","w":216},"\u00b2":{"d":"18,-246v28,-15,95,-15,90,31v-4,41,-32,63,-54,87r54,0r0,26r-95,0v-2,-55,55,-56,61,-105v4,-30,-40,-25,-53,-13","w":121},"\u00b3":{"d":"109,-145v0,47,-61,52,-98,38r2,-24v19,8,62,14,62,-16v0,-20,-24,-25,-42,-20r0,-25v18,5,42,-1,42,-21v-1,-25,-40,-19,-57,-11r-2,-24v29,-13,90,-11,90,31v0,24,-15,30,-31,36v19,4,34,12,34,36","w":121},"\u00b4":{"d":"42,-258r42,0r-37,52r-28,0","w":79},"\u00b5":{"d":"124,-29v-7,20,-34,40,-59,28r0,79r-45,0r0,-263r45,0r0,111v0,25,4,40,26,40v54,0,23,-98,31,-151r45,0r1,185r-42,0v-1,-9,1,-21,-2,-29","w":186},"\u00b6":{"d":"15,-184v-1,-80,90,-67,169,-67r0,294r-34,0r0,-268r-38,0r0,268r-35,0r0,-163v-38,-2,-61,-25,-62,-64","w":216},"\u00b7":{"d":"47,-75v-16,0,-28,-11,-28,-27v0,-16,12,-28,28,-28v16,0,28,13,28,28v0,15,-13,27,-28,27","w":93},"\u00b8":{"d":"80,47v1,36,-51,38,-78,26r6,-15v12,7,43,10,44,-9v0,-14,-20,-17,-31,-11v-12,-8,3,-25,5,-38r16,0r-7,22v22,-6,45,3,45,25","w":79},"\u00b9":{"d":"55,-219r-22,19r-16,-20r41,-32r28,0r0,150r-31,0r0,-117","w":121},"\u00ba":{"d":"63,-234v-32,0,-32,72,0,72v20,0,23,-16,23,-36v0,-20,-3,-36,-23,-36xm63,-141v-34,0,-54,-20,-54,-57v0,-37,20,-57,54,-57v34,0,55,19,55,57v0,38,-20,57,-55,57","w":126},"\u00bb":{"d":"165,-93r-39,74r-36,0r36,-74r-36,-75r36,0xm101,-93r-38,74r-36,0r35,-74r-35,-75r36,0","w":186},"\u00bc":{"d":"221,-54v-1,-22,2,-49,-1,-69r-40,69r41,0xm221,-30r-65,0r0,-27r56,-94r39,0r0,97r18,0r0,24r-18,0r0,30r-30,0r0,-30xm176,-264r28,0r-113,276r-28,0xm48,-219r-21,19r-16,-20r40,-32r29,0r0,150r-32,0r0,-117","w":280},"\u00bd":{"d":"174,-264r28,0r-112,276r-28,0xm48,-219r-21,19r-16,-20r40,-32r29,0r0,150r-32,0r0,-117xm179,-144v28,-15,94,-15,90,31v-4,42,-33,61,-54,87r54,0r0,26r-95,0v-2,-55,55,-56,61,-105v4,-30,-40,-25,-53,-13","w":280},"\u00be":{"d":"221,-54v-1,-22,2,-49,-1,-69r-40,69r41,0xm221,-30r-65,0r0,-27r56,-94r39,0r0,97r18,0r0,24r-18,0r0,30r-30,0r0,-30xm184,-264r28,0r-112,276r-28,0xm109,-145v0,47,-61,52,-98,38r2,-24v19,8,62,14,62,-16v0,-20,-24,-25,-42,-20r0,-25v18,5,42,-1,42,-21v-1,-25,-40,-19,-57,-11r-2,-24v29,-13,90,-11,90,31v0,24,-15,30,-31,36v19,4,34,12,34,36","w":280},"\u00bf":{"d":"16,9v3,-53,48,-69,50,-121r38,0v6,53,-39,63,-42,108v-3,43,53,42,78,25r2,39v-45,18,-129,12,-126,-51xm107,-140r-44,0r0,-45r44,0r0,45","w":166},"\u00c0":{"d":"143,-96r-32,-117r-35,117r67,0xm153,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm108,-315r23,52r-28,0r-37,-52r42,0","w":219,"k":{"\u00fd":6,"\u00dd":29,"\u00dc":9,"\u00db":9,"\u00da":9,"\u00d9":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u0178":29,"\u201d":33,"\u2019":27,"y":6,"w":7,"v":13,"Y":29,"W":9,"V":18,"U":9,"T":20,"Q":9,"O":9,"G":9,"C":9}},"\u00c1":{"d":"143,-96r-32,-117r-35,117r67,0xm153,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm112,-315r42,0r-37,52r-28,0","w":219,"k":{"\u00fd":6,"\u00dd":29,"\u00dc":9,"\u00db":9,"\u00da":9,"\u00d9":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u0178":29,"\u201d":33,"\u2019":27,"y":6,"w":7,"v":13,"Y":29,"W":9,"V":18,"U":9,"T":20,"Q":9,"O":9,"G":9,"C":9}},"\u00c2":{"d":"143,-96r-32,-117r-35,117r67,0xm153,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm91,-315r39,0r33,52r-34,0r-19,-31r-19,31r-33,0","w":219,"k":{"\u00fd":6,"\u00dd":29,"\u00dc":9,"\u00db":9,"\u00da":9,"\u00d9":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u0178":29,"\u201d":33,"\u2019":27,"y":6,"w":7,"v":13,"Y":29,"W":9,"V":18,"U":9,"T":20,"Q":9,"O":9,"G":9,"C":9}},"\u00c3":{"d":"143,-96r-32,-117r-35,117r67,0xm153,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm130,-269v-18,0,-49,-26,-53,2r-21,0v-2,-38,37,-52,67,-32v10,5,20,-1,19,-12r22,0v-1,22,-11,42,-34,42","w":219,"k":{"\u00fd":6,"\u00dd":29,"\u00dc":9,"\u00db":9,"\u00da":9,"\u00d9":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u0178":29,"\u201d":33,"\u2019":27,"y":6,"w":7,"v":13,"Y":29,"W":9,"V":18,"U":9,"T":20,"Q":9,"O":9,"G":9,"C":9}},"\u00c4":{"d":"143,-96r-32,-117r-35,117r67,0xm153,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm62,-314r35,0r0,40r-35,0r0,-40xm123,-314r34,0r0,40r-34,0r0,-40","w":219,"k":{"\u00fd":6,"\u00dd":29,"\u00dc":9,"\u00db":9,"\u00da":9,"\u00d9":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u0178":29,"\u201d":33,"\u2019":27,"y":6,"w":7,"v":13,"Y":29,"W":9,"V":18,"U":9,"T":20,"Q":9,"O":9,"G":9,"C":9}},"\u00c5":{"d":"113,-261v-23,0,-38,-16,-38,-39v0,-23,15,-38,38,-38v23,0,36,16,39,38v-3,22,-15,39,-39,39xm113,-320v-11,0,-20,9,-20,20v0,11,9,21,20,21v12,0,21,-10,21,-21v0,-11,-10,-20,-21,-20xm143,-96r-32,-117r-35,117r67,0xm153,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0","w":219,"k":{"\u00fd":6,"\u00dd":29,"\u00dc":9,"\u00db":9,"\u00da":9,"\u00d9":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u0178":29,"\u201d":33,"\u2019":27,"y":6,"w":7,"v":13,"Y":29,"W":9,"V":18,"U":9,"T":20,"Q":9,"O":9,"G":9,"C":9}},"\u00c6":{"d":"153,-96r-1,-124r-57,124r58,0xm153,-60r-73,0r-28,60r-49,0r120,-251r154,0r0,36r-81,0r0,67r77,0r0,37r-77,0r0,74r84,0r0,37r-127,0r0,-60","w":299},"\u00c7":{"d":"66,-126v-6,75,64,113,118,78r2,43v-14,6,-42,11,-63,8r-6,19v22,-6,45,3,45,25v0,37,-50,38,-77,26r5,-15v12,6,43,10,44,-9v1,-23,-30,-6,-37,-17r11,-31v-60,-12,-88,-56,-91,-127v-4,-98,80,-153,169,-118r-2,41v-12,-6,-27,-15,-48,-14v-50,2,-66,38,-70,91","w":200,"k":{".":6,",":6}},"\u00c8":{"d":"27,-251r132,0r0,36r-86,0r0,67r81,0r0,37r-81,0r0,74r89,0r0,37r-135,0r0,-251xm92,-315r23,52r-28,0r-37,-52r42,0"},"\u00c9":{"d":"27,-251r132,0r0,36r-86,0r0,67r81,0r0,37r-81,0r0,74r89,0r0,37r-135,0r0,-251xm96,-315r42,0r-37,52r-28,0"},"\u00ca":{"d":"27,-251r132,0r0,36r-86,0r0,67r81,0r0,37r-81,0r0,74r89,0r0,37r-135,0r0,-251xm75,-315r39,0r33,52r-34,0r-19,-31r-19,31r-33,0"},"\u00cb":{"d":"27,-251r132,0r0,36r-86,0r0,67r81,0r0,37r-81,0r0,74r89,0r0,37r-135,0r0,-251xm46,-314r35,0r0,40r-35,0r0,-40xm107,-314r34,0r0,40r-34,0r0,-40"},"\u00cc":{"d":"27,-251r46,0r0,251r-46,0r0,-251xm48,-315r23,52r-28,0r-37,-52r42,0","w":100},"\u00cd":{"d":"27,-251r46,0r0,251r-46,0r0,-251xm52,-315r42,0r-37,52r-28,0","w":100},"\u00ce":{"d":"27,-251r46,0r0,251r-46,0r0,-251xm31,-315r39,0r33,52r-34,0r-19,-31r-19,31r-33,0","w":100},"\u00cf":{"d":"27,-251r46,0r0,251r-46,0r0,-251xm2,-314r35,0r0,40r-35,0r0,-40xm63,-314r34,0r0,40r-34,0r0,-40","w":100},"\u00d0":{"d":"210,-126v0,105,-73,136,-186,126r0,-114r-24,0r0,-31r24,0r0,-106r66,0v81,0,120,43,120,125xm161,-126v0,-60,-25,-95,-90,-90r0,71r46,0r0,31r-46,0r0,79v64,4,91,-30,90,-91","w":226},"\u00d1":{"d":"26,-251r55,0r84,197r0,-197r42,0r0,251r-55,0r-84,-196r0,196r-42,0r0,-251xm137,-269v-18,0,-49,-26,-53,2r-21,0v-2,-38,37,-52,67,-32v10,5,20,-1,19,-12r22,0v-1,22,-11,42,-34,42","w":233,"k":{".":9,",":9}},"\u00d2":{"d":"117,-220v-45,0,-53,45,-53,94v0,49,8,94,53,94v44,0,52,-45,52,-94v0,-49,-8,-94,-52,-94xm117,4v-70,0,-100,-53,-100,-130v0,-76,30,-129,100,-129v69,0,100,54,100,129v0,75,-30,130,-100,130xm115,-315r23,52r-28,0r-37,-52r42,0","w":233,"k":{"\u00dd":18,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"\u0178":18,"Y":18,"X":13,"W":6,"V":6,"T":16,"A":9,".":27,",":27}},"\u00d3":{"d":"117,-220v-45,0,-53,45,-53,94v0,49,8,94,53,94v44,0,52,-45,52,-94v0,-49,-8,-94,-52,-94xm117,4v-70,0,-100,-53,-100,-130v0,-76,30,-129,100,-129v69,0,100,54,100,129v0,75,-30,130,-100,130xm119,-315r42,0r-37,52r-28,0","w":233,"k":{"\u00dd":18,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"\u0178":18,"Y":18,"X":13,"W":6,"V":6,"T":16,"A":9,".":27,",":27}},"\u00d4":{"d":"117,-220v-45,0,-53,45,-53,94v0,49,8,94,53,94v44,0,52,-45,52,-94v0,-49,-8,-94,-52,-94xm117,4v-70,0,-100,-53,-100,-130v0,-76,30,-129,100,-129v69,0,100,54,100,129v0,75,-30,130,-100,130xm98,-315r39,0r33,52r-34,0r-19,-31r-19,31r-33,0","w":233,"k":{"\u00dd":18,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"\u0178":18,"Y":18,"X":13,"W":6,"V":6,"T":16,"A":9,".":27,",":27}},"\u00d5":{"d":"117,-220v-45,0,-53,45,-53,94v0,49,8,94,53,94v44,0,52,-45,52,-94v0,-49,-8,-94,-52,-94xm117,4v-70,0,-100,-53,-100,-130v0,-76,30,-129,100,-129v69,0,100,54,100,129v0,75,-30,130,-100,130xm137,-269v-18,0,-49,-26,-53,2r-21,0v-2,-38,37,-52,67,-32v10,5,20,-1,19,-12r22,0v-1,22,-11,42,-34,42","w":233,"k":{"\u00dd":18,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"\u0178":18,"Y":18,"X":13,"W":6,"V":6,"T":16,"A":9,".":27,",":27}},"\u00d6":{"d":"117,-220v-45,0,-53,45,-53,94v0,49,8,94,53,94v44,0,52,-45,52,-94v0,-49,-8,-94,-52,-94xm117,4v-70,0,-100,-53,-100,-130v0,-76,30,-129,100,-129v69,0,100,54,100,129v0,75,-30,130,-100,130xm69,-314r35,0r0,40r-35,0r0,-40xm130,-314r34,0r0,40r-34,0r0,-40","w":233,"k":{"\u00dd":18,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"\u0178":18,"Y":18,"X":13,"W":6,"V":6,"T":16,"A":9,".":27,",":27}},"\u00d7":{"d":"24,-152r23,-23r61,62r61,-62r23,23r-62,61r62,61r-23,22r-61,-61r-61,61r-23,-22r62,-61","w":216},"\u00d8":{"d":"117,-220v-58,0,-58,85,-48,140r88,-112v-8,-17,-20,-28,-40,-28xm117,4v-30,0,-53,-12,-68,-30r-26,32r-14,-11r28,-35v-12,-21,-21,-50,-20,-86v0,-76,30,-129,100,-129v29,0,52,12,67,29r26,-32r14,11r-28,36v42,75,21,215,-79,215xm117,-32v57,0,56,-84,48,-139r-89,111v8,17,20,28,41,28","w":233},"\u00d9":{"d":"110,4v-57,0,-86,-34,-86,-93r0,-162r47,0r0,162v0,37,7,56,39,56v32,0,39,-19,39,-56r0,-162r46,0r0,162v0,60,-28,93,-85,93xm108,-315r23,52r-28,0r-37,-52r42,0","w":219,"k":{"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"A":9,".":20,",":20}},"\u00da":{"d":"110,4v-57,0,-86,-34,-86,-93r0,-162r47,0r0,162v0,37,7,56,39,56v32,0,39,-19,39,-56r0,-162r46,0r0,162v0,60,-28,93,-85,93xm112,-315r42,0r-37,52r-28,0","w":219,"k":{"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"A":9,".":20,",":20}},"\u00db":{"d":"110,4v-57,0,-86,-34,-86,-93r0,-162r47,0r0,162v0,37,7,56,39,56v32,0,39,-19,39,-56r0,-162r46,0r0,162v0,60,-28,93,-85,93xm91,-315r39,0r33,52r-34,0r-19,-31r-19,31r-33,0","w":219,"k":{"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"A":9,".":20,",":20}},"\u00dc":{"d":"110,4v-57,0,-86,-34,-86,-93r0,-162r47,0r0,162v0,37,7,56,39,56v32,0,39,-19,39,-56r0,-162r46,0r0,162v0,60,-28,93,-85,93xm62,-314r35,0r0,40r-35,0r0,-40xm123,-314r34,0r0,40r-34,0r0,-40","w":219,"k":{"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"A":9,".":20,",":20}},"\u00dd":{"d":"77,-101r-74,-150r50,0r49,100r46,-100r49,0r-74,151r0,100r-46,0r0,-101xm102,-315r42,0r-37,52r-28,0","w":200,"k":{"\u0105":33,"\u00fc":27,"\u00f9":27,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e5":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u00d6":18,"\u00d5":18,"\u00d4":18,"\u00d3":18,"\u00d2":18,"\u00c5":29,"\u00c4":29,"\u00c3":29,"\u00c2":29,"\u00c1":29,"\u00c0":29,"\u0160":13,"u":27,"o":33,"i":6,"e":36,"a":33,"S":13,"O":18,"A":29,";":27,":":27,".":50,"-":46,",":50}},"\u00de":{"d":"129,-135v0,-34,-22,-44,-58,-41r0,82v36,3,58,-6,58,-41xm175,-135v0,59,-40,83,-104,77r0,58r-47,0r0,-251r47,0r0,40v64,-5,104,16,104,76","w":186},"\u00df":{"d":"94,-242v-21,0,-31,17,-31,40r0,202r-43,0r0,-194v1,-51,24,-81,76,-80v45,1,70,23,71,68v1,38,-19,52,-42,63v34,4,50,30,52,66v2,57,-40,91,-95,76r2,-33v28,11,47,-11,47,-41v0,-33,-16,-49,-45,-50r0,-33v27,0,38,-17,38,-45v0,-22,-9,-39,-30,-39","w":193},"\u00e0":{"d":"117,-114v8,-55,-62,-47,-85,-25r-3,-36v15,-7,34,-13,59,-13v96,0,65,103,73,188r-40,0v-2,-8,-2,-15,-3,-25v-20,43,-111,35,-108,-26v3,-54,48,-65,107,-63xm81,-27v33,0,37,-29,36,-64v-34,0,-64,4,-65,35v0,17,11,29,29,29xm88,-258r23,52r-28,0r-37,-52r42,0"},"\u00e1":{"d":"117,-114v8,-55,-62,-47,-85,-25r-3,-36v15,-7,34,-13,59,-13v96,0,65,103,73,188r-40,0v-2,-8,-2,-15,-3,-25v-20,43,-111,35,-108,-26v3,-54,48,-65,107,-63xm81,-27v33,0,37,-29,36,-64v-34,0,-64,4,-65,35v0,17,11,29,29,29xm92,-258r42,0r-37,52r-28,0"},"\u00e2":{"d":"117,-114v8,-55,-62,-47,-85,-25r-3,-36v15,-7,34,-13,59,-13v96,0,65,103,73,188r-40,0v-2,-8,-2,-15,-3,-25v-20,43,-111,35,-108,-26v3,-54,48,-65,107,-63xm81,-27v33,0,37,-29,36,-64v-34,0,-64,4,-65,35v0,17,11,29,29,29xm71,-258r39,0r33,52r-34,0r-19,-31r-19,31r-33,0"},"\u00e3":{"d":"117,-114v8,-55,-62,-47,-85,-25r-3,-36v15,-7,34,-13,59,-13v96,0,65,103,73,188r-40,0v-2,-8,-2,-15,-3,-25v-20,43,-111,35,-108,-26v3,-54,48,-65,107,-63xm81,-27v33,0,37,-29,36,-64v-34,0,-64,4,-65,35v0,17,11,29,29,29xm110,-212v-18,0,-49,-26,-53,2r-21,0v-2,-38,37,-52,67,-32v10,5,20,-1,19,-12r22,0v-1,22,-11,42,-34,42"},"\u00e4":{"d":"117,-114v8,-55,-62,-47,-85,-25r-3,-36v15,-7,34,-13,59,-13v96,0,65,103,73,188r-40,0v-2,-8,-2,-15,-3,-25v-20,43,-111,35,-108,-26v3,-54,48,-65,107,-63xm81,-27v33,0,37,-29,36,-64v-34,0,-64,4,-65,35v0,17,11,29,29,29xm42,-257r35,0r0,40r-35,0r0,-40xm103,-257r34,0r0,40r-34,0r0,-40"},"\u00e5":{"d":"97,-201v-23,0,-38,-15,-38,-38v0,-23,16,-36,38,-39v22,3,39,15,39,39v0,23,-16,38,-39,38xm97,-260v-11,0,-20,10,-20,21v0,11,9,20,20,20v11,0,21,-9,21,-20v0,-12,-10,-21,-21,-21xm117,-114v8,-55,-62,-47,-85,-25r-3,-36v15,-7,34,-13,59,-13v96,0,65,103,73,188r-40,0v-2,-8,-2,-15,-3,-25v-20,43,-111,35,-108,-26v3,-54,48,-65,107,-63xm81,-27v33,0,37,-29,36,-64v-34,0,-64,4,-65,35v0,17,11,29,29,29"},"\u00e6":{"d":"222,-109v7,-59,-54,-63,-62,-18v-1,6,-2,12,-2,18r64,0xm117,-114v8,-53,-58,-48,-81,-25r-3,-36v27,-15,95,-23,109,12v10,-16,24,-25,49,-25v58,1,75,45,74,107r-107,0v-9,56,66,61,95,37r2,35v-36,18,-112,17,-123,-24v-14,22,-28,36,-63,36v-33,0,-55,-20,-55,-54v0,-54,46,-65,103,-63xm84,-27v30,-1,33,-30,33,-64v-32,0,-61,4,-61,35v0,16,12,29,28,29","w":279},"\u00e7":{"d":"61,-92v-4,50,44,75,83,52r2,35v-12,5,-28,9,-46,8r-6,19v22,-6,45,3,45,25v1,36,-51,38,-78,26r6,-15v12,7,43,10,44,-9v0,-14,-20,-17,-31,-11v-12,-8,3,-25,5,-37v-46,-8,-68,-41,-70,-94v-3,-73,60,-112,129,-88r-3,36v-38,-23,-87,1,-80,53","w":153,"k":{".":6,",":6}},"\u00e8":{"d":"58,-81v-9,56,66,61,96,37r2,35v-64,30,-146,-1,-141,-81v4,-55,23,-98,76,-98v58,0,77,44,75,107r-108,0xm122,-109v7,-59,-54,-63,-62,-18v-1,6,-2,12,-2,18r64,0xm88,-258r23,52r-28,0r-37,-52r42,0","k":{".":13,",":13}},"\u00e9":{"d":"58,-81v-9,56,66,61,96,37r2,35v-64,30,-146,-1,-141,-81v4,-55,23,-98,76,-98v58,0,77,44,75,107r-108,0xm122,-109v7,-59,-54,-63,-62,-18v-1,6,-2,12,-2,18r64,0xm92,-258r42,0r-37,52r-28,0","k":{".":13,",":13}},"\u00ea":{"d":"58,-81v-9,56,66,61,96,37r2,35v-64,30,-146,-1,-141,-81v4,-55,23,-98,76,-98v58,0,77,44,75,107r-108,0xm122,-109v7,-59,-54,-63,-62,-18v-1,6,-2,12,-2,18r64,0xm71,-258r39,0r33,52r-34,0r-19,-31r-19,31r-33,0","k":{".":13,",":13}},"\u00eb":{"d":"58,-81v-9,56,66,61,96,37r2,35v-64,30,-146,-1,-141,-81v4,-55,23,-98,76,-98v58,0,77,44,75,107r-108,0xm122,-109v7,-59,-54,-63,-62,-18v-1,6,-2,12,-2,18r64,0xm42,-257r35,0r0,40r-35,0r0,-40xm103,-257r34,0r0,40r-34,0r0,-40","k":{".":13,",":13}},"\u00ec":{"d":"24,-185r45,0r0,185r-45,0r0,-185xm45,-258r23,52r-28,0r-37,-52r42,0","w":93},"\u00ed":{"d":"24,-185r45,0r0,185r-45,0r0,-185xm49,-258r42,0r-37,52r-28,0","w":93},"\u00ee":{"d":"24,-185r45,0r0,185r-45,0r0,-185xm28,-258r39,0r33,52r-34,0r-19,-31r-19,31r-33,0","w":93},"\u00ef":{"d":"24,-185r45,0r0,185r-45,0r0,-185xm-1,-257r35,0r0,40r-35,0r0,-40xm60,-257r34,0r0,40r-34,0r0,-40","w":93},"\u00f0":{"d":"97,-157v-31,0,-36,33,-36,64v0,31,4,64,36,64v30,0,35,-32,35,-64v0,-32,-6,-64,-35,-64xm93,-188v19,-1,28,11,35,16v-6,-23,-20,-44,-34,-58r-31,15r-12,-13r28,-15v-7,-5,-19,-12,-28,-14r29,-17v11,2,21,10,31,15r30,-15r12,13r-27,14v60,41,91,253,-29,250v-56,-2,-82,-35,-82,-96v0,-59,25,-92,78,-95","w":193},"\u00f1":{"d":"96,-152v-53,7,-24,98,-31,152r-45,0r-1,-185r41,0v2,9,0,21,3,28v9,-17,22,-31,49,-31v81,0,48,113,55,188r-45,0r0,-111v0,-25,-5,-40,-26,-41xm114,-212v-18,0,-49,-26,-54,2r-20,0v-3,-38,36,-51,66,-32v10,6,21,0,19,-12r23,0v-3,21,-10,42,-34,42","w":186},"\u00f2":{"d":"97,-157v-31,0,-36,33,-36,64v0,31,4,64,36,64v30,0,35,-32,35,-64v0,-32,-6,-64,-35,-64xm97,3v-56,0,-82,-35,-82,-96v0,-60,26,-95,82,-95v55,0,81,35,81,95v0,60,-25,96,-81,96xm95,-258r23,52r-28,0r-37,-52r42,0","w":193,"k":{".":13,",":13}},"\u00f3":{"d":"97,-157v-31,0,-36,33,-36,64v0,31,4,64,36,64v30,0,35,-32,35,-64v0,-32,-6,-64,-35,-64xm97,3v-56,0,-82,-35,-82,-96v0,-60,26,-95,82,-95v55,0,81,35,81,95v0,60,-25,96,-81,96xm99,-258r42,0r-37,52r-28,0","w":193,"k":{".":13,",":13}},"\u00f4":{"d":"97,-157v-31,0,-36,33,-36,64v0,31,4,64,36,64v30,0,35,-32,35,-64v0,-32,-6,-64,-35,-64xm97,3v-56,0,-82,-35,-82,-96v0,-60,26,-95,82,-95v55,0,81,35,81,95v0,60,-25,96,-81,96xm78,-258r39,0r33,52r-34,0r-19,-31r-19,31r-33,0","w":193,"k":{".":13,",":13}},"\u00f5":{"d":"97,-157v-31,0,-36,33,-36,64v0,31,4,64,36,64v30,0,35,-32,35,-64v0,-32,-6,-64,-35,-64xm97,3v-56,0,-82,-35,-82,-96v0,-60,26,-95,82,-95v55,0,81,35,81,95v0,60,-25,96,-81,96xm117,-212v-18,0,-49,-26,-53,2r-21,0v-2,-38,37,-52,67,-32v10,5,20,-1,19,-12r22,0v-1,22,-11,42,-34,42","w":193,"k":{".":13,",":13}},"\u00f6":{"d":"97,-157v-31,0,-36,33,-36,64v0,31,4,64,36,64v30,0,35,-32,35,-64v0,-32,-6,-64,-35,-64xm97,3v-56,0,-82,-35,-82,-96v0,-60,26,-95,82,-95v55,0,81,35,81,95v0,60,-25,96,-81,96xm49,-257r35,0r0,40r-35,0r0,-40xm110,-257r34,0r0,40r-34,0r0,-40","w":193,"k":{".":13,",":13}},"\u00f7":{"d":"17,-107r182,0r0,32r-182,0r0,-32xm108,-138v-16,0,-28,-12,-28,-28v0,-16,12,-27,28,-27v16,0,28,11,28,27v0,16,-12,28,-28,28xm108,11v-16,0,-28,-12,-28,-28v0,-16,12,-27,28,-27v16,0,28,11,28,27v0,16,-12,28,-28,28","w":216},"\u00f8":{"d":"97,-157v-39,0,-38,56,-33,93r59,-76v-5,-9,-12,-17,-26,-17xm178,-93v9,83,-76,120,-133,79r-17,21r-13,-10r18,-23v-12,-16,-15,-38,-18,-67v-8,-82,76,-118,133,-78r17,-22r13,10r-18,24v12,15,15,38,18,66xm97,-29v39,-1,37,-54,33,-92r-60,75v6,9,12,18,27,17","w":193},"\u00f9":{"d":"91,-34v54,0,23,-98,31,-151r45,0r1,185r-42,0v-1,-8,0,-25,-2,-28v-10,15,-23,31,-49,31v-80,-1,-49,-113,-55,-188r45,0r0,111v0,25,4,40,26,40xm92,-258r23,52r-28,0r-37,-52r42,0","w":186},"\u00fc":{"d":"91,-34v54,0,23,-98,31,-151r45,0r1,185r-42,0v-1,-8,0,-25,-2,-28v-10,15,-23,31,-49,31v-80,-1,-49,-113,-55,-188r45,0r0,111v0,25,4,40,26,40xm46,-257r35,0r0,40r-35,0r0,-40xm107,-257r34,0r0,40r-34,0r0,-40","w":186},"\u00fd":{"d":"18,41v29,14,44,-11,45,-39r-61,-187r46,0r38,140r36,-140r43,0r-75,238v-10,23,-45,33,-74,22xm86,-258r42,0r-37,52r-28,0","w":166,"k":{".":25,",":25}},"\u0105":{"d":"143,0v-24,16,-35,75,11,61r4,14v-25,9,-65,7,-64,-24v1,-26,19,-38,34,-51v-13,2,-7,-14,-10,-25v-20,43,-111,35,-108,-26v3,-54,48,-65,107,-63v8,-55,-61,-48,-85,-25r-3,-36v15,-7,34,-13,59,-13v96,0,65,103,73,188r-18,0xm81,-27v33,0,37,-29,36,-64v-34,0,-64,4,-65,35v0,17,11,29,29,29"},"\u013e":{"d":"94,-258r39,0r-17,72r-27,0xm24,-270r45,0r0,270r-45,0r0,-270","w":121},"\u0142":{"d":"28,-93r-28,30r0,-35r28,-30r0,-142r44,0r0,93r28,-30r0,35r-28,30r0,142r-44,0r0,-93","w":100},"\u00a0":{"w":93,"k":{"\u00dd":20,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"\u0178":20,"\u201c":13,"\u2018":13,"Y":20,"W":20,"V":20,"T":20,"A":20}}}});


/** 
 * slideshow subheader
 */
(function($) {
	$.fn.featureList = function(options) {
		var tabs	= $(this);
		var output	= $(options.output);

		new jQuery.featureList(tabs, output, options);

		return this;	
	};

	$.featureList = function(tabs, output, options) {
		function slide(nr) {
			if (typeof nr == "undefined") {
				nr = visible_item + 1;
				nr = nr >= total_items ? 0 : nr;
			}

			$("#output li span").hide();

			output.stop(true, true).filter(":visible").slideUp();
			output.filter(":eq(" + nr + ")").slideDown(function() {
				$("#output li span").show();
				visible_item = nr;	
			});
		}

		var options			= options || {}; 
		var total_items		= output.length;
		var visible_item	= options.start_item || 0;

		options.pause_on_hover		= options.pause_on_hover		|| false;
		options.transition_interval	= options.transition_interval	|| 5000;

		output.hide().eq( visible_item ).show();

		if (options.transition_interval > 0) {
			var timer = setInterval(function () {
				slide();
			}, options.transition_interval);

			if (options.pause_on_hover) {
				tabs.mouseenter(function() {
					clearInterval( timer );

				}).mouseleave(function() {
					clearInterval( timer );
					timer = setInterval(function () {
						slide();
					}, options.transition_interval);
				});
			}
		}
	};
})(jQuery);

/*
 * simplyScroll 1.0.4 - a scroll-tastic jQuery plugin
 *
 * http://logicbox.net/jquery/simplyscroll
 * http://logicbox.net/blog/simplyscroll-jquery-plugin
 * http://plugins.jquery.com/project/simplyScroll
 *
 * Copyright (c) 2009 Will Kelly - http://logicbox.net
 *
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * Last revised: 03/07/2009 21:13
 *
 */

(function($){$.fn.simplyScroll=function(o){return this.each(function(){new $.simplyScroll(this,o);});};var defaults={className:'simply-scroll',frameRate:24,speed:1,horizontal:true,autoMode:'off',pauseOnHover:true,startOnLoad:false,localJsonSource:'',flickrFeed:'',jsonImgWidth:240,jsonImgHeight:180};$.simplyScroll=function(el,o){var self=this;this.o=$.extend({},defaults,o||{});this.auto=this.o.autoMode!=="off"?true:false;this.$list=$(el);this.$list.addClass('simply-scroll-list').wrap('<div class="simply-scroll-clip"></div>').parent().wrap('<div class="'+this.o.className+' simply-scroll-container"></div>');if(!this.o.auto){this.$list.parent().parent().prepend('<div class="simply-scroll-forward"></div>').prepend('<div class="simply-scroll-back"></div>');}
if(this.o.flickrFeed){$.getJSON(this.o.flickrFeed+"&format=json&jsoncallback=?",function(data){json=[];$.each(data.items,function(i,item){json.push({"src":item.media.m,"title":item.title,"link":item.link});});self.renderData(json);});}else if(this.o.localJsonSource){$.getJSON(this.o.localJsonSource,function(json){self.renderData(json);});}else{if(!this.o.startOnLoad){this.init();}else{$(window).load(function(){self.init();});}}};$.simplyScroll.fn=$.simplyScroll.prototype={};$.simplyScroll.fn.extend=$.simplyScroll.extend=$.extend;$.simplyScroll.fn.extend({init:function(){this.$items=this.$list.children();this.$clip=this.$list.parent();this.$container=this.$clip.parent();if(!this.o.horizontal){this.itemMax=this.$items[0].offsetHeight;this.clipMax=this.$clip.height();this.dimension='height';this.moveBackClass='simply-scroll-btn-up';this.moveForwardClass='simply-scroll-btn-down';}else{this.itemMax=this.$items[0].offsetWidth;this.clipMax=this.$clip.width();this.dimension='width';this.moveBackClass='simply-scroll-btn-left';this.moveForwardClass='simply-scroll-btn-right';}
this.posMin=0;this.posMax=this.$items.length*this.itemMax;this.$list.css(this.dimension,this.posMax+'px');if(this.o.autoMode=='loop'){var addItems=Math.ceil(this.clipMax/this.itemMax);this.$items.slice(0,addItems).clone(true).appendTo(this.$list);this.posMax+=(this.clipMax-this.o.speed);this.$list.css(this.dimension,this.posMax+(this.itemMax*addItems)+'px');}
this.interval=null;this.intervalDelay=Math.floor(1000/this.o.frameRate);while(this.itemMax%this.o.speed!==0){this.o.speed--;if(this.o.speed===0){this.o.speed=1;break;}}
var self=this;this.trigger=null;this.funcMoveBack=function(){self.trigger=this;self.moveBack();};this.funcMoveForward=function(){self.trigger=this;self.moveForward();};this.funcMoveStop=function(){self.moveStop();};this.funcMoveResume=function(){self.moveResume();};if(this.auto){if(this.o.pauseOnHover){this.$clip.hover(this.funcMoveStop,this.funcMoveResume);}
this.moveForward();}else{this.$btnBack=$('.simply-scroll-back',this.$container).addClass('simply-scroll-btn'+' '+this.moveBackClass+' '+'disabled').hover(this.funcMoveBack,this.funcMoveStop);this.$btnForward=$('.simply-scroll-forward',this.$container).addClass('simply-scroll-btn'+' '+this.moveForwardClass).hover(this.funcMoveForward,this.funcMoveStop);}},moveForward:function(){var self=this;this.movement='forward';if(this.trigger!==null){this.$btnBack.removeClass('disabled');}
self.interval=setInterval(function(){if(!self.o.horizontal&&self.$clip[0].scrollTop<(self.posMax-self.clipMax)){self.$clip[0].scrollTop+=self.o.speed;}else if(self.o.horizontal&&self.$clip[0].scrollLeft<(self.posMax-self.clipMax)){self.$clip[0].scrollLeft+=self.o.speed;}else if(self.o.autoMode=='loop'){self.resetPos();}else{self.moveStop(self.movement);}},self.intervalDelay);},moveBack:function(){var self=this;this.movement='back';if(this.trigger!==null){this.$btnForward.removeClass('disabled');}
self.interval=setInterval(function(){if(!self.o.horizontal&&self.$clip[0].scrollTop>0){self.$clip[0].scrollTop-=self.o.speed;}else if(self.o.horizontal&&self.$clip[0].scrollLeft>0){self.$clip[0].scrollLeft-=self.o.speed;}else if(self.o.autoMode=='loop'){self.resetPos();}else{self.moveStop(self.movement);}},self.intervalDelay);},moveStop:function(moveDir){clearInterval(this.interval);if(this.trigger!==null){if(typeof moveDir!="undefined"){$(this.trigger).addClass('disabled');}
this.trigger=null;}
if(this.auto){if(this.o.autoMode=='bounce'){moveDir=='forward'?this.moveBack():this.moveForward();}}},moveResume:function(){this.movement=='forward'?this.moveForward():this.moveBack();},resetPos:function(){if(!this.o.horizontal){this.$clip[0].scrollTop=0;}else{this.$clip[0].scrollLeft=0;}},renderData:function(json){if(json.length>0){var self=this;$.each(json,function(i,item){$("<img/>").attr({src:item.src,title:item.title,alt:item.title,width:self.o.jsonImgWidth,height:self.o.jsonImgHeight}).appendTo(self.$list);});this.init();}}});})(jQuery);


/*
 * jQuery Nivo Slider v2.3
 * http://nivo.dev7studios.com
 *
 * Copyright 2010, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

(function(b){var a=function(j,q){var g=b.extend({},b.fn.nivoSlider.defaults,q);var m={currentSlide:0,currentImage:"",totalSlides:0,randAnim:"",running:false,paused:false,stop:false};var d=b(j);d.data("nivo:vars",m);d.css("position","relative");d.addClass("nivoSlider");var e=d.children();e.each(function(){var t=b(this);var s="";if(!t.is("img")){if(t.is("a")){t.addClass("nivo-imageLink");s=t}t=t.find("img:first")}var r=t.width();if(r==0){r=t.attr("width")}var i=t.height();if(i==0){i=t.attr("height")}if(r>d.width()){d.width(r)}if(i>d.height()){d.height(i)}if(s!=""){s.css("display","none")}t.css("display","none");m.totalSlides++});if(g.startSlide>0){if(g.startSlide>=m.totalSlides){g.startSlide=m.totalSlides-1}m.currentSlide=g.startSlide}if(b(e[m.currentSlide]).is("img")){m.currentImage=b(e[m.currentSlide])}else{m.currentImage=b(e[m.currentSlide]).find("img:first")}if(b(e[m.currentSlide]).is("a")){b(e[m.currentSlide]).css("display","block")}d.css("background","url("+m.currentImage.attr("src")+") no-repeat");for(var k=0;k<g.slices;k++){var o=Math.round(d.width()/g.slices);if(k==g.slices-1){d.append(b('<div class="nivo-slice"></div>').css({left:(o*k)+"px",width:(d.width()-(o*k))+"px"}))}else{d.append(b('<div class="nivo-slice"></div>').css({left:(o*k)+"px",width:o+"px"}))}}d.append(b('<div class="nivo-caption"><p></p></div>').css({display:"none",opacity:g.captionOpacity}));if(m.currentImage.attr("title")!=""){var n=m.currentImage.attr("title");if(n.substr(0,1)=="#"){n=b(n).html()}b(".nivo-caption p",d).html(n);b(".nivo-caption",d).fadeIn(g.animSpeed)}var c=0;if(!g.manualAdvance&&e.length>1){c=setInterval(function(){p(d,e,g,false)},g.pauseTime)}if(g.directionNav){d.append('<div class="nivo-directionNav"><a class="nivo-prevNav">Prev</a><a class="nivo-nextNav">Next</a></div>');if(g.directionNavHide){b(".nivo-directionNav",d).hide();d.hover(function(){b(".nivo-directionNav",d).show()},function(){b(".nivo-directionNav",d).hide()})}b("a.nivo-prevNav",d).live("click",function(){if(m.running){return false}clearInterval(c);c="";m.currentSlide-=2;p(d,e,g,"prev")});b("a.nivo-nextNav",d).live("click",function(){if(m.running){return false}clearInterval(c);c="";p(d,e,g,"next")})}if(g.controlNav){var l=b('<div class="nivo-controlNav"></div>');d.append(l);for(var k=0;k<e.length;k++){if(g.controlNavThumbs){var f=e.eq(k);if(!f.is("img")){f=f.find("img:first")}if(g.controlNavThumbsFromRel){l.append('<a class="nivo-control" rel="'+k+'"><img src="'+f.attr("rel")+'" alt="" /></a>')}else{l.append('<a class="nivo-control" rel="'+k+'"><img src="'+f.attr("src").replace(g.controlNavThumbsSearch,g.controlNavThumbsReplace)+'" alt="" /></a>')}}else{l.append('<a class="nivo-control" rel="'+k+'">'+(k+1)+"</a>")}}b(".nivo-controlNav a:eq("+m.currentSlide+")",d).addClass("active");b(".nivo-controlNav a",d).live("click",function(){if(m.running){return false}if(b(this).hasClass("active")){return false}clearInterval(c);c="";d.css("background","url("+m.currentImage.attr("src")+") no-repeat");m.currentSlide=b(this).attr("rel")-1;p(d,e,g,"control")})}if(g.keyboardNav){b(window).keypress(function(i){if(i.keyCode=="37"){if(m.running){return false}clearInterval(c);c="";m.currentSlide-=2;p(d,e,g,"prev")}if(i.keyCode=="39"){if(m.running){return false}clearInterval(c);c="";p(d,e,g,"next")}})}if(g.pauseOnHover){d.hover(function(){m.paused=true;clearInterval(c);c=""},function(){m.paused=false;if(c==""&&!g.manualAdvance){c=setInterval(function(){p(d,e,g,false)},g.pauseTime)}})}d.bind("nivo:animFinished",function(){m.running=false;b(e).each(function(){if(b(this).is("a")){b(this).css("display","none")}});if(b(e[m.currentSlide]).is("a")){b(e[m.currentSlide]).css("display","block")}if(c==""&&!m.paused&&!g.manualAdvance){c=setInterval(function(){p(d,e,g,false)},g.pauseTime)}g.afterChange.call(this)});var p=function(r,s,u,x){var y=r.data("nivo:vars");if(y&&(y.currentSlide==y.totalSlides-1)){u.lastSlide.call(this)}if((!y||y.stop)&&!x){return false}u.beforeChange.call(this);if(!x){r.css("background","url("+y.currentImage.attr("src")+") no-repeat")}else{if(x=="prev"){r.css("background","url("+y.currentImage.attr("src")+") no-repeat")}if(x=="next"){r.css("background","url("+y.currentImage.attr("src")+") no-repeat")}}y.currentSlide++;if(y.currentSlide==y.totalSlides){y.currentSlide=0;u.slideshowEnd.call(this)}if(y.currentSlide<0){y.currentSlide=(y.totalSlides-1)}if(b(s[y.currentSlide]).is("img")){y.currentImage=b(s[y.currentSlide])}else{y.currentImage=b(s[y.currentSlide]).find("img:first")}if(u.controlNav){b(".nivo-controlNav a",r).removeClass("active");b(".nivo-controlNav a:eq("+y.currentSlide+")",r).addClass("active")}if(y.currentImage.attr("title")!=""){var z=y.currentImage.attr("title");if(z.substr(0,1)=="#"){z=b(z).html()}if(b(".nivo-caption",r).css("display")=="block"){b(".nivo-caption p",r).fadeOut(u.animSpeed,function(){b(this).html(z);b(this).fadeIn(u.animSpeed)})}else{b(".nivo-caption p",r).html(z)}b(".nivo-caption",r).fadeIn(u.animSpeed)}else{b(".nivo-caption",r).fadeOut(u.animSpeed)}var w=0;b(".nivo-slice",r).each(function(){var i=Math.round(r.width()/u.slices);b(this).css({height:"0px",opacity:"0",background:"url("+y.currentImage.attr("src")+") no-repeat -"+((i+(w*i))-i)+"px 0%"});w++});if(u.effect=="random"){var A=new Array("sliceDownRight","sliceDownLeft","sliceUpRight","sliceUpLeft","sliceUpDown","sliceUpDownLeft","fold","fade");y.randAnim=A[Math.floor(Math.random()*(A.length+1))];if(y.randAnim==undefined){y.randAnim="fade"}}if(u.effect.indexOf(",")!=-1){var A=u.effect.split(",");y.randAnim=b.trim(A[Math.floor(Math.random()*A.length)])}y.running=true;if(u.effect=="sliceDown"||u.effect=="sliceDownRight"||y.randAnim=="sliceDownRight"||u.effect=="sliceDownLeft"||y.randAnim=="sliceDownLeft"){var t=0;var w=0;var C=b(".nivo-slice",r);if(u.effect=="sliceDownLeft"||y.randAnim=="sliceDownLeft"){C=b(".nivo-slice",r)._reverse()}C.each(function(){var i=b(this);i.css("top","0px");if(w==u.slices-1){setTimeout(function(){i.animate({height:"100%",opacity:"1.0"},u.animSpeed,"",function(){r.trigger("nivo:animFinished")})},(100+t))}else{setTimeout(function(){i.animate({height:"100%",opacity:"1.0"},u.animSpeed)},(100+t))}t+=50;w++})}else{if(u.effect=="sliceUp"||u.effect=="sliceUpRight"||y.randAnim=="sliceUpRight"||u.effect=="sliceUpLeft"||y.randAnim=="sliceUpLeft"){var t=0;var w=0;var C=b(".nivo-slice",r);if(u.effect=="sliceUpLeft"||y.randAnim=="sliceUpLeft"){C=b(".nivo-slice",r)._reverse()}C.each(function(){var i=b(this);i.css("bottom","0px");if(w==u.slices-1){setTimeout(function(){i.animate({height:"100%",opacity:"1.0"},u.animSpeed,"",function(){r.trigger("nivo:animFinished")})},(100+t))}else{setTimeout(function(){i.animate({height:"100%",opacity:"1.0"},u.animSpeed)},(100+t))}t+=50;w++})}else{if(u.effect=="sliceUpDown"||u.effect=="sliceUpDownRight"||y.randAnim=="sliceUpDown"||u.effect=="sliceUpDownLeft"||y.randAnim=="sliceUpDownLeft"){var t=0;var w=0;var B=0;var C=b(".nivo-slice",r);if(u.effect=="sliceUpDownLeft"||y.randAnim=="sliceUpDownLeft"){C=b(".nivo-slice",r)._reverse()}C.each(function(){var i=b(this);if(w==0){i.css("top","0px");w++}else{i.css("bottom","0px");w=0}if(B==u.slices-1){setTimeout(function(){i.animate({height:"100%",opacity:"1.0"},u.animSpeed,"",function(){r.trigger("nivo:animFinished")})},(100+t))}else{setTimeout(function(){i.animate({height:"100%",opacity:"1.0"},u.animSpeed)},(100+t))}t+=50;B++})}else{if(u.effect=="fold"||y.randAnim=="fold"){var t=0;var w=0;b(".nivo-slice",r).each(function(){var i=b(this);var v=i.width();i.css({top:"0px",height:"100%",width:"0px"});if(w==u.slices-1){setTimeout(function(){i.animate({width:v,opacity:"1.0"},u.animSpeed,"",function(){r.trigger("nivo:animFinished")})},(100+t))}else{setTimeout(function(){i.animate({width:v,opacity:"1.0"},u.animSpeed)},(100+t))}t+=50;w++})}else{if(u.effect=="fade"||y.randAnim=="fade"){var w=0;b(".nivo-slice",r).each(function(){b(this).css("height","100%");if(w==u.slices-1){b(this).animate({opacity:"1.0"},(u.animSpeed*2),"",function(){r.trigger("nivo:animFinished")})}else{b(this).animate({opacity:"1.0"},(u.animSpeed*2))}w++})}}}}}};var h=function(i){if(this.console&&typeof console.log!="undefined"){console.log(i)}};this.stop=function(){if(!b(j).data("nivo:vars").stop){b(j).data("nivo:vars").stop=true;h("Stop Slider")}};this.start=function(){if(b(j).data("nivo:vars").stop){b(j).data("nivo:vars").stop=false;h("Start Slider")}};g.afterLoad.call(this)};b.fn.nivoSlider=function(c){return this.each(function(){var d=b(this);if(d.data("nivoslider")){return}var e=new a(this,c);d.data("nivoslider",e)})};b.fn.nivoSlider.defaults={effect:"random",slices:15,animSpeed:500,pauseTime:3000,startSlide:0,directionNav:true,directionNavHide:true,controlNav:true,controlNavThumbs:false,controlNavThumbsFromRel:false,controlNavThumbsSearch:".jpg",controlNavThumbsReplace:"_thumb.jpg",keyboardNav:true,pauseOnHover:true,manualAdvance:false,captionOpacity:0.8,beforeChange:function(){},afterChange:function(){},slideshowEnd:function(){},lastSlide:function(){},afterLoad:function(){}};b.fn._reverse=[].reverse})(jQuery);


/**
 * Get the value of a cookie with the given key.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String key The key of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function (key, value, options) {

    // key and value given, set cookie...
    if (arguments.length > 1 && (value === null || typeof value !== "object")) {
        options = jQuery.extend({}, options);

        if (value === null) {
            options.expires = -1;
        }

        if (typeof options.expires === 'number') {
            var days = options.expires, t = options.expires = new Date();
            t.setDate(t.getDate() + days);
        }

        return (document.cookie = [
            encodeURIComponent(key), '=',
            options.raw ? String(value) : encodeURIComponent(String(value)),
            options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
            options.path ? '; path=' + options.path : '',
            options.domain ? '; domain=' + options.domain : '',
            options.secure ? '; secure' : ''
        ].join(''));
    }

    // key and possibly options given, get cookie...
    options = value || {};
    var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
    return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};

// cookie settings
var expirationDate = new Date();
expirationDate.setDate( expirationDate.getDate() + 365 );
var cookie_options = { path: '/', domain: 'www.kabaccountants.nl', expires: expirationDate };

/**
 * setLettergrootte
 *
 * @param sizeClass [kleiner, groter, normaal]
 */
function setLettergrootte( sizeClass )
{
    var ems = 0.75;

    $(".lettergrootte li").removeClass('actief');

    switch( sizeClass )
    {
        case "kleiner":
            ems = 0.6;
            $(".lettergrootte li a.kleiner").parent('li').addClass('actief');
            saveLettergrootte('kleiner');
			$("body").removeClass();
			$("body").addClass("klein");
            break;

        case "groter":
            ems = 1;
            $(".lettergrootte li a.groter").parent('li').addClass('actief');
            saveLettergrootte('groter');
			$("body").removeClass();
			$("body").addClass("groot");
            break;

        case "normaal":
        default:
            ems = 0.75;
            $(".lettergrootte li a.normaal").parent('li').addClass('actief');
            saveLettergrootte('normaal');
			$("body").removeClass();
			$("body").addClass("normaal");
            break;
    }

    $("body").css({'font-size': ems.toString()+'em'});
};

function saveLettergrootte( grootte )
{
    $.cookie('kab-lettergrootte', grootte, cookie_options);
}

/**
 * initialize and set if lettergrootte was already set
 */
function initLettergrootte()
{
    if ( $.cookie('kab-lettergrootte') != "" )
    {
        setLettergrootte( $.cookie('kab-lettergrootte') );
    }
};

function teaserRotator()
{
    // Teaser in div.subheader
    $.featureList(
        $("#navigatie li a"),
        $("#output li"), {
            start_item	:	0
        }
    );
}
