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': {"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","Disabled":"Wy\u0142\u0105czony","Enabled":"W\u0142\u0105czony","Edit":"Edytuj","Upload":"Wysy\u0142anie plik\u00f3w","Configure":"Konfiguruj","Done":"Gotowe","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","Loading":"\u0141adowanie","Only files with the following extensions are allowed: %files-allowed.":"Dozwolone s\u0105 jedynie pliki o nast\u0119puj\u0105cych rozszerzeniach: %files-allowed.","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","This permission is inherited from the authenticated user role.":"Te uprawnienia s\u0105 dziedziczone wed\u0142ug rangi zalogowanego u\u017cytkownika.","No revision":"Brak wersji","Requires a title":"Tytu\u0142 wymagany","Not restricted":"Bez ogranicze\u0144","(active tab)":"(aktywna karta)","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.","Customize dashboard":"Dostosuj kokpit","Hide summary":"Ukryj podsumowanie","Edit summary":"Edytuj podsumowanie","Don't display post information":"Ukrycie informacji o wpisie","@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"} };;
// 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}})());;
(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);
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted © 2006 Linotype GmbH, www.linotype.com. All
 * rights reserved. This software is the property of Linotype GmbH, and may not be
 * reproduced, used, displayed, modified, disclosed or transferred without the
 * express written approval of Linotype GmbH.  Copyright © 1988, 1990, 1993 Adobe
 * Systems Incorporated. All Rights Reserved. Helvetica is a trademark of
 * Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and
 * may be registered in certain jurisdictions. This typeface is original artwork of
 * Linotype Design Studio. The design may be protected in certain jurisdictions.
 * 
 * Trademark:
 * Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype GmbH, and may be registered in certain jurisdictions.
 * 
 * Description:
 * Helvetica is one of the most famous and popular typefaces in the world. It
 * lends an air of lucid efficiency to any typographic message with its clean,
 * no-nonsense shapes. The original typeface was called Haas Grotesk, and was
 * designed in 1957 by Max Miedinger for the Haas'sche Schriftgiesserei (Haas Type
 * Foundry) in Switzerland. In 1960 the name was changed to Helvetica (an
 * adaptation of "Helvetia", the Latin name for Switzerland). Over the years, the
 * Helvetica family was expanded to include many different weights, but these were
 * not as well coordinated with each other as they might have been. In 1983, D.
 * Stempel AG and Linotype re-designed and digitized Neue Helvetica and updated it
 * into a cohesive font family. Today, the original Helvetica family consists of 34
 * different font weights, and the Neue Helvetica family consists of 51 font
 * weights. The Helvetica family now forms an integral part of many digital
 * printers and operating systems and has become a stylistic anchor in our visual
 * culture. It is the quintessential sans serif font, timeless and neutral, and can
 * be used for all types of communication. Helvetica World, an update to the
 * classic Helvetica design using the OpenType font format, contains the following
 * Microsoft code pages: 1252 Latin 1, 1250 Latin 2 Eastern, 1251 Cyrillic, 1253
 * Greek, 1254 Turk, 1255 Hebrew, 1256 Arabic, 1257 Windows Baltic, 1258 Windows
 * Vietnamese, as well as a mixture of box drawing element glyphs and mathematical
 * symbols & operators. In total, each weight of Helvetica World contains more than
 * 1850 different glyph characters!
 * 
 * Manufacturer:
 * Linotype GmbH
 * 
 * Designer:
 * Linotype Design Studio
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.linotype.com/license
 */
