/**
 * jQuery.ScrollTo
 * Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.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.
 * Date: 2/19/2008
 *
 * @projectDescription Easy element scrolling using jQuery.
 * Tested with jQuery 1.2.1. On FF 2.0.0.11, IE 6, Opera 9.22 and Safari 3 beta. on Windows.
 *
 * @author Ariel Flesler
 * @version 1.3.3
 *
 * @id jQuery.scrollTo
 * @id jQuery.fn.scrollTo
 * @param {String, Number, DOMElement, jQuery, Object} target Where to scroll the matched elements.
 *	  The different options for target are:
 *		- A number position (will be applied to all axes).
 *		- A string position ('44', '100px', '+=90', etc ) will be applied to all axes
 *		- A jQuery/DOM element ( logically, child of the element to scroll )
 *		- A string selector, that will be relative to the element to scroll ( 'li:eq(2)', etc )
 *		- A hash { top:x, left:y }, x and y can be any kind of number/string like above.
 * @param {Number} duration The OVERALL length of the animation, this argument can be the settings object instead.
 * @param {Object} settings Hash of settings, optional.
 *	 @option {String} axis Which axis must be scrolled, use 'x', 'y', 'xy' or 'yx'.
 *	 @option {Number} duration The OVERALL length of the animation.
 *	 @option {String} easing The easing method for the animation.
 *	 @option {Boolean} margin If true, the margin of the target element will be deducted from the final position.
 *	 @option {Object, Number} offset Add/deduct from the end position. One number for both axes or { top:x, left:y }.
 *	 @option {Object, Number} over Add/deduct the height/width multiplied by 'over', can be { top:x, left:y } when using both axes.
 *	 @option {Boolean} queue If true, and both axis are given, the 2nd axis will only be animated after the first one ends.
 *	 @option {Function} onAfter Function to be called after the scrolling ends. 
 *	 @option {Function} onAfterFirst If queuing is activated, this function will be called after the first scrolling ends.
 * @return {jQuery} Returns the same jQuery object, for chaining.
 *
 * @example $('div').scrollTo( 340 );
 *
 * @example $('div').scrollTo( '+=340px', { axis:'y' } );
 *
 * @example $('div').scrollTo( 'p.paragraph:eq(2)', 500, { easing:'swing', queue:true, axis:'xy' } );
 *
 * @example var second_child = document.getElementById('container').firstChild.nextSibling;
 *			$('#container').scrollTo( second_child, { duration:500, axis:'x', onAfter:function(){
 *				alert('scrolled!!');																   
 *			}});
 *
 * @example $('div').scrollTo( { top: 300, left:'+=200' }, { offset:-20 } );
 *
 * Notes:
 *  - jQuery.scrollTo will make the whole window scroll, it accepts the same arguments as jQuery.fn.scrollTo.
 *	- If you are interested in animated anchor navigation, check http://jquery.com/plugins/project/LocalScroll.
 *	- The options margin, offset and over are ignored, if the target is not a jQuery object or a DOM element.
 *	- The option 'queue' won't be taken into account, if only 1 axis is given.
 */
;(function( $ ){

	var $scrollTo = $.scrollTo = function( target, duration, settings ){
		$scrollTo.window().scrollTo( target, duration, settings );
	};

	$scrollTo.defaults = {
		axis:'y',
		duration:1
	};

	//returns the element that needs to be animated to scroll the window
	$scrollTo.window = function(){
		return $( $.browser.safari ? 'body' : 'html' );
	};

	$.fn.scrollTo = function( target, duration, settings ){
		if( typeof duration == 'object' ){
			settings = duration;
			duration = 0;
		}
		settings = $.extend( {}, $scrollTo.defaults, settings );
		duration = duration || settings.speed || settings.duration;//speed is still recognized for backwards compatibility
		settings.queue = settings.queue && settings.axis.length > 1;//make sure the settings are given right
		if( settings.queue )
			duration /= 2;//let's keep the overall speed, the same.
		settings.offset = both( settings.offset );
		settings.over = both( settings.over );

		return this.each(function(){
			var elem = this, $elem = $(elem),
				t = target, toff, attr = {},
				win = $elem.is('html,body');
			switch( typeof t ){
				case 'number'://will pass the regex
				case 'string':
					if( /^([+-]=)?\d+(px)?$/.test(t) ){
						t = both( t );
						break;//we are done
					}
					t = $(t,this);// relative selector, no break!
				case 'object':
					if( t.is || t.style )//DOM/jQuery
						toff = (t = $(t)).offset();//get the real position of the target 
			}
			$.each( settings.axis.split(''), function( i, axis ){
				var Pos	= axis == 'x' ? 'Left' : 'Top',
					pos = Pos.toLowerCase(),
					key = 'scroll' + Pos,
					act = elem[key],
					Dim = axis == 'x' ? 'Width' : 'Height',
					dim = Dim.toLowerCase();

				if( toff ){//jQuery/DOM
					attr[key] = toff[pos] + ( win ? 0 : act - $elem.offset()[pos] );

					if( settings.margin ){//if it's a dom element, reduce the margin
						attr[key] -= parseInt(t.css('margin'+Pos)) || 0;
						attr[key] -= parseInt(t.css('border'+Pos+'Width')) || 0;
					}
					
					attr[key] += settings.offset[pos] || 0;//add/deduct the offset
					
					if( settings.over[pos] )//scroll to a fraction of its width/height
						attr[key] += t[dim]() * settings.over[pos];
				}else
					attr[key] = t[pos];//remove the unnecesary 'px'

				if( /^\d+$/.test(attr[key]) )//number or 'number'
					attr[key] = attr[key] <= 0 ? 0 : Math.min( attr[key], max(Dim) );//check the limits

				if( !i && settings.queue ){//queueing each axis is required					
					if( act != attr[key] )//don't waste time animating, if there's no need.
						animate( settings.onAfterFirst );//intermediate animation
					delete attr[key];//don't animate this axis again in the next iteration.
				}
			});			
			animate( settings.onAfter );			

			function animate( callback ){
				$elem.animate( attr, duration, settings.easing, callback && function(){
					callback.call(this, target);
				});
			};
			function max( Dim ){
				var el = win ? $.browser.opera ? document.body : document.documentElement : elem;
				return el['scroll'+Dim] - el['client'+Dim];
			};
		});
	};

	function both( val ){
		return typeof val == 'object' ? val : { top:val, left:val };
	};

})( jQuery );

/**
 * jQuery.LocalScroll
 * Copyright (c) 2007-2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 3/10/2008
 *
 * @projectDescription Animated scrolling navigation, using anchors.
 * http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html
 * @author Ariel Flesler
 * @version 1.2.5
 *
 * @id jQuery.fn.localScroll
 * @param {Object} settings Hash of settings, it is passed in to jQuery.ScrollTo, none is required.
 * @return {jQuery} Returns the same jQuery object, for chaining.
 *
 * @example $('ul.links').localScroll();
 *
 * @example $('ul.links').localScroll({ filter:'.animated', duration:400, axis:'x' });
 *
 * @example $.localScroll({ target:'#pane', axis:'xy', queue:true, event:'mouseover' });
 *
 * Notes:
 *	- The plugin requires jQuery.ScrollTo.
 *	- The hash of settings, is passed to jQuery.ScrollTo, so the settings are valid for that plugin as well.
 *	- jQuery.localScroll can be used if the desired links, are all over the document, it accepts the same settings.
 *  - If the setting 'lazy' is set to true, then the binding will still work for later added anchors.
 *  - The setting 'speed' is deprecated, use 'duration' instead.
 *	- If onBefore returns false, the event is ignored.
 **/
