Drupal.locale = { 'pluralFormula': function ($n) { return Number((($n==1)?(0):((((($n%10)>=2)&&(($n%10)<=4))&&((($n%100)<10)||(($n%100)>=20)))?(1):2))); }, 'strings': {"Configure":"Konfiguruj","Loading":"\u0141adowanie","Show":"Poka\u017c","Select all rows in this table":"Zaznacza wszystkie wiersze tabeli","Deselect all rows in this table":"Cofa zaznaczenie wszystkich wierszy tabeli","Not published":"Nie do publikacji","Please wait...":"Prosz\u0119 czeka\u0107...","Hide":"Ukryj","By @name on @date":"Przez @name w @date","By @name":"Przez @name","Not in menu":"Nie ma w menu","Alias: @alias":"Alias: @alias","No alias":"Brak aliasu","New revision":"Nowa wersja","Drag to re-order":"Chwy\u0107, by zmieni\u0107 kolejno\u015b\u0107","Changes made in this table will not be saved until the form is submitted.":"Zmiany wprowadzone w tabeli zachowuje si\u0119 przyciskiem u do\u0142u formularza.","The changes to these blocks will not be saved until the \u003cem\u003eSave blocks\u003c\/em\u003e button is clicked.":"Zmiany wprowadzone w blokach zachowuje si\u0119 przyciskiem u do\u0142u formularza.","Show shortcuts":"Poka\u017c skr\u00f3ty","No revision":"Brak wersji","Not restricted":"Bez ogranicze\u0144","(active tab)":"(aktywna karta)","An AJAX HTTP error occurred.":"Wyst\u0105pi\u0142 b\u0142\u0105d w AJAX HTTP.","HTTP Result Code: !status":"B\u0142\u0105d HTTP: !status","An AJAX HTTP request terminated abnormally.":"Zapytanie AJAX HTTP zosta\u0142o przerwane.","Debugging information follows.":"Informacje diagnostyczne.","Path: !uri":"\u015acie\u017cka: !uri","StatusText: !statusText":"StatusText: !statusText","ResponseText: !responseText":"ResponseText: !responseText","ReadyState: !readyState":"ReadyState: !readyState","Not customizable":"Niekonfigurowalne","Restricted to certain pages":"Ograniczenie do okre\u015blonych stron.","The block cannot be placed in this region.":"Blok nie mo\u017ce by\u0107 umieszczony w tym obszarze.","Hide summary":"Ukryj podsumowanie","Edit summary":"Edycja podsumowania","@title dialog":"@title dialog","The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.":"Wybrany plik %filename nie m\u00f3g\u0142 zosta\u0107 wys\u0142any. Dozwolone s\u0105 jedynie nast\u0119puj\u0105ce rozszerzenia: %extensions.","Re-order rows by numerical weight instead of dragging.":"Zmie\u0144 kolejno\u015b\u0107 wierszy podaj\u0105c warto\u015bci numeryczne zamiast przeci\u0105gaj\u0105c.","Show row weights":"Poka\u017c wagi wierszy","Hide row weights":"Ukryj wagi wierszy","Autocomplete popup":"Okienko autouzupe\u0142niania","Searching for matches...":"Wyszukiwanie pasuj\u0105cych...","Hide shortcuts":"Ukryj skr\u00f3ty","No sub content or sibling content":"Nie wy\u015bwietlaj podstron","Insert this token into your form":"Wstaw ten wzorzec do formularza","First click a text field to insert your tokens into.":"Najpierw kliknij w pole tekstowe, do kt\u00f3rego b\u0119d\u0105 wstawione wzorce.","Sub content":"Podstrony s\u0105 wy\u015bwietlane","Sub content and sibling content":"Listy s\u0105 wy\u015bwietlane","Using default":"U\u017cyto domy\u015blnego","Automatic alias":"Alias automatyczny"} };;
// ColorBox v1.3.17.2 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
// Copyright (c) 2011 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php