Cufon.registerFont({"w":153,"face":{"font-family":"HelveticaNeueLT Com 37 ThCn","font-weight":250,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 4 6 2 2 2 3 2 4","ascent":"257","descent":"-103","x-height":"4","bbox":"-17 -331 277 73","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+021B"},"glyphs":{" ":{"w":86,"k":{"\u021a":13,"\u0176":13,"\u0174":13,"\u0164":13,"\u0162":13,"\u0104":13,"\u0102":13,"\u0100":13,"\u00dd":13,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"\u0178":13,"Y":13,"W":13,"V":13,"T":13,"A":13}},"\u0132":{"d":"22,-257r15,0r0,257r-15,0r0,-257xm128,4v-47,1,-59,-32,-58,-79r15,0v-1,39,7,68,42,67v31,0,44,-19,43,-51r0,-198r16,0r0,198v0,39,-21,63,-58,63","w":207},"\u0133":{"d":"20,-257r13,0r0,37r-13,0r0,-37xm20,-188r13,0r0,188r-13,0r0,-188xm77,-257r13,0r0,37r-13,0r0,-37xm90,24v2,31,-17,44,-47,39r0,-12v20,4,34,-4,34,-26r0,-213r13,0r0,212","w":109},"\u0149":{"d":"12,-288r17,0v0,24,4,52,-19,55v-1,-13,12,-10,10,-24r-8,0r0,-31xm81,-180v-70,0,-38,112,-45,180r-14,0r0,-188r14,0v1,9,-2,21,1,28v8,-19,23,-33,48,-33v31,0,47,18,47,51r0,142r-14,0r0,-135v1,-31,-10,-45,-37,-45","w":150},"!":{"d":"32,-35r16,0r0,35r-16,0r0,-35xm48,-257r-3,190r-10,0r-3,-190r16,0","w":79},"\"":{"d":"67,-257r13,0r0,82r-13,0r0,-82xm27,-257r12,0r0,82r-12,0r0,-82","w":106},"#":{"d":"116,-157r-50,0r-9,64r50,0xm56,-81r-11,81r-13,0r12,-81r-39,0r0,-12r40,0r9,-64r-39,0r0,-13r40,0r12,-81r12,0r-11,81r49,0r11,-81r12,0r-11,81r39,0r0,13r-40,0r-9,64r39,0r0,12r-41,0r-11,81r-12,0r11,-81r-49,0","w":172},"$":{"d":"107,-132v75,10,68,142,-15,136r0,31r-11,0r0,-31v-49,-1,-70,-29,-69,-79r15,0v-1,41,14,65,54,67r0,-117v-30,-12,-65,-22,-64,-65v1,-40,24,-63,64,-65r0,-25r11,0r0,25v42,2,62,26,63,67r-15,0v-1,-33,-15,-53,-48,-55r0,106xm81,-243v-43,-3,-63,54,-38,84v7,8,24,14,38,19r0,-103xm92,-8v54,3,72,-82,27,-104r-27,-10r0,114","w":172},"%":{"d":"64,-127v-36,0,-44,-27,-44,-64v0,-38,10,-64,44,-64v37,0,44,27,44,64v0,42,-15,64,-44,64xm183,4v-37,1,-44,-27,-44,-63v0,-38,10,-64,44,-64v37,-1,44,27,44,64v0,42,-15,63,-44,63xm64,-244v-27,0,-31,24,-32,53v0,31,5,53,32,53v26,0,32,-23,31,-53v-1,-29,-3,-53,-31,-53xm171,-255r12,0r-109,259r-12,0xm183,-112v-27,1,-31,24,-32,53v0,30,5,53,32,53v26,0,32,-24,32,-53v0,-29,-3,-53,-32,-53","w":246},"&":{"d":"32,-96v-36,50,28,117,83,76v10,-7,18,-17,24,-27r-63,-89v-15,12,-34,26,-44,40xm85,-245v-45,0,-38,57,-17,77r10,14v20,-15,40,-27,40,-58v0,-20,-13,-33,-33,-33xm168,-108v1,23,-6,44,-14,60r34,48r-15,0r-26,-36v-16,22,-35,40,-72,40v-70,0,-87,-88,-41,-123r34,-27v-13,-20,-32,-37,-32,-66v0,-28,20,-43,49,-45v54,-3,57,67,25,93v-8,6,-16,15,-24,21r59,83v5,-12,10,-32,10,-48r13,0","w":193},"'":{"d":"27,-257r12,0r0,82r-12,0r0,-82","w":66},"(":{"d":"79,-257v-55,77,-56,246,0,323r-11,0v-56,-77,-56,-246,0,-323r11,0","w":79},")":{"d":"44,-95v0,-66,-19,-119,-43,-162r11,0v56,77,56,246,0,323r-11,0v24,-43,43,-96,43,-161","w":79},"*":{"d":"15,-233r33,16r0,-40r11,0r0,40r32,-16r5,10r-32,15r22,29r-10,7r-22,-32r-24,32r-9,-7r22,-29r-32,-14","w":106},"+":{"d":"102,-85r-85,0r0,-12r85,0r0,-85r12,0r0,85r85,0r0,12r-85,0r0,85r-12,0r0,-85","w":216},",":{"d":"36,-37r15,0v-2,33,5,72,-21,83v0,-19,12,-23,10,-46r-4,0r0,-37","w":86,"k":{" ":13}},"-":{"d":"23,-104r68,0r0,12r-68,0r0,-12","w":113},".":{"d":"36,-37r15,0r0,37r-15,0r0,-37","w":86,"k":{" ":13}},"\/":{"d":"89,-261r14,0r-92,265r-14,0","w":100},"0":{"d":"86,4v-66,0,-71,-62,-71,-129v0,-75,9,-130,71,-130v66,0,72,61,72,130v0,68,-7,129,-72,129xm86,-243v-53,0,-56,61,-56,118v0,60,1,117,56,117v55,0,57,-57,57,-117v0,-56,-2,-118,-57,-118","w":172},"1":{"d":"27,-211v28,-5,53,-19,62,-44r13,0r0,255r-14,0r0,-229v-15,14,-34,28,-61,30r0,-12","w":172},"2":{"d":"89,-255v70,-4,82,93,37,131v-37,31,-85,52,-94,110r124,0r0,14r-139,0v-3,-102,114,-95,122,-187v3,-34,-19,-56,-52,-56v-38,0,-53,29,-54,66r-15,0v2,-47,23,-75,71,-78","w":172},"3":{"d":"143,-71v0,-40,-26,-59,-71,-56r0,-12v40,2,63,-13,62,-52v0,-32,-17,-52,-49,-52v-34,1,-48,24,-50,57r-15,0v0,-44,24,-65,66,-69v74,-7,84,113,20,122v31,7,48,25,52,61v8,80,-115,105,-138,34v-3,-9,-5,-18,-5,-28r15,0v0,36,19,58,54,58v38,0,59,-23,59,-63","w":172},"4":{"d":"116,-69r-104,0r0,-13r102,-173r16,0r0,174r31,0r0,12r-31,0r0,69r-14,0r0,-69xm116,-81r-1,-150r-89,150r90,0","w":172},"5":{"d":"86,-153v-27,0,-42,16,-51,34r-15,0r15,-132r110,0r0,14r-99,0r-11,101v10,-17,28,-29,53,-29v48,0,69,33,69,81v0,51,-22,87,-73,88v-45,0,-67,-26,-68,-68v6,1,17,-4,15,5v2,28,20,52,51,51v43,-1,60,-32,60,-75v0,-39,-16,-70,-56,-70","w":172},"6":{"d":"88,-150v-42,0,-55,31,-55,72v0,38,15,70,54,70v39,0,58,-29,56,-74v-1,-38,-16,-68,-55,-68xm15,-115v0,-70,6,-140,76,-140v38,0,56,24,60,58r-15,0v-2,-27,-18,-46,-46,-46v-56,0,-62,70,-60,129v7,-28,25,-48,60,-49v45,0,69,33,68,81v-1,49,-20,86,-72,86v-62,-1,-71,-56,-71,-119","w":172},"7":{"d":"44,0v11,-97,50,-177,100,-237r-129,0r0,-14r142,0r0,14v-49,61,-88,138,-96,237r-17,0","w":172},"8":{"d":"86,4v-84,11,-94,-132,-21,-140v-24,-7,-42,-28,-42,-57v0,-38,24,-62,63,-62v72,0,87,107,23,118v75,14,61,150,-23,141xm86,-131v-37,0,-55,24,-56,62v-1,36,20,61,56,61v36,0,57,-25,57,-61v0,-40,-20,-62,-57,-62xm86,-143v30,0,50,-19,49,-50v-1,-30,-18,-50,-49,-50v-31,0,-47,20,-48,50v-1,31,19,50,48,50","w":172},"9":{"d":"85,-100v40,0,55,-32,55,-72v0,-39,-15,-71,-54,-71v-39,0,-57,30,-56,75v1,40,15,68,55,68xm158,-136v3,82,-23,165,-106,134v-19,-7,-29,-27,-30,-52r15,0v2,27,16,46,46,46v57,0,62,-70,60,-129v-7,28,-24,49,-60,49v-45,0,-69,-32,-68,-80v0,-51,22,-87,72,-87v61,0,69,58,71,119","w":172},":":{"d":"36,-179r15,0r0,37r-15,0r0,-37xm36,-37r15,0r0,37r-15,0r0,-37","w":86,"k":{" ":13}},";":{"d":"36,-179r15,0r0,37r-15,0r0,-37xm36,-37r15,0v-2,33,5,72,-21,83v0,-19,12,-23,10,-46r-4,0r0,-37","w":86,"k":{" ":13}},"<":{"d":"17,-97r182,-87r0,10r-171,83r171,82r0,11r-182,-87r0,-12","w":216},"=":{"d":"17,-62r182,0r0,12r-182,0r0,-12xm17,-132r182,0r0,12r-182,0r0,-12","w":216},">":{"d":"199,-85r-182,87r0,-11r171,-82r-171,-83r0,-10r182,87r0,12","w":216},"?":{"d":"66,-35r15,0r0,35r-15,0r0,-35xm141,-202v1,66,-69,62,-60,136r-15,0v-10,-75,56,-75,60,-136v1,-30,-20,-47,-48,-47v-38,0,-51,28,-50,66v-6,-1,-18,4,-15,-6v1,-42,20,-72,65,-72v41,0,62,22,63,59"},"@":{"d":"155,-208v24,0,37,14,42,33r9,-26r15,0r-40,127v-1,8,7,12,14,12v44,-4,67,-45,67,-90v0,-63,-49,-97,-112,-97v-74,0,-124,48,-124,122v0,73,53,119,125,119v47,0,82,-23,103,-53r15,0v-23,37,-60,65,-118,65v-85,0,-140,-51,-140,-134v0,-81,57,-131,138,-131v74,0,128,36,128,109v0,56,-35,97,-87,103v-15,2,-23,-13,-25,-26v-22,40,-102,32,-98,-28v4,-57,33,-105,88,-105xm153,-195v-46,3,-68,44,-71,91v-2,27,13,44,38,42v44,-3,67,-49,67,-92v0,-24,-8,-43,-34,-41","w":288},"A":{"d":"135,-80r-97,0r-24,80r-15,0r79,-257r20,0r77,257r-16,0xm132,-92r-45,-150r-45,150r90,0","w":173,"k":{"\u021a":20,"\u0177":6,"\u0176":20,"\u0175":6,"\u0174":13,"\u0164":20,"\u0162":20,"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"B":{"d":"152,-70v0,-62,-55,-61,-115,-59r0,117v60,2,115,4,115,-58xm37,-141v54,2,106,3,106,-52v0,-58,-51,-53,-106,-52r0,104xm167,-70v2,72,-71,74,-145,70r0,-257v68,-1,136,-8,136,64v0,33,-19,54,-47,58v37,1,55,28,56,65","w":180,"k":{".":27,",":27}},"C":{"d":"14,-128v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121v42,0,59,-38,61,-78r15,0v-2,51,-25,90,-79,90v-66,0,-75,-62,-78,-132","w":180,"k":{".":27,",":27}},"D":{"d":"173,-129v1,77,-20,128,-92,129r-59,0r0,-257r59,0v74,-1,91,52,92,128xm158,-129v0,-66,-12,-117,-77,-116r-44,0r0,233r44,0v62,-2,77,-48,77,-117","w":186,"k":{".":27,",":27}},"E":{"d":"22,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-126,0r0,-257"},"F":{"d":"22,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,127r-15,0r0,-257","w":146,"k":{"\u0159":4,"\u0157":4,"\u0155":4,"\u0151":6,"\u014f":6,"\u014d":6,"\u011b":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u0105":6,"\u0104":13,"\u0103":6,"\u0102":13,"\u0101":6,"\u0100":13,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"r":4,"o":6,"e":6,"a":6,"A":13,".":40,",":40}},"G":{"d":"95,-8v54,0,64,-51,63,-108r-71,0r0,-13r86,0r0,129r-12,0v-1,-17,2,-37,-1,-52v-8,33,-29,56,-67,56v-67,0,-76,-61,-79,-132v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121","w":186,"k":{".":20,",":20}},"H":{"d":"22,-257r15,0r0,113r113,0r0,-113r15,0r0,257r-15,0r0,-131r-113,0r0,131r-15,0r0,-257","w":186},"I":{"d":"22,-257r15,0r0,257r-15,0r0,-257","w":59},"J":{"d":"67,4v-47,1,-59,-32,-58,-79r15,0v-1,39,7,68,42,67v31,0,44,-19,43,-51r0,-198r16,0r0,198v0,39,-21,63,-58,63","w":146,"k":{".":27,",":27}},"K":{"d":"22,-257r15,0r1,143r106,-143r17,0r-81,108r88,149r-17,0r-81,-136r-33,44r0,92r-15,0r0,-257","w":166,"k":{"\u0150":4,"\u014e":4,"\u014c":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"O":4}},"L":{"d":"22,-257r15,0r0,243r108,0r0,14r-123,0r0,-257","k":{"\u021a":33,"\u0177":13,"\u0176":40,"\u0174":33,"\u0164":33,"\u0162":33,"\u00ff":13,"\u00fd":13,"\u00dd":40,"\u0178":40,"y":13,"Y":40,"W":33,"V":33,"T":33}},"M":{"d":"199,0r-1,-238r-74,238r-15,0r-74,-238r0,238r-16,0r0,-257r25,0r74,231r71,-231r25,0r0,257r-15,0","w":233},"N":{"d":"40,-257r112,233r0,-233r15,0r0,257r-19,0r-113,-233r0,233r-16,0r0,-257r21,0","w":186,"k":{".":20,",":20}},"O":{"d":"165,-129v0,-60,-9,-120,-68,-120v-59,0,-68,58,-68,120v0,63,8,121,68,121v58,0,68,-53,68,-121xm14,-129v0,-73,14,-132,83,-132v70,0,83,59,83,132v0,74,-16,133,-83,133v-70,0,-83,-60,-83,-133","w":193,"k":{".":27,",":27}},"P":{"d":"143,-186v0,-58,-47,-63,-106,-59r0,118v58,3,106,1,106,-59xm158,-186v0,63,-53,78,-121,72r0,114r-15,0r0,-257v72,-4,136,-1,136,71","w":166,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u011b":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u0105":6,"\u0104":13,"\u0103":6,"\u0102":13,"\u0101":6,"\u0100":13,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"o":6,"e":6,"a":6,"A":13,".":46,",":46}},"Q":{"d":"97,-261v104,-5,96,175,58,237r27,28r-9,9r-27,-27v-12,11,-27,18,-49,18v-70,-2,-83,-60,-83,-133v0,-73,14,-129,83,-132xm29,-129v-2,70,18,137,90,117v7,-2,13,-6,19,-11r-32,-32r9,-9r30,31v30,-60,39,-216,-48,-216v-59,0,-67,58,-68,120","w":193,"k":{"\u0172":-4,"\u0170":-4,"\u016e":-4,"\u016c":-4,"\u016a":-4,"\u0168":-4,"\u00dc":-4,"\u00db":-4,"\u00da":-4,"\u00d9":-4,"U":-4,".":18,",":18}},"R":{"d":"146,-190v0,-56,-52,-59,-109,-55r0,114v59,3,109,0,109,-59xm150,0v-14,-47,10,-127,-57,-119r-56,0r0,119r-15,0r0,-257v71,-2,139,-7,139,67v0,36,-22,59,-52,65v68,-5,38,83,59,125r-18,0","w":180,"k":{"\u021a":6,"\u0176":6,"\u0164":6,"\u0162":6,"\u00dd":6,"\u0178":6,"Y":6,"T":6}},"S":{"d":"86,4v-51,0,-77,-29,-73,-83r15,0v-2,44,17,68,58,71v58,5,81,-82,32,-105v-41,-20,-101,-20,-101,-81v0,-65,84,-87,121,-48v12,12,17,29,17,50r-15,0v-1,-34,-17,-57,-53,-57v-48,0,-72,54,-44,86v33,38,120,21,118,96v-1,46,-29,71,-75,71","w":173,"k":{".":27,",":27}},"T":{"d":"69,-243r-68,0r0,-14r152,0r0,14r-69,0r0,243r-15,0r0,-243","k":{"\u0177":23,"\u0175":30,"\u0173":30,"\u0171":30,"\u016f":30,"\u016d":30,"\u016b":30,"\u0169":30,"\u0159":30,"\u0157":30,"\u0155":30,"\u0151":30,"\u014f":30,"\u014d":30,"\u0133":6,"\u012f":6,"\u011b":30,"\u0119":30,"\u0117":30,"\u0115":30,"\u0113":30,"\u0105":30,"\u0104":20,"\u0103":30,"\u0102":20,"\u0101":30,"\u0100":20,"\u00ff":23,"\u00fd":23,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":23,"w":30,"u":30,"r":30,"o":30,"i":6,"e":30,"a":30,"A":20,";":27,":":27,".":40,"-":40,",":40}},"U":{"d":"90,4v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v0,48,-24,75,-71,75","w":180,"k":{".":27,",":27}},"V":{"d":"0,-257r15,0r65,240r64,-240r15,0r-70,257r-18,0","w":159,"k":{"\u0173":10,"\u0171":10,"\u016f":10,"\u016d":10,"\u016b":10,"\u0169":10,"\u0151":10,"\u014f":10,"\u014d":10,"\u011b":10,"\u0119":10,"\u0117":10,"\u0115":10,"\u0113":10,"\u0105":10,"\u0104":13,"\u0103":10,"\u0102":13,"\u0101":10,"\u0100":13,"\u00fc":10,"\u00fb":10,"\u00fa":10,"\u00f9":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"u":10,"o":10,"e":10,"a":10,"A":13,";":13,":":13,".":40,"-":14,",":40}},"W":{"d":"175,0r-49,-235r-48,235r-18,0r-56,-257r15,0r50,235r48,-235r19,0r49,235r49,-235r15,0r-56,257r-18,0","w":253,"k":{"\u0173":3,"\u0171":3,"\u016f":3,"\u016d":3,"\u016b":3,"\u0169":3,"\u0151":10,"\u014f":10,"\u014d":10,"\u011b":10,"\u0119":10,"\u0117":10,"\u0115":10,"\u0113":10,"\u0105":10,"\u0104":6,"\u0103":10,"\u0102":6,"\u0101":10,"\u0100":6,"\u00fc":3,"\u00fb":3,"\u00fa":3,"\u00f9":3,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"u":3,"o":10,"e":10,"a":10,"A":6,";":11,":":11,".":33,"-":14,",":33}},"X":{"d":"83,-117r-64,117r-16,0r73,-131r-67,-126r15,0r60,111r60,-111r15,0r-67,126r72,131r-17,0","w":166},"Y":{"d":"72,-106r-70,-151r17,0r61,135r63,-135r15,0r-71,151r0,106r-15,0r0,-106","w":159,"k":{"\u0173":17,"\u0171":17,"\u016f":17,"\u016d":17,"\u016b":17,"\u0169":17,"\u0151":23,"\u014f":23,"\u014d":23,"\u0133":6,"\u012f":6,"\u011b":23,"\u0119":23,"\u0117":23,"\u0115":23,"\u0113":23,"\u0105":23,"\u0104":20,"\u0103":23,"\u0102":20,"\u0101":23,"\u0100":20,"\u00fc":17,"\u00fb":17,"\u00fa":17,"\u00f9":17,"\u00f6":23,"\u00f5":23,"\u00f4":23,"\u00f3":23,"\u00f2":23,"\u00eb":23,"\u00ea":23,"\u00e9":23,"\u00e8":23,"\u00e5":23,"\u00e4":23,"\u00e3":23,"\u00e2":23,"\u00e1":23,"\u00e0":23,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":17,"o":23,"i":6,"e":23,"a":23,"A":20,";":20,":":20,".":47,"-":33,",":47}},"Z":{"d":"6,-15r131,-228r-123,0r0,-14r138,0r0,15r-131,228r132,0r0,14r-147,0r0,-15","w":159},"[":{"d":"30,-257r48,0r0,11r-36,0r0,301r36,0r0,11r-48,0r0,-323","w":79},"\\":{"d":"103,4r-14,0r-92,-265r14,0","w":100},"]":{"d":"50,66r-48,0r0,-11r36,0r0,-301r-36,0r0,-11r48,0r0,323","w":79},"^":{"d":"102,-251r12,0r85,164r-11,0r-80,-154r-80,154r-11,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"`":{"d":"42,-215r-12,0r-34,-50r18,0","w":53},"a":{"d":"58,-8v47,0,53,-54,47,-102v-19,26,-86,7,-81,62v2,24,9,40,34,40xm68,-193v78,-3,45,102,52,170v-2,12,8,15,16,11v1,12,-2,15,-14,14v-13,0,-16,-17,-17,-32v-5,20,-23,34,-49,34v-46,0,-57,-52,-39,-86v16,-30,89,-9,89,-57v0,-27,-10,-41,-37,-41v-29,0,-41,17,-41,45r-13,0v0,-35,17,-57,53,-58","w":140},"b":{"d":"125,-95v0,-49,-3,-85,-44,-85v-41,0,-48,36,-48,85v0,47,6,87,46,87v42,0,46,-44,46,-87xm81,4v-28,0,-44,-16,-48,-40r0,36r-14,0r0,-257r14,0r0,102v8,-21,20,-38,49,-38v50,1,58,47,58,98v0,52,-8,98,-59,99","k":{".":20,",":20}},"c":{"d":"77,-8v31,0,38,-27,41,-54r15,0v-3,34,-18,66,-58,66v-53,0,-61,-46,-61,-99v0,-79,63,-130,108,-73v7,9,9,22,10,34r-15,0v-3,-24,-12,-47,-40,-46v-42,1,-48,40,-48,86v0,50,5,86,48,86","w":140,"k":{".":20,",":20}},"d":{"d":"74,-180v-40,0,-45,37,-45,85v0,43,4,87,46,87v40,0,46,-41,46,-87v0,-50,-9,-85,-47,-85xm73,-193v28,0,39,20,48,38r0,-102r13,0r0,257r-13,0v-1,-11,2,-27,-1,-36v-4,24,-20,40,-48,40v-50,-2,-57,-48,-58,-99v-1,-53,9,-96,59,-98"},"e":{"d":"14,-99v0,-77,68,-128,109,-68v11,17,11,44,12,72r-106,0v1,41,2,86,44,87v32,0,45,-24,46,-54r14,0v-2,38,-18,65,-58,66v-54,0,-61,-47,-61,-103xm120,-107v0,-39,-5,-73,-44,-73v-38,0,-46,35,-47,73r91,0","w":146,"k":{".":20,",":20}},"f":{"d":"76,-244v-19,-3,-34,1,-34,24r0,32r31,0r0,12r-31,0r0,176r-14,0r0,-176r-25,0r0,-12r25,0v-3,-41,2,-78,48,-68r0,12","w":73,"k":{".":33,",":33}},"g":{"d":"73,-193v27,0,39,17,48,36r0,-31r13,0r0,178v13,67,-65,101,-104,56v-5,-6,-7,-18,-7,-27r13,0v2,22,14,34,39,35v47,2,49,-46,45,-92v-7,21,-21,38,-50,38v-48,0,-56,-45,-56,-95v0,-52,9,-97,59,-98xm76,-180v-43,1,-47,40,-47,85v0,42,4,83,46,83v41,0,46,-44,46,-86v0,-55,-15,-82,-45,-82","k":{".":14,",":14}},"h":{"d":"77,-180v-70,0,-38,112,-45,180r-14,0r0,-257r14,0r1,97v8,-19,23,-33,48,-33v31,0,47,18,47,51r0,142r-14,0r0,-135v1,-31,-10,-45,-37,-45","w":146},"i":{"d":"20,-257r13,0r0,37r-13,0r0,-37xm20,-188r13,0r0,188r-13,0r0,-188","w":53},"j":{"d":"20,-257r13,0r0,37r-13,0r0,-37xm33,24v2,31,-17,44,-47,39r0,-12v20,4,34,-4,34,-26r0,-213r13,0r0,212","w":53},"k":{"d":"18,-257r14,0r1,169r81,-100r17,0r-58,70r69,118r-17,0r-62,-106r-31,37r0,69r-14,0r0,-257","w":140},"l":{"d":"20,-257r13,0r0,257r-13,0r0,-257","w":53},"m":{"d":"77,-180v-69,0,-35,114,-43,180r-13,0r0,-188r13,0v1,9,-2,21,1,28v5,-19,21,-33,45,-33v27,-1,37,16,42,36v6,-20,20,-36,46,-36v30,0,45,18,45,48r0,145r-14,0r0,-141v0,-24,-10,-39,-32,-39v-70,0,-37,114,-44,180r-13,0r0,-135v-1,-26,-8,-45,-33,-45","w":233},"n":{"d":"77,-180v-70,0,-38,112,-45,180r-14,0r0,-188r14,0v1,9,-2,21,1,28v8,-19,23,-33,48,-33v31,0,47,18,47,51r0,142r-14,0r0,-135v1,-31,-10,-45,-37,-45","w":146},"o":{"d":"77,-8v42,0,48,-43,48,-86v0,-44,-6,-86,-48,-86v-43,0,-48,40,-48,86v0,45,6,86,48,86xm78,-193v51,0,62,47,62,99v0,53,-11,98,-64,98v-52,0,-62,-45,-62,-98v0,-55,11,-99,64,-99","k":{".":20,",":20}},"p":{"d":"81,-180v-41,0,-48,36,-48,85v0,47,6,87,46,87v42,0,46,-44,46,-87v0,-47,-9,-85,-44,-85xm81,4v-28,0,-44,-16,-48,-40r0,99r-14,0r0,-251r14,0r0,33v8,-21,20,-39,49,-38v48,2,58,47,58,98v0,52,-8,98,-59,99","k":{".":20,",":20}},"q":{"d":"74,-180v-38,0,-45,37,-45,85v1,43,4,87,46,87v40,0,46,-41,46,-87v0,-48,-8,-85,-47,-85xm73,-193v29,-1,39,19,48,38r0,-33r13,0r0,251r-13,0r-1,-99v-4,24,-20,40,-48,40v-50,-2,-57,-48,-58,-99v0,-53,9,-96,59,-98"},"r":{"d":"88,-180v-81,-4,-50,107,-56,180r-14,0r0,-188r14,0v1,10,-2,24,1,32v7,-22,25,-39,55,-37r0,13","w":86,"k":{"\u0177":-6,"\u0149":-4,"\u0148":-4,"\u0146":-4,"\u0144":-4,"\u00ff":-6,"\u00fd":-6,"\u00f1":-4,"y":-6,"v":-6,"n":-4,"m":-4,";":13,".":33,"-":33,",":33}},"s":{"d":"64,-193v36,0,50,22,49,58v-6,-1,-17,3,-14,-6v0,-24,-9,-39,-35,-39v-32,0,-49,36,-30,58v23,28,87,18,84,74v-2,33,-21,51,-54,52v-42,1,-56,-24,-56,-64v6,1,17,-3,14,6v0,29,12,46,42,46v47,0,51,-65,11,-78v-29,-9,-63,-18,-63,-58v0,-31,23,-48,52,-49","w":126,"k":{".":20,",":20}},"t":{"d":"76,0v-28,6,-48,-1,-48,-30r0,-146r-25,0r0,-12r25,0r0,-56r14,0r0,56r31,0r0,12r-31,0r0,145v-2,23,17,23,34,19r0,12","w":73},"u":{"d":"69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45","w":146},"v":{"d":"56,0r-53,-188r15,0r47,171r43,-171r15,0r-51,188r-16,0","w":126,"k":{".":27,",":27}},"w":{"d":"133,0r-36,-169r-37,169r-18,0r-40,-188r15,0r34,169r38,-169r17,0r36,169r34,-169r15,0r-41,188r-17,0","w":193,"k":{".":20,",":20}},"x":{"d":"55,-97r-48,-91r17,0r40,80r40,-80r16,0r-48,91r50,97r-17,0r-42,-85r-43,85r-15,0","w":126},"y":{"d":"108,-188r15,0r-58,216v-7,28,-22,37,-56,35r0,-13v37,9,43,-21,50,-48r-56,-190r15,0r49,169","w":126,"k":{".":27,",":27}},"z":{"d":"5,-12r94,-164r-89,0r0,-12r104,0r0,12r-93,164r94,0r0,12r-110,0r0,-12","w":120},"{":{"d":"10,-90r0,-11v40,-6,26,-72,26,-114v0,-36,14,-45,49,-42r0,11v-77,-16,-4,125,-62,151v35,11,25,74,25,119v0,28,11,34,37,31r0,11v-96,16,-11,-146,-75,-156","w":79},"|":{"d":"33,-261r14,0r0,265r-14,0r0,-265","w":79},"}":{"d":"69,-101r0,11v-38,8,-25,71,-25,114v0,36,-14,45,-49,42r0,-11v77,17,4,-125,62,-151v-35,-10,-25,-74,-25,-119v0,-27,-11,-33,-37,-31r0,-11v96,-16,12,145,74,156","w":79},"~":{"d":"146,-73v-41,-3,-86,-48,-112,1v-16,-16,12,-37,36,-37v32,0,47,24,78,24v18,0,26,-14,34,-26r8,8v-10,15,-18,32,-44,30","w":216},"\u0192":{"d":"48,-158r37,0v11,-47,14,-111,80,-97v1,22,-32,2,-41,19v-15,14,-18,52,-24,78r40,0r-2,12r-40,0r-32,162v-5,33,-31,54,-69,45r3,-13v31,11,46,-10,52,-40r30,-154r-37,0","w":172},"\u0160":{"d":"46,-328r16,0r26,40r26,-40r15,0r-34,51r-15,0xm86,4v-51,0,-77,-29,-73,-83r15,0v-2,44,17,68,58,71v58,5,81,-82,32,-105v-41,-20,-101,-20,-101,-81v0,-65,84,-87,121,-48v12,12,17,29,17,50r-15,0v-1,-34,-17,-57,-53,-57v-48,0,-72,54,-44,86v33,38,120,21,118,96v-1,46,-29,71,-75,71","w":173,"k":{".":27,",":27}},"\u0152":{"d":"100,-8v81,2,50,-116,50,-186v0,-37,-13,-56,-50,-55v-59,1,-67,59,-67,120v0,62,7,119,67,121xm98,-261v25,0,43,9,52,23r0,-19r118,0r0,14r-102,0r0,102r95,0r0,14r-95,0r0,113r107,0r0,14r-123,0r0,-22v-9,19,-26,26,-52,26v-69,-2,-80,-62,-80,-133v0,-70,11,-131,80,-132","w":280},"\u017d":{"d":"41,-328r15,0r26,40r26,-40r15,0r-33,51r-15,0xm6,-15r131,-228r-123,0r0,-14r138,0r0,15r-131,228r132,0r0,14r-147,0r0,-15","w":159},"\u0161":{"d":"23,-265r15,0r26,40r27,-40r15,0r-34,50r-15,0xm64,-193v36,0,50,22,49,58v-6,-1,-17,3,-14,-6v0,-24,-9,-39,-35,-39v-32,0,-49,36,-30,58v23,28,87,18,84,74v-2,33,-21,51,-54,52v-42,1,-56,-24,-56,-64v6,1,17,-3,14,6v0,29,12,46,42,46v47,0,51,-65,11,-78v-29,-9,-63,-18,-63,-58v0,-31,23,-48,52,-49","w":126,"k":{".":20,",":20}},"\u0153":{"d":"218,-107v2,-42,-18,-88,-61,-68v-15,14,-23,38,-22,68r83,0xm77,-180v-41,0,-47,40,-48,86v0,46,6,86,48,86v42,0,44,-41,44,-86v0,-45,-2,-86,-44,-86xm127,-145v7,-24,19,-48,50,-48v46,0,56,46,56,98r-98,0v1,41,2,87,41,87v31,0,38,-27,41,-54r13,0v-2,37,-16,66,-55,66v-30,0,-42,-22,-48,-47v-3,28,-19,46,-50,47v-53,0,-63,-45,-63,-98v0,-53,12,-99,63,-99v31,0,45,21,50,48","w":246},"\u017e":{"d":"21,-265r15,0r26,40r26,-40r15,0r-34,50r-15,0xm5,-12r94,-164r-89,0r0,-12r104,0r0,12r-93,164r94,0r0,12r-110,0r0,-12","w":120},"\u0178":{"d":"72,-106r-70,-151r17,0r61,135r63,-135r15,0r-71,151r0,106r-15,0r0,-106xm49,-321r15,0r0,37r-15,0r0,-37xm97,-321r15,0r0,37r-15,0r0,-37","w":159,"k":{"\u0173":17,"\u0171":17,"\u016f":17,"\u016d":17,"\u016b":17,"\u0169":17,"\u0151":23,"\u014f":23,"\u014d":23,"\u0133":6,"\u012f":6,"\u011b":23,"\u0119":23,"\u0117":23,"\u0115":23,"\u0113":23,"\u0105":23,"\u0104":20,"\u0103":23,"\u0102":20,"\u0101":23,"\u0100":20,"\u00fc":17,"\u00fb":17,"\u00fa":17,"\u00f9":17,"\u00f6":23,"\u00f5":23,"\u00f4":23,"\u00f3":23,"\u00f2":23,"\u00eb":23,"\u00ea":23,"\u00e9":23,"\u00e8":23,"\u00e5":23,"\u00e4":23,"\u00e3":23,"\u00e2":23,"\u00e1":23,"\u00e0":23,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":17,"o":23,"i":6,"e":23,"a":23,"A":20,";":20,":":20,".":47,"-":33,",":47}},"\u00a0":{"w":86},"\u00a1":{"d":"48,-195r0,34r-16,0r0,-34r16,0xm45,-130r3,192r-16,0r3,-192r10,0","w":79},"\u00a2":{"d":"146,-62v-2,35,-17,63,-53,66r0,33r-8,0r0,-33v-50,-2,-57,-49,-58,-99v-1,-56,13,-92,58,-98r0,-28r8,0r0,28v33,2,49,27,52,59r-15,0v-2,-23,-12,-45,-37,-46r0,172v26,-3,36,-28,38,-54r15,0xm85,-180v-53,3,-49,107,-34,148v5,14,18,22,34,24r0,-172","w":172},"\u00a3":{"d":"111,4v-31,0,-70,-24,-94,-1r-8,-12v26,-23,58,-64,37,-111r-36,0r0,-12r31,0v-10,-17,-22,-35,-24,-60v-4,-76,122,-82,137,-17v2,9,4,19,4,29r-15,0v0,-40,-19,-63,-58,-63v-31,0,-53,18,-53,49v0,25,15,44,25,62r50,0r0,12r-45,0v19,45,-10,89,-38,109v21,-17,58,-4,86,3v21,0,37,-13,47,-21r7,10v-14,12,-30,23,-53,23","w":172},"\u00a4":{"d":"23,-125v0,38,25,64,63,64v38,0,63,-26,63,-64v0,-38,-24,-65,-63,-65v-38,0,-63,27,-63,65xm136,-67v-21,24,-78,24,-99,0r-18,18r-9,-9r18,-18v-23,-22,-23,-77,0,-99r-18,-18r9,-8r18,17v22,-23,77,-23,99,0r18,-17r8,8r-17,18v25,25,23,76,0,99r17,18r-8,9","w":172},"\u00a5":{"d":"79,-62r-49,0r0,-12r49,0r0,-29r-49,0r0,-13r43,0r-64,-135r16,0r61,133r63,-133r15,0r-64,135r45,0r0,13r-51,0r0,29r51,0r0,12r-51,0r0,62r-15,0r0,-62","w":172},"\u00a6":{"d":"33,-261r14,0r0,95r-14,0r0,-95xm33,-91r14,0r0,95r-14,0r0,-95","w":79},"\u00a7":{"d":"87,54v-39,-3,-59,-22,-59,-61v6,1,17,-4,15,5v0,27,16,44,44,44v50,0,53,-55,19,-76v-30,-18,-63,-38,-86,-63v-16,-32,3,-68,32,-77v-39,-24,-18,-87,37,-87v36,0,55,19,56,52v-5,-1,-14,2,-15,-2v-1,-24,-15,-37,-41,-38v-35,-2,-55,33,-35,58v29,36,105,42,105,102v0,27,-16,40,-37,50v40,25,25,98,-35,93xm62,-167v-32,8,-45,61,-11,79v22,12,41,28,62,42v33,-8,39,-60,8,-81","w":173},"\u00a8":{"d":"-5,-258r15,0r0,37r-15,0r0,-37xm43,-258r15,0r0,37r-15,0r0,-37","w":53},"\u00a9":{"d":"144,-248v-71,0,-119,47,-119,119v0,73,48,120,119,120v71,0,119,-47,119,-120v0,-73,-48,-119,-119,-119xm144,4v-81,0,-133,-54,-133,-133v0,-78,53,-132,133,-132v80,0,133,54,133,132v0,79,-52,133,-133,133xm67,-129v-9,-92,135,-117,150,-28r-15,0v-5,-27,-25,-45,-58,-44v-40,2,-62,31,-62,72v0,43,21,72,62,73v35,1,51,-18,58,-46r15,0v-5,34,-33,59,-73,58v-51,-1,-72,-34,-77,-85","w":288},"\u00aa":{"d":"39,-147v29,1,32,-26,30,-57v-18,10,-51,7,-50,36v1,12,6,21,20,21xm46,-244v-17,0,-23,9,-24,24r-12,0v1,-23,13,-33,37,-35v50,-4,35,59,35,102v0,9,4,10,11,8v1,7,-2,9,-9,9v-11,0,-16,-6,-15,-18v-9,26,-63,24,-63,-13v0,-35,37,-33,60,-45v8,-15,0,-36,-20,-32","w":99},"\u00ab":{"d":"19,-90r0,-14r41,-50v2,31,-20,38,-30,57v10,18,33,24,30,55xm60,-90r0,-14r41,-50v2,31,-20,38,-30,57v10,18,33,24,30,55","w":119},"\u00ac":{"d":"187,-120r-170,0r0,-12r182,0r0,93r-12,0r0,-81","w":216},"\u00ad":{"d":"23,-104r68,0r0,12r-68,0r0,-12","w":113},"\u00ae":{"d":"144,4v-81,0,-133,-54,-133,-133v0,-78,53,-132,133,-132v80,0,133,54,133,132v0,79,-52,133,-133,133xm144,-248v-71,0,-119,47,-119,119v0,73,48,120,119,120v71,0,119,-47,119,-120v0,-73,-48,-119,-119,-119xm192,-164v1,-39,-46,-30,-83,-31r0,61v37,-1,83,7,83,-30xm207,-164v0,28,-19,38,-41,43r47,71r-16,0r-47,-72r-41,0r0,72r-15,0r0,-158v51,0,113,-8,113,44","w":288},"\u00af":{"d":"-12,-245r78,0r0,11r-78,0r0,-11","w":53},"\u00b0":{"d":"72,-243v-24,0,-39,16,-39,40v0,24,16,39,39,39v23,0,39,-15,39,-39v0,-24,-16,-40,-39,-40xm72,-152v-30,0,-51,-19,-51,-51v0,-33,21,-52,51,-52v30,0,51,19,51,52v0,32,-21,51,-51,51","w":144},"\u00b1":{"d":"17,-12r182,0r0,12r-182,0r0,-12xm102,-182r12,0r0,69r85,0r0,12r-85,0r0,69r-12,0r0,-69r-85,0r0,-12r85,0r0,-69","w":216},"\u00b2":{"d":"58,-255v46,0,56,55,26,79v-22,18,-57,30,-61,64r79,0r0,11r-91,0v-5,-63,72,-59,79,-112v2,-20,-13,-31,-32,-31v-24,0,-34,14,-35,36r-12,0v0,-28,17,-47,47,-47","w":112},"\u00b3":{"d":"91,-144v1,-24,-17,-32,-44,-31v0,-6,-2,-13,6,-11v19,0,33,-11,33,-30v0,-18,-11,-29,-30,-28v-20,1,-31,12,-32,31r-12,0v0,-25,18,-42,46,-42v45,0,55,68,12,73v20,5,34,14,34,38v0,50,-78,63,-92,19v-2,-5,-3,-10,-3,-16r12,0v1,20,13,32,34,32v22,0,35,-13,36,-35","w":112},"\u00b4":{"d":"40,-265r18,0r-34,50r-12,0","w":53},"\u00b5":{"d":"69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-8,31,-62,44,-82,15r0,76r-14,0r0,-251r14,0r0,135v0,30,11,45,37,45","w":146},"\u00b6":{"d":"98,-245v-65,-8,-79,95,-24,113v7,3,16,4,24,4r0,-117xm24,-186v-1,-74,71,-74,147,-71r0,307r-13,0r0,-295r-47,0r0,295r-13,0r0,-166v-46,0,-72,-25,-74,-70","w":216},"\u00b7":{"d":"43,-100v-9,0,-19,-9,-18,-19v-1,-9,9,-19,18,-18v10,-1,19,9,19,18v0,9,-10,19,-19,19","w":86},"\u00b8":{"d":"49,44v0,-20,-29,-17,-39,-10v-6,-11,12,-23,16,-34r11,0v-4,7,-14,15,-14,22v17,-6,38,3,38,22v0,29,-44,32,-66,20v4,-18,54,15,54,-20","w":53},"\u00b9":{"d":"56,-238v-8,7,-23,18,-39,18r0,-10v18,-3,34,-11,41,-25r10,0r0,154r-12,0r0,-137","w":112},"\u00ba":{"d":"56,-244v-25,0,-29,23,-29,49v0,26,4,48,29,48v25,0,30,-22,30,-48v0,-26,-5,-49,-30,-49xm98,-195v-1,33,-7,59,-41,59v-36,0,-43,-25,-43,-59v0,-34,8,-60,43,-60v33,1,41,26,41,60","w":112},"\u00bb":{"d":"60,-42v-2,-31,20,-38,30,-57v-10,-18,-33,-24,-30,-55r41,49r0,13xm19,-42v-2,-31,20,-38,30,-57v-10,-18,-33,-24,-30,-55r41,49r0,13","w":119},"\u00bc":{"d":"10,-230v17,-3,36,-10,41,-25r11,0r0,154r-12,0r0,-137v-8,7,-24,19,-40,18r0,-10xm200,-262r12,0r-165,274r-12,0xm216,-39r-70,0r0,-12r67,-103r15,0r0,104r21,0r0,11r-21,0r0,39r-12,0r0,-39xm216,-50r-1,-87r-57,87r58,0","w":259},"\u00bd":{"d":"205,-154v46,0,56,55,26,79v-22,18,-57,30,-61,64r79,0r0,11r-91,0v-5,-63,79,-58,79,-112v0,-19,-12,-31,-31,-31v-25,-1,-35,14,-36,36r-12,0v0,-27,17,-47,47,-47xm10,-230v17,-3,36,-10,41,-25r11,0r0,154r-12,0r0,-137v-8,7,-24,19,-40,18r0,-10xm196,-262r12,0r-165,274r-12,0","w":259},"\u00be":{"d":"91,-144v1,-24,-17,-32,-44,-31v0,-6,-2,-13,6,-11v19,0,33,-11,33,-30v0,-18,-11,-29,-30,-28v-20,1,-31,12,-32,31r-12,0v0,-25,18,-42,46,-42v45,0,55,68,12,73v20,5,34,14,34,38v0,50,-78,63,-92,19v-2,-5,-3,-10,-3,-16r12,0v1,20,13,32,34,32v22,0,35,-13,36,-35xm212,-262r13,0r-166,274r-12,0xm216,-39r-70,0r0,-12r67,-103r15,0r0,104r21,0r0,11r-21,0r0,39r-12,0r0,-39xm216,-50r-1,-87r-57,87r58,0","w":259},"\u00bf":{"d":"87,-195r0,34r-15,0r0,-34r15,0xm13,7v-2,-68,69,-60,59,-136r15,0v10,75,-56,74,-59,135v-2,31,18,48,47,48v38,0,51,-29,51,-66v6,1,18,-4,15,6v-1,43,-22,71,-66,72v-41,1,-60,-23,-62,-59"},"\u00c0":{"d":"135,-80r-97,0r-24,80r-15,0r79,-257r20,0r77,257r-16,0xm132,-92r-45,-150r-45,150r90,0xm96,-278r-12,0r-34,-50r18,0","w":173,"k":{"\u021a":20,"\u0177":6,"\u0176":20,"\u0175":6,"\u0174":13,"\u0164":20,"\u0162":20,"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c1":{"d":"135,-80r-97,0r-24,80r-15,0r79,-257r20,0r77,257r-16,0xm132,-92r-45,-150r-45,150r90,0xm107,-328r18,0r-34,50r-12,0","w":173,"k":{"\u021a":20,"\u0177":6,"\u0176":20,"\u0175":6,"\u0174":13,"\u0164":20,"\u0162":20,"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c2":{"d":"80,-328r15,0r34,51r-15,0r-27,-40r-26,40r-15,0xm135,-80r-97,0r-24,80r-15,0r79,-257r20,0r77,257r-16,0xm132,-92r-45,-150r-45,150r90,0","w":173,"k":{"\u021a":20,"\u0177":6,"\u0176":20,"\u0175":6,"\u0174":13,"\u0164":20,"\u0162":20,"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c3":{"d":"68,-317v20,0,44,36,52,4v-2,-8,5,-6,11,-6v3,35,-38,37,-55,16v-12,-9,-23,3,-22,17r-11,0v1,-17,7,-31,25,-31xm135,-80r-97,0r-24,80r-15,0r79,-257r20,0r77,257r-16,0xm132,-92r-45,-150r-45,150r90,0","w":173,"k":{"\u021a":20,"\u0177":6,"\u0176":20,"\u0175":6,"\u0174":13,"\u0164":20,"\u0162":20,"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c4":{"d":"135,-80r-97,0r-24,80r-15,0r79,-257r20,0r77,257r-16,0xm132,-92r-45,-150r-45,150r90,0xm56,-321r15,0r0,37r-15,0r0,-37xm104,-321r15,0r0,37r-15,0r0,-37","w":173,"k":{"\u021a":20,"\u0177":6,"\u0176":20,"\u0175":6,"\u0174":13,"\u0164":20,"\u0162":20,"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c5":{"d":"88,-321v-12,0,-21,9,-21,21v0,12,9,22,21,22v12,0,21,-10,21,-22v0,-12,-9,-21,-21,-21xm88,-268v-18,0,-33,-14,-32,-32v0,-18,14,-31,32,-31v18,0,32,13,32,31v1,18,-14,32,-32,32xm135,-80r-97,0r-24,80r-15,0r79,-257r20,0r77,257r-16,0xm132,-92r-45,-150r-45,150r90,0","w":173,"k":{"\u021a":20,"\u0177":6,"\u0176":20,"\u0175":6,"\u0174":13,"\u0164":20,"\u0162":20,"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c6":{"d":"121,-80r-73,0r-33,80r-16,0r110,-257r135,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-126,0r0,-80xm121,-92r0,-151r-3,0r-65,151r68,0","w":253},"\u00c7":{"d":"14,-128v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121v42,0,59,-38,61,-78r15,0v-2,51,-23,88,-76,90r-11,18v18,-6,39,3,39,22v-1,29,-44,33,-66,20v1,-15,18,0,31,-2v14,0,22,-6,23,-18v1,-19,-30,-17,-39,-10v-9,-8,10,-20,13,-30v-59,-7,-68,-64,-71,-132","w":180,"k":{".":27,",":27}},"\u00c8":{"d":"22,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-126,0r0,-257xm95,-278r-12,0r-34,-50r18,0"},"\u00c9":{"d":"22,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-126,0r0,-257xm103,-328r18,0r-34,50r-12,0"},"\u00ca":{"d":"76,-328r15,0r34,51r-15,0r-26,-40r-27,40r-15,0xm22,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-126,0r0,-257"},"\u00cb":{"d":"22,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-126,0r0,-257xm52,-321r15,0r0,37r-15,0r0,-37xm100,-321r15,0r0,37r-15,0r0,-37"},"\u00cc":{"d":"22,-257r15,0r0,257r-15,0r0,-257xm38,-278r-12,0r-34,-50r18,0","w":59},"\u00cd":{"d":"22,-257r15,0r0,257r-15,0r0,-257xm50,-328r18,0r-34,50r-12,0","w":59},"\u00ce":{"d":"22,-328r15,0r34,51r-16,0r-26,-40r-26,40r-15,0xm22,-257r15,0r0,257r-15,0r0,-257","w":59},"\u00cf":{"d":"22,-257r15,0r0,257r-15,0r0,-257xm-2,-321r15,0r0,37r-15,0r0,-37xm46,-321r15,0r0,37r-15,0r0,-37","w":59},"\u00d0":{"d":"158,-129v0,-66,-12,-117,-77,-116r-44,0r0,104r65,0r0,13r-65,0r0,116r44,0v62,-2,77,-48,77,-117xm173,-129v1,77,-20,128,-92,129r-59,0r0,-128r-22,0r0,-13r22,0r0,-116r59,0v74,-1,91,52,92,128","w":186},"\u00d1":{"d":"76,-317v20,1,48,38,53,-2r10,0v3,35,-37,37,-54,16v-13,-9,-24,3,-23,17r-11,0v3,-15,7,-32,25,-31xm40,-257r112,233r0,-233r15,0r0,257r-19,0r-113,-233r0,233r-16,0r0,-257r21,0","w":186,"k":{".":20,",":20}},"\u00d2":{"d":"165,-129v0,-60,-9,-120,-68,-120v-59,0,-68,58,-68,120v0,63,8,121,68,121v58,0,68,-53,68,-121xm14,-129v0,-73,14,-132,83,-132v70,0,83,59,83,132v0,74,-16,133,-83,133v-70,0,-83,-60,-83,-133xm109,-278r-12,0r-34,-50r18,0","w":193,"k":{".":27,",":27}},"\u00d3":{"d":"165,-129v0,-60,-9,-120,-68,-120v-59,0,-68,58,-68,120v0,63,8,121,68,121v58,0,68,-53,68,-121xm14,-129v0,-73,14,-132,83,-132v70,0,83,59,83,132v0,74,-16,133,-83,133v-70,0,-83,-60,-83,-133xm117,-328r18,0r-34,50r-12,0","w":193,"k":{".":27,",":27}},"\u00d4":{"d":"89,-328r15,0r34,51r-15,0r-26,-40r-26,40r-16,0xm165,-129v0,-60,-9,-120,-68,-120v-59,0,-68,58,-68,120v0,63,8,121,68,121v58,0,68,-53,68,-121xm14,-129v0,-73,14,-132,83,-132v70,0,83,59,83,132v0,74,-16,133,-83,133v-70,0,-83,-60,-83,-133","w":193,"k":{".":27,",":27}},"\u00d5":{"d":"78,-317v20,0,48,38,53,-2r10,0v3,35,-37,37,-54,16v-13,-9,-24,3,-23,17r-10,0v1,-16,6,-31,24,-31xm165,-129v0,-60,-9,-120,-68,-120v-59,0,-68,58,-68,120v0,63,8,121,68,121v58,0,68,-53,68,-121xm14,-129v0,-73,14,-132,83,-132v70,0,83,59,83,132v0,74,-16,133,-83,133v-70,0,-83,-60,-83,-133","w":193,"k":{".":27,",":27}},"\u00d6":{"d":"165,-129v0,-60,-9,-120,-68,-120v-59,0,-68,58,-68,120v0,63,8,121,68,121v58,0,68,-53,68,-121xm14,-129v0,-73,14,-132,83,-132v70,0,83,59,83,132v0,74,-16,133,-83,133v-70,0,-83,-60,-83,-133xm65,-321r15,0r0,37r-15,0r0,-37xm113,-321r15,0r0,37r-15,0r0,-37","w":193,"k":{".":27,",":27}},"\u00d7":{"d":"37,-13r-7,-8r70,-70r-70,-71r7,-8r71,71r71,-71r7,8r-70,71r70,70r-7,8r-71,-71","w":216},"\u00d8":{"d":"97,4v-18,0,-32,-5,-43,-12r-10,27r-12,-4r12,-31v-23,-24,-30,-61,-30,-113v1,-73,14,-130,83,-132v18,-1,31,3,42,11r10,-25r12,5r-12,28v49,56,51,251,-52,246xm97,-8v76,3,73,-106,63,-178v-3,-17,-9,-30,-17,-40r-84,206v10,8,23,12,38,12xm97,-249v-76,2,-73,105,-64,178v2,17,9,30,17,41r84,-207v-10,-8,-22,-12,-37,-12","w":193},"\u00d9":{"d":"90,4v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v0,48,-24,75,-71,75xm102,-278r-12,0r-34,-50r18,0","w":180,"k":{".":27,",":27}},"\u00da":{"d":"90,4v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v0,48,-24,75,-71,75xm111,-328r18,0r-34,50r-12,0","w":180,"k":{".":27,",":27}},"\u00db":{"d":"82,-328r16,0r33,51r-15,0r-26,-40r-26,40r-15,0xm90,4v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v0,48,-24,75,-71,75","w":180,"k":{".":27,",":27}},"\u00dc":{"d":"90,4v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v0,48,-24,75,-71,75xm59,-321r15,0r0,37r-15,0r0,-37xm107,-321r15,0r0,37r-15,0r0,-37","w":180,"k":{".":27,",":27}},"\u00dd":{"d":"72,-106r-70,-151r17,0r61,135r63,-135r15,0r-71,151r0,106r-15,0r0,-106xm101,-328r18,0r-34,50r-12,0","w":159,"k":{"\u0173":17,"\u0171":17,"\u016f":17,"\u016d":17,"\u016b":17,"\u0169":17,"\u0151":23,"\u014f":23,"\u014d":23,"\u0133":6,"\u012f":6,"\u011b":23,"\u0119":23,"\u0117":23,"\u0115":23,"\u0113":23,"\u0105":23,"\u0104":20,"\u0103":23,"\u0102":20,"\u0101":23,"\u0100":20,"\u00fc":17,"\u00fb":17,"\u00fa":17,"\u00f9":17,"\u00f6":23,"\u00f5":23,"\u00f4":23,"\u00f3":23,"\u00f2":23,"\u00eb":23,"\u00ea":23,"\u00e9":23,"\u00e8":23,"\u00e5":23,"\u00e4":23,"\u00e3":23,"\u00e2":23,"\u00e1":23,"\u00e0":23,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":17,"o":23,"i":6,"e":23,"a":23,"A":20,";":20,":":20,".":47,"-":33,",":47}},"\u00de":{"d":"143,-135v0,-59,-47,-63,-106,-59r0,118v58,3,106,0,106,-59xm158,-135v0,63,-53,77,-121,71r0,64r-15,0r0,-257r15,0r0,50v69,-5,121,6,121,72","w":166},"\u00df":{"d":"75,-245v-30,1,-44,19,-43,51r0,194r-14,0r0,-194v0,-39,20,-63,59,-63v64,0,72,98,17,109v31,5,49,28,49,69v0,55,-26,84,-83,81r0,-12v48,2,68,-20,68,-68v0,-44,-19,-64,-66,-62r0,-13v36,3,54,-14,54,-48v0,-24,-15,-45,-41,-44"},"\u00e0":{"d":"58,-8v47,0,53,-54,47,-102v-19,26,-86,7,-81,62v2,24,9,40,34,40xm68,-193v78,-3,45,102,52,170v-2,12,8,15,16,11v1,12,-2,15,-14,14v-13,0,-16,-17,-17,-32v-5,20,-23,34,-49,34v-46,0,-57,-52,-39,-86v16,-30,89,-9,89,-57v0,-27,-10,-41,-37,-41v-29,0,-41,17,-41,45r-13,0v0,-35,17,-57,53,-58xm81,-215r-12,0r-34,-50r18,0","w":140},"\u00e1":{"d":"58,-8v47,0,53,-54,47,-102v-19,26,-86,7,-81,62v2,24,9,40,34,40xm68,-193v78,-3,45,102,52,170v-2,12,8,15,16,11v1,12,-2,15,-14,14v-13,0,-16,-17,-17,-32v-5,20,-23,34,-49,34v-46,0,-57,-52,-39,-86v16,-30,89,-9,89,-57v0,-27,-10,-41,-37,-41v-29,0,-41,17,-41,45r-13,0v0,-35,17,-57,53,-58xm90,-265r18,0r-34,50r-12,0","w":140},"\u00e2":{"d":"62,-265r15,0r34,50r-16,0r-26,-39r-26,39r-15,0xm58,-8v47,0,53,-54,47,-102v-19,26,-86,7,-81,62v2,24,9,40,34,40xm68,-193v78,-3,45,102,52,170v-2,12,8,15,16,11v1,12,-2,15,-14,14v-13,0,-16,-17,-17,-32v-5,20,-23,34,-49,34v-46,0,-57,-52,-39,-86v16,-30,89,-9,89,-57v0,-27,-10,-41,-37,-41v-29,0,-41,17,-41,45r-13,0v0,-35,17,-57,53,-58","w":140},"\u00e3":{"d":"50,-254v20,0,48,38,53,-2r10,0v3,35,-36,37,-54,16v-12,-8,-24,2,-23,16r-10,0v1,-16,7,-30,24,-30xm58,-8v47,0,53,-54,47,-102v-19,26,-86,7,-81,62v2,24,9,40,34,40xm68,-193v78,-3,45,102,52,170v-2,12,8,15,16,11v1,12,-2,15,-14,14v-13,0,-16,-17,-17,-32v-5,20,-23,34,-49,34v-46,0,-57,-52,-39,-86v16,-30,89,-9,89,-57v0,-27,-10,-41,-37,-41v-29,0,-41,17,-41,45r-13,0v0,-35,17,-57,53,-58","w":140},"\u00e4":{"d":"58,-8v47,0,53,-54,47,-102v-19,26,-86,7,-81,62v2,24,9,40,34,40xm68,-193v78,-3,45,102,52,170v-2,12,8,15,16,11v1,12,-2,15,-14,14v-13,0,-16,-17,-17,-32v-5,20,-23,34,-49,34v-46,0,-57,-52,-39,-86v16,-30,89,-9,89,-57v0,-27,-10,-41,-37,-41v-29,0,-41,17,-41,45r-13,0v0,-35,17,-57,53,-58xm38,-258r15,0r0,37r-15,0r0,-37xm86,-258r15,0r0,37r-15,0r0,-37","w":140},"\u00e5":{"d":"70,-267v-12,0,-21,9,-21,21v0,12,9,22,21,22v12,0,21,-10,21,-22v0,-12,-9,-21,-21,-21xm70,-214v-18,0,-33,-14,-32,-32v0,-18,14,-31,32,-31v18,0,32,13,32,31v1,18,-14,32,-32,32xm58,-8v47,0,53,-54,47,-102v-19,26,-86,7,-81,62v2,24,9,40,34,40xm68,-193v78,-3,45,102,52,170v-2,12,8,15,16,11v1,12,-2,15,-14,14v-13,0,-16,-17,-17,-32v-5,20,-23,34,-49,34v-46,0,-57,-52,-39,-86v16,-30,89,-9,89,-57v0,-27,-10,-41,-37,-41v-29,0,-41,17,-41,45r-13,0v0,-35,17,-57,53,-58","w":140},"\u00e6":{"d":"197,-107v2,-42,-18,-88,-61,-68v-17,13,-22,38,-22,68r83,0xm58,-8v41,1,47,-53,41,-96v-26,14,-79,10,-75,57v2,24,10,39,34,39xm15,-135v-11,-61,85,-79,97,-26v7,-37,71,-42,87,-6v8,18,13,44,13,72r-98,0v-1,42,2,87,40,87v31,0,40,-25,41,-54r14,0v-2,37,-17,65,-55,66v-30,0,-40,-22,-48,-44v-6,24,-20,42,-50,44v-45,3,-58,-53,-39,-85v13,-22,58,-21,79,-35v10,-24,5,-70,-29,-64v-29,-1,-37,20,-39,45r-13,0","w":220},"\u00e7":{"d":"77,-8v31,0,38,-27,41,-54r15,0v-3,36,-18,65,-56,66r-11,18v18,-6,39,3,39,22v-1,29,-44,33,-66,20v1,-15,18,0,31,-2v14,0,22,-6,23,-18v1,-19,-30,-17,-39,-10v-9,-8,10,-20,13,-30v-46,-5,-48,-49,-53,-99v-8,-78,63,-130,108,-73v7,9,9,22,10,34r-15,0v-3,-24,-12,-47,-40,-46v-42,1,-48,40,-48,86v0,50,5,86,48,86","w":140,"k":{".":20,",":20}},"\u00e8":{"d":"14,-99v0,-77,68,-128,109,-68v11,17,11,44,12,72r-106,0v1,41,2,86,44,87v32,0,45,-24,46,-54r14,0v-2,38,-18,65,-58,66v-54,0,-61,-47,-61,-103xm120,-107v0,-39,-5,-73,-44,-73v-38,0,-46,35,-47,73r91,0xm86,-215r-12,0r-34,-50r18,0","w":146,"k":{".":20,",":20}},"\u00e9":{"d":"14,-99v0,-77,68,-128,109,-68v11,17,11,44,12,72r-106,0v1,41,2,86,44,87v32,0,45,-24,46,-54r14,0v-2,38,-18,65,-58,66v-54,0,-61,-47,-61,-103xm120,-107v0,-39,-5,-73,-44,-73v-38,0,-46,35,-47,73r91,0xm98,-265r18,0r-34,50r-12,0","w":146,"k":{".":20,",":20}},"\u00ea":{"d":"69,-265r15,0r34,50r-15,0r-26,-39r-27,39r-15,0xm14,-99v0,-77,68,-128,109,-68v11,17,11,44,12,72r-106,0v1,41,2,86,44,87v32,0,45,-24,46,-54r14,0v-2,38,-18,65,-58,66v-54,0,-61,-47,-61,-103xm120,-107v0,-39,-5,-73,-44,-73v-38,0,-46,35,-47,73r91,0","w":146,"k":{".":20,",":20}},"\u00eb":{"d":"14,-99v0,-77,68,-128,109,-68v11,17,11,44,12,72r-106,0v1,41,2,86,44,87v32,0,45,-24,46,-54r14,0v-2,38,-18,65,-58,66v-54,0,-61,-47,-61,-103xm120,-107v0,-39,-5,-73,-44,-73v-38,0,-46,35,-47,73r91,0xm45,-258r15,0r0,37r-15,0r0,-37xm93,-258r15,0r0,37r-15,0r0,-37","w":146,"k":{".":20,",":20}},"\u00ec":{"d":"20,-188r13,0r0,188r-13,0r0,-188xm34,-215r-12,0r-34,-50r18,0","w":53},"\u00ed":{"d":"20,-188r13,0r0,188r-13,0r0,-188xm47,-265r18,0r-34,50r-12,0","w":53},"\u00ee":{"d":"19,-265r15,0r34,50r-15,0r-26,-39r-27,39r-15,0xm20,-188r13,0r0,188r-13,0r0,-188","w":53},"\u00ef":{"d":"20,-188r13,0r0,188r-13,0r0,-188xm-5,-258r15,0r0,37r-15,0r0,-37xm43,-258r15,0r0,37r-15,0r0,-37","w":53},"\u00f0":{"d":"14,-94v0,-70,38,-122,98,-87v-6,-23,-21,-42,-34,-58r-29,17r-9,-9r28,-17v-7,-7,-18,-16,-27,-20v15,-16,29,5,40,12r29,-17r10,9r-30,18v33,33,50,84,50,152v-1,52,-10,98,-63,98v-53,0,-63,-44,-63,-98xm77,-180v-43,0,-48,41,-48,86v0,46,6,86,48,86v42,0,48,-42,48,-86v0,-43,-6,-86,-48,-86"},"\u00f1":{"d":"53,-254v20,0,48,38,53,-2r11,0v1,34,-37,37,-55,16v-11,-8,-24,1,-22,16r-11,0v1,-16,7,-30,24,-30xm77,-180v-70,0,-38,112,-45,180r-14,0r0,-188r14,0v1,9,-2,21,1,28v8,-19,23,-33,48,-33v31,0,47,18,47,51r0,142r-14,0r0,-135v1,-31,-10,-45,-37,-45","w":146},"\u00f2":{"d":"77,-8v42,0,48,-43,48,-86v0,-44,-6,-86,-48,-86v-43,0,-48,40,-48,86v0,45,6,86,48,86xm78,-193v51,0,62,47,62,99v0,53,-11,98,-64,98v-52,0,-62,-45,-62,-98v0,-55,11,-99,64,-99xm88,-215r-12,0r-34,-50r18,0","k":{".":20,",":20}},"\u00f3":{"d":"77,-8v42,0,48,-43,48,-86v0,-44,-6,-86,-48,-86v-43,0,-48,40,-48,86v0,45,6,86,48,86xm78,-193v51,0,62,47,62,99v0,53,-11,98,-64,98v-52,0,-62,-45,-62,-98v0,-55,11,-99,64,-99xm98,-265r18,0r-34,50r-12,0","k":{".":20,",":20}},"\u00f4":{"d":"70,-265r15,0r34,50r-15,0r-27,-39r-26,39r-15,0xm77,-8v42,0,48,-43,48,-86v0,-44,-6,-86,-48,-86v-43,0,-48,40,-48,86v0,45,6,86,48,86xm78,-193v51,0,62,47,62,99v0,53,-11,98,-64,98v-52,0,-62,-45,-62,-98v0,-55,11,-99,64,-99","k":{".":20,",":20}},"\u00f5":{"d":"58,-254v20,1,48,38,53,-2r10,0v3,35,-36,37,-54,16v-12,-8,-24,2,-23,16r-11,0v3,-15,7,-30,25,-30xm77,-8v42,0,48,-43,48,-86v0,-44,-6,-86,-48,-86v-43,0,-48,40,-48,86v0,45,6,86,48,86xm78,-193v51,0,62,47,62,99v0,53,-11,98,-64,98v-52,0,-62,-45,-62,-98v0,-55,11,-99,64,-99","k":{".":20,",":20}},"\u00f6":{"d":"77,-8v42,0,48,-43,48,-86v0,-44,-6,-86,-48,-86v-43,0,-48,40,-48,86v0,45,6,86,48,86xm78,-193v51,0,62,47,62,99v0,53,-11,98,-64,98v-52,0,-62,-45,-62,-98v0,-55,11,-99,64,-99xm46,-258r15,0r0,37r-15,0r0,-37xm94,-258r15,0r0,37r-15,0r0,-37","k":{".":20,",":20}},"\u00f7":{"d":"108,0v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19v9,0,19,9,18,19v1,9,-9,19,-18,18xm108,-145v-9,0,-19,-9,-18,-19v-1,-9,9,-19,18,-18v9,-1,19,9,18,18v1,10,-9,19,-18,19xm17,-85r0,-12r182,0r0,12r-182,0","w":216},"\u00f8":{"d":"117,-178v36,44,40,186,-41,182v-12,0,-23,-3,-31,-8r-9,23r-10,-4r10,-25v-19,-17,-19,-49,-22,-84v-5,-67,34,-119,94,-91r9,-21r10,3xm77,-180v-64,-1,-54,110,-35,154r61,-146v-7,-6,-16,-8,-26,-8xm77,-8v62,-1,55,-113,34,-155r-60,146v6,6,15,9,26,9"},"\u00f9":{"d":"69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45xm85,-215r-12,0r-34,-50r18,0","w":146},"\u00fa":{"d":"69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45xm94,-265r18,0r-34,50r-12,0","w":146},"\u00fb":{"d":"66,-265r15,0r34,50r-15,0r-27,-39r-26,39r-15,0xm69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45","w":146},"\u00fc":{"d":"69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45xm42,-258r15,0r0,37r-15,0r0,-37xm90,-258r15,0r0,37r-15,0r0,-37","w":146},"\u00fd":{"d":"108,-188r15,0r-58,216v-7,28,-22,37,-56,35r0,-13v37,9,43,-21,50,-48r-56,-190r15,0r49,169xm87,-265r18,0r-34,50r-12,0","w":126,"k":{".":27,",":27}},"\u00fe":{"d":"81,-180v-41,0,-48,36,-48,85v0,47,6,87,46,87v42,0,46,-44,46,-87v0,-47,-9,-85,-44,-85xm81,4v-28,0,-44,-16,-48,-40r0,99r-14,0r0,-320r14,0r0,102v8,-21,20,-39,49,-38v48,2,58,47,58,98v0,52,-8,98,-59,99"},"\u00ff":{"d":"108,-188r15,0r-58,216v-7,28,-22,37,-56,35r0,-13v37,9,43,-21,50,-48r-56,-190r15,0r49,169xm34,-258r15,0r0,37r-15,0r0,-37xm82,-258r15,0r0,37r-15,0r0,-37","w":126,"k":{".":27,",":27}},"\u0100":{"d":"135,-80r-97,0r-24,80r-15,0r79,-257r20,0r77,257r-16,0xm132,-92r-45,-150r-45,150r90,0xm49,-308r78,0r0,11r-78,0r0,-11","w":173,"k":{"\u021a":20,"\u0177":6,"\u0176":20,"\u0175":6,"\u0174":13,"\u0164":20,"\u0162":20,"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u0101":{"d":"58,-8v47,0,53,-54,47,-102v-19,26,-86,7,-81,62v2,24,9,40,34,40xm68,-193v78,-3,45,102,52,170v-2,12,8,15,16,11v1,12,-2,15,-14,14v-13,0,-16,-17,-17,-32v-5,20,-23,34,-49,34v-46,0,-57,-52,-39,-86v16,-30,89,-9,89,-57v0,-27,-10,-41,-37,-41v-29,0,-41,17,-41,45r-13,0v0,-35,17,-57,53,-58xm32,-245r78,0r0,11r-78,0r0,-11","w":140},"\u0102":{"d":"87,-292v18,1,30,-13,30,-31r11,0v5,46,-70,55,-79,13v-1,-5,-2,-9,-2,-13r11,0v1,17,11,30,29,31xm135,-80r-97,0r-24,80r-15,0r79,-257r20,0r77,257r-16,0xm132,-92r-45,-150r-45,150r90,0","w":173,"k":{"\u021a":20,"\u0177":6,"\u0176":20,"\u0175":6,"\u0174":13,"\u0164":20,"\u0162":20,"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u0103":{"d":"69,-230v19,0,30,-13,30,-31r11,0v6,47,-71,57,-79,13v-1,-5,-2,-9,-2,-13r11,0v1,17,10,31,29,31xm58,-8v47,0,53,-54,47,-102v-19,26,-86,7,-81,62v2,24,9,40,34,40xm68,-193v78,-3,45,102,52,170v-2,12,8,15,16,11v1,12,-2,15,-14,14v-13,0,-16,-17,-17,-32v-5,20,-23,34,-49,34v-46,0,-57,-52,-39,-86v16,-30,89,-9,89,-57v0,-27,-10,-41,-37,-41v-29,0,-41,17,-41,45r-13,0v0,-35,17,-57,53,-58","w":140},"\u0104":{"d":"154,71v-48,0,-22,-60,5,-71r-24,-80r-97,0r-24,80r-15,0r79,-257r20,0r77,257v-22,8,-33,21,-36,42v-3,20,22,25,35,14v8,11,-9,15,-20,15xm132,-92r-45,-150r-45,150r90,0","w":173,"k":{"\u021a":20,"\u0177":6,"\u0176":20,"\u0175":6,"\u0174":13,"\u0164":20,"\u0162":20,"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u0105":{"d":"68,-193v78,-3,45,102,52,170v-2,12,8,15,16,11v1,9,0,14,-10,14v-14,12,-27,21,-28,40v-2,20,22,26,35,14r4,8v-18,13,-53,8,-51,-20v1,-19,17,-34,31,-43v-11,-3,-10,-19,-12,-31v-5,20,-23,34,-49,34v-46,0,-57,-52,-39,-86v16,-30,89,-9,89,-57v0,-27,-10,-41,-37,-41v-29,0,-41,17,-41,45r-13,0v0,-35,17,-57,53,-58xm58,-8v47,0,53,-54,47,-102v-19,26,-86,7,-81,62v2,24,9,40,34,40","w":140},"\u0106":{"d":"14,-128v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121v42,0,59,-38,61,-78r15,0v-2,51,-25,90,-79,90v-66,0,-75,-62,-78,-132xm118,-328r18,0r-34,50r-12,0","w":180,"k":{".":27,",":27}},"\u0107":{"d":"77,-8v31,0,38,-27,41,-54r15,0v-3,34,-18,66,-58,66v-53,0,-61,-46,-61,-99v0,-79,63,-130,108,-73v7,9,9,22,10,34r-15,0v-3,-24,-12,-47,-40,-46v-42,1,-48,40,-48,86v0,50,5,86,48,86xm99,-265r18,0r-34,50r-12,0","w":140,"k":{".":20,",":20}},"\u0108":{"d":"89,-328r15,0r34,51r-16,0r-26,-40r-26,40r-15,0xm14,-128v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121v42,0,59,-38,61,-78r15,0v-2,51,-25,90,-79,90v-66,0,-75,-62,-78,-132","w":180,"k":{".":27,",":27}},"\u0109":{"d":"69,-265r16,0r33,50r-15,0r-26,-39r-26,39r-15,0xm77,-8v31,0,38,-27,41,-54r15,0v-3,34,-18,66,-58,66v-53,0,-61,-46,-61,-99v0,-79,63,-130,108,-73v7,9,9,22,10,34r-15,0v-3,-24,-12,-47,-40,-46v-42,1,-48,40,-48,86v0,50,5,86,48,86","w":140,"k":{".":20,",":20}},"\u010a":{"d":"88,-321r15,0r0,37r-15,0r0,-37xm14,-128v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121v42,0,59,-38,61,-78r15,0v-2,51,-25,90,-79,90v-66,0,-75,-62,-78,-132","w":180,"k":{".":27,",":27}},"\u010b":{"d":"69,-258r15,0r0,37r-15,0r0,-37xm77,-8v31,0,38,-27,41,-54r15,0v-3,34,-18,66,-58,66v-53,0,-61,-46,-61,-99v0,-79,63,-130,108,-73v7,9,9,22,10,34r-15,0v-3,-24,-12,-47,-40,-46v-42,1,-48,40,-48,86v0,50,5,86,48,86","w":140,"k":{".":20,",":20}},"\u010c":{"d":"54,-328r15,0r26,40r27,-40r15,0r-34,51r-15,0xm14,-128v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121v42,0,59,-38,61,-78r15,0v-2,51,-25,90,-79,90v-66,0,-75,-62,-78,-132","w":180,"k":{".":27,",":27}},"\u010d":{"d":"35,-265r15,0r27,40r26,-40r15,0r-34,50r-15,0xm77,-8v31,0,38,-27,41,-54r15,0v-3,34,-18,66,-58,66v-53,0,-61,-46,-61,-99v0,-79,63,-130,108,-73v7,9,9,22,10,34r-15,0v-3,-24,-12,-47,-40,-46v-42,1,-48,40,-48,86v0,50,5,86,48,86","w":140,"k":{".":20,",":20}},"\u010e":{"d":"41,-328r15,0r26,40r27,-40r15,0r-34,51r-15,0xm173,-129v1,77,-20,128,-92,129r-59,0r0,-257r59,0v74,-1,91,52,92,128xm158,-129v0,-66,-12,-117,-77,-116r-44,0r0,233r44,0v62,-2,77,-48,77,-117","w":186,"k":{".":27,",":27}},"\u010f":{"d":"162,-257r17,0r-17,50r-10,0xm74,-180v-40,0,-45,37,-45,85v0,43,4,87,46,87v40,0,46,-41,46,-87v0,-50,-9,-85,-47,-85xm73,-193v28,0,39,20,48,38r0,-102r13,0r0,257r-13,0v-1,-11,2,-27,-1,-36v-4,24,-20,40,-48,40v-50,-2,-57,-48,-58,-99v-1,-53,9,-96,59,-98","w":167},"\u0110":{"d":"158,-129v0,-66,-12,-117,-77,-116r-44,0r0,104r65,0r0,13r-65,0r0,116r44,0v62,-2,77,-48,77,-117xm173,-129v1,77,-20,128,-92,129r-59,0r0,-128r-22,0r0,-13r22,0r0,-116r59,0v74,-1,91,52,92,128","w":186},"\u0111":{"d":"73,-193v28,0,39,20,48,38r0,-63r-46,0r0,-11r46,0r0,-28r13,0r0,28r27,0r0,11r-27,0r0,218r-13,0v-1,-11,2,-27,-1,-36v-4,24,-20,40,-48,40v-50,-2,-57,-48,-58,-99v-1,-53,9,-96,59,-98xm74,-180v-40,0,-45,37,-45,85v0,43,4,87,46,87v40,0,46,-41,46,-87v0,-50,-9,-85,-47,-85","w":161},"\u0112":{"d":"22,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-126,0r0,-257xm45,-308r78,0r0,11r-78,0r0,-11"},"\u0113":{"d":"14,-99v0,-77,68,-128,109,-68v11,17,11,44,12,72r-106,0v1,41,2,86,44,87v32,0,45,-24,46,-54r14,0v-2,38,-18,65,-58,66v-54,0,-61,-47,-61,-103xm120,-107v0,-39,-5,-73,-44,-73v-38,0,-46,35,-47,73r91,0xm38,-245r78,0r0,11r-78,0r0,-11","w":146,"k":{".":20,",":20}},"\u0114":{"d":"83,-292v18,0,29,-14,29,-31r11,0v6,47,-70,55,-79,13v-1,-5,-2,-9,-2,-13r11,0v1,18,12,30,30,31xm22,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-126,0r0,-257"},"\u0115":{"d":"77,-230v19,0,30,-13,30,-31r11,0v6,47,-71,57,-79,13v-1,-5,-2,-9,-2,-13r11,0v0,18,10,31,29,31xm14,-99v0,-77,68,-128,109,-68v11,17,11,44,12,72r-106,0v1,41,2,86,44,87v32,0,45,-24,46,-54r14,0v-2,38,-18,65,-58,66v-54,0,-61,-47,-61,-103xm120,-107v0,-39,-5,-73,-44,-73v-38,0,-46,35,-47,73r91,0","w":146,"k":{".":20,",":20}},"\u0116":{"d":"76,-321r15,0r0,37r-15,0r0,-37xm22,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-126,0r0,-257"},"\u0117":{"d":"68,-258r15,0r0,37r-15,0r0,-37xm14,-99v0,-77,68,-128,109,-68v11,17,11,44,12,72r-106,0v1,41,2,86,44,87v32,0,45,-24,46,-54r14,0v-2,38,-18,65,-58,66v-54,0,-61,-47,-61,-103xm120,-107v0,-39,-5,-73,-44,-73v-38,0,-46,35,-47,73r91,0","w":146,"k":{".":20,",":20}},"\u0118":{"d":"125,71v-47,0,-23,-61,5,-71r-108,0r0,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-8,0v-16,14,-28,21,-30,42v-2,20,22,25,35,14v8,11,-9,15,-20,15"},"\u0119":{"d":"74,71v-43,-1,-27,-57,-1,-67v-54,-2,-53,-47,-59,-103v-8,-76,68,-128,109,-68v11,17,11,44,12,72r-106,0v1,41,2,86,44,87v32,0,45,-24,46,-54r14,0v-2,32,-17,61,-48,66v-13,11,-25,20,-26,38v-2,20,22,25,35,14v8,11,-9,14,-20,15xm120,-107v0,-39,-5,-73,-44,-73v-38,0,-46,35,-47,73r91,0","w":146,"k":{".":20,",":20}},"\u011a":{"d":"42,-328r15,0r27,40r26,-40r15,0r-34,51r-15,0xm22,-257r123,0r0,14r-108,0r0,102r101,0r0,14r-101,0r0,113r111,0r0,14r-126,0r0,-257"},"\u011b":{"d":"34,-265r15,0r27,40r26,-40r15,0r-34,50r-15,0xm14,-99v0,-77,68,-128,109,-68v11,17,11,44,12,72r-106,0v1,41,2,86,44,87v32,0,45,-24,46,-54r14,0v-2,38,-18,65,-58,66v-54,0,-61,-47,-61,-103xm120,-107v0,-39,-5,-73,-44,-73v-38,0,-46,35,-47,73r91,0","w":146,"k":{".":20,",":20}},"\u011c":{"d":"89,-328r15,0r34,51r-15,0r-27,-40r-26,40r-15,0xm95,-8v54,0,64,-51,63,-108r-71,0r0,-13r86,0r0,129r-12,0v-1,-17,2,-37,-1,-52v-8,33,-29,56,-67,56v-67,0,-76,-61,-79,-132v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121","w":186,"k":{".":20,",":20}},"\u011d":{"d":"73,-265r15,0r34,50r-15,0r-26,-39r-27,39r-15,0xm73,-193v27,0,39,17,48,36r0,-31r13,0r0,178v13,67,-65,101,-104,56v-5,-6,-7,-18,-7,-27r13,0v2,22,14,34,39,35v47,2,49,-46,45,-92v-7,21,-21,38,-50,38v-48,0,-56,-45,-56,-95v0,-52,9,-97,59,-98xm76,-180v-43,1,-47,40,-47,85v0,42,4,83,46,83v41,0,46,-44,46,-86v0,-55,-15,-82,-45,-82","k":{".":14,",":14}},"\u011e":{"d":"97,-292v18,0,29,-14,29,-31r11,0v6,47,-70,55,-79,13v-1,-5,-1,-9,-1,-13r10,0v1,18,12,30,30,31xm95,-8v54,0,64,-51,63,-108r-71,0r0,-13r86,0r0,129r-12,0v-1,-17,2,-37,-1,-52v-8,33,-29,56,-67,56v-67,0,-76,-61,-79,-132v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121","w":186,"k":{".":20,",":20}},"\u011f":{"d":"80,-230v19,0,30,-13,30,-31r11,0v6,47,-71,58,-79,13v-1,-5,-2,-9,-2,-13r11,0v0,18,10,31,29,31xm73,-193v27,0,39,17,48,36r0,-31r13,0r0,178v13,67,-65,101,-104,56v-5,-6,-7,-18,-7,-27r13,0v2,22,14,34,39,35v47,2,49,-46,45,-92v-7,21,-21,38,-50,38v-48,0,-56,-45,-56,-95v0,-52,9,-97,59,-98xm76,-180v-43,1,-47,40,-47,85v0,42,4,83,46,83v41,0,46,-44,46,-86v0,-55,-15,-82,-45,-82","k":{".":14,",":14}},"\u0120":{"d":"88,-321r15,0r0,37r-15,0r0,-37xm95,-8v54,0,64,-51,63,-108r-71,0r0,-13r86,0r0,129r-12,0v-1,-17,2,-37,-1,-52v-8,33,-29,56,-67,56v-67,0,-76,-61,-79,-132v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121","w":186,"k":{".":20,",":20}},"\u0121":{"d":"71,-258r15,0r0,37r-15,0r0,-37xm73,-193v27,0,39,17,48,36r0,-31r13,0r0,178v13,67,-65,101,-104,56v-5,-6,-7,-18,-7,-27r13,0v2,22,14,34,39,35v47,2,49,-46,45,-92v-7,21,-21,38,-50,38v-48,0,-56,-45,-56,-95v0,-52,9,-97,59,-98xm76,-180v-43,1,-47,40,-47,85v0,42,4,83,46,83v41,0,46,-44,46,-86v0,-55,-15,-82,-45,-82","k":{".":14,",":14}},"\u0122":{"d":"87,18r17,0v-1,24,6,53,-19,55v-1,-13,12,-9,10,-24r-8,0r0,-31xm95,-8v54,0,64,-51,63,-108r-71,0r0,-13r86,0r0,129r-12,0v-1,-17,2,-37,-1,-52v-8,33,-29,56,-67,56v-67,0,-76,-61,-79,-132v-4,-85,37,-160,119,-125v24,10,34,38,35,70r-15,0v-1,-38,-18,-66,-56,-66v-59,0,-68,57,-68,120v0,61,6,121,66,121","w":186,"k":{".":20,",":20}},"\u0123":{"d":"85,-226r-17,0v0,-24,-4,-52,19,-55v1,12,-12,8,-9,24r7,0r0,31xm73,-193v27,0,39,17,48,36r0,-31r13,0r0,178v13,67,-65,101,-104,56v-5,-6,-7,-18,-7,-27r13,0v2,22,14,34,39,35v47,2,49,-46,45,-92v-7,21,-21,38,-50,38v-48,0,-56,-45,-56,-95v0,-52,9,-97,59,-98xm76,-180v-43,1,-47,40,-47,85v0,42,4,83,46,83v41,0,46,-44,46,-86v0,-55,-15,-82,-45,-82","k":{".":14,",":14}},"\u0124":{"d":"85,-328r15,0r34,51r-15,0r-26,-40r-26,40r-16,0xm22,-257r15,0r0,113r113,0r0,-113r15,0r0,257r-15,0r0,-131r-113,0r0,131r-15,0r0,-257","w":186},"\u0125":{"d":"65,-328r15,0r34,51r-15,0r-26,-40r-27,40r-15,0xm77,-180v-70,0,-38,112,-45,180r-14,0r0,-257r14,0r1,97v8,-19,23,-33,48,-33v31,0,47,18,47,51r0,142r-14,0r0,-135v1,-31,-10,-45,-37,-45","w":146},"\u0126":{"d":"22,-257r15,0r0,69r113,0r0,-69r15,0r0,257r-15,0r0,-131r-113,0r0,131r-15,0r0,-257xm150,-144r0,-33r-113,0r0,33r113,0","w":186},"\u0127":{"d":"84,-180v-70,0,-38,112,-45,180r-14,0r0,-218r-25,0r0,-11r25,0r0,-28r14,0r0,28r43,0r0,11r-43,0v1,19,-2,41,1,58v7,-19,22,-33,47,-33v78,0,39,122,48,193r-14,0r0,-135v0,-30,-11,-45,-37,-45"},"\u0128":{"d":"10,-317v20,0,48,38,53,-2r10,0v3,35,-37,37,-54,16v-13,-9,-24,3,-23,17r-10,0v1,-16,6,-31,24,-31xm22,-257r15,0r0,257r-15,0r0,-257","w":59},"\u0129":{"d":"7,-254v20,0,48,38,53,-2r11,0v1,34,-37,37,-55,16v-11,-8,-24,1,-22,16r-11,0v1,-16,7,-30,24,-30xm20,-188r13,0r0,188r-13,0r0,-188","w":53},"\u012a":{"d":"22,-257r15,0r0,257r-15,0r0,-257xm-9,-308r78,0r0,11r-78,0r0,-11","w":59},"\u012b":{"d":"20,-188r13,0r0,188r-13,0r0,-188xm-12,-245r78,0r0,11r-78,0r0,-11","w":53},"\u012e":{"d":"23,71v-42,0,-22,-62,5,-71r-6,0r0,-257r15,0r0,257v-16,14,-25,21,-28,42v-2,21,21,25,32,14v8,11,-8,15,-18,15","w":59},"\u012f":{"d":"20,71v-42,0,-22,-61,4,-71r-4,0r0,-188r13,0r0,188v-15,14,-25,21,-27,42v-2,21,20,25,31,14v7,10,-7,15,-17,15xm20,-257r13,0r0,37r-13,0r0,-37","w":53},"\u0130":{"d":"22,-321r15,0r0,37r-15,0r0,-37xm22,-257r15,0r0,257r-15,0r0,-257","w":59},"\u0131":{"d":"20,-188r13,0r0,188r-13,0r0,-188","w":53},"\u0134":{"d":"109,-328r15,0r34,51r-15,0r-27,-40r-26,40r-15,0xm67,4v-47,1,-59,-32,-58,-79r15,0v-1,39,7,68,42,67v31,0,44,-19,43,-51r0,-198r16,0r0,198v0,39,-21,63,-58,63","w":146,"k":{".":27,",":27}},"\u0135":{"d":"33,24v2,31,-17,44,-47,39r0,-12v20,4,34,-4,34,-26r0,-213r13,0r0,212xm18,-265r15,0r34,50r-15,0r-26,-39r-26,39r-15,0","w":53},"\u0136":{"d":"78,18r17,0v-1,24,6,53,-19,55v-1,-12,12,-8,9,-24r-7,0r0,-31xm22,-257r15,0r1,143r106,-143r17,0r-81,108r88,149r-17,0r-81,-136r-33,44r0,92r-15,0r0,-257","w":166,"k":{"\u0150":4,"\u014e":4,"\u014c":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"O":4}},"\u0137":{"d":"64,18r17,0v-1,23,5,52,-18,55v-1,-12,11,-10,9,-24r-8,0r0,-31xm18,-257r14,0r1,169r81,-100r17,0r-58,70r69,118r-17,0r-62,-106r-31,37r0,69r-14,0r0,-257","w":140},"\u0139":{"d":"22,-257r15,0r0,243r108,0r0,14r-123,0r0,-257xm51,-328r18,0r-34,50r-12,0","k":{"\u021a":33,"\u0177":13,"\u0176":40,"\u0174":33,"\u0164":33,"\u0162":33,"\u00ff":13,"\u00fd":13,"\u00dd":40,"\u0178":40,"y":13,"Y":40,"W":33,"V":33,"T":33}},"\u013a":{"d":"20,-257r13,0r0,257r-13,0r0,-257xm48,-328r18,0r-34,50r-12,0","w":53},"\u013b":{"d":"70,18r17,0v-1,24,6,53,-19,55v-1,-13,12,-9,10,-24r-8,0r0,-31xm22,-257r15,0r0,243r108,0r0,14r-123,0r0,-257","k":{"\u021a":33,"\u0177":13,"\u0176":40,"\u0174":33,"\u0164":33,"\u0162":33,"\u00ff":13,"\u00fd":13,"\u00dd":40,"\u0178":40,"y":13,"Y":40,"W":33,"V":33,"T":33}},"\u013c":{"d":"18,18r17,0v-1,23,5,52,-18,55v-1,-12,11,-10,9,-24r-8,0r0,-31xm20,-257r13,0r0,257r-13,0r0,-257","w":53},"\u013d":{"d":"77,-257r17,0r-17,50r-10,0xm22,-257r15,0r0,243r108,0r0,14r-123,0r0,-257","k":{"\u021a":33,"\u0177":13,"\u0176":40,"\u0174":33,"\u0164":33,"\u0162":33,"\u00ff":13,"\u00fd":13,"\u00dd":40,"\u0178":40,"y":13,"Y":40,"W":33,"V":33,"T":33}},"\u013e":{"d":"60,-257r17,0r-17,50r-10,0xm20,-257r13,0r0,257r-13,0r0,-257","w":66},"\u013f":{"d":"74,-189r15,0r0,37r-15,0r0,-37xm22,-257r15,0r0,243r108,0r0,14r-123,0r0,-257","k":{"\u021a":33,"\u0177":13,"\u0176":40,"\u0174":33,"\u0164":33,"\u0162":33,"\u00ff":13,"\u00fd":13,"\u00dd":40,"\u0178":40,"y":13,"Y":40,"W":33,"V":33,"T":33}},"\u0140":{"d":"54,-189r15,0r0,37r-15,0r0,-37xm20,-257r13,0r0,257r-13,0r0,-257","w":81},"\u0141":{"d":"22,-108r-26,19v-4,-24,16,-25,26,-36r0,-132r15,0r0,121r67,-52r0,16r-67,52r0,106r108,0r0,14r-123,0r0,-108"},"\u0142":{"d":"20,0r-1,-117r-19,24v-4,-24,11,-30,20,-42r0,-122r13,0r1,107r19,-24v3,24,-11,31,-20,43r0,131r-13,0","w":53},"\u0143":{"d":"40,-257r112,233r0,-233r15,0r0,257r-19,0r-113,-233r0,233r-16,0r0,-257r21,0xm113,-328r18,0r-34,50r-12,0","w":186,"k":{".":20,",":20}},"\u0144":{"d":"77,-180v-70,0,-38,112,-45,180r-14,0r0,-188r14,0v1,9,-2,21,1,28v8,-19,23,-33,48,-33v31,0,47,18,47,51r0,142r-14,0r0,-135v1,-31,-10,-45,-37,-45xm93,-265r18,0r-34,50r-12,0","w":146},"\u0145":{"d":"83,18r17,0v-1,24,6,53,-19,55v-1,-12,12,-8,9,-24r-7,0r0,-31xm40,-257r112,233r0,-233r15,0r0,257r-19,0r-113,-233r0,233r-16,0r0,-257r21,0","w":186,"k":{".":20,",":20}},"\u0146":{"d":"65,18r17,0v-1,24,6,53,-19,55v-1,-12,12,-8,9,-24r-7,0r0,-31xm77,-180v-70,0,-38,112,-45,180r-14,0r0,-188r14,0v1,9,-2,21,1,28v8,-19,23,-33,48,-33v31,0,47,18,47,51r0,142r-14,0r0,-135v1,-31,-10,-45,-37,-45","w":146},"\u0147":{"d":"52,-328r15,0r26,40r27,-40r15,0r-34,51r-15,0xm40,-257r112,233r0,-233r15,0r0,257r-19,0r-113,-233r0,233r-16,0r0,-257r21,0","w":186,"k":{".":20,",":20}},"\u0148":{"d":"31,-265r15,0r26,40r27,-40r15,0r-34,50r-15,0xm77,-180v-70,0,-38,112,-45,180r-14,0r0,-188r14,0v1,9,-2,21,1,28v8,-19,23,-33,48,-33v31,0,47,18,47,51r0,142r-14,0r0,-135v1,-31,-10,-45,-37,-45","w":146},"\u014c":{"d":"165,-129v0,-60,-9,-120,-68,-120v-59,0,-68,58,-68,120v0,63,8,121,68,121v58,0,68,-53,68,-121xm14,-129v0,-73,14,-132,83,-132v70,0,83,59,83,132v0,74,-16,133,-83,133v-70,0,-83,-60,-83,-133xm58,-308r78,0r0,11r-78,0r0,-11","w":193,"k":{".":27,",":27}},"\u014d":{"d":"77,-8v42,0,48,-43,48,-86v0,-44,-6,-86,-48,-86v-43,0,-48,40,-48,86v0,45,6,86,48,86xm78,-193v51,0,62,47,62,99v0,53,-11,98,-64,98v-52,0,-62,-45,-62,-98v0,-55,11,-99,64,-99xm38,-245r78,0r0,11r-78,0r0,-11","k":{".":20,",":20}},"\u014e":{"d":"96,-292v18,1,30,-13,30,-31r11,0v5,46,-70,55,-79,13v-1,-5,-2,-9,-2,-13r11,0v1,17,11,30,29,31xm165,-129v0,-60,-9,-120,-68,-120v-59,0,-68,58,-68,120v0,63,8,121,68,121v58,0,68,-53,68,-121xm14,-129v0,-73,14,-132,83,-132v70,0,83,59,83,132v0,74,-16,133,-83,133v-70,0,-83,-60,-83,-133","w":193,"k":{".":27,",":27}},"\u014f":{"d":"77,-230v19,0,29,-14,29,-31r11,0v6,47,-71,57,-79,13v-1,-5,-2,-9,-2,-13r11,0v1,17,10,31,30,31xm77,-8v42,0,48,-43,48,-86v0,-44,-6,-86,-48,-86v-43,0,-48,40,-48,86v0,45,6,86,48,86xm78,-193v51,0,62,47,62,99v0,53,-11,98,-64,98v-52,0,-62,-45,-62,-98v0,-55,11,-99,64,-99","k":{".":20,",":20}},"\u0150":{"d":"145,-328r17,0r-33,51r-12,0xm96,-328r18,0r-34,51r-12,0xm165,-129v0,-60,-9,-120,-68,-120v-59,0,-68,58,-68,120v0,63,8,121,68,121v58,0,68,-53,68,-121xm14,-129v0,-73,14,-132,83,-132v70,0,83,59,83,132v0,74,-16,133,-83,133v-70,0,-83,-60,-83,-133","w":193,"k":{".":27,",":27}},"\u0151":{"d":"125,-265r17,0r-33,50r-12,0xm77,-265r17,0r-34,50r-11,0xm77,-8v42,0,48,-43,48,-86v0,-44,-6,-86,-48,-86v-43,0,-48,40,-48,86v0,45,6,86,48,86xm78,-193v51,0,62,47,62,99v0,53,-11,98,-64,98v-52,0,-62,-45,-62,-98v0,-55,11,-99,64,-99","k":{".":20,",":20}},"\u0154":{"d":"146,-190v0,-56,-52,-59,-109,-55r0,114v59,3,109,0,109,-59xm150,0v-14,-47,10,-127,-57,-119r-56,0r0,119r-15,0r0,-257v71,-2,139,-7,139,67v0,36,-22,59,-52,65v68,-5,38,83,59,125r-18,0xm101,-328r18,0r-34,50r-12,0","w":180,"k":{"\u021a":6,"\u0176":6,"\u0164":6,"\u0162":6,"\u00dd":6,"\u0178":6,"Y":6,"T":6}},"\u0155":{"d":"88,-180v-81,-4,-50,107,-56,180r-14,0r0,-188r14,0v1,10,-2,24,1,32v7,-22,25,-39,55,-37r0,13xm49,-265r18,0r-34,50r-12,0","w":86,"k":{"\u0177":-6,"\u0149":-4,"\u0148":-4,"\u0146":-4,"\u0144":-4,"\u00ff":-6,"\u00fd":-6,"\u00f1":-4,"y":-6,"v":-6,"n":-4,"m":-4,";":13,".":33,"-":33,",":33}},"\u0156":{"d":"80,18r17,0v-1,24,6,53,-19,55v-1,-13,12,-9,10,-24r-8,0r0,-31xm146,-190v0,-56,-52,-59,-109,-55r0,114v59,3,109,0,109,-59xm150,0v-14,-47,10,-127,-57,-119r-56,0r0,119r-15,0r0,-257v71,-2,139,-7,139,67v0,36,-22,59,-52,65v68,-5,38,83,59,125r-18,0","w":180,"k":{"\u021a":6,"\u0176":6,"\u0164":6,"\u0162":6,"\u00dd":6,"\u0178":6,"Y":6,"T":6}},"\u0157":{"d":"18,18r17,0v-1,24,6,53,-19,55v-1,-12,12,-8,9,-24r-7,0r0,-31xm88,-180v-81,-4,-50,107,-56,180r-14,0r0,-188r14,0v1,10,-2,24,1,32v7,-22,25,-39,55,-37r0,13","w":86,"k":{"\u0177":-6,"\u0149":-4,"\u0148":-4,"\u0146":-4,"\u0144":-4,"\u00ff":-6,"\u00fd":-6,"\u00f1":-4,"y":-6,"v":-6,"n":-4,"m":-4,";":13,".":33,"-":33,",":33}},"\u0158":{"d":"40,-328r15,0r26,40r27,-40r15,0r-34,51r-15,0xm146,-190v0,-56,-52,-59,-109,-55r0,114v59,3,109,0,109,-59xm150,0v-14,-47,10,-127,-57,-119r-56,0r0,119r-15,0r0,-257v71,-2,139,-7,139,67v0,36,-22,59,-52,65v68,-5,38,83,59,125r-18,0","w":180,"k":{"\u021a":6,"\u0176":6,"\u0164":6,"\u0162":6,"\u00dd":6,"\u0178":6,"Y":6,"T":6}},"\u0159":{"d":"11,-265r15,0r26,40r26,-40r16,0r-34,50r-15,0xm88,-180v-81,-4,-50,107,-56,180r-14,0r0,-188r14,0v1,10,-2,24,1,32v7,-22,25,-39,55,-37r0,13","w":86,"k":{"\u0177":-6,"\u0149":-4,"\u0148":-4,"\u0146":-4,"\u0144":-4,"\u00ff":-6,"\u00fd":-6,"\u00f1":-4,"y":-6,"v":-6,"n":-4,"m":-4,";":13,".":33,"-":33,",":33}},"\u015a":{"d":"86,4v-51,0,-77,-29,-73,-83r15,0v-2,44,17,68,58,71v58,5,81,-82,32,-105v-41,-20,-101,-20,-101,-81v0,-65,84,-87,121,-48v12,12,17,29,17,50r-15,0v-1,-34,-17,-57,-53,-57v-48,0,-72,54,-44,86v33,38,120,21,118,96v-1,46,-29,71,-75,71xm107,-328r18,0r-34,50r-12,0","w":173,"k":{".":27,",":27}},"\u015b":{"d":"64,-193v36,0,50,22,49,58v-6,-1,-17,3,-14,-6v0,-24,-9,-39,-35,-39v-32,0,-49,36,-30,58v23,28,87,18,84,74v-2,33,-21,51,-54,52v-42,1,-56,-24,-56,-64v6,1,17,-3,14,6v0,29,12,46,42,46v47,0,51,-65,11,-78v-29,-9,-63,-18,-63,-58v0,-31,23,-48,52,-49xm85,-265r18,0r-34,50r-12,0","w":126,"k":{".":20,",":20}},"\u015c":{"d":"81,-328r15,0r34,51r-16,0r-26,-40r-26,40r-15,0xm86,4v-51,0,-77,-29,-73,-83r15,0v-2,44,17,68,58,71v58,5,81,-82,32,-105v-41,-20,-101,-20,-101,-81v0,-65,84,-87,121,-48v12,12,17,29,17,50r-15,0v-1,-34,-17,-57,-53,-57v-48,0,-72,54,-44,86v33,38,120,21,118,96v-1,46,-29,71,-75,71","w":173,"k":{".":27,",":27}},"\u015d":{"d":"57,-265r15,0r34,50r-15,0r-27,-39r-26,39r-15,0xm64,-193v36,0,50,22,49,58v-6,-1,-17,3,-14,-6v0,-24,-9,-39,-35,-39v-32,0,-49,36,-30,58v23,28,87,18,84,74v-2,33,-21,51,-54,52v-42,1,-56,-24,-56,-64v6,1,17,-3,14,6v0,29,12,46,42,46v47,0,51,-65,11,-78v-29,-9,-63,-18,-63,-58v0,-31,23,-48,52,-49","w":126,"k":{".":20,",":20}},"\u015e":{"d":"76,4v-43,-6,-68,-31,-63,-83r15,0v-2,44,17,68,58,71v58,5,81,-82,32,-105v-41,-20,-101,-20,-101,-81v0,-65,84,-87,121,-48v12,12,17,29,17,50r-15,0v-1,-34,-17,-57,-53,-57v-48,0,-72,54,-44,86v33,38,120,21,118,96v-1,45,-29,70,-75,71r-11,18v18,-6,39,3,39,22v-1,29,-44,33,-66,20v1,-15,18,0,31,-2v14,0,22,-6,23,-18v1,-19,-30,-17,-39,-10v-9,-8,10,-20,13,-30","w":173,"k":{".":27,",":27}},"\u015f":{"d":"79,44v0,-19,-30,-17,-39,-10v-7,-10,11,-20,14,-30v-33,-4,-47,-27,-46,-64v6,1,17,-3,14,6v0,29,12,46,42,46v47,0,51,-65,11,-78v-29,-9,-63,-18,-63,-58v0,-31,23,-48,52,-49v36,0,50,22,49,58v-6,-1,-17,3,-14,-6v0,-24,-9,-39,-35,-39v-32,0,-49,36,-30,58v23,28,87,18,84,74v-2,33,-21,51,-54,52v-3,6,-11,12,-11,18v17,-6,38,3,38,22v0,29,-44,32,-66,20v1,-15,18,0,31,-2v14,0,23,-5,23,-18","w":126,"k":{".":20,",":20}},"\u0162":{"d":"68,18r17,0v-1,23,5,52,-18,55v-1,-12,11,-10,9,-24r-8,0r0,-31xm69,-243r-68,0r0,-14r152,0r0,14r-69,0r0,243r-15,0r0,-243","k":{"\u0177":23,"\u0175":30,"\u0173":30,"\u0171":30,"\u016f":30,"\u016d":30,"\u016b":30,"\u0169":30,"\u0159":30,"\u0157":30,"\u0155":30,"\u0151":30,"\u014f":30,"\u014d":30,"\u0133":6,"\u012f":6,"\u011b":30,"\u0119":30,"\u0117":30,"\u0115":30,"\u0113":30,"\u0105":30,"\u0104":20,"\u0103":30,"\u0102":20,"\u0101":30,"\u0100":20,"\u00ff":23,"\u00fd":23,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":23,"w":30,"u":30,"r":30,"o":30,"i":6,"e":30,"a":30,"A":20,";":27,":":27,".":40,"-":40,",":40}},"\u0163":{"d":"42,18r17,0v-1,24,6,53,-19,55v-1,-12,12,-8,9,-24r-7,0r0,-31xm76,0v-28,6,-48,-1,-48,-30r0,-146r-25,0r0,-12r25,0r0,-56r14,0r0,56r31,0r0,12r-31,0r0,145v-2,23,17,23,34,19r0,12","w":73},"\u0164":{"d":"36,-328r15,0r26,40r26,-40r15,0r-33,51r-16,0xm69,-243r-68,0r0,-14r152,0r0,14r-69,0r0,243r-15,0r0,-243","k":{"\u0177":23,"\u0175":30,"\u0173":30,"\u0171":30,"\u016f":30,"\u016d":30,"\u016b":30,"\u0169":30,"\u0159":30,"\u0157":30,"\u0155":30,"\u0151":30,"\u014f":30,"\u014d":30,"\u0133":6,"\u012f":6,"\u011b":30,"\u0119":30,"\u0117":30,"\u0115":30,"\u0113":30,"\u0105":30,"\u0104":20,"\u0103":30,"\u0102":20,"\u0101":30,"\u0100":20,"\u00ff":23,"\u00fd":23,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":23,"w":30,"u":30,"r":30,"o":30,"i":6,"e":30,"a":30,"A":20,";":27,":":27,".":40,"-":40,",":40}},"\u0165":{"d":"79,-257r17,0r-17,50r-10,0xm76,0v-28,6,-48,-1,-48,-30r0,-146r-25,0r0,-12r25,0r0,-56r14,0r0,56r31,0r0,12r-31,0r0,145v-2,23,17,23,34,19r0,12","w":93},"\u0166":{"d":"23,-174r46,0r0,-69r-68,0r0,-14r152,0r0,14r-69,0r0,69r46,0r0,11r-46,0r0,163r-15,0r0,-163r-46,0r0,-11"},"\u0167":{"d":"76,0v-28,6,-48,-1,-48,-30r0,-84r-28,0r0,-11r28,0r0,-51r-25,0r0,-12r25,0r0,-56r14,0r0,56r31,0r0,12r-31,0r0,51r34,0r0,11r-34,0r0,83v-2,23,17,23,34,19r0,12","w":73},"\u0168":{"d":"71,-317v22,0,48,38,53,-2r11,0v1,34,-37,38,-55,16v-12,-8,-25,1,-22,17r-11,0v1,-16,6,-31,24,-31xm90,4v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v0,48,-24,75,-71,75","w":180,"k":{".":27,",":27}},"\u0169":{"d":"55,-254v19,0,43,36,52,4v-2,-8,5,-6,11,-6v-1,17,-7,31,-24,31v-21,0,-47,-37,-53,1r-11,0v2,-15,7,-30,25,-30xm69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45","w":146},"\u016a":{"d":"90,4v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v0,48,-24,75,-71,75xm52,-308r78,0r0,11r-78,0r0,-11","w":180,"k":{".":27,",":27}},"\u016b":{"d":"69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45xm36,-245r78,0r0,11r-78,0r0,-11","w":146},"\u016c":{"d":"90,-292v18,0,29,-14,29,-31r11,0v6,46,-70,55,-79,13v-1,-5,-2,-9,-2,-13r11,0v1,18,12,30,30,31xm90,4v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v0,48,-24,75,-71,75","w":180,"k":{".":27,",":27}},"\u016d":{"d":"73,-230v19,0,29,-14,30,-31r10,0v7,47,-70,57,-78,13v-1,-5,-2,-9,-2,-13r11,0v0,18,9,31,29,31xm69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45","w":146},"\u016e":{"d":"90,-321v-12,0,-22,10,-22,21v0,12,10,22,22,22v12,0,21,-10,21,-22v0,-12,-9,-21,-21,-21xm90,-268v-18,1,-33,-14,-32,-32v0,-18,14,-31,32,-31v17,0,32,14,32,31v0,17,-14,32,-32,32xm90,4v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v0,48,-24,75,-71,75","w":180,"k":{".":27,",":27}},"\u016f":{"d":"73,-267v-12,0,-21,9,-21,21v0,12,9,22,21,22v12,0,21,-10,21,-22v0,-12,-9,-21,-21,-21xm73,-214v-18,0,-33,-14,-32,-32v0,-18,14,-31,32,-31v18,0,32,13,32,31v1,18,-14,32,-32,32xm69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45","w":146},"\u0170":{"d":"137,-328r17,0r-33,51r-12,0xm89,-328r17,0r-34,51r-12,0xm90,4v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v0,48,-24,75,-71,75","w":180,"k":{".":27,",":27}},"\u0171":{"d":"120,-265r17,0r-33,50r-12,0xm72,-265r17,0r-34,50r-11,0xm69,-8v70,0,38,-112,45,-180r14,0r0,188r-14,0r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45","w":146},"\u0172":{"d":"92,71v-42,-1,-27,-56,-2,-67v-48,0,-72,-25,-71,-75r0,-186r15,0r0,189v0,37,17,60,56,60v38,0,55,-24,56,-60r0,-189r15,0r0,186v1,46,-21,69,-59,75v-13,11,-24,21,-26,38v-2,20,22,26,35,14r4,8v-6,4,-14,7,-23,7","w":180,"k":{".":27,",":27}},"\u0173":{"d":"69,-8v70,0,38,-112,45,-180r14,0r0,188v-20,10,-32,21,-34,42v-2,20,22,25,35,14v8,11,-9,15,-20,15v-48,0,-22,-60,5,-71r0,-28v-9,17,-22,33,-48,32v-78,-1,-39,-121,-48,-192r14,0r0,135v0,30,11,45,37,45","w":146},"\u0174":{"d":"119,-328r15,0r34,51r-15,0r-26,-40r-27,40r-15,0xm175,0r-49,-235r-48,235r-18,0r-56,-257r15,0r50,235r48,-235r19,0r49,235r49,-235r15,0r-56,257r-18,0","w":253,"k":{"\u0173":3,"\u0171":3,"\u016f":3,"\u016d":3,"\u016b":3,"\u0169":3,"\u0151":10,"\u014f":10,"\u014d":10,"\u011b":10,"\u0119":10,"\u0117":10,"\u0115":10,"\u0113":10,"\u0105":10,"\u0104":6,"\u0103":10,"\u0102":6,"\u0101":10,"\u0100":6,"\u00fc":3,"\u00fb":3,"\u00fa":3,"\u00f9":3,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"u":3,"o":10,"e":10,"a":10,"A":6,";":11,":":11,".":33,"-":14,",":33}},"\u0175":{"d":"89,-265r15,0r34,50r-15,0r-26,-39r-26,39r-16,0xm133,0r-36,-169r-37,169r-18,0r-40,-188r15,0r34,169r38,-169r17,0r36,169r34,-169r15,0r-41,188r-17,0","w":193,"k":{".":20,",":20}},"\u0176":{"d":"73,-328r15,0r34,51r-15,0r-26,-40r-27,40r-15,0xm72,-106r-70,-151r17,0r61,135r63,-135r15,0r-71,151r0,106r-15,0r0,-106","w":159,"k":{"\u0173":17,"\u0171":17,"\u016f":17,"\u016d":17,"\u016b":17,"\u0169":17,"\u0151":23,"\u014f":23,"\u014d":23,"\u0133":6,"\u012f":6,"\u011b":23,"\u0119":23,"\u0117":23,"\u0115":23,"\u0113":23,"\u0105":23,"\u0104":20,"\u0103":23,"\u0102":20,"\u0101":23,"\u0100":20,"\u00fc":17,"\u00fb":17,"\u00fa":17,"\u00f9":17,"\u00f6":23,"\u00f5":23,"\u00f4":23,"\u00f3":23,"\u00f2":23,"\u00eb":23,"\u00ea":23,"\u00e9":23,"\u00e8":23,"\u00e5":23,"\u00e4":23,"\u00e3":23,"\u00e2":23,"\u00e1":23,"\u00e0":23,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":17,"o":23,"i":6,"e":23,"a":23,"A":20,";":20,":":20,".":47,"-":33,",":47}},"\u0177":{"d":"59,-265r15,0r34,50r-15,0r-27,-39r-26,39r-15,0xm108,-188r15,0r-58,216v-7,28,-22,37,-56,35r0,-13v37,9,43,-21,50,-48r-56,-190r15,0r49,169","w":126,"k":{".":27,",":27}},"\u0179":{"d":"6,-15r131,-228r-123,0r0,-14r138,0r0,15r-131,228r132,0r0,14r-147,0r0,-15xm102,-328r18,0r-34,50r-12,0","w":159},"\u017a":{"d":"5,-12r94,-164r-89,0r0,-12r104,0r0,12r-93,164r94,0r0,12r-110,0r0,-12xm82,-265r18,0r-34,50r-12,0","w":120},"\u017b":{"d":"74,-321r15,0r0,37r-15,0r0,-37xm6,-15r131,-228r-123,0r0,-14r138,0r0,15r-131,228r132,0r0,14r-147,0r0,-15","w":159},"\u017c":{"d":"54,-258r15,0r0,37r-15,0r0,-37xm5,-12r94,-164r-89,0r0,-12r104,0r0,12r-93,164r94,0r0,12r-110,0r0,-12","w":120},"\u0218":{"d":"77,18r17,0v-1,24,6,53,-19,55v-1,-12,12,-8,9,-24r-7,0r0,-31xm86,4v-51,0,-77,-29,-73,-83r15,0v-2,44,17,68,58,71v58,5,81,-82,32,-105v-41,-20,-101,-20,-101,-81v0,-65,84,-87,121,-48v12,12,17,29,17,50r-15,0v-1,-34,-17,-57,-53,-57v-48,0,-72,54,-44,86v33,38,120,21,118,96v-1,46,-29,71,-75,71","w":173,"k":{".":27,",":27}},"\u0219":{"d":"55,18r17,0v-1,24,6,53,-19,55v-1,-12,12,-8,9,-24r-7,0r0,-31xm64,-193v36,0,50,22,49,58v-6,-1,-17,3,-14,-6v0,-24,-9,-39,-35,-39v-32,0,-49,36,-30,58v23,28,87,18,84,74v-2,33,-21,51,-54,52v-42,1,-56,-24,-56,-64v6,1,17,-3,14,6v0,29,12,46,42,46v47,0,51,-65,11,-78v-29,-9,-63,-18,-63,-58v0,-31,23,-48,52,-49","w":126,"k":{".":20,",":20}},"\u021a":{"d":"68,18r17,0v-1,23,5,52,-18,55v-1,-12,11,-10,9,-24r-8,0r0,-31xm69,-243r-68,0r0,-14r152,0r0,14r-69,0r0,243r-15,0r0,-243","k":{"\u0177":23,"\u0175":30,"\u0173":30,"\u0171":30,"\u016f":30,"\u016d":30,"\u016b":30,"\u0169":30,"\u0159":30,"\u0157":30,"\u0155":30,"\u0151":30,"\u014f":30,"\u014d":30,"\u0133":6,"\u012f":6,"\u011b":30,"\u0119":30,"\u0117":30,"\u0115":30,"\u0113":30,"\u0105":30,"\u0104":20,"\u0103":30,"\u0102":20,"\u0101":30,"\u0100":20,"\u00ff":23,"\u00fd":23,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":23,"w":30,"u":30,"r":30,"o":30,"i":6,"e":30,"a":30,"A":20,";":27,":":27,".":40,"-":40,",":40}},"\u021b":{"d":"42,18r17,0v-1,24,6,53,-19,55v-1,-12,12,-8,9,-24r-7,0r0,-31xm76,0v-28,6,-48,-1,-48,-30r0,-146r-25,0r0,-12r25,0r0,-56r14,0r0,56r31,0r0,12r-31,0r0,145v-2,23,17,23,34,19r0,12","w":73}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com.
 * All rights reserved. This software is the property of Linotype GmbH, and may not
 * be reproduced, modified, disclosed or transferred without the express written
 * approval of Linotype GmbH. Copyright © 1988, 1990, 1993 Adobe Systems
 * Incorporated. All Rights Reserved. Helvetica is a trademark of Heidelberger
 * Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be
 * registered in certain jurisdictions. This typeface is original artwork of
 * Linotype Design Studio. The design may be protected in certain jurisdictions.
 * 
 * Trademark:
 * Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype GmbH, and may be registered in certain jurisdictions.
 * 
 * Description:
 * Helvetica is one of the most famous and popular typefaces in the world. It
 * lends an air of lucid efficiency to any typographic message with its clean,
 * no-nonsense shapes. The original typeface was called Haas Grotesk, and was
 * designed in 1957 by Max Miedinger for the Haas'sche Schriftgiesserei (Haas Type
 * Foundry) in Switzerland. In 1960 the name was changed to Helvetica (an
 * adaptation of "Helvetia", the Latin name for Switzerland). Over the years, the
 * Helvetica family was expanded to include many different weights, but these were
 * not as well coordinated with each other as they might have been. In 1983, D.
 * Stempel AG and Linotype re-designed and digitized Neue Helvetica and updated it
 * into a cohesive font family. Today, the original Helvetica family consists of 34
 * different font weights, and the Neue Helvetica family consists of 51 font
 * weights. The Helvetica family now forms an integral part of many digital
 * printers and operating systems and has become a stylistic anchor in our visual
 * culture. It is the quintessential sans serif font, timeless and neutral, and can
 * be used for all types of communication. Helvetica World, an update to the
 * classic Helvetica design using the OpenType font format, contains the following
 * Microsoft code pages: 1252 Latin 1, 1250 Latin 2 Eastern, 1251 Cyrillic, 1253
 * Greek, 1254 Turk, 1255 Hebrew, 1256 Arabic, 1257 Windows Baltic, 1258 Windows
 * Vietnamese, as well as a mixture of box drawing element glyphs and mathematical
 * symbols & operators. In total, each weight of Helvetica World contains more than
 * 1850 different glyph characters!
 * 
 * Manufacturer:
 * Linotype GmbH
 * 
 * Designer:
 * Linotype Design Studio
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.linotype.com/license
 */
Cufon.registerFont({"w":166,"face":{"font-family":"HelveticaNeueLT Com 57 Cn","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 6 3 5 2 3 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-16 -339 278 76","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+021B"},"glyphs":{" ":{"w":86,"k":{"\u021a":13,"\u0178":13,"\u0176":13,"\u0174":13,"\u0164":13,"\u0162":13,"\u0104":13,"\u0102":13,"\u0100":13,"\u00dd":13,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"Y":13,"W":13,"V":13,"T":13,"A":13}},"\u0132":{"d":"21,-257r32,0r0,257r-32,0r0,-257xm139,-21v31,0,33,-24,33,-54r0,-182r31,0r0,183v2,50,-16,79,-64,79v-46,0,-64,-30,-60,-80r30,0v-1,29,0,54,30,54","w":223},"\u0133":{"d":"22,-257r30,0r0,35r-30,0r0,-35xm22,-193r30,0r0,193r-30,0r0,-193xm126,-222r-30,0r0,-35r30,0r0,35xm66,39v21,6,30,-7,30,-31r0,-201r30,0r0,212v1,37,-22,51,-60,46r0,-26","w":147},"\u0149":{"d":"5,-290r30,0v1,30,3,58,-29,58r0,-10v8,-2,13,-4,13,-15r-14,0r0,-33xm88,-172v-23,1,-38,15,-38,39r0,133r-30,0r0,-193r29,0r0,23v6,-16,26,-28,47,-28v40,-1,52,23,51,61r0,137r-30,0r-1,-145v-1,-17,-10,-27,-28,-27","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"!":{"d":"30,-35r33,0r0,35r-33,0r0,-35xm30,-257r33,0r-6,190r-21,0","w":92},"\"":{"d":"91,-257r24,0r0,91r-24,0r0,-91xm31,-257r24,0r0,91r-24,0r0,-91","w":146},"#":{"d":"64,-98r39,0r6,-55r-38,0xm38,-74r-30,0r0,-24r33,0r7,-55r-32,0r0,-24r35,0r9,-73r24,0r-9,73r38,0r9,-73r23,0r-9,73r29,0r0,24r-32,0r-7,55r30,0r0,24r-33,0r-9,74r-24,0r10,-74r-38,0r-10,74r-24,0","w":172},"$":{"d":"54,-124v-65,-17,-52,-138,24,-131r0,-21r15,0r0,21v44,1,64,26,65,70r-32,0v1,-27,-10,-41,-33,-44r0,88v35,13,72,22,72,72v0,48,-29,70,-72,74r0,34r-15,0r0,-34v-51,-1,-71,-30,-70,-83r31,0v-1,32,8,56,39,57r0,-94xm78,-229v-33,-1,-43,46,-25,68v6,6,15,11,25,15r0,-83xm93,-21v43,1,52,-68,15,-83r-15,-6r0,89","w":172},"%":{"d":"257,-64v0,38,-7,69,-47,69v-41,0,-48,-30,-48,-69v0,-39,7,-69,48,-69v40,0,47,31,47,69xm111,-186v0,40,-6,69,-47,69v-41,0,-47,-30,-47,-69v0,-40,7,-69,47,-69v39,0,47,29,47,69xm189,-84v0,28,-8,70,21,70v28,0,20,-42,20,-70v0,-17,-4,-30,-20,-30v-16,0,-21,12,-21,30xm179,-255r25,0r-112,260r-25,0xm43,-206v-1,28,-7,70,21,70v28,0,19,-42,20,-70v-1,-16,-3,-29,-20,-29v-17,0,-20,13,-21,29","w":273},"&":{"d":"89,-257v58,-7,71,66,32,94r-22,19r51,73v5,-15,8,-29,10,-50r28,0v-1,28,-11,56,-21,75r33,46r-34,0r-17,-24v-36,50,-140,32,-140,-42v0,-43,28,-63,54,-81v-9,-19,-27,-33,-27,-60v0,-32,23,-46,53,-50xm41,-69v0,55,71,61,93,23r-57,-81v-19,11,-36,29,-36,58xm90,-233v-42,1,-21,55,-4,70v11,-14,29,-22,30,-45v0,-13,-11,-26,-26,-25","w":200},"'":{"d":"31,-257r24,0r0,91r-24,0r0,-91","w":86},"(":{"d":"15,-95v0,-66,23,-119,53,-162r17,0v-52,83,-51,240,0,323r-17,0v-31,-41,-53,-96,-53,-161","w":86},")":{"d":"19,-257v67,77,67,246,0,323r-18,0v55,-82,50,-240,0,-323r18,0","w":86},"*":{"d":"53,-257r21,0r0,43r39,-15r8,21r-41,12r27,34r-18,13r-26,-36r-26,36r-18,-13r28,-34r-41,-12r8,-21r39,15r0,-43","w":126},"+":{"d":"96,-79r-79,0r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0r0,-79","w":216},",":{"d":"27,36v14,-5,15,-17,15,-36r-15,0r0,-38r33,0v-1,40,5,84,-33,91r0,-17","w":86,"k":{" ":13}},"-":{"d":"19,-116r88,0r0,28r-88,0r0,-28","w":126},".":{"d":"27,-38r33,0r0,38r-33,0r0,-38","w":86,"k":{" ":13}},"\/":{"d":"80,-262r24,0r-84,267r-24,0","w":100},"0":{"d":"86,-231v-44,0,-41,59,-41,107v0,47,-3,105,41,105v44,0,41,-58,41,-105v0,-48,4,-107,-41,-107xm159,-124v0,68,-7,129,-73,129v-75,0,-75,-81,-72,-158v2,-54,16,-102,72,-102v67,0,73,62,73,131","w":172},"1":{"d":"24,-213v34,-1,63,-7,63,-42r22,0r0,255r-31,0r0,-192r-54,0r0,-21","w":172},"2":{"d":"88,-255v75,-4,84,93,43,134v-29,29,-71,48,-83,93r110,0r0,28r-143,0v1,-89,80,-102,108,-164v6,-31,-3,-66,-35,-65v-30,1,-42,23,-40,55r-32,0v0,-50,22,-78,72,-81","w":172},"3":{"d":"127,-71v0,-36,-21,-53,-62,-49r0,-24v37,5,55,-14,55,-45v0,-24,-9,-42,-34,-42v-28,0,-36,22,-36,50r-32,0v0,-46,23,-70,68,-74v73,-7,88,108,26,121v26,9,48,23,47,60v-2,48,-24,78,-73,79v-49,0,-71,-27,-72,-74r32,0v1,28,12,49,40,50v30,0,41,-21,41,-52","w":172},"4":{"d":"103,-255r30,0r0,168r29,0r0,25r-29,0r0,62r-30,0r0,-62r-92,0r0,-28xm38,-87r65,0r-1,-118","w":172},"5":{"d":"84,-143v-19,0,-30,13,-36,25r-27,-1r14,-131r114,0r0,28r-90,0v-2,24,-9,52,-9,75v41,-44,120,-5,108,65v15,90,-120,121,-141,36v-2,-8,-3,-15,-3,-20r32,0v1,26,12,47,39,47v35,1,42,-34,42,-66v0,-32,-11,-57,-43,-58","w":172},"6":{"d":"88,-137v-31,0,-40,28,-40,59v0,31,8,59,40,59v32,0,41,-28,41,-59v0,-31,-9,-59,-41,-59xm13,-89v-3,-82,-2,-166,77,-166v41,0,62,22,64,61r-31,0v0,-21,-13,-37,-34,-37v-42,0,-47,54,-44,97v9,-15,24,-29,49,-29v46,2,65,34,66,81v0,51,-23,86,-72,87v-56,1,-73,-43,-75,-94","w":172},"7":{"d":"159,-224v-41,57,-76,132,-85,224r-35,0v12,-86,46,-163,91,-222r-116,0r0,-28r145,0r0,26","w":172},"8":{"d":"86,-124v-29,1,-41,22,-41,53v0,31,12,50,41,52v31,1,42,-23,42,-52v0,-29,-11,-54,-42,-53xm120,-189v0,-23,-9,-43,-34,-42v-24,0,-33,19,-33,42v0,23,8,41,33,41v25,0,34,-18,34,-41xm86,5v-83,5,-99,-123,-28,-141v-23,-9,-36,-24,-37,-54v0,-41,26,-61,65,-65v71,-6,90,103,28,119v30,10,45,32,45,66v-1,46,-25,72,-73,75","w":172},"9":{"d":"85,-113v32,0,40,-29,40,-59v0,-31,-8,-59,-40,-59v-32,0,-41,28,-41,59v0,31,8,59,41,59xm159,-161v3,80,3,165,-76,166v-42,0,-62,-24,-65,-61r32,0v0,21,12,38,34,37v42,-3,47,-54,44,-97v-9,15,-24,29,-49,29v-47,-1,-66,-33,-66,-81v0,-51,22,-87,72,-87v55,0,72,41,74,94","w":172},":":{"d":"27,-38r33,0r0,38r-33,0r0,-38xm27,-182r33,0r0,38r-33,0r0,-38","w":86,"k":{" ":13}},";":{"d":"27,-182r33,0r0,38r-33,0r0,-38xm27,36v14,-5,15,-17,15,-36r-15,0r0,-38r33,0v-1,40,5,84,-33,91r0,-17","w":86},"<":{"d":"17,-102r182,-83r0,24r-154,70r154,70r0,24r-182,-83r0,-22","w":216},"=":{"d":"17,-66r182,0r0,24r-182,0r0,-24xm17,-140r182,0r0,24r-182,0r0,-24","w":216},">":{"d":"17,-21r154,-70r-154,-70r0,-24r182,83r0,22r-182,83r0,-24","w":216},"?":{"d":"59,-35r34,0r0,35r-34,0r0,-35xm81,-234v-30,0,-38,25,-38,53r-30,0v1,-47,20,-76,67,-79v68,-4,84,85,44,125v-17,17,-38,32,-34,68r-28,0v-9,-65,54,-68,54,-127v0,-22,-11,-40,-35,-40","w":159},"@":{"d":"147,-205v23,0,33,13,42,30r8,-23r20,0r-34,118v0,6,6,9,11,9v39,-5,60,-37,60,-78v0,-61,-47,-91,-110,-91v-68,0,-110,45,-110,111v0,67,41,112,110,112v45,0,78,-13,98,-40r22,0v-22,40,-60,64,-120,62v-81,-2,-134,-54,-134,-134v0,-79,53,-133,134,-133v77,0,134,38,134,111v0,59,-37,102,-93,102v-16,0,-24,-7,-26,-22v-25,36,-100,24,-96,-32v4,-55,28,-102,84,-102xm147,-183v-40,0,-61,39,-61,78v0,20,15,34,34,34v36,0,56,-39,56,-76v0,-19,-10,-36,-29,-36","w":288},"A":{"d":"56,-96r69,0r-34,-125xm71,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0","w":180,"k":{"\u021a":20,"\u0178":20,"\u0176":20,"\u0174":7,"\u0164":20,"\u0162":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"B":{"d":"132,-189v0,-43,-36,-44,-79,-42r0,85v43,2,79,1,79,-43xm174,-73v4,79,-75,75,-153,73r0,-257v72,-2,149,-8,145,66v-1,28,-16,46,-38,54v30,7,45,29,46,64xm141,-73v0,-48,-39,-52,-88,-49r0,96v48,3,88,0,88,-47","w":186},"C":{"d":"100,-21v37,0,44,-31,45,-67r33,0v-3,53,-23,92,-78,93v-71,0,-83,-64,-83,-134v1,-70,13,-132,83,-133v53,-1,74,30,76,80r-33,0v-2,-30,-10,-55,-43,-54v-50,2,-50,57,-50,107v0,51,0,108,50,108","w":186},"D":{"d":"183,-129v-2,69,-17,129,-87,129r-72,0r0,-257r69,0v75,-2,91,54,90,128xm150,-128v0,-53,-6,-104,-61,-103r-33,0r0,205r33,0v54,0,61,-50,61,-102","w":200,"k":{"\u0178":7,"\u0176":7,"\u00dd":7,"Y":7}},"E":{"d":"21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0r0,-257"},"F":{"d":"21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,120r-32,0r0,-257","w":159,"k":{"\u0159":7,"\u0157":7,"\u0155":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u0133":6,"\u012f":6,"\u011b":9,"\u0119":9,"\u0117":9,"\u0115":9,"\u0113":9,"\u0105":7,"\u0104":19,"\u0103":7,"\u0102":19,"\u0101":7,"\u0100":19,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00c5":19,"\u00c4":19,"\u00c3":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"r":7,"o":7,"i":6,"e":9,"a":7,"A":19,".":40,",":40}},"G":{"d":"100,-262v49,0,76,27,76,76r-33,0v-2,-29,-12,-50,-43,-50v-50,2,-50,57,-50,107v0,51,0,108,50,108v42,0,47,-44,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-6,21,-29,41,-56,40v-69,-1,-79,-65,-79,-134v0,-70,13,-133,83,-133","w":193},"H":{"d":"172,0r-31,0r0,-124r-88,0r0,124r-32,0r0,-257r32,0r0,105r88,0r0,-105r31,0r0,257","w":193},"I":{"d":"21,-257r32,0r0,257r-32,0r0,-257","w":73},"J":{"d":"68,-21v31,0,33,-24,33,-54r0,-182r31,0r0,183v2,50,-16,79,-64,79v-46,0,-64,-30,-60,-80r30,0v-1,29,0,54,30,54","w":153},"K":{"d":"21,-257r32,0r0,125r89,-125r35,0r-77,107r84,150r-35,0r-70,-124r-26,37r0,87r-32,0r0,-257","w":180,"k":{"\u0177":4,"\u0173":7,"\u0171":7,"\u016f":7,"\u016d":7,"\u016b":7,"\u0169":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u00ff":4,"\u00fd":4,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"y":4,"u":7,"o":7}},"L":{"d":"21,-257r32,0r0,229r104,0r0,28r-136,0r0,-257","w":159,"k":{"\u021a":34,"\u0178":33,"\u0177":13,"\u0176":33,"\u0174":27,"\u0164":34,"\u0162":34,"\u00ff":13,"\u00fd":13,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":34}},"M":{"d":"22,-257r53,0r52,204r52,-204r53,0r0,257r-32,0r-1,-225r-56,225r-32,0r-58,-225r0,225r-31,0r0,-257","w":253},"N":{"d":"21,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0r0,-257","w":200},"O":{"d":"150,-129v0,-50,0,-107,-50,-107v-50,0,-50,57,-50,107v0,51,0,108,50,108v50,0,50,-57,50,-108xm17,-129v0,-70,13,-133,83,-133v70,0,83,63,83,133v0,70,-13,134,-83,134v-70,0,-83,-64,-83,-134","w":200,"k":{"\u0178":9,"\u0176":9,"\u00dd":9,"Y":9,"X":9}},"P":{"d":"133,-185v0,-43,-34,-49,-80,-46r0,96v47,4,80,-4,80,-50xm166,-183v0,63,-46,79,-113,74r0,109r-32,0r0,-257v76,-3,145,-5,145,74","w":173,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u011b":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u0105":6,"\u0104":13,"\u0103":6,"\u0102":13,"\u0101":6,"\u0100":13,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"o":6,"e":6,"a":6,"A":13,".":46,",":46}},"Q":{"d":"50,-129v-2,59,11,128,73,102r-24,-22r17,-20r24,22v9,-21,10,-51,10,-82v0,-50,0,-107,-50,-107v-50,0,-47,57,-50,107xm100,-262v96,-1,92,133,73,213v-2,8,-7,16,-11,22r26,24r-18,18r-26,-23v-11,9,-24,13,-44,13v-70,-1,-83,-64,-83,-134v0,-70,13,-132,83,-133","w":200},"R":{"d":"137,-190v0,-41,-41,-43,-84,-41r0,91v47,2,84,-1,84,-50xm144,0v-22,-30,15,-117,-49,-114r-42,0r0,114r-32,0r0,-257v71,-1,149,-9,149,64v0,35,-14,57,-40,66v38,3,39,46,39,87v0,19,2,34,14,40r-39,0","w":186,"k":{"\u021a":6,"\u0178":6,"\u0176":6,"\u0174":-7,"\u0172":-7,"\u0170":-7,"\u016e":-7,"\u016c":-7,"\u016a":-7,"\u0168":-7,"\u0164":6,"\u0162":6,"\u00dd":6,"\u00dc":-7,"\u00db":-7,"\u00da":-7,"\u00d9":-7,"Y":6,"W":-7,"U":-7,"T":6}},"S":{"d":"53,-129v-63,-25,-45,-133,37,-133v50,0,70,24,72,72r-32,0v0,-28,-11,-46,-40,-46v-28,0,-44,14,-42,42v5,75,121,35,121,123v0,88,-137,104,-154,27v-3,-11,-4,-23,-4,-37r32,0v-1,37,9,60,48,60v45,0,59,-61,26,-82v-18,-11,-43,-18,-64,-26","w":180},"T":{"d":"99,0r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0r0,229","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u0133":6,"\u012f":6,"\u011b":27,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u0105":27,"\u0104":20,"\u0103":27,"\u0102":20,"\u0101":27,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81","w":186},"V":{"d":"-1,-257r33,0r52,221r50,-221r33,0r-65,257r-40,0","k":{"\u0173":6,"\u0171":6,"\u016f":6,"\u016d":6,"\u016b":6,"\u0169":6,"\u0151":6,"\u014f":6,"\u014d":6,"\u011b":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u0105":6,"\u0104":13,"\u0103":6,"\u0102":13,"\u0101":6,"\u0100":13,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"u":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"3,-257r32,0r40,210r36,-210r38,0r37,210r39,-210r32,0r-53,257r-38,0r-36,-208r-37,208r-39,0","w":259,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u011b":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u0105":6,"\u0104":6,"\u0103":6,"\u0102":6,"\u0101":6,"\u0100":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"6,-257r35,0r47,96r47,-96r33,0r-64,126r68,131r-35,0r-51,-103r-52,103r-33,0r68,-131","w":173},"Y":{"d":"-1,-257r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101","k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":27,"\u014f":27,"\u014d":27,"\u0133":11,"\u012f":11,"\u011b":27,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u0105":27,"\u0104":20,"\u0103":27,"\u0102":20,"\u0101":27,"\u0100":20,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f9":22,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"8,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0r0,-27"},"[":{"d":"28,-257r65,0r0,24r-37,0r0,275r37,0r0,24r-65,0r0,-323","w":93},"\\":{"d":"-4,-262r24,0r84,267r-24,0","w":100},"]":{"d":"65,66r-64,0r0,-24r36,0r0,-275r-36,0r0,-24r64,0r0,323","w":93},"^":{"d":"99,-250r18,0r82,156r-24,0r-67,-130r-67,130r-24,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"`":{"d":"30,-270r25,51r-22,0r-39,-51r36,0","w":73},"a":{"d":"69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33xm78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v3,18,-1,26,-26,23v-13,-1,-18,-12,-20,-25v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"b":{"d":"91,5v-22,0,-36,-13,-42,-29r0,24r-29,0r0,-257r30,0r1,86v5,-15,23,-28,44,-27v51,1,59,52,59,102v0,51,-12,99,-63,101xm87,-172v-36,0,-39,40,-39,76v0,36,3,75,39,75v34,0,35,-39,35,-75v0,-38,-1,-76,-35,-76"},"c":{"d":"12,-94v0,-56,12,-104,68,-104v41,0,61,24,62,64r-30,0v-2,-21,-7,-41,-31,-40v-43,2,-38,56,-37,102v1,26,8,53,36,53v26,1,30,-25,32,-48r30,0v-2,41,-21,72,-64,72v-55,0,-65,-40,-66,-99","w":153,"k":{"\u0177":7,"\u0140":7,"\u013e":7,"\u013c":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"d":{"d":"73,-198v21,-1,37,14,44,27r0,-86r30,0r0,257r-29,0v-1,-7,2,-18,-1,-24v-5,17,-20,29,-41,29v-53,0,-62,-47,-63,-101v-1,-52,9,-101,60,-102xm80,-172v-36,0,-36,39,-36,76v0,36,1,75,36,75v37,0,38,-38,38,-75v0,-37,-3,-76,-38,-76","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"e":{"d":"82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v-3,38,-22,68,-65,68v-55,-1,-67,-40,-67,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57","w":159},"f":{"d":"93,-234v-18,0,-34,-1,-34,18r0,23r33,0r0,24r-33,0r0,169r-30,0r0,-169r-28,0r0,-24r28,0v-5,-49,11,-74,64,-67r0,26","w":93},"g":{"d":"76,-198v22,0,36,14,42,30r0,-25r29,0r0,181v11,72,-73,102,-119,58v-6,-7,-9,-16,-10,-28r30,0v1,17,14,24,31,24v39,0,41,-34,37,-68v-6,15,-24,26,-44,26v-49,-2,-58,-47,-59,-96v0,-54,11,-102,63,-102xm118,-96v0,-37,-3,-76,-38,-76v-36,0,-36,39,-36,76v0,32,3,70,35,70v36,0,39,-34,39,-70","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"h":{"d":"88,-172v-23,1,-38,15,-38,39r0,133r-30,0r0,-257r30,0r1,86v15,-37,95,-37,95,15r1,156r-30,0r-1,-145v-1,-17,-10,-27,-28,-27"},"i":{"d":"22,-257r30,0r0,35r-30,0r0,-35xm22,-193r30,0r0,193r-30,0r0,-193","w":73},"j":{"d":"52,-222r-30,0r0,-35r30,0r0,35xm-8,39v21,6,30,-7,30,-31r0,-201r30,0r0,212v1,37,-22,51,-60,46r0,-26","w":73},"k":{"d":"164,0r-35,0r-54,-95r-25,30r0,65r-30,0r0,-257r30,0r1,153r67,-89r36,0r-59,73","w":159},"l":{"d":"22,-257r30,0r0,257r-30,0r0,-257","w":73,"k":{"\u0175":-4,"w":-4}},"m":{"d":"89,-172v-23,1,-35,15,-36,39r0,133r-30,0r0,-193r28,0v1,7,-2,18,1,23v6,-16,26,-28,47,-28v25,0,36,11,42,31v7,-15,23,-31,45,-31v39,0,51,21,51,61r0,137r-30,0r-1,-145v-1,-15,-8,-27,-25,-27v-23,1,-35,15,-36,39r0,133r-30,0r-1,-145v-1,-15,-8,-27,-25,-27","w":259},"n":{"d":"88,-172v-23,1,-38,15,-38,39r0,133r-30,0r0,-193r29,0r0,23v6,-16,26,-28,47,-28v40,-1,52,23,51,61r0,137r-30,0r-1,-145v-1,-17,-10,-27,-28,-27","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"o":{"d":"80,5v-57,0,-70,-46,-70,-101v0,-55,13,-102,70,-102v57,0,69,46,69,102v0,56,-13,101,-69,101xm42,-96v0,36,1,77,37,77v37,0,39,-40,39,-77v0,-37,-2,-78,-39,-78v-36,0,-37,42,-37,78","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"p":{"d":"91,5v-21,1,-33,-14,-41,-27r0,85r-30,0r0,-256r29,0r0,24v6,-17,21,-29,42,-29v52,0,63,45,63,98v0,51,-12,103,-63,105xm87,-172v-37,0,-39,39,-39,76v0,35,3,75,39,75v35,0,35,-41,35,-79v0,-36,-2,-72,-35,-72"},"q":{"d":"80,-21v35,0,38,-39,38,-75v0,-38,-2,-76,-38,-76v-34,0,-36,37,-36,72v0,37,0,79,36,79xm76,-198v21,0,35,13,42,29r0,-24r29,0r0,256r-30,0r-1,-85v-6,15,-20,27,-40,27v-52,-2,-64,-50,-63,-105v1,-53,11,-98,63,-98"},"r":{"d":"106,-166v-32,-7,-57,12,-56,44r0,122r-30,0r0,-193r30,0v1,9,-2,22,1,29v8,-20,26,-40,55,-32r0,30","w":106,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"13,-145v-6,-58,87,-69,112,-31v7,10,8,25,8,40r-30,0v0,-24,-5,-38,-29,-38v-46,0,-34,52,-1,59v33,7,65,17,65,60v0,66,-94,78,-121,33v-7,-10,-8,-27,-8,-41r30,0v1,25,8,45,36,44v20,-1,34,-10,32,-32v-6,-55,-100,-25,-94,-94","w":146,"k":{"\u0175":-4,"w":-4}},"t":{"d":"92,0v-34,5,-63,3,-63,-36r0,-133r-28,0r0,-24r28,0r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-2,21,14,23,33,20r0,25","w":93},"u":{"d":"78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27"},"v":{"d":"4,-193r33,0r36,155r36,-155r34,0r-53,193r-34,0","w":146,"k":{".":20,",":20}},"w":{"d":"4,-193r31,0r32,158r33,-158r35,0r33,158r30,-158r32,0r-46,193r-33,0r-35,-158r-32,158r-35,0","w":233,"k":{".":13,",":13}},"x":{"d":"6,-193r33,0r35,69r35,-69r33,0r-50,93r52,100r-33,0r-39,-76r-37,76r-33,0r53,-100","w":146},"y":{"d":"4,-193r33,0r39,155r33,-155r34,0r-62,225v-7,25,-33,36,-68,30r0,-23v29,7,44,-11,47,-35","w":146,"k":{"\u0105":-4,"\u0103":-4,"\u0101":-4,"\u00e5":-4,"\u00e4":-4,"\u00e3":-4,"\u00e2":-4,"\u00e1":-4,"\u00e0":-4,"a":-4,".":20,",":20}},"z":{"d":"14,-193r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0r0,-26","w":140},"{":{"d":"93,66v-120,21,-25,-140,-92,-151r0,-21v68,-9,-29,-173,92,-151r0,24v-78,-18,0,123,-69,138v43,6,29,71,33,118v-3,20,16,20,36,19r0,24","w":93},"|":{"d":"28,-262r24,0r0,267r-24,0r0,-267","w":79},"}":{"d":"1,-257v119,-20,22,143,92,151r0,21v-69,8,27,173,-92,151r0,-24v76,18,-1,-123,68,-138v-43,-6,-32,-69,-32,-118v0,-18,-16,-21,-36,-19r0,-24","w":93},"~":{"d":"125,-95v23,16,48,-4,56,-21r15,17v-14,38,-77,41,-105,12v-23,-15,-47,4,-56,20r-15,-16v14,-39,77,-41,105,-12","w":216},"\u00a0":{"w":86},"\u00a1":{"d":"63,-159r-33,0r0,-35r33,0r0,35xm63,63r-33,0r6,-190r21,0","w":92},"\u00a2":{"d":"152,-67v-1,39,-18,68,-55,72r0,31r-15,0r0,-31v-50,-4,-61,-41,-61,-99v0,-53,12,-99,61,-104r0,-25r15,0r0,25v37,3,54,27,55,64r-31,0v0,-20,-6,-37,-24,-40r0,155v19,-4,23,-26,24,-48r31,0xm82,-174v-39,14,-35,107,-17,144v4,6,10,9,17,11r0,-155","w":172},"\u00a3":{"d":"35,-138v-35,-47,-13,-121,55,-117v47,3,70,26,71,73r-30,0v0,-29,-12,-48,-41,-49v-56,-3,-41,67,-21,93r59,0r0,22r-51,0v22,42,-20,74,-39,93v24,-20,57,1,84,-1v13,-1,20,-7,31,-13r13,24v-13,9,-29,18,-50,18v-35,0,-65,-27,-95,-3r-14,-23v25,-17,59,-55,37,-95r-34,0r0,-22r25,0","w":172},"\u00a4":{"d":"134,-62v-21,21,-74,21,-95,0r-17,17r-16,-15r17,-17v-20,-24,-20,-71,0,-95r-17,-17r16,-16r17,17v25,-23,72,-20,95,0r17,-17r15,16r-17,17v24,25,20,72,0,95r17,17r-15,15xm86,-180v-32,0,-53,22,-53,55v0,34,22,52,53,56v31,-3,54,-22,54,-56v0,-33,-21,-55,-54,-55","w":172},"\u00a5":{"d":"72,-55r-53,0r0,-22r53,0v0,-11,1,-23,-4,-29r-49,0r0,-22r40,0r-56,-122r35,0r49,117r51,-117r32,0r-54,122r39,0r0,22r-49,0v-5,6,-4,18,-4,29r53,0r0,22r-53,0r0,55r-30,0r0,-55","w":172},"\u00a6":{"d":"28,-262r24,0r0,106r-24,0r0,-106xm28,-101r24,0r0,106r-24,0r0,-106","w":79},"\u00a7":{"d":"112,-58v16,-8,29,-38,12,-56v-17,-17,-39,-26,-59,-40v-15,9,-36,34,-16,53v18,17,43,28,63,43xm46,-166v-42,-27,-21,-96,39,-96v40,0,61,18,64,54r-32,0v1,-20,-13,-30,-32,-30v-34,0,-38,43,-12,54v33,26,90,33,90,86v0,25,-16,42,-32,53v41,29,17,100,-42,100v-42,0,-64,-23,-66,-62r30,0v0,23,12,39,36,39v37,0,38,-50,12,-62v-32,-27,-90,-34,-90,-85v0,-28,17,-40,35,-51","w":173},"\u00a8":{"d":"52,-263r28,0r0,36r-28,0r0,-36xm-6,-263r28,0r0,36r-28,0r0,-36","w":73},"\u00a9":{"d":"34,-129v0,66,42,112,110,112v68,0,110,-46,110,-112v0,-65,-42,-111,-110,-111v-68,0,-110,46,-110,111xm144,5v-81,0,-134,-54,-134,-134v0,-79,53,-133,134,-133v81,0,134,54,134,133v0,80,-53,134,-134,134xm91,-127v-8,63,91,83,104,27r22,0v-6,35,-30,55,-71,55v-51,0,-74,-32,-79,-82v-9,-90,135,-116,150,-27r-22,0v-15,-59,-111,-36,-104,27","w":288},"\u00aa":{"d":"43,-149v24,0,29,-21,26,-48v-12,13,-43,5,-42,30v0,11,5,17,16,18xm52,-255v55,0,33,59,39,105v0,4,6,2,10,2v1,11,2,18,-14,16v-11,-2,-17,-5,-18,-17v-12,27,-72,22,-66,-17v-3,-38,43,-31,64,-46v6,-14,-1,-27,-18,-26v-14,1,-22,8,-21,23r-22,0v1,-30,14,-40,46,-40","w":104},"\u00ab":{"d":"18,-116r51,-52r0,32r-34,34r34,34r0,31r-51,-51r0,-28xm71,-116r51,-52r0,32r-33,34r33,34r0,31r-51,-51r0,-28","w":140},"\u00ac":{"d":"175,-116r-158,0r0,-24r182,0r0,102r-24,0r0,-78","w":216},"\u00ad":{"d":"19,-116r88,0r0,28r-88,0r0,-28","w":126},"\u00ae":{"d":"34,-129v0,66,42,112,110,112v68,0,110,-46,110,-112v0,-65,-42,-111,-110,-111v-68,0,-110,46,-110,111xm144,5v-81,0,-134,-54,-134,-134v0,-79,53,-133,134,-133v81,0,134,54,134,133v0,80,-53,134,-134,134xm181,-161v1,-31,-37,-22,-67,-23r0,47v30,-1,67,6,67,-24xm204,-160v0,28,-18,41,-42,43r45,67r-24,0r-43,-65r-26,0r0,65r-23,0r0,-156v52,1,113,-11,113,46","w":288},"\u00af":{"d":"-11,-255r95,0r0,20r-95,0r0,-20","w":73},"\u00b0":{"d":"72,-235v-21,0,-34,13,-34,34v0,22,14,32,34,34v20,-2,34,-12,34,-34v0,-21,-13,-34,-34,-34xm72,-148v-33,0,-54,-20,-54,-53v0,-34,21,-54,54,-54v33,0,54,20,54,54v0,33,-21,53,-54,53","w":144},"\u00b1":{"d":"17,-24r182,0r0,24r-182,0r0,-24xm17,-130r79,0r0,-52r24,0r0,52r79,0r0,24r-79,0r0,52r-24,0r0,-52r-79,0r0,-24","w":216},"\u00b2":{"d":"57,-255v41,-3,60,38,41,70v-14,23,-51,34,-61,63r65,0r0,21r-94,0v-1,-60,65,-59,71,-111v2,-14,-8,-21,-24,-21v-16,0,-21,12,-22,27r-26,0v1,-32,17,-47,50,-49","w":112},"\u00b3":{"d":"81,-144v0,-21,-16,-29,-39,-27r0,-19v35,10,48,-42,15,-45v-17,-2,-22,10,-23,24r-26,0v1,-29,15,-44,49,-44v51,0,61,68,15,73v17,6,36,13,35,37v0,29,-17,48,-49,47v-32,0,-51,-15,-52,-45r26,0v1,16,8,25,25,25v15,0,23,-10,24,-26","w":112},"\u00b4":{"d":"44,-270r35,0r-39,51r-21,0","w":73},"\u00b5":{"d":"78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-7,22,-43,36,-67,23r0,63r-30,0r0,-256r30,0r1,145v1,16,9,27,27,27"},"\u00b6":{"d":"13,-183v-2,-77,79,-77,159,-74r0,307r-24,0r0,-288r-36,0r0,288r-24,0r0,-166v-44,-1,-74,-25,-75,-67","w":200},"\u00b7":{"d":"43,-98v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20","w":86},"\u00b8":{"d":"74,45v-1,33,-48,37,-74,23v0,-25,49,7,48,-22v0,-14,-22,-15,-31,-10v-13,-11,10,-24,15,-36r16,0v-4,7,-14,14,-14,20v21,-4,40,3,40,25","w":73},"\u00b9":{"d":"12,-231v22,1,39,-4,40,-24r18,0r0,154r-24,0r0,-112r-34,0r0,-18","w":112},"\u00ba":{"d":"30,-194v0,21,1,45,21,45v34,0,34,-86,0,-89v-18,2,-21,23,-21,44xm6,-194v0,-35,10,-61,45,-61v36,0,47,26,47,61v0,36,-11,62,-47,62v-35,0,-45,-27,-45,-62","w":104},"\u00bb":{"d":"69,-88r-51,51r0,-31r33,-34r-33,-34r0,-32r51,52r0,28xm122,-88r-51,51r0,-31r34,-34r-34,-34r0,-32r51,52r0,28","w":140},"\u00bc":{"d":"12,-231v22,1,39,-4,40,-24r18,0r0,154r-24,0r0,-112r-34,0r0,-18xm190,-261r21,0r-156,272r-22,0xm202,-154r26,0r0,99r16,0r0,19r-16,0r0,36r-24,0r0,-36r-60,0r0,-21xm204,-55v-1,-22,2,-47,-1,-67r-40,67r41,0","w":259},"\u00bd":{"d":"201,-154v40,-3,59,39,40,70v-15,23,-50,35,-61,62r65,0r0,22r-94,0v-1,-61,64,-59,72,-111v-1,-13,-8,-21,-24,-21v-16,0,-23,10,-22,27r-26,0v-1,-33,18,-47,50,-49xm11,-231v22,1,40,-3,40,-24r18,0r0,154r-24,0r0,-112r-34,0r0,-18xm183,-261r21,0r-156,272r-21,0","w":259},"\u00be":{"d":"82,-144v0,-21,-16,-29,-39,-27r0,-19v35,10,49,-42,15,-45v-16,0,-23,8,-22,24r-26,0v1,-29,15,-44,49,-44v51,0,61,68,14,73v17,6,36,13,35,37v0,29,-17,48,-49,47v-32,0,-50,-16,-52,-45r26,0v2,14,8,25,25,25v15,0,25,-9,24,-26xm208,-261r22,0r-156,272r-22,0xm210,-154r25,0r0,99r17,0r0,19r-17,0r0,36r-23,0r0,-36r-60,0r0,-21xm212,-55v-1,-22,2,-47,-1,-67r-40,67r41,0","w":259},"\u00bf":{"d":"100,-159r-33,0r0,-35r33,0r0,35xm79,40v31,1,37,-24,38,-52r30,0v-1,46,-20,78,-67,78v-43,0,-65,-24,-67,-67v-2,-61,61,-64,57,-126r28,0v7,65,-54,69,-54,127v0,23,11,40,35,40","w":159},"\u00c0":{"d":"56,-96r69,0r-34,-125xm71,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm88,-329r25,51r-22,0r-39,-51r36,0","w":180,"k":{"\u021a":20,"\u0178":20,"\u0176":20,"\u0174":7,"\u0164":20,"\u0162":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c1":{"d":"56,-96r69,0r-34,-125xm71,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm97,-329r35,0r-39,51r-21,0","w":180,"k":{"\u021a":20,"\u0178":20,"\u0176":20,"\u0174":7,"\u0164":20,"\u0162":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c2":{"d":"79,-329r28,0r36,51r-29,0r-21,-32r-22,32r-29,0xm56,-96r69,0r-34,-125xm71,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0","w":180,"k":{"\u021a":20,"\u0178":20,"\u0176":20,"\u0174":7,"\u0164":20,"\u0162":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c3":{"d":"73,-323v20,1,50,30,53,-2r20,0v-1,21,-11,40,-31,40v-23,0,-50,-29,-56,2r-19,0v0,-23,13,-37,33,-40xm56,-96r69,0r-34,-125xm71,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0","w":180,"k":{"\u021a":20,"\u0178":20,"\u0176":20,"\u0174":7,"\u0164":20,"\u0162":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c4":{"d":"56,-96r69,0r-34,-125xm71,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm107,-322r28,0r0,36r-28,0r0,-36xm49,-322r28,0r0,36r-28,0r0,-36","w":180,"k":{"\u021a":20,"\u0178":20,"\u0176":20,"\u0174":7,"\u0164":20,"\u0162":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c5":{"d":"93,-324v-11,0,-21,9,-21,20v0,12,9,21,21,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20xm93,-268v-20,0,-36,-16,-36,-36v0,-20,16,-35,36,-35v19,0,35,16,35,35v0,20,-15,36,-35,36xm56,-96r69,0r-34,-125xm71,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0","w":180,"k":{"\u021a":20,"\u0178":20,"\u0176":20,"\u0174":7,"\u0164":20,"\u0162":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c6":{"d":"96,-257r151,0r0,28r-96,0r0,81r90,0r0,28r-90,0r0,92r100,0r0,28r-131,0r0,-71r-63,0r-27,71r-33,0xm66,-96r54,0r0,-135r-4,0","w":259},"\u00c7":{"d":"132,45v-1,33,-48,36,-74,23v1,-25,49,7,48,-22v-1,-22,-33,-4,-37,-17r18,-25v-61,-6,-70,-68,-70,-133v0,-70,13,-132,83,-133v53,-1,74,30,76,80r-33,0v-2,-30,-10,-55,-43,-54v-50,2,-50,57,-50,107v0,51,0,108,50,108v37,0,44,-31,45,-67r33,0v-2,53,-23,90,-76,93v-2,5,-10,10,-9,15v21,-4,39,4,39,25","w":186},"\u00c8":{"d":"21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0r0,-257xm85,-329r25,51r-22,0r-39,-51r36,0"},"\u00c9":{"d":"21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0r0,-257xm103,-329r35,0r-39,51r-21,0"},"\u00ca":{"d":"74,-329r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0r0,-257"},"\u00cb":{"d":"21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0r0,-257xm104,-322r28,0r0,36r-28,0r0,-36xm46,-322r28,0r0,36r-28,0r0,-36"},"\u00cc":{"d":"21,-257r32,0r0,257r-32,0r0,-257xm28,-329r25,51r-22,0r-39,-51r36,0","w":73},"\u00cd":{"d":"21,-257r32,0r0,257r-32,0r0,-257xm47,-329r35,0r-39,51r-21,0","w":73},"\u00ce":{"d":"23,-329r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm21,-257r32,0r0,257r-32,0r0,-257","w":73},"\u00cf":{"d":"21,-257r32,0r0,257r-32,0r0,-257xm52,-322r28,0r0,36r-28,0r0,-36xm-6,-322r28,0r0,36r-28,0r0,-36","w":73},"\u00d0":{"d":"150,-128v0,-53,-6,-104,-61,-103r-33,0r0,85r48,0r0,24r-48,0r0,96r33,0v54,0,61,-50,61,-102xm183,-129v-2,69,-17,129,-87,129r-72,0r0,-122r-21,0r0,-24r21,0r0,-111r69,0v75,-2,91,54,90,128","w":200},"\u00d1":{"d":"80,-323v20,2,49,29,53,-2r19,0v-1,22,-10,40,-31,40v-22,0,-49,-29,-55,2r-20,0v1,-22,13,-37,34,-40xm21,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0r0,-257","w":200},"\u00d2":{"d":"150,-129v0,-50,0,-107,-50,-107v-50,0,-50,57,-50,107v0,51,0,108,50,108v50,0,50,-57,50,-108xm17,-129v0,-70,13,-133,83,-133v70,0,83,63,83,133v0,70,-13,134,-83,134v-70,0,-83,-64,-83,-134xm90,-329r25,51r-22,0r-39,-51r36,0","w":200,"k":{"\u0178":9,"\u0176":9,"\u00dd":9,"Y":9,"X":9}},"\u00d3":{"d":"150,-129v0,-50,0,-107,-50,-107v-50,0,-50,57,-50,107v0,51,0,108,50,108v50,0,50,-57,50,-108xm17,-129v0,-70,13,-133,83,-133v70,0,83,63,83,133v0,70,-13,134,-83,134v-70,0,-83,-64,-83,-134xm111,-329r35,0r-39,51r-21,0","w":200,"k":{"\u0178":9,"\u0176":9,"\u00dd":9,"Y":9,"X":9}},"\u00d4":{"d":"86,-329r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm150,-129v0,-50,0,-107,-50,-107v-50,0,-50,57,-50,107v0,51,0,108,50,108v50,0,50,-57,50,-108xm17,-129v0,-70,13,-133,83,-133v70,0,83,63,83,133v0,70,-13,134,-83,134v-70,0,-83,-64,-83,-134","w":200,"k":{"\u0178":9,"\u0176":9,"\u00dd":9,"Y":9,"X":9}},"\u00d5":{"d":"80,-323v20,2,49,29,53,-2r19,0v-1,22,-10,40,-31,40v-22,0,-49,-29,-55,2r-20,0v1,-22,13,-37,34,-40xm150,-129v0,-50,0,-107,-50,-107v-50,0,-50,57,-50,107v0,51,0,108,50,108v50,0,50,-57,50,-108xm17,-129v0,-70,13,-133,83,-133v70,0,83,63,83,133v0,70,-13,134,-83,134v-70,0,-83,-64,-83,-134","w":200,"k":{"\u0178":9,"\u0176":9,"\u00dd":9,"Y":9,"X":9}},"\u00d6":{"d":"150,-129v0,-50,0,-107,-50,-107v-50,0,-50,57,-50,107v0,51,0,108,50,108v50,0,50,-57,50,-108xm17,-129v0,-70,13,-133,83,-133v70,0,83,63,83,133v0,70,-13,134,-83,134v-70,0,-83,-64,-83,-134xm116,-322r28,0r0,36r-28,0r0,-36xm58,-322r28,0r0,36r-28,0r0,-36","w":200,"k":{"\u0178":9,"\u0176":9,"\u00dd":9,"Y":9,"X":9}},"\u00d7":{"d":"108,-76r-65,65r-15,-15r65,-65r-65,-65r15,-15r65,64r65,-64r15,15r-65,65r65,65r-15,15","w":216},"\u00d8":{"d":"183,-129v-1,70,-13,133,-83,134v-16,0,-29,-3,-40,-10r-9,22r-19,-8r12,-29v-22,-24,-27,-64,-27,-109v1,-70,13,-132,83,-133v16,0,30,3,40,10r9,-21r19,8r-11,27v20,25,26,64,26,109xm100,-21v69,-5,51,-119,42,-181r-70,170v7,7,16,11,28,11xm100,-236v-69,5,-50,119,-42,181r71,-170v-7,-7,-17,-11,-29,-11","w":200},"\u00d9":{"d":"93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81xm83,-329r25,51r-22,0r-39,-51r36,0","w":186},"\u00da":{"d":"93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81xm106,-329r35,0r-39,51r-21,0","w":186},"\u00db":{"d":"80,-329r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81","w":186},"\u00dc":{"d":"93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81xm109,-322r28,0r0,36r-28,0r0,-36xm51,-322r28,0r0,36r-28,0r0,-36","w":186},"\u00dd":{"d":"-1,-257r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101xm96,-329r35,0r-39,51r-21,0","k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":27,"\u014f":27,"\u014d":27,"\u0133":11,"\u012f":11,"\u011b":27,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u0105":27,"\u0104":20,"\u0103":27,"\u0102":20,"\u0101":27,"\u0100":20,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f9":22,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u00de":{"d":"133,-134v0,-43,-34,-51,-80,-47r0,97v47,4,80,-4,80,-50xm166,-133v0,63,-46,80,-113,75r0,58r-32,0r0,-257r32,0r0,50v65,-3,113,8,113,74","w":173},"\u00df":{"d":"81,-236v-28,-1,-33,20,-33,47r0,189r-31,0r0,-184v0,-47,17,-77,64,-76v38,1,62,19,62,59v0,29,-14,48,-38,53v36,3,51,30,51,67v0,53,-25,87,-85,81r0,-26v42,6,54,-21,54,-55v0,-34,-16,-59,-53,-53r0,-24v25,2,42,-13,41,-38v-1,-22,-9,-40,-32,-40"},"\u00e0":{"d":"69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33xm78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v3,18,-1,26,-26,23v-13,-1,-18,-12,-20,-25v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28xm76,-270r25,51r-22,0r-39,-51r36,0","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e1":{"d":"69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33xm78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v3,18,-1,26,-26,23v-13,-1,-18,-12,-20,-25v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28xm93,-270r35,0r-39,51r-21,0","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e2":{"d":"67,-270r27,0r36,51r-28,0r-22,-32r-22,32r-28,0xm69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33xm78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v3,18,-1,26,-26,23v-13,-1,-18,-12,-20,-25v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e3":{"d":"59,-264v20,1,50,30,53,-2r20,0v-1,21,-11,40,-31,40v-23,0,-50,-29,-56,2r-19,0v0,-23,13,-37,33,-40xm69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33xm78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v3,18,-1,26,-26,23v-13,-1,-18,-12,-20,-25v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e4":{"d":"69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33xm78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v3,18,-1,26,-26,23v-13,-1,-18,-12,-20,-25v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28xm95,-263r28,0r0,36r-28,0r0,-36xm37,-263r28,0r0,36r-28,0r0,-36","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e5":{"d":"80,-269v-12,0,-21,9,-21,21v0,11,10,20,21,20v11,0,20,-9,20,-20v0,-11,-9,-21,-20,-21xm80,-213v-20,0,-36,-15,-36,-35v0,-20,16,-36,36,-36v20,0,35,16,35,36v0,19,-16,35,-35,35xm69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33xm78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v3,18,-1,26,-26,23v-13,-1,-18,-12,-20,-25v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e6":{"d":"68,-19v41,0,36,-41,36,-81v-21,15,-66,7,-63,48v1,18,8,33,27,33xm166,-19v25,0,33,-20,33,-44r30,0v-1,38,-21,66,-61,68v-30,1,-44,-16,-52,-35v-10,19,-24,35,-54,35v-61,0,-72,-96,-16,-109v22,-11,58,-4,58,-42v0,-19,-9,-29,-28,-28v-23,1,-32,15,-31,39r-31,0v1,-44,20,-62,64,-63v25,-1,40,11,47,27v7,-16,23,-27,45,-27v55,0,62,50,61,105r-99,0v1,33,0,73,34,74xm167,-174v-28,1,-33,29,-33,57r65,0v1,-30,-3,-57,-32,-57","w":240},"\u00e7":{"d":"87,46v0,-14,-21,-15,-31,-10v-11,-11,8,-21,13,-32v-47,-6,-56,-41,-57,-98v0,-56,12,-104,68,-104v41,0,61,24,62,64r-30,0v-2,-21,-7,-41,-31,-40v-43,2,-38,56,-37,102v1,26,8,53,36,53v26,1,30,-25,32,-48r30,0v-3,39,-19,68,-58,72v-3,5,-11,10,-10,15v21,-3,41,2,39,25v-1,34,-48,36,-74,23v2,-24,48,7,48,-22","w":153,"k":{"\u0177":7,"\u0140":7,"\u013e":7,"\u013c":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"\u00e8":{"d":"82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v-3,38,-22,68,-65,68v-55,-1,-67,-40,-67,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57xm74,-270r25,51r-22,0r-39,-51r36,0","w":159},"\u00e9":{"d":"82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v-3,38,-22,68,-65,68v-55,-1,-67,-40,-67,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57xm96,-270r35,0r-39,51r-21,0","w":159},"\u00ea":{"d":"68,-270r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v-3,38,-22,68,-65,68v-55,-1,-67,-40,-67,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57","w":159},"\u00eb":{"d":"82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v-3,38,-22,68,-65,68v-55,-1,-67,-40,-67,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57xm98,-263r28,0r0,36r-28,0r0,-36xm40,-263r28,0r0,36r-28,0r0,-36","w":159},"\u00ec":{"d":"22,-193r30,0r0,193r-30,0r0,-193xm27,-270r25,51r-22,0r-39,-51r36,0","w":73},"\u00ed":{"d":"22,-193r30,0r0,193r-30,0r0,-193xm47,-270r35,0r-39,51r-21,0","w":73},"\u00ee":{"d":"23,-270r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm22,-193r30,0r0,193r-30,0r0,-193","w":73},"\u00ef":{"d":"22,-193r30,0r0,193r-30,0r0,-193xm52,-263r28,0r0,36r-28,0r0,-36xm-6,-263r28,0r0,36r-28,0r0,-36","w":73},"\u00f0":{"d":"10,-96v-3,-62,32,-114,92,-91v-10,-15,-20,-29,-33,-42r-26,15r-13,-15r25,-15v-9,-9,-17,-16,-28,-24r23,-10r26,22r27,-15r14,15r-26,14v35,34,58,77,58,146v-1,56,-13,101,-69,101v-57,0,-67,-46,-70,-101xm118,-96v0,-35,-3,-73,-39,-73v-35,0,-37,39,-37,73v0,36,1,77,37,77v37,0,39,-40,39,-77","w":159},"\u00f1":{"d":"64,-264v20,2,49,29,53,-2r19,0v-1,21,-10,40,-31,40v-21,0,-50,-30,-55,2r-20,0v2,-21,13,-38,34,-40xm88,-172v-23,1,-38,15,-38,39r0,133r-30,0r0,-193r29,0r0,23v6,-16,26,-28,47,-28v40,-1,52,23,51,61r0,137r-30,0r-1,-145v-1,-17,-10,-27,-28,-27","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u00f2":{"d":"80,5v-57,0,-70,-46,-70,-101v0,-55,13,-102,70,-102v57,0,69,46,69,102v0,56,-13,101,-69,101xm42,-96v0,36,1,77,37,77v37,0,39,-40,39,-77v0,-37,-2,-78,-39,-78v-36,0,-37,42,-37,78xm69,-270r25,51r-22,0r-39,-51r36,0","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u00f3":{"d":"80,5v-57,0,-70,-46,-70,-101v0,-55,13,-102,70,-102v57,0,69,46,69,102v0,56,-13,101,-69,101xm42,-96v0,36,1,77,37,77v37,0,39,-40,39,-77v0,-37,-2,-78,-39,-78v-36,0,-37,42,-37,78xm93,-270r35,0r-39,51r-21,0","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u00f4":{"d":"66,-270r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm80,5v-57,0,-70,-46,-70,-101v0,-55,13,-102,70,-102v57,0,69,46,69,102v0,56,-13,101,-69,101xm42,-96v0,36,1,77,37,77v37,0,39,-40,39,-77v0,-37,-2,-78,-39,-78v-36,0,-37,42,-37,78","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u00f5":{"d":"60,-264v20,0,50,30,53,-2r20,0v-1,21,-11,40,-31,40v-23,0,-50,-29,-56,2r-19,0v2,-21,12,-40,33,-40xm80,5v-57,0,-70,-46,-70,-101v0,-55,13,-102,70,-102v57,0,69,46,69,102v0,56,-13,101,-69,101xm42,-96v0,36,1,77,37,77v37,0,39,-40,39,-77v0,-37,-2,-78,-39,-78v-36,0,-37,42,-37,78","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u00f6":{"d":"80,5v-57,0,-70,-46,-70,-101v0,-55,13,-102,70,-102v57,0,69,46,69,102v0,56,-13,101,-69,101xm42,-96v0,36,1,77,37,77v37,0,39,-40,39,-77v0,-37,-2,-78,-39,-78v-36,0,-37,42,-37,78xm95,-263r28,0r0,36r-28,0r0,-36xm37,-263r28,0r0,36r-28,0r0,-36","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u00f7":{"d":"108,5v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20xm108,-147v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20xm17,-103r182,0r0,24r-182,0r0,-24","w":216},"\u00f8":{"d":"126,-180v47,54,28,224,-76,179r-10,22r-17,-7r12,-27v-49,-54,-30,-224,75,-179r10,-21r17,7xm79,-174v-49,4,-39,86,-31,129r52,-122v-6,-5,-13,-7,-21,-7xm60,-26v49,28,67,-42,56,-97v-1,-9,-2,-17,-4,-24","w":159},"\u00f9":{"d":"78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27xm71,-270r25,51r-22,0r-39,-51r36,0"},"\u00fa":{"d":"78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27xm95,-270r35,0r-39,51r-21,0"},"\u00fb":{"d":"70,-270r28,0r36,51r-29,0r-21,-32r-22,32r-29,0xm78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27"},"\u00fc":{"d":"78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27xm98,-263r28,0r0,36r-28,0r0,-36xm40,-263r28,0r0,36r-28,0r0,-36"},"\u00fd":{"d":"4,-193r33,0r39,155r33,-155r34,0r-62,225v-7,25,-33,36,-68,30r0,-23v29,7,44,-11,47,-35xm89,-270r35,0r-39,51r-21,0","w":146,"k":{"\u0105":-4,"\u0103":-4,"\u0101":-4,"\u00e5":-4,"\u00e4":-4,"\u00e3":-4,"\u00e2":-4,"\u00e1":-4,"\u00e0":-4,"a":-4,".":20,",":20}},"\u00fe":{"d":"91,5v-21,1,-33,-14,-41,-27r0,85r-30,0r0,-320r30,0r1,86v5,-16,20,-27,40,-27v52,0,63,45,63,98v0,51,-12,103,-63,105xm87,-172v-37,0,-39,39,-39,76v0,35,3,75,39,75v35,0,35,-41,35,-79v0,-36,-2,-72,-35,-72"},"\u00ff":{"d":"4,-193r33,0r39,155r33,-155r34,0r-62,225v-7,25,-33,36,-68,30r0,-23v29,7,44,-11,47,-35xm91,-263r28,0r0,36r-28,0r0,-36xm33,-263r28,0r0,36r-28,0r0,-36","w":146,"k":{"\u0105":-4,"\u0103":-4,"\u0101":-4,"\u00e5":-4,"\u00e4":-4,"\u00e3":-4,"\u00e2":-4,"\u00e1":-4,"\u00e0":-4,"a":-4,".":20,",":20}},"\u0100":{"d":"56,-96r69,0r-34,-125xm71,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm45,-314r95,0r0,20r-95,0r0,-20","w":180,"k":{"\u021a":20,"\u0178":20,"\u0176":20,"\u0174":7,"\u0164":20,"\u0162":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u0101":{"d":"69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33xm78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v3,18,-1,26,-26,23v-13,-1,-18,-12,-20,-25v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28xm33,-255r95,0r0,20r-95,0r0,-20","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u0102":{"d":"138,-320v5,51,-79,60,-88,13v-1,-5,-2,-9,-2,-13r17,0v2,30,54,31,56,0r17,0xm56,-96r69,0r-34,-125xm71,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0","w":180,"k":{"\u021a":20,"\u0178":20,"\u0176":20,"\u0174":7,"\u0164":20,"\u0162":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u0103":{"d":"125,-268v6,52,-80,63,-88,13v-1,-5,-2,-9,-2,-13r17,0v0,31,55,31,55,0r18,0xm69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33xm78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v3,18,-1,26,-26,23v-13,-1,-18,-12,-20,-25v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u0104":{"d":"176,66v-23,14,-71,16,-71,-18v0,-18,15,-34,45,-48r-19,-71r-82,0r-19,71r-33,0r74,-257r43,0r69,257r-14,0v-17,14,-35,21,-38,45v-2,20,27,14,39,8xm56,-96r69,0r-34,-125","w":180,"k":{"\u021a":20,"\u0178":20,"\u0176":20,"\u0174":7,"\u0164":20,"\u0162":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u0105":{"d":"78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v-2,9,6,24,-7,22v-18,11,-35,22,-37,44v-1,20,27,14,38,8r6,13v-22,13,-71,17,-70,-18v0,-18,13,-34,41,-47v-12,-1,-14,-13,-17,-24v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28xm69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u0106":{"d":"100,-21v37,0,44,-31,45,-67r33,0v-3,53,-23,92,-78,93v-71,0,-83,-64,-83,-134v1,-70,13,-132,83,-133v53,-1,74,30,76,80r-33,0v-2,-30,-10,-55,-43,-54v-50,2,-50,57,-50,107v0,51,0,108,50,108xm115,-329r35,0r-39,51r-21,0","w":186},"\u0107":{"d":"12,-94v0,-56,12,-104,68,-104v41,0,61,24,62,64r-30,0v-2,-21,-7,-41,-31,-40v-43,2,-38,56,-37,102v1,26,8,53,36,53v26,1,30,-25,32,-48r30,0v-2,41,-21,72,-64,72v-55,0,-65,-40,-66,-99xm95,-270r35,0r-39,51r-21,0","w":153,"k":{"\u0177":7,"\u0140":7,"\u013e":7,"\u013c":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"\u0108":{"d":"87,-329r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm100,-21v37,0,44,-31,45,-67r33,0v-3,53,-23,92,-78,93v-71,0,-83,-64,-83,-134v1,-70,13,-132,83,-133v53,-1,74,30,76,80r-33,0v-2,-30,-10,-55,-43,-54v-50,2,-50,57,-50,107v0,51,0,108,50,108","w":186},"\u0109":{"d":"68,-270r27,0r36,51r-28,0r-22,-32r-22,32r-28,0xm12,-94v0,-56,12,-104,68,-104v41,0,61,24,62,64r-30,0v-2,-21,-7,-41,-31,-40v-43,2,-38,56,-37,102v1,26,8,53,36,53v26,1,30,-25,32,-48r30,0v-2,41,-21,72,-64,72v-55,0,-65,-40,-66,-99","w":153,"k":{"\u0177":7,"\u0140":7,"\u013e":7,"\u013c":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"\u010a":{"d":"86,-322r28,0r0,36r-28,0r0,-36xm100,-21v37,0,44,-31,45,-67r33,0v-3,53,-23,92,-78,93v-71,0,-83,-64,-83,-134v1,-70,13,-132,83,-133v53,-1,74,30,76,80r-33,0v-2,-30,-10,-55,-43,-54v-50,2,-50,57,-50,107v0,51,0,108,50,108","w":186},"\u010b":{"d":"67,-263r28,0r0,36r-28,0r0,-36xm12,-94v0,-56,12,-104,68,-104v41,0,61,24,62,64r-30,0v-2,-21,-7,-41,-31,-40v-43,2,-38,56,-37,102v1,26,8,53,36,53v26,1,30,-25,32,-48r30,0v-2,41,-21,72,-64,72v-55,0,-65,-40,-66,-99","w":153,"k":{"\u0177":7,"\u0140":7,"\u013e":7,"\u013c":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"\u010c":{"d":"113,-278r-27,0r-36,-51r28,0r22,31r22,-31r28,0xm100,-21v37,0,44,-31,45,-67r33,0v-3,53,-23,92,-78,93v-71,0,-83,-64,-83,-134v1,-70,13,-132,83,-133v53,-1,74,30,76,80r-33,0v-2,-30,-10,-55,-43,-54v-50,2,-50,57,-50,107v0,51,0,108,50,108","w":186},"\u010d":{"d":"93,-219r-28,0r-36,-51r28,0r22,31r22,-31r28,0xm12,-94v0,-56,12,-104,68,-104v41,0,61,24,62,64r-30,0v-2,-21,-7,-41,-31,-40v-43,2,-38,56,-37,102v1,26,8,53,36,53v26,1,30,-25,32,-48r30,0v-2,41,-21,72,-64,72v-55,0,-65,-40,-66,-99","w":153,"k":{"\u0177":7,"\u0140":7,"\u013e":7,"\u013c":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"\u010e":{"d":"104,-278r-28,0r-36,-51r28,0r22,31r22,-31r28,0xm183,-129v-2,69,-17,129,-87,129r-72,0r0,-257r69,0v75,-2,91,54,90,128xm150,-128v0,-53,-6,-104,-61,-103r-33,0r0,205r33,0v54,0,61,-50,61,-102","w":200,"k":{"\u0178":7,"\u0176":7,"\u00dd":7,"Y":7}},"\u010f":{"d":"172,-257r31,0r-21,51r-20,0xm73,-198v21,-1,37,14,44,27r0,-86r30,0r0,257r-29,0v-1,-7,2,-18,-1,-24v-5,17,-20,29,-41,29v-53,0,-62,-47,-63,-101v-1,-52,9,-101,60,-102xm80,-172v-36,0,-36,39,-36,76v0,36,1,75,36,75v37,0,38,-38,38,-75v0,-37,-3,-76,-38,-76","w":188,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0110":{"d":"150,-128v0,-53,-6,-104,-61,-103r-33,0r0,85r48,0r0,24r-48,0r0,96r33,0v54,0,61,-50,61,-102xm183,-129v-2,69,-17,129,-87,129r-72,0r0,-122r-21,0r0,-24r21,0r0,-111r69,0v75,-2,91,54,90,128","w":200},"\u0111":{"d":"73,-198v21,-1,37,14,44,27r0,-42r-37,0r0,-17r37,0r0,-27r30,0r0,27r28,0r0,17r-28,0r0,213r-29,0v-1,-7,2,-18,-1,-24v-5,17,-20,29,-41,29v-53,0,-62,-47,-63,-101v-1,-52,9,-101,60,-102xm80,-172v-36,0,-36,39,-36,76v0,36,1,75,36,75v37,0,38,-38,38,-75v0,-37,-3,-76,-38,-76","w":172},"\u0112":{"d":"21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0r0,-257xm41,-314r95,0r0,20r-95,0r0,-20"},"\u0113":{"d":"82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v-3,38,-22,68,-65,68v-55,-1,-67,-40,-67,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57xm35,-255r95,0r0,20r-95,0r0,-20","w":159},"\u0114":{"d":"131,-327v6,52,-79,62,-88,13v-1,-5,-2,-9,-2,-13r18,0v0,31,54,31,55,0r17,0xm21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0r0,-257"},"\u0115":{"d":"128,-268v6,52,-80,63,-88,13v-1,-5,-2,-9,-2,-13r17,0v1,31,55,31,56,0r17,0xm82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v-3,38,-22,68,-65,68v-55,-1,-67,-40,-67,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57","w":159},"\u0116":{"d":"74,-322r28,0r0,36r-28,0r0,-36xm21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0r0,-257"},"\u0117":{"d":"68,-263r28,0r0,36r-28,0r0,-36xm82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v-3,38,-22,68,-65,68v-55,-1,-67,-40,-67,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57","w":159},"\u0118":{"d":"158,66v-23,14,-71,16,-71,-18v0,-18,15,-34,45,-48r-111,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-7,0v-17,14,-35,21,-38,45v-2,20,27,14,39,8"},"\u0119":{"d":"82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v3,61,-66,59,-74,108v-3,20,27,14,38,8r6,13v-22,13,-71,17,-70,-18v0,-15,11,-30,33,-43v-53,-2,-65,-40,-65,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57","w":159},"\u011a":{"d":"101,-278r-28,0r-36,-51r29,0r21,31r22,-31r29,0xm21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0r0,-257"},"\u011b":{"d":"96,-219r-28,0r-36,-51r28,0r22,31r22,-31r28,0xm82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v-3,38,-22,68,-65,68v-55,-1,-67,-40,-67,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57","w":159},"\u011c":{"d":"87,-329r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm100,-262v49,0,76,27,76,76r-33,0v-2,-29,-12,-50,-43,-50v-50,2,-50,57,-50,107v0,51,0,108,50,108v42,0,47,-44,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-6,21,-29,41,-56,40v-69,-1,-79,-65,-79,-134v0,-70,13,-133,83,-133","w":193},"\u011d":{"d":"72,-270r27,0r36,51r-28,0r-22,-32r-22,32r-28,0xm76,-198v22,0,36,14,42,30r0,-25r29,0r0,181v11,72,-73,102,-119,58v-6,-7,-9,-16,-10,-28r30,0v1,17,14,24,31,24v39,0,41,-34,37,-68v-6,15,-24,26,-44,26v-49,-2,-58,-47,-59,-96v0,-54,11,-102,63,-102xm118,-96v0,-37,-3,-76,-38,-76v-36,0,-36,39,-36,76v0,32,3,70,35,70v36,0,39,-34,39,-70","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u011e":{"d":"147,-327v5,52,-79,62,-89,13v-1,-5,-1,-9,-1,-13r17,0v1,31,54,31,55,0r18,0xm100,-262v49,0,76,27,76,76r-33,0v-2,-29,-12,-50,-43,-50v-50,2,-50,57,-50,107v0,51,0,108,50,108v42,0,47,-44,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-6,21,-29,41,-56,40v-69,-1,-79,-65,-79,-134v0,-70,13,-133,83,-133","w":193},"\u011f":{"d":"132,-268v6,52,-79,62,-88,13v-1,-5,-2,-9,-2,-13r18,0v0,16,13,22,27,24v14,-2,28,-8,28,-24r17,0xm76,-198v22,0,36,14,42,30r0,-25r29,0r0,181v11,72,-73,102,-119,58v-6,-7,-9,-16,-10,-28r30,0v1,17,14,24,31,24v39,0,41,-34,37,-68v-6,15,-24,26,-44,26v-49,-2,-58,-47,-59,-96v0,-54,11,-102,63,-102xm118,-96v0,-37,-3,-76,-38,-76v-36,0,-36,39,-36,76v0,32,3,70,35,70v36,0,39,-34,39,-70","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0120":{"d":"88,-322r28,0r0,36r-28,0r0,-36xm100,-262v49,0,76,27,76,76r-33,0v-2,-29,-12,-50,-43,-50v-50,2,-50,57,-50,107v0,51,0,108,50,108v42,0,47,-44,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-6,21,-29,41,-56,40v-69,-1,-79,-65,-79,-134v0,-70,13,-133,83,-133","w":193},"\u0121":{"d":"72,-263r28,0r0,36r-28,0r0,-36xm76,-198v22,0,36,14,42,30r0,-25r29,0r0,181v11,72,-73,102,-119,58v-6,-7,-9,-16,-10,-28r30,0v1,17,14,24,31,24v39,0,41,-34,37,-68v-6,15,-24,26,-44,26v-49,-2,-58,-47,-59,-96v0,-54,11,-102,63,-102xm118,-96v0,-37,-3,-76,-38,-76v-36,0,-36,39,-36,76v0,32,3,70,35,70v36,0,39,-34,39,-70","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0122":{"d":"84,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm100,-262v49,0,76,27,76,76r-33,0v-2,-29,-12,-50,-43,-50v-50,2,-50,57,-50,107v0,51,0,108,50,108v42,0,47,-44,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-6,21,-29,41,-56,40v-69,-1,-79,-65,-79,-134v0,-70,13,-133,83,-133","w":193},"\u0123":{"d":"97,-224r-30,0v0,-30,-4,-59,28,-58v2,15,-13,9,-12,25r14,0r0,33xm76,-198v22,0,36,14,42,30r0,-25r29,0r0,181v11,72,-73,102,-119,58v-6,-7,-9,-16,-10,-28r30,0v1,17,14,24,31,24v39,0,41,-34,37,-68v-6,15,-24,26,-44,26v-49,-2,-58,-47,-59,-96v0,-54,11,-102,63,-102xm118,-96v0,-37,-3,-76,-38,-76v-36,0,-36,39,-36,76v0,32,3,70,35,70v36,0,39,-34,39,-70","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0124":{"d":"84,-329r27,0r36,51r-28,0r-22,-32r-22,32r-28,0xm172,0r-31,0r0,-124r-88,0r0,124r-32,0r0,-257r32,0r0,105r88,0r0,-105r31,0r0,257","w":193},"\u0125":{"d":"70,-329r28,0r36,51r-29,0r-21,-32r-22,32r-29,0xm88,-172v-23,1,-38,15,-38,39r0,133r-30,0r0,-257r30,0r1,86v15,-37,95,-37,95,15r1,156r-30,0r-1,-145v-1,-17,-10,-27,-28,-27"},"\u0126":{"d":"172,0r-31,0r0,-120r-88,0r0,120r-32,0r0,-257r32,0r0,64r88,0r0,-64r31,0r0,257xm141,-148r0,-27r-88,0r0,27r88,0","w":193},"\u0127":{"d":"94,-172v-66,0,-30,111,-39,172r-30,0r0,-213r-26,0r0,-17r26,0r0,-27r30,0r0,27r39,0r0,17r-39,0v1,13,-2,31,1,42v8,-16,25,-26,47,-27v37,-1,49,22,49,61r0,137r-30,0r0,-145v-2,-15,-10,-27,-28,-27","w":172},"\u0128":{"d":"17,-323v20,1,50,30,53,-2r20,0v-1,21,-11,40,-31,40v-23,0,-50,-29,-56,2r-19,0v0,-23,13,-37,33,-40xm21,-257r32,0r0,257r-32,0r0,-257","w":73},"\u0129":{"d":"17,-264v20,1,50,30,53,-2r20,0v-1,21,-11,40,-31,40v-23,0,-50,-29,-56,2r-19,0v0,-23,13,-37,33,-40xm22,-193r30,0r0,193r-30,0r0,-193","w":73},"\u012a":{"d":"21,-257r32,0r0,257r-32,0r0,-257xm-11,-314r95,0r0,20r-95,0r0,-20","w":73},"\u012b":{"d":"22,-193r30,0r0,193r-30,0r0,-193xm-11,-255r95,0r0,20r-95,0r0,-20","w":73},"\u012e":{"d":"59,66v-19,14,-60,16,-60,-18v0,-18,12,-34,37,-48r-15,0r0,-257r32,0r0,257v-15,14,-30,21,-32,45v-1,19,22,15,32,8","w":73},"\u012f":{"d":"58,66v-19,14,-61,15,-61,-18v0,-18,13,-34,38,-48r-13,0r0,-193r30,0r0,193v-16,14,-31,22,-33,45v-2,19,23,14,34,8xm22,-257r30,0r0,35r-30,0r0,-35","w":73},"\u0130":{"d":"23,-322r28,0r0,36r-28,0r0,-36xm21,-257r32,0r0,257r-32,0r0,-257","w":73},"\u0131":{"d":"22,-193r30,0r0,193r-30,0r0,-193","w":73},"\u0134":{"d":"102,-329r27,0r36,51r-28,0r-22,-32r-22,32r-28,0xm68,-21v31,0,33,-24,33,-54r0,-182r31,0r0,183v2,50,-16,79,-64,79v-46,0,-64,-30,-60,-80r30,0v-1,29,0,54,30,54","w":153},"\u0135":{"d":"-8,39v21,6,30,-7,30,-31r0,-201r30,0r0,212v1,37,-22,51,-60,46r0,-26xm22,-270r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":73},"\u0136":{"d":"77,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm21,-257r32,0r0,125r89,-125r35,0r-77,107r84,150r-35,0r-70,-124r-26,37r0,87r-32,0r0,-257","w":180,"k":{"\u0177":4,"\u0173":7,"\u0171":7,"\u016f":7,"\u016d":7,"\u016b":7,"\u0169":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u00ff":4,"\u00fd":4,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"y":4,"u":7,"o":7}},"\u0137":{"d":"69,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm164,0r-35,0r-54,-95r-25,30r0,65r-30,0r0,-257r30,0r1,153r67,-89r36,0r-59,73","w":159},"\u0139":{"d":"21,-257r32,0r0,229r104,0r0,28r-136,0r0,-257xm50,-329r35,0r-39,51r-21,0","w":159,"k":{"\u021a":34,"\u0178":33,"\u0177":13,"\u0176":33,"\u0174":27,"\u0164":34,"\u0162":34,"\u00ff":13,"\u00fd":13,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":34}},"\u013a":{"d":"22,-257r30,0r0,257r-30,0r0,-257xm47,-329r35,0r-39,51r-21,0","w":73,"k":{"\u0175":-4,"w":-4}},"\u013b":{"d":"71,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm21,-257r32,0r0,229r104,0r0,28r-136,0r0,-257","w":159,"k":{"\u021a":34,"\u0178":33,"\u0177":13,"\u0176":33,"\u0174":27,"\u0164":34,"\u0162":34,"\u00ff":13,"\u00fd":13,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":34}},"\u013c":{"d":"22,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm22,-257r30,0r0,257r-30,0r0,-257","w":73,"k":{"\u0175":-4,"w":-4}},"\u013d":{"d":"89,-257r31,0r-21,51r-19,0xm21,-257r32,0r0,229r104,0r0,28r-136,0r0,-257","w":159,"k":{"\u021a":34,"\u0178":33,"\u0177":13,"\u0176":33,"\u0174":27,"\u0164":34,"\u0162":34,"\u00ff":13,"\u00fd":13,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":34}},"\u013e":{"d":"76,-257r32,0r-22,51r-19,0xm22,-257r30,0r0,257r-30,0r0,-257","w":93,"k":{"\u0175":-4,"w":-4}},"\u013f":{"d":"85,-193r28,0r0,36r-28,0r0,-36xm21,-257r32,0r0,229r104,0r0,28r-136,0r0,-257","w":159,"k":{"\u021a":34,"\u0178":33,"\u0177":13,"\u0176":33,"\u0174":27,"\u0164":34,"\u0162":34,"\u00ff":13,"\u00fd":13,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":34}},"\u0140":{"d":"72,-193r28,0r0,36r-28,0r0,-36xm22,-257r30,0r0,257r-30,0r0,-257","w":105,"k":{"\u0175":-4,"w":-4}},"\u0141":{"d":"-3,-97r24,-17r0,-143r32,0r0,121r69,-50r0,25r-69,50r0,83r104,0r0,28r-136,0r0,-88r-24,17r0,-26","w":159},"\u0142":{"d":"22,-99r-22,23r0,-28r22,-23r0,-130r30,0r0,98r21,-23r0,28r-21,23r0,131r-30,0r0,-99","w":73},"\u0143":{"d":"21,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0r0,-257xm113,-329r35,0r-39,51r-21,0","w":200},"\u0144":{"d":"88,-172v-23,1,-38,15,-38,39r0,133r-30,0r0,-193r29,0r0,23v6,-16,26,-28,47,-28v40,-1,52,23,51,61r0,137r-30,0r-1,-145v-1,-17,-10,-27,-28,-27xm93,-270r35,0r-39,51r-21,0","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0145":{"d":"84,18r29,0v1,29,3,58,-28,58v-3,-16,13,-10,13,-25r-14,0r0,-33xm21,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0r0,-257","w":200},"\u0146":{"d":"68,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm88,-172v-23,1,-38,15,-38,39r0,133r-30,0r0,-193r29,0r0,23v6,-16,26,-28,47,-28v40,-1,52,23,51,61r0,137r-30,0r-1,-145v-1,-17,-10,-27,-28,-27","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0147":{"d":"113,-278r-27,0r-36,-51r28,0r22,31r22,-31r28,0xm21,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0r0,-257","w":200},"\u0148":{"d":"96,-219r-27,0r-36,-51r28,0r22,31r22,-31r28,0xm88,-172v-23,1,-38,15,-38,39r0,133r-30,0r0,-193r29,0r0,23v6,-16,26,-28,47,-28v40,-1,52,23,51,61r0,137r-30,0r-1,-145v-1,-17,-10,-27,-28,-27","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u014c":{"d":"150,-129v0,-50,0,-107,-50,-107v-50,0,-50,57,-50,107v0,51,0,108,50,108v50,0,50,-57,50,-108xm17,-129v0,-70,13,-133,83,-133v70,0,83,63,83,133v0,70,-13,134,-83,134v-70,0,-83,-64,-83,-134xm53,-314r95,0r0,20r-95,0r0,-20","w":200,"k":{"\u0178":9,"\u0176":9,"\u00dd":9,"Y":9,"X":9}},"\u014d":{"d":"80,5v-57,0,-70,-46,-70,-101v0,-55,13,-102,70,-102v57,0,69,46,69,102v0,56,-13,101,-69,101xm42,-96v0,36,1,77,37,77v37,0,39,-40,39,-77v0,-37,-2,-78,-39,-78v-36,0,-37,42,-37,78xm33,-255r95,0r0,20r-95,0r0,-20","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u014e":{"d":"145,-327v6,52,-80,63,-88,13v-1,-5,-2,-9,-2,-13r17,0v1,30,54,31,55,0r18,0xm150,-129v0,-50,0,-107,-50,-107v-50,0,-50,57,-50,107v0,51,0,108,50,108v50,0,50,-57,50,-108xm17,-129v0,-70,13,-133,83,-133v70,0,83,63,83,133v0,70,-13,134,-83,134v-70,0,-83,-64,-83,-134","w":200,"k":{"\u0178":9,"\u0176":9,"\u00dd":9,"Y":9,"X":9}},"\u014f":{"d":"125,-268v6,52,-80,63,-88,13v-1,-5,-2,-9,-2,-13r17,0v0,31,55,31,55,0r18,0xm80,5v-57,0,-70,-46,-70,-101v0,-55,13,-102,70,-102v57,0,69,46,69,102v0,56,-13,101,-69,101xm42,-96v0,36,1,77,37,77v37,0,39,-40,39,-77v0,-37,-2,-78,-39,-78v-36,0,-37,42,-37,78","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u0150":{"d":"143,-329r36,0r-39,51r-22,0xm84,-329r36,0r-39,51r-22,0xm150,-129v0,-50,0,-107,-50,-107v-50,0,-50,57,-50,107v0,51,0,108,50,108v50,0,50,-57,50,-108xm17,-129v0,-70,13,-133,83,-133v70,0,83,63,83,133v0,70,-13,134,-83,134v-70,0,-83,-64,-83,-134","w":200,"k":{"\u0178":9,"\u0176":9,"\u00dd":9,"Y":9,"X":9}},"\u0151":{"d":"123,-270r35,0r-39,51r-21,0xm64,-270r35,0r-39,51r-21,0xm80,5v-57,0,-70,-46,-70,-101v0,-55,13,-102,70,-102v57,0,69,46,69,102v0,56,-13,101,-69,101xm42,-96v0,36,1,77,37,77v37,0,39,-40,39,-77v0,-37,-2,-78,-39,-78v-36,0,-37,42,-37,78","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u0152":{"d":"100,-21v67,3,45,-84,48,-146v2,-41,-7,-70,-48,-69v-51,1,-51,56,-51,107v0,51,0,107,51,108xm100,-262v23,0,42,9,50,25r0,-20r124,0r0,28r-94,0r0,81r88,0r0,28r-88,0r0,92r98,0r0,28r-129,0v-1,-7,2,-18,-1,-23v-5,17,-26,28,-48,28v-72,0,-83,-63,-83,-134v0,-70,13,-133,83,-133","w":286},"\u0153":{"d":"182,-174v-28,1,-33,29,-33,57r65,0v1,-30,-3,-57,-32,-57xm82,-19v36,0,38,-41,38,-77v0,-36,-2,-78,-38,-78v-34,0,-36,41,-36,78v0,37,2,77,36,77xm185,-198v55,0,62,50,61,105r-98,0v0,35,0,74,33,74v25,0,33,-20,33,-44r30,0v-1,38,-20,67,-60,68v-27,0,-45,-14,-52,-33v-9,18,-25,33,-50,33v-55,0,-68,-47,-68,-101v0,-54,13,-102,68,-102v29,1,42,12,53,33v8,-18,26,-33,50,-33","w":259},"\u0154":{"d":"137,-190v0,-41,-41,-43,-84,-41r0,91v47,2,84,-1,84,-50xm144,0v-22,-30,15,-117,-49,-114r-42,0r0,114r-32,0r0,-257v71,-1,149,-9,149,64v0,35,-14,57,-40,66v38,3,39,46,39,87v0,19,2,34,14,40r-39,0xm96,-329r35,0r-39,51r-21,0","w":186,"k":{"\u021a":6,"\u0178":6,"\u0176":6,"\u0174":-7,"\u0172":-7,"\u0170":-7,"\u016e":-7,"\u016c":-7,"\u016a":-7,"\u0168":-7,"\u0164":6,"\u0162":6,"\u00dd":6,"\u00dc":-7,"\u00db":-7,"\u00da":-7,"\u00d9":-7,"Y":6,"W":-7,"U":-7,"T":6}},"\u0155":{"d":"106,-166v-32,-7,-57,12,-56,44r0,122r-30,0r0,-193r30,0v1,9,-2,22,1,29v8,-20,26,-40,55,-32r0,30xm53,-270r35,0r-39,51r-21,0","w":106,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"\u0156":{"d":"79,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm137,-190v0,-41,-41,-43,-84,-41r0,91v47,2,84,-1,84,-50xm144,0v-22,-30,15,-117,-49,-114r-42,0r0,114r-32,0r0,-257v71,-1,149,-9,149,64v0,35,-14,57,-40,66v38,3,39,46,39,87v0,19,2,34,14,40r-39,0","w":186,"k":{"\u021a":6,"\u0178":6,"\u0176":6,"\u0174":-7,"\u0172":-7,"\u0170":-7,"\u016e":-7,"\u016c":-7,"\u016a":-7,"\u0168":-7,"\u0164":6,"\u0162":6,"\u00dd":6,"\u00dc":-7,"\u00db":-7,"\u00da":-7,"\u00d9":-7,"Y":6,"W":-7,"U":-7,"T":6}},"\u0157":{"d":"21,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm106,-166v-32,-7,-57,12,-56,44r0,122r-30,0r0,-193r30,0v1,9,-2,22,1,29v8,-20,26,-40,55,-32r0,30","w":106,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"\u0158":{"d":"100,-278r-27,0r-36,-51r28,0r22,32r22,-32r28,0xm137,-190v0,-41,-41,-43,-84,-41r0,91v47,2,84,-1,84,-50xm144,0v-22,-30,15,-117,-49,-114r-42,0r0,114r-32,0r0,-257v71,-1,149,-9,149,64v0,35,-14,57,-40,66v38,3,39,46,39,87v0,19,2,34,14,40r-39,0","w":186,"k":{"\u021a":6,"\u0178":6,"\u0176":6,"\u0174":-7,"\u0172":-7,"\u0170":-7,"\u016e":-7,"\u016c":-7,"\u016a":-7,"\u0168":-7,"\u0164":6,"\u0162":6,"\u00dd":6,"\u00dc":-7,"\u00db":-7,"\u00da":-7,"\u00d9":-7,"Y":6,"W":-7,"U":-7,"T":6}},"\u0159":{"d":"73,-219r-28,0r-36,-51r28,0r22,31r22,-31r28,0xm106,-166v-32,-7,-57,12,-56,44r0,122r-30,0r0,-193r30,0v1,9,-2,22,1,29v8,-20,26,-40,55,-32r0,30","w":106,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"\u015a":{"d":"53,-129v-63,-25,-45,-133,37,-133v50,0,70,24,72,72r-32,0v0,-28,-11,-46,-40,-46v-28,0,-44,14,-42,42v5,75,121,35,121,123v0,88,-137,104,-154,27v-3,-11,-4,-23,-4,-37r32,0v-1,37,9,60,48,60v45,0,59,-61,26,-82v-18,-11,-43,-18,-64,-26xm103,-331r35,0r-39,51r-21,0","w":180},"\u015b":{"d":"13,-145v-6,-58,87,-69,112,-31v7,10,8,25,8,40r-30,0v0,-24,-5,-38,-29,-38v-46,0,-34,52,-1,59v33,7,65,17,65,60v0,66,-94,78,-121,33v-7,-10,-8,-27,-8,-41r30,0v1,25,8,45,36,44v20,-1,34,-10,32,-32v-6,-55,-100,-25,-94,-94xm88,-270r35,0r-39,51r-21,0","w":146,"k":{"\u0175":-4,"w":-4}},"\u015c":{"d":"78,-329r27,0r36,51r-28,0r-22,-32r-22,32r-28,0xm53,-129v-63,-25,-45,-133,37,-133v50,0,70,24,72,72r-32,0v0,-28,-11,-46,-40,-46v-28,0,-44,14,-42,42v5,75,121,35,121,123v0,88,-137,104,-154,27v-3,-11,-4,-23,-4,-37r32,0v-1,37,9,60,48,60v45,0,59,-61,26,-82v-18,-11,-43,-18,-64,-26","w":180},"\u015d":{"d":"62,-270r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm13,-145v-6,-58,87,-69,112,-31v7,10,8,25,8,40r-30,0v0,-24,-5,-38,-29,-38v-46,0,-34,52,-1,59v33,7,65,17,65,60v0,66,-94,78,-121,33v-7,-10,-8,-27,-8,-41r30,0v1,25,8,45,36,44v20,-1,34,-10,32,-32v-6,-55,-100,-25,-94,-94","w":146,"k":{"\u0175":-4,"w":-4}},"\u015e":{"d":"124,45v-1,33,-48,36,-74,23v1,-25,48,7,48,-22v0,-14,-22,-15,-31,-10v-11,-10,8,-21,12,-31v-49,-4,-69,-32,-68,-86r32,0v-1,37,9,60,48,60v45,0,59,-61,26,-82v-40,-24,-105,-23,-103,-88v1,-44,27,-71,76,-71v50,0,70,24,72,72r-32,0v0,-28,-11,-46,-40,-46v-28,0,-45,14,-42,42v7,80,153,33,117,152v-9,29,-34,45,-71,47v-2,5,-10,10,-9,15v21,-3,40,3,39,25","w":180},"\u015f":{"d":"108,45v-1,33,-48,36,-74,23v1,-25,49,7,48,-22v-1,-22,-33,-4,-37,-17r18,-25v-39,-3,-53,-28,-54,-67r30,0v1,25,8,45,36,44v20,-1,34,-10,32,-32v-6,-55,-100,-25,-94,-94v-6,-58,87,-69,112,-31v7,10,8,25,8,40r-30,0v0,-24,-5,-38,-29,-38v-46,0,-34,52,-1,59v33,7,66,17,65,60v-1,38,-23,58,-60,60r-10,15v21,-4,40,3,40,25","w":146,"k":{"\u0175":-4,"w":-4}},"\u0160":{"d":"105,-278r-28,0r-36,-51r28,0r22,31r22,-31r28,0xm53,-129v-63,-25,-45,-133,37,-133v50,0,70,24,72,72r-32,0v0,-28,-11,-46,-40,-46v-28,0,-44,14,-42,42v5,75,121,35,121,123v0,88,-137,104,-154,27v-3,-11,-4,-23,-4,-37r32,0v-1,37,9,60,48,60v45,0,59,-61,26,-82v-18,-11,-43,-18,-64,-26","w":180},"\u0161":{"d":"87,-219r-27,0r-36,-51r28,0r22,31r22,-31r28,0xm13,-145v-6,-58,87,-69,112,-31v7,10,8,25,8,40r-30,0v0,-24,-5,-38,-29,-38v-46,0,-34,52,-1,59v33,7,65,17,65,60v0,66,-94,78,-121,33v-7,-10,-8,-27,-8,-41r30,0v1,25,8,45,36,44v20,-1,34,-10,32,-32v-6,-55,-100,-25,-94,-94","w":146,"k":{"\u0175":-4,"w":-4}},"\u0162":{"d":"68,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm99,0r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0r0,229","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u0133":6,"\u012f":6,"\u011b":27,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u0105":27,"\u0104":20,"\u0103":27,"\u0102":20,"\u0101":27,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u0163":{"d":"43,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm92,0v-34,5,-63,3,-63,-36r0,-133r-28,0r0,-24r28,0r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-2,21,14,23,33,20r0,25","w":93},"\u0164":{"d":"97,-278r-28,0r-36,-51r28,0r22,31r22,-31r28,0xm99,0r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0r0,229","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u0133":6,"\u012f":6,"\u011b":27,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u0105":27,"\u0104":20,"\u0103":27,"\u0102":20,"\u0101":27,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u0165":{"d":"98,-257r31,0r-21,51r-20,0xm92,0v-34,5,-63,3,-63,-36r0,-133r-28,0r0,-24r28,0r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-2,21,14,23,33,20r0,25","w":115},"\u0166":{"d":"99,0r-32,0r0,-157r-41,0r0,-18r41,0r0,-54r-64,0r0,-28r161,0r0,28r-65,0r0,54r40,0r0,18r-40,0r0,157"},"\u0167":{"d":"92,0v-34,5,-63,3,-63,-36r0,-71r-31,0r0,-18r31,0r0,-44r-28,0r0,-24r28,0r0,-56r30,0r0,56r34,0r0,24r-34,0r0,44r36,0r0,18r-36,0v5,34,-18,94,33,82r0,25","w":93},"\u0168":{"d":"74,-323v20,1,49,30,53,-2r20,0v-1,21,-11,40,-31,40v-23,0,-50,-29,-56,2r-19,0v0,-23,13,-37,33,-40xm93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81","w":186},"\u0169":{"d":"64,-264v20,1,50,30,53,-2r20,0v-1,21,-11,40,-31,40v-23,0,-50,-29,-56,2r-19,0v0,-23,13,-37,33,-40xm78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27"},"\u016a":{"d":"93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81xm46,-314r95,0r0,20r-95,0r0,-20","w":186},"\u016b":{"d":"78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27xm36,-255r95,0r0,20r-95,0r0,-20"},"\u016c":{"d":"139,-327v6,52,-80,63,-88,13v-1,-5,-2,-9,-2,-13r17,0v1,31,54,31,55,0r18,0xm93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81","w":186},"\u016d":{"d":"129,-268v5,52,-79,62,-89,13v-1,-5,-1,-9,-1,-13r17,0v0,31,55,31,55,0r18,0xm78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27"},"\u016e":{"d":"94,-322v-12,0,-21,9,-21,21v0,11,10,20,21,20v11,0,20,-9,20,-20v0,-11,-9,-21,-20,-21xm94,-266v-20,0,-36,-15,-36,-35v0,-20,16,-36,36,-36v20,0,35,16,35,36v0,19,-16,35,-35,35xm93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81","w":186},"\u016f":{"d":"84,-269v-12,0,-21,9,-21,21v0,11,10,20,21,20v11,0,20,-9,20,-20v0,-11,-9,-21,-20,-21xm84,-213v-20,0,-36,-15,-36,-35v0,-20,16,-36,36,-36v20,0,35,16,35,36v0,19,-16,35,-35,35xm78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27"},"\u0170":{"d":"137,-329r35,0r-39,51r-21,0xm78,-329r35,0r-39,51r-21,0xm93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81","w":186},"\u0171":{"d":"126,-270r36,0r-39,51r-22,0xm67,-270r36,0r-39,51r-22,0xm78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27"},"\u0172":{"d":"90,5v-50,0,-72,-30,-72,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0v-10,95,35,234,-53,260v-15,10,-32,23,-34,42v-1,20,27,14,38,8r7,13v-22,13,-72,17,-71,-18v0,-16,11,-30,34,-43","w":186},"\u0173":{"d":"78,-21v66,-4,30,-111,39,-172r30,0r0,193r-12,0v-13,12,-30,25,-30,46v0,18,22,14,34,7r6,13v-20,14,-65,16,-63,-17v1,-26,17,-33,36,-49v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27"},"\u0174":{"d":"117,-329r27,0r36,51r-28,0r-22,-32r-22,32r-28,0xm3,-257r32,0r40,210r36,-210r38,0r37,210r39,-210r32,0r-53,257r-38,0r-36,-208r-37,208r-39,0","w":259,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u011b":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u0105":6,"\u0104":6,"\u0103":6,"\u0102":6,"\u0101":6,"\u0100":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"\u0175":{"d":"104,-270r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm4,-193r31,0r32,158r33,-158r35,0r33,158r30,-158r32,0r-46,193r-33,0r-35,-158r-32,158r-35,0","w":233,"k":{".":13,",":13}},"\u0176":{"d":"69,-329r28,0r36,51r-28,0r-22,-32r-22,32r-28,0xm-1,-257r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101","k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":27,"\u014f":27,"\u014d":27,"\u0133":11,"\u012f":11,"\u011b":27,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u0105":27,"\u0104":20,"\u0103":27,"\u0102":20,"\u0101":27,"\u0100":20,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f9":22,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u0177":{"d":"62,-270r27,0r36,51r-28,0r-22,-32r-22,32r-28,0xm4,-193r33,0r39,155r33,-155r34,0r-62,225v-7,25,-33,36,-68,30r0,-23v29,7,44,-11,47,-35","w":146,"k":{"\u0105":-4,"\u0103":-4,"\u0101":-4,"\u00e5":-4,"\u00e4":-4,"\u00e3":-4,"\u00e2":-4,"\u00e1":-4,"\u00e0":-4,"a":-4,".":20,",":20}},"\u0178":{"d":"-1,-257r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101xm98,-322r28,0r0,36r-28,0r0,-36xm40,-322r28,0r0,36r-28,0r0,-36","k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":27,"\u014f":27,"\u014d":27,"\u0133":11,"\u012f":11,"\u011b":27,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u0105":27,"\u0104":20,"\u0103":27,"\u0102":20,"\u0101":27,"\u0100":20,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f9":22,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u0179":{"d":"8,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0r0,-27xm98,-329r35,0r-39,51r-21,0"},"\u017a":{"d":"14,-193r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0r0,-26xm84,-270r35,0r-39,51r-21,0","w":140},"\u017b":{"d":"70,-322r28,0r0,36r-28,0r0,-36xm8,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0r0,-27"},"\u017c":{"d":"57,-263r28,0r0,36r-28,0r0,-36xm14,-193r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0r0,-26","w":140},"\u017d":{"d":"98,-278r-28,0r-36,-51r28,0r22,31r22,-31r28,0xm8,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0r0,-27"},"\u017e":{"d":"85,-219r-28,0r-36,-51r28,0r22,31r22,-31r28,0xm14,-193r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0r0,-26","w":140},"\u0192":{"d":"-6,62v4,-13,0,-30,23,-22v20,-1,25,-15,28,-33r28,-144r-37,0r4,-21r37,0v9,-53,16,-112,89,-98v-4,10,2,28,-17,23v-39,-1,-32,44,-41,75r39,0r-4,21r-39,0v-17,61,-14,143,-48,187v-10,14,-38,15,-62,12","w":172},"\u0218":{"d":"75,18r29,0v1,29,3,58,-28,58v-3,-16,13,-10,13,-25r-14,0r0,-33xm53,-129v-63,-25,-45,-133,37,-133v50,0,70,24,72,72r-32,0v0,-28,-11,-46,-40,-46v-28,0,-44,14,-42,42v5,75,121,35,121,123v0,88,-137,104,-154,27v-3,-11,-4,-23,-4,-37r32,0v-1,37,9,60,48,60v45,0,59,-61,26,-82v-18,-11,-43,-18,-64,-26","w":180},"\u0219":{"d":"59,18r30,0v1,30,3,58,-29,58r0,-10v8,-2,13,-4,13,-15r-14,0r0,-33xm13,-145v-6,-58,87,-69,112,-31v7,10,8,25,8,40r-30,0v0,-24,-5,-38,-29,-38v-46,0,-34,52,-1,59v33,7,65,17,65,60v0,66,-94,78,-121,33v-7,-10,-8,-27,-8,-41r30,0v1,25,8,45,36,44v20,-1,34,-10,32,-32v-6,-55,-100,-25,-94,-94","w":146,"k":{"\u0175":-4,"w":-4}},"\u021a":{"d":"68,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm99,0r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0r0,229","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u0133":6,"\u012f":6,"\u011b":27,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u0105":27,"\u0104":20,"\u0103":27,"\u0102":20,"\u0101":27,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u021b":{"d":"43,18r30,0v1,29,3,58,-28,58v-3,-16,13,-9,12,-25r-14,0r0,-33xm92,0v-34,5,-63,3,-63,-36r0,-133r-28,0r0,-24r28,0r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-2,21,14,23,33,20r0,25","w":93}}});
;

(function ($) {
  Drupal.Panels = {};

  Drupal.Panels.autoAttach = function() {
    if ($.browser.msie) {
      // If IE, attach a hover event so we can see our admin links.
      $("div.panel-pane").hover(
        function() {
          $('div.panel-hide', this).addClass("panel-hide-hover"); return true;
        },
        function() {
          $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
        }
      );
      $("div.admin-links").hover(
        function() {
          $(this).addClass("admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("admin-links-hover"); return true;
        }
      );
    }
  };

  $(Drupal.Panels.autoAttach);
})(jQuery);
;
/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.9995 (09-AUG-2011)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.3.2 or later
 */
;(function($) {

var ver = '2.9995';

// if $.support is not defined (pre jQuery 1.3) add what I need
if ($.support == undefined) {
	$.support = {
		opacity: !($.browser.msie)
	};
}

function debug(s) {
	$.fn.cycle.debug && log(s);
}		
function log() {
	window.console && console.log && console.log('[cycle] ' + Array.prototype.join.call(arguments,' '));
}
$.expr[':'].paused = function(el) {
	return el.cyclePause;
}


// the options arg can be...
//   a number  - indicates an immediate transition should occur to the given slide index
//   a string  - 'pause', 'resume', 'toggle', 'next', 'prev', 'stop', 'destroy' or the name of a transition effect (ie, 'fade', 'zoom', etc)
//   an object - properties to control the slideshow
//
// the arg2 arg can be...
//   the name of an fx (only used in conjunction with a numeric value for 'options')
//   the value true (only used in first arg == 'resume') and indicates
//	 that the resume should occur immediately (not wait for next timeout)

$.fn.cycle = function(options, arg2) {
	var o = { s: this.selector, c: this.context };

	// in 1.3+ we can fix mistakes with the ready state
	if (this.length === 0 && options != 'stop') {
		if (!$.isReady && o.s) {
			log('DOM not ready, queuing slideshow');
			$(function() {
				$(o.s,o.c).cycle(options,arg2);
			});
			return this;
		}
		// is your DOM ready?  http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
		log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
		return this;
	}

	// iterate the matched nodeset
	return this.each(function() {
		var opts = handleArguments(this, options, arg2);
		if (opts === false)
			return;

		opts.updateActivePagerLink = opts.updateActivePagerLink || $.fn.cycle.updateActivePagerLink;
		
		// stop existing slideshow for this container (if there is one)
		if (this.cycleTimeout)
			clearTimeout(this.cycleTimeout);
		this.cycleTimeout = this.cyclePause = 0;

		var $cont = $(this);
		var $slides = opts.slideExpr ? $(opts.slideExpr, this) : $cont.children();
		var els = $slides.get();

		var opts2 = buildOptions($cont, $slides, els, opts, o);
		if (opts2 === false)
			return;

		if (els.length < 2) {
			log('terminating; too few slides: ' + els.length);
			return;
		}

		var startTime = opts2.continuous ? 10 : getTimeout(els[opts2.currSlide], els[opts2.nextSlide], opts2, !opts2.backwards);

		// if it's an auto slideshow, kick it off
		if (startTime) {
			startTime += (opts2.delay || 0);
			if (startTime < 10)
				startTime = 10;
			debug('first timeout: ' + startTime);
			this.cycleTimeout = setTimeout(function(){go(els,opts2,0,!opts.backwards)}, startTime);
		}
	});
};

function triggerPause(cont, byHover, onPager) {
	var opts = $(cont).data('cycle.opts');
	var paused = !!cont.cyclePause;
	if (paused && opts.paused)
		opts.paused(cont, opts, byHover, onPager);
	else if (!paused && opts.resumed)
		opts.resumed(cont, opts, byHover, onPager);
}

// process the args that were passed to the plugin fn
function handleArguments(cont, options, arg2) {
	if (cont.cycleStop == undefined)
		cont.cycleStop = 0;
	if (options === undefined || options === null)
		options = {};
	if (options.constructor == String) {
		switch(options) {
		case 'destroy':
		case 'stop':
			var opts = $(cont).data('cycle.opts');
			if (!opts)
				return false;
			cont.cycleStop++; // callbacks look for change
			if (cont.cycleTimeout)
				clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
			opts.elements && $(opts.elements).stop();
			$(cont).removeData('cycle.opts');
			if (options == 'destroy')
				destroy(opts);
			return false;
		case 'toggle':
			cont.cyclePause = (cont.cyclePause === 1) ? 0 : 1;
			checkInstantResume(cont.cyclePause, arg2, cont);
			triggerPause(cont);
			return false;
		case 'pause':
			cont.cyclePause = 1;
			triggerPause(cont);
			return false;
		case 'resume':
			cont.cyclePause = 0;
			checkInstantResume(false, arg2, cont);
			triggerPause(cont);
			return false;
		case 'prev':
		case 'next':
			var opts = $(cont).data('cycle.opts');
			if (!opts) {
				log('options not found, "prev/next" ignored');
				return false;
			}
			$.fn.cycle[options](opts);
			return false;
		default:
			options = { fx: options };
		};
		return options;
	}
	else if (options.constructor == Number) {
		// go to the requested slide
		var num = options;
		options = $(cont).data('cycle.opts');
		if (!options) {
			log('options not found, can not advance slide');
			return false;
		}
		if (num < 0 || num >= options.elements.length) {
			log('invalid slide index: ' + num);
			return false;
		}
		options.nextSlide = num;
		if (cont.cycleTimeout) {
			clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
		}
		if (typeof arg2 == 'string')
			options.oneTimeFx = arg2;
		go(options.elements, options, 1, num >= options.currSlide);
		return false;
	}
	return options;
	
	function checkInstantResume(isPaused, arg2, cont) {
		if (!isPaused && arg2 === true) { // resume now!
			var options = $(cont).data('cycle.opts');
			if (!options) {
				log('options not found, can not resume');
				return false;
			}
			if (cont.cycleTimeout) {
				clearTimeout(cont.cycleTimeout);
				cont.cycleTimeout = 0;
			}
			go(options.elements, options, 1, !options.backwards);
		}
	}
};

function removeFilter(el, opts) {
	if (!$.support.opacity && opts.cleartype && el.style.filter) {
		try { el.style.removeAttribute('filter'); }
		catch(smother) {} // handle old opera versions
	}
};

// unbind event handlers
function destroy(opts) {
	if (opts.next)
		$(opts.next).unbind(opts.prevNextEvent);
	if (opts.prev)
		$(opts.prev).unbind(opts.prevNextEvent);
	
	if (opts.pager || opts.pagerAnchorBuilder)
		$.each(opts.pagerAnchors || [], function() {
			this.unbind().remove();
		});
	opts.pagerAnchors = null;
	if (opts.destroy) // callback
		opts.destroy(opts);
};

// one-time initialization
function buildOptions($cont, $slides, els, options, o) {
	// support metadata plugin (v1.0 and v2.0)
	var opts = $.extend({}, $.fn.cycle.defaults, options || {}, $.metadata ? $cont.metadata() : $.meta ? $cont.data() : {});
	var meta = $.isFunction($cont.data) ? $cont.data(opts.metaAttr) : null;
	if (meta)
		opts = $.extend(opts, meta);
	if (opts.autostop)
		opts.countdown = opts.autostopCount || els.length;

	var cont = $cont[0];
	$cont.data('cycle.opts', opts);
	opts.$cont = $cont;
	opts.stopCount = cont.cycleStop;
	opts.elements = els;
	opts.before = opts.before ? [opts.before] : [];
	opts.after = opts.after ? [opts.after] : [];

	// push some after callbacks
	if (!$.support.opacity && opts.cleartype)
		opts.after.push(function() { removeFilter(this, opts); });
	if (opts.continuous)
		opts.after.push(function() { go(els,opts,0,!opts.backwards); });

	saveOriginalOpts(opts);

	// clearType corrections
	if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
		clearTypeFix($slides);

	// container requires non-static position so that slides can be position within
	if ($cont.css('position') == 'static')
		$cont.css('position', 'relative');
	if (opts.width)
		$cont.width(opts.width);
	if (opts.height && opts.height != 'auto')
		$cont.height(opts.height);

	if (opts.startingSlide)
		opts.startingSlide = parseInt(opts.startingSlide,10);
	else if (opts.backwards)
		opts.startingSlide = els.length - 1;

	// if random, mix up the slide array
	if (opts.random) {
		opts.randomMap = [];
		for (var i = 0; i < els.length; i++)
			opts.randomMap.push(i);
		opts.randomMap.sort(function(a,b) {return Math.random() - 0.5;});
		opts.randomIndex = 1;
		opts.startingSlide = opts.randomMap[1];
	}
	else if (opts.startingSlide >= els.length)
		opts.startingSlide = 0; // catch bogus input
	opts.currSlide = opts.startingSlide || 0;
	var first = opts.startingSlide;

	// set position and zIndex on all the slides
	$slides.css({position: 'absolute', top:0, left:0}).hide().each(function(i) {
		var z;
		if (opts.backwards)
			z = first ? i <= first ? els.length + (i-first) : first-i : els.length-i;
		else
			z = first ? i >= first ? els.length - (i-first) : first-i : els.length-i;
		$(this).css('z-index', z)
	});

	// make sure first slide is visible
	$(els[first]).css('opacity',1).show(); // opacity bit needed to handle restart use case
	removeFilter(els[first], opts);

	// stretch slides
	if (opts.fit) {
		if (!opts.aspect) {
	        if (opts.width)
	            $slides.width(opts.width);
	        if (opts.height && opts.height != 'auto')
	            $slides.height(opts.height);
		} else {
			$slides.each(function(){
				var $slide = $(this);
				var ratio = (opts.aspect === true) ? $slide.width()/$slide.height() : opts.aspect;
				if( opts.width && $slide.width() != opts.width ) {
					$slide.width( opts.width );
					$slide.height( opts.width / ratio );
				}

				if( opts.height && $slide.height() < opts.height ) {
					$slide.height( opts.height );
					$slide.width( opts.height * ratio );
				}
			});
		}
	}

	if (opts.center && ((!opts.fit) || opts.aspect)) {
		$slides.each(function(){
			var $slide = $(this);
			$slide.css({
				"margin-left": opts.width ?
					((opts.width - $slide.width()) / 2) + "px" :
					0,
				"margin-top": opts.height ?
					((opts.height - $slide.height()) / 2) + "px" :
					0
			});
		});
	}

	if (opts.center && !opts.fit && !opts.slideResize) {
	  	$slides.each(function(){
	    	var $slide = $(this);
	    	$slide.css({
	      		"margin-left": opts.width ? ((opts.width - $slide.width()) / 2) + "px" : 0,
	      		"margin-top": opts.height ? ((opts.height - $slide.height()) / 2) + "px" : 0
	    	});
	  	});
	}
		
	// stretch container
	var reshape = opts.containerResize && !$cont.innerHeight();
	if (reshape) { // do this only if container has no size http://tinyurl.com/da2oa9
		var maxw = 0, maxh = 0;
		for(var j=0; j < els.length; j++) {
			var $e = $(els[j]), e = $e[0], w = $e.outerWidth(), h = $e.outerHeight();
			if (!w) w = e.offsetWidth || e.width || $e.attr('width');
			if (!h) h = e.offsetHeight || e.height || $e.attr('height');
			maxw = w > maxw ? w : maxw;
			maxh = h > maxh ? h : maxh;
		}
		if (maxw > 0 && maxh > 0)
			$cont.css({width:maxw+'px',height:maxh+'px'});
	}

	var pauseFlag = false;  // https://github.com/malsup/cycle/issues/44
	if (opts.pause)
		$cont.hover(
			function(){
				pauseFlag = true;
				this.cyclePause++;
				triggerPause(cont, true);
			},
			function(){
				pauseFlag && this.cyclePause--;
				triggerPause(cont, true);
			}
		);

	if (supportMultiTransitions(opts) === false)
		return false;

	// apparently a lot of people use image slideshows without height/width attributes on the images.
	// Cycle 2.50+ requires the sizing info for every slide; this block tries to deal with that.
	var requeue = false;
	options.requeueAttempts = options.requeueAttempts || 0;
	$slides.each(function() {
		// try to get height/width of each slide
		var $el = $(this);
		this.cycleH = (opts.fit && opts.height) ? opts.height : ($el.height() || this.offsetHeight || this.height || $el.attr('height') || 0);
		this.cycleW = (opts.fit && opts.width) ? opts.width : ($el.width() || this.offsetWidth || this.width || $el.attr('width') || 0);

		if ( $el.is('img') ) {
			// sigh..  sniffing, hacking, shrugging...  this crappy hack tries to account for what browsers do when
			// an image is being downloaded and the markup did not include sizing info (height/width attributes);
			// there seems to be some "default" sizes used in this situation
			var loadingIE	= ($.browser.msie  && this.cycleW == 28 && this.cycleH == 30 && !this.complete);
			var loadingFF	= ($.browser.mozilla && this.cycleW == 34 && this.cycleH == 19 && !this.complete);
			var loadingOp	= ($.browser.opera && ((this.cycleW == 42 && this.cycleH == 19) || (this.cycleW == 37 && this.cycleH == 17)) && !this.complete);
			var loadingOther = (this.cycleH == 0 && this.cycleW == 0 && !this.complete);
			// don't requeue for images that are still loading but have a valid size
			if (loadingIE || loadingFF || loadingOp || loadingOther) {
				if (o.s && opts.requeueOnImageNotLoaded && ++options.requeueAttempts < 100) { // track retry count so we don't loop forever
					log(options.requeueAttempts,' - img slide not loaded, requeuing slideshow: ', this.src, this.cycleW, this.cycleH);
					setTimeout(function() {$(o.s,o.c).cycle(options)}, opts.requeueTimeout);
					requeue = true;
					return false; // break each loop
				}
				else {
					log('could not determine size of image: '+this.src, this.cycleW, this.cycleH);
				}
			}
		}
		return true;
	});

	if (requeue)
		return false;

	opts.cssBefore = opts.cssBefore || {};
	opts.cssAfter = opts.cssAfter || {};
	opts.cssFirst = opts.cssFirst || {};
	opts.animIn = opts.animIn || {};
	opts.animOut = opts.animOut || {};

	$slides.not(':eq('+first+')').css(opts.cssBefore);
	$($slides[first]).css(opts.cssFirst);

	if (opts.timeout) {
		opts.timeout = parseInt(opts.timeout,10);
		// ensure that timeout and speed settings are sane
		if (opts.speed.constructor == String)
			opts.speed = $.fx.speeds[opts.speed] || parseInt(opts.speed,10);
		if (!opts.sync)
			opts.speed = opts.speed / 2;
		
		var buffer = opts.fx == 'none' ? 0 : opts.fx == 'shuffle' ? 500 : 250;
		while((opts.timeout - opts.speed) < buffer) // sanitize timeout
			opts.timeout += opts.speed;
	}
	if (opts.easing)
		opts.easeIn = opts.easeOut = opts.easing;
	if (!opts.speedIn)
		opts.speedIn = opts.speed;
	if (!opts.speedOut)
		opts.speedOut = opts.speed;

	opts.slideCount = els.length;
	opts.currSlide = opts.lastSlide = first;
	if (opts.random) {
		if (++opts.randomIndex == els.length)
			opts.randomIndex = 0;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else if (opts.backwards)
		opts.nextSlide = opts.startingSlide == 0 ? (els.length-1) : opts.startingSlide-1;
	else
		opts.nextSlide = opts.startingSlide >= (els.length-1) ? 0 : opts.startingSlide+1;

	// run transition init fn
	if (!opts.multiFx) {
		var init = $.fn.cycle.transitions[opts.fx];
		if ($.isFunction(init))
			init($cont, $slides, opts);
		else if (opts.fx != 'custom' && !opts.multiFx) {
			log('unknown transition: ' + opts.fx,'; slideshow terminating');
			return false;
		}
	}

	// fire artificial events
	var e0 = $slides[first];
	if (!opts.skipInitializationCallbacks) {
		if (opts.before.length)
			opts.before[0].apply(e0, [e0, e0, opts, true]);
		if (opts.after.length)
			opts.after[0].apply(e0, [e0, e0, opts, true]);
	}
	if (opts.next)
		$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1)});
	if (opts.prev)
		$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0)});
	if (opts.pager || opts.pagerAnchorBuilder)
		buildPager(els,opts);

	exposeAddSlide(opts, els);

	return opts;
};

// save off original opts so we can restore after clearing state
function saveOriginalOpts(opts) {
	opts.original = { before: [], after: [] };
	opts.original.cssBefore = $.extend({}, opts.cssBefore);
	opts.original.cssAfter  = $.extend({}, opts.cssAfter);
	opts.original.animIn	= $.extend({}, opts.animIn);
	opts.original.animOut   = $.extend({}, opts.animOut);
	$.each(opts.before, function() { opts.original.before.push(this); });
	$.each(opts.after,  function() { opts.original.after.push(this); });
};

function supportMultiTransitions(opts) {
	var i, tx, txs = $.fn.cycle.transitions;
	// look for multiple effects
	if (opts.fx.indexOf(',') > 0) {
		opts.multiFx = true;
		opts.fxs = opts.fx.replace(/\s*/g,'').split(',');
		// discard any bogus effect names
		for (i=0; i < opts.fxs.length; i++) {
			var fx = opts.fxs[i];
			tx = txs[fx];
			if (!tx || !txs.hasOwnProperty(fx) || !$.isFunction(tx)) {
				log('discarding unknown transition: ',fx);
				opts.fxs.splice(i,1);
				i--;
			}
		}
		// if we have an empty list then we threw everything away!
		if (!opts.fxs.length) {
			log('No valid transitions named; slideshow terminating.');
			return false;
		}
	}
	else if (opts.fx == 'all') {  // auto-gen the list of transitions
		opts.multiFx = true;
		opts.fxs = [];
		for (p in txs) {
			tx = txs[p];
			if (txs.hasOwnProperty(p) && $.isFunction(tx))
				opts.fxs.push(p);
		}
	}
	if (opts.multiFx && opts.randomizeEffects) {
		// munge the fxs array to make effect selection random
		var r1 = Math.floor(Math.random() * 20) + 30;
		for (i = 0; i < r1; i++) {
			var r2 = Math.floor(Math.random() * opts.fxs.length);
			opts.fxs.push(opts.fxs.splice(r2,1)[0]);
		}
		debug('randomized fx sequence: ',opts.fxs);
	}
	return true;
};

// provide a mechanism for adding slides after the slideshow has started
function exposeAddSlide(opts, els) {
	opts.addSlide = function(newSlide, prepend) {
		var $s = $(newSlide), s = $s[0];
		if (!opts.autostopCount)
			opts.countdown++;
		els[prepend?'unshift':'push'](s);
		if (opts.els)
			opts.els[prepend?'unshift':'push'](s); // shuffle needs this
		opts.slideCount = els.length;

		$s.css('position','absolute');
		$s[prepend?'prependTo':'appendTo'](opts.$cont);

		if (prepend) {
			opts.currSlide++;
			opts.nextSlide++;
		}

		if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
			clearTypeFix($s);

		if (opts.fit && opts.width)
			$s.width(opts.width);
		if (opts.fit && opts.height && opts.height != 'auto')
			$s.height(opts.height);
		s.cycleH = (opts.fit && opts.height) ? opts.height : $s.height();
		s.cycleW = (opts.fit && opts.width) ? opts.width : $s.width();

		$s.css(opts.cssBefore);

		if (opts.pager || opts.pagerAnchorBuilder)
			$.fn.cycle.createPagerAnchor(els.length-1, s, $(opts.pager), els, opts);

		if ($.isFunction(opts.onAddSlide))
			opts.onAddSlide($s);
		else
			$s.hide(); // default behavior
	};
}

// reset internal state; we do this on every pass in order to support multiple effects
$.fn.cycle.resetState = function(opts, fx) {
	fx = fx || opts.fx;
	opts.before = []; opts.after = [];
	opts.cssBefore = $.extend({}, opts.original.cssBefore);
	opts.cssAfter  = $.extend({}, opts.original.cssAfter);
	opts.animIn	= $.extend({}, opts.original.animIn);
	opts.animOut   = $.extend({}, opts.original.animOut);
	opts.fxFn = null;
	$.each(opts.original.before, function() { opts.before.push(this); });
	$.each(opts.original.after,  function() { opts.after.push(this); });

	// re-init
	var init = $.fn.cycle.transitions[fx];
	if ($.isFunction(init))
		init(opts.$cont, $(opts.elements), opts);
};

// this is the main engine fn, it handles the timeouts, callbacks and slide index mgmt
function go(els, opts, manual, fwd) {
	// opts.busy is true if we're in the middle of an animation
	if (manual && opts.busy && opts.manualTrump) {
		// let manual transitions requests trump active ones
		debug('manualTrump in go(), stopping active transition');
		$(els).stop(true,true);
		opts.busy = 0;
	}
	// don't begin another timeout-based transition if there is one active
	if (opts.busy) {
		debug('transition active, ignoring new tx request');
		return;
	}

	var p = opts.$cont[0], curr = els[opts.currSlide], next = els[opts.nextSlide];

	// stop cycling if we have an outstanding stop request
	if (p.cycleStop != opts.stopCount || p.cycleTimeout === 0 && !manual)
		return;

	// check to see if we should stop cycling based on autostop options
	if (!manual && !p.cyclePause && !opts.bounce &&
		((opts.autostop && (--opts.countdown <= 0)) ||
		(opts.nowrap && !opts.random && opts.nextSlide < opts.currSlide))) {
		if (opts.end)
			opts.end(opts);
		return;
	}

	// if slideshow is paused, only transition on a manual trigger
	var changed = false;
	if ((manual || !p.cyclePause) && (opts.nextSlide != opts.currSlide)) {
		changed = true;
		var fx = opts.fx;
		// keep trying to get the slide size if we don't have it yet
		curr.cycleH = curr.cycleH || $(curr).height();
		curr.cycleW = curr.cycleW || $(curr).width();
		next.cycleH = next.cycleH || $(next).height();
		next.cycleW = next.cycleW || $(next).width();

		// support multiple transition types
		if (opts.multiFx) {
			if (fwd && (opts.lastFx == undefined || ++opts.lastFx >= opts.fxs.length))
				opts.lastFx = 0;
			else if (!fwd && (opts.lastFx == undefined || --opts.lastFx < 0))
				opts.lastFx = opts.fxs.length - 1;
			fx = opts.fxs[opts.lastFx];
		}

		// one-time fx overrides apply to:  $('div').cycle(3,'zoom');
		if (opts.oneTimeFx) {
			fx = opts.oneTimeFx;
			opts.oneTimeFx = null;
		}

		$.fn.cycle.resetState(opts, fx);

		// run the before callbacks
		if (opts.before.length)
			$.each(opts.before, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});

		// stage the after callacks
		var after = function() {
			opts.busy = 0;
			$.each(opts.after, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});
		};

		debug('tx firing('+fx+'); currSlide: ' + opts.currSlide + '; nextSlide: ' + opts.nextSlide);
		
		// get ready to perform the transition
		opts.busy = 1;
		if (opts.fxFn) // fx function provided?
			opts.fxFn(curr, next, opts, after, fwd, manual && opts.fastOnEvent);
		else if ($.isFunction($.fn.cycle[opts.fx])) // fx plugin ?
			$.fn.cycle[opts.fx](curr, next, opts, after, fwd, manual && opts.fastOnEvent);
		else
			$.fn.cycle.custom(curr, next, opts, after, fwd, manual && opts.fastOnEvent);
	}

	if (changed || opts.nextSlide == opts.currSlide) {
		// calculate the next slide
		opts.lastSlide = opts.currSlide;
		if (opts.random) {
			opts.currSlide = opts.nextSlide;
			if (++opts.randomIndex == els.length)
				opts.randomIndex = 0;
			opts.nextSlide = opts.randomMap[opts.randomIndex];
			if (opts.nextSlide == opts.currSlide)
				opts.nextSlide = (opts.currSlide == opts.slideCount - 1) ? 0 : opts.currSlide + 1;
		}
		else if (opts.backwards) {
			var roll = (opts.nextSlide - 1) < 0;
			if (roll && opts.bounce) {
				opts.backwards = !opts.backwards;
				opts.nextSlide = 1;
				opts.currSlide = 0;
			}
			else {
				opts.nextSlide = roll ? (els.length-1) : opts.nextSlide-1;
				opts.currSlide = roll ? 0 : opts.nextSlide+1;
			}
		}
		else { // sequence
			var roll = (opts.nextSlide + 1) == els.length;
			if (roll && opts.bounce) {
				opts.backwards = !opts.backwards;
				opts.nextSlide = els.length-2;
				opts.currSlide = els.length-1;
			}
			else {
				opts.nextSlide = roll ? 0 : opts.nextSlide+1;
				opts.currSlide = roll ? els.length-1 : opts.nextSlide-1;
			}
		}
	}
	if (changed && opts.pager)
		opts.updateActivePagerLink(opts.pager, opts.currSlide, opts.activePagerClass);
	
	// stage the next transition
	var ms = 0;
	if (opts.timeout && !opts.continuous)
		ms = getTimeout(els[opts.currSlide], els[opts.nextSlide], opts, fwd);
	else if (opts.continuous && p.cyclePause) // continuous shows work off an after callback, not this timer logic
		ms = 10;
	if (ms > 0)
		p.cycleTimeout = setTimeout(function(){ go(els, opts, 0, !opts.backwards) }, ms);
};

// invoked after transition
$.fn.cycle.updateActivePagerLink = function(pager, currSlide, clsName) {
   $(pager).each(function() {
       $(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);
   });
};

// calculate timeout value for current transition
function getTimeout(curr, next, opts, fwd) {
	if (opts.timeoutFn) {
		// call user provided calc fn
		var t = opts.timeoutFn.call(curr,curr,next,opts,fwd);
		while (opts.fx != 'none' && (t - opts.speed) < 250) // sanitize timeout
			t += opts.speed;
		debug('calculated timeout: ' + t + '; speed: ' + opts.speed);
		if (t !== false)
			return t;
	}
	return opts.timeout;
};

// expose next/prev function, caller must pass in state
$.fn.cycle.next = function(opts) { advance(opts,1); };
$.fn.cycle.prev = function(opts) { advance(opts,0);};

// advance slide forward or back
function advance(opts, moveForward) {
	var val = moveForward ? 1 : -1;
	var els = opts.elements;
	var p = opts.$cont[0], timeout = p.cycleTimeout;
	if (timeout) {
		clearTimeout(timeout);
		p.cycleTimeout = 0;
	}
	if (opts.random && val < 0) {
		// move back to the previously display slide
		opts.randomIndex--;
		if (--opts.randomIndex == -2)
			opts.randomIndex = els.length-2;
		else if (opts.randomIndex == -1)
			opts.randomIndex = els.length-1;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else if (opts.random) {
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else {
		opts.nextSlide = opts.currSlide + val;
		if (opts.nextSlide < 0) {
			if (opts.nowrap) return false;
			opts.nextSlide = els.length - 1;
		}
		else if (opts.nextSlide >= els.length) {
			if (opts.nowrap) return false;
			opts.nextSlide = 0;
		}
	}

	var cb = opts.onPrevNextEvent || opts.prevNextClick; // prevNextClick is deprecated
	if ($.isFunction(cb))
		cb(val > 0, opts.nextSlide, els[opts.nextSlide]);
	go(els, opts, 1, moveForward);
	return false;
};

function buildPager(els, opts) {
	var $p = $(opts.pager);
	$.each(els, function(i,o) {
		$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);
	});
	opts.updateActivePagerLink(opts.pager, opts.startingSlide, opts.activePagerClass);
};

$.fn.cycle.createPagerAnchor = function(i, el, $p, els, opts) {
	var a;
	if ($.isFunction(opts.pagerAnchorBuilder)) {
		a = opts.pagerAnchorBuilder(i,el);
		debug('pagerAnchorBuilder('+i+', el) returned: ' + a);
	}
	else
		a = '<a href="#">'+(i+1)+'</a>';
		
	if (!a)
		return;
	var $a = $(a);
	// don't reparent if anchor is in the dom
	if ($a.parents('body').length === 0) {
		var arr = [];
		if ($p.length > 1) {
			$p.each(function() {
				var $clone = $a.clone(true);
				$(this).append($clone);
				arr.push($clone[0]);
			});
			$a = $(arr);
		}
		else {
			$a.appendTo($p);
		}
	}

	opts.pagerAnchors =  opts.pagerAnchors || [];
	opts.pagerAnchors.push($a);
	
	var pagerFn = function(e) {
		e.preventDefault();
		opts.nextSlide = i;
		var p = opts.$cont[0], timeout = p.cycleTimeout;
		if (timeout) {
			clearTimeout(timeout);
			p.cycleTimeout = 0;
		}
		var cb = opts.onPagerEvent || opts.pagerClick; // pagerClick is deprecated
		if ($.isFunction(cb))
			cb(opts.nextSlide, els[opts.nextSlide]);
		go(els,opts,1,opts.currSlide < i); // trigger the trans
//		return false; // <== allow bubble
	}
	
	if ( /mouseenter|mouseover/i.test(opts.pagerEvent) ) {
		$a.hover(pagerFn, function(){/* no-op */} );
	}
	else {
		$a.bind(opts.pagerEvent, pagerFn);
	}
	
	if ( ! /^click/.test(opts.pagerEvent) && !opts.allowPagerClickBubble)
		$a.bind('click.cycle', function(){return false;}); // suppress click
	
	var cont = opts.$cont[0];
	var pauseFlag = false; // https://github.com/malsup/cycle/issues/44
	if (opts.pauseOnPagerHover) {
		$a.hover(
			function() { 
				pauseFlag = true;
				cont.cyclePause++; 
				triggerPause(cont,true,true);
			}, function() { 
				pauseFlag && cont.cyclePause--; 
				triggerPause(cont,true,true);
			} 
		);
	}
};

// helper fn to calculate the number of slides between the current and the next
$.fn.cycle.hopsFromLast = function(opts, fwd) {
	var hops, l = opts.lastSlide, c = opts.currSlide;
	if (fwd)
		hops = c > l ? c - l : opts.slideCount - l;
	else
		hops = c < l ? l - c : l + opts.slideCount - c;
	return hops;
};

// fix clearType problems in ie6 by setting an explicit bg color
// (otherwise text slides look horrible during a fade transition)
function clearTypeFix($slides) {
	debug('applying clearType background-color hack');
	function hex(s) {
		s = parseInt(s,10).toString(16);
		return s.length < 2 ? '0'+s : s;
	};
	function getBg(e) {
		for ( ; e && e.nodeName.toLowerCase() != 'html'; e = e.parentNode) {
			var v = $.css(e,'background-color');
			if (v && v.indexOf('rgb') >= 0 ) {
				var rgb = v.match(/\d+/g);
				return '#'+ hex(rgb[0]) + hex(rgb[1]) + hex(rgb[2]);
			}
			if (v && v != 'transparent')
				return v;
		}
		return '#ffffff';
	};
	$slides.each(function() { $(this).css('background-color', getBg(this)); });
};

// reset common props before the next transition
$.fn.cycle.commonReset = function(curr,next,opts,w,h,rev) {
	$(opts.elements).not(curr).hide();
	if (typeof opts.cssBefore.opacity == 'undefined')
		opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	if (opts.slideResize && w !== false && next.cycleW > 0)
		opts.cssBefore.width = next.cycleW;
	if (opts.slideResize && h !== false && next.cycleH > 0)
		opts.cssBefore.height = next.cycleH;
	opts.cssAfter = opts.cssAfter || {};
	opts.cssAfter.display = 'none';
	$(curr).css('zIndex',opts.slideCount + (rev === true ? 1 : 0));
	$(next).css('zIndex',opts.slideCount + (rev === true ? 0 : 1));
};

// the actual fn for effecting a transition
$.fn.cycle.custom = function(curr, next, opts, cb, fwd, speedOverride) {
	var $l = $(curr), $n = $(next);
	var speedIn = opts.speedIn, speedOut = opts.speedOut, easeIn = opts.easeIn, easeOut = opts.easeOut;
	$n.css(opts.cssBefore);
	if (speedOverride) {
		if (typeof speedOverride == 'number')
			speedIn = speedOut = speedOverride;
		else
			speedIn = speedOut = 1;
		easeIn = easeOut = null;
	}
	var fn = function() {
		$n.animate(opts.animIn, speedIn, easeIn, function() {
			cb();
		});
	};
	$l.animate(opts.animOut, speedOut, easeOut, function() {
		$l.css(opts.cssAfter);
		if (!opts.sync) 
			fn();
	});
	if (opts.sync) fn();
};

// transition definitions - only fade is defined here, transition pack defines the rest
$.fn.cycle.transitions = {
	fade: function($cont, $slides, opts) {
		$slides.not(':eq('+opts.currSlide+')').css('opacity',0);
		opts.before.push(function(curr,next,opts) {
			$.fn.cycle.commonReset(curr,next,opts);
			opts.cssBefore.opacity = 0;
		});
		opts.animIn	   = { opacity: 1 };
		opts.animOut   = { opacity: 0 };
		opts.cssBefore = { top: 0, left: 0 };
	}
};

$.fn.cycle.ver = function() { return ver; };

// override these globally if you like (they are all optional)
$.fn.cycle.defaults = {
	activePagerClass: 'activeSlide', // class name used for the active pager link
	after:		   null,  // transition callback (scope set to element that was shown):  function(currSlideElement, nextSlideElement, options, forwardFlag)
	allowPagerClickBubble: false, // allows or prevents click event on pager anchors from bubbling
	animIn:		   null,  // properties that define how the slide animates in
	animOut:	   null,  // properties that define how the slide animates out
	aspect:		   false,  // preserve aspect ratio during fit resizing, cropping if necessary (must be used with fit option)
	autostop:	   0,	  // true to end slideshow after X transitions (where X == slide count)
	autostopCount: 0,	  // number of transitions (optionally used with autostop to define X)
	backwards:     false, // true to start slideshow at last slide and move backwards through the stack
	before:		   null,  // transition callback (scope set to element to be shown):	 function(currSlideElement, nextSlideElement, options, forwardFlag)
	center: 	   null,  // set to true to have cycle add top/left margin to each slide (use with width and height options)
	cleartype:	   !$.support.opacity,  // true if clearType corrections should be applied (for IE)
	cleartypeNoBg: false, // set to true to disable extra cleartype fixing (leave false to force background color setting on slides)
	containerResize: 1,	  // resize container to fit largest slide
	continuous:	   0,	  // true to start next transition immediately after current one completes
	cssAfter:	   null,  // properties that defined the state of the slide after transitioning out
	cssBefore:	   null,  // properties that define the initial state of the slide before transitioning in
	delay:		   0,	  // additional delay (in ms) for first transition (hint: can be negative)
	easeIn:		   null,  // easing for "in" transition
	easeOut:	   null,  // easing for "out" transition
	easing:		   null,  // easing method for both in and out transitions
	end:		   null,  // callback invoked when the slideshow terminates (use with autostop or nowrap options): function(options)
	fastOnEvent:   0,	  // force fast transitions when triggered manually (via pager or prev/next); value == time in ms
	fit:		   0,	  // force slides to fit container
	fx:			  'fade', // name of transition effect (or comma separated names, ex: 'fade,scrollUp,shuffle')
	fxFn:		   null,  // function used to control the transition: function(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag)
	height:		  'auto', // container height (if the 'fit' option is true, the slides will be set to this height as well)
	manualTrump:   true,  // causes manual transition to stop an active transition instead of being ignored
	metaAttr:     'cycle',// data- attribute that holds the option data for the slideshow
	next:		   null,  // element, jQuery object, or jQuery selector string for the element to use as event trigger for next slide
	nowrap:		   0,	  // true to prevent slideshow from wrapping
	onPagerEvent:  null,  // callback fn for pager events: function(zeroBasedSlideIndex, slideElement)
	onPrevNextEvent: null,// callback fn for prev/next events: function(isNext, zeroBasedSlideIndex, slideElement)
	pager:		   null,  // element, jQuery object, or jQuery selector string for the element to use as pager container
	pagerAnchorBuilder: null, // callback fn for building anchor links:  function(index, DOMelement)
	pagerEvent:	  'click.cycle', // name of event which drives the pager navigation
	pause:		   0,	  // true to enable "pause on hover"
	pauseOnPagerHover: 0, // true to pause when hovering over pager link
	prev:		   null,  // element, jQuery object, or jQuery selector string for the element to use as event trigger for previous slide
	prevNextEvent:'click.cycle',// event which drives the manual transition to the previous or next slide
	random:		   0,	  // true for random, false for sequence (not applicable to shuffle fx)
	randomizeEffects: 1,  // valid when multiple effects are used; true to make the effect sequence random
	requeueOnImageNotLoaded: true, // requeue the slideshow if any image slides are not yet loaded
	requeueTimeout: 250,  // ms delay for requeue
	rev:		   0,	  // causes animations to transition in reverse (for effects that support it such as scrollHorz/scrollVert/shuffle)
	shuffle:	   null,  // coords for shuffle animation, ex: { top:15, left: 200 }
	skipInitializationCallbacks: false, // set to true to disable the first before/after callback that occurs prior to any transition
	slideExpr:	   null,  // expression for selecting slides (if something other than all children is required)
	slideResize:   1,     // force slide width/height to fixed size before every transition
	speed:		   1000,  // speed of the transition (any valid fx speed value)
	speedIn:	   null,  // speed of the 'in' transition
	speedOut:	   null,  // speed of the 'out' transition
	startingSlide: 0,	  // zero-based index of the first slide to be displayed
	sync:		   1,	  // true if in/out transitions should occur simultaneously
	timeout:	   4000,  // milliseconds between slide transitions (0 to disable auto advance)
	timeoutFn:     null,  // callback for determining per-slide timeout value:  function(currSlideElement, nextSlideElement, options, forwardFlag)
	updateActivePagerLink: null, // callback fn invoked to update the active pager link (adds/removes activePagerClass style)
	width:         null   // container width (if the 'fit' option is true, the slides will be set to this width as well)
};

})(jQuery);


/*!
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.73
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($) {

//
// These functions define slide initialization and properties for the named
// transitions. To save file size feel free to remove any of these that you
// don't need.
//
$.fn.cycle.transitions.none = function($cont, $slides, opts) {
	opts.fxFn = function(curr,next,opts,after){
		$(next).show();
		$(curr).hide();
		after();
	};
};

// not a cross-fade, fadeout only fades out the top slide
$.fn.cycle.transitions.fadeout = function($cont, $slides, opts) {
	$slides.not(':eq('+opts.currSlide+')').css({ display: 'block', 'opacity': 1 });
	opts.before.push(function(curr,next,opts,w,h,rev) {
		$(curr).css('zIndex',opts.slideCount + (!rev === true ? 1 : 0));
		$(next).css('zIndex',opts.slideCount + (!rev === true ? 0 : 1));
	});
	opts.animIn.opacity = 1;
	opts.animOut.opacity = 0;
	opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	opts.cssAfter.zIndex = 0;
};

// scrollUp/Down/Left/Right
$.fn.cycle.transitions.scrollUp = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var h = $cont.height();
	opts.cssBefore.top = h;
	opts.cssBefore.left = 0;
	opts.cssFirst.top = 0;
	opts.animIn.top = 0;
	opts.animOut.top = -h;
};
$.fn.cycle.transitions.scrollDown = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var h = $cont.height();
	opts.cssFirst.top = 0;
	opts.cssBefore.top = -h;
	opts.cssBefore.left = 0;
	opts.animIn.top = 0;
	opts.animOut.top = h;
};
$.fn.cycle.transitions.scrollLeft = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var w = $cont.width();
	opts.cssFirst.left = 0;
	opts.cssBefore.left = w;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
	opts.animOut.left = 0-w;
};
$.fn.cycle.transitions.scrollRight = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var w = $cont.width();
	opts.cssFirst.left = 0;
	opts.cssBefore.left = -w;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
	opts.animOut.left = w;
};
$.fn.cycle.transitions.scrollHorz = function($cont, $slides, opts) {
	$cont.css('overflow','hidden').width();
	opts.before.push(function(curr, next, opts, fwd) {
		if (opts.rev)
			fwd = !fwd;
		$.fn.cycle.commonReset(curr,next,opts);
		opts.cssBefore.left = fwd ? (next.cycleW-1) : (1-next.cycleW);
		opts.animOut.left = fwd ? -curr.cycleW : curr.cycleW;
	});
	opts.cssFirst.left = 0;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
	opts.animOut.top = 0;
};
$.fn.cycle.transitions.scrollVert = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push(function(curr, next, opts, fwd) {
		if (opts.rev)
			fwd = !fwd;
		$.fn.cycle.commonReset(curr,next,opts);
		opts.cssBefore.top = fwd ? (1-next.cycleH) : (next.cycleH-1);
		opts.animOut.top = fwd ? curr.cycleH : -curr.cycleH;
	});
	opts.cssFirst.top = 0;
	opts.cssBefore.left = 0;
	opts.animIn.top = 0;
	opts.animOut.left = 0;
};

// slideX/slideY
$.fn.cycle.transitions.slideX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$(opts.elements).not(curr).hide();
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.animIn.width = next.cycleW;
	});
	opts.cssBefore.left = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 0;
	opts.animIn.width = 'show';
	opts.animOut.width = 0;
};
$.fn.cycle.transitions.slideY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$(opts.elements).not(curr).hide();
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.animIn.height = next.cycleH;
	});
	opts.cssBefore.left = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.height = 0;
	opts.animIn.height = 'show';
	opts.animOut.height = 0;
};

// shuffle
$.fn.cycle.transitions.shuffle = function($cont, $slides, opts) {
	var i, w = $cont.css('overflow', 'visible').width();
	$slides.css({left: 0, top: 0});
	opts.before.push(function(curr,next,opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
	});
	// only adjust speed once!
	if (!opts.speedAdjusted) {
		opts.speed = opts.speed / 2; // shuffle has 2 transitions
		opts.speedAdjusted = true;
	}
	opts.random = 0;
	opts.shuffle = opts.shuffle || {left:-w, top:15};
	opts.els = [];
	for (i=0; i < $slides.length; i++)
		opts.els.push($slides[i]);

	for (i=0; i < opts.currSlide; i++)
		opts.els.push(opts.els.shift());

	// custom transition fn (hat tip to Benjamin Sterling for this bit of sweetness!)
	opts.fxFn = function(curr, next, opts, cb, fwd) {
		if (opts.rev)
			fwd = !fwd;
		var $el = fwd ? $(curr) : $(next);
		$(next).css(opts.cssBefore);
		var count = opts.slideCount;
		$el.animate(opts.shuffle, opts.speedIn, opts.easeIn, function() {
			var hops = $.fn.cycle.hopsFromLast(opts, fwd);
			for (var k=0; k < hops; k++)
				fwd ? opts.els.push(opts.els.shift()) : opts.els.unshift(opts.els.pop());
			if (fwd) {
				for (var i=0, len=opts.els.length; i < len; i++)
					$(opts.els[i]).css('z-index', len-i+count);
			}
			else {
				var z = $(curr).css('z-index');
				$el.css('z-index', parseInt(z,10)+1+count);
			}
			$el.animate({left:0, top:0}, opts.speedOut, opts.easeOut, function() {
				$(fwd ? this : curr).hide();
				if (cb) cb();
			});
		});
	};
	$.extend(opts.cssBefore, { display: 'block', opacity: 1, top: 0, left: 0 });
};

// turnUp/Down/Left/Right
$.fn.cycle.transitions.turnUp = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.cssBefore.top = next.cycleH;
		opts.animIn.height = next.cycleH;
		opts.animOut.width = next.cycleW;
	});
	opts.cssFirst.top = 0;
	opts.cssBefore.left = 0;
	opts.cssBefore.height = 0;
	opts.animIn.top = 0;
	opts.animOut.height = 0;
};
$.fn.cycle.transitions.turnDown = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssFirst.top = 0;
	opts.cssBefore.left = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.height = 0;
	opts.animOut.height = 0;
};
$.fn.cycle.transitions.turnLeft = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.cssBefore.left = next.cycleW;
		opts.animIn.width = next.cycleW;
	});
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 0;
	opts.animIn.left = 0;
	opts.animOut.width = 0;
};
$.fn.cycle.transitions.turnRight = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.animIn.width = next.cycleW;
		opts.animOut.left = curr.cycleW;
	});
	$.extend(opts.cssBefore, { top: 0, left: 0, width: 0 });
	opts.animIn.left = 0;
	opts.animOut.width = 0;
};

// zoom
$.fn.cycle.transitions.zoom = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,false,true);
		opts.cssBefore.top = next.cycleH/2;
		opts.cssBefore.left = next.cycleW/2;
		$.extend(opts.animIn, { top: 0, left: 0, width: next.cycleW, height: next.cycleH });
		$.extend(opts.animOut, { width: 0, height: 0, top: curr.cycleH/2, left: curr.cycleW/2 });
	});
	opts.cssFirst.top = 0;
	opts.cssFirst.left = 0;
	opts.cssBefore.width = 0;
	opts.cssBefore.height = 0;
};

// fadeZoom
$.fn.cycle.transitions.fadeZoom = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,false);
		opts.cssBefore.left = next.cycleW/2;
		opts.cssBefore.top = next.cycleH/2;
		$.extend(opts.animIn, { top: 0, left: 0, width: next.cycleW, height: next.cycleH });
	});
	opts.cssBefore.width = 0;
	opts.cssBefore.height = 0;
	opts.animOut.opacity = 0;
};

// blindX
$.fn.cycle.transitions.blindX = function($cont, $slides, opts) {
	var w = $cont.css('overflow','hidden').width();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.width = next.cycleW;
		opts.animOut.left   = curr.cycleW;
	});
	opts.cssBefore.left = w;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
	opts.animOut.left = w;
};
// blindY
$.fn.cycle.transitions.blindY = function($cont, $slides, opts) {
	var h = $cont.css('overflow','hidden').height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssBefore.top = h;
	opts.cssBefore.left = 0;
	opts.animIn.top = 0;
	opts.animOut.top = h;
};
// blindZ
$.fn.cycle.transitions.blindZ = function($cont, $slides, opts) {
	var h = $cont.css('overflow','hidden').height();
	var w = $cont.width();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssBefore.top = h;
	opts.cssBefore.left = w;
	opts.animIn.top = 0;
	opts.animIn.left = 0;
	opts.animOut.top = h;
	opts.animOut.left = w;
};

// growX - grow horizontally from centered 0 width
$.fn.cycle.transitions.growX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.cssBefore.left = this.cycleW/2;
		opts.animIn.left = 0;
		opts.animIn.width = this.cycleW;
		opts.animOut.left = 0;
	});
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 0;
};
// growY - grow vertically from centered 0 height
$.fn.cycle.transitions.growY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.cssBefore.top = this.cycleH/2;
		opts.animIn.top = 0;
		opts.animIn.height = this.cycleH;
		opts.animOut.top = 0;
	});
	opts.cssBefore.height = 0;
	opts.cssBefore.left = 0;
};

// curtainX - squeeze in both edges horizontally
$.fn.cycle.transitions.curtainX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true,true);
		opts.cssBefore.left = next.cycleW/2;
		opts.animIn.left = 0;
		opts.animIn.width = this.cycleW;
		opts.animOut.left = curr.cycleW/2;
		opts.animOut.width = 0;
	});
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 0;
};
// curtainY - squeeze in both edges vertically
$.fn.cycle.transitions.curtainY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false,true);
		opts.cssBefore.top = next.cycleH/2;
		opts.animIn.top = 0;
		opts.animIn.height = next.cycleH;
		opts.animOut.top = curr.cycleH/2;
		opts.animOut.height = 0;
	});
	opts.cssBefore.height = 0;
	opts.cssBefore.left = 0;
};

// cover - curr slide covered by next slide
$.fn.cycle.transitions.cover = function($cont, $slides, opts) {
	var d = opts.direction || 'left';
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		if (d == 'right')
			opts.cssBefore.left = -w;
		else if (d == 'up')
			opts.cssBefore.top = h;
		else if (d == 'down')
			opts.cssBefore.top = -h;
		else
			opts.cssBefore.left = w;
	});
	opts.animIn.left = 0;
	opts.animIn.top = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.left = 0;
};

// uncover - curr slide moves off next slide
$.fn.cycle.transitions.uncover = function($cont, $slides, opts) {
	var d = opts.direction || 'left';
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
		if (d == 'right')
			opts.animOut.left = w;
		else if (d == 'up')
			opts.animOut.top = -h;
		else if (d == 'down')
			opts.animOut.top = h;
		else
			opts.animOut.left = -w;
	});
	opts.animIn.left = 0;
	opts.animIn.top = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.left = 0;
};

// toss - move top slide and fade away
$.fn.cycle.transitions.toss = function($cont, $slides, opts) {
	var w = $cont.css('overflow','visible').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
		// provide default toss settings if animOut not provided
		if (!opts.animOut.left && !opts.animOut.top)
			$.extend(opts.animOut, { left: w*2, top: -h/2, opacity: 0 });
		else
			opts.animOut.opacity = 0;
	});
	opts.cssBefore.left = 0;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
};

// wipe - clip animation
$.fn.cycle.transitions.wipe = function($cont, $slides, opts) {
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.cssBefore = opts.cssBefore || {};
	var clip;
	if (opts.clip) {
		if (/l2r/.test(opts.clip))
			clip = 'rect(0px 0px '+h+'px 0px)';
		else if (/r2l/.test(opts.clip))
			clip = 'rect(0px '+w+'px '+h+'px '+w+'px)';
		else if (/t2b/.test(opts.clip))
			clip = 'rect(0px '+w+'px 0px 0px)';
		else if (/b2t/.test(opts.clip))
			clip = 'rect('+h+'px '+w+'px '+h+'px 0px)';
		else if (/zoom/.test(opts.clip)) {
			var top = parseInt(h/2,10);
			var left = parseInt(w/2,10);
			clip = 'rect('+top+'px '+left+'px '+top+'px '+left+'px)';
		}
	}

	opts.cssBefore.clip = opts.cssBefore.clip || clip || 'rect(0px 0px 0px 0px)';

	var d = opts.cssBefore.clip.match(/(\d+)/g);
	var t = parseInt(d[0],10), r = parseInt(d[1],10), b = parseInt(d[2],10), l = parseInt(d[3],10);

	opts.before.push(function(curr, next, opts) {
		if (curr == next) return;
		var $curr = $(curr), $next = $(next);
		$.fn.cycle.commonReset(curr,next,opts,true,true,false);
		opts.cssAfter.display = 'block';

		var step = 1, count = parseInt((opts.speedIn / 13),10) - 1;
		(function f() {
			var tt = t ? t - parseInt(step * (t/count),10) : 0;
			var ll = l ? l - parseInt(step * (l/count),10) : 0;
			var bb = b < h ? b + parseInt(step * ((h-b)/count || 1),10) : h;
			var rr = r < w ? r + parseInt(step * ((w-r)/count || 1),10) : w;
			$next.css({ clip: 'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)' });
			(step++ <= count) ? setTimeout(f, 13) : $curr.css('display', 'none');
		})();
	});
	$.extend(opts.cssBefore, { display: 'block', opacity: 1, top: 0, left: 0 });
	opts.animIn	   = { left: 0 };
	opts.animOut   = { left: 0 };
};

})(jQuery);
;

if(!this.JSON){JSON={};}
(function(){function f(n){return n<10?'0'+n:n;}
if(typeof Date.prototype.toJSON!=='function'){Date.prototype.toJSON=function(key){return this.getUTCFullYear()+'-'+
f(this.getUTCMonth()+1)+'-'+
f(this.getUTCDate())+'T'+
f(this.getUTCHours())+':'+
f(this.getUTCMinutes())+':'+
f(this.getUTCSeconds())+'Z';};String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(key){return this.valueOf();};}
var cx=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,escapeable=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,gap,indent,meta={'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','"':'\\"','\\':'\\\\'},rep;function quote(string){escapeable.lastIndex=0;return escapeable.test(string)?'"'+string.replace(escapeable,function(a){var c=meta[a];if(typeof c==='string'){return c;}
return'\\u'+('0000'+a.charCodeAt(0).toString(16)).slice(-4);})+'"':'"'+string+'"';}
function str(key,holder){var i,k,v,length,mind=gap,partial,value=holder[key];if(value&&typeof value==='object'&&typeof value.toJSON==='function'){value=value.toJSON(key);}
if(typeof rep==='function'){value=rep.call(holder,key,value);}
switch(typeof value){case'string':return quote(value);case'number':return isFinite(value)?String(value):'null';case'boolean':case'null':return String(value);case'object':if(!value){return'null';}
gap+=indent;partial=[];if(typeof value.length==='number'&&!value.propertyIsEnumerable('length')){length=value.length;for(i=0;i<length;i+=1){partial[i]=str(i,value)||'null';}
v=partial.length===0?'[]':gap?'[\n'+gap+
partial.join(',\n'+gap)+'\n'+
mind+']':'['+partial.join(',')+']';gap=mind;return v;}
if(rep&&typeof rep==='object'){length=rep.length;for(i=0;i<length;i+=1){k=rep[i];if(typeof k==='string'){v=str(k,value);if(v){partial.push(quote(k)+(gap?': ':':')+v);}}}}else{for(k in value){if(Object.hasOwnProperty.call(value,k)){v=str(k,value);if(v){partial.push(quote(k)+(gap?': ':':')+v);}}}}
v=partial.length===0?'{}':gap?'{\n'+gap+partial.join(',\n'+gap)+'\n'+
mind+'}':'{'+partial.join(',')+'}';gap=mind;return v;}}
if(typeof JSON.stringify!=='function'){JSON.stringify=function(value,replacer,space){var i;gap='';indent='';if(typeof space==='number'){for(i=0;i<space;i+=1){indent+=' ';}}else if(typeof space==='string'){indent=space;}
rep=replacer;if(replacer&&typeof replacer!=='function'&&(typeof replacer!=='object'||typeof replacer.length!=='number')){throw new Error('JSON.stringify');}
return str('',{'':value});};}
if(typeof JSON.parse!=='function'){JSON.parse=function(text,reviver){var j;function walk(holder,key){var k,v,value=holder[key];if(value&&typeof value==='object'){for(k in value){if(Object.hasOwnProperty.call(value,k)){v=walk(value,k);if(v!==undefined){value[k]=v;}else{delete value[k];}}}}
return reviver.call(holder,key,value);}
cx.lastIndex=0;if(cx.test(text)){text=text.replace(cx,function(a){return'\\u'+
('0000'+a.charCodeAt(0).toString(16)).slice(-4);});}
if(/^[\],:{}\s]*$/.test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,'@').replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,']').replace(/(?:^|:|,)(?:\s*\[)+/g,''))){j=eval('('+text+')');return typeof reviver==='function'?walk({'':j},''):j;}
throw new SyntaxError('JSON.parse');};}})();;
(function ($) {
/**
  * Set image settings
  * only used if no template is choosen for the dynamic display block
  */
Drupal.behaviors.ddblockImg = {
  attach: function(context, settings) {
    for (var base in settings.ddblockImages) {
      // get variables
      var ddblockSettings = settings.ddblockImages[base];

      // if no template and CCS is used set the image dimensions here
      if (ddblockSettings.setDimensions == 'none') {
        if ((ddblockSettings.imageHeight > 0) && (ddblockSettings.imageWidth > 0 )) {
          $('#ddblock-'+ ddblockSettings.block +' .ddblock-container img:not(.ddblock-processed)', context)
          .css('height',ddblockSettings.imageHeight + 'px')
          .css('width',ddblockSettings.imageWidth + 'px')
          .addClass('ddblock-processed');
        }
        else{
          $('#ddblock-'+ ddblockSettings.block +' .slider:not(.ddblock-slider-visble-processed)', context)
          .addClass('overflow-visible')
          .addClass('ddblock-slider-visible-processed');        
        }
      }
    }
  }
};

/**
  * Set content dimensions.
  * only used if no template is choosen for the dynamic display block
  */
Drupal.behaviors.ddblockImgContainer = {
  attach: function(context, settings) {
    for (var base in settings.ddblockImageContainer) {
      // get variables
      var ddblockSettings = settings.ddblockImageContainer[base];
      // if no template and CCS is used set the content dimensions here
      if (ddblockSettings.setDimensions == 'none') {
        if ((ddblockSettings.imageContainerHeight > 12) && (ddblockSettings.imageContainerWidth > 12 )) {

          $('#ddblock-' + ddblockSettings.block  +' .ddblock-container:not(.ddblock-processed)', context)
          .css('height',ddblockSettings.imageContainerHeight + 'px')
          .css('width',ddblockSettings.imageContainerWidth + 'px')
          .css('overflow','hidden')
          .addClass('ddblock-processed');
        }
      }
    }
  }
};

/**
  * Set the cycle plugin settings.
  *
  * Examples how and what to override for your own blocks
  *   Replace ddblockCycle with the ddblockCycle[BLOCKNUMBER]
  *   Change the onBefore and onAfter functions
  *
  */
Drupal.behaviors.ddblockCycle = {
  attach: function(context, settings) {

    //helper function to clone the options object
    function CloneObject(inObj) {
      for (i in inObj) {
        this[i] = inObj[i];
      }
    }

    // cycle Plugin onBefore function to add functionality before the next slide shows up
    // can be used to add the following effects to slide-text
    // fadeOut - Fade out all matched elements by adjusting their opacity and firing an optional callback after completion.
    // slideUp - Hide all matched elements by adjusting their height and firing an optional callback after completion.
    // hide - Hide all matched elements using a graceful animation and firing an optional callback after completion.
    function onBefore(curr, next, opts, fwd) {
      if (opts.currSlide != opts.nextSlide) {
        if (opts.slideTextjQuery == 1){
          if (opts.slideTextEffectBeforeSpeed == 0) {
            opts.slideTextEffectBeforeSpeed = 1;
          };
          if (opts.slideTextEffectBeforeEasing == 'none') {
            opts.slideTextEffectBeforeEasing = '';
          };
          switch (opts.slideTextEffectBefore) {
            case "fadeOut":
              $("#ddblock-" + opts.ddblocknr + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition)
              .stop(true,true)
              .fadeOut(opts.slideTextEffectBeforeSpeed, opts.slideTextEffectBeforeEasing);
              $("#ddblock-"+ opts.ddblocknr + ' div.slide-' + opts.nextSlide + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).css({"display":"none"});
            break;
            case "slideUp":
              $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition)
              .stop(true,true)
              .slideUp(opts.slideTextEffectBeforeSpeed, opts.slideTextEffectBeforeEasing);
//              .effect('easeOutBounce','',opts.slideTextEffectAfterSpeed);
             $("#ddblock-"+ opts.ddblocknr + ' div.slide-' + opts.nextSlide + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).css({"display":"none"});
            break;
            default:
              $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition)
              .stop(true,true)
              .hide(opts.slideTextEffectBeforeSpeed, opts.slideTextEffectBeforeEasing);
              $("#ddblock-"+ opts.ddblocknr + ' div.slide-' + opts.nextSlide + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).css({"display":"none"});
           }
        }
      }
    }

    // cycle Plugin onAfter function to add functionality after the next slide shows up
    // can be used to add the following effects to slide-text
    // fadein - Fade in all matched elements by adjusting their opacity and firing an optional callback after completion.
    // slideDown - Reveal all matched elements by adjusting their height and firing an optional callback after completion.
    // show - Show all matched elements using a graceful animation and firing an optional callback after completion.
    function onAfter(curr, next, opts, fwd) {
      if (opts.slideTextjQuery == 1){
        if (opts.slideTextEffectAfterSpeed == 0) {
          opts.slideTextEffectAfterSpeed = 1;
        };
        if (opts.slideTextEffectAfterEasing == 'none') {
          opts.slideTextEffectAfterEasing = '';
        };
        switch (opts.slideTextEffectAfter) {
          case "fadeIn":
            $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-'  + opts.slideTextPosition)
            .fadeIn(opts.slideTextEffectAfterSpeed, opts.slideTextEffectAfterEasing);
            $("#ddblock-"+ opts.ddblocknr + ' div.slide-' + opts.nextSlide + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).css({"display":"none"});
          break;
          case 'slideDown':
            $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition)
            .slideDown(opts.slideTextEffectAfterSpeed, opts.slideTextEffectAfterEasing);
            $("#ddblock-"+ opts.ddblocknr + ' div.slide-' + opts.nextSlide + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).css({"display":"none"});
          break;
          default:
            $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition)
            .show(opts.slideTextEffectAfterSpeed, opts.slideTextEffectAfterEasing);
            $("#ddblock-"+ opts.ddblocknr + ' div.slide-' + opts.nextSlide + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).css({"display":"none"});
        }
      }
      //when scrollable pager is used set active pager-item to current slide
      if (opts.pager1 == 'scrollable-pager' && opts.myScrollable){
        opts.myScrollable.click(opts.currSlide);
      }

      // show pager count (0 of x)
      $("#ddblock-"+ opts.ddblocknr + ' ' + 'a.count').html((opts.currSlide + 1) + " of " + opts.slideCount);

      // Only show prev if previous slide exist - Only show next if next slide exist
      if (opts.pagerPrevNextLoop == 0) {
        var index = $(this).parent().children().index(this);
        $("#ddblock-"+ opts.ddblocknr + ' li.pager-prev ' + ' a.prev')[index == 0 ? 'hide' : 'show']();
        $("#ddblock-"+ opts.ddblocknr + ' li.pager-prev ' + ' a.next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
      }

      // For prev/next pager in the slides. Only show prev if previous slide exist - Only show next if next slide exist

      if (opts.pager2SlideHide == 1) {
        var index = $(this).parent().children().index(this);
        $("#ddblock-"+ opts.ddblocknr + ' div.prev-container ' + 'a.prev')[index == 0 ? 'hide' : 'show']();
        $("#ddblock-"+ opts.ddblocknr + ' div.next-container ' + 'a.next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
      }
    }

    i=0;
    for (var base in settings.ddblockContent) {
      // new options var for every block
      var options = new CloneObject($.fn.cycle.defaults);

      // simplify variable name
      var ddblockSettings = settings.ddblockContent[base];
      var block = ddblockSettings.block;
      var custom = ddblockSettings.custom;
      var pager = ddblockSettings.pager;
      var pager2 = ddblockSettings.pager2;
      var contentContainer = ddblockSettings.contentContainer;
      var pagerContainer = ddblockSettings.pagerContainer;

      // if not processed
      if (!$('#ddblock-' + block + '.ddblock-processed', context).size()) {

        // set transition option
        options.fx = ddblockSettings.fx;
//        options.easeOut = ddblockSettings.easeOut;
        if (ddblockSettings.easeOut != 'none') {
          options.easeOut = ddblockSettings.easeOut;
        }  
        if (ddblockSettings.easeIn != 'none') {
          options.easeIn = ddblockSettings.easeIn;
        }  

        //set delay option for the blocks at different values so they less interfere with eachother
        options.delay = i * -1000;

        // set pager. You can have only one pager per block this way
        if (pager == 'image-pager' || pager == 'number-pager' || pager == 'custom-pager' || pager == 'scrollable-pager') {
          // number pager, image pager , custom pager and scrollable pager
          options.pager = "#ddblock-" + pager + "-" + block;

          //store pager1
          options.pager1 = pager;

          if (pager == 'number-pager') {
            options.pagerAnchorBuilder = function(idx, slide) {
              // return selector string for existing anchor
              return "#ddblock-" + pager + "-" + block + " li.number-pager-item:eq(" + idx + ") a.pager-link";
            }
          }
          if (pager == 'image-pager') {
            options.pagerAnchorBuilder = function(idx, slide) {
              // return selector string for existing anchor
              return "#ddblock-" + pager + "-" + block + " li:eq(" + idx + ") a";
            }
          }
          if (pager == 'custom-pager') {
            options.pagerAnchorBuilder = function(idx, slide) {
              // return selector string for existing anchor
              return "#ddblock-" + pager + "-" + block + " " + pagerContainer + ":eq(" + idx + ") a.pager-link";
            }
          }
          if (pager == 'scrollable-pager') {
            options.pagerAnchorBuilder = function(idx, slide) {
              // return selector string for existing anchor
              return "#ddblock-" + pager + "-" + block + " " + pagerContainer + ":eq(" + idx + ") a.pager-link";
            }
          }
        } // set pager.
        if (pager == 'prev-next-pager' || pager2 == 1) {
          //store pagerPrevNextLoop
          options.pagerPrevNextLoop = ddblockSettings.pagerPrevNextLoop;
          options.prev = "#ddblock-"+ block + " .prev";
          options.next = "#ddblock-"+ block + " .next";
        }
        else {
          //set next
          if (ddblockSettings.next == 1) {
            options.next = "#ddblock-"+ block + ' ' + contentContainer;
          }
        }

        //set event which drives the pager navigation
        options.pagerEvent = ddblockSettings.pagerEvent;

        // If pager fast set use fastOnEvent pager
        options.fastOnEvent = (ddblockSettings.pagerFast == 1) ? 1 : 0;

        // pause slideshow on pager hover
        options.pauseOnPagerHover = (ddblockSettings.pagerPause == 1) ? 1 : 0;

        // disable click if pager is mouseover
        if (ddblockSettings.pagerEvent == 'mouseover') {
          if (ddblockSettings.pagerDisableClick == 1) {
            $("#ddblock-" + pager + "-" + block + " a.pager-link").click(function() {
              return false;
            });
          }
          else {
            $("#ddblock-" + pager + "-" + block + " a.pager-link").click(function() {
              location.href = this.href;
            });
          }
        }

        options.pager2SlideHide = ddblockSettings.pager2SlideHide;

        //set expression for selecting slides (if something other than all children is required)
        //options.slideExpr = contentContainer;

        //set speed of the transition (any valid fx speed value)
        options.speed = ddblockSettings.speed;
        if (options.speed == 0) {
          options.speed = 1;
        };

        //set timeout in milliseconds between slide transitions (0 to disable auto advance)
        options.timeout = ddblockSettings.timeOut;

        //set pause, true to enable "pause on hover"
        options.pause = (ddblockSettings.pause == 1) ? 1 : 0;

        //set custom options, custom need to start with the character {,
        //to prevent errors from a wywsiwyg editor which adds e.g. <br /> to the custom field.
        if (custom && custom[0] == '{') {
          // get the \r\n from the string
          var custom1 = custom.replace(/\r\n/gi,"");

          // parse into JSON object
          var custom2 = JSON.parse(custom1);

          // merge custom2 with options object
          jQuery.extend(true, options, custom2);
        }

        options.ddblocknr = block;
        options.before = onBefore;
        options.after = onAfter;
        options.pagerContainer = ddblockSettings.pagerContainer;

        // redefine Cycle's updateActivePagerLink function
        $.fn.cycle.updateActivePagerLink = function(pager, currSlide) {
          $(pager)
          .find('a.pager-link')
          .removeClass('activeSlide')
          .filter('a.pager-link:eq('+currSlide+')')
          .addClass('activeSlide');
          $(pager)
          .find('.custom-pager-item')
          .removeClass('active-pager-item')
          .filter('.custom-pager-item:eq('+currSlide+')')
          .addClass('active-pager-item');
          $(pager)
          .find('.scrollable-pager-item')
          .removeClass('active-pager-item')
          .filter('.scrollable-pager-item:eq('+currSlide+')')
          .addClass('active-pager-item');
        };
        
        //Basic block
        if (ddblockSettings.setDimensions == 'none') {
          //only one slide
          if (ddblockSettings.nrOfItems <= 1) {
            var $container = $('#ddblock-' + block + ' ' + contentContainer).parent();
            $container
            .css('visibility', 'visible')
            .addClass('ddblock-processed');
            $(contentContainer, $container).css('display', 'block');
            var $slideshowContainer = $('#ddblock-' + block);
            //hide the pager
            $('#ddblock-' + pager + '-' + block, $slideshowContainer).css('display', 'none');
            //hide navi, prev and next pager of scrollable pager
            if (pager == 'scrollable-pager') {
              $('.navi', $slideshowContainer).css('display', 'none');
              $('.prev', $slideshowContainer).css('display', 'none');
              $('.next', $slideshowContainer).css('display', 'none');
            }
          }
          //more than one slide
          else {
            var $container = $('#ddblock-' + block + ' ' + contentContainer).parent();
            $container
            .cycle(options)
            .css('height',ddblockSettings.Height + 'px')
            .css('width',ddblockSettings.Width + 'px')
            .css('overflow', ddblockSettings.overflow)
            .css('visibility', 'visible')
            .addClass('ddblock-processed');
            $('#ddblock-' + block).css('visibility', 'visible');
          }
        }
        // advanced block
        else {
          if (ddblockSettings.slideTextjQuery == 1) {
            //set slidetext options
            options.slideTextContainer = ddblockSettings.slideTextContainer;
            options.slideTextPosition = ddblockSettings.slideTextPosition;
            options.slideTextEffectBefore = ddblockSettings.slideTextEffectBefore;
            options.slideTextEffectBeforeSpeed = ddblockSettings.slideTextEffectBeforeSpeed;
            options.slideTextEffectBeforeEasing = ddblockSettings.slideTextEffectBeforeEasing;
            options.slideTextEffectAfter = ddblockSettings.slideTextEffectAfterEasing;
            options.slideTextEffectAfterSpeed = ddblockSettings.slideTextEffectAfterSpeed;
            options.slideTextEffectAfterEasing = ddblockSettings.slideTextEffectAfterEasing;
            options.slideTextjQuery = ddblockSettings.slideTextjQuery;
          }

          if (pager == 'scrollable-pager') {
            // set scrollableVertical to true when pager at left of right right, otherwise the scrollableVertical to false
            if (ddblockSettings.pagerPosition == 'left' || ddblockSettings.pagerPosition == 'right') {
               scrollableVertical = true;
            }
            else {
              scrollableVertical = false;
            }
            // create one scrollable element and return the API by enabling the "api" property
            var myScrollable = $('#ddblock-scrollable-pager-' + block).scrollable({

              // number of items vissible in scrollable pager
              size: ddblockSettings.nrOfPagerItems,

              //vertical slideshow
              vertical: scrollableVertical,

              circular: true,

              //nextitem navigation, default used
              next: '.next',

              //previtem navigation, default used
              prev: '.prev',

              //enable api property
              api: true

            });
            if (myScrollable) {
              //set first slide as activate slide in scrollable pager
              myScrollable.click(0);

              //set myScrollable cycle option to scrollable API to use in onafter
              options.myScrollable = myScrollable;

              //set total nr of pager items
              options.nrOfPagerItems = ddblockSettings.nrOfPagerItems;
            }
          }

          //only one slide
          if (ddblockSettings.nrOfItems <= 1) {
            //Use the parent of the slides as the parent container so the children function
            //can be used for the second pager
            var $container = $('#ddblock-' + block + ' ' + contentContainer).parent();
            $container
            .css('visibility', 'visible')
            .addClass('ddblock-processed');
            $(contentContainer, $container).css('display', 'block');
            var $slideshowContainer = $('#ddblock-' + block);
            //hide the pager
            $('#ddblock-' + pager + '-' + block, $slideshowContainer).css('display', 'none');
            //hide navi, prev and next pager of scrollable pager
            if (pager == 'scrollable-pager') {
              $('.navi', $slideshowContainer).css('display', 'none');
              $('.prev', $slideshowContainer).css('display', 'none');
              $('.next', $slideshowContainer).css('display', 'none');
            }
          }
          //more then one slide
          else {
            var $container = $('#ddblock-' + block + ' ' + contentContainer).parent();
            $container
            .cycle(options)
            .css('visibility', 'visible')
            .addClass('ddblock-processed');
          }
        }  // advanced block
      } // if not processed
      i++;
    } // for settings.ddblockContent
  } // attach
}; // drupal.behaviors

})(jQuery);
;