;(function( $ ){
	var URI = location.href.replace(/#.*/,'');//local url without hash

	var $localScroll = $.localScroll = function( settings ){
		$('body').localScroll( settings );
	};

	//Many of these defaults, belong to jQuery.ScrollTo, check it's demo for an example of each option.
	//@see http://www.freewebs.com/flesler/jQuery.ScrollTo/
	$localScroll.defaults = {//the defaults are public and can be overriden.
		duration:1000, //how long to animate.
		axis:'y',//which of top and left should be modified.
		event:'click',//on which event to react.
		stop:true//avoid queuing animations 
		/*
		lock:false,//ignore events if already animating
		lazy:false,//if true, links can be added later, and will still work.
		target:null, //what to scroll (selector or element). Keep it null if want to scroll the whole window.
		filter:null, //filter some anchors out of the matched elements.
		hash: false//if true, the hash of the selected link, will appear on the address bar.
		*/
	};

	//if the URL contains a hash, it will scroll to the pointed element
	$localScroll.hash = function( settings ){
		settings = $.extend( {}, $localScroll.defaults, settings );
		settings.hash = false;//can't be true
		if( location.hash )
			setTimeout(function(){ scroll( 0, location, settings ); }, 0 );//better wrapped with a setTimeout
	};

	$.fn.localScroll = function( settings ){
		settings = $.extend( {}, $localScroll.defaults, settings );

		return ( settings.persistent || settings.lazy ) 
				? this.bind( settings.event, function( e ){//use event delegation, more links can be added later.
					var a = $([e.target, e.target.parentNode]).filter(filter)[0];//if a valid link was clicked.
					a && scroll( e, a, settings );//do scroll.
				})
				: this.find('a')//bind concretely, to each matching link
						.filter( filter ).bind( settings.event, function(e){
							scroll( e, this, settings );
						}).end()
					.end();

		function filter(){//is this a link that points to an anchor and passes a possible filter ? href is checked to avoid a bug in FF.
			return !!this.href && !!this.hash && this.href.replace(this.hash,'') == URI && (!settings.filter || $(this).is( settings.filter ));
		};
	};

	function scroll( e, link, settings ){
		var id = link.hash.slice(1),
			elem = document.getElementById(id) || document.getElementsByName(id)[0];
		if ( elem ){
			e && e.preventDefault();
			var $target = $( settings.target || $.scrollTo.window() );//if none specified, then the window.

			if( settings.lock && $target.is(':animated') ||
			settings.onBefore && settings.onBefore.call(link, e, elem, $target) === false ) return;

			if( settings.stop )
				$target.queue('fx',[]).stop();//remove all its animations

			$target
				.scrollTo( elem, settings )//do scroll
				.trigger('notify.serialScroll',[elem]);//notify serialScroll about this change
			if( settings.hash )
				$target.queue(function(){
					location = link.hash;
				});
		}
	};

})( jQuery );

/**
 * jQuery.serialScroll
 * Copyright (c) 2007-2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 3/20/2008
 *
 * @projectDescription Animated scrolling of series.
 * @author Ariel Flesler
 * @version 1.2.1
 *
 * @id jQuery.serialScroll
 * @id jQuery.fn.serialScroll
 * @param {Object} settings Hash of settings, it is passed in to jQuery.ScrollTo, none is required.
 * @return {jQuery} Returns the same jQuery object, for chaining.
 *
 * http://flesler.blogspot.com/2008/02/jqueryserialscroll.html
 *
 * Notes:
 *	- The plugin requires jQuery.ScrollTo.
 *	- The hash of settings, is passed to jQuery.ScrollTo, so its settings can be used as well.
 */
;(function( $ ){

	var $serialScroll = $.serialScroll = function( settings ){
		$.scrollTo.window().serialScroll( settings );
	};

	//Many of these defaults, belong to jQuery.ScrollTo, check it's demo for an example of each option.
	//@see http://flesler.webs/jQuery.ScrollTo/
	$serialScroll.defaults = {//the defaults are public and can be overriden.
		duration:1000, //how long to animate.
		axis:'x', //which of top and left should be scrolled
		event:'click', //on which event to react.
		start:0, //first element (zero-based index)
		step:1, //how many elements to scroll on each action
		lock:true,//ignore events if already animating
		cycle:true, //cycle endlessly ( constant velocity )
		constant:true //use contant speed ?
		/*
		navigation:null,//if specified, it's a selector a collection of items to navigate the container
		target:null, //if specified, it's a selector to the element to be scrolled.
		interval:0, //it's the number of milliseconds to automatically go to the next
		lazy:false,//go find the elements each time (allows AJAX or JS content, or reordering)
		stop:false, //stop any previous animations to avoid queueing
		force:false,//force the scroll to the first element on start ?
		jump: false,//if true, when the event is triggered on an element, the pane scrolls to it
		items:null, //selector to the items (relative to the matched elements)
		prev:null, //selector to the 'prev' button
		next:null, //selector to the 'next' button
		onBefore: function(){}, //function called before scrolling, if it returns false, the event is ignored
		exclude:0 //exclude the last x elements, so we cannot scroll past the end
		*/
	};

	$.fn.serialScroll = function( settings ){
		settings = $.extend( {}, $serialScroll.defaults, settings );
		var event = settings.event, //this one is just to get shorter code when compressed
			step = settings.step, // idem
			lazy = settings.lazy;//idem

		return this.each(function(){
			var 
				context = settings.target ? this : document, //if a target is specified, then everything's relative to 'this'.
				$pane = $(settings.target || this, context),//the element to be scrolled (will carry all the events)
				pane = $pane[0], //will be reused, save it into a variable
				items = settings.items, //will hold a lazy list of elements
				active = settings.start, //active index
				auto = settings.interval, //boolean, do auto or not
				nav = settings.navigation, //save it now to make the code shorter
				timer; //holds the interval id

			if( !lazy )//if not lazy, go get the items now
				items = getItems();

			if( settings.force )
				jump( {}, active );//generate an initial call

			// Button binding, optionall
			$(settings.prev||[], context).bind( event, -step, move );
			$(settings.next||[], context).bind( event, step, move );

			// Custom events bound to the container
			if( !pane.ssbound )//don't bind more than once
				$pane
					.bind('prev.serialScroll', -step, move ) //you can trigger with just 'prev'
					.bind('next.serialScroll', step, move ) //for example: $(container).trigger('next');
					.bind('goto.serialScroll', jump ); //for example: $(container).trigger('goto', [4] );
			if( auto )
				$pane
					.bind('start.serialScroll', function(e){
						if( !auto ){
							clear();
							auto = true;
							next();
						}
					 })
					.bind('stop.serialScroll', function(){//stop a current animation
						clear();
						auto = false;
					});
			$pane.bind('notify.serialScroll', function(e, elem){//let serialScroll know that the index changed externally
				var i = index(elem);
				if( i > -1 )
					active = i;
			});
			pane.ssbound = true;//avoid many bindings

			if( settings.jump )//can't use jump if using lazy items and a non-bubbling event
				(lazy ? $pane : getItems()).bind( event, function( e ){
					jump( e, index(e.target) );
				});

			if( nav )
				nav = $(nav, context).bind(event, function( e ){
					e.data = Math.round(getItems().length / nav.length) * nav.index(this);
					jump( e, this );
				});

			function move( e ){
				e.data += active;
				jump( e, this );
			};
			function jump( e, button ){
				if( !isNaN(button) ){//initial or special call from the outside $(container).trigger('goto',[index]);
					e.data = button;
					button = pane;
				}

				var
					pos = e.data, n,
					real = e.type, //is a real event triggering ?
					$items = settings.exclude ? getItems().slice(0,-settings.exclude) : getItems(),//handle a possible exclude
					limit = $items.length,
					elem = $items[pos],
					duration = settings.duration;

				if( real )//real event object
					e.preventDefault();

				if( auto ){
					clear();//clear any possible automatic scrolling.
					timer = setTimeout( next, settings.interval ); 
				}

				if( !elem ){ //exceeded the limits
					n = pos < 0 ? 0 : limit - 1;
					if( active != n )//we exceeded for the first time
						pos = n;
					else if( !settings.cycle )//this is a bad case
						return;
					else
						pos = limit - n - 1;//invert, go to the other side
					elem = $items[pos];
				}

				if( !elem || real && active == pos || //could happen, save some CPU cycles in vain
					settings.lock && $pane.is(':animated') || //no animations while busy
					real && settings.onBefore && //callback returns false ?
					settings.onBefore.call(button, e, elem, $pane, getItems(), pos) === false ) return;

				if( settings.stop )
					$pane.queue('fx',[]).stop();//remove all its animations

				if( settings.constant )
					duration = Math.abs(duration/step * (active - pos ));//keep constant velocity

				$pane
					.scrollTo( elem, duration, settings )//do scroll
					.trigger('notify.serialScroll',[pos]);//in case serialScroll was called on this elem more than once.
			};
			function next(){//I'll use the namespace to avoid conflicts
				$pane.trigger('next.serialScroll');
			};
			function clear(){
				clearTimeout(timer);
			};
			function getItems(){
				return $( items, pane );
			};
			function index( elem ){
				if( !isNaN(elem) ) return elem;//number
				var $items = getItems(), i;
				while(( i = $items.index(elem)) == -1 && elem != pane )//see if it matches or one of its ancestors
					elem = elem.parentNode;
				return i;
			};
		});
	};

})( jQuery );


// when the DOM is ready...
$(document).ready(function () {

    var $panels = $('#slider .scrollContainer > div');
    var $container = $('#slider .scrollContainer');

    // if false, we'll float all the panels left and fix the width 
    // of the container
    var horizontal = true;

    // float the panels left if we're going horizontal
    if (horizontal) {
        $panels.css({
            'float' : 'left',
            'position' : 'relative' // IE fix to ensure overflow is hidden
        });

        // calculate a new width for the container (so it holds all panels)
        $container.css('width', $panels[0].offsetWidth * $panels.length);
    }

    // collect the scroll object, at the same time apply the hidden overflow
    // to remove the default scrollbars that will appear
    var $scroll = $('#slider .scroll').css('overflow', 'hidden');

    // apply our left + right buttons
    $scroll
     

    // handle nav selection
    function selectNav() {
        $(this)
            .parents('ul:first')
                .find('a')
                    .removeClass('selected')
                .end()
            .end()
            .addClass('selected');
    }

    $('#slider .navigation').find('a').click(selectNav);

    // go find the navigation link that has this target and select the nav
    function trigger(data) {
        var el = $('#slider .navigation').find('a[href$="' + data.id + '"]').get(0);
        selectNav.call(el);
    }

    if (window.location.hash) {
        trigger({ id : window.location.hash.substr(1) });
    } else {
        $('ul.navigation a:first').click();
    }

    // offset is used to move to *exactly* the right place, since I'm using
    // padding on my example, I need to subtract the amount of padding to
    // the offset.  Try removing this to get a good idea of the effect
    var offset = parseInt((horizontal ? 
        $container.css('paddingTop') : 
        $container.css('paddingLeft')) 
        || 0) * -1;


    var scrollOptions = {
        target: $scroll, // the element that has the overflow

        // can be a selector which will be relative to the target
        items: $panels,

        navigation: '.navigation a',

        // selectors are NOT relative to document, i.e. make sure they're unique
        prev: 'img.left', 
        next: 'img.right',

        // allow the scroll effect to run both directions
        axis: 'xy',

        onAfter: trigger, // our final callback

        offset: offset,

        // duration of the sliding effect
        duration: 500,

        // easing - can be used with the easing plugin: 
        // http://gsgd.co.uk/sandbox/jquery/easing/
        easing: 'swing'
    };

    // apply serialScroll to the slider - we chose this plugin because it 
    // supports// the indexed next and previous scroll along with hooking 
    // in to our navigation.
    $('#slider').serialScroll(scrollOptions);

    // now apply localScroll to hook any other arbitrary links to trigger 
    // the effect
    $.localScroll(scrollOptions);

    // finally, if the URL has a hash, move the slider in to position, 
    // setting the duration to 1 because I don't want it to scroll in the
    // very first page load.  We don't always need this, but it ensures
    // the positioning is absolutely spot on when the pages loads.
    scrollOptions.duration = 1;
    $.localScroll.hash(scrollOptions);

});



/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());