(function ($, document, window) {
	var
	// ColorBox Default Settings.	
	// See http://colorpowered.com/colorbox for details.
	defaults = {
		transition: "elastic",
		speed: 300,
		width: false,
		initialWidth: "600",
		innerWidth: false,
		maxWidth: false,
		height: false,
		initialHeight: "450",
		innerHeight: false,
		maxHeight: false,
		scalePhotos: true,
		scrolling: true,
		inline: false,
		html: false,
		iframe: false,
		fastIframe: true,
		photo: false,
		href: false,
		title: false,
		rel: false,
		opacity: 0.9,
		preloading: true,
		current: "image {current} of {total}",
		previous: "previous",
		next: "next",
		close: "close",
		open: false,
		returnFocus: true,
		loop: true,
		slideshow: false,
		slideshowAuto: true,
		slideshowSpeed: 2500,
		slideshowStart: "start slideshow",
		slideshowStop: "stop slideshow",
		onOpen: false,
		onLoad: false,
		onComplete: false,
		onCleanup: false,
		onClosed: false,
		overlayClose: true,		
		escKey: true,
		arrowKey: true,
        top: false,
        bottom: false,
        left: false,
        right: false,
        fixed: false,
        data: false
	},
	
	// Abstracting the HTML and event identifiers for easy rebranding
	colorbox = 'colorbox',
	prefix = 'cbox',
    boxElement = prefix + 'Element',
	
	// Events	
	event_open = prefix + '_open',
	event_load = prefix + '_load',
	event_complete = prefix + '_complete',
	event_cleanup = prefix + '_cleanup',
	event_closed = prefix + '_closed',
	event_purge = prefix + '_purge',
	
	// Special Handling for IE
	isIE = $.browser.msie && !$.support.opacity, // Detects IE6,7,8.  IE9 supports opacity.  Feature detection alone gave a false positive on at least one phone browser and on some development versions of Chrome, hence the user-agent test.
	isIE6 = isIE && $.browser.version < 7,
	event_ie6 = prefix + '_IE6',

	// Cached jQuery Object Variables
	$overlay,
	$box,
	$wrap,
	$content,
	$topBorder,
	$leftBorder,
	$rightBorder,
	$bottomBorder,
	$related,
	$window,
	$loaded,
	$loadingBay,
	$loadingOverlay,
	$title,
	$current,
	$slideshow,
	$next,
	$prev,
	$close,
	$groupControls,

	// Variables for cached values or use across multiple functions
	settings,
	interfaceHeight,
	interfaceWidth,
	loadedHeight,
	loadedWidth,
	element,
	index,
	photo,
	open,
	active,
	closing,
    handler,
    loadingTimer,
    publicMethod;
	
	// ****************
	// HELPER FUNCTIONS
	// ****************

	// jQuery object generator to reduce code size
	function $div(id, cssText, div) { 
		div = document.createElement('div');
		if (id) {
            div.id = prefix + id;
        }
		div.style.cssText = cssText || '';
		return $(div);
	}

	// Convert '%' and 'px' values to integers
	function setSize(size, dimension) {
		return Math.round((/%/.test(size) ? ((dimension === 'x' ? $window.width() : $window.height()) / 100) : 1) * parseInt(size, 10));
	}
	
	// Checks an href to see if it is a photo.
	// There is a force photo option (photo: true) for hrefs that cannot be matched by this regex.
	function isImage(url) {
		return settings.photo || /\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(url);
	}
	
	// Assigns function results to their respective settings.  This allows functions to be used as values.
	function makeSettings(i) {
        settings = $.extend({}, $.data(element, colorbox));
        
		for (i in settings) {
			if ($.isFunction(settings[i]) && i.substring(0, 2) !== 'on') { // checks to make sure the function isn't one of the callbacks, they will be handled at the appropriate time.
			    settings[i] = settings[i].call(element);
			}
		}
        
		settings.rel = settings.rel || element.rel || 'nofollow';
		settings.href = settings.href || $(element).attr('href');
		settings.title = settings.title || element.title;
        
        if (typeof settings.href === "string") {
            settings.href = $.trim(settings.href);
        }
	}

	function trigger(event, callback) {
		if (callback) {
			callback.call(element);
		}
		$.event.trigger(event);
	}

	// Slideshow functionality
	function slideshow() {
		var
		timeOut,
		className = prefix + "Slideshow_",
		click = "click." + prefix,
		start,
		stop,
		clear;
		
		if (settings.slideshow && $related[1]) {
			start = function () {
				$slideshow
					.text(settings.slideshowStop)
					.unbind(click)
					.bind(event_complete, function () {
						if (index < $related.length - 1 || settings.loop) {
							timeOut = setTimeout(publicMethod.next, settings.slideshowSpeed);
						}
					})
					.bind(event_load, function () {
						clearTimeout(timeOut);
					})
					.one(click + ' ' + event_cleanup, stop);
				$box.removeClass(className + "off").addClass(className + "on");
				timeOut = setTimeout(publicMethod.next, settings.slideshowSpeed);
			};
			
			stop = function () {
				clearTimeout(timeOut);
				$slideshow
					.text(settings.slideshowStart)
					.unbind([event_complete, event_load, event_cleanup, click].join(' '))
					.one(click, start);
				$box.removeClass(className + "on").addClass(className + "off");
			};
			
			if (settings.slideshowAuto) {
				start();
			} else {
				stop();
			}
		} else {
            $box.removeClass(className + "off " + className + "on");
        }
	}

	function launch(target) {
		if (!closing) {
			
			element = target;
			
			makeSettings();
			
			$related = $(element);
			
			index = 0;
			
			if (settings.rel !== 'nofollow') {
				$related = $('.' + boxElement).filter(function () {
					var relRelated = $.data(this, colorbox).rel || this.rel;
					return (relRelated === settings.rel);
				});
				index = $related.index(element);
				
				// Check direct calls to ColorBox.
				if (index === -1) {
					$related = $related.add(element);
					index = $related.length - 1;
				}
			}
			
			if (!open) {
				open = active = true; // Prevents the page-change action from queuing up if the visitor holds down the left or right keys.
				
				$box.show();
				
				if (settings.returnFocus) {
					try {
						element.blur();
						$(element).one(event_closed, function () {
							try {
								this.focus();
							} catch (e) {
								// do nothing
							}
						});
					} catch (e) {
						// do nothing
					}
				}
				
				// +settings.opacity avoids a problem in IE when using non-zero-prefixed-string-values, like '.5'
				$overlay.css({"opacity": +settings.opacity, "cursor": settings.overlayClose ? "pointer" : "auto"}).show();
				
				// Opens inital empty ColorBox prior to content being loaded.
				settings.w = setSize(settings.initialWidth, 'x');
				settings.h = setSize(settings.initialHeight, 'y');
				publicMethod.position();
				
				if (isIE6) {
					$window.bind('resize.' + event_ie6 + ' scroll.' + event_ie6, function () {
						$overlay.css({width: $window.width(), height: $window.height(), top: $window.scrollTop(), left: $window.scrollLeft()});
					}).trigger('resize.' + event_ie6);
				}
				
				trigger(event_open, settings.onOpen);
				
				$groupControls.add($title).hide();
				
				$close.html(settings.close).show();
			}
			
			publicMethod.load(true);
		}
	}

	// ****************
	// PUBLIC FUNCTIONS
	// Usage format: $.fn.colorbox.close();
	// Usage from within an iframe: parent.$.fn.colorbox.close();
	// ****************
	
	publicMethod = $.fn[colorbox] = $[colorbox] = function (options, callback) {
		var $this = this;
		
        options = options || {};
        
		if (!$this[0]) {
			if ($this.selector) { // if a selector was given and it didn't match any elements, go ahead and exit.
                return $this;
            }
            // if no selector was given (ie. $.colorbox()), create a temporary element to work with
			$this = $('<a/>');
			options.open = true; // assume an immediate open
		}
		
		if (callback) {
			options.onComplete = callback;
		}
		
		$this.each(function () {
			$.data(this, colorbox, $.extend({}, $.data(this, colorbox) || defaults, options));
			$(this).addClass(boxElement);
		});
		
        if (($.isFunction(options.open) && options.open.call($this)) || options.open) {
			launch($this[0]);
		}
        
		return $this;
	};

	// Initialize ColorBox: store common calculations, preload the interface graphics, append the html.
	// This preps ColorBox for a speedy open when clicked, and minimizes the burdon on the browser by only
	// having to run once, instead of each time colorbox is opened.
	publicMethod.init = function () {
		// Create & Append jQuery Objects
		$window = $(window);
		$box = $div().attr({id: colorbox, 'class': isIE ? prefix + (isIE6 ? 'IE6' : 'IE') : ''});
		$overlay = $div("Overlay", isIE6 ? 'position:absolute' : '').hide();
		
		$wrap = $div("Wrapper");
		$content = $div("Content").append(
			$loaded = $div("LoadedContent", 'width:0; height:0; overflow:hidden'),
			$loadingOverlay = $div("LoadingOverlay").add($div("LoadingGraphic")),
			$title = $div("Title"),
			$current = $div("Current"),
			$next = $div("Next"),
			$prev = $div("Previous"),
			$slideshow = $div("Slideshow").bind(event_open, slideshow),
			$close = $div("Close")
		);
		$wrap.append( // The 3x3 Grid that makes up ColorBox
			$div().append(
				$div("TopLeft"),
				$topBorder = $div("TopCenter"),
				$div("TopRight")
			),
			$div(false, 'clear:left').append(
				$leftBorder = $div("MiddleLeft"),
				$content,
				$rightBorder = $div("MiddleRight")
			),
			$div(false, 'clear:left').append(
				$div("BottomLeft"),
				$bottomBorder = $div("BottomCenter"),
				$div("BottomRight")
			)
		).children().children().css({'float': 'left'});
		
		$loadingBay = $div(false, 'position:absolute; width:9999px; visibility:hidden; display:none');
		
		$('body').prepend($overlay, $box.append($wrap, $loadingBay));
		
		$content.children()
		.hover(function () {
			$(this).addClass('hover');
		}, function () {
			$(this).removeClass('hover');
		}).addClass('hover');
		
		// Cache values needed for size calculations
		interfaceHeight = $topBorder.height() + $bottomBorder.height() + $content.outerHeight(true) - $content.height();//Subtraction needed for IE6
		interfaceWidth = $leftBorder.width() + $rightBorder.width() + $content.outerWidth(true) - $content.width();
		loadedHeight = $loaded.outerHeight(true);
		loadedWidth = $loaded.outerWidth(true);
		
		// Setting padding to remove the need to do size conversions during the animation step.
		$box.css({"padding-bottom": interfaceHeight, "padding-right": interfaceWidth}).hide();
		
        // Setup button events.
        // Anonymous functions here keep the public method from being cached, thereby allowing them to be redefined on the fly.
        $next.click(function () {
            publicMethod.next();
        });
        $prev.click(function () {
            publicMethod.prev();
        });
        $close.click(function () {
            publicMethod.close();
        });
		
		$groupControls = $next.add($prev).add($current).add($slideshow);
		
		// Adding the 'hover' class allowed the browser to load the hover-state
		// background graphics in case the images were not part of a sprite.  The class can now can be removed.
		$content.children().removeClass('hover');
		
		$overlay.click(function () {
			if (settings.overlayClose) {
				publicMethod.close();
			}
		});
		
		// Set Navigation Key Bindings
		$(document).bind('keydown.' + prefix, function (e) {
            var key = e.keyCode;
			if (open && settings.escKey && key === 27) {
				e.preventDefault();
				publicMethod.close();
			}
			if (open && settings.arrowKey && $related[1]) {
				if (key === 37) {
					e.preventDefault();
					$prev.click();
				} else if (key === 39) {
					e.preventDefault();
					$next.click();
				}
			}
		});
	};
	
	publicMethod.remove = function () {
		$box.add($overlay).remove();
		$('.' + boxElement).removeData(colorbox).removeClass(boxElement);
	};

	publicMethod.position = function (speed, loadedCallback) {
        var top = 0, left = 0;
        
        $window.unbind('resize.' + prefix);
        
        // remove the modal so that it doesn't influence the document width/height        
        $box.hide();
        
        if (settings.fixed && !isIE6) {
            $box.css({position: 'fixed'});
        } else {
            top = $window.scrollTop();
            left = $window.scrollLeft();
            $box.css({position: 'absolute'});
        }
        
		// keeps the top and left positions within the browser's viewport.
        if (settings.right !== false) {
            left += Math.max($window.width() - settings.w - loadedWidth - interfaceWidth - setSize(settings.right, 'x'), 0);
        } else if (settings.left !== false) {
            left += setSize(settings.left, 'x');
        } else {
            left += Math.round(Math.max($window.width() - settings.w - loadedWidth - interfaceWidth, 0) / 2);
        }
        
        if (settings.bottom !== false) {
            top += Math.max(document.documentElement.clientHeight - settings.h - loadedHeight - interfaceHeight - setSize(settings.bottom, 'y'), 0);
        } else if (settings.top !== false) {
            top += setSize(settings.top, 'y');
        } else {
            top += Math.round(Math.max(document.documentElement.clientHeight - settings.h - loadedHeight - interfaceHeight, 0) / 2);
        }
        
        $box.show();
        
		// setting the speed to 0 to reduce the delay between same-sized content.
		speed = ($box.width() === settings.w + loadedWidth && $box.height() === settings.h + loadedHeight) ? 0 : speed || 0;
        
		// this gives the wrapper plenty of breathing room so it's floated contents can move around smoothly,
		// but it has to be shrank down around the size of div#colorbox when it's done.  If not,
		// it can invoke an obscure IE bug when using iframes.
		$wrap[0].style.width = $wrap[0].style.height = "9999px";
		
		function modalDimensions(that) {
			// loading overlay height has to be explicitly set for IE6.
			$topBorder[0].style.width = $bottomBorder[0].style.width = $content[0].style.width = that.style.width;
			$loadingOverlay[0].style.height = $loadingOverlay[1].style.height = $content[0].style.height = $leftBorder[0].style.height = $rightBorder[0].style.height = that.style.height;
		}
		
		$box.dequeue().animate({width: settings.w + loadedWidth, height: settings.h + loadedHeight, top: top, left: left}, {
			duration: speed,
			complete: function () {
				modalDimensions(this);
				
				active = false;
				
				// shrink the wrapper down to exactly the size of colorbox to avoid a bug in IE's iframe implementation.
				$wrap[0].style.width = (settings.w + loadedWidth + interfaceWidth) + "px";
				$wrap[0].style.height = (settings.h + loadedHeight + interfaceHeight) + "px";
				
				if (loadedCallback) {
					loadedCallback();
				}
                
                setTimeout(function(){  // small delay before binding onresize due to an IE8 bug.
                    $window.bind('resize.' + prefix, publicMethod.position);
                }, 1);
			},
			step: function () {
				modalDimensions(this);
			}
		});
	};

	publicMethod.resize = function (options) {
		if (open) {
			options = options || {};
			
			if (options.width) {
				settings.w = setSize(options.width, 'x') - loadedWidth - interfaceWidth;
			}
			if (options.innerWidth) {
				settings.w = setSize(options.innerWidth, 'x');
			}
			$loaded.css({width: settings.w});
			
			if (options.height) {
				settings.h = setSize(options.height, 'y') - loadedHeight - interfaceHeight;
			}
			if (options.innerHeight) {
				settings.h = setSize(options.innerHeight, 'y');
			}
			if (!options.innerHeight && !options.height) {				
				var $child = $loaded.wrapInner("<div style='overflow:auto'></div>").children(); // temporary wrapper to get an accurate estimate of just how high the total content should be.
				settings.h = $child.height();
				$child.replaceWith($child.children()); // ditch the temporary wrapper div used in height calculation
			}
			$loaded.css({height: settings.h});
			
			publicMethod.position(settings.transition === "none" ? 0 : settings.speed);
		}
	};

	publicMethod.prep = function (object) {
		if (!open) {
			return;
		}
		
		var callback, speed = settings.transition === "none" ? 0 : settings.speed;
		
		$loaded.remove();
		$loaded = $div('LoadedContent').append(object);
		
		function getWidth() {
			settings.w = settings.w || $loaded.width();
			settings.w = settings.mw && settings.mw < settings.w ? settings.mw : settings.w;
			return settings.w;
		}
		function getHeight() {
			settings.h = settings.h || $loaded.height();
			settings.h = settings.mh && settings.mh < settings.h ? settings.mh : settings.h;
			return settings.h;
		}
		
		$loaded.hide()
		.appendTo($loadingBay.show())// content has to be appended to the DOM for accurate size calculations.
		.css({width: getWidth(), overflow: settings.scrolling ? 'auto' : 'hidden'})
		.css({height: getHeight()})// sets the height independently from the width in case the new width influences the value of height.
		.prependTo($content);
		
		$loadingBay.hide();
		
		// floating the IMG removes the bottom line-height and fixed a problem where IE miscalculates the width of the parent element as 100% of the document width.
		//$(photo).css({'float': 'none', marginLeft: 'auto', marginRight: 'auto'});
		
        $(photo).css({'float': 'none'});
        
		// Hides SELECT elements in IE6 because they would otherwise sit on top of the overlay.
		if (isIE6) {
			$('select').not($box.find('select')).filter(function () {
				return this.style.visibility !== 'hidden';
			}).css({'visibility': 'hidden'}).one(event_cleanup, function () {
				this.style.visibility = 'inherit';
			});
		}
		
		callback = function () {
            var prev, prevSrc, next, nextSrc, total = $related.length, iframe, complete;
            
            if (!open) {
                return;
            }
            
            function removeFilter() {
                if (isIE) {
                    $box[0].style.removeAttribute('filter');
                }
            }
            
            complete = function () {
                clearTimeout(loadingTimer);
                $loadingOverlay.hide();
                trigger(event_complete, settings.onComplete);
            };
            
            if (isIE) {
                //This fadeIn helps the bicubic resampling to kick-in.
                if (photo) {
                    $loaded.fadeIn(100);
                }
            }
            
            $title.html(settings.title).add($loaded).show();
            
            if (total > 1) { // handle grouping
                if (typeof settings.current === "string") {
                    $current.html(settings.current.replace('{current}', index + 1).replace('{total}', total)).show();
                }
                
                $next[(settings.loop || index < total - 1) ? "show" : "hide"]().html(settings.next);
                $prev[(settings.loop || index) ? "show" : "hide"]().html(settings.previous);
                
                prev = index ? $related[index - 1] : $related[total - 1];
                next = index < total - 1 ? $related[index + 1] : $related[0];
                
                if (settings.slideshow) {
                    $slideshow.show();
                }
                
                // Preloads images within a rel group
                if (settings.preloading) {
                    nextSrc = $.data(next, colorbox).href || next.href;
                    prevSrc = $.data(prev, colorbox).href || prev.href;
                    
                    nextSrc = $.isFunction(nextSrc) ? nextSrc.call(next) : nextSrc;
                    prevSrc = $.isFunction(prevSrc) ? prevSrc.call(prev) : prevSrc;
                    
                    if (isImage(nextSrc)) {
                        $('<img/>')[0].src = nextSrc;
                    }
                    
                    if (isImage(prevSrc)) {
                        $('<img/>')[0].src = prevSrc;
                    }
                }
            } else {
                $groupControls.hide();
            }
            
            if (settings.iframe) {
                iframe = $('<iframe/>').addClass(prefix + 'Iframe')[0];
                
                if (settings.fastIframe) {
                    complete();
                } else {
                    $(iframe).one('load', complete);
                }
                iframe.name = prefix + (+new Date());
                iframe.src = settings.href;
                
                if (!settings.scrolling) {
                    iframe.scrolling = "no";
                }
                
                if (isIE) {
                    iframe.frameBorder = 0;
                    iframe.allowTransparency = "true";
                }
                
                $(iframe).appendTo($loaded).one(event_purge, function () {
                    iframe.src = "//about:blank";
                });
            } else {
                complete();
            }
            
            if (settings.transition === 'fade') {
                $box.fadeTo(speed, 1, removeFilter);
            } else {
                removeFilter();
            }
		};
		
		if (settings.transition === 'fade') {
			$box.fadeTo(speed, 0, function () {
				publicMethod.position(0, callback);
			});
		} else {
			publicMethod.position(speed, callback);
		}
	};

	publicMethod.load = function (launched) {
		var href, setResize, prep = publicMethod.prep;
		
		active = true;
		
		photo = false;
		
		element = $related[index];
		
		if (!launched) {
			makeSettings();
		}
		
		trigger(event_purge);
		
		trigger(event_load, settings.onLoad);
		
		settings.h = settings.height ?
				setSize(settings.height, 'y') - loadedHeight - interfaceHeight :
				settings.innerHeight && setSize(settings.innerHeight, 'y');
		
		settings.w = settings.width ?
				setSize(settings.width, 'x') - loadedWidth - interfaceWidth :
				settings.innerWidth && setSize(settings.innerWidth, 'x');
		
		// Sets the minimum dimensions for use in image scaling
		settings.mw = settings.w;
		settings.mh = settings.h;
		
		// Re-evaluate the minimum width and height based on maxWidth and maxHeight values.
		// If the width or height exceed the maxWidth or maxHeight, use the maximum values instead.
		if (settings.maxWidth) {
			settings.mw = setSize(settings.maxWidth, 'x') - loadedWidth - interfaceWidth;
			settings.mw = settings.w && settings.w < settings.mw ? settings.w : settings.mw;
		}
		if (settings.maxHeight) {
			settings.mh = setSize(settings.maxHeight, 'y') - loadedHeight - interfaceHeight;
			settings.mh = settings.h && settings.h < settings.mh ? settings.h : settings.mh;
		}
		
		href = settings.href;
		
        loadingTimer = setTimeout(function () {
            $loadingOverlay.show();
        }, 100);
        
		if (settings.inline) {
			// Inserts an empty placeholder where inline content is being pulled from.
			// An event is bound to put inline content back when ColorBox closes or loads new content.
			$div().hide().insertBefore($(href)[0]).one(event_purge, function () {
				$(this).replaceWith($loaded.children());
			});
			prep($(href));
		} else if (settings.iframe) {
			// IFrame element won't be added to the DOM until it is ready to be displayed,
			// to avoid problems with DOM-ready JS that might be trying to run in that iframe.
			prep(" ");
		} else if (settings.html) {
			prep(settings.html);
		} else if (isImage(href)) {
			$(photo = new Image())
			.addClass(prefix + 'Photo')
			.error(function () {
				settings.title = false;
				prep($div('Error').text('This image could not be loaded'));
			})
			.load(function () {
				var percent;
				photo.onload = null; //stops animated gifs from firing the onload repeatedly.
				
				if (settings.scalePhotos) {
					setResize = function () {
						photo.height -= photo.height * percent;
						photo.width -= photo.width * percent;	
					};
					if (settings.mw && photo.width > settings.mw) {
						percent = (photo.width - settings.mw) / photo.width;
						setResize();
					}
					if (settings.mh && photo.height > settings.mh) {
						percent = (photo.height - settings.mh) / photo.height;
						setResize();
					}
				}
				
				if (settings.h) {
					photo.style.marginTop = Math.max(settings.h - photo.height, 0) / 2 + 'px';
				}
				
				if ($related[1] && (index < $related.length - 1 || settings.loop)) {
					photo.style.cursor = 'pointer';
					photo.onclick = function () {
                        publicMethod.next();
                    };
				}
				
				if (isIE) {
					photo.style.msInterpolationMode = 'bicubic';
				}
				
				setTimeout(function () { // A pause because Chrome will sometimes report a 0 by 0 size otherwise.
					prep(photo);
				}, 1);
			});
			
			setTimeout(function () { // A pause because Opera 10.6+ will sometimes not run the onload function otherwise.
				photo.src = href;
			}, 1);
		} else if (href) {
			$loadingBay.load(href, settings.data, function (data, status, xhr) {
				prep(status === 'error' ? $div('Error').text('Request unsuccessful: ' + xhr.statusText) : $(this).contents());
			});
		}
	};
        
	// Navigates to the next page/image in a set.
	publicMethod.next = function () {
		if (!active && $related[1] && (index < $related.length - 1 || settings.loop)) {
			index = index < $related.length - 1 ? index + 1 : 0;
			publicMethod.load();
		}
	};
	
	publicMethod.prev = function () {
		if (!active && $related[1] && (index || settings.loop)) {
			index = index ? index - 1 : $related.length - 1;
			publicMethod.load();
		}
	};

	// Note: to use this within an iframe use the following format: parent.$.fn.colorbox.close();
	publicMethod.close = function () {
		if (open && !closing) {
			
			closing = true;
			
			open = false;
			
			trigger(event_cleanup, settings.onCleanup);
			
			$window.unbind('.' + prefix + ' .' + event_ie6);
			
			$overlay.fadeTo(200, 0);
			
			$box.stop().fadeTo(300, 0, function () {
                 
				$box.add($overlay).css({'opacity': 1, cursor: 'auto'}).hide();
				
				trigger(event_purge);
				
				$loaded.remove();
				
				setTimeout(function () {
					closing = false;
					trigger(event_closed, settings.onClosed);
				}, 1);
			});
		}
	};

	// A method for fetching the current element ColorBox is referencing.
	// returns a jQuery object.
	publicMethod.element = function () {
		return $(element);
	};

	publicMethod.settings = defaults;
    
	// Bind the live event before DOM-ready for maximum performance in IE6 & 7.
    handler = function (e) {
        // checks to see if it was a non-left mouse-click and for clicks modified with ctrl, shift, or alt.
        if (!((e.button !== 0 && typeof e.button !== 'undefined') || e.ctrlKey || e.shiftKey || e.altKey)) {
            e.preventDefault();
            launch(this);
        }
    };
    
    if ($.fn.delegate) {
        $(document).delegate('.' + boxElement, 'click', handler);
    } else {
        $('.' + boxElement).live('click', handler);
    }
    
	// Initializes ColorBox when the DOM has loaded
	$(publicMethod.init);

}(jQuery, document, this));;
(function ($) {

Drupal.behaviors.initColorbox = {
  attach: function (context, settings) {
    if (!$.isFunction($.colorbox)) {
      return;
    }
    $('a, area, input', context)
      .filter('.colorbox')
      .once('init-colorbox-processed')
      .colorbox(settings.colorbox);
  }
};

{
  $(document).bind('cbox_complete', function () {
    Drupal.attachBehaviors('#cboxLoadedContent');
  });
}

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxDefaultStyle = {
  attach: function (context, settings) {
    $(document).bind('cbox_complete', function () {
      // Only run if there is a title.
      if ($('#cboxTitle:empty', context).length == false) {
        setTimeout(function () { $('#cboxTitle', context).slideUp() }, 1500);
        $('#cboxLoadedContent img', context).bind('mouseover', function () {
          $('#cboxTitle', context).slideDown();
        });
        $('#cboxOverlay', context).bind('mouseover', function () {
          $('#cboxTitle', context).slideUp();
        });
      }
      else {
        $('#cboxTitle', context).hide();
      }
    });
  }
};

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxLoad = {
  attach: function (context, settings) {
    if (!$.isFunction($.colorbox)) {
      return;
    }
    $.urlParams = function (url) {
      var p = {},
          e,
          a = /\+/g,  // Regex for replacing addition symbol with a space
          r = /([^&=]+)=?([^&]*)/g,
          d = function (s) { return decodeURIComponent(s.replace(a, ' ')); },
          q = url.split('?');
      while (e = r.exec(q[1])) {
        e[1] = d(e[1]);
        e[2] = d(e[2]);
        switch (e[2].toLowerCase()) {
          case 'true':
          case 'yes':
            e[2] = true;
            break;
          case 'false':
          case 'no':
            e[2] = false;
            break;
        }
        if (e[1] == 'width') { e[1] = 'innerWidth'; }
        if (e[1] == 'height') { e[1] = 'innerHeight'; }
        p[e[1]] = e[2];
      }
      return p;
    };
    $('a, area, input', context)
      .filter('.colorbox-load')
      .once('init-colorbox-load-processed', function () {
        var params = $.urlParams($(this).attr('href'));
        $(this).colorbox($.extend({}, settings.colorbox, params));
      });
  }
};

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxInline = {
  attach: function (context, settings) {
    if (!$.isFunction($.colorbox)) {
      return;
    }
    $.urlParam = function(name, url){
      if (name == 'fragment') {
        var results = new RegExp('(#[^&#]*)').exec(url);
      }
      else {
        var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(url);
      }
      if (!results) { return ''; }
      return results[1] || '';
    };
    $('a, area, input', context).filter('.colorbox-inline').once('init-colorbox-inline-processed').colorbox({
      transition:settings.colorbox.transition,
      speed:settings.colorbox.speed,
      opacity:settings.colorbox.opacity,
      slideshow:settings.colorbox.slideshow,
      slideshowAuto:settings.colorbox.slideshowAuto,
      slideshowSpeed:settings.colorbox.slideshowSpeed,
      slideshowStart:settings.colorbox.slideshowStart,
      slideshowStop:settings.colorbox.slideshowStop,
      current:settings.colorbox.current,
      previous:settings.colorbox.previous,
      next:settings.colorbox.next,
      close:settings.colorbox.close,
      overlayClose:settings.colorbox.overlayClose,
      maxWidth:settings.colorbox.maxWidth,
      maxHeight:settings.colorbox.maxHeight,
      innerWidth:function(){
        return $.urlParam('width', $(this).attr('href'));
      },
      innerHeight:function(){
        return $.urlParam('height', $(this).attr('href'));
      },
      title:function(){
        return decodeURIComponent($.urlParam('title', $(this).attr('href')));
      },
      iframe:function(){
        return $.urlParam('iframe', $(this).attr('href'));
      },
      inline:function(){
        return $.urlParam('inline', $(this).attr('href'));
      },
      href:function(){
        return $.urlParam('fragment', $(this).attr('href'));
      }
    });
  }
};

})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * Copyright (c) 1992 Corel Corporation. All Rights Reserved.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"SwitzerlandCondensed","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"6","bbox":"-11 -342 294 80","underline-thickness":"21.96","underline-position":"-20.88","unicode-range":"U+0020-U+017C"},"glyphs":{" ":{"w":90},"!":{"d":"44,0r0,-36r33,0r0,36r-33,0xm52,-66r-8,-107r0,-97r33,0v2,73,-3,139,-9,204r-16,0","w":119},"\"":{"d":"15,-185r0,-81r20,0r0,81r-20,0xm55,-185r0,-81r20,0r0,81r-20,0","w":90},"#":{"d":"19,0r29,-91r-39,0r6,-22r39,0r14,-45r-39,0r6,-21r39,0r29,-92r19,0r-28,92r32,0r27,-92r21,0r-28,92r40,0r-7,21r-40,0r-13,45r41,0r-7,22r-40,0r-29,91r-20,0r28,-91r-31,0r-29,91r-20,0xm105,-113r14,-45r-32,0r-12,45r30,0"},"$":{"d":"168,-73v2,46,-26,79,-70,78r0,36r-16,0r0,-36v-54,-1,-70,-30,-69,-89r28,0v0,38,3,63,41,61r0,-102v-45,-15,-67,-39,-67,-73v0,-42,27,-72,67,-72r0,-24r16,0r0,24v44,-1,62,28,62,72r-29,0v0,-31,-6,-44,-33,-45r0,93v45,21,68,26,70,77xm98,-23v45,6,48,-58,25,-80v-6,-5,-13,-9,-25,-14r0,94xm82,-243v-33,-4,-48,48,-26,69v5,5,14,10,26,16r0,-85"},"%":{"d":"224,-1v-34,1,-50,-29,-50,-65v0,-38,15,-65,50,-65v36,1,48,23,48,64v0,44,-16,66,-48,66xm223,-111v-19,0,-25,23,-24,46v0,26,3,43,25,44v21,0,24,-20,24,-44v0,-28,-4,-46,-25,-46xm76,6r119,-277r20,0r-120,277r-19,0xm69,-134v-34,1,-48,-31,-48,-67v0,-37,13,-64,48,-64v37,1,49,22,49,64v0,45,-17,67,-49,67xm69,-245v-19,0,-25,23,-24,46v1,26,2,44,24,44v21,0,25,-21,25,-44v-1,-28,-2,-46,-25,-46","w":299},"&":{"d":"170,-24v-41,57,-143,30,-143,-48v0,-41,29,-64,55,-82v-38,-32,-32,-116,26,-116v32,-1,57,24,57,55v-1,27,-25,53,-47,66r52,75v5,-15,12,-31,11,-50r26,0v0,27,-8,57,-19,75r35,50r-36,0xm135,-211v4,-29,-27,-46,-44,-26v-13,29,-4,42,14,68v19,-14,26,-20,30,-42xm58,-72v-5,54,73,68,96,26r-58,-88v-25,20,-35,29,-38,62","w":240},"'":{"d":"23,-235r0,-36r34,0v2,43,-1,81,-34,90r0,-17v13,-5,18,-18,18,-37r-18,0","w":80,"k":{"s":20,"'":6}},"(":{"d":"103,-270v-63,91,-56,257,0,347r-20,0v-26,-34,-57,-111,-56,-170v2,-80,22,-117,56,-177r20,0","w":119},")":{"d":"37,-270v58,76,76,216,23,307r-23,40r-20,0v26,-44,46,-104,46,-171v0,-79,-17,-119,-47,-176r21,0","w":119},"*":{"d":"75,-209r-40,-17r6,-15r41,16r0,-45r18,0r0,44r40,-15r6,17r-42,14r28,34r-15,12r-28,-37r-26,36r-15,-11"},"+":{"d":"15,-79r0,-25r62,0r0,-78r25,0r0,78r63,0r0,25r-63,0r0,79r-25,0r0,-79r-62,0"},",":{"d":"29,37v12,-3,18,-19,17,-37r-17,0r0,-36r33,0v1,43,2,80,-33,89r0,-16","w":90},"-":{"d":"16,-99r0,-30r87,0r0,30r-87,0","w":119},".":{"d":"29,0r0,-36r33,0r0,36r-33,0","w":90},"\/":{"d":"-5,10r88,-280r22,0r-87,280r-23,0","w":99},"0":{"d":"90,6v-60,0,-73,-60,-73,-136v0,-79,8,-140,73,-140v68,0,74,62,74,140v1,77,-9,136,-74,136xm90,-243v-47,4,-43,59,-43,124v0,63,-3,97,43,97v41,0,43,-55,43,-108v-1,-64,1,-106,-43,-113"},"1":{"d":"27,-220v44,1,59,-12,64,-50r23,0r0,270r-30,0r0,-197r-57,0r0,-23"},"2":{"d":"91,-270v77,-4,82,107,37,147r-51,46v-19,20,-28,21,-30,50r114,0r0,27r-145,0v-4,-98,87,-103,109,-174v10,-30,-1,-69,-36,-69v-35,0,-44,28,-42,65r-29,0v-2,-57,19,-89,73,-92"},"3":{"d":"131,-72v-1,-44,-15,-53,-63,-53r0,-28v36,5,56,-11,56,-49v0,-28,-13,-41,-40,-41v-30,0,-37,20,-37,53r-29,0v0,-47,20,-80,66,-80v39,0,70,27,70,67v0,35,-13,51,-38,61v27,4,45,30,45,62v0,54,-24,86,-77,86v-50,0,-72,-32,-71,-86r29,0v0,34,12,58,45,58v31,-1,45,-18,44,-50"},"4":{"d":"10,-94r101,-176r28,0r0,176r23,0r0,26r-23,0r0,68r-31,0r0,-68r-98,0r0,-26xm108,-94r0,-129r-74,129r74,0"},"5":{"d":"84,-150v-20,0,-31,10,-37,24r-26,0r15,-139r115,0r0,27r-91,0r-11,80v9,-11,24,-19,43,-19v46,0,69,37,69,86v0,83,-80,126,-129,74v-12,-12,-17,-31,-17,-53r32,0v1,33,8,48,40,48v30,0,43,-31,42,-66v-1,-40,-9,-62,-45,-62"},"6":{"d":"90,6v-66,-2,-75,-63,-75,-141v0,-71,16,-133,79,-135v41,-1,65,23,64,64r-30,0v0,-23,-7,-37,-30,-37v-39,-1,-57,59,-52,105v9,-18,27,-33,52,-32v44,0,68,39,67,86v-1,47,-29,92,-75,90xm49,-86v0,38,9,64,45,64v27,0,40,-21,40,-64v-1,-36,-9,-58,-43,-58v-32,0,-42,22,-42,58"},"7":{"d":"165,-238v-45,56,-88,143,-90,238r-34,0v12,-94,50,-175,98,-238r-124,0r0,-27r150,0r0,27"},"8":{"d":"91,5v-88,0,-101,-142,-22,-151v-32,-5,-43,-23,-44,-59v0,-40,27,-65,69,-65v39,0,62,24,62,63v0,38,-12,53,-42,62v32,5,50,28,50,65v0,49,-25,85,-73,85xm91,-243v-27,1,-34,16,-35,45v-1,23,11,40,34,40v27,0,34,-16,35,-43v1,-27,-9,-42,-34,-42xm133,-81v0,-28,-15,-50,-42,-50v-29,0,-43,18,-43,54v0,32,12,55,43,55v31,0,43,-24,42,-59"},"9":{"d":"84,-94v-47,0,-69,-36,-69,-85v0,-46,28,-93,73,-91v67,3,77,60,77,137v0,73,-14,137,-79,139v-40,1,-64,-26,-64,-65r31,0v0,24,10,37,33,37v40,-1,50,-54,50,-105v-12,19,-24,33,-52,33xm89,-243v-31,0,-43,30,-43,64v1,34,12,58,43,58v35,0,43,-25,44,-64v0,-32,-16,-57,-44,-58"},":":{"d":"29,-161r0,-36r33,0r0,36r-33,0xm29,0r0,-36r33,0r0,36r-33,0","w":90},";":{"d":"29,-161r0,-36r33,0r0,36r-33,0xm29,0r0,-36r33,0v0,43,5,79,-33,89r0,-16v11,-3,17,-20,17,-37r-17,0","w":90},"<":{"d":"15,-80r0,-23r151,-84r0,26r-123,69r122,69r0,27"},"=":{"d":"16,-113r0,-26r149,0r0,26r-149,0xm16,-45r0,-24r149,0r0,24r-149,0"},">":{"d":"137,-91r-122,-69r0,-26r150,83r0,23r-150,84r0,-27"},"?":{"d":"97,-246v-32,1,-45,22,-44,60r-32,0v0,-49,23,-84,71,-84v41,0,75,27,75,69v0,64,-68,70,-64,139r-31,0v-10,-68,59,-83,62,-142v1,-22,-16,-42,-37,-42xm72,-36r32,0r0,36r-32,0r0,-36"},"A":{"d":"4,0r77,-271r40,0r76,271r-33,0r-21,-78r-86,0r-20,78r-33,0xm136,-105r-36,-144r-36,144r72,0","w":200,"k":{"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20,"'":20}},"B":{"d":"181,-81v0,51,-26,81,-76,81r-76,0r0,-271v74,-1,145,-10,145,70v0,29,-13,48,-40,58v32,4,47,26,47,62xm59,-155v45,1,84,4,84,-44v0,-20,-7,-33,-20,-39v-33,-7,-32,-4,-64,-5r0,88xm150,-77v0,-53,-38,-53,-91,-51r0,101v50,1,91,5,91,-50","w":200},"C":{"d":"105,6v-69,0,-86,-55,-86,-133v0,-84,11,-149,85,-149v52,0,77,33,77,87r-30,0v1,-37,-17,-60,-50,-60v-45,0,-53,62,-51,121v2,64,4,104,54,107v35,2,48,-35,47,-77r30,0v0,60,-21,104,-76,104","w":200},"D":{"d":"198,-153v0,80,-14,153,-86,153r-82,0r0,-271r78,1v64,-1,90,49,90,117xm167,-120v0,-71,-1,-123,-63,-123r-44,0r0,216r49,0v44,1,58,-44,58,-93","w":219},"E":{"d":"27,0r0,-271r135,0r0,28r-105,0r0,89r99,0r0,27r-99,0r0,100r105,0r0,27r-135,0"},"F":{"d":"27,0r0,-271r127,0r0,28r-97,0r0,88r90,0r0,27r-90,0r0,128r-30,0","w":159,"k":{"A":13,".":40,",":40}},"G":{"d":"102,6v-68,-1,-82,-68,-82,-145v0,-83,19,-134,91,-137v48,-2,78,36,78,85r-30,0v0,-33,-15,-58,-48,-58v-56,1,-60,55,-60,125v0,59,8,103,54,103v48,0,57,-34,57,-91r-61,0r0,-27r91,0r0,141r-23,0r0,-42v-12,31,-27,46,-67,46","w":219},"H":{"d":"29,0r0,-271r29,0r0,113r104,0r0,-113r30,0r0,271r-30,0r0,-131r-104,0r0,131r-29,0","w":219},"I":{"d":"35,0r0,-270r31,0r0,270r-31,0","w":99},"J":{"d":"132,-67v0,48,-15,72,-61,72v-55,0,-63,-26,-63,-89r30,0v-1,41,0,62,30,62v29,0,35,-15,35,-45r0,-203r29,0r0,203","w":159},"K":{"d":"29,0r0,-271r29,0r0,140r100,-140r36,0r-86,113r90,158r-39,0r-72,-131r-29,37r0,94r-29,0","w":200},"L":{"d":"30,0r0,-270r30,0r0,243r110,0r0,27r-140,0","k":{"y":13,"Y":33,"W":27,"V":27,"T":27,"'":33}},"M":{"d":"27,0r0,-270r53,0r56,224r3,26v16,-88,42,-166,62,-250r52,0r0,270r-30,0r0,-258r-65,258r-36,0r-65,-258r0,258r-30,0","w":279},"N":{"d":"28,0r0,-271r49,0r86,250r-1,-250r31,0r0,271r-50,0r-80,-232r-5,-25r0,257r-30,0","w":219},"O":{"d":"112,6v-77,0,-90,-66,-90,-155v0,-74,19,-127,88,-127v69,0,90,56,90,134v0,83,-13,148,-88,148xm108,-249v-46,0,-57,50,-56,105v0,69,1,124,58,124v55,0,59,-55,59,-125v0,-56,-13,-104,-61,-104","w":219},"P":{"d":"147,-158v23,-38,4,-100,-60,-85r-26,0r0,102v32,-2,74,3,86,-17xm187,-195v2,71,-50,86,-126,81r0,114r-30,0r0,-270r71,0v56,-3,84,23,85,75","w":200,"k":{"A":13,".":46,",":46}},"Q":{"d":"112,6v-74,-1,-92,-62,-90,-147v1,-80,15,-130,85,-135v112,-8,106,167,72,243r31,26r-15,18r-30,-24v-12,11,-32,20,-53,19xm108,-249v-52,0,-55,63,-55,122v0,79,28,125,89,96r-27,-21r16,-20r27,21v16,-60,31,-198,-50,-198","w":219},"R":{"d":"139,-134v51,12,45,18,52,90v3,32,11,32,13,44r-35,0v-4,-12,-9,-35,-10,-69v-1,-53,-45,-54,-98,-51r0,120r-30,0r0,-270v76,-1,160,-10,160,68v0,39,-19,63,-52,68xm159,-201v0,-51,-51,-41,-98,-42r0,97v54,3,98,1,98,-55","w":219,"k":{"Y":6,"T":6}},"S":{"d":"101,6v-59,0,-86,-30,-82,-92r30,0v-1,46,9,66,54,65v52,9,71,-80,19,-93v-41,-20,-102,-21,-99,-85v-11,-74,98,-100,137,-54v10,11,14,30,14,53r-30,0v0,-32,-14,-46,-46,-49v-47,-4,-62,64,-26,82v55,28,107,24,110,87v3,54,-28,86,-81,86","w":200},"T":{"d":"6,-271r169,0r0,28r-70,0r0,243r-30,0r0,-243r-69,0r0,-28","k":{"\u00f3":27,"y":20,"w":27,"u":27,"s":27,"r":27,"o":27,"i":6,"e":27,"c":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"113,6v-60,-1,-84,-23,-84,-82r0,-195r30,0r0,195v0,37,15,55,52,55v38,-1,51,-19,51,-60r0,-189r29,0r0,206v0,43,-32,71,-78,70","w":219},"V":{"d":"4,-271r33,0r63,249r63,-249r33,0r-76,271r-38,0","w":200,"k":{"\u00f3":6,"u":6,"r":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"64,0r-58,-271r33,0r38,200r6,49v10,-89,32,-166,48,-249r38,0r38,199r5,51v11,-88,33,-167,49,-250r33,0r-63,271r-38,0r-39,-204r-5,-45v-9,90,-33,166,-49,249r-36,0","w":299,"k":{"\u00f3":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"83,-139r-75,-132r36,0r56,106r57,-106r35,0r-74,132r76,139r-36,0r-58,-113r-58,113r-36,0","w":200},"Y":{"d":"85,0r0,-105r-81,-166r33,0r63,136r64,-136r33,0r-83,166r0,105r-29,0","w":200,"k":{"\u00f3":20,"v":6,"u":13,"q":20,"p":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"10,-27r128,-216r-125,0r0,-27r156,0r0,27r-128,216r129,0r0,27r-160,0r0,-27"},"[":{"d":"36,75r0,-345r63,0r0,21r-35,0r0,302r35,0r0,22r-63,0","w":119},"\\":{"d":"80,0r-91,-270r21,0r91,270r-21,0","w":90},"]":{"d":"55,53r0,-302r-34,0r0,-21r63,0r0,345r-63,0r0,-22r34,0","w":119},"^":{"d":"25,-120r57,-150r16,0r58,150r-20,0r-47,-122r-45,122r-19,0"},"_":{"d":"0,43r0,-21r180,0r0,21r-180,0"},"`":{"d":"60,-225r-47,-51r39,0r32,51r-24,0","w":119,"k":{"`":6}},"a":{"d":"60,5v-62,6,-62,-90,-16,-109r55,-22v14,-14,9,-56,-23,-56v-26,0,-31,9,-31,35r-26,0v0,-40,19,-57,57,-59v82,-5,57,97,57,167v0,17,4,20,17,18r0,21v-25,3,-46,1,-42,-28v-10,19,-22,30,-48,33xm67,-18v18,0,36,-17,36,-38r0,-52v-43,22,-56,15,-62,57v-3,20,8,32,26,33","w":159},"b":{"d":"161,-109v-1,66,-8,114,-63,114v-19,0,-34,-10,-45,-29r0,24r-26,0r0,-271r28,0r0,91v10,-15,20,-26,42,-26v48,0,65,41,64,97xm95,-182v-37,0,-43,38,-42,88v1,44,4,76,41,76v34,0,38,-47,37,-90v-1,-37,-6,-74,-36,-74"},"c":{"d":"85,6v-54,-1,-69,-42,-69,-103v0,-66,14,-109,70,-109v38,0,60,28,59,68r-26,0v0,-25,-11,-44,-34,-43v-34,1,-39,39,-39,84v0,44,5,78,39,78v25,0,34,-23,34,-51r26,0v1,42,-21,77,-60,76","w":159},"d":{"d":"126,-27v-15,41,-82,45,-98,0v-20,-58,-19,-184,52,-179v20,1,35,13,45,27r0,-92r28,0r0,271r-27,0r0,-27xm83,-19v38,0,41,-34,42,-81v1,-47,-4,-82,-41,-82v-31,0,-38,47,-38,87v0,43,5,76,37,76"},"e":{"d":"80,6v-48,0,-65,-48,-65,-104v-1,-56,18,-109,65,-108v55,0,64,46,62,108r-97,0v-4,38,4,78,35,79v26,0,35,-18,34,-48r27,0v1,44,-21,73,-61,73xm113,-121v7,-50,-30,-79,-57,-49v-8,9,-11,27,-11,49r68,0","w":159},"f":{"d":"94,-246v-19,-1,-32,-1,-32,20r0,25r32,0r0,25r-32,0r0,176r-28,0r0,-176r-30,0r0,-25r30,0v-5,-48,9,-77,60,-70r0,25","w":99,"k":{"'":-6}},"g":{"d":"80,6v-47,0,-63,-47,-63,-102v0,-59,15,-109,64,-110v21,0,31,15,44,25r0,-20r28,0r0,168v0,65,-12,99,-69,101v-35,1,-58,-18,-60,-49r27,0v0,14,16,26,33,25v34,0,43,-30,41,-68v-11,16,-22,29,-45,30xm83,-181v-32,0,-39,43,-38,85v1,44,5,77,39,77v34,0,41,-35,41,-79v0,-50,-4,-83,-42,-83"},"h":{"d":"98,-182v-70,0,-35,115,-43,181r-28,0r0,-270r28,0r0,92v8,-14,31,-27,53,-27v32,0,47,20,47,54r0,151r-29,0r0,-138v0,-27,-5,-43,-28,-43"},"i":{"d":"27,0r0,-201r27,0r0,201r-27,0xm27,-225r0,-36r28,0r0,36r-28,0","w":80},"j":{"d":"5,42v19,-1,22,-2,22,-21r0,-222r28,0r0,207v0,47,-8,61,-50,63r0,-27xm27,-226r0,-36r29,0r0,36r-29,0","w":80},"k":{"d":"24,0r0,-271r29,0r0,164r70,-94r33,0r-62,79r64,122r-33,0r-50,-100r-22,29r0,71r-29,0","w":159},"l":{"d":"26,0r0,-271r28,0r0,271r-28,0","w":80},"m":{"d":"98,-181v-28,-1,-43,18,-43,45r0,136r-28,0r0,-201r28,0r0,27v16,-37,82,-44,95,0v12,-16,28,-31,53,-32v33,-1,51,20,50,54r0,152r-28,0r0,-148v1,-22,-10,-33,-30,-33v-27,0,-40,17,-40,45r0,136r-29,0r0,-141v0,-27,-4,-40,-28,-40","w":279},"n":{"d":"97,-182v-70,0,-33,116,-42,182r-29,0r0,-201r29,0r0,23v22,-42,100,-38,100,28r0,150r-29,0r0,-136v0,-31,-3,-46,-29,-46"},"o":{"d":"92,6v-55,0,-74,-47,-74,-109v0,-58,19,-102,71,-102v57,0,72,39,73,102v0,62,-15,109,-70,109xm90,-182v-34,0,-42,37,-42,79v0,49,5,84,43,84v35,0,41,-36,41,-81v0,-46,-5,-82,-42,-82"},"p":{"d":"97,5v-24,0,-28,-7,-43,-26r0,89r-28,0r0,-269r27,0r0,24v11,-19,27,-29,46,-29v43,1,62,48,62,97v0,65,-11,114,-64,114xm93,-182v-34,0,-40,39,-39,83v1,48,3,81,40,81v30,0,38,-42,37,-80v-1,-43,-4,-84,-38,-84"},"q":{"d":"125,-23v-21,40,-82,37,-96,-13v-16,-58,-16,-173,51,-170v20,0,39,13,47,27r0,-22r27,0r0,267r-29,0r0,-89xm88,-19v35,0,36,-39,37,-89v1,-40,-6,-73,-37,-74v-32,0,-39,39,-39,79v0,44,6,84,39,84"},"r":{"d":"116,-174v-83,-15,-53,100,-58,174r-28,0r0,-201r26,0r0,34v13,-25,25,-34,60,-36r0,29","w":119,"k":{"z":-7,"y":-6,"x":-7,"w":-6,"v":-6,"f":-7,"c":7,".":27,"-":13,",":27}},"s":{"d":"77,-19v35,4,49,-39,27,-56v-26,-20,-96,-23,-88,-77v-5,-52,69,-68,104,-41v12,10,17,25,17,46r-28,0v0,-24,-6,-34,-31,-34v-20,0,-31,8,-32,25v-1,57,98,36,98,98v0,65,-87,82,-118,41v-7,-10,-11,-23,-11,-41r28,0v0,27,9,36,34,39","w":159},"t":{"d":"91,0v-37,0,-60,5,-60,-40r0,-136r-27,0r0,-25r27,0r0,-54r28,0r0,54r34,0r0,25r-34,0r0,139v-2,17,17,12,32,13r0,24","w":99},"u":{"d":"76,5v-34,0,-48,-19,-48,-54r0,-152r28,0r0,155v0,17,6,26,21,27v76,-1,40,-113,48,-182r28,0r0,201r-28,0r0,-27v-10,19,-24,31,-49,32"},"v":{"d":"65,0r-60,-201r30,0r45,177r46,-177r30,0r-60,201r-31,0","w":159,"k":{".":20,",":20}},"w":{"d":"58,0r-51,-201r30,0r36,177r32,-177r30,0r34,177r35,-177r30,0r-50,201r-30,0r-34,-176r-32,176r-30,0","w":240,"k":{".":13,",":13}},"x":{"d":"65,-103r-58,-98r30,0r45,72r43,-72r30,0r-58,98r61,103r-31,0r-46,-80r-48,80r-29,0","w":159},"y":{"d":"9,39v32,14,52,-6,57,-35r-64,-205r30,0r45,175r47,-175r29,0r-71,228v-10,33,-33,46,-73,39r0,-27","w":159,"k":{".":20,",":20}},"z":{"d":"9,-24r92,-153r-88,0r0,-24r118,0r0,24r-92,153r93,0r0,23r-123,0r0,-23","w":140},"{":{"d":"35,-84v-1,-27,-10,-26,-33,-35v78,-2,-22,-169,94,-151v-72,5,8,141,-68,152v73,3,-3,137,68,153v-72,11,-61,-57,-61,-119","w":98},"|":{"d":"34,0r0,-270r23,0r0,270r-23,0","w":90},"}":{"d":"3,35v72,-14,-8,-153,69,-152v-73,-1,-1,-142,-69,-154v74,-9,60,56,60,118v0,25,11,28,35,35v-82,1,26,162,-95,153","w":98},"~":{"d":"125,-68v-20,3,-68,-42,-83,-17v-2,2,-6,10,-14,25r-12,-17v8,-19,21,-41,42,-43v11,-1,55,26,64,25v17,-2,22,-13,31,-29r12,16v-9,19,-19,37,-40,40"},"\u00d3":{"d":"112,6v-77,0,-90,-66,-90,-155v0,-74,19,-127,88,-127v69,0,90,56,90,134v0,83,-13,148,-88,148xm108,-249v-46,0,-57,50,-56,105v0,69,1,124,58,124v55,0,59,-55,59,-125v0,-56,-13,-104,-61,-104xm129,-342r38,0r-46,51r-25,0","w":219},"\u00f3":{"d":"92,6v-55,0,-74,-47,-74,-109v0,-58,19,-102,71,-102v57,0,72,39,73,102v0,62,-15,109,-70,109xm90,-182v-34,0,-42,37,-42,79v0,49,5,84,43,84v35,0,41,-36,41,-81v0,-46,-5,-82,-42,-82xm102,-270r38,0r-46,50r-25,0"},"\u0141":{"d":"30,-100r-17,11r0,-31r17,-11r0,-139r30,0r0,120r46,-28r0,31r-46,28r0,92r110,0r0,27r-140,0r0,-100"},"\u0142":{"d":"26,-113r-20,13r0,-31r20,-13r0,-127r28,0r0,110r24,-15r0,31r-24,15r0,130r-28,0r0,-113","w":80},"\u0106":{"d":"105,6v-69,0,-86,-55,-86,-133v0,-84,11,-149,85,-149v52,0,77,33,77,87r-30,0v1,-37,-17,-60,-50,-60v-45,0,-53,62,-51,121v2,64,4,104,54,107v35,2,48,-35,47,-77r30,0v0,60,-21,104,-76,104xm122,-342r39,0r-47,51r-24,0","w":200},"\u0107":{"d":"85,6v-54,-1,-69,-42,-69,-103v0,-66,14,-109,70,-109v38,0,60,28,59,68r-26,0v0,-25,-11,-44,-34,-43v-34,1,-39,39,-39,84v0,44,5,78,39,78v25,0,34,-23,34,-51r26,0v1,42,-21,77,-60,76xm102,-270r38,0r-46,50r-25,0","w":159},"\u0104":{"d":"170,79v-53,0,-36,-64,-6,-79r-21,-78r-86,0r-20,78r-33,0r77,-271r40,0r76,271r-16,0v-14,15,-17,26,-18,49v0,15,23,19,34,10v-2,15,-8,20,-27,20xm136,-105r-36,-144r-36,144r72,0","w":200},"\u0105":{"d":"94,53v0,-26,14,-37,31,-52v-11,-3,-17,-12,-17,-29v-10,19,-22,30,-48,33v-62,6,-62,-90,-16,-109r55,-22v14,-14,9,-56,-23,-56v-26,0,-31,9,-31,35r-26,0v0,-40,19,-57,57,-59v82,-5,57,97,57,167v0,17,4,20,17,18r0,21v-29,1,-42,62,-9,65v6,0,10,-2,15,-5v-2,15,-8,20,-27,20v-23,0,-35,-9,-35,-27xm67,-18v18,0,36,-17,36,-38r0,-52v-43,22,-56,15,-62,57v-3,20,8,32,26,33","w":159},"\u0118":{"d":"136,79v-54,0,-36,-63,-6,-79r-103,0r0,-271r135,0r0,28r-105,0r0,89r99,0r0,27r-99,0r0,100r105,0r0,27r-15,0v-12,14,-19,24,-18,49v0,15,23,19,34,10v-1,15,-8,20,-27,20","w":179},"\u0119":{"d":"85,79v-50,0,-37,-57,-12,-74v-84,-4,-78,-211,7,-211v55,0,64,46,62,108r-97,0v-4,38,4,78,35,79v26,0,35,-18,34,-48r27,0v0,40,-15,65,-48,71v-11,14,-15,24,-15,45v0,15,23,19,34,10v-2,15,-8,20,-27,20xm113,-121v7,-50,-30,-79,-57,-49v-8,9,-11,27,-11,49r68,0","w":159},"\u0143":{"d":"28,0r0,-271r49,0r86,250r-1,-250r31,0r0,271r-50,0r-80,-232r-5,-25r0,257r-30,0xm134,-342r39,0r-47,51r-24,0","w":219},"\u0144":{"d":"97,-182v-70,0,-33,116,-42,182r-29,0r0,-201r29,0r0,23v22,-42,100,-38,100,28r0,150r-29,0r0,-136v0,-31,-3,-46,-29,-46xm108,-270r39,0r-47,50r-24,0"},"\u015a":{"d":"101,6v-59,0,-86,-30,-82,-92r30,0v-1,46,9,66,54,65v52,9,71,-80,19,-93v-41,-20,-102,-21,-99,-85v-11,-74,98,-100,137,-54v10,11,14,30,14,53r-30,0v0,-32,-14,-46,-46,-49v-47,-4,-62,64,-26,82v55,28,107,24,110,87v3,54,-28,86,-81,86xm113,-342r39,0r-46,51r-25,0","w":200},"\u015b":{"d":"77,-19v35,4,49,-39,27,-56v-26,-20,-96,-23,-88,-77v-5,-52,69,-68,104,-41v12,10,17,25,17,46r-28,0v0,-24,-6,-34,-31,-34v-20,0,-31,8,-32,25v-1,57,98,36,98,98v0,65,-87,82,-118,41v-7,-10,-11,-23,-11,-41r28,0v0,27,9,36,34,39xm95,-270r39,0r-47,50r-24,0","w":159},"\u0179":{"d":"10,-27r128,-216r-125,0r0,-27r156,0r0,27r-128,216r129,0r0,27r-160,0r0,-27xm113,-342r39,0r-46,51r-25,0"},"\u017a":{"d":"9,-24r92,-153r-88,0r0,-24r118,0r0,24r-92,153r93,0r0,23r-123,0r0,-23xm93,-270r39,0r-47,50r-24,0","w":140},"\u017b":{"d":"10,-27r128,-216r-125,0r0,-27r156,0r0,27r-128,216r129,0r0,27r-160,0r0,-27xm80,-294r0,-36r27,0r0,36r-27,0"},"\u017c":{"d":"9,-24r92,-153r-88,0r0,-24r118,0r0,24r-92,153r93,0r0,23r-123,0r0,-23xm65,-225r0,-36r27,0r0,36r-27,0","w":140},"\u00a0":{"w":90}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1981-1983, 1989,1993, 1998 Heidelberger Druckmaschinen AG. All rights
 * reserved. The  digitally encoded machine readable outline data for producing the
 * Typefaces licensed are the property of Heidelberger Druckmaschinen AG and/or its
 * subsidiaries, represented by Linotype Library GmbH, Dupont Strasse 1, 61352 Bad
 * Homburg Germany. Portions © 1996-1998 Microsoft Corporation. All Rights
 * Reserved.
 * 
 * Trademark:
 * Palatino® is a registered trademark of Heidelberger Druckmaschinen AG and its
 * subsidiaries.
 * 
 * Description:
 * Palatino Linotype is the definitive new version of Hermann Zapfs Palatino,
 * which since its design in 1950 has become one of the world's most widely used
 * typefaces. For this new digital version, Professor Zapf has drawn numerous
 * additional characters to include an extensive range of ligatures, numerals,
 * fractions and support for Cyrillic and both monotonic and polytonic Greek.
 * Special care has been taken to enhance the quality of the letterforms when
 * displayed on the computer screen, ensuring that Palatino Linotype is highly
 * legible whether displayed on the screen or in print. This typeface is ideal for
 * use in extended text settings such as books, periodicals and catalogs.
 * 
 * 
 * 
 * Manufacturer:
 * LINOTYPE-HELL AG
 * 
 * Designer:
 * Hermann Zapf
 * 
 * Vendor URL:
 * http://www.fonts.de
 * 
 * License information:
 * http://www.LinotypeLibrary.com/
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Palatino Linotype","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 4 5 2 5 3 5 10 3 4","ascent":"288","descent":"-72","x-height":"19","cap-height":"19","bbox":"-53 -329 365.767 101.634","underline-thickness":"21.0938","underline-position":"-26.0156","slope":"-10","unicode-range":"U+0020-U+2026"},"glyphs":{" ":{"w":90},"A":{"d":"46,-21v-4,16,12,7,29,13v-1,3,0,8,-3,9v-28,-3,-49,1,-76,-1v4,-18,25,-5,31,-26r141,-224r17,0r34,234v3,9,14,4,27,8r-3,9r-86,-1v-2,-19,33,-1,31,-19r-10,-79r-87,0xm99,-112r78,0r-14,-102","w":259,"k":{"T":20,"V":30,"W":20,"Y":20,"v":13,"w":13,"y":20}},"B":{"d":"137,-130v63,-4,70,64,37,100v-30,33,-99,34,-161,30v1,-16,21,-5,21,-26v10,-42,30,-152,35,-202v2,-16,-19,-4,-30,-12v1,-3,0,-7,3,-8v57,6,162,-20,159,47v-2,43,-31,58,-64,71xm172,-196v1,-36,-37,-43,-73,-37v-7,33,-13,66,-18,98v53,6,90,-14,91,-61xm164,-76v0,-46,-40,-47,-85,-44r-16,103v51,16,101,-3,101,-59","w":219},"C":{"d":"53,-108v-7,96,98,120,163,71v4,6,-1,12,-3,18v-24,17,-53,26,-85,26v-70,0,-107,-39,-107,-108v-2,-115,108,-182,217,-136v-5,9,-6,31,-10,51v-15,4,-7,-18,-9,-29v-15,-13,-36,-19,-64,-19v-73,1,-97,54,-102,126","w":240},"D":{"d":"40,-247v102,-1,236,-21,228,92v-8,119,-91,172,-228,155v-10,-1,-21,2,-27,0v1,-16,21,-5,21,-26v10,-42,30,-152,35,-202v2,-16,-19,-4,-30,-12xm236,-151v5,-73,-61,-90,-136,-80r-36,211v21,4,42,6,62,6v77,-1,105,-65,110,-137","w":280},"E":{"d":"193,-57v-1,7,-5,50,-9,58r-171,-1r0,-8v13,-2,21,-2,23,-18r28,-150v5,-30,7,-49,7,-54v-1,-12,-17,-4,-29,-9v1,-3,0,-7,2,-9r161,1v-3,9,-5,41,-8,54v-16,2,-7,-34,-10,-31v-10,-15,-60,-7,-85,-8v-5,20,-11,53,-18,97v33,4,59,-3,91,0r-6,17r-87,-2r-17,103v33,4,75,4,104,-1v14,-3,4,-40,24,-39","w":219,"k":{"A":18,"\u0104":18}},"F":{"d":"184,-193v-4,-45,0,-38,-59,-40v-9,0,-17,0,-26,1r-20,109v34,3,59,-3,93,0r-7,18r-88,-2v-9,49,-13,78,-13,85v0,18,18,6,35,15v-1,3,0,7,-3,8r-92,-1v-5,-15,27,-7,26,-14v12,-48,39,-155,39,-215v0,-11,-13,-7,-30,-10v0,-18,33,-8,50,-8r109,0v-4,16,-3,37,-7,54r-7,0","w":200,"k":{"A":40,"\u0104":40,".":40,",":40}},"G":{"d":"222,-15v-25,9,-58,22,-91,22v-69,0,-108,-36,-110,-103v-3,-117,112,-190,222,-140v-5,13,-6,32,-11,51v-16,3,-6,-19,-10,-32v-12,-10,-41,-17,-63,-17v-72,0,-101,58,-106,130v-6,80,74,116,139,83r9,-54v0,-17,-32,-5,-42,-14v-3,-18,46,-4,49,-8v14,1,31,-2,43,1r-2,9v-32,-1,-23,42,-27,72","w":259},"H":{"d":"68,-229v-1,-11,-12,-6,-29,-10v1,-3,0,-7,2,-9r87,1v0,19,-31,-1,-30,23r-16,86r132,0v9,-52,15,-82,15,-91v0,-11,-13,-7,-30,-10v1,-3,0,-8,3,-9r86,1v3,17,-25,3,-27,15r-38,215v1,10,14,4,29,9v0,3,1,9,-2,9r-87,-1v-3,-19,30,1,30,-25r19,-98r-133,1v-11,63,-16,98,-16,105v1,10,14,4,29,9v-1,3,0,7,-2,9r-87,-1v-1,-18,26,-2,29,-20v8,-41,23,-125,32,-173v3,-19,4,-31,4,-36","w":280},"I":{"d":"63,-17v0,13,18,4,29,9v1,8,-4,9,-13,9r-76,-1v-1,-18,26,-1,30,-23r31,-170v3,-20,4,-32,4,-36v-1,-13,-13,-5,-29,-10v-2,-9,6,-10,15,-9v24,1,52,-2,74,1v1,19,-30,1,-29,20","w":119},"J":{"d":"64,-200v7,-39,4,-35,-29,-39v0,-19,36,-5,54,-8v11,1,27,-2,38,0v4,14,-27,9,-26,12v-27,80,-19,226,-63,289v-14,20,-28,26,-49,18v0,-3,-2,-8,0,-10v15,5,27,-1,32,-15v18,-51,31,-178,43,-247","w":119},"K":{"d":"68,-193v6,-38,14,-44,-24,-46v0,-3,-1,-9,2,-9r87,1v1,19,-30,0,-29,20v-5,15,-15,75,-20,101v33,-26,82,-72,112,-109v2,-1,1,-9,3,-13v16,3,31,-1,46,1v-4,18,-23,6,-35,26r-96,90r78,97v16,19,16,21,40,26v-3,18,-25,3,-49,9v-28,-40,-61,-80,-99,-122v-11,62,-17,97,-17,104v2,10,14,4,30,9v-1,3,0,7,-2,9r-87,-1v1,-3,0,-7,2,-9v43,-2,28,-9,37,-61","w":240},"L":{"d":"185,-59v2,23,-5,53,-8,60r-169,-1v1,-16,19,-6,22,-26r34,-202v1,-16,-18,-5,-29,-12v1,-3,0,-7,2,-8v21,2,69,-1,90,1r0,8v-10,3,-28,-1,-31,10v-14,52,-30,149,-36,213v34,1,82,10,105,-6v8,-6,2,-38,20,-37","w":200,"k":{"T":25,"V":18,"W":18,"Y":27,"y":13}},"M":{"d":"79,-223v-1,-17,-16,-12,-35,-16v1,-3,0,-7,2,-9r59,0r54,207r83,-143r34,-64v28,3,35,-1,60,1v3,20,-29,-1,-31,29r-15,192v-1,21,15,11,33,19v-1,3,0,7,-3,8v-24,-3,-68,1,-93,-1v1,-3,0,-7,2,-9v35,-2,33,0,35,-36r11,-163r-123,215r-8,0r-54,-206v-31,107,-46,167,-46,179v1,15,14,8,31,12v3,18,-37,5,-45,8v-6,-1,-24,2,-36,0v-3,-15,21,-7,24,-15v24,-58,44,-142,61,-208","w":339},"N":{"d":"67,-219v-9,-18,-18,-16,-40,-20v0,-19,36,-3,59,-9r122,211r31,-191v1,-12,-18,-6,-29,-11v0,-3,-1,-9,2,-9v25,1,53,-2,76,1v4,15,-28,8,-26,14v-16,63,-34,164,-44,238v-28,7,-28,-22,-38,-38r-100,-169r-29,180v-2,17,17,10,31,14v-1,3,0,8,-3,9v-27,-3,-50,1,-77,-1v2,-19,30,0,30,-28v7,-24,27,-144,35,-191","w":280},"O":{"d":"120,7v-64,0,-99,-39,-99,-102v0,-92,51,-157,145,-158v66,-1,103,33,103,99v0,91,-58,161,-149,161xm157,-239v-76,-1,-102,67,-104,142v0,57,24,88,79,89v77,1,106,-72,106,-144v0,-54,-27,-86,-81,-87","w":280,"k":{"A":21,"\u0104":21}},"P":{"d":"69,-42v-9,32,3,31,31,34v-1,3,0,8,-3,9v-24,-3,-66,1,-91,-1v0,-20,25,0,29,-23r36,-206v0,-13,-14,-5,-30,-10v5,-21,69,-5,108,-9v43,-4,64,17,64,53v0,58,-56,111,-116,83v-2,-19,15,-1,26,-4v36,-1,57,-32,58,-70v2,-45,-36,-55,-79,-46","w":219,"k":{"A":46,"\u0104":46,".":46,",":46}},"Q":{"d":"224,50v16,0,19,-15,24,-29v3,0,7,0,8,2v-2,26,-15,49,-40,49v-49,0,-89,-47,-130,-52v-24,-2,-27,21,-31,40v-4,-2,-7,-3,-7,-10v0,-26,19,-48,49,-45v-48,-7,-76,-46,-76,-100v0,-91,52,-157,145,-158v66,0,103,33,103,99v0,95,-63,168,-164,160v37,13,82,44,119,44xm157,-239v-76,-1,-102,67,-104,142v0,57,24,88,79,89v77,1,106,-72,106,-144v0,-54,-27,-86,-81,-87","w":280},"R":{"d":"71,-229v0,-11,-13,-7,-30,-10v0,-18,22,-6,45,-8v56,-4,125,-7,124,47v-1,41,-35,65,-75,73r46,71v26,35,22,41,49,48v3,13,-18,7,-24,8v-1,0,-9,0,-24,1r-85,-132v0,-7,10,-3,16,-4v63,10,101,-102,17,-100v-8,0,-18,1,-28,3r-36,210v2,14,13,11,34,14v-1,3,0,8,-3,9v-24,-3,-66,1,-91,-1v-5,-15,27,-7,26,-14v12,-48,39,-155,39,-215","w":240,"k":{"T":20,"V":27,"W":20,"Y":20,"y":13}},"S":{"d":"177,-82v-4,71,-94,115,-158,74v5,-15,4,-37,10,-53v3,0,8,-1,9,1r0,34v44,40,134,1,106,-63v-24,-34,-102,-11,-102,-79v0,-67,85,-106,141,-71v-4,10,-5,30,-9,47v-15,4,-7,-16,-9,-27v-29,-33,-97,-13,-97,38v0,68,113,25,109,99","w":200},"T":{"d":"113,-19v1,13,14,6,34,11v0,3,1,9,-2,9r-98,-1v1,-20,36,0,35,-23r24,-126v5,-31,9,-59,12,-83v-76,1,-66,-9,-82,43v-3,0,-8,1,-8,-2v11,-42,-14,-56,32,-56r175,0v-4,9,-4,37,-11,58v-13,1,-6,-5,-7,-23v0,-32,-13,-14,-69,-20","w":220,"k":{"A":33,"\u0104":33,"O":7,"\u00d3":7,"a":35,"c":35,"e":35,"i":20,"o":35,"r":35,"u":35,"w":31,"y":31,".":27,",":27,":":27,";":27,"\u00ad":20}},"U":{"d":"222,-18v0,15,22,4,33,11r-3,8v-19,-2,-46,0,-63,-1r9,-43v-20,23,-54,49,-96,49v-48,1,-72,-30,-63,-82r25,-151v0,-16,-18,-6,-30,-13v-2,-14,26,-5,32,-8v9,0,21,1,33,0r-34,194v1,43,58,49,93,28v15,-9,30,-20,44,-37r25,-165v1,-16,-17,-4,-31,-12v1,-3,0,-7,3,-8v26,3,62,-1,88,1v0,21,-30,-2,-29,22v-10,42,-36,162,-36,207","w":280},"V":{"d":"108,-239v-11,4,-30,-4,-29,11v4,66,8,82,25,192v40,-65,69,-113,86,-144v17,-31,26,-48,26,-51v1,-9,-24,-6,-33,-8v-2,-20,55,-1,78,-9v2,1,2,8,0,10v-29,5,-20,6,-40,39r-122,202r-18,0r-35,-236v1,-4,-14,-4,-26,-6v0,-3,-1,-9,2,-9v27,3,59,-1,87,1","w":236,"k":{"A":67,"\u0104":67,"O":21,"\u00d3":21,"a":35,"e":33,"i":27,"o":35,"r":33,"u":35,"y":28,".":46,",":46,":":13,";":13,"\u00ad":20}},"W":{"d":"321,-230v-1,-10,-14,-6,-29,-9v1,-19,50,-4,73,-8v5,12,-16,8,-18,13v-33,66,-72,167,-97,237r-17,0r-51,-198r-75,146v-11,22,-20,39,-24,52r-17,0r-24,-229v-2,-14,-9,-8,-24,-13v-1,-20,61,-5,84,-8v-1,3,0,8,-3,9v-21,1,-24,-1,-26,17v-1,5,12,128,17,172r101,-201r6,0r54,204r39,-98v21,-52,31,-80,31,-86","w":339,"k":{"A":33,"\u0104":33,"a":7,"e":7,"i":7,"o":7,"r":7,"u":7,"y":7,".":20,",":20,":":7,";":7,"\u00ad":7}},"X":{"d":"97,-69v-8,17,-45,41,-31,57v10,3,33,-2,25,13r-86,-1v4,-18,26,-5,36,-25r82,-98v-22,-36,-37,-79,-63,-111v-5,-7,-14,-1,-28,-5v1,-3,0,-7,2,-9r94,1v5,19,-39,-1,-26,25r39,77v21,-29,47,-53,65,-86v1,-11,-13,-3,-28,-8v0,-3,-1,-9,2,-9r80,1v3,15,-17,5,-23,14v-31,29,-61,68,-89,101r64,115v7,10,14,4,31,9v2,17,-40,5,-49,8v-8,-1,-30,2,-48,0v1,-3,0,-8,3,-9v49,8,17,-33,10,-47r-29,-54","w":259},"Y":{"d":"54,-251v57,9,60,89,77,140v20,-49,68,-127,117,-137r-2,25v-73,23,-112,121,-120,205v-1,13,21,5,32,10v-1,3,0,7,-2,9r-93,-1v-5,-13,25,-10,25,-11v18,-7,16,-58,21,-79v-10,-39,-26,-154,-82,-133v-2,-16,21,-17,27,-28","w":240,"k":{"A":33,"\u0104":33,"a":33,"e":40,"i":20,"o":40,"p":27,"q":33,"u":33,"v":27,".":33,",":33,":":27,";":27,"\u00ad":27}},"Z":{"d":"222,-59v1,18,-7,41,-9,60r-201,-1v3,-20,18,-28,29,-42r151,-191v-37,0,-108,-1,-128,5v-3,4,-3,24,-11,37v-3,0,-7,1,-8,-1v4,-15,1,-41,6,-56r183,1v0,11,-8,14,-13,21r-167,211v48,-2,107,5,146,-5v3,-1,5,-22,14,-39r8,0","w":240},"\u0104":{"d":"45,-16v1,9,15,4,27,8r-3,9r-73,-1v0,-14,19,-9,24,-17r148,-233r17,0r33,232v2,11,12,5,28,10v0,14,-18,7,-30,8v-13,13,-19,26,-19,38v0,25,29,19,37,3v1,1,5,1,4,4v-12,21,-25,31,-37,31v-44,-10,-27,-46,5,-76v-15,-1,-33,3,-46,0v1,-3,0,-8,3,-9v50,7,11,-57,15,-89r-87,0v-11,19,-44,70,-46,82xm177,-112r-14,-102r-64,102r78,0","w":259,"k":{"T":20,"V":30,"W":20,"Y":20,"v":13,"w":13,"y":20}},"\u0106":{"d":"218,-324v-16,8,-38,32,-74,52v-2,-2,-5,-2,-4,-6r45,-47r32,-4xm53,-108v-7,96,98,120,163,71v4,6,-1,12,-3,18v-24,17,-53,26,-85,26v-70,0,-107,-39,-107,-108v-2,-115,108,-182,217,-136v-5,9,-6,31,-10,51v-15,4,-7,-18,-9,-29v-15,-13,-36,-19,-64,-19v-73,1,-97,54,-102,126","w":240},"\u0118":{"d":"71,-230v0,-10,-13,-5,-29,-9v1,-3,0,-7,2,-9r161,1v-3,10,-5,41,-8,54r-6,0v-7,-42,2,-41,-55,-40v-14,0,-25,0,-34,1v-5,20,-11,53,-18,97v33,4,59,-3,91,0r-6,17r-87,-2r-17,103v26,4,101,5,106,-3v9,-4,5,-43,23,-36v-6,12,-3,38,-10,57r-17,0v-12,13,-18,26,-18,37v0,25,29,19,37,3v1,1,5,1,4,4v-12,21,-24,31,-36,31v-44,0,-28,-51,3,-75r-144,-1v-2,-17,22,-2,22,-22v8,-32,36,-162,36,-208","w":219,"k":{"A":18,"\u0104":18}},"\u0141":{"d":"185,-59v2,21,-5,52,-8,60r-169,-1v2,-17,23,-5,23,-33r15,-75v-12,3,-31,26,-38,9v11,-10,27,-15,40,-23r16,-106v1,-16,-18,-5,-29,-12v1,-3,0,-7,2,-8v21,2,71,-1,91,1v3,18,-27,2,-32,17v-6,19,-12,63,-18,92v22,-11,42,-25,66,-34r3,10r-71,38v-5,35,-14,70,-16,108v34,1,84,9,106,-7v7,-11,1,-36,19,-36","w":200,"k":{"T":25,"V":18,"W":18,"Y":27,"y":13}},"\u0143":{"d":"224,-324v-16,9,-39,30,-74,52v-2,-2,-5,-2,-4,-6r45,-47r31,-4xm67,-219v-9,-18,-18,-16,-40,-20v0,-19,36,-3,59,-9r122,211r31,-191v1,-12,-18,-6,-29,-11v0,-3,-1,-9,2,-9v25,1,53,-2,76,1v4,15,-28,8,-26,14v-16,63,-34,164,-44,238v-28,7,-28,-22,-38,-38r-100,-169r-29,180v-2,17,17,10,31,14v-1,3,0,8,-3,9v-27,-3,-50,1,-77,-1v2,-19,30,0,30,-28v7,-24,27,-144,35,-191","w":280},"\u00d3":{"d":"217,-324v-16,9,-39,30,-74,52v-2,-2,-5,-2,-4,-6r45,-47r31,-4xm120,7v-64,0,-99,-39,-99,-102v0,-92,51,-157,145,-158v66,-1,103,33,103,99v0,91,-58,161,-149,161xm157,-239v-76,-1,-102,67,-104,142v0,57,24,88,79,89v77,1,106,-72,106,-144v0,-54,-27,-86,-81,-87","w":280,"k":{"A":21,"\u0104":21}},"\u015a":{"d":"188,-324v-16,9,-38,30,-73,52v-2,-2,-5,-2,-4,-6r45,-47r31,-4xm177,-82v-4,71,-94,115,-158,74v5,-15,4,-37,10,-53v3,0,8,-1,9,1r0,34v44,40,134,1,106,-63v-24,-34,-102,-11,-102,-79v0,-67,85,-106,141,-71v-4,10,-5,30,-9,47v-15,4,-7,-16,-9,-27v-29,-33,-97,-13,-97,38v0,68,113,25,109,99","w":200},"\u0179":{"d":"202,-324v-16,9,-38,30,-73,52v-2,-2,-5,-2,-4,-6r45,-47r31,-4xm222,-59v1,18,-7,41,-9,60r-201,-1v3,-20,18,-28,29,-42r151,-191v-37,0,-108,-1,-128,5v-3,4,-3,24,-11,37v-3,0,-7,1,-8,-1v4,-15,1,-41,6,-56r183,1v0,11,-8,14,-13,21r-167,211v48,-2,107,5,146,-5v3,-1,5,-22,14,-39r8,0","w":240},"\u017b":{"d":"165,-306v0,11,-9,25,-21,24v-11,0,-17,-6,-17,-18v0,-22,38,-33,38,-6xm222,-59v1,18,-7,41,-9,60r-201,-1v3,-20,18,-28,29,-42r151,-191v-37,0,-108,-1,-128,5v-3,4,-3,24,-11,37v-3,0,-7,1,-8,-1v4,-15,1,-41,6,-56r183,1v0,11,-8,14,-13,21r-167,211v48,-2,107,5,146,-5v3,-1,5,-22,14,-39r8,0","w":240},"a":{"d":"148,-34r1,4v-21,21,-44,34,-51,34v-23,-9,4,-54,2,-73v-23,34,-51,64,-81,75v-8,0,-12,-10,-12,-30v4,-80,36,-167,126,-140v5,-2,11,-9,15,-3v-10,45,-26,92,-32,140v6,19,19,-6,32,-7xm32,-35v1,26,13,14,31,-2v30,-26,45,-59,55,-109v-19,-9,-51,-12,-59,8v-10,23,-29,69,-27,103","w":159},"b":{"d":"44,-207v2,-19,10,-30,-9,-30v0,0,-21,2,-14,-8v22,-4,40,-8,55,-14r5,4r-31,140v23,-31,45,-56,81,-56v19,0,21,18,21,38v0,73,-38,128,-105,139v-64,-3,-25,-89,-17,-134xm112,-149v-50,4,-75,64,-75,113v0,16,9,28,27,27v44,-4,62,-67,62,-111v0,-21,1,-27,-14,-29","w":166},"c":{"d":"38,-54v0,61,59,41,90,16r2,5v-28,38,-119,66,-118,-14v1,-71,38,-116,99,-124v11,1,25,1,30,11v-4,14,-3,32,-9,44v-11,2,-6,-12,-6,-20v0,-14,-16,-16,-30,-17v-46,-2,-58,58,-58,99","w":146},"d":{"d":"113,-243v18,-8,43,-8,57,-16r5,4r-47,227v5,19,15,2,33,-9v3,1,4,3,4,7v-15,12,-38,31,-55,35v-6,0,-9,-8,-9,-16v1,-20,9,-37,11,-62v-17,30,-54,72,-86,78v-15,-1,-17,-22,-17,-38v0,-76,36,-152,122,-133r11,-64v2,-16,-28,3,-29,-13xm66,-146v-16,26,-45,95,-23,126v50,-20,73,-62,85,-125v-17,-11,-48,-13,-62,-1"},"e":{"d":"36,-75v-7,30,-4,62,24,63v16,1,35,-11,58,-26r2,7v-29,24,-53,37,-73,37v-25,0,-41,-19,-40,-47v2,-70,33,-122,96,-129v29,-3,39,31,23,53v-16,22,-54,35,-90,42xm107,-137v0,-31,-42,-17,-51,1v-4,8,-11,25,-18,53v32,-6,69,-20,69,-54","w":140},"f":{"d":"72,-153v23,2,29,-6,39,-2v-4,8,-2,17,-7,21v-13,-1,-22,-1,-35,0r-23,107v-15,68,-26,97,-70,124v-9,6,-19,6,-29,1v7,-11,2,-28,13,-30v32,26,48,-11,55,-48r28,-154v-9,-2,-35,5,-27,-8v14,-5,24,-10,30,-14v5,-56,32,-92,82,-103v8,0,15,2,23,5v-7,14,-5,27,-14,30v-13,-19,-49,-17,-52,11v-3,9,-7,29,-13,60","w":100},"g":{"d":"-8,57v4,-37,36,-52,71,-62v-19,-18,2,-28,16,-42v-33,2,-52,-12,-54,-44v-4,-62,81,-104,121,-59v15,1,25,-3,31,-1r-3,17r-23,1v6,43,-25,73,-59,83v-38,38,51,51,51,95v0,60,-145,82,-151,12xm93,-158v-46,-4,-63,100,-9,99v44,3,64,-99,9,-99xm65,90v38,0,71,-30,43,-57v-9,-10,-27,-23,-39,-32v-26,6,-54,22,-54,52v0,25,23,37,50,37"},"h":{"d":"50,-219v10,-20,-13,-16,-27,-20r2,-6v22,-4,41,-8,56,-14r4,4r-33,159v31,-40,55,-65,97,-73v5,1,10,5,10,11r-29,134v9,15,23,-12,36,-12r2,6v-13,10,-41,33,-57,35v-8,0,-10,-14,-8,-22r26,-121v1,-9,-11,-8,-17,-4v-45,24,-75,76,-81,141v-17,2,-23,10,-26,3v22,-82,35,-144,45,-221"},"i":{"d":"95,-238v3,22,-33,35,-34,9v-3,-20,32,-36,34,-9xm15,-131r-2,-4v20,-17,37,-28,58,-33v5,0,7,3,7,10v0,37,-44,129,-25,140v5,1,15,-7,29,-15r2,7v-15,11,-35,28,-53,32v-8,0,-11,-8,-11,-16v4,-45,27,-91,28,-128v-7,-17,-15,5,-33,7","w":100},"j":{"d":"96,-239v5,23,-32,36,-33,10v-3,-20,32,-36,33,-10xm16,-138v26,-17,36,-25,59,-31v5,0,7,4,7,11v-18,79,-30,206,-79,255v-10,5,-15,5,-27,1v2,-6,0,-16,6,-19v12,9,21,8,28,-5r43,-213v-5,-18,-17,6,-35,8v-1,-2,-2,-4,-2,-7","w":100},"k":{"d":"23,-243v18,-7,43,-8,57,-16r5,4r-39,173v27,-31,60,-94,115,-87r-6,25v-36,-9,-55,14,-74,33v12,27,22,80,44,94v3,3,24,-18,28,-7v-29,25,-49,44,-65,1r-25,-68v-24,23,-25,51,-32,89v-9,1,-21,10,-27,4r48,-232v1,-14,-28,2,-29,-13","w":159},"l":{"d":"55,-219v9,-22,-14,-16,-28,-20r2,-6v22,-4,41,-8,56,-14r4,4v-5,16,-42,196,-47,229v6,17,14,4,31,-7v3,-3,8,-4,9,2v-24,24,-50,36,-58,36v-15,-2,-12,-19,-8,-33","w":100},"m":{"d":"105,2v13,-47,25,-99,29,-140v-2,-14,-9,-7,-20,-2v-41,23,-64,82,-71,139v-10,-1,-22,8,-27,2v9,-45,24,-88,29,-137v-4,-26,-23,11,-34,0r0,-3v28,-20,47,-30,56,-30v9,0,8,9,6,18v-1,4,-4,22,-11,53v23,-34,54,-65,92,-71v13,1,8,13,7,25v-1,7,-4,23,-10,47v24,-34,58,-66,98,-72v6,0,8,3,8,9v7,9,-43,131,-25,143v10,-2,16,-11,29,-15r2,6v-13,9,-35,30,-54,32v-17,-5,-11,-25,-6,-43v7,-27,23,-80,23,-103v0,-11,-11,-7,-20,-1v-44,29,-67,69,-74,140v-4,0,-20,7,-27,3","w":280},"n":{"d":"138,-145v-58,20,-81,74,-92,144v-9,-1,-22,8,-28,2v11,-29,28,-107,30,-138v-5,-20,-17,4,-34,6r-2,-4v13,-15,37,-27,56,-34v6,0,9,6,9,11v-1,19,-11,40,-14,70v20,-34,59,-73,101,-81v7,0,10,5,10,12v4,19,-41,133,-24,139v3,2,17,-12,32,-16r2,4v-13,14,-36,32,-57,35v-8,1,-11,-6,-10,-13v1,-26,27,-109,27,-128v0,-6,-2,-9,-6,-9","w":200},"o":{"d":"53,5v-32,0,-46,-21,-46,-54v-2,-65,34,-121,92,-121v32,0,48,19,48,55v-1,60,-36,120,-94,120xm87,-158v-41,0,-51,62,-52,106v0,27,8,44,32,44v44,0,50,-58,52,-104v1,-28,-7,-46,-32,-46","w":159},"p":{"d":"65,5v-10,0,-13,-2,-24,-5r-14,94v-15,1,-24,8,-29,4v15,-64,33,-160,42,-238v0,-4,-2,-6,-5,-6v-12,1,-14,9,-32,16r-1,-7v16,-13,40,-29,59,-33v5,0,8,2,8,8v0,6,-4,26,-10,58v19,-33,49,-66,86,-66v18,0,21,21,21,41v-4,71,-40,121,-101,134xm139,-125v1,-27,-14,-28,-32,-19v-38,21,-55,70,-62,124v64,36,91,-48,94,-105"},"q":{"d":"11,-27v0,-83,44,-164,129,-134v5,-3,10,-11,16,-5v-19,74,-34,165,-47,260v-14,0,-27,12,-34,3v23,-39,22,-105,37,-167v-14,25,-58,70,-86,74v-11,-1,-15,-17,-15,-31xm66,-143v-16,23,-42,96,-21,123v47,-16,74,-66,82,-122v-17,-11,-47,-13,-61,-1","w":166},"r":{"d":"62,-93v22,-29,37,-82,76,-74v-2,6,-4,18,-6,37v-10,3,-14,-13,-29,-1v-35,29,-48,71,-58,130v-9,1,-20,8,-27,4v11,-36,26,-107,29,-141v-6,-20,-14,0,-36,8r-2,-4v11,-15,42,-32,59,-36v5,0,7,3,7,9v0,7,-4,29,-13,68","w":140,"k":{"c":7,"e":7,"g":7,"h":7,"o":7,"q":7,"\u0107":7,"\u0119":7,"\u00f3":7,".":27,",":27}},"s":{"d":"120,-61v-3,52,-68,86,-116,57v6,-19,3,-37,9,-46v13,-2,5,20,7,30v26,24,78,14,76,-26v-2,-43,-82,-14,-79,-65v3,-44,66,-76,106,-49v-5,13,-3,27,-7,40v-12,3,-6,-14,-8,-22v-19,-23,-71,-14,-70,19v1,45,85,13,82,62","w":140},"t":{"d":"25,-12v4,-39,16,-74,24,-126v-10,0,-22,2,-30,0r2,-5v13,-4,22,-9,30,-13v2,-10,5,-30,9,-60v16,-4,24,-17,32,-10v-8,30,-8,27,-16,73v13,1,33,-2,39,-1r-4,17v-4,0,-17,0,-38,-1v-13,62,-20,100,-20,111v10,23,29,-11,43,-12r2,6v-14,9,-42,36,-61,39v-8,-1,-13,-8,-12,-18","w":119},"u":{"d":"25,-14v0,-36,39,-125,20,-132v-4,-2,-16,12,-29,14r-2,-4v9,-11,43,-30,59,-34v14,7,6,13,2,34v-15,62,-22,98,-22,109v0,5,1,7,5,7v50,-23,82,-76,92,-144v1,0,9,-1,24,-5r2,2v-10,37,-28,96,-31,139v0,6,1,9,5,9v12,-2,13,-8,29,-17v1,2,2,4,2,7v-30,21,-33,28,-55,35v-6,1,-10,-7,-9,-13v-1,-5,8,-35,14,-72v-26,33,-49,71,-93,85v-8,-1,-13,-8,-13,-20","w":200},"v":{"d":"68,7v-43,0,-48,-59,-29,-96v8,-16,22,-36,43,-59v-9,4,-42,-1,-55,3v-3,0,-8,25,-20,21r14,-41v24,-7,54,7,78,-2r3,5v-32,39,-48,77,-48,112v-1,21,9,38,28,38v43,0,64,-64,66,-109v1,-21,-10,-26,-26,-21v-3,-11,11,-23,24,-26v17,0,25,14,25,32v0,62,-47,143,-103,143","k":{".":20,",":20}},"w":{"d":"87,-7v-28,26,-63,6,-60,-33v4,-50,21,-71,53,-108v-9,4,-42,-1,-55,3v-3,0,-7,25,-19,21r14,-41v24,-7,54,6,78,-2r3,5v-32,39,-48,76,-48,112v0,55,33,43,55,5v13,-22,25,-60,34,-116v9,1,22,-9,29,-5v-17,56,-26,96,-26,121v0,17,7,32,23,32v34,1,60,-69,60,-106v0,-22,-11,-30,-29,-24v-1,-2,-2,-2,-2,-5v11,-8,12,-20,28,-21v17,0,25,12,25,36v0,60,-44,139,-98,139v-31,0,-34,-37,-27,-68v-10,20,-24,42,-38,55","w":259,"k":{".":20,",":20}},"x":{"d":"81,-63v-23,29,-36,81,-80,64v6,-18,-1,-33,12,-31v5,18,23,14,35,-1v8,-9,17,-23,30,-44v-5,-20,-4,-69,-27,-72v-16,-2,-21,23,-32,14v9,-16,17,-36,41,-37v30,5,31,24,37,65v19,-23,32,-72,74,-62r-6,31v-34,-16,-42,10,-66,42v10,46,5,66,29,77v13,0,15,-10,28,-16r2,6v-16,12,-25,30,-47,32v-28,-6,-23,-35,-30,-68"},"y":{"d":"28,101v-18,2,-35,-15,-30,-35v7,-3,12,-12,21,-10v-5,33,35,38,50,16v23,-33,37,-88,49,-134v-21,28,-37,54,-69,68v-12,-1,-17,-16,-16,-31r7,-95v3,-35,-19,-21,-32,-8v-3,0,-4,-3,-5,-5v20,-24,47,-36,53,-36v11,0,12,9,11,22r-7,111v0,22,17,14,27,1v30,-32,47,-75,58,-128v9,1,24,-9,31,-3v-37,66,-43,258,-148,267","k":{".":13,",":13}},"z":{"d":"133,2v-41,17,-93,-30,-128,1v-3,-1,-3,-6,-4,-10r124,-139v-23,14,-55,4,-84,2v-14,-1,-12,28,-24,21r11,-41v34,-18,93,32,118,-4v5,2,2,9,1,14r-119,134v30,-21,67,7,99,-3v5,-8,3,-29,17,-24","w":159},"\u0105":{"d":"7,-24v3,-79,38,-169,126,-140v5,-2,11,-9,15,-3v-10,37,-32,107,-32,140v4,15,13,3,30,-8v3,1,4,5,2,7v-30,28,-55,29,-58,61v-2,22,22,13,31,5r3,3v-10,15,-21,22,-34,22v-33,-8,-14,-45,7,-60v-22,-12,6,-51,3,-72v-19,26,-52,68,-81,75v-8,0,-12,-10,-12,-30xm118,-146v-42,-15,-61,-5,-73,43v-7,26,-13,48,-13,68v0,27,15,14,31,-1v29,-27,46,-57,55,-110","w":159},"\u0107":{"d":"148,-251v-22,19,-39,41,-63,58v-10,-9,6,-18,17,-34r19,-28v9,1,25,-6,27,4xm38,-54v0,61,59,41,90,16r2,5v-28,38,-119,66,-118,-14v1,-71,38,-116,99,-124v11,1,25,1,30,11v-4,14,-3,32,-9,44v-11,2,-6,-12,-6,-20v0,-14,-16,-16,-30,-17v-46,-2,-58,58,-58,99","w":146},"\u0119":{"d":"103,-170v17,-1,31,11,31,27v0,33,-41,56,-98,68v-6,29,-4,63,24,63v16,0,35,-11,58,-26r2,7v-26,22,-48,34,-67,36v-9,14,-13,24,-13,28v-1,21,23,15,31,5v1,1,3,1,3,3v-12,24,-52,33,-52,3v0,-11,7,-23,22,-38v-25,-2,-37,-18,-37,-47v0,-62,41,-127,96,-129xm38,-83v38,-7,67,-21,69,-54v2,-27,-30,-21,-44,-7v-9,8,-17,28,-25,61","w":140},"\u0142":{"d":"24,5v-12,0,-12,-15,-10,-25r22,-102v-12,6,-21,16,-35,20v-1,-3,-4,-7,-2,-10r40,-25v11,-55,17,-86,17,-93v3,-16,-34,3,-27,-15v22,-4,41,-8,56,-14v11,13,-7,39,-17,104v13,-6,25,-20,39,-22v1,3,4,7,2,10r-45,28v-15,70,-22,107,-22,113v7,20,16,-1,38,-10r2,5v-24,24,-50,36,-58,36","w":100},"\u0144":{"d":"166,-251v-22,18,-39,43,-64,58v-10,-10,7,-17,18,-34r18,-28v10,1,26,-5,28,4xm138,-145v-58,20,-81,74,-92,144v-9,-1,-22,8,-28,2v11,-29,28,-107,30,-138v-5,-20,-17,4,-34,6r-2,-4v13,-15,37,-27,56,-34v6,0,9,6,9,11v-1,19,-11,40,-14,70v20,-34,59,-73,101,-81v7,0,10,5,10,12v4,19,-41,133,-24,139v3,2,17,-12,32,-16r2,4v-13,14,-36,32,-57,35v-8,1,-11,-6,-10,-13v1,-26,27,-109,27,-128v0,-6,-2,-9,-6,-9","w":200},"\u00f3":{"d":"148,-251v-22,19,-39,41,-63,58v-10,-9,6,-18,17,-34r19,-28v9,1,25,-6,27,4xm53,5v-32,0,-46,-21,-46,-54v-2,-65,34,-121,92,-121v32,0,48,19,48,55v-1,60,-36,120,-94,120xm87,-158v-41,0,-51,62,-52,106v0,27,8,44,32,44v44,0,50,-58,52,-104v1,-28,-7,-46,-32,-46","w":159},"\u015b":{"d":"132,-251v-22,19,-39,41,-63,58v-10,-9,6,-18,17,-34r19,-28v9,1,25,-6,27,4xm120,-61v-3,52,-68,86,-116,57v6,-19,3,-37,9,-46v13,-2,5,20,7,30v26,24,78,14,76,-26v-2,-43,-82,-14,-79,-65v3,-44,66,-76,106,-49v-5,13,-3,27,-7,40v-12,3,-6,-14,-8,-22v-19,-23,-71,-14,-70,19v1,45,85,13,82,62","w":140},"\u017a":{"d":"146,-251v-22,19,-39,41,-63,58v-10,-9,6,-18,17,-34r19,-28v9,1,25,-6,27,4xm133,2v-41,17,-93,-30,-128,1v-3,-1,-3,-6,-4,-10r124,-139v-23,14,-55,4,-84,2v-14,-1,-12,28,-24,21r11,-41v34,-18,93,32,118,-4v5,2,2,9,1,14r-119,134v30,-21,67,7,99,-3v5,-8,3,-29,17,-24","w":159},"\u017c":{"d":"115,-229v3,22,-32,37,-34,9v-3,-20,32,-35,34,-9xm133,2v-41,17,-93,-30,-128,1v-3,-1,-3,-6,-4,-10r124,-139v-23,14,-55,4,-84,2v-14,-1,-12,28,-24,21r11,-41v34,-18,93,32,118,-4v5,2,2,9,1,14r-119,134v30,-21,67,7,99,-3v5,-8,3,-29,17,-24","w":159},"0":{"d":"75,6v-42,0,-61,-36,-60,-86v2,-76,24,-167,97,-167v43,0,62,34,61,84v-1,79,-25,169,-98,169xm110,-236v-60,0,-69,117,-69,175v0,28,9,60,37,56v61,-8,63,-109,67,-178v2,-30,-9,-53,-35,-53"},"1":{"d":"110,-99v0,39,-35,94,20,89v11,-1,19,2,13,11r-120,-1v-2,-21,38,-1,44,-22v16,-59,23,-136,36,-201v-18,7,-41,16,-67,29v-4,-5,1,-16,1,-23v24,-4,66,-17,95,-31r5,4"},"2":{"d":"45,-230v39,-30,113,-14,108,41v-7,80,-79,106,-118,166v37,2,88,-3,116,-1v-3,8,-2,20,-8,25v-26,-1,-49,-2,-68,-2v-24,0,-52,3,-74,1r0,-5v70,-79,108,-95,121,-179v3,-23,-16,-39,-39,-39v-22,0,-38,17,-53,38v-2,-2,-5,-2,-6,-5"},"3":{"d":"152,-81v1,72,-92,112,-151,71v4,-16,6,-35,11,-50v10,-2,5,12,6,18v0,22,20,36,43,36v65,0,90,-122,13,-120v-6,-1,-20,4,-30,3r6,-17v42,6,71,-15,71,-51v0,-19,-13,-34,-34,-33v-28,0,-32,13,-48,29v-2,-2,-5,-1,-5,-5r20,-34v34,-22,98,-11,95,35v-3,34,-18,46,-50,62v30,4,53,22,53,56"},"4":{"d":"152,0v-36,3,-80,-1,-118,0v1,-3,0,-8,3,-9v53,5,46,-16,55,-59r-92,-1v9,-35,32,-56,65,-99r57,-74v18,-2,21,-9,27,-4r-29,158v26,2,42,-4,47,1v-3,6,-2,16,-7,20r-43,-1v-2,24,-22,64,21,58v7,0,19,-1,14,10xm25,-90v14,4,48,1,71,2r23,-130v-35,39,-63,85,-94,128"},"5":{"d":"155,-92v0,79,-91,126,-153,80r11,-49v8,-1,7,4,6,13v-1,27,20,42,45,42v63,0,90,-128,17,-128v-22,0,-31,9,-44,21r-7,-4v7,-30,15,-71,23,-122v40,-3,76,4,117,-1v4,8,-8,16,-11,24v-27,3,-68,2,-95,0r-18,83v37,-32,109,-17,109,41"},"6":{"d":"70,7v-91,-9,-51,-161,-11,-202v28,-29,56,-58,105,-47v-3,7,-3,17,-8,21v-67,-26,-98,47,-112,113v17,-20,32,-37,63,-37v32,0,51,20,50,54v-3,56,-36,90,-87,98xm93,-126v-59,-4,-74,114,-12,116v53,2,71,-112,12,-116"},"7":{"d":"176,-228v-31,41,-107,176,-131,229v-9,-4,-25,3,-30,-3r136,-212r-124,0v3,-10,3,-21,6,-28v33,4,104,0,143,3r0,11"},"8":{"d":"9,-45v0,-42,29,-59,65,-78v-20,-11,-35,-23,-36,-49v-2,-36,44,-73,80,-73v27,0,48,17,46,43v-2,38,-20,48,-53,70v74,26,32,138,-46,138v-34,0,-56,-19,-56,-51xm105,-230v-35,0,-56,46,-34,73v6,7,16,14,29,20v20,-11,40,-31,40,-58v0,-21,-14,-35,-35,-35xm75,-9v39,0,63,-54,40,-85v-6,-7,-16,-15,-31,-23v-26,10,-48,35,-49,66v-1,25,16,42,40,42"},"9":{"d":"163,-170v-2,91,-36,176,-116,176v-11,0,-20,-3,-28,-7v-3,-12,-11,-25,-10,-37r5,-2v18,37,69,37,91,-3v12,-22,23,-50,29,-87v-14,17,-31,35,-59,35v-33,0,-53,-24,-53,-59v1,-53,36,-92,86,-92v41,0,56,31,55,76xm97,-230v-53,-3,-71,115,-9,115v30,0,48,-27,48,-63v0,-30,-13,-51,-39,-52"},"%":{"d":"240,-259r-156,271v-5,-1,-13,2,-14,-2r157,-269r13,0xm70,-132v-30,0,-51,-22,-52,-51v-1,-40,28,-67,66,-69v28,-1,52,23,51,51v-1,39,-28,69,-65,69xm85,-243v-44,-1,-61,103,-16,103v25,0,42,-42,41,-70v-1,-18,-8,-33,-25,-33xm231,5v-31,0,-50,-22,-53,-51v-6,-72,118,-96,118,-17v0,38,-27,68,-65,68xm246,-106v-30,0,-41,36,-42,67v-1,21,8,36,26,36v31,0,41,-38,41,-69v0,-18,-7,-34,-25,-34","w":320},"+":{"d":"175,-102r-76,0r0,75r-18,0r0,-75r-76,0r0,-18r76,0r0,-75r18,0r0,75r76,0r0,18"},"=":{"d":"175,-129r-170,0r0,-18r170,0r0,18xm175,-75r-170,0r0,-18r170,0r0,18"},"<":{"d":"175,-21r-170,-82r0,-16r170,-82r0,20r-146,70r146,69r0,21"},">":{"d":"175,-103r-170,82r0,-21r146,-69r-146,-70r0,-20r170,82r0,16"},"^":{"d":"176,-118r-21,0r-59,-112r-59,112r-20,0r69,-132r20,0"},"~":{"d":"56,-131v12,-1,61,23,71,22v13,0,24,-10,34,-27r10,11v-12,23,-26,34,-43,34v-12,0,-61,-23,-71,-22v-19,3,-22,10,-35,29r-10,-12v14,-21,20,-32,44,-35"},"#":{"d":"30,0r12,-67r-26,0r5,-24r26,0r13,-74r-26,0r4,-23r26,0r11,-59r13,0r-11,59r40,0r11,-59r13,0r-11,59r26,0r-4,23r-26,0r-13,74r26,0r-5,24r-26,0r-12,67r-13,0r12,-67r-40,0r-12,67r-13,0xm60,-91r39,0r14,-74r-40,0","w":172},"$":{"d":"98,-131v67,2,75,68,36,107v-16,17,-35,27,-58,30v-5,13,3,42,-19,35v3,-11,5,-24,7,-35v-22,-2,-45,-4,-56,-17v4,-6,5,-27,9,-49v3,0,6,0,8,1v0,12,0,22,1,30v10,12,23,18,40,19r16,-97v-95,-17,-46,-125,21,-130v2,-10,-1,-30,16,-23v-1,8,-3,15,-4,22v18,-2,39,2,49,14r-10,43v-13,3,-5,-18,-7,-27v-10,-9,-21,-14,-34,-14xm100,-223v-30,-1,-47,27,-48,55v0,18,12,29,34,35xm78,-9v48,5,84,-90,16,-96"},"&":{"d":"202,-72v5,-36,-54,-44,-58,-8v1,6,-5,7,-9,4r2,-34v21,-33,115,-4,125,-54v2,-11,-19,-16,-7,-23v13,2,20,13,20,27v0,39,-33,45,-73,49v15,3,27,13,25,30v-5,53,-63,84,-122,86v-48,1,-89,-23,-87,-68v2,-48,32,-63,75,-76v-17,-8,-28,-16,-28,-37v0,-43,75,-94,119,-61v-4,13,-4,30,-10,41v-12,3,-5,-14,-7,-22v-26,-24,-77,-6,-77,31v0,29,25,36,49,39r-6,16v-49,-3,-84,17,-85,62v0,36,32,60,71,59v45,0,79,-22,83,-61","w":280},"\u201e":{"d":"24,41v-5,1,-11,6,-15,2v18,-25,21,-41,30,-75v20,-2,30,-16,36,-5v-13,28,-30,54,-51,78xm92,41v-5,1,-11,6,-14,2v18,-26,21,-39,29,-75v20,-2,30,-16,36,-5v-13,28,-30,54,-51,78"},".":{"d":"56,-22v3,25,-39,36,-37,6v-4,-24,38,-35,37,-6","w":90},",":{"d":"7,48v-5,2,-12,8,-15,1v14,-17,29,-48,33,-81v18,-2,29,-15,37,-6v-8,23,-40,70,-55,86","w":90},":":{"d":"74,-153v3,25,-38,36,-37,6v-3,-22,38,-35,37,-6xm32,3v-10,1,-17,-8,-16,-19v-4,-24,37,-35,37,-6v0,14,-9,25,-21,25","w":90},";":{"d":"70,-153v4,26,-37,35,-37,6v0,-13,8,-23,21,-23v10,-1,17,7,16,17xm3,48v-5,2,-12,8,-15,1v14,-17,29,-48,34,-81v17,-2,30,-15,36,-6v-8,23,-40,70,-55,86","w":90},"\u2026":{"d":"71,-24v4,26,-38,37,-38,7v-4,-24,38,-35,38,-7xm191,-24v4,25,-37,38,-37,7v-4,-23,37,-36,37,-7xm311,-24v3,26,-38,37,-37,7v-4,-23,37,-35,37,-7","w":360},"?":{"d":"158,-203v0,57,-70,69,-82,116v-2,8,6,11,10,18v-14,6,-24,-10,-23,-21v4,-46,61,-61,65,-109v0,-17,-14,-31,-32,-31v-24,0,-33,17,-44,30v-2,-1,-6,0,-5,-4v6,-13,10,-24,13,-33v35,-27,98,-13,98,34xm83,-22v4,26,-38,35,-37,6v-4,-24,38,-35,37,-6"},"!":{"d":"61,-72v-4,1,-10,8,-13,4r22,-174v12,0,26,-12,34,-6v-17,64,-31,122,-43,176xm44,3v-10,1,-17,-8,-16,-19v-4,-24,38,-35,37,-6v-1,15,-5,25,-21,25","w":119},"(":{"d":"45,-75v0,46,12,76,26,109v-2,1,-3,3,-7,3v-21,-31,-45,-76,-44,-129v1,-75,45,-135,92,-169v2,3,6,3,6,8v-46,50,-73,93,-73,178","w":119},")":{"d":"77,-150v0,-47,-11,-71,-26,-108v2,-1,3,-3,7,-3v24,33,45,75,44,129v-1,75,-44,134,-92,169v-2,-3,-6,-3,-6,-8v44,-48,72,-95,73,-179","w":119},"[":{"d":"76,37r-69,-1r48,-296v20,1,44,-1,62,2r-2,9v-26,3,-34,-4,-36,10r-41,256v1,14,28,7,39,12","w":119},"]":{"d":"82,-237v0,-18,-19,-5,-39,-14v-2,-16,28,-6,35,-8v1,1,23,-3,35,1r-38,232v-5,20,-1,48,-10,64v-19,-4,-43,4,-62,-2v1,-19,38,-2,37,-16v14,-61,42,-180,42,-257","w":119},"{":{"d":"37,-73v3,-20,1,-39,-20,-38r1,-6v71,-10,-1,-157,108,-147v-1,13,-22,2,-26,15v-27,36,-4,126,-60,135v49,15,8,78,10,121v1,12,9,25,25,22v1,9,-10,5,-17,6v-53,0,-26,-70,-21,-108","w":119},"}":{"d":"83,-156v-3,20,-1,39,20,38r-1,6v-72,10,1,158,-109,147v2,-13,19,-4,27,-15v26,-37,4,-126,60,-135v-49,-15,-8,-78,-10,-121v-1,-11,-9,-25,-24,-22v-2,-10,10,-6,16,-6v53,-1,26,70,21,108","w":119},"\u201d":{"d":"57,-168v-5,1,-11,6,-14,2v18,-27,21,-41,30,-75v20,-2,28,-16,35,-5v-13,28,-30,54,-51,78xm125,-168v-5,1,-10,6,-14,2v18,-27,21,-41,30,-75v20,-2,28,-16,35,-5v-13,28,-30,54,-51,78"},"'":{"d":"72,-249v3,-20,31,-19,32,0v-9,26,-30,44,-43,66r-11,0","w":119},"\u02b9":{"d":"72,-249v3,-20,31,-19,32,0v-9,26,-30,44,-43,66r-11,0","w":119},"\"":{"d":"72,-249v3,-21,31,-18,32,0v-10,25,-30,44,-43,66r-11,0xm133,-249v2,-21,31,-18,31,0v-9,26,-30,44,-43,66r-11,0"},"\u02ba":{"d":"72,-249v3,-21,31,-18,32,0v-10,25,-30,44,-43,66r-11,0xm133,-249v2,-21,31,-18,31,0v-9,26,-30,44,-43,66r-11,0"},"\u00ab":{"d":"20,-82v20,-27,45,-44,70,-65v2,2,6,2,5,6r-47,58v11,21,24,39,33,62v-2,1,-3,4,-7,4v-24,-29,-20,-28,-54,-65xm137,-17v-17,-24,-40,-42,-54,-69v24,-20,43,-43,69,-61v2,2,6,2,5,6r-47,58v11,21,24,39,33,62v-2,1,-2,4,-6,4"},"\u00bb":{"d":"101,-147v21,21,41,42,56,69v-24,20,-43,43,-69,61v-2,-2,-5,-2,-5,-6r47,-58v-11,-21,-24,-39,-33,-62xm95,-83v-3,16,-20,19,-28,30v-8,5,-20,21,-42,36v-2,-2,-5,-2,-5,-6r48,-58v-10,-21,-27,-41,-33,-62v2,-1,2,-4,6,-4"},"_":{"d":"0,57r0,-20r180,0r0,20r-180,0"},"@":{"d":"120,-2v33,1,65,-19,82,-29v-1,3,-2,6,-2,9v-68,60,-192,22,-192,-75v0,-67,60,-122,129,-122v55,0,102,33,100,86v-2,46,-23,83,-67,88v-19,2,-26,-16,-27,-29v-10,15,-19,27,-41,27v-25,0,-36,-19,-36,-45v-1,-38,27,-86,67,-83v14,1,22,5,27,16r2,-12v7,0,16,-6,21,-2v-4,13,-21,86,-21,101v0,11,5,18,15,17v32,-3,45,-40,46,-78v1,-51,-36,-78,-85,-78v-63,0,-109,48,-109,114v0,58,33,93,91,95xm134,-167v-25,-1,-45,48,-44,75v0,22,3,33,20,35v33,-6,44,-51,44,-86v0,-14,-7,-23,-20,-24","w":245},"*":{"d":"89,-187v7,15,17,28,23,45v-15,5,-18,13,-24,9v-3,-19,-5,-36,-8,-51v-14,11,-24,21,-38,35v-8,-1,-13,-15,-12,-23r45,-20v-7,-12,-64,-14,-41,-35v3,-3,3,-10,9,-10v12,13,24,25,37,37v4,-17,2,-40,11,-52v8,4,21,1,23,9v-14,25,-22,41,-25,47v1,1,26,-8,52,-8v-2,3,6,19,0,23v-23,-3,-40,-5,-52,-6","w":140},"\/":{"d":"2,5v23,-86,60,-174,87,-260v4,-2,15,-2,19,0r-90,260r-16,0","w":106},"\\":{"d":"73,-256v34,83,58,175,89,261v-6,-1,-14,2,-17,-2r-87,-259r15,0","w":218},"|":{"d":"80,0r0,-264r20,0r0,264r-20,0"},"-":{"d":"7,-78r7,-21r96,0r-8,21r-95,0","w":119},"\u2011":{"d":"7,-78r7,-21r96,0r-8,21r-95,0","w":119},"\u2010":{"d":"7,-78r7,-21r96,0r-8,21r-95,0","w":119},"\u00ad":{"d":"7,-78r7,-21r96,0r-8,21r-95,0","w":119},"\u2013":{"d":"-3,-80r7,-18r185,0r-6,18r-186,0"},"\u00a0":{"w":90},"`":{"d":"70,-255v3,7,19,27,37,60v-2,1,-4,4,-6,2v-18,-17,-38,-36,-59,-58v3,-7,19,-3,28,-4","w":119}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1981-1983, 1989,1993, 1998 Heidelberger Druckmaschinen AG. All rights
 * reserved. The  digitally encoded machine readable outline data for producing the
 * Typefaces licensed are the property of Heidelberger Druckmaschinen AG and/or its
 * subsidiaries, represented by Linotype Library GmbH, Dupont Strasse 1, 61352 Bad
 * Homburg Germany. Portions © 1996-1998 Microsoft Corporation. All Rights
 * Reserved.
 * 
 * Trademark:
 * Palatino® is a registered trademark of Heidelberger Druckmaschinen AG and its
 * subsidiaries.
 * 
 * Description:
 * Palatino Linotype is the definitive new version of Hermann Zapfs Palatino,
 * which since its design in 1950 has become one of the world's most widely used
 * typefaces. For this new digital version, Professor Zapf has drawn numerous
 * additional characters to include an extensive range of ligatures, numerals,
 * fractions and support for Cyrillic and both monotonic and polytonic Greek.
 * Special care has been taken to enhance the quality of the letterforms when
 * displayed on the computer screen, ensuring that Palatino Linotype is highly
 * legible whether displayed on the screen or in print. This typeface is ideal for
 * use in extended text settings such as books, periodicals and catalogs.
 * 
 * 
 * Manufacturer:
 * LINOTYPE-HELL AG
 * 
 * Designer:
 * Hermann Zapf
 * 
 * Vendor URL:
 * http://www.fonts.de
 * 
 * License information:
 * http://www.LinotypeLibrary.com/
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Palatino Linotype","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 4 7 2 6 3 5 10 2 4","ascent":"288","descent":"-72","x-height":"11","cap-height":"11","bbox":"-42 -334.468 385.16 102.5","underline-thickness":"18.1055","underline-position":"-36.0352","slope":"-10","unicode-range":"U+0020-U+2026"},"glyphs":{" ":{"w":90},"A":{"d":"42,-19v1,12,16,4,31,10v2,10,-5,11,-16,10v-30,-2,-28,1,-69,-1v-3,-18,23,-6,27,-19r134,-229r34,0r32,215v0,24,11,18,32,24v-1,3,1,9,-3,10r-106,-1v1,-4,1,-9,4,-11v18,0,26,1,26,-11v0,-8,-2,-33,-8,-74r-80,0v-10,20,-33,56,-38,77xm89,-112r69,0r-14,-95","w":259,"k":{"T":25,"V":32,"W":32,"Y":25,"\u201d":25}},"B":{"d":"65,-225v-2,-16,-14,-6,-33,-12v1,-4,-1,-10,3,-11v74,7,192,-26,192,50v0,44,-31,58,-74,67v42,4,64,16,64,54v0,68,-82,87,-160,77v-18,-2,-37,2,-50,0v-4,-14,18,-13,22,-18v13,-44,32,-170,36,-207xm179,-195v1,-32,-31,-40,-67,-35v-1,15,-13,72,-17,94v51,6,83,-13,84,-59xm169,-76v1,-40,-31,-47,-77,-44r-16,102v59,15,92,-8,93,-58","w":240},"C":{"d":"73,-97v-6,92,96,96,147,53v11,23,-30,35,-46,42v-70,30,-150,-3,-150,-86v0,-116,118,-202,224,-146v-8,23,-11,43,-15,59v-4,-1,-10,2,-11,-2v11,-54,-21,-53,-59,-55v-72,-4,-86,64,-90,135","w":246},"D":{"d":"65,-225v-2,-16,-14,-6,-33,-12v1,-4,-1,-10,3,-11v38,2,84,0,124,0v75,-2,113,29,113,94v0,109,-81,171,-211,154v-20,-3,-41,2,-54,0v-4,-14,18,-13,22,-18v13,-44,32,-170,36,-207xm222,-157v4,-63,-46,-84,-110,-73r-36,209r54,6v74,-2,87,-71,92,-142","w":280},"E":{"d":"65,-225v-2,-16,-14,-6,-33,-12v1,-4,-1,-10,3,-11r183,2v-2,5,-6,47,-10,57v-4,0,-10,1,-11,-2v13,-57,-39,-36,-83,-38r-18,91v27,2,61,-4,84,2v-2,6,-3,14,-7,18r-79,-2r-18,103v40,-7,100,17,106,-28v1,-8,6,-24,18,-15v-6,19,-6,44,-14,61r-179,-1v-1,-20,26,-7,25,-28","w":219},"F":{"d":"66,-225v-3,-15,-14,-6,-34,-12v1,-4,1,-9,3,-11r178,2v-4,18,-4,41,-11,57v-15,4,-9,-14,-10,-26v-4,-25,-49,-14,-77,-14r-19,104v30,5,75,-5,85,0v-2,6,-1,15,-6,18r-83,0v-8,50,-12,78,-12,85v-2,17,24,7,34,13v-1,3,1,9,-3,10v-27,-3,-84,1,-114,-1v-3,-22,31,0,35,-26","w":200,"k":{"A":25,"\u0104":25,".":25,",":25}},"G":{"d":"186,-21v3,-19,20,-53,7,-68v-10,-1,-23,0,-31,-3v1,-4,0,-9,3,-11v33,2,75,-4,104,2v-1,19,-29,3,-28,36v-4,16,-10,33,-7,49v-28,9,-69,24,-103,24v-108,0,-127,-122,-75,-193v35,-48,130,-91,204,-51v-1,20,-10,40,-14,61v-4,0,-9,1,-12,-1v1,-13,2,-24,2,-34v-16,-13,-37,-19,-62,-19v-77,-2,-94,66,-99,138v-5,67,57,100,111,70","w":280},"H":{"d":"63,-225v1,-15,-22,-7,-33,-12v1,-4,-1,-10,3,-11r113,1v2,22,-33,2,-34,23v-4,16,-12,62,-16,85r103,0v9,-50,13,-78,13,-86v1,-15,-22,-7,-33,-12v1,-4,-1,-10,3,-11r113,1v3,20,-31,4,-33,20r-36,205v-1,16,24,7,35,13v-1,3,1,9,-3,10v-29,-3,-84,1,-114,-1r2,-11v37,1,32,-7,39,-46r12,-65r-104,0v-10,59,-16,92,-16,100v-1,16,24,7,35,13v-1,3,1,9,-3,10v-31,-3,-84,1,-114,-1r2,-11v42,0,33,-9,41,-57","w":280},"I":{"d":"83,-22v-2,17,24,7,34,13v-1,3,1,9,-3,10v-27,-3,-84,1,-114,-1v-4,-21,31,-3,34,-21r35,-204v0,-14,-22,-8,-34,-12v1,-4,1,-9,3,-11r114,1v-1,4,-1,9,-3,11v-39,1,-32,4,-38,43","w":140},"J":{"d":"74,-225v-2,-16,-14,-6,-33,-12v1,-4,-1,-10,3,-11r114,1v1,20,-31,4,-35,21v-20,90,-21,200,-60,272v-15,27,-43,39,-82,33v-1,-4,-4,-7,-2,-11v58,2,52,-20,62,-83","w":140},"K":{"d":"69,-225v0,-14,-22,-8,-34,-12v1,-4,1,-9,3,-11r114,1v-1,4,-1,9,-3,11v-42,1,-32,8,-40,51r-11,62v35,-24,89,-79,116,-111v1,-5,0,-11,2,-14v19,4,45,-3,58,2v1,16,-20,9,-28,16v-31,25,-72,63,-103,93r88,122v3,3,28,3,17,16v-23,0,-41,-2,-64,0r-41,-61v-11,-16,-26,-35,-45,-60r-15,98v-1,16,24,7,34,13v-1,3,1,9,-3,10v-27,-3,-84,1,-114,-1v-4,-21,31,-3,34,-21","w":259},"L":{"d":"71,-225v-2,-16,-14,-6,-33,-12v1,-4,-1,-10,3,-11r113,1v1,22,-31,1,-35,26r-36,204v40,-7,100,17,106,-28v1,-8,6,-24,18,-15v-5,13,-7,50,-14,61r-179,-1v-2,-17,21,-11,23,-21v12,-57,26,-143,34,-204","w":219,"k":{"T":25,"V":28,"W":28,"Y":25,"\u201d":25}},"M":{"d":"71,-222v3,-16,-24,-9,-35,-15v1,-4,0,-9,3,-11r77,0r46,185r110,-185v37,5,50,-1,81,1v4,21,-29,4,-32,26r-34,199v0,14,22,7,32,13v-1,3,1,9,-3,10r-108,-1v-1,-21,33,-3,32,-24v12,-50,23,-129,32,-186v-49,79,-87,141,-112,186r-17,31r-9,0r-51,-205r-41,175v-1,16,12,9,30,14r-3,10v-24,-3,-55,1,-77,-1v-4,-14,22,-11,23,-16v19,-53,45,-143,56,-206","w":339},"N":{"d":"67,-216v-11,-23,-16,-13,-43,-22v-4,-15,19,-9,29,-9r49,-1r113,197v19,-104,29,-162,29,-173v1,-16,-22,-8,-32,-14v-1,-8,2,-10,12,-10r73,1v2,18,-25,5,-28,17v-19,67,-33,154,-45,233r-31,0r-112,-198v-19,100,-28,158,-28,172v1,16,19,10,32,14v-1,7,-3,10,-13,10r-72,-1v-2,-21,34,1,31,-29","w":280},"O":{"d":"135,8v-68,-2,-110,-33,-108,-101v3,-91,51,-159,148,-159v68,0,109,36,109,105v0,85,-61,157,-149,155xm170,-236v-76,0,-90,83,-94,154v-3,45,23,73,66,74v72,0,88,-85,92,-153v3,-49,-21,-75,-64,-75","w":299},"P":{"d":"72,-225v1,-15,-22,-7,-33,-12v1,-4,-1,-10,3,-11v76,8,200,-27,200,60v0,58,-64,106,-125,80v0,-4,-3,-10,-1,-13v47,19,79,-20,78,-66v0,-40,-32,-52,-73,-42r-35,207v-4,19,45,-1,32,23r-114,-1v-4,-20,31,-3,34,-21","w":240,"k":{"A":28,"\u0104":28,"a":18,"c":18,"d":18,"e":18,"g":18,"m":18,"n":18,"o":18,"p":18,"q":18,"r":18,"s":18,"t":18,"u":18,"v":18,"w":18,"x":18,"y":18,"z":18,"\u0105":18,"\u0107":18,"\u0119":18,"\u0144":18,"\u00f3":18,"\u015b":18,"\u017a":18,"\u017c":18,".":25,",":25,"\u00ad":7}},"Q":{"d":"54,58v-4,-32,19,-56,53,-53v-49,-7,-81,-42,-80,-97v2,-93,52,-160,148,-160v70,0,109,36,109,105v0,97,-66,165,-170,153v33,4,135,85,151,11r10,4v-7,30,-22,61,-53,61v-51,0,-87,-53,-132,-56v-19,-1,-24,21,-28,37xm170,-236v-76,0,-90,83,-94,154v-3,45,23,73,66,74v72,0,88,-85,92,-153v3,-49,-21,-75,-64,-75","w":299},"R":{"d":"237,-197v-2,40,-30,60,-74,68v25,38,44,81,72,116v1,1,11,1,16,4v0,21,-40,3,-66,10v-32,-61,-56,-105,-73,-130v0,-7,4,-6,11,-5v40,0,66,-20,66,-60v0,-36,-40,-43,-72,-35r-34,207v0,15,24,8,35,13v-1,3,1,9,-3,10r-114,-1v-1,-23,30,2,35,-28r33,-197v2,-16,-22,-7,-33,-12v1,-4,-1,-10,3,-11v70,9,202,-27,198,51","w":259},"S":{"d":"190,-237v1,17,-8,37,-10,55v-15,5,-9,-16,-10,-29v-22,-34,-101,-25,-98,28v4,65,111,20,111,97v0,78,-105,122,-167,73v4,-17,4,-40,11,-54v18,-3,6,17,10,31v7,13,33,24,54,24v46,0,76,-64,34,-82v-38,-16,-87,-14,-87,-68v0,-74,90,-113,152,-75","w":200},"T":{"d":"127,-60v-1,24,-16,48,9,48v10,0,27,1,17,13v-28,-3,-82,1,-114,-1v-5,-21,29,-3,33,-20v12,-50,27,-148,38,-208v-31,2,-69,-9,-72,25r-5,19v-4,-1,-11,2,-12,-2v4,-15,4,-42,11,-62r101,3r106,-3r3,3r-12,61v-4,-1,-11,2,-12,-2v1,-10,2,-18,2,-26v1,-27,-34,-12,-63,-16","w":219,"k":{"A":25,"\u0104":25,"a":18,"c":18,"d":18,"e":18,"g":18,"m":18,"n":18,"o":18,"p":18,"q":18,"r":18,"s":18,"t":18,"u":18,"v":18,"w":18,"x":18,"y":18,"z":18,"\u0105":18,"\u0107":18,"\u0119":18,"\u0144":18,"\u00f3":18,"\u015b":18,"\u017a":18,"\u017c":18,".":18,",":18,":":18,";":18,"\u00ad":25}},"U":{"d":"217,-224v0,-17,-14,-7,-33,-13v1,-4,-1,-10,3,-11r114,1v-1,4,-1,10,-4,12v-43,-6,-35,18,-40,53r-25,160v-1,17,24,7,34,13v-1,3,1,9,-3,10v-38,-4,-54,3,-82,-2v4,-19,8,-35,9,-45v-33,32,-45,50,-91,53v-41,2,-61,-22,-64,-55v-1,-15,27,-163,25,-176v0,-14,-13,-8,-32,-13v4,-25,55,-3,85,-11v-2,56,-28,128,-30,190v-1,48,68,39,89,12v40,-32,29,-117,45,-178","w":280},"V":{"d":"217,-225v5,-17,-16,-5,-28,-13v-1,-8,3,-12,13,-10v26,3,46,-3,66,2v3,15,-17,7,-21,16r-127,233r-30,0r-38,-233v-4,-8,-14,-3,-27,-7v1,-4,-1,-10,3,-11r103,1v-1,4,0,9,-3,11v-39,-2,-26,18,-21,50r20,136r80,-151v6,-13,9,-22,10,-24","w":240,"k":{"A":32,"\u0104":32,"a":25,"c":25,"d":25,"e":25,"g":25,"m":25,"n":25,"o":25,"p":25,"q":25,"r":25,"s":25,"t":25,"u":25,"v":25,"w":25,"x":25,"y":25,"z":25,"\u0105":25,"\u0107":25,"\u0119":25,"\u0144":25,"\u00f3":25,"\u015b":25,"\u017a":25,"\u017c":25,".":25,",":25,":":11,";":11,"\u00ad":25}},"W":{"d":"337,-226v-1,-14,-14,-7,-31,-11v1,-4,-1,-10,3,-11v25,1,53,-2,76,1v0,4,1,11,-2,12v-28,1,-19,5,-31,35r-81,203r-31,0r-46,-181r-89,181r-30,0r-17,-190v-7,-38,3,-48,-33,-50v1,-4,1,-9,3,-11r103,1v-1,4,1,10,-3,11v-42,-1,-28,22,-24,64r10,119r95,-196r11,0r53,201r47,-124v11,-28,17,-46,17,-54","w":360,"k":{"A":32,"\u0104":32,"a":25,"c":25,"d":25,"e":25,"g":25,"m":25,"n":25,"o":25,"p":25,"q":25,"r":25,"s":25,"t":25,"u":25,"v":25,"w":25,"x":25,"y":25,"z":25,"\u0105":25,"\u0107":25,"\u0119":25,"\u0144":25,"\u00f3":25,"\u015b":25,"\u017a":25,"\u017c":25,".":25,",":25,":":11,";":11,"\u00ad":25}},"X":{"d":"207,-217v17,-20,-1,-17,-23,-20v-4,-19,25,-7,39,-10v18,1,39,-3,55,0v5,14,-19,11,-23,13v-26,20,-65,67,-95,97r63,121v0,3,37,2,23,17r-109,-1v-3,-23,39,-1,28,-25r-37,-77r-52,59v-20,21,-21,34,16,32v4,9,-4,15,-14,12r-81,-1v2,-21,28,-4,38,-26r84,-91r-47,-94v-13,-24,-10,-22,-43,-26v1,-4,-1,-10,3,-11r114,1v4,19,-27,6,-29,18v-2,3,26,58,35,77","w":259},"Y":{"d":"137,-58v-9,41,-5,46,29,49v-1,3,0,8,-2,10v-28,-3,-82,1,-114,-1v-3,-24,41,4,37,-37r9,-52v-12,-38,-18,-142,-74,-125v-5,-18,23,-35,40,-38v58,5,55,94,71,143v24,-55,49,-106,96,-137v4,-2,8,-2,13,-2r-2,32v-58,25,-87,88,-103,158","w":219,"k":{"A":18,"\u0104":18,"a":11,"c":11,"d":11,"e":11,"g":11,"m":11,"n":11,"o":11,"p":11,"q":11,"r":11,"s":11,"t":11,"u":11,"v":11,"w":11,"x":11,"y":11,"z":11,"\u0105":11,"\u0107":11,"\u0119":11,"\u0144":11,"\u00f3":11,"\u015b":11,"\u017a":11,"\u017c":11,".":14,",":14,":":11,";":11,"\u00ad":25}},"Z":{"d":"36,-186v3,-30,6,-55,10,-62r198,1r-1,10r-175,219v42,0,107,1,132,-6r17,-42v4,0,11,-1,12,2v-8,20,-7,46,-16,65r-213,-1v3,-20,8,-15,31,-44r147,-185v-38,3,-83,-1,-117,6v-6,6,-10,28,-15,37r-10,0","w":240},"\u0104":{"d":"42,-19v1,11,18,4,31,10v2,18,-24,6,-42,9v-9,-1,-28,2,-43,0v-3,-17,20,-8,26,-17r135,-231r34,0r36,231v5,8,14,5,28,8v-1,3,1,9,-3,10v-44,-10,-55,22,-59,36v1,22,28,23,40,6v4,0,8,1,9,5v-18,19,-35,28,-52,28v-16,0,-25,-8,-24,-24v2,-29,13,-31,38,-52v-19,-1,-41,3,-58,0v1,-4,1,-9,4,-11v18,-1,26,0,26,-11v0,-12,-2,-37,-8,-74r-80,0v-25,44,-38,70,-38,77xm89,-112r69,0r-14,-95","w":259,"k":{"T":25,"V":32,"W":32,"Y":25,"\u201d":25}},"\u0106":{"d":"251,-330v-31,20,-60,39,-84,58v-2,-2,-10,-3,-8,-7v15,-17,28,-36,45,-51v15,-1,32,-6,46,-4xm73,-97v-6,92,96,96,147,53v11,23,-30,35,-46,42v-70,30,-150,-3,-150,-86v0,-116,118,-202,224,-146v-8,23,-11,43,-15,59v-4,-1,-10,2,-11,-2v11,-54,-21,-53,-59,-55v-72,-4,-86,64,-90,135","w":246},"\u0118":{"d":"65,-225v1,-15,-16,-4,-33,-12v1,-4,-1,-10,3,-11r183,2v-4,14,-4,39,-10,57v-4,0,-9,1,-11,-1v14,-59,-39,-36,-83,-38r-17,90v27,2,60,-3,83,3v-2,6,-3,13,-7,17r-80,-2r-17,103v39,-7,101,16,106,-28v1,-8,6,-24,18,-15v-6,19,-6,44,-14,61r-24,0v-18,14,-27,25,-27,36v1,23,29,23,41,6v5,0,7,2,9,5v-17,19,-34,28,-51,28v-15,0,-28,-8,-26,-24v3,-27,13,-31,38,-51r-139,-1r2,-11v35,-6,25,-20,32,-66","w":219},"\u0141":{"d":"70,-211v5,-32,-8,-20,-32,-26v1,-4,-1,-10,3,-11r114,1v2,22,-35,0,-36,27v-4,16,-11,57,-15,79v17,-5,34,-17,50,-19v1,5,4,10,2,14r-55,23r-18,106v40,-7,100,17,106,-28v1,-8,6,-24,18,-15v-5,14,-7,48,-14,61r-179,-1v2,-22,29,-6,27,-36v2,-9,5,-32,11,-66v-14,4,-28,15,-41,16v-1,-4,-5,-9,-3,-13r47,-21","w":219,"k":{"T":25,"V":28,"W":28,"Y":25,"\u201d":25}},"\u0143":{"d":"242,-330v-31,20,-60,39,-84,58v-3,-2,-12,-4,-7,-7v15,-17,28,-36,44,-51v15,-1,32,-6,46,-4xm67,-216v-11,-23,-16,-13,-43,-22v-4,-15,19,-9,29,-9r49,-1r113,197v19,-104,29,-162,29,-173v1,-16,-22,-8,-32,-14v-1,-8,2,-10,12,-10r73,1v2,18,-25,5,-28,17v-19,67,-33,154,-45,233r-31,0r-112,-198v-19,100,-28,158,-28,172v1,16,19,10,32,14v-1,7,-3,10,-13,10r-72,-1v-2,-21,34,1,31,-29","w":280},"\u00d3":{"d":"253,-330v-31,20,-60,39,-84,58v-2,-2,-10,-3,-8,-7r44,-51v15,-1,33,-6,47,-4xm135,8v-68,-2,-110,-33,-108,-101v3,-91,51,-159,148,-159v68,0,109,36,109,105v0,85,-61,157,-149,155xm170,-236v-76,0,-90,83,-94,154v-3,45,23,73,66,74v72,0,88,-85,92,-153v3,-49,-21,-75,-64,-75","w":299},"\u015a":{"d":"216,-330v-31,20,-60,39,-84,58v-2,-2,-10,-3,-8,-7v15,-17,28,-36,45,-51v15,-1,32,-6,46,-4xm190,-237v1,17,-8,37,-10,55v-15,5,-9,-16,-10,-29v-22,-34,-101,-25,-98,28v4,65,111,20,111,97v0,78,-105,122,-167,73v4,-17,4,-40,11,-54v18,-3,6,17,10,31v7,13,33,24,54,24v46,0,76,-64,34,-82v-38,-16,-87,-14,-87,-68v0,-74,90,-113,152,-75","w":200},"\u0179":{"d":"216,-330v-31,20,-60,39,-84,58v-2,-2,-10,-3,-8,-7v15,-17,28,-36,45,-51v15,-1,32,-6,46,-4xm36,-186v3,-30,6,-55,10,-62r198,1r-1,10r-175,219v42,0,107,1,132,-6r17,-42v4,0,11,-1,12,2v-8,20,-7,46,-16,65r-213,-1v3,-20,8,-15,31,-44r147,-185v-38,3,-83,-1,-117,6v-6,6,-10,28,-15,37r-10,0","w":240},"\u017b":{"d":"171,-307v2,26,-46,41,-48,9v-3,-28,46,-42,48,-9xm36,-186v3,-30,6,-55,10,-62r198,1r-1,10r-175,219v42,0,107,1,132,-6r17,-42v4,0,11,-1,12,2v-8,20,-7,46,-16,65r-213,-1v3,-20,8,-15,31,-44r147,-185v-38,3,-83,-1,-117,6v-6,6,-10,28,-15,37r-10,0","w":240},"a":{"d":"14,-25v1,-88,61,-167,144,-135v7,-3,15,-14,21,-6v-9,31,-25,103,-30,137v5,18,14,-2,34,-8v1,3,5,5,3,9v-31,22,-35,31,-63,36v-16,-3,-13,-21,-9,-38v2,-9,6,-26,12,-51v-29,48,-48,78,-92,89v-14,-1,-21,-13,-20,-33xm134,-142v-62,-39,-79,63,-79,107v0,9,2,13,7,13v31,-16,67,-76,72,-120","w":200},"b":{"d":"51,-226v1,-15,-18,-6,-30,-11v1,-3,0,-8,3,-9v26,-3,49,-9,71,-17r5,4v-12,52,-23,101,-32,147v21,-33,48,-59,87,-59v20,0,25,21,25,44v0,72,-52,135,-116,135v-27,0,-45,-13,-45,-40v0,-43,36,-200,32,-194xm124,-146v-40,12,-64,54,-66,105v-1,19,9,31,25,31v41,0,53,-61,56,-106v1,-16,-3,-29,-15,-30","w":193},"c":{"d":"55,-51v0,54,57,31,87,11v1,3,4,5,4,9v-32,21,-48,39,-86,39v-72,0,-45,-121,-10,-145v23,-16,70,-52,108,-22v-9,8,-1,57,-23,48r1,-23v-10,-9,-21,-13,-32,-13v-44,0,-49,56,-49,96","w":159},"d":{"d":"142,-166v2,-30,26,-77,-21,-71v1,-3,0,-7,2,-9v25,-3,50,-9,72,-17r4,4r-46,231v5,16,12,-2,31,-9r3,9v-32,23,-34,30,-60,35v-29,-16,0,-55,3,-90v-18,37,-57,83,-93,91v-49,-17,-11,-118,9,-141v21,-15,57,-49,96,-33xm138,-145v-29,-11,-60,-8,-65,25v-9,22,-18,58,-18,85v0,18,11,15,22,6v28,-24,55,-70,61,-116","w":200},"e":{"d":"52,-46v5,50,58,23,84,6v1,3,4,5,4,9v-32,22,-48,39,-84,39v-26,0,-45,-17,-45,-43v-1,-73,40,-130,106,-136v36,-4,41,38,24,62v-15,20,-56,34,-87,39v-1,9,-2,17,-2,24xm117,-136v0,-25,-32,-21,-42,-3v-6,11,-14,30,-20,59v38,-7,62,-24,62,-56","w":159},"f":{"d":"140,-167v4,6,-3,18,-5,21r-43,0v-25,91,-31,207,-106,244v-9,5,-18,4,-28,0v6,-15,9,-28,11,-39r6,-1v13,28,34,14,39,-13r37,-191v-11,-1,-41,6,-30,-10v13,-8,35,-2,37,-21v7,-45,49,-62,80,-84v9,-3,21,-3,30,0v-5,16,-8,31,-10,46r-5,1v-13,-21,-32,-28,-43,-9v-6,10,-11,43,-14,58v7,1,38,0,44,-2","w":119},"g":{"d":"20,-95v1,-66,70,-87,127,-68v14,1,34,-5,43,2r-4,18r-31,-1v15,50,-20,84,-63,94v-5,3,-11,7,-11,13v12,28,67,37,67,77v0,70,-156,87,-166,15v2,-34,35,-48,69,-59v-7,-7,-12,-17,-7,-25r31,-21v-33,1,-55,-12,-55,-45xm94,-156v-37,-2,-57,92,-11,94v40,2,55,-91,11,-94xm14,50v-1,51,97,47,97,3v-6,-28,-18,-23,-52,-50v-19,11,-44,17,-45,47"},"h":{"d":"47,-197v2,-13,12,-39,-6,-38v-4,-1,-14,0,-20,-2r3,-9v25,-3,50,-9,72,-17r4,4v-17,72,-30,129,-38,169v23,-37,59,-82,100,-82v10,0,15,6,15,16v0,24,-28,103,-28,125v0,26,26,-18,35,0v-24,24,-40,32,-65,39v-41,-21,36,-133,8,-146v-50,19,-72,74,-80,137v-10,-2,-36,12,-41,4v14,-41,35,-155,41,-200","w":200},"i":{"d":"89,-204v-14,0,-19,-9,-20,-22v-1,-14,11,-26,25,-26v12,0,20,8,19,20v0,14,-9,28,-24,28xm25,-11v-1,-30,36,-114,22,-125v-4,-1,-16,9,-33,17r-4,-7v27,-23,47,-40,76,-46v6,-1,11,6,11,13v2,31,-42,122,-25,136v4,1,14,-8,30,-16r4,7v-16,14,-42,36,-67,40v-10,-1,-13,-9,-14,-19","w":119},"j":{"d":"94,-204v-14,0,-19,-9,-20,-22v-1,-14,11,-26,25,-26v13,0,19,8,19,20v0,15,-10,28,-24,28xm15,-126v33,-27,46,-39,77,-46v6,0,10,5,10,15v-22,87,-28,217,-96,256v-8,5,-18,4,-27,1v2,-7,4,-17,4,-29v11,3,27,23,34,-2v6,-20,27,-123,34,-164v4,-23,9,-33,2,-41v-4,-1,-17,9,-34,17","w":119},"k":{"d":"62,-226v1,-15,-16,-6,-30,-11r3,-9v26,-3,50,-9,72,-17r4,4v-6,23,-19,83,-39,179v35,-34,57,-92,122,-91v0,12,-5,25,-8,31v-30,-11,-51,7,-68,25v8,16,24,87,44,93v3,4,26,-22,31,-6v-13,15,-53,37,-60,36v-26,-11,-31,-67,-45,-92v-22,20,-26,45,-29,83v-12,1,-25,3,-40,7r-3,-5v13,-34,44,-193,46,-227","w":200},"l":{"d":"59,-188v2,-13,18,-49,-4,-47v-3,-1,-13,0,-19,-2v1,-3,0,-8,3,-9v26,-3,49,-9,71,-17r5,4r-49,228v5,20,16,-1,35,-8v1,3,4,5,4,9v-37,24,-40,32,-67,38v-10,0,-14,-10,-14,-20v4,-45,27,-127,35,-176","w":119},"m":{"d":"134,-137v-45,17,-69,82,-77,137v-8,0,-21,2,-39,7r-3,-5v9,-28,28,-99,29,-132v-7,-17,-14,3,-32,9v-1,-3,-4,-4,-4,-9v18,-12,44,-39,68,-43v12,3,11,15,7,29v-2,8,-6,30,-14,65v21,-41,59,-85,99,-94v29,15,-4,65,-5,94v21,-44,59,-86,103,-93v8,0,12,8,12,17v1,39,-38,125,-22,132v3,1,13,-8,29,-16r4,7v-27,21,-40,34,-67,40v-8,0,-13,-8,-13,-16v0,-34,23,-86,25,-120v0,-6,-1,-8,-5,-8v-47,16,-71,82,-79,138v-7,-3,-34,11,-41,0v10,-22,29,-105,31,-131v0,-4,-2,-8,-6,-8","w":299},"n":{"d":"111,-10v-2,-14,28,-108,26,-119v-43,-15,-76,76,-84,129v-17,-2,-35,13,-42,2v10,-29,30,-94,30,-132v-5,-16,-13,2,-31,9v-1,-3,-4,-4,-4,-9v19,-14,41,-36,67,-42v15,2,10,20,7,36v-2,10,-6,28,-13,53v18,-36,61,-83,99,-89v21,2,15,24,10,43v-8,33,-18,65,-23,100v5,16,15,-2,32,-8v1,3,4,5,4,9v-30,21,-37,31,-66,36v-9,1,-13,-9,-12,-18","w":200},"o":{"d":"73,8v-37,1,-56,-21,-55,-57v-1,-71,40,-123,108,-123v35,0,56,20,56,57v0,71,-40,120,-109,123xm109,-156v-41,0,-50,65,-50,105v0,26,9,41,32,41v42,0,46,-62,49,-104v2,-26,-9,-42,-31,-42","w":200},"p":{"d":"46,-123v-3,-29,-16,-3,-33,2r-4,-6v17,-18,43,-39,67,-46v16,2,11,16,8,34v-2,11,-5,25,-10,43v22,-36,48,-70,93,-76v18,-2,21,25,21,43v0,79,-48,141,-132,133v-3,24,-17,61,-17,89v-14,1,-31,9,-44,5r37,-151v8,-38,13,-61,14,-70xm109,-15v24,-21,52,-96,29,-128v-48,18,-66,63,-77,122v15,8,32,12,48,6","w":200},"q":{"d":"30,6v-41,-21,-4,-107,12,-132v25,-23,72,-66,119,-36v8,-3,16,-14,23,-6v-20,69,-45,182,-55,261v-8,0,-24,2,-47,7v-2,-14,14,-25,14,-49r27,-121v-25,35,-54,68,-93,76xm137,-144v-26,-13,-58,-12,-64,23v-9,20,-21,64,-21,86v0,18,14,14,24,5v28,-25,57,-62,61,-114","w":193},"r":{"d":"147,-169v4,7,-8,37,-6,49v-9,5,-24,-14,-38,1v-23,24,-40,73,-44,118v-14,-1,-36,13,-42,3v13,-44,23,-90,27,-129v-3,-20,-11,-1,-31,5v-1,-3,-3,-5,-3,-9v29,-23,38,-34,64,-41v6,0,11,6,11,13v-3,23,-5,25,-15,71r2,0v20,-32,28,-87,75,-81","w":140},"s":{"d":"10,-4r8,-48v12,-3,10,7,10,17v15,29,94,29,75,-18v-22,-23,-81,-8,-78,-56v3,-51,73,-79,121,-52v-3,10,-2,31,-8,43v-12,3,-9,-9,-11,-18v-15,-19,-72,-25,-69,10v4,45,114,14,78,88v-16,34,-77,60,-126,34","w":159},"t":{"d":"30,-15v0,-21,26,-127,26,-131v-12,-2,-46,7,-35,-10v10,-2,22,-6,39,-12v2,-10,7,-39,6,-50r44,-14v9,14,-8,32,-12,67v16,2,39,-5,50,2v-3,5,-2,14,-6,18r-48,-1r-23,115v0,5,4,10,9,9v18,-2,20,-14,41,-21r3,9v-39,27,-43,34,-74,42v-14,-1,-19,-9,-20,-23","w":140},"u":{"d":"44,-131v-6,-18,-14,1,-32,5r-3,-7v23,-19,42,-34,68,-39v14,1,11,17,9,31v-5,31,-20,74,-25,108v1,12,11,9,18,3v32,-26,59,-77,65,-133v12,-1,25,-4,38,-8r3,4v-9,31,-30,105,-32,136v7,22,30,-26,34,1v-35,24,-36,31,-63,37v-28,-9,2,-58,5,-86v-15,32,-58,83,-93,87v-11,1,-17,-9,-17,-21v0,-27,29,-106,25,-118","w":200},"v":{"d":"93,-148v-17,5,-39,2,-61,4v-6,7,-8,30,-22,22r14,-46v30,-9,65,8,90,-5r5,7v-21,25,-45,69,-46,114v0,20,7,36,24,36v41,0,59,-62,62,-105v1,-22,-14,-22,-27,-19v-1,-2,-2,-4,-2,-7v11,-4,16,-24,30,-24v18,0,27,12,27,36v0,64,-49,138,-110,143v-53,4,-51,-78,-24,-110v8,-9,20,-26,40,-46","w":200},"w":{"d":"110,-13v-26,34,-82,23,-78,-30v4,-53,23,-65,60,-105v-19,7,-39,1,-61,4v-6,8,-7,30,-22,22v8,-22,13,-37,14,-46v29,-6,66,6,92,-4r5,6v-24,26,-47,69,-49,113v-2,42,26,44,45,19v23,-31,37,-80,43,-128v18,-1,33,-14,43,-6v-16,56,-24,96,-24,123v0,18,5,28,20,29v40,-8,59,-62,62,-106v1,-18,-13,-27,-29,-19r-3,-5v11,-11,19,-21,33,-25v17,1,28,16,26,36v-6,70,-47,131,-111,143v-31,-1,-40,-36,-30,-70v-12,17,-20,36,-36,49","w":299},"x":{"d":"78,-58v-29,33,-29,61,-71,65v-1,0,-5,-2,-10,-4v3,-7,8,-30,6,-38r9,-1r2,12v30,11,46,-35,60,-48v-9,-35,0,-60,-27,-67v-15,-4,-24,24,-33,11v12,-19,19,-30,21,-36v41,-22,70,8,69,54v30,-38,26,-52,64,-61v3,0,7,1,12,3v-4,10,-7,23,-8,39v-12,7,-7,-11,-18,-10v-25,4,-28,19,-47,44v8,50,9,94,55,57v1,3,4,4,4,8v-31,25,-31,32,-57,38v-27,-9,-25,-28,-31,-66"},"y":{"d":"45,100v-22,3,-38,-10,-36,-35v9,-4,17,-16,27,-12v-5,31,30,41,47,20v24,-30,33,-88,44,-132v-23,31,-43,58,-73,66v-13,-2,-18,-15,-17,-35r8,-95v-2,-28,-15,-11,-35,-1v-6,-21,39,-41,61,-48v33,11,4,94,4,131v0,20,9,19,20,8v27,-25,49,-81,55,-129v14,-1,33,-12,44,-6v-37,97,-35,252,-149,268","w":200},"z":{"d":"41,-168v38,-16,95,31,119,-3v12,0,3,13,2,21r-117,122v30,-19,63,0,96,-3v5,-7,6,-26,19,-18v-4,12,-9,28,-13,50v-40,22,-99,-33,-133,2r-5,-12r122,-128v-25,14,-55,2,-87,2v-1,2,-7,26,-19,17"},"\u0105":{"d":"118,35v0,21,27,22,38,6v5,0,7,2,9,5v-18,18,-25,27,-49,27v-15,0,-24,-9,-24,-24v0,-21,12,-29,27,-41v-19,-26,1,-48,7,-89v-29,48,-48,78,-92,89v-43,-17,-10,-110,10,-134v20,-24,72,-62,114,-34v7,-3,15,-14,21,-6v-9,31,-25,103,-30,137v5,18,14,-2,34,-8r4,6v-30,33,-58,27,-69,66xm134,-142v-62,-39,-79,63,-79,107v0,9,2,13,7,13v31,-16,67,-76,72,-120","w":200},"\u0107":{"d":"198,-259v-41,28,-72,50,-94,67v-2,-2,-10,-3,-8,-7v19,-19,34,-43,55,-60v15,-1,32,-6,46,-4xm55,-51v0,54,57,31,87,11v1,3,4,5,4,9v-32,21,-48,39,-86,39v-72,0,-45,-121,-10,-145v23,-16,70,-52,108,-22v-9,8,-1,57,-23,48r1,-23v-10,-9,-21,-13,-32,-13v-44,0,-49,56,-49,96","w":159},"\u0119":{"d":"52,-46v5,50,58,23,84,6v1,3,4,5,4,9v-32,23,-57,36,-75,38v-16,10,-29,41,-2,45v8,5,23,-19,30,-6v-18,18,-24,24,-48,27v-40,-5,-22,-54,3,-66v-23,-3,-37,-18,-37,-42v0,-75,38,-130,106,-136v35,-3,42,37,24,61v-15,20,-55,35,-87,40v-1,9,-2,17,-2,24xm117,-136v0,-25,-32,-21,-42,-3v-6,11,-14,30,-20,59v38,-7,62,-24,62,-56","w":159},"\u0142":{"d":"38,8v-10,2,-14,-10,-14,-20v-1,-16,14,-77,19,-104v-12,5,-23,16,-35,17v-1,-4,-4,-8,-2,-11r41,-22r19,-94v-1,-14,-15,-7,-30,-11v1,-3,0,-8,3,-9v25,-3,49,-9,71,-17v11,7,-3,26,-4,39v-1,3,-6,26,-15,68v12,-5,25,-16,37,-17v1,4,4,8,2,11r-42,22r-22,109v5,20,16,-1,35,-8v1,3,4,5,4,9v-37,24,-39,34,-67,38","w":119},"\u0144":{"d":"205,-259v-41,28,-72,50,-94,67v-2,-2,-10,-3,-8,-7v19,-19,34,-43,55,-60v15,-1,32,-6,46,-4xm111,-10v-2,-14,28,-108,26,-119v-43,-15,-76,76,-84,129v-17,-2,-35,13,-42,2v10,-29,30,-94,30,-132v-5,-16,-13,2,-31,9v-1,-3,-4,-4,-4,-9v19,-14,41,-36,67,-42v15,2,10,20,7,36v-2,10,-6,28,-13,53v18,-36,61,-83,99,-89v21,2,15,24,10,43v-8,33,-18,65,-23,100v5,16,15,-2,32,-8v1,3,4,5,4,9v-30,21,-37,31,-66,36v-9,1,-13,-9,-12,-18","w":200},"\u00f3":{"d":"196,-259v-41,28,-72,50,-94,67v-2,-2,-10,-3,-8,-7v19,-19,34,-43,55,-60v15,-1,32,-6,46,-4xm73,8v-37,1,-56,-21,-55,-57v-1,-71,40,-123,108,-123v35,0,56,20,56,57v0,71,-40,120,-109,123xm109,-156v-41,0,-50,65,-50,105v0,26,9,41,32,41v42,0,46,-62,49,-104v2,-26,-9,-42,-31,-42","w":200},"\u015b":{"d":"175,-259v-41,28,-72,50,-94,67v-2,-2,-10,-3,-8,-7v19,-19,34,-43,55,-60v15,-1,32,-6,46,-4xm10,-4r8,-48v12,-3,10,7,10,17v15,29,94,29,75,-18v-22,-23,-81,-8,-78,-56v3,-51,73,-79,121,-52v-3,10,-2,31,-8,43v-12,3,-9,-9,-11,-18v-15,-19,-72,-25,-69,10v4,45,114,14,78,88v-16,34,-77,60,-126,34","w":159},"\u017a":{"d":"184,-259v-41,28,-72,50,-94,67v-2,-2,-10,-3,-8,-7v19,-19,34,-43,55,-60v15,-1,32,-6,46,-4xm41,-168v38,-16,95,31,119,-3v12,0,3,13,2,21r-117,122v30,-19,63,0,96,-3v5,-7,6,-26,19,-18v-4,12,-9,28,-13,50v-40,22,-99,-33,-133,2r-5,-12r122,-128v-25,14,-55,2,-87,2v-1,2,-7,26,-19,17"},"\u017c":{"d":"138,-226v4,24,-41,38,-43,9v-2,-24,41,-38,43,-9xm41,-168v38,-16,95,31,119,-3v12,0,3,13,2,21r-117,122v30,-19,63,0,96,-3v5,-7,6,-26,19,-18v-4,12,-9,28,-13,50v-40,22,-99,-33,-133,2r-5,-12r122,-128v-25,14,-55,2,-87,2v-1,2,-7,26,-19,17"},"0":{"d":"132,-19v-45,53,-117,18,-117,-61v0,-74,31,-168,97,-168v102,0,60,182,20,229xm134,-200v0,-31,-30,-47,-43,-21v-22,42,-30,121,-35,181v-3,36,36,45,47,13v13,-38,31,-119,31,-173"},"1":{"d":"108,-24v-3,20,38,7,48,15v2,18,-23,10,-40,10v-33,0,-73,5,-102,-1v2,-4,2,-9,5,-11v61,2,46,-14,56,-77r20,-123r-65,30v-6,-6,3,-18,3,-27v43,-12,81,-24,107,-40v15,11,1,33,-10,95"},"2":{"d":"160,-40v6,6,-4,24,-10,41r-150,-1v0,-15,4,-10,17,-24v35,-36,96,-89,101,-152v2,-24,-12,-39,-36,-39v-31,0,-35,19,-49,38v-3,-2,-9,-1,-9,-5r19,-47v49,-48,152,0,111,78v-25,47,-73,74,-104,115v37,-2,78,3,110,-4"},"3":{"d":"161,-80v2,72,-96,112,-157,70v5,-18,4,-42,12,-57v13,-2,9,11,9,20v0,26,15,39,38,40v56,5,78,-117,12,-116v-7,-2,-20,7,-27,3r6,-19v35,9,65,-14,65,-47v0,-22,-12,-33,-33,-33v-26,0,-35,15,-48,31v-3,-2,-7,-2,-8,-5v12,-29,27,-55,71,-55v34,0,61,18,61,49v-1,37,-32,51,-56,64v34,3,55,21,55,55"},"4":{"d":"125,-22v1,18,24,6,40,13v1,21,-49,5,-63,9v-8,-1,-38,2,-67,0v1,-26,52,6,49,-34v2,-9,4,-19,6,-31v-28,-2,-64,5,-88,-1v1,-23,15,-32,24,-47v22,-40,59,-87,89,-123v19,0,36,-18,48,-9r-28,153v8,1,27,-2,40,0v-3,9,-3,21,-8,28v-14,-1,-26,-1,-37,-1xm95,-92r22,-123v-19,22,-72,96,-86,123v22,2,38,0,64,0"},"5":{"d":"162,-90v0,77,-96,124,-159,78v7,-19,4,-40,11,-52v8,-1,11,3,8,11v0,26,14,45,41,45v53,0,80,-124,13,-123v-19,1,-29,7,-38,21r-11,-4r25,-130v25,4,91,3,116,1v6,11,-11,24,-14,36v-31,4,-75,3,-94,2r-15,71v39,-36,117,-17,117,44"},"6":{"d":"14,-73v0,-94,47,-175,134,-175v9,0,18,2,27,6v-4,8,-3,21,-10,26v-56,-43,-96,38,-101,94v32,-46,110,-33,107,29v-3,59,-37,101,-93,101v-45,0,-64,-34,-64,-81xm97,-126v-45,-3,-59,117,-9,117v41,-1,58,-114,9,-117"},"7":{"d":"69,0v-14,1,-38,5,-44,-3r133,-199r-130,2v5,-20,-6,-56,29,-43v45,2,97,-4,138,2v-5,32,-24,43,-44,81v-24,44,-66,120,-82,160"},"8":{"d":"10,-47v0,-43,28,-52,59,-71v-20,-11,-34,-24,-34,-52v0,-48,38,-78,86,-78v29,0,56,18,53,48v-3,39,-22,45,-52,65v82,38,25,143,-52,143v-35,0,-60,-21,-60,-55xm110,-231v-32,-2,-51,38,-33,65v5,7,17,16,34,25v16,-13,35,-26,35,-52v0,-24,-15,-37,-36,-38xm80,-10v38,0,57,-46,36,-75v-6,-8,-19,-16,-37,-26v-41,11,-61,101,1,101"},"9":{"d":"176,-167v-3,90,-45,175,-127,175v-9,0,-19,-2,-30,-6r-9,-38r8,-4v10,30,47,39,70,18v20,-18,32,-59,38,-96v-34,50,-108,34,-106,-32v2,-59,38,-97,93,-97v43,0,64,35,63,80xm101,-229v-34,2,-36,40,-37,75v-1,22,11,40,30,40v30,0,38,-37,38,-70v-1,-23,-7,-45,-31,-45"},"%":{"d":"78,-127v-33,1,-54,-19,-54,-53v0,-40,26,-72,70,-72v33,0,56,19,55,53v-2,41,-29,70,-71,72xm95,-241v-23,0,-37,49,-37,77v0,14,7,25,19,25v23,5,38,-47,38,-76v0,-17,-7,-26,-20,-26xm237,8v-34,1,-54,-20,-55,-53v-1,-40,27,-71,70,-72v33,0,57,21,56,53v-2,41,-29,72,-71,72xm253,-106v-24,1,-37,47,-37,77v0,17,7,25,20,25v22,5,38,-47,37,-75v0,-18,-7,-27,-20,-27xm256,-261r-170,274v-4,-1,-11,1,-14,-1r170,-275v5,1,13,-2,14,2","w":320},"+":{"d":"175,-91r-69,0r0,68r-31,0r0,-68r-69,0r0,-30r69,0r0,-68r31,0r0,68r69,0r0,30"},"=":{"d":"175,-126r-169,0r0,-30r169,0r0,30xm175,-62r-169,0r0,-30r169,0r0,30"},"<":{"d":"175,-3r-169,-76r0,-27r169,-77r0,31r-128,59r128,59r0,31"},">":{"d":"175,-79r-169,76r0,-31r128,-59r-128,-59r0,-31r169,77r0,27"},"^":{"d":"175,-116r-35,0r-50,-97r-50,97r-35,0r68,-133r34,0"},"~":{"d":"55,-122v22,0,47,25,71,25v9,0,19,-9,30,-29r18,20v-9,22,-25,42,-48,42v-22,0,-48,-21,-70,-26v-9,0,-20,11,-32,32r-18,-19v14,-30,30,-45,49,-45"},"#":{"d":"39,0r11,-60r-26,0r5,-27r26,0r13,-72r-26,0r5,-28r26,0r10,-52r14,0r-10,52r40,0r10,-52r13,0r-10,52r26,0r-5,28r-26,0r-14,72r26,0r-5,27r-26,0r-11,60r-13,0r11,-60r-40,0r-11,60r-13,0xm68,-87r40,0r14,-72r-40,0","w":173},"$":{"d":"165,-82v0,49,-43,84,-88,87v-5,12,2,43,-20,35r6,-35v-23,-2,-39,-8,-55,-19v4,-6,8,-43,10,-51v17,-2,9,8,9,28v8,13,21,20,39,22r16,-87v-63,-2,-72,-74,-35,-112v15,-16,35,-25,59,-28v1,-11,0,-30,18,-23r-4,23v24,1,37,4,51,16v-8,6,0,56,-20,46v6,-29,-11,-41,-34,-44r-15,84v39,7,63,18,63,58xm103,-224v-37,-2,-57,38,-40,67v3,6,13,9,26,13xm80,-14v43,5,66,-53,35,-77v-4,-2,-11,-4,-20,-7"},"&":{"d":"182,-101v-21,0,-24,15,-30,30v-3,0,-7,1,-7,-2r4,-37v22,-31,92,-16,122,-39v14,-10,5,-28,-6,-35v2,-2,3,-5,6,-6v13,6,20,17,20,31v-2,40,-29,44,-68,51v14,6,20,15,20,30v0,56,-67,85,-129,85v-50,0,-86,-20,-87,-70v0,-35,24,-60,73,-76v-19,-2,-34,-17,-34,-38v0,-54,74,-89,131,-64v-2,6,2,56,-17,46r-1,-21v-23,-27,-79,-12,-78,26v1,27,25,39,49,38v-3,9,-4,16,-4,20v-42,-5,-77,18,-77,59v0,40,29,61,70,61v40,0,70,-19,72,-57v1,-19,-12,-31,-29,-32","w":299},"\u201e":{"d":"-7,48v11,-12,31,-67,32,-88v4,0,19,-4,44,-12r5,6v-33,55,-38,81,-76,100xm72,48v11,-12,31,-67,32,-88r44,-12r5,6v-31,53,-38,81,-76,100"},".":{"d":"38,6v-15,0,-23,-9,-23,-25v0,-17,11,-31,27,-31v14,1,22,10,23,24v0,15,-10,32,-27,32","w":90},",":{"d":"70,-46v-22,35,-45,104,-87,103v13,-17,34,-68,36,-95v15,-3,30,-7,45,-13","w":90},":":{"d":"53,-108v-14,-1,-23,-9,-23,-25v-1,-17,11,-31,27,-31v15,0,22,10,23,24v0,15,-10,33,-27,32xm32,6v-15,0,-23,-9,-23,-25v0,-33,50,-44,50,-7v0,15,-10,32,-27,32","w":90},";":{"d":"53,-108v-14,-1,-23,-9,-23,-25v-1,-17,11,-31,27,-31v15,0,23,9,23,24v0,15,-10,33,-27,32xm67,-46v-23,35,-44,105,-87,103v13,-17,34,-68,36,-95v15,-3,30,-7,45,-13","w":90},"\u2026":{"d":"49,5v-15,0,-23,-9,-23,-25v0,-16,10,-31,27,-30v14,0,23,9,23,23v1,17,-11,32,-27,32xm289,5v-15,-1,-23,-9,-23,-25v0,-17,9,-30,27,-30v14,0,23,9,23,23v0,16,-10,32,-27,32xm169,5v-14,-1,-23,-9,-23,-25v0,-16,10,-31,27,-30v14,0,23,9,23,23v1,16,-11,32,-27,32","w":360},"?":{"d":"162,-196v-2,61,-74,61,-89,108v-2,7,12,18,-1,21v-49,-47,45,-80,45,-126v-1,-17,-15,-28,-34,-28v-24,0,-29,14,-40,34v-3,-1,-8,-1,-9,-4v7,-18,12,-33,15,-44v37,-29,115,-16,113,39xm84,-25v5,29,-48,47,-48,9v-6,-32,48,-44,48,-9","w":159},"!":{"d":"81,-136v-15,41,-7,67,-35,65r16,-169v22,-1,40,-13,53,-7xm72,-25v5,29,-48,48,-48,9v-6,-33,48,-43,48,-9","w":119},"(":{"d":"139,-255v-62,55,-101,212,-41,293v-2,4,-5,7,-10,8v-28,-36,-60,-78,-60,-139v0,-85,49,-129,104,-169","w":119},")":{"d":"-12,39v62,-58,100,-210,41,-296v3,-2,4,-5,9,-5v28,34,61,78,60,139v-2,86,-50,128,-103,169","w":119},"[":{"d":"60,16v2,16,21,5,41,13v0,20,-20,5,-52,9v-17,-1,-29,3,-34,-1v11,-50,38,-231,45,-295v22,-2,58,-3,81,-1v6,23,-33,0,-43,20r-34,214v-3,20,-4,33,-4,41","w":119},"]":{"d":"65,-195v9,-55,4,-50,-37,-55v0,-22,18,-6,52,-10v11,1,27,-3,34,2v-8,33,-37,254,-43,296v-25,2,-55,1,-83,-1v0,-12,3,-9,21,-11v17,-2,20,2,23,-9v8,-31,25,-161,33,-212","w":119},"{":{"d":"27,-72v4,-19,-2,-36,-21,-35r0,-7v58,-3,28,-97,58,-134v10,-12,34,-10,56,-10r0,7v-65,6,-11,129,-82,141v48,16,8,78,10,122v0,15,6,17,21,18r0,7v-38,5,-60,-9,-53,-48","w":119},"}":{"d":"102,-150v-6,18,0,37,21,35r0,7v-58,3,-29,97,-58,134v-10,12,-34,11,-57,11r0,-7v66,-6,11,-130,83,-141v-47,-16,-10,-79,-10,-122v0,-16,-7,-17,-22,-18r0,-7v37,-4,61,8,54,47","w":119},"\u201d":{"d":"24,-152v11,-12,31,-67,32,-88v4,0,18,-3,43,-11r5,6v-33,54,-37,79,-75,99xm135,-240v16,-1,39,-18,49,-5v-31,52,-38,79,-76,99r-5,-6v11,-12,31,-67,32,-88"},"'":{"d":"64,-239v5,-21,32,-21,34,0v-9,31,-33,49,-47,74r-12,0","w":90},"\u02b9":{"d":"64,-239v5,-21,32,-21,34,0v-9,31,-33,49,-47,74r-12,0","w":90},"\"":{"d":"64,-239v5,-21,32,-21,34,0v-9,31,-33,49,-47,74r-12,0xm144,-239v5,-21,33,-21,35,0v-9,31,-33,49,-48,74r-11,0"},"\u02ba":{"d":"64,-239v5,-21,32,-21,34,0v-9,31,-33,49,-47,74r-12,0xm144,-239v5,-21,33,-21,35,0v-9,31,-33,49,-48,74r-11,0"},"\u00ab":{"d":"120,-46v-8,-15,-33,-26,-36,-49v26,-22,49,-47,77,-67v2,2,6,3,6,7r-46,65v9,23,25,46,30,69v-14,10,-21,-17,-31,-25xm51,-46v-11,-18,-31,-26,-35,-49v26,-22,48,-47,76,-67v2,2,6,4,7,7r-46,65r30,69v-15,10,-21,-17,-32,-25"},"\u00bb":{"d":"68,-128v4,11,34,27,31,44v-26,22,-49,47,-77,67v-2,-3,-7,-3,-6,-8r46,-64v-9,-23,-26,-46,-30,-70v3,-1,5,-3,9,-3xm136,-128v7,13,35,30,31,44v-26,22,-48,47,-76,67v-2,-3,-6,-4,-7,-8r46,-64v-9,-24,-22,-44,-30,-70r9,-3"},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":179},"@":{"d":"147,-219v57,-2,107,33,106,87v-1,45,-32,86,-74,89v-19,1,-33,-7,-33,-25v-17,38,-80,29,-80,-23v0,-45,31,-86,74,-85v12,0,19,4,23,12r2,-8v12,0,28,-9,35,-1v-8,30,-20,73,-21,101v-1,9,1,14,9,13v25,-4,40,-42,40,-73v1,-45,-33,-75,-82,-74v-63,2,-104,45,-107,109v-5,91,113,116,170,60v5,4,4,6,1,14v-68,58,-207,31,-202,-72v3,-77,60,-122,139,-124xm117,-61v28,-4,41,-48,41,-81v0,-14,-6,-21,-17,-21v-26,0,-40,41,-41,71v0,20,3,29,17,31","w":251},"*":{"d":"109,-193v6,2,46,-13,55,-8v-4,11,3,22,-2,31v-20,-6,-39,-9,-56,-12v7,17,23,32,25,50v-12,1,-22,11,-31,8v-1,-23,-2,-41,-4,-55v-19,16,-26,32,-42,39v-5,-10,-12,-18,-15,-29v18,-7,37,-11,53,-20r-52,-23v0,-11,13,-18,15,-29r4,0v15,18,27,33,38,43v4,-18,2,-40,9,-55v10,4,24,4,32,10v-17,28,-26,44,-29,50","w":159},"\/":{"d":"0,11r93,-276v7,1,18,-2,22,2r-93,274r-22,0","w":113},"\\":{"d":"74,-265r93,276v-8,0,-17,1,-23,-1r-91,-275r21,0","w":218},"|":{"d":"76,0r0,-263r28,0r0,263r-28,0"},"-":{"d":"119,-70v-21,-4,-89,2,-105,-4v5,-12,8,-24,10,-34v16,8,98,-3,106,4v-6,13,-9,25,-11,34","w":139},"\u2011":{"d":"119,-70v-21,-4,-89,2,-105,-4v5,-12,8,-24,10,-34v16,8,98,-3,106,4v-6,13,-9,25,-11,34","w":139},"\u2010":{"d":"119,-70v-21,-4,-89,2,-105,-4v5,-12,8,-24,10,-34v16,8,98,-3,106,4v-6,13,-9,25,-11,34","w":139},"\u00ad":{"d":"119,-70v-21,-4,-89,2,-105,-4v5,-12,8,-24,10,-34v16,8,98,-3,106,4v-6,13,-9,25,-11,34","w":139,"k":{"A":14,"\u0104":14,"T":25,"V":25,"W":25,"Y":25}},"\u2013":{"d":"0,-77r7,-24r179,0r-6,24r-180,0"},"\u00a0":{"w":90},"`":{"d":"119,-199v2,4,-6,5,-9,7r-75,-67v7,-11,32,0,45,1v7,12,20,32,39,59","w":119}}});
;
(function ($) {
  Drupal.behaviors.cufonReplace = {
    attach: function(context) {
      for (o in Drupal.settings.cufonSelectors) { 
        var s = Drupal.settings.cufonSelectors[o];
        $(s.selector + ':not(.cufon-replace-processed)', context)
          .each(function() {
            Cufon.replace($(this), s.options);
          })
          .addClass('cufon-replace-processed');
      }
    }
  }
})(jQuery);
;
(function ($)
{

  Drupal.behaviors.date_popup =
  {
    attach: function (context, settings)
    {
      var cfg   = settings.fb_slider;
      var width = parseInt(cfg['width']);
      var speed = parseInt(cfg['speed']);
      var rpad  = parseInt(cfg['rpad']);

      var $fbslider = $('.fb-slider', context);

      $('.fb-slider', context)
      .removeClass('no-js')
      .hover(function ()
      {
        $fbslider.stop().animate({right: '0px'}, speed);
        $(this).addClass("slideout");
      },
      function ()
      {
        $fbslider.stop().animate({right: '-'+(width+rpad)+'px'}, speed);
        $(this).removeClass("slideout");
      });
    }
  };

})(jQuery);

;
(function ($)
{
  Drupal.behaviors.userAutocompleteSubmitter =
  {
    attach: function(context, settings)
    {
      $("#edit-name.form-autocomplete", context).bind('autocomplete_select', function(event)
      {
        $(this).parents('form').find('input[type=submit]').click();
      });
    }
  };

  Drupal.behaviors.yyshopActiveTrail =
  {
    attach: function(context, settings)
    {
      $('li a.active', context).once('yyshopactivetrail-processed')
      .each(function()
      {
        $(this).parents('li:not(.active-trail)')
        .addClass('active-trail')
        .find('>a:not(.active)')
        .addClass('active-trail')
      });
    }
  };

  Drupal.behaviors.yyshopCartMessage =
  {
    attach: function(context, settings)
    {
      $('.order-product div.cart-message', context)
      .once('yyshopCartMessage-processed')
      .delay(4000).fadeOut(400);
    }
  };

  Drupal.behaviors.yyshopfirsts =
  {
    attach: function(context, settings)
    {
      $("#modal-content:not(.yyshop-processed)")
        .addClass('yyshop-processed')
        .each(function()
        {
          // console.log('dupa');
        });

      $('fieldset legend').each(function()
      {
        var $next = $(this).next();

        if ($next.is('.fieldset-wrapper'))
        {
          $next = $next.find(':first-child'); // first child
        }

        if ($next.is('.sticky-header'))
        {
          $next = $next.next();
        }

        $next.addClass('firstChild firstInFieldset')

         $(':last-child', $next.parent()).addClass('lastChild lastInFieldset');

      });
    }
  };

})(jQuery);

;
;
(function ($) {

$(document).ready(function() {

  // Accepts a string; returns the string with regex metacharacters escaped. The returned string
  // can safely be used at any point within a regex to match the provided literal string. Escaped
  // characters are [ ] { } ( ) * + ? - . , \ ^ $ # and whitespace. The character | is excluded
  // in this function as it's used to separate the domains names.
  RegExp.escapeDomains = function(text) {
    return (text) ? text.replace(/[-[\]{}()*+?.,\\^$#\s]/g, "\\$&") : '';
  }

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch the closest surrounding link of a clicked element.
    $(event.target).closest("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");
      // Expression to check for the sites cross domains.
      var isCrossDomain = new RegExp("^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\/.*(" + RegExp.escapeDomains(ga.trackCrossDomains) + ")", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutbound && this.href) {
          if (ga.trackDomainMode == 2 && isCrossDomain.test(this.href)) {
            // Top-level cross domain clicked. document.location is handled by _link internally.
            _gaq.push(["_link", this.href]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});

})(jQuery);
;