//*Klavaika Font Starts Here*//

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2004 Process Type Foundry. All rights reserved.
 * 
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 * 
 * Manufacturer:
 * Process Type Foundry
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"162,0r-53,-75r-32,0r0,75r-54,0r0,-240r100,0v71,0,80,34,80,98v0,30,-11,50,-35,60r58,82r-64,0xm120,-121v31,1,29,-19,29,-46v0,-34,-42,-23,-72,-25r0,71r43,0","w":231},{"d":"79,0r-54,0r0,-240r54,0r0,240xm48,-255r-18,-27v18,-11,34,-22,48,-33r20,30v-17,12,-29,19,-50,30","w":104},{"d":"9,-99r0,-43r24,0r0,-98r93,0v110,0,81,88,81,178v0,32,-22,62,-81,62r-93,0r0,-99r-24,0xm119,-48v59,2,26,-70,34,-115v6,-31,-34,-30,-66,-29r0,50r31,0r0,43r-31,0r0,51r32,0","w":224},{"d":"94,-87r-38,0r0,-102r-30,14r-13,-29v25,-11,40,-34,81,-29r0,146","w":128},{"d":"166,-111r-52,0r0,54r-42,0r0,-54r-52,0r0,-39r52,0r0,-54r42,0r0,54r52,0r0,39xm166,0r-146,0r0,-38r146,0r0,38","w":186},{"d":"116,-37r0,-56r-102,0r0,-39r145,0r0,95r-43,0","w":182},{"d":"105,4v-123,1,-71,-97,-82,-191r54,0r0,125v0,13,8,20,28,20v20,0,28,-7,28,-20r0,-125r53,0r0,132v0,29,-17,59,-81,59xm121,-231r-18,28v-17,-10,-30,-18,-50,-31r19,-31v18,13,32,23,49,34","w":209},{"d":"36,-203r-18,-28v17,-11,31,-21,49,-34r19,31v-20,13,-33,21,-50,31","w":106},{"d":"25,0r0,-187r136,0r0,42r-83,0r0,29r76,0r0,42r-76,0r0,32r83,0r0,42r-136,0","w":180},{"d":"203,-240r-74,171r0,69r-54,0r0,-69r-75,-171r57,0r45,111r45,-111r56,0xm86,-262r-41,0r0,-39r41,0r0,39xm158,-262r-41,0r0,-39r41,0r0,39","w":203},{"d":"111,-243v114,0,91,78,93,173v0,36,-25,74,-93,74v-114,0,-92,-78,-93,-174v0,-36,25,-73,93,-73xm111,-44v63,0,39,-71,39,-121v0,-19,-12,-30,-39,-30v-63,0,-39,70,-39,120v0,19,12,31,39,31xm131,-282r-18,27v-21,-11,-33,-18,-50,-30r19,-30v14,11,31,22,49,33","w":221},{"d":"174,0r-151,0r0,-240r151,0r0,48r-97,0r0,44r90,0r0,48r-90,0r0,52r97,0r0,48xm84,-262r-41,0r0,-39r41,0r0,39xm157,-262r-41,0r0,-39r41,0r0,39","w":192},{"d":"183,-108v11,72,-32,88,-105,83r0,25r-53,0r0,-187r53,0r0,23v59,-4,113,7,105,56xm131,-84v-1,-19,4,-37,-19,-37r-34,0r0,54v21,-1,54,6,53,-17","w":192},{"d":"111,-243v114,0,91,78,93,173v0,36,-25,74,-93,74v-114,0,-92,-78,-93,-174v0,-36,25,-73,93,-73xm111,-44v63,0,39,-71,39,-121v0,-19,-12,-30,-39,-30v-63,0,-39,70,-39,120v0,19,12,31,39,31xm108,-255r-18,-27v18,-11,35,-22,49,-33r19,30v-17,12,-29,19,-50,30","w":221},{"d":"116,-196v7,34,-28,59,-40,77r44,0r0,32r-98,0r0,-29v11,-18,61,-50,56,-74v-5,-22,-34,-8,-53,-6r-7,-33v37,-12,106,-13,98,33","w":141},{"d":"22,36r0,-48r68,-92r-70,-88r0,-48r148,0r0,48r-81,0r70,87r-70,93r87,0r0,48r-152,0","w":193},{"d":"27,0r0,-187r53,0r0,187r-53,0xm50,-203r-18,-28v17,-11,31,-21,49,-34r19,31v-20,13,-33,21,-50,31","w":107},{"d":"184,-40r-30,0r0,40r-48,0r0,-40r-99,0r0,-41r86,-106r61,0r0,109r30,0r0,38xm106,-78r0,-63r-48,63r48,0","w":194},{"d":"161,-130v23,-21,46,-38,77,-38v43,0,73,23,73,67v0,44,-31,66,-73,66v-31,0,-54,-17,-77,-38v-23,21,-46,38,-77,38v-42,0,-73,-22,-73,-66v0,-44,30,-67,73,-67v31,0,54,17,77,38xm57,-101v0,41,54,23,74,-1v-16,-14,-31,-24,-47,-24v-13,0,-27,8,-27,25xm265,-101v-8,-41,-52,-24,-74,-1v16,15,31,25,47,25v17,0,27,-7,27,-24","w":321},{"d":"22,0r0,-37r85,-110r-83,0r0,-40r146,0r0,38r-85,108r86,0r0,41r-149,0xm130,-260r14,23r-46,34r-46,-34r14,-23v13,6,20,10,32,17v12,-7,19,-11,32,-17","w":190},{"d":"25,0r0,-187r136,0r0,42r-83,0r0,29r76,0r0,42r-76,0r0,32r83,0r0,42r-136,0xm79,-208r-40,0r0,-40r40,0r0,40xm149,-208r-40,0r0,-40r40,0r0,40","w":180},{"d":"138,41v0,30,-44,36,-71,24r5,-20v10,4,39,8,40,-4v0,-17,-29,1,-35,-13r5,-25v-73,-2,-62,-64,-62,-133v0,-63,81,-69,139,-54r-5,44v-30,-2,-81,-18,-81,16v0,33,-16,82,25,82v19,0,36,-1,56,-5r5,44v-18,4,-36,7,-54,7r-3,13v26,-4,36,4,36,24","w":173},{"d":"138,0r-8,-28r-64,0r-8,28r-53,0r60,-187r65,0r60,187r-52,0xm98,-144r-21,75r41,0xm94,-203r-18,-28v17,-11,31,-21,49,-34r19,31v-20,13,-33,21,-50,31"},{"d":"184,-195r-104,151r106,0r0,44r-168,0r0,-44r105,-151r-100,0r0,-45r161,0r0,45","w":203},{"d":"65,76r-36,0r0,-151r36,0r0,151xm65,-284r0,150r-36,0r0,-150r36,0","w":93},{"d":"79,-127r24,35v-34,22,-35,23,-35,40v0,11,5,13,24,13v13,0,32,-2,49,-5r5,42v-54,10,-130,16,-130,-49v0,-33,1,-35,63,-76xm56,-187r54,0r0,50r-54,0r0,-50","w":158},{"d":"201,-172v0,66,-10,100,-83,99r-41,0r0,73r-54,0r0,-240r98,0v58,0,80,23,80,68xm118,-120v34,1,27,-20,29,-47v3,-32,-41,-24,-70,-25r0,72r41,0","w":210},{"d":"84,4v-22,0,-48,-4,-68,-13r9,-40v16,5,40,9,60,9v20,0,23,-4,23,-15v0,-12,-2,-15,-36,-20v-49,-8,-54,-27,-54,-61v0,-64,84,-60,139,-47r-7,42v-21,-4,-40,-6,-57,-6v-17,0,-21,3,-21,13v0,13,1,14,33,20v53,9,57,22,57,57v0,40,-15,61,-78,61xm125,-260r14,23r-46,34v-17,-13,-30,-22,-47,-34r14,-23v13,6,21,10,33,17v12,-7,19,-11,32,-17","w":177},{"d":"118,-53r0,53r-53,0r0,-53r-65,-134r54,0r37,84r38,-84r54,0xm76,-208r-40,0r0,-40r40,0r0,40xm147,-208r-40,0r0,-40r40,0r0,40","w":182},{"d":"102,4v-94,0,-83,-55,-82,-134v0,-32,23,-61,82,-61v94,0,84,55,83,134v0,32,-24,61,-83,61xm131,-64v0,-36,15,-81,-29,-81v-44,0,-29,45,-29,81v0,13,9,22,29,22v20,0,29,-9,29,-22xm123,-231r-19,28v-17,-10,-30,-18,-50,-31r20,-31v18,13,32,23,49,34","w":204},{"d":"148,-240r54,0r0,170v0,36,-22,74,-90,74v-68,0,-90,-38,-90,-74r0,-170r54,0r0,165v0,19,9,31,36,31v27,0,36,-12,36,-31r0,-165xm104,-255r-18,-27v18,-11,35,-22,49,-33r20,30v-17,12,-30,19,-51,30","w":223},{"d":"149,41v0,29,-44,36,-71,24r5,-20v10,4,38,8,39,-4v0,-17,-28,1,-35,-13r6,-25v-93,-4,-74,-87,-75,-173v0,-44,27,-73,87,-73v24,0,46,2,70,7r-8,47v-40,-5,-98,-17,-95,28v3,45,-19,117,33,116v17,0,41,-2,62,-6r8,47v-21,4,-39,7,-59,7r-3,14v26,-4,36,4,36,24","w":187},{"d":"75,0r-52,0r0,-60r52,0r0,60","w":98},{"d":"14,-106v0,-46,35,-81,81,-81r0,161v-46,0,-81,-34,-81,-80xm106,75r-26,-29v44,-40,45,-41,45,-56r0,-177r40,0r0,185v0,26,-6,29,-59,77","w":191},{"d":"80,-285v0,17,-13,30,-32,30v-19,0,-32,-12,-32,-30v0,-17,13,-30,32,-30v19,0,32,13,32,30xm60,-285v0,-8,-4,-13,-12,-13v-8,0,-12,5,-12,13v0,8,4,13,12,13v8,0,12,-5,12,-13","w":95},{"d":"154,-79r-136,0r0,-43r136,0r0,43","w":172},{"d":"75,-91r-52,0r0,-60r52,0r0,60","w":98},{"d":"150,-184r-31,50r-24,-13r21,-40r-17,0r0,-60r51,0r0,63xm73,-184r-32,50r-23,-13r21,-40r-18,0r0,-60r52,0r0,63","w":173},{"d":"246,-263r0,43r-54,0r-66,220r-57,0r-53,-165r46,-14r34,119r58,-203r92,0","w":246},{"d":"23,-204r32,-50r23,13r-20,40r17,0r0,60r-52,0r0,-63","w":96},{"d":"174,-6v-57,17,-154,18,-154,-49r0,-77v-6,-66,88,-65,149,-52r-5,44v-38,0,-86,-21,-91,16v5,33,-16,83,25,82v10,0,19,-1,28,-2r0,-50r48,0r0,88"},{"d":"138,0r-8,-28r-64,0r-8,28r-53,0r60,-187r65,0r60,187r-52,0xm98,-144r-21,75r41,0xm144,-227r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-15,-23v17,-12,30,-21,47,-34"},{"d":"137,0r-8,-28r-64,0r-8,28r-52,0r59,-187r184,0r0,42r-105,0r9,29r90,0r0,42r-77,0r10,32r73,0r0,42r-111,0xm97,-144r-21,75r41,0","w":267},{"d":"108,-202r-92,0r0,-33r92,0r0,33","w":123},{"d":"190,-188r-24,25v7,22,6,60,0,85r24,24r-30,31r-28,-28v-15,4,-39,4,-54,0r-28,28r-30,-31r24,-24v-5,-23,-5,-60,0,-85r-24,-25r30,-30r28,28v15,-4,39,-4,54,0r28,-28xm105,-154v-27,0,-19,30,-20,52v0,14,9,15,20,15v28,0,21,-29,21,-52v0,-14,-10,-15,-21,-15","w":210},{"d":"174,0r-151,0r0,-240r151,0r0,48r-97,0r0,44r90,0r0,48r-90,0r0,52r97,0r0,48xm149,-279r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23v17,-12,29,-20,46,-33v17,13,29,21,46,33","w":192},{"d":"148,-240r54,0r0,170v0,36,-22,74,-90,74v-68,0,-90,-38,-90,-74r0,-170r54,0r0,165v0,19,9,31,36,31v27,0,36,-12,36,-31r0,-165xm96,-262r-41,0r0,-39r41,0r0,39xm169,-262r-41,0r0,-39r41,0r0,39","w":223},{"d":"149,-240r73,240r-56,0r-13,-47r-80,0r-13,47r-56,0r73,-240r72,0xm113,-192r-28,100r55,0xm93,-305v20,0,48,36,55,1r25,11v-6,22,-19,35,-38,35v-25,0,-46,-32,-59,1r-21,-17v8,-16,21,-31,38,-31","w":225},{"d":"291,-28r-21,0r0,28r-36,0r0,-28r-66,0r0,-26r49,-92r53,0r0,89r21,0r0,29xm234,-57r0,-58r-29,58r29,0xm94,-87r-38,0r0,-102r-30,14r-13,-29v25,-11,40,-34,81,-29r0,146xm76,4r112,-253r28,13r-112,252","w":312},{"d":"118,-64r-104,0r0,-43r104,0r0,43","w":132},{"d":"185,-88r-45,70r-33,-21r32,-49r-32,-49r33,-20xm105,-88r-45,70r-33,-21r32,-49r-32,-49r33,-20","w":201},{"d":"123,-243v113,0,92,76,93,171v0,18,-6,29,-14,38r31,0r0,34r-91,0r0,-34v30,-19,18,-84,20,-131v0,-19,-12,-30,-39,-30v-63,0,-39,69,-39,119v0,21,9,33,19,42r0,34r-90,0r0,-34r31,0v-25,-25,-14,-90,-14,-136v0,-36,25,-73,93,-73","w":245},{"d":"149,-240r73,240r-56,0r-13,-47r-80,0r-13,47r-56,0r73,-240r72,0xm113,-192r-28,100r55,0xm114,-255r-18,-27v18,-11,35,-22,49,-33r20,30v-17,12,-30,19,-51,30","w":225},{"d":"102,4v-94,0,-83,-55,-82,-134v0,-32,23,-61,82,-61v94,0,84,55,83,134v0,32,-24,61,-83,61xm131,-64v0,-36,15,-81,-29,-81v-44,0,-29,45,-29,81v0,13,9,22,29,22v20,0,29,-9,29,-22xm80,-252v21,0,47,35,56,1r24,11v-6,22,-19,34,-38,34v-25,0,-46,-31,-59,1r-21,-16v8,-16,21,-31,38,-31","w":204},{"d":"102,4v-94,0,-83,-55,-82,-134v0,-32,23,-61,82,-61v94,0,84,55,83,134v0,32,-24,61,-83,61xm131,-64v0,-36,15,-81,-29,-81v-44,0,-29,45,-29,81v0,13,9,22,29,22v20,0,29,-9,29,-22xm148,-227r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23r46,-34","w":204},{"d":"27,0r0,-187r53,0r0,187r-53,0xm39,-208r-40,0r0,-40r40,0r0,40xm109,-208r-40,0r0,-40r40,0r0,40","w":107},{"d":"144,-151v-25,-2,-17,24,-18,44v-2,23,27,17,46,14r4,31v-41,12,-94,-1,-88,-42v-3,-49,1,-81,56,-79v10,0,23,1,32,4r-4,31v-8,-2,-21,-3,-28,-3xm14,-120v0,-68,49,-124,124,-124v75,0,123,56,123,124v0,68,-48,124,-123,124v-75,0,-124,-56,-124,-124xm49,-120v0,50,35,90,89,90v54,0,88,-40,88,-90v0,-51,-34,-90,-88,-90v-54,0,-89,39,-89,90","w":275},{"d":"108,-263r-92,0r0,-33r92,0r0,33","w":123},{"d":"27,-138r0,-49r54,0r0,49r-54,0xm27,0v-1,-46,0,-90,12,-122r30,0v12,33,14,76,12,122r-54,0","w":108},{"d":"27,-175v19,-2,53,9,47,-19v2,-19,-32,-11,-48,-9r-5,-28v41,-11,100,-5,89,41v0,14,-3,20,-16,28v18,6,18,19,18,37v10,38,-55,47,-94,35r5,-29v20,3,57,14,53,-16v-2,-19,-32,-8,-49,-11r0,-29","w":132},{"d":"128,0r3,-42r-46,0r-3,42r-33,0r2,-42r-37,0r3,-32r37,0r2,-41r-37,0r3,-32r36,0r3,-40r34,0r-3,40r46,0r2,-40r34,0r-3,40r38,0r-2,32r-38,0r-3,41r38,0r-2,32r-38,0r-3,42r-33,0xm90,-115r-3,41r46,0r2,-41r-45,0","w":223},{"d":"2,65r7,-40v14,3,33,8,35,-13r6,-67r-29,0r4,-43r28,0v3,-51,9,-97,68,-93v15,0,29,3,41,7r-8,40v-19,-5,-44,-10,-46,13r-3,33r45,0r-5,43r-43,0v-10,56,9,126,-62,126v-8,0,-27,-2,-38,-6","w":171},{"d":"61,-262r-41,0r0,-39r41,0r0,39xm134,-262r-41,0r0,-39r41,0r0,39","w":153},{"d":"16,-232r16,-21v16,10,24,14,36,23v12,-9,19,-13,35,-23r16,21v-16,12,-34,28,-51,42v-17,-14,-36,-30,-52,-42","w":135},{"d":"103,-248r24,11v-3,22,-22,45,-55,45v-33,0,-53,-23,-56,-45r24,-11v5,32,59,34,63,0","w":143},{"d":"54,-252v20,0,47,35,55,1r25,11v-6,22,-19,34,-38,34v-25,0,-46,-31,-59,1r-21,-16v8,-16,21,-31,38,-31","w":150},{"d":"100,-260r14,23r-46,34r-46,-34r14,-23v13,6,20,10,32,17v12,-7,19,-11,32,-17","w":135},{"d":"79,0r-54,0r0,-240r54,0r0,240xm77,-282r-18,27v-21,-11,-34,-18,-51,-30r20,-30v14,11,31,22,49,33","w":104},{"d":"108,-279r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23v17,-12,29,-20,46,-33v17,13,29,21,46,33","w":124},{"d":"22,0r0,-37r85,-110r-83,0r0,-40r146,0r0,38r-85,108r86,0r0,41r-149,0","w":190},{"d":"25,-174v20,-2,54,9,47,-20v3,-19,-34,-11,-48,-9r-5,-29v40,-9,101,-5,89,42v0,14,-3,20,-16,28v18,6,19,19,19,37v9,38,-56,48,-95,35r5,-28v20,2,60,14,53,-18v0,-20,-32,-8,-49,-11r0,-27xm297,-28r-21,0r0,28r-36,0r0,-28r-66,0r0,-26r50,-92r52,0r0,89r21,0r0,29xm240,-57r0,-58r-29,58r29,0xm81,4r112,-253r28,13r-111,252","w":318},{"d":"22,71r0,-246r51,0r0,116v4,24,35,7,51,0r0,-116r52,0r0,175r-39,0r-5,-13v-18,9,-41,14,-59,16r0,68r-51,0","w":199},{"d":"105,4v-123,1,-71,-97,-82,-191r54,0r0,125v0,13,8,20,28,20v20,0,28,-7,28,-20r0,-125r53,0r0,132v0,29,-17,59,-81,59","w":209},{"d":"105,4v-123,1,-71,-97,-82,-191r54,0r0,125v0,13,8,20,28,20v20,0,28,-7,28,-20r0,-125r53,0r0,132v0,29,-17,59,-81,59xm151,-227r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23r46,-34","w":209},{"d":"18,-158r0,-89r36,0r0,89r-36,0xm83,-158r0,-89r35,0r0,89r-35,0","w":136},{"d":"283,-120r-120,0r0,120r-120,0r0,-240r240,0r0,120","w":315},{"w":75},{"d":"20,-74r0,-34r26,0v-15,-45,-10,-83,61,-83v18,0,45,3,63,9r-7,38v-14,-3,-38,-6,-57,-6v-27,0,-14,28,-8,42r60,0r-2,34r-52,0v-1,13,-7,26,-16,34r87,0r0,40r-149,0r0,-38v10,-6,23,-22,26,-36r-32,0","w":191},{"d":"154,-240r88,240r-228,0r88,-240r52,0xm128,-173r-44,125r89,0","w":256},{"d":"36,-255r-18,-27v18,-11,35,-22,49,-33r19,30v-17,12,-29,19,-50,30","w":106},{"d":"102,4v-94,0,-83,-55,-82,-134v0,-32,23,-61,82,-61v94,0,84,55,83,134v0,32,-24,61,-83,61xm131,-64v0,-36,15,-81,-29,-81v-44,0,-29,45,-29,81v0,13,9,22,29,22v20,0,29,-9,29,-22xm87,-208r-40,0r0,-40r40,0r0,40xm157,-208r-40,0r0,-40r40,0r0,40","w":204},{"d":"75,4r-32,50r-23,-14r20,-40r-17,0r0,-60r52,0r0,64","w":98},{"d":"11,-132r0,-43r215,0r0,43r-34,0r0,86v-1,14,20,10,29,7r7,36v-35,17,-86,3,-86,-39r0,-90r-46,0r0,132r-51,0r0,-132r-34,0","w":243},{"d":"102,4v-94,0,-83,-55,-82,-134v0,-32,23,-61,82,-61v94,0,84,55,83,134v0,32,-24,61,-83,61xm131,-64v0,-36,15,-81,-29,-81v-44,0,-29,45,-29,81v0,13,9,22,29,22v20,0,29,-9,29,-22xm102,-203r-18,-28v17,-11,30,-21,48,-34r20,31v-20,13,-33,21,-50,31","w":204},{"d":"114,-141r0,141r-54,0r0,-141r-54,0r0,-46r162,0r0,46r-54,0","w":174},{"d":"85,-233v0,18,-12,33,-35,33v-23,0,-34,-13,-34,-33v0,-18,12,-33,34,-33v23,0,35,15,35,33xm63,-233v0,-9,-5,-14,-13,-14v-8,0,-12,5,-12,14v0,9,4,14,12,14v8,0,13,-5,13,-14","w":100},{"d":"163,-112r-119,63r-16,-29r90,-48r-90,-46r16,-29r119,62r0,27xm169,0r-149,0r0,-35r149,0r0,35","w":185},{"d":"149,-240r73,240r-56,0r-13,-47r-80,0r-13,47r-56,0r73,-240r72,0xm113,-192r-28,100r55,0xm136,-282r-18,27v-21,-11,-34,-18,-51,-30r20,-30v14,11,31,22,49,33","w":225},{"d":"184,-195r-104,151r106,0r0,44r-168,0r0,-44r105,-151r-100,0r0,-45r161,0r0,45xm140,-313r14,22r-46,34r-46,-34r14,-22v13,6,20,9,32,16v12,-7,19,-10,32,-16","w":203},{"d":"114,-136v-10,-2,-29,5,-29,-7v-29,18,-62,9,-62,-25v0,-33,26,-32,58,-31v9,-31,-27,-27,-50,-21r-5,-25v36,-10,99,-11,88,37r0,72xm81,-163r0,-13v-10,1,-26,-4,-26,8v0,14,19,8,26,5","w":135},{"w":75},{"d":"54,-305v20,0,48,36,55,1r25,11v-6,22,-19,35,-38,35v-25,0,-46,-32,-59,1r-21,-17v8,-16,21,-31,38,-31","w":150},{"d":"212,-240r-67,240r-77,0r-68,-240r55,0r51,191r51,-191r55,0","w":212},{"d":"138,0r-8,-28r-64,0r-8,28r-53,0r60,-187r65,0r60,187r-52,0xm98,-144r-21,75r41,0xm76,-252v21,0,47,35,56,1r24,11v-6,22,-19,34,-38,34v-25,0,-46,-31,-59,1r-20,-16v8,-16,20,-31,37,-31"},{"d":"102,4v-94,0,-83,-55,-82,-134v0,-32,23,-61,82,-61v94,0,84,55,83,134v0,32,-24,61,-83,61xm131,-64v0,-36,15,-81,-29,-81v-44,0,-29,45,-29,81v0,13,9,22,29,22v20,0,29,-9,29,-22","w":204},{"d":"94,-313r14,22r-46,34r-46,-34r14,-22v13,6,20,9,32,16v12,-7,19,-10,32,-16","w":124},{"d":"32,-114v25,-3,76,11,67,-22v1,-23,-55,-13,-76,-10r-4,-39v54,-11,147,-14,131,50v0,18,-6,31,-20,39v20,7,26,20,26,45v0,35,-18,55,-82,55v-18,0,-40,-3,-58,-9r5,-37v22,2,92,20,84,-18v1,-22,-50,-12,-73,-14r0,-40","w":174},{"d":"68,-212r-52,0r0,-55r52,0r0,55","w":84},{"d":"152,-243r-90,285r-46,0r90,-285r46,0","w":166},{"d":"27,0r0,-187r53,0r0,187r-53,0xm100,-227r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23r46,-34","w":107},{"d":"138,0r-8,-28r-64,0r-8,28r-53,0r60,-187r65,0r60,187r-52,0xm98,-144r-21,75r41,0xm132,-233v0,18,-11,33,-34,33v-23,0,-35,-13,-35,-33v0,-18,13,-33,35,-33v23,0,34,15,34,33xm110,-233v0,-9,-4,-14,-12,-14v-8,0,-13,5,-13,14v0,9,5,14,13,14v8,0,12,-5,12,-14"},{"d":"39,-237v60,-28,160,-15,152,57v-4,40,-13,79,-19,116v-8,43,-23,68,-91,68v-68,-1,-74,-40,-63,-90v8,-39,18,-68,80,-68v13,0,27,3,37,7v6,-31,8,-59,-35,-59v-16,0,-33,3,-51,9xm89,-40v41,0,30,-37,38,-64v-16,-8,-57,-12,-57,16v0,22,-18,48,19,48","w":207},{"d":"138,0r-62,-114r0,114r-51,0r0,-187r64,0r62,114r0,-114r50,0r0,187r-63,0xm90,-252v20,0,46,34,55,1r25,11v-6,22,-20,34,-39,34v-25,0,-45,-30,-58,1r-21,-16v8,-16,21,-31,38,-31","w":226},{"d":"36,-193r-18,-28v18,-11,35,-22,54,-36r20,30v-22,14,-36,23,-56,34","w":111},{"d":"79,0r-54,0r0,-240r54,0r0,240","w":104},{"d":"31,-5r17,-33r-28,0r0,-35r46,0r18,-35r-64,0r0,-35r82,0r27,-50r29,16r-19,34r30,0r0,35r-48,0r-18,35r66,0r0,35r-84,0r-25,48","w":189},{"d":"111,-243v114,0,91,78,93,173v0,36,-25,74,-93,74v-114,0,-92,-78,-93,-174v0,-36,25,-73,93,-73xm111,-44v63,0,39,-71,39,-121v0,-19,-12,-30,-39,-30v-63,0,-39,70,-39,120v0,19,12,31,39,31","w":221},{"d":"42,-191v-3,-55,51,-60,91,-43r-9,40v-12,-5,-29,-9,-30,7r0,209v4,56,-50,62,-90,44r9,-38v12,5,29,11,29,-7r0,-212","w":147},{"d":"118,0r-48,0r0,-49r48,0r0,49xm169,-71r-149,0r0,-33r149,0r0,33xm118,-126r-48,0r0,-49r48,0r0,49","w":188},{"d":"103,-260r24,12v-3,22,-22,44,-55,44v-33,0,-53,-22,-56,-44r24,-12v4,14,15,27,32,27v17,0,27,-13,31,-27","w":143},{"d":"174,0r-151,0r0,-240r151,0r0,48r-97,0r0,44r90,0r0,48r-90,0r0,52r97,0r0,48","w":192},{"d":"111,-243v114,0,91,78,93,173v0,36,-25,74,-93,74v-114,0,-92,-78,-93,-174v0,-36,25,-73,93,-73xm111,-44v63,0,39,-71,39,-121v0,-19,-12,-30,-39,-30v-63,0,-39,70,-39,120v0,19,12,31,39,31xm157,-279r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23v17,-12,29,-20,46,-33v17,13,29,21,46,33","w":221},{"d":"26,76r-32,-38v26,-21,29,-25,29,-38r0,-240r54,0r0,248v0,23,-19,43,-51,68","w":99},{"d":"60,-208r-40,0r0,-40r40,0r0,40xm130,-208r-40,0r0,-40r40,0r0,40","w":149},{"d":"111,0r-86,0r0,-187r86,0v83,0,73,52,73,121v0,38,-15,66,-73,66xm131,-66v-3,-29,13,-78,-22,-76r-31,0r0,97v24,0,56,5,53,-21","w":201},{"d":"140,0r-37,-56r-36,56r-58,0r63,-95r-60,-92r56,0r35,55r35,-55r57,0r-61,92r64,95r-58,0","w":206},{"d":"40,-254r-24,-23v12,-12,25,-24,36,-37r25,25v-11,12,-23,25,-37,35xm104,-254r-23,-23v12,-12,25,-24,36,-37r25,25v-11,12,-24,25,-38,35","w":158},{"d":"149,-240r73,240r-56,0r-13,-47r-80,0r-13,47r-56,0r73,-240r72,0xm113,-192r-28,100r55,0xm159,-279r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23v17,-12,29,-20,46,-33v17,13,29,21,46,33","w":225},{"d":"17,-46v0,-28,5,-40,27,-50v-23,-14,-22,-23,-22,-48v0,-30,23,-47,71,-47v55,0,73,17,73,61v0,13,-5,24,-23,34v20,10,28,22,28,50v0,35,-29,50,-78,50v-49,0,-76,-15,-76,-50xm93,-77v-35,4,-38,42,0,41v23,-1,30,-5,28,-22v0,-10,-9,-12,-28,-19xm72,-138v-1,18,4,19,21,26v29,-2,34,-40,0,-40v-14,0,-21,5,-21,14","w":187},{"d":"157,-145r-77,145r-56,0r79,-143r-94,0r0,-44r148,0r0,42","w":163},{"d":"88,45r-81,0r0,-41r29,0r0,-247r-29,0r0,-41r81,0r0,329","w":114},{"d":"90,4v-88,-1,-69,-54,-74,-126v-4,-63,72,-78,141,-65r-4,40v-39,-4,-96,-13,-85,35v50,-13,96,-4,96,59v0,29,-18,57,-74,57xm90,-38v21,0,24,-9,22,-27v-2,-17,-29,-9,-44,-6v-1,20,0,33,22,33","w":179},{"d":"75,-105r-52,0r0,-60r52,0r0,60xm75,4r-32,50r-23,-14r20,-40r-17,0r0,-60r52,0r0,64","w":98},{"d":"75,-115v51,0,94,8,84,62v11,63,-87,65,-143,47r7,-40v19,4,39,7,56,7v25,0,29,-2,29,-20v0,-28,-67,-12,-84,-17r0,-111r129,0r0,43r-78,0r0,29","w":176},{"d":"105,4v-123,1,-71,-97,-82,-191r54,0r0,125v0,13,8,20,28,20v20,0,28,-7,28,-20r0,-125r53,0r0,132v0,29,-17,59,-81,59xm90,-208r-40,0r0,-40r40,0r0,40xm160,-208r-40,0r0,-40r40,0r0,40","w":209},{"d":"102,4v-18,0,-33,-3,-45,-8r-17,26r-16,-10r16,-25v-30,-23,-20,-70,-20,-117v0,-33,23,-61,82,-61v18,0,34,3,46,8r17,-26r15,10r-15,26v31,22,20,69,20,115v0,33,-24,62,-83,62xm121,-141v-17,-10,-52,-1,-48,18r0,58xm131,-121r-48,75v17,10,52,1,48,-18r0,-57","w":204},{"d":"107,-79r-93,0r0,-43r93,0r0,43","w":121},{"d":"68,38r0,-44v-58,-6,-50,-58,-50,-117v0,-32,14,-52,50,-58r0,-44r43,0r0,42v12,1,23,3,36,6r-6,42v-25,-4,-74,-15,-71,17v2,30,-13,70,25,70v15,0,31,-1,46,-4r6,42v-13,3,-24,5,-36,6r0,42r-43,0","w":161},{"d":"172,0r-149,0r0,-240r54,0r0,192r95,0r0,48","w":179},{"d":"14,-97r0,-39v12,1,23,0,23,-12v0,-59,-16,-141,50,-136r32,0r0,41v-15,0,-30,-3,-30,15v0,46,16,112,-35,111v51,0,35,66,35,112v0,18,14,15,30,15r0,41v-49,3,-82,-4,-82,-54r0,-82v1,-12,-11,-13,-23,-12","w":122},{"d":"18,-158r0,-89r36,0r0,89r-36,0","w":71},{"d":"86,-223v0,18,-12,33,-35,33v-23,0,-35,-13,-35,-33v0,-18,13,-34,35,-34v23,0,35,16,35,34xm64,-223v0,-9,-5,-15,-13,-15v-8,0,-13,6,-13,15v0,9,5,14,13,14v8,0,13,-5,13,-14","w":102},{"d":"148,-240r54,0r0,170v0,36,-22,74,-90,74v-68,0,-90,-38,-90,-74r0,-170r54,0r0,165v0,19,9,31,36,31v27,0,36,-12,36,-31r0,-165","w":223},{"d":"203,-240r-74,171r0,69r-54,0r0,-69r-75,-171r57,0r45,111r45,-111r56,0","w":203},{"d":"174,0r-151,0r0,-240r151,0r0,48r-97,0r0,44r90,0r0,48r-90,0r0,52r97,0r0,48xm126,-282r-18,27v-21,-11,-34,-18,-51,-30r20,-30v14,11,31,22,49,33","w":192},{"d":"211,-240r-71,118r73,122r-56,0r-47,-79r-46,79r-57,0r73,-122r-70,-118r56,0r44,76r44,-76r57,0","w":220},{"d":"195,-81v0,52,-10,81,-69,81r-103,0r0,-240r95,0v61,2,68,26,68,77v0,17,-7,30,-26,38v20,5,35,22,35,44xm111,-141v23,0,21,-17,21,-38v0,-22,-33,-17,-55,-17r0,55r34,0xm77,-44v36,0,72,6,64,-35v1,-28,-38,-19,-64,-20r0,55","w":205},{"d":"36,-133r25,-39r-47,0r0,-25r48,0r-26,-40r20,-14r28,44r28,-44r20,14r-27,40r49,0r0,25r-47,0r25,39r-21,13r-27,-43r-27,43","w":168},{"d":"197,-177v0,89,29,178,-81,177r-93,0r0,-240r93,0v59,0,81,31,81,63xm110,-48v58,2,24,-71,33,-115v6,-31,-34,-30,-66,-29r0,144r33,0","w":215},{"d":"77,0r-54,0r0,-240r153,0r0,48r-99,0r0,51r91,0r0,48r-91,0r0,93","w":186},{"d":"117,-31r-41,-102r-4,133r-52,0r10,-240r54,0r57,153r58,-153r54,0r10,240r-52,0r-4,-133r-41,102r-49,0","w":282},{"d":"111,-243v114,0,91,78,93,173v0,36,-25,74,-93,74v-114,0,-92,-78,-93,-174v0,-36,25,-73,93,-73xm111,-44v63,0,39,-71,39,-121v0,-19,-12,-30,-39,-30v-63,0,-39,70,-39,120v0,19,12,31,39,31xm92,-305v20,0,48,36,56,1r24,11v-6,22,-19,35,-38,35v-25,0,-46,-32,-59,1r-21,-17v8,-16,21,-31,38,-31","w":221},{"d":"177,-126v0,0,12,130,-79,130v-91,0,-81,-54,-80,-130v0,-32,19,-65,80,-65v61,0,79,33,79,65xm98,-42v42,0,27,-45,27,-78v0,-18,-6,-25,-27,-25v-42,0,-28,45,-28,78v0,18,7,25,28,25"},{"d":"39,-191r-23,-23v15,-14,28,-25,43,-43r25,25v-18,18,-27,27,-45,41xm108,-191r-23,-23v15,-14,27,-25,42,-43r25,25v-18,18,-26,27,-44,41","w":168},{"d":"33,0r0,-66r-21,9r-12,-31r33,-13r0,-86r53,0r0,64r45,-18r12,31r-57,23r0,41r78,0r0,46r-131,0","w":176},{"d":"94,-221r-18,28v-20,-11,-34,-20,-56,-34r19,-30v19,14,37,25,55,36","w":111},{"d":"174,-74r0,66v-47,19,-165,20,-152,-37v-1,-27,2,-43,23,-52v-19,-12,-20,-23,-20,-46v0,-58,86,-53,141,-40r-5,40v-23,-4,-48,-5,-66,-5v-21,-1,-18,7,-18,22v0,9,4,13,15,13r112,0r0,39r-30,0xm127,-74v-24,2,-61,-10,-53,25v-2,20,38,13,53,10r0,-35","w":214},{"d":"160,31r-160,0r0,-27r160,0r0,27","w":159},{"d":"290,0r-124,0r-13,-47r-80,0r-13,47r-56,0r73,-240r213,0r0,48r-127,0r14,44r105,0r0,48r-91,0r16,52r83,0r0,48xm113,-192r-28,100r55,0","w":307},{"d":"189,-8v-68,25,-171,14,-171,-62r0,-100v0,-44,30,-73,88,-73v28,0,56,3,77,7r-7,47v-40,-4,-109,-19,-104,27v5,47,-22,116,34,117v11,0,18,0,32,-2r0,-74r51,0r0,113","w":210},{"d":"209,0r-54,0r0,-96r-78,0r0,96r-54,0r0,-240r54,0r0,96r78,0r0,-96r54,0r0,240","w":232},{"d":"105,-176r-12,-29r0,39r-17,0r3,-74r17,0r17,45r17,-45r17,0r3,74r-17,0r-1,-40r-11,30r-16,0xm67,-224r-19,0r0,58r-18,0r0,-58r-19,0r0,-16r56,0r0,16","w":162},{"d":"68,-197r-52,0r0,-55r52,0r0,55","w":84},{"d":"141,0r-59,-96r57,-91r60,0r-59,91r62,96r-61,0xm25,0r0,-187r53,0r0,187r-53,0","w":208},{"d":"76,44r3,27v-28,10,-65,1,-63,-30v1,-22,26,-46,63,-41v-13,10,-28,23,-28,34v-1,13,14,12,25,10","w":95},{"d":"62,-18r-46,-70r46,-69r34,20r-32,49r32,49","w":123},{"d":"25,0r0,-187r136,0r0,42r-83,0r0,29r76,0r0,42r-76,0r0,32r83,0r0,42r-136,0xm138,-227r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23r46,-34","w":180},{"d":"338,-240r-59,240r-68,0r-41,-182r-40,182r-69,0r-59,-240r53,0r41,172r42,-172r65,0r41,172r41,-172r53,0","w":339},{"d":"138,0r-8,-28r-64,0r-8,28r-53,0r60,-187r65,0r60,187r-52,0xm98,-144r-21,75r41,0"},{"d":"27,0r0,-187r53,0r0,187r-53,0xm75,-231r-18,28v-17,-10,-30,-18,-50,-31r19,-31v18,13,32,23,49,34","w":107},{"d":"138,0r-8,-28r-64,0r-8,28r-53,0r60,-187r65,0r60,187r-52,0xm98,-144r-21,75r41,0xm116,-231r-18,28v-17,-10,-30,-18,-50,-31r19,-31v18,13,32,23,49,34"},{"d":"193,-75r-160,79r-15,-31r127,-61r-127,-60r15,-31r160,78r0,26","w":203},{"d":"159,-3v-58,15,-139,9,-139,-54v0,-76,-10,-134,78,-134v21,0,41,3,61,7r-5,44v-30,-2,-81,-18,-81,16v0,33,-16,82,25,82v19,0,36,-1,56,-5","w":173},{"d":"75,0r-52,0r0,-60r52,0r0,60xm75,-105r-52,0r0,-60r52,0r0,60","w":98},{"d":"203,-240r-74,171r0,69r-54,0r0,-69r-75,-171r57,0r45,111r45,-111r56,0xm98,-255r-18,-27v18,-11,35,-22,49,-33r19,30v-17,12,-29,19,-50,30","w":203},{"d":"76,44r3,27v-28,10,-65,1,-63,-30v1,-23,26,-46,63,-41v-12,9,-28,21,-28,34v-1,13,14,12,25,10","w":95},{"d":"95,-308r24,12v-4,22,-21,39,-51,39v-30,0,-48,-17,-52,-39r24,-12v5,30,51,32,55,0","w":135},{"d":"42,55r-38,-21v55,-76,55,-211,0,-287r38,-21v32,40,56,94,56,165v0,71,-24,124,-56,164","w":117},{"d":"114,0r-52,0r0,-129r-40,24r-22,-41r66,-41r48,0r0,187","w":137},{"d":"72,-134v-52,0,-51,-29,-50,-71v0,-23,10,-46,50,-46v52,0,53,30,51,72v0,23,-11,45,-51,45xm72,-162v24,1,17,-23,18,-44v0,-10,-6,-17,-18,-17v-23,-1,-16,25,-17,45v0,10,5,16,17,16","w":144},{"d":"108,-227r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23r46,-34","w":124},{"d":"80,-60r-25,-35v34,-22,35,-23,35,-40v0,-24,-48,-11,-72,-9r-5,-41v54,-11,129,-15,129,49v0,33,0,35,-62,76xm103,0r-54,0r0,-50r54,0r0,50","w":158},{"d":"30,67r-34,-34v27,-27,29,-31,29,-39r0,-181r53,0r0,184v0,20,-7,33,-48,70","w":101},{"d":"148,-240r54,0r0,170v0,36,-22,74,-90,74v-68,0,-90,-38,-90,-74r0,-170r54,0r0,165v0,19,9,31,36,31v27,0,36,-12,36,-31r0,-165xm139,-282r-18,27v-21,-11,-33,-18,-50,-30r19,-30v14,11,31,22,49,33","w":223},{"d":"181,-67v0,48,-15,71,-87,71v-28,0,-57,-7,-78,-16r9,-42v22,7,44,12,69,12v28,0,33,-6,33,-26v0,-22,-1,-23,-40,-32v-58,-13,-66,-24,-66,-76v0,-77,86,-74,155,-59r-5,45v-27,-5,-45,-7,-67,-7v-24,0,-29,4,-29,22v0,23,0,23,38,32v65,15,68,29,68,76"},{"d":"118,-53r0,53r-53,0r0,-53r-65,-134r54,0r37,84r38,-84r54,0","w":182},{"d":"68,-262r-52,0r0,-55r52,0r0,55","w":84},{"d":"149,-240r73,240r-56,0r-13,-47r-80,0r-13,47r-56,0r73,-240r72,0xm113,-192r-28,100r55,0xm97,-262r-41,0r0,-39r41,0r0,39xm170,-262r-41,0r0,-39r41,0r0,39","w":225},{"d":"105,4v-123,1,-71,-97,-82,-191r54,0r0,125v0,13,8,20,28,20v20,0,28,-7,28,-20r0,-125r53,0r0,132v0,29,-17,59,-81,59xm102,-203r-18,-28v17,-11,30,-21,48,-34r20,31v-20,13,-33,21,-50,31","w":209},{"d":"71,-42v-13,0,-25,6,-34,14r-17,-31v11,-12,31,-25,52,-25v41,0,60,40,88,8r20,30v-10,10,-28,24,-50,24v-27,0,-35,-20,-59,-20xm71,-114v-13,0,-25,6,-34,14r-17,-31v11,-12,31,-25,52,-25v41,0,60,40,88,8r20,30v-10,10,-28,24,-50,24v-27,0,-35,-20,-59,-20","w":196},{"d":"0,4r112,-253r28,13r-112,252","w":139},{"d":"138,0r-8,-28r-64,0r-8,28r-53,0r60,-187r65,0r60,187r-52,0xm98,-144r-21,75r41,0xm82,-208r-40,0r0,-40r40,0r0,40xm153,-208r-40,0r0,-40r40,0r0,40"},{"d":"87,41v0,29,-44,36,-71,24r5,-20v10,3,39,9,39,-4v1,-17,-28,1,-34,-13r7,-35r23,0r-5,24v26,-4,36,4,36,24","w":102},{"d":"0,-112r34,-14r0,-114r54,0r0,92r49,-20r12,33r-61,24r0,63r95,0r0,48r-149,0r0,-89r-22,9","w":190},{"d":"11,-69r50,0r0,-77r-50,0r0,-34r50,0r0,-60r38,0r0,60r50,0r0,34r-50,0r0,77r50,0r0,35r-50,0r0,59r-38,0r0,-59r-50,0r0,-35","w":159},{"d":"16,-185v0,-36,26,-66,65,-66v40,0,65,30,65,66v0,36,-25,65,-65,65v-39,0,-65,-29,-65,-65xm37,-185v0,24,14,45,44,45v30,0,44,-21,44,-45v0,-24,-14,-45,-44,-45v-30,0,-44,21,-44,45xm94,-157v-7,-6,-6,-20,-21,-19r0,19r-14,0r0,-60v23,0,45,-4,45,23v0,7,-3,12,-8,15r15,22r-17,0xm73,-189v9,0,19,1,17,-9v1,-7,-10,-4,-17,-5r0,14","w":162},{"d":"183,-131v11,72,-32,88,-105,83r0,48r-53,0r0,-187v66,0,169,-12,158,56xm131,-107v-1,-19,4,-37,-19,-37r-34,0r0,54v21,-1,54,6,53,-17","w":192},{"d":"143,0r-34,-50r-31,0r0,50r-53,0r0,-187v67,0,158,-13,158,56v0,34,1,56,-22,70r41,61r-59,0xm131,-108v-1,-19,4,-36,-18,-36r-35,0r0,52v21,-2,54,7,53,-16","w":207},{"d":"161,-134v8,48,-38,73,-61,91r66,0r0,43r-146,0r0,-42v24,-25,102,-59,89,-87v2,-26,-63,-14,-83,-9r-8,-43v54,-18,154,-16,143,47","w":183},{"d":"149,-146r-50,0r0,171r-38,0r0,-171r-50,0r0,-34r50,0r0,-60r38,0r0,60r50,0r0,34","w":159},{"d":"187,-192r-64,0r0,192r-54,0r0,-192r-65,0r0,-48r183,0r0,48","w":191},{"d":"75,4r-32,50r-23,-14r20,-40r-17,0r0,-60r52,0r0,64","w":98},{"d":"88,-282r-18,27v-21,-11,-33,-18,-50,-30r19,-30v14,11,31,22,49,33","w":106},{"d":"107,-88r-45,70r-35,-21r32,-49r-32,-49r35,-20","w":123},{"d":"170,4r-159,-79r0,-26r159,-78r16,31r-127,60r127,61","w":203},{"d":"155,-151r-31,19r-40,-72r-41,72r-30,-19r54,-96r33,0","w":167},{"d":"108,-210r-92,0r0,-33r92,0r0,33","w":123},{"d":"118,-240r77,120r-77,120r-32,0r-77,-120r77,-120r32,0xm149,-120r-47,-72r-47,72r47,72","w":204},{"d":"153,0r-78,-158r0,158r-52,0r0,-240r67,0r78,165r0,-165r52,0r0,240r-67,0xm103,-305v20,0,48,36,56,1r24,11v-6,22,-19,35,-38,35v-25,0,-46,-32,-59,1r-20,-17v8,-16,20,-31,37,-31","w":243},{"d":"113,4r-31,-15r83,-180r31,15xm63,-85v-48,0,-51,-24,-50,-61v0,-24,9,-45,50,-45v48,0,51,24,51,61v0,25,-10,45,-51,45xm77,-126v-1,-16,5,-34,-14,-34v-19,0,-13,18,-14,34v0,8,6,10,14,10v8,0,14,-2,14,-10xm215,4v-49,0,-53,-24,-51,-62v0,-24,10,-44,51,-44v49,0,51,24,50,61v0,25,-9,45,-50,45xm229,-37v-1,-16,5,-34,-14,-34v-19,0,-13,18,-14,34v0,8,6,10,14,10v8,0,14,-2,14,-10xm331,4v-49,0,-53,-24,-51,-62v0,-24,10,-44,51,-44v49,0,51,23,51,61v0,25,-10,45,-51,45xm345,-37v-1,-16,5,-34,-14,-34v-19,0,-13,18,-14,34v0,8,6,10,14,10v8,0,14,-2,14,-10","w":396},{"d":"135,0r-71,0r-59,-187r53,0r41,145r41,-145r53,0","w":198},{"d":"75,0r-52,0r0,-60r52,0r0,60xm174,0r-52,0r0,-60r52,0r0,60xm273,0r-52,0r0,-60r52,0r0,60","w":295},{"d":"181,-67v0,48,-15,71,-87,71v-28,0,-57,-7,-78,-16r9,-42v22,7,44,12,69,12v28,0,33,-6,33,-26v0,-22,-1,-23,-40,-32v-58,-13,-66,-24,-66,-76v0,-77,86,-74,155,-59r-5,45v-27,-5,-45,-7,-67,-7v-24,0,-29,4,-29,22v0,23,0,23,38,32v65,15,68,29,68,76xm136,-313r14,22r-46,34r-46,-34r14,-22v13,6,20,9,32,16v12,-7,19,-10,32,-16"},{"d":"39,-203r-23,-23v15,-14,28,-26,43,-44r25,26v-18,18,-27,27,-45,41xm108,-203r-23,-23v15,-14,27,-26,42,-44r25,26v-18,18,-26,27,-44,41","w":168},{"d":"84,4v-22,0,-48,-4,-68,-13r9,-40v16,5,40,9,60,9v20,0,23,-4,23,-15v0,-12,-2,-15,-36,-20v-49,-8,-54,-27,-54,-61v0,-64,84,-60,139,-47r-7,42v-21,-4,-40,-6,-57,-6v-17,0,-21,3,-21,13v0,13,1,14,33,20v53,9,57,22,57,57v0,40,-15,61,-78,61","w":177},{"d":"79,0r-54,0r0,-240r54,0r0,240xm36,-262r-41,0r0,-39r41,0r0,39xm109,-262r-41,0r0,-39r41,0r0,39","w":104},{"d":"166,-68r-52,0r0,54r-42,0r0,-54r-52,0r0,-39r52,0r0,-54r42,0r0,54r52,0r0,39","w":186},{"d":"91,-10r-39,14v-19,-46,-34,-95,-34,-149v0,-57,79,-50,119,-35r-6,34v-15,-4,-38,-8,-54,-8v-12,0,-16,4,-16,14v0,46,13,85,30,130xm102,-110r38,-13v19,46,34,94,34,148v0,57,-79,50,-119,35r7,-34v15,4,38,9,54,9v12,0,15,-5,15,-15v0,-46,-12,-85,-29,-130","w":186},{"d":"73,-184r-32,50r-23,-13r21,-40r-18,0r0,-60r52,0r0,63","w":92},{"d":"139,0r0,-71r-61,0r0,71r-53,0r0,-187r53,0r0,70r61,0r0,-70r53,0r0,187r-53,0","w":217},{"d":"65,76r-36,0r0,-360r36,0r0,360","w":93},{"d":"110,-67v-24,0,-39,-23,-50,-23v-12,0,-19,13,-23,23r-28,-17v11,-28,26,-45,51,-45v18,0,37,22,50,22v12,0,19,-12,22,-22r29,16v-8,24,-24,46,-51,46","w":165},{"d":"88,-231r-18,28v-17,-10,-30,-18,-50,-31r19,-31v18,13,32,23,49,34","w":106},{"d":"114,34r-38,21v-32,-40,-56,-93,-56,-164v0,-71,24,-125,56,-165r38,21v-55,76,-55,212,0,287","w":117},{"d":"27,0r0,-187r53,0r0,187r-53,0","w":107},{"d":"153,0r-78,-158r0,158r-52,0r0,-240r67,0r78,165r0,-165r52,0r0,240r-67,0","w":243},{"d":"169,-108r-149,0r0,-35r149,0r0,35xm169,-38r-149,0r0,-35r149,0r0,35","w":189},{"d":"62,-18r-46,-70r46,-69r33,20r-32,49r32,49xm142,-18r-46,-70r46,-69r33,20r-32,49r32,49","w":201},{"d":"208,-79r-190,0r0,-43r190,0r0,43","w":226},{"d":"84,4v-22,0,-48,-4,-68,-13r9,-40v16,5,40,9,60,9v20,0,23,-4,23,-15v0,-12,-2,-15,-36,-20v-49,-8,-54,-27,-54,-61v0,-64,84,-60,139,-47r-7,42v-21,-4,-40,-6,-57,-6v-17,0,-21,3,-21,13v0,13,1,14,33,20v53,9,57,22,57,57v0,40,-15,61,-78,61xm262,4v-22,0,-48,-4,-68,-13r9,-40v16,5,39,9,59,9v20,0,24,-4,24,-15v0,-12,-2,-15,-36,-20v-49,-8,-54,-27,-54,-61v0,-65,83,-60,138,-47r-6,42v-21,-4,-40,-6,-57,-6v-17,0,-22,3,-22,13v0,13,2,14,34,20v53,9,56,22,56,57v0,40,-14,61,-77,61","w":355},{"d":"89,-191v90,0,67,55,74,127v6,65,-76,78,-142,62r3,-40v37,6,99,16,87,-33v-51,11,-96,2,-96,-60v0,-29,18,-56,74,-56xm89,-149v-21,0,-24,9,-22,27v2,17,29,9,44,6v1,-20,0,-33,-22,-33","w":179},{"d":"102,0v-90,-3,-84,-50,-82,-126v0,-32,23,-61,82,-61r165,0r0,42r-81,0r0,29r75,0r0,42r-75,0r0,32r81,0r0,42r-165,0xm132,-141v-25,-1,-62,-2,-59,21v3,34,-14,77,29,74r30,0r0,-95","w":287},{"d":"104,42r-90,-285r46,0r90,285r-46,0","w":166},{"d":"108,45r-81,0r0,-329r81,0r0,41r-29,0r0,247r29,0r0,41","w":114},{"d":"25,0r0,-187r136,0r0,42r-83,0r0,29r76,0r0,42r-76,0r0,32r83,0r0,42r-136,0xm85,-203r-19,-28v17,-11,31,-21,49,-34r20,31v-20,13,-33,21,-50,31","w":180},{"d":"32,-191r-16,-21v16,-12,35,-29,52,-43v17,14,35,31,51,43r-16,21v-16,-10,-23,-15,-35,-24v-12,9,-20,14,-36,24","w":135},{"d":"23,-204r32,-50r23,13r-20,40r17,0r0,60r-52,0r0,-63xm101,-204r31,-50r24,13r-21,40r18,0r0,60r-52,0r0,-63","w":173},{"d":"61,-199r-41,0r0,-43r41,0r0,43xm136,-199r-41,0r0,-43r41,0r0,43","w":156},{"d":"138,0r-62,-114r0,114r-51,0r0,-187r64,0r62,114r0,-114r50,0r0,187r-63,0","w":226},{"d":"121,63r-26,-60v-98,-10,-75,-84,-77,-173v0,-36,25,-73,93,-73v114,0,91,78,93,173v0,28,-16,56,-54,68r20,45xm111,-44v63,0,39,-71,39,-121v0,-19,-12,-30,-39,-30v-63,0,-39,70,-39,120v0,19,12,31,39,31","w":221},{"d":"94,-87r-38,0r0,-102r-30,14r-13,-29v25,-11,40,-34,81,-29r0,146xm196,-28v11,-18,61,-50,56,-74v-5,-22,-34,-8,-53,-6r-7,-33v42,-14,112,-15,98,45v2,23,-28,48,-40,64r44,0r0,32r-98,0r0,-28xm76,4r112,-253r28,13r-112,252","w":316},{"d":"18,-73v1,-93,-18,-167,93,-167r192,0r0,48r-97,0r0,44r90,0r0,48r-90,0r0,52r97,0r0,48r-192,0v-68,0,-93,-37,-93,-73xm152,-192v-35,-1,-84,-3,-80,30v6,48,-22,117,39,114r41,0r0,-144","w":321},{"d":"68,38r0,-35v-18,-1,-36,-6,-50,-12r9,-39v16,5,38,9,58,9v21,0,24,-5,24,-16v0,-14,-1,-16,-36,-21v-49,-7,-53,-29,-53,-61v0,-33,15,-49,52,-53r0,-35r41,0r0,35v15,1,31,4,43,7r-7,41v-21,-4,-39,-7,-56,-7v-17,0,-21,4,-21,15v0,14,2,15,34,21v53,9,55,25,55,56v0,32,-9,54,-53,59r0,36r-40,0","w":178},{"d":"69,-66r-30,0v-12,-32,-14,-75,-12,-121r54,0v1,46,0,89,-12,121xm27,0r0,-49r54,0r0,49r-54,0","w":108},{"d":"87,41v0,29,-44,36,-71,24r5,-20v10,3,39,9,39,-4v1,-17,-28,1,-34,-13r7,-35r23,0r-5,24v26,-4,36,4,36,24","w":102},{"d":"126,0r-101,0r0,-187v56,3,150,-17,150,43v0,24,0,36,-20,46v23,8,28,23,28,52v0,27,-13,46,-57,46xm124,-122v0,-12,4,-27,-11,-27r-35,0r0,37v17,-3,46,8,46,-10xm131,-50v0,-12,3,-25,-11,-25r-42,0r0,36v18,-2,53,8,53,-11"},{"d":"155,-134r-11,60v20,10,34,-10,34,-34v0,-31,-22,-55,-61,-55v-44,0,-70,28,-70,70v0,61,64,80,122,61r7,26v-75,31,-162,-12,-162,-87v0,-59,39,-98,103,-98v61,0,92,41,92,82v0,55,-54,78,-87,46v-20,15,-58,7,-51,-22v7,-29,7,-61,45,-58v11,0,27,4,39,9xm121,-85r6,-33v-11,-3,-25,-4,-25,8v0,10,-11,29,2,31v4,0,13,-3,17,-6","w":221},{"d":"25,0r0,-187r136,0r0,42r-83,0r0,29r76,0r0,42r-76,0r0,32r83,0r0,42r-136,0xm111,-231r-18,28v-17,-10,-31,-18,-51,-31r20,-31v18,13,32,23,49,34","w":180},{"d":"111,-243v114,0,91,78,93,173v0,36,-25,74,-93,74v-114,0,-92,-78,-93,-174v0,-36,25,-73,93,-73xm111,-44v63,0,39,-71,39,-121v0,-19,-12,-30,-39,-30v-63,0,-39,70,-39,120v0,19,12,31,39,31xm95,-262r-41,0r0,-39r41,0r0,39xm168,-262r-41,0r0,-39r41,0r0,39","w":221},{"d":"116,-188v0,27,-18,48,-49,48v-31,0,-49,-21,-49,-48v0,-27,18,-48,49,-48v31,0,49,21,49,48xm89,-188v0,-13,-8,-24,-22,-24v-15,0,-21,11,-21,24v0,13,7,24,21,24v14,0,22,-11,22,-24","w":134},{"d":"25,0r0,-187r53,0r0,141r79,0r0,46r-132,0","w":169},{"d":"11,-76r0,-36r16,0r0,-75r86,0v83,0,73,52,73,121v0,38,-15,66,-73,66r-86,0r0,-76r-16,0xm134,-66v-3,-29,13,-78,-22,-76r-31,0r0,30r26,0r0,36r-26,0r0,31v24,0,56,5,53,-21","w":203},{"d":"79,0r-54,0r0,-240r54,0r0,240xm98,-279r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23v17,-12,29,-20,46,-33v17,13,29,21,46,33","w":104},{"d":"54,-243v20,0,47,35,55,1r25,11v-6,22,-19,34,-38,34v-25,0,-46,-31,-59,1r-21,-16v8,-16,21,-31,38,-31","w":150},{"d":"14,-116v0,-27,22,-49,49,-49v27,0,48,22,48,49v0,27,-21,48,-48,48v-27,0,-49,-21,-49,-48","w":125},{"d":"76,44r3,27v-28,10,-65,1,-63,-30v1,-23,26,-46,63,-41v-12,9,-28,21,-28,34v-1,13,14,12,25,10","w":95},{"d":"123,-19r-37,-37r-37,37r-29,-30r37,-37r-37,-37r29,-29r37,37r37,-37r30,29r-37,37r37,37","w":172},{"d":"108,-136r0,39v-12,-1,-22,0,-22,12v0,60,15,141,-51,136r-31,0r0,-41v15,0,30,2,30,-15v0,-46,-16,-112,34,-112v-51,0,-34,-66,-34,-111v0,-17,-14,-15,-30,-15r0,-41v48,-3,82,4,82,53r0,83v-1,11,10,13,22,12","w":122},{"d":"229,36r-52,0r0,-228r-71,0r0,228r-52,0r0,-228r-41,0r0,-48r258,0r0,48r-42,0r0,228","w":283},{"d":"149,-240r73,240r-56,0r-13,-47r-80,0r-13,47r-56,0r73,-240r72,0xm113,-192r-28,100r55,0","w":225},{"d":"18,9r19,-31v-32,-32,-19,-92,-19,-148v0,-36,25,-73,93,-73v22,0,40,4,54,10r17,-28r22,13r-19,30v32,32,19,92,19,148v0,36,-25,74,-93,74v-22,0,-40,-4,-54,-11r-17,29xm111,-195v-61,-3,-33,67,-39,115r66,-109v-6,-4,-15,-6,-27,-6xm84,-51v20,14,73,5,66,-24r0,-84","w":221},{"d":"153,-112r27,0r0,29r-40,0r-11,22r51,0r0,29r-55,0r0,32r-53,0r0,-32r-54,0r0,-29r50,0r-11,-22r-39,0r0,-29r25,0r-36,-75r54,0r38,84r37,-84r54,0","w":197},{"d":"148,-240r54,0r0,170v0,36,-22,74,-90,74v-68,0,-90,-38,-90,-74r0,-170r54,0r0,165v0,19,9,31,36,31v27,0,36,-12,36,-31r0,-165xm158,-279r-14,23v-13,-6,-20,-10,-32,-17v-12,7,-19,11,-32,17r-14,-23v17,-12,29,-20,46,-33v17,13,29,21,46,33","w":223},{"d":"27,0r0,-187r53,0r0,187r-53,0","w":107},{"d":"9,-105r0,-20r21,0v-12,-63,67,-75,129,-60r-6,41v-26,-4,-74,-16,-71,19r40,0r0,20r-40,0r0,23r40,0r0,19r-40,0v-4,35,45,23,71,20r6,40v-60,16,-142,6,-129,-60r-21,0r0,-19r21,0r0,-23r-21,0","w":173},{"d":"113,4r-31,-15r83,-180r31,15xm63,-85v-48,0,-51,-24,-50,-61v0,-24,9,-45,50,-45v48,0,51,24,51,61v0,25,-10,45,-51,45xm77,-126v-1,-16,5,-34,-14,-34v-19,0,-13,18,-14,34v0,8,6,10,14,10v8,0,14,-2,14,-10xm215,4v-49,0,-53,-24,-51,-62v0,-24,10,-44,51,-44v49,0,51,24,50,61v0,25,-9,45,-50,45xm229,-37v-1,-16,5,-34,-14,-34v-19,0,-13,18,-14,34v0,8,6,10,14,10v8,0,14,-2,14,-10","w":279},{"d":"105,-194v-56,-1,-27,71,-33,116v-6,46,57,33,95,27r8,47v-24,5,-46,8,-70,8v-104,3,-87,-83,-87,-174v0,-44,27,-73,87,-73v24,0,46,2,70,7r-8,47v-21,-4,-45,-5,-62,-5","w":187},{"d":"23,0r0,-240r54,0r0,240r-54,0xm154,0r-70,-122r65,-118r61,0r-67,118r72,122r-61,0","w":222},{"d":"201,-136v0,66,-11,99,-83,99r-41,0r0,37r-54,0r0,-240r54,0r0,36v68,-4,124,6,124,68xm118,-84v34,1,27,-20,29,-47v3,-32,-41,-24,-70,-25r0,72r41,0","w":210},{"d":"152,4r-31,50r-24,-14r21,-40r-18,0r0,-60r52,0r0,64xm75,4r-32,50r-23,-14r20,-40r-17,0r0,-60r52,0r0,64","w":175},{"d":"78,-145r0,37r78,0r0,42r-78,0r0,66r-53,0r0,-187r137,0r0,42r-84,0","w":174},{"d":"142,-49r-119,-63r0,-27r119,-62r15,29r-90,46r90,48xm166,0r-150,0r0,-35r150,0r0,35","w":185},{"d":"174,0r-151,0r0,-240r151,0r0,48r-97,0r0,44r90,0r0,48r-90,0r0,52r97,0r0,48xm92,-255r-18,-27v18,-11,35,-22,49,-33r19,30v-17,12,-29,19,-50,30","w":192},{"d":"87,41v0,29,-44,36,-71,24r5,-20v10,3,39,9,39,-4v1,-17,-28,1,-34,-13r7,-35r23,0r-5,24v26,-4,36,4,36,24","w":102},{"d":"109,52r-23,-49v-78,-7,-66,-61,-66,-133v0,-32,23,-61,82,-61v94,0,84,55,83,134v0,24,-14,47,-46,56r15,34xm131,-64v0,-36,15,-81,-29,-81v-44,0,-29,45,-29,81v0,13,9,22,29,22v20,0,29,-9,29,-22","w":204},{"d":"185,0r-3,-92r-30,69r-45,0r-30,-68r-4,91r-51,0r9,-187r52,0r46,109r47,-109r51,0r10,187r-52,0","w":258},{"d":"118,-53r0,53r-53,0r0,-53r-65,-134r54,0r37,84r38,-84r54,0xm89,-203r-18,-28v17,-11,31,-21,49,-34r19,31v-20,13,-33,21,-50,31","w":182},{"d":"149,-240r73,240r-56,0r-13,-47r-80,0r-13,47r-56,0r73,-240r72,0xm113,-192r-28,100r55,0xm144,-285v0,17,-12,30,-31,30v-19,0,-32,-12,-32,-30v0,-17,13,-30,32,-30v19,0,31,13,31,30xm125,-285v0,-8,-4,-13,-12,-13v-8,0,-13,5,-13,13v0,8,5,13,13,13v8,0,12,-5,12,-13","w":225},{"d":"239,0r-60,0r-32,-125r-32,125r-61,0r-50,-187r50,0r31,119r35,-119r54,0r34,119r31,-119r51,0","w":293}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-1194-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("_0PeB1$QGsvp_+MW{1n6E0Ev}I$eP1vp}Ia6GsoFPN=lA5Q>dMheifwmPnheifwRinheifw>JNheifw>iNheifwcAeheifw1JNheP-H@i0NK{-Hh$5cK{-H@PfaK{-HHw+fkn0gEa_~i$JTCo|-dNs}APGBK{Xt[c>mRM1Fr*8Vl4p#@h65QeID9%yW=vzu@AIaK{-H@P1NK{-H@Pf$K{-H@AmaK{-E6i-nK{-H@PsCQ}gd6imnM}gd@i-{M}gd@i0N>}gd@i0dD}gd@i0dhsMheifwc$Mheifw>PMwK{-Hh$mnK{-H@P1PK{-H@PmaK{-H@P0nK{-H@A5Kp}gd@i0EI}gNMifk@}gd6ifk5}gd@i0ED}gd6ifnR}gd6imnc}gd6ifk9PeheifwMiMheifwM$MheifwcPMheifwc$nheifwmANheifwRAeheifwmieheifw>AeheimEhiMheifw>AMheimk6$MheifwmiNheifw1$Nheifw1$nheifwMPMheifwcJNhePmPRinheifwciNheifw>i6$K{-HhJ-aK{sAIAIaK{-H6A5{K{-H6PfcK{sd@i-$K{sd@if$K{-H@AI$K{sd@ifPy}gd@i0aM}gd@i0Ee{Nheifw1AM@>}gNMifkQEnheifwcieheimE@$MhePmPmJNheifw1$>hK{-H5A5wK{-H@Pm$Q}gNMifkh}gd6imAe}gd@i0i@}gd@i-{R}gd@i0nc}gd@i0k@}gNMifk6NMheifwMiIvK{sAIAIk5}gNMifwc}+vK{-H@PsNK{-H@P-NK{-E6ifaK{-H@PmnK{-H@Amoa}gd6imA@-eheimE6AMheifw1$eheP-H@iRNK{-H@Pfo_}gNMifH9PgcK{sAIAIPK{-H@A5E9$eQIJ5NK{-H@P1$K{-H@Pm[4}gd@i0k6-glF}gd@i1ocNNMK{-H@A5cAC>*koReK{-H@Pfd@}gd@i1oR}gd@i-C6A+Pt}gd@i0iIoQcK{-EhimaK{-H6PfMV}gNMifwM}gd6ifi%}gd@i0NcNInK{-H@Ps$K{-H@P-HzA5*K{-H@P0oK{sd@i0PK{sd@ifk*iNheifw>ANheP-H@$5v8}gd@i0C%dDMK{sd@ifMK{-H@A5oK{-H@P1nK{-E6$fcK{-E@$foK{-H@P-oK{sd@ifoK{-Hh$fnK{-E@imnK{-H@AsN@KmaK{-E@imwd}gd6ifnc}gN1$1$M}gd6if$cTn%K{sd@i0oK{-EeAInK{-H@PfnK{-E@i5wI}gd6ifEI}gd@i-A@}gNMifwmKeheifwmP>4K{-H@A-{K{-E@i-Mrtg%K{sd@i0Er}gd@i-ih-meK{-H@AsaK{-E@i-oK{-H@P0A%}gd@i-d5}nhB}gd@i0d%}gd@i1iI}gd6ifnm}gd@i0k9BMnK{-H@A1oK{-Hh$-ERENheifw>J0aH}gd@i0d9}gd@i0CI}gd@i0E@Bnheifw1inheifwmPNheifaRAeheimH6iMheifaRAMheifwR$DeK{-E6i0Pw}gd@i0C9}gd@i0ke}gd@i0o>GNheimwcA6Nf|eheifwRPNheimHhPsPK{-E6$moK{-H@A5MK{sd@ifNhBNheifw1Pnheifwm$}K>~F$@B0MQ_+E>_|h*T-HlKfe>~FHlBfe@~1hMB1{QG+hFTsEpP>%FBgM@GgivXDQWGsArA>%#G5Q#}>[uJF{D{e@p_-=rT5rp_e@p{}*yXM@pB1NQtgNyXF*K~1%M{+RR~IRp{0N5{+clBI$c{0M#B>%rBD$QB1n4P|R*P1v6_f4*T0@W_64*_s{BAe4*}NQvKn4*}}Q*_+R[")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":195,"face":{"font-family":"Klavika Bold Caps","font-weight":700,"font-variant":"small-caps","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 6 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-6 -317 382 76","underline-thickness":"7.2","underline-position":"-40.68","stemh":"46","stemv":"53","unicode-range":"U+0020-U+FB02"}}));



