// for logo fadey thing from johan

$(document).ready(function(){
	$('img.logo').hover(
		function() { $(this).fadeTo('fast',0.7);},
		function() { $(this).fadeTo('fast',1);}
	);
});

// rel external to replace target blank
$(document).ready(function(){
	$('a[href^=http]').click( function() {
		window.open(this.href);
		return false;
	});
});

$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$("a[rel='lightbox']").colorbox();
	
	//Example of preserving a JavaScript event for inline calls.
	$("#click").click(function(){ 
		$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
		return false;
	});
});





// ColorBox v1.3.15 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
// Copyright (c) 2010 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function ($, 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,
		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
	},
	
	// Abstracting the HTML and event identifiers for easy rebranding
	colorbox = 'colorbox',
	prefix = 'cbox',
	
	// 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',
	event_loaded = prefix + '_loaded',
	
	// Special Handling for IE
	isIE = $.browser.msie && !$.support.opacity, // feature detection alone gave a false positive on at least one phone browser and on some development versions of Chrome.
	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,

	// Variables for cached values or use across multiple functions
	interfaceHeight,
	interfaceWidth,
	loadedHeight,
	loadedWidth,
	element,
	index,
	settings,
	open,
	active,
	closing = false,
	
	publicMethod,
	boxElement = prefix + 'Element';
	
	// ****************
	// HELPER FUNCTIONS
	// ****************

	// jQuery object generator to reduce code size
	function $div(id, css) { 
		id = id ? ' id="' + prefix + id + '"' : '';
		css = css ? ' style="' + css + '"' : '';
		return $('<div' + id + css + '/>');
	}

	// Convert % values to pixels
	function setSize(size, dimension) {
		dimension = dimension === 'x' ? $window.width() : $window.height();
		return (typeof size === 'string') ? Math.round((/%/.test(size) ? (dimension / 100) * parseInt(size, 10) : parseInt(size, 10))) : size;
	}
	
	// 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 process(settings) {
		for (var 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;
		return settings;
	}

	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();
			}
		}
	}

	function launch(elem) {
		if (!closing) {
			
			element = elem;
			
			settings = process($.extend({}, $.data(element, colorbox)));
			
			$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(0);
				
				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('scroll.' + event_ie6);
				}
				
				trigger(event_open, settings.onOpen);
				
				$current.add($prev).add($next).add($slideshow).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, autoOpen;
		
		if (!$this[0] && $this.selector) { // if a selector was given and it didn't match any elements, go ahead and exit.
			return $this;
		}
		
		options = options || {};
		
		if (callback) {
			options.onComplete = callback;
		}
		
		if (!$this[0] || $this.selector === undefined) { // detects $.colorbox() and $.fn.colorbox()
			$this = $('<a/>');
			options.open = true; // assume an immediate open
		}
		
		$this.each(function () {
			$.data(this, colorbox, $.extend({}, $.data(this, colorbox) || defaults, options));
			$(this).addClass(boxElement);
		});
		
		autoOpen = options.open;
		
		if ($.isFunction(autoOpen)) {
			autoOpen = autoOpen.call($this);
		}
		
		if (autoOpen) {
			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 lightens 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 + '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.
		$next.click(publicMethod.next);
		$prev.click(publicMethod.prev);
		$close.click(publicMethod.close);
		
		// Adding the 'hover' class allowed the browser to load the hover-state
		// background graphics.  The class can now can be removed.
		$content.children().removeClass('hover');
		
		$('.' + boxElement).live('click', 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);
			}
		});
		
		$overlay.click(function () {
			if (settings.overlayClose) {
				publicMethod.close();
			}
		});
		
		// Set Navigation Key Bindings
		$(document).bind("keydown", function (e) {
			if (open && settings.escKey && e.keyCode === 27) {
				e.preventDefault();
				publicMethod.close();
			}
			if (open && settings.arrowKey && !active && $related[1]) {
				if (e.keyCode === 37 && (index || settings.loop)) {
					e.preventDefault();
					$prev.click();
				} else if (e.keyCode === 39 && (index < $related.length - 1 || settings.loop)) {
					e.preventDefault();
					$next.click();
				}
			}
		});
	};
	
	publicMethod.remove = function () {
		$box.add($overlay).remove();
		$('.' + boxElement).die('click').removeData(colorbox).removeClass(boxElement);
	};

	publicMethod.position = function (speed, loadedCallback) {
		var
		animate_speed,
		// keeps the top and left positions within the browser's viewport.
		posTop = Math.max(document.documentElement.clientHeight - settings.h - loadedHeight - interfaceHeight, 0) / 2 + $window.scrollTop(),
		posLeft = Math.max($window.width() - settings.w - loadedWidth - interfaceWidth, 0) / 2 + $window.scrollLeft();
		
		// setting the speed to 0 to reduce the delay between same-sized content.
		animate_speed = ($box.width() === settings.w + loadedWidth && $box.height() === settings.h + loadedHeight) ? 0 : speed;
		
		// 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: posTop, left: posLeft}, {
			duration: animate_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();
				}
			},
			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 photo,
		speed = settings.transition === "none" ? 0 : settings.speed;
		
		$window.unbind('resize.' + prefix);
		$loaded.remove();
		$loaded = $div('LoadedContent').html(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.
		$('#' + prefix + 'Photo').css({cssFloat: 'none', marginLeft: 'auto', marginRight: 'auto'});
		
		// 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';
			});
		}
				
		function setPosition(s) {
			var prev, prevSrc, next, nextSrc, total = $related.length, loop = settings.loop;
			publicMethod.position(s, function () {
				function defilter() {
					if (isIE) {
						//IE adds a filter when ColorBox fades in and out that can cause problems if the loaded content contains transparent pngs.
						$box[0].style.removeAttribute("filter"); 
					}
				}
				
				if (!open) {
					return;
				}
				
				if (isIE) {
					//This fadeIn helps the bicubic resampling to kick-in.
					if (photo) {
						$loaded.fadeIn(100);
					}
				}
				
				$loaded.show();
				
				trigger(event_loaded);
				
				$title.show().html(settings.title);
				
				if (total > 1) { // handle grouping
					if (typeof settings.current === "string") {
						$current.html(settings.current.replace(/\{current\}/, index + 1).replace(/\{total\}/, total)).show();
					}
					
					$next[(loop || index < total - 1) ? "show" : "hide"]().html(settings.next);
					$prev[(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;
						}
					}
				}
				
				$loadingOverlay.hide();
				
				if (settings.transition === 'fade') {
					$box.fadeTo(speed, 1, function () {
						defilter();
					});
				} else {
					defilter();
				}
				
				$window.bind('resize.' + prefix, function () {
					publicMethod.position(0);
				});
				
				trigger(event_complete, settings.onComplete);
			});
		}
		
		if (settings.transition === 'fade') {
			$box.fadeTo(speed, 0, function () {
				setPosition(0);
			});
		} else {
			setPosition(speed);
		}
	};

	publicMethod.load = function (launched) {
		var href, img, setResize, prep = publicMethod.prep;
		
		active = true;
		element = $related[index];
		
		if (!launched) {
			settings = process($.extend({}, $.data(element, colorbox)));
		}
		
		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;
		
		$loadingOverlay.show();

		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.
			$box.one(event_loaded, function () {
				var iframe = $("<iframe frameborder='0' style='width:100%; height:100%; border:0; display:block'/>")[0];
				iframe.name = prefix + (+new Date());
				iframe.src = settings.href;
				
				if (!settings.scrolling) {
					iframe.scrolling = "no";
				}
				
				if (isIE) {
					iframe.allowtransparency = "true";
				}
				
				$(iframe).appendTo($loaded).one(event_purge, function () {
					iframe.src = "//about:blank";
				});
			});
			
			prep(" ");
		} else if (settings.html) {
			prep(settings.html);
		} else if (isImage(href)) {
			img = new Image();
			img.onload = function () {
				var percent;
				img.onload = null;
				img.id = prefix + 'Photo';
				$(img).css({border: 'none', display: 'block', cssFloat: 'left'});
				if (settings.scalePhotos) {
					setResize = function () {
						img.height -= img.height * percent;
						img.width -= img.width * percent;	
					};
					if (settings.mw && img.width > settings.mw) {
						percent = (img.width - settings.mw) / img.width;
						setResize();
					}
					if (settings.mh && img.height > settings.mh) {
						percent = (img.height - settings.mh) / img.height;
						setResize();
					}
				}
				
				if (settings.h) {
					img.style.marginTop = Math.max(settings.h - img.height, 0) / 2 + 'px';
				}
				
				if ($related[1] && (index < $related.length - 1 || settings.loop)) {
					$(img).css({cursor: 'pointer'}).click(publicMethod.next);
				}
				
				if (isIE) {
					img.style.msInterpolationMode = 'bicubic';
				}
				
				setTimeout(function () { // Chrome will sometimes report a 0 by 0 size if there isn't pause in execution
					prep(img);
				}, 1);
			};
			
			setTimeout(function () { // Opera 10.6+ will sometimes load the src before the onload function is set
				img.src = href;
			}, 1);	
		} else if (href) {
			$loadingBay.load(href, function (data, status, xhr) {
				prep(status === 'error' ? 'Request unsuccessful: ' + xhr.statusText : $(this).children());
			});
		}
	};

	// Navigates to the next page/image in a set.
	publicMethod.next = function () {
		if (!active) {
			index = index < $related.length - 1 ? index + 1 : 0;
			publicMethod.load();
		}
	};
	
	publicMethod.prev = function () {
		if (!active) {
			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('fast', 0);
			
			$box.stop().fadeTo('fast', 0, function () {
				
				trigger(event_purge);
				
				$loaded.remove();
				
				$box.add($overlay).css({'opacity': 1, cursor: 'auto'}).hide();
				
				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;

	// Initializes ColorBox when the DOM has loaded
	$(publicMethod.init);

}(jQuery, this));


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																										   /*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991, 1992 Adobe Systems Incorporated.  All Rights Reserved.PMN
 * Caecilia is a trademark of Linotype-Hell AG and/or its subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1991, 1992 Adobe Systems.  All Rights
 * Reserved. This software is the property of Adobe Systems  Incorporated and its
 * licensors, and may not be reproduced, used,   displayed, modified, disclosed or
 * transferred without the express   written approval of Adobe.    The digitally
 * encoded machine readable outline data for producing  the Typefaces licensed to
 * you is copyrighted (c) 1981 Linotype-Hell AG  and/or its subsidiaries. All
 * Rights Reserved.  This data is the property of Linotype-Hell AG and/or its
 * subsidiaries  and may not be reproduced, used, displayed, modified, disclosed or
 *   transferred without the express written approval of Linotype-Hell AG   and/or
 * its subsidiaries.  12 PMN Caecilia* 55 Roman 05663
 * 
 * Vendor URL:
 * www.linotypelibrary.com
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Caecilia LT Roman","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-20 -302 386 97","underline-thickness":"8.78906","underline-position":"-13.1836","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"!":{"d":"57,4v-13,0,-23,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,10,22,22v0,12,-10,22,-22,22xm41,-277r34,0r-4,192r-26,0","w":113},"\"":{"d":"63,-261v0,33,5,76,-16,87v-22,-11,-10,-56,-17,-87v0,-12,6,-19,17,-19v11,0,16,7,16,19xm130,-261v0,32,4,75,-17,87v-21,-12,-16,-54,-16,-87v0,-12,5,-19,16,-19v11,0,17,7,17,19","w":159},"#":{"d":"63,-152r-40,0r0,-20r44,0r18,-80r22,0r-17,80r40,0r18,-80r23,0r-18,80r40,0r0,20r-44,0r-12,52r40,0r0,20r-44,0r-18,80r-22,0r18,-80r-41,0r-18,80r-22,0r17,-80r-40,0r0,-20r45,0xm74,-100r41,0r11,-52r-41,0"},"$":{"d":"110,-21v41,1,68,-54,34,-79v-8,-6,-19,-9,-33,-12xm90,-232v-43,-3,-68,54,-30,76v8,5,19,8,29,10xm10,-184v-2,-41,36,-74,80,-72r0,-46r23,0r0,46v16,0,46,4,63,10r0,51r-27,0r0,-30v-13,-4,-25,-7,-37,-7r0,90v42,11,78,20,78,70v0,45,-36,72,-80,76r0,46r-22,0r0,-46v-18,-1,-64,-3,-78,-12r0,-55r30,0r0,35v14,6,30,7,48,8r0,-95v-47,-10,-76,-22,-78,-69"},"%":{"d":"221,-272r18,12r-162,280r-18,-12xm195,-55v0,20,12,37,31,37v20,0,32,-16,31,-37v0,-20,-12,-37,-31,-37v-20,0,-32,16,-31,37xm284,-55v0,33,-24,59,-57,59v-34,0,-59,-26,-59,-59v0,-33,25,-59,59,-59v33,0,57,25,57,59xm41,-197v0,20,12,37,32,37v19,0,31,-17,31,-37v0,-20,-12,-37,-31,-37v-20,0,-32,17,-32,37xm131,-197v1,33,-25,60,-57,60v-34,1,-59,-26,-59,-60v0,-34,25,-59,59,-59v33,0,57,26,57,59","w":299},"&":{"d":"168,-204v0,31,-25,48,-51,64r73,74v11,-20,19,-35,18,-63r-27,0r0,-23r80,0r0,23r-28,0v1,27,-12,60,-26,80v15,11,29,33,54,26r0,23v-33,6,-53,-12,-69,-29v-43,52,-166,43,-166,-36v0,-42,21,-52,54,-75v-19,-22,-34,-30,-34,-61v0,-36,24,-55,64,-55v34,0,58,19,58,52xm55,-70v-3,55,92,64,119,24r-79,-79v-24,17,-37,25,-40,55xm108,-234v-41,1,-46,47,-16,69v6,4,5,4,10,9v24,-15,37,-20,40,-48v2,-18,-16,-30,-34,-30","w":280},"'":{"d":"59,-179v-7,10,-22,4,-20,-11r-6,-71v0,-12,6,-19,17,-19v34,8,8,68,9,101","w":100},"(":{"d":"91,97v-57,-69,-83,-184,-48,-291v10,-29,26,-59,48,-90r21,14v-32,41,-54,106,-54,177v0,61,25,141,54,176","w":113},")":{"d":"22,-284v57,70,83,184,48,291v-10,28,-26,58,-48,90r-21,-14v70,-79,70,-271,0,-353","w":113},"*":{"d":"52,-277r23,0r-5,45r37,-24r10,18r-41,17r41,18r-10,18r-37,-24r5,45r-23,0r5,-45r-37,24r-11,-18r42,-18r-42,-17r11,-18r37,24","w":126},"+":{"d":"96,-79r-79,0r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0r0,-79","w":216},",":{"d":"49,-40v42,6,30,74,0,95r-11,11r-14,-14v8,-10,21,-20,21,-38v0,-11,-17,-25,-17,-35v0,-11,9,-20,21,-19","w":100},"-":{"d":"27,-112r93,0r0,27r-93,0r0,-27","w":146},".":{"d":"50,4v-12,0,-22,-9,-22,-22v0,-12,9,-22,22,-22v12,0,22,9,22,22v0,12,-9,22,-22,22","w":100},"\/":{"d":"108,-280r22,9r-117,299r-23,-9","w":133},"0":{"d":"12,-122v-1,-67,26,-135,88,-134v65,1,87,58,88,126v0,68,-26,134,-88,134v-65,-1,-87,-59,-88,-126xm156,-105v4,-57,-7,-126,-56,-127v-43,-1,-57,58,-57,106v0,49,14,106,57,106v37,0,53,-45,56,-85"},"1":{"d":"105,-252r23,0r-1,229r52,0r0,23r-132,0r0,-23r50,0r1,-199v-19,15,-43,28,-63,42r-13,-21"},"2":{"d":"99,-232v-33,0,-46,19,-52,51r-29,0v2,-43,34,-75,80,-75v69,0,94,69,60,125v-24,40,-66,76,-100,108v40,-2,84,0,125,-1r0,24r-166,0r0,-21v46,-51,120,-84,127,-167v2,-26,-20,-44,-45,-44"},"3":{"d":"149,-72v-2,-41,-40,-45,-82,-45r0,-24v40,3,71,-18,72,-52v1,-24,-18,-40,-42,-39v-26,0,-48,15,-49,43r-28,0v0,-42,36,-67,80,-67v41,0,69,22,70,60v1,37,-23,56,-52,63v37,3,62,24,62,63v0,73,-102,90,-159,61r0,-29v35,27,131,27,128,-34"},"4":{"d":"89,-23r29,0r1,-53r-114,0r0,-22r109,-154r34,0r-1,152r48,0r0,24r-48,0r-1,53r30,0r0,23r-87,0r0,-23xm119,-100r0,-118r-84,119v26,-3,56,0,84,-1"},"5":{"d":"145,-76v-3,-50,-55,-56,-114,-56r1,-120r134,0r0,25r-106,0r-1,71v66,2,114,19,117,78v4,73,-87,98,-152,73r0,-27v44,22,124,16,121,-44"},"6":{"d":"155,-78v0,-63,-86,-64,-108,-22v0,41,20,80,57,80v32,0,51,-26,51,-58xm16,-111v0,-101,62,-162,163,-141r-3,25v-74,-22,-134,26,-130,102v39,-53,144,-33,138,47v-4,49,-31,83,-81,82v-59,0,-87,-50,-87,-115"},"7":{"d":"21,-252r158,0r0,20r-117,232r-36,0v52,-73,77,-149,122,-225r-127,0r0,-27"},"8":{"d":"100,-20v57,0,76,-64,25,-83r-26,-14v-26,13,-53,26,-53,56v0,29,23,41,54,41xm100,-232v-51,-3,-62,63,-18,79r19,10v20,-11,47,-24,47,-52v0,-26,-22,-35,-48,-37xm100,4v-49,0,-85,-18,-85,-63v0,-39,26,-56,61,-70v-30,-14,-51,-28,-52,-64v-1,-39,31,-63,76,-63v43,-1,80,19,78,58v-1,36,-22,51,-53,67v28,13,60,35,60,68v0,46,-35,67,-85,67"},"9":{"d":"46,-174v0,63,85,64,107,22v1,-42,-19,-80,-56,-80v-30,0,-51,22,-51,58xm184,-141v0,101,-60,162,-163,141r3,-24v77,18,132,-27,130,-103v-38,53,-144,32,-138,-47v4,-49,32,-82,82,-82v59,1,86,50,86,115"},":":{"d":"50,4v-12,0,-22,-9,-22,-22v0,-12,9,-22,22,-22v12,0,22,9,22,22v0,12,-9,22,-22,22xm50,-141v-12,0,-22,-10,-22,-22v0,-13,10,-23,22,-23v12,0,22,10,22,23v0,12,-10,22,-22,22","w":100},";":{"d":"50,-141v-12,0,-22,-10,-22,-22v0,-13,10,-23,22,-23v12,0,22,10,22,23v0,12,-10,22,-22,22xm49,-40v42,6,30,74,0,95r-11,11r-14,-14v8,-10,21,-20,21,-38v0,-11,-17,-25,-17,-35v0,-11,9,-20,21,-19","w":100},"<":{"d":"17,-103r182,-82r0,25r-153,69r153,69r0,25r-182,-83r0,-23","w":216},"=":{"d":"17,-67r182,0r0,24r-182,0r0,-24xm17,-139r182,0r0,24r-182,0r0,-24","w":216},">":{"d":"199,-80r-182,83r0,-25r153,-69r-153,-69r0,-25r182,83r0,22","w":216},"?":{"d":"67,4v-13,0,-23,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,10,22,22v0,12,-10,22,-22,22xm112,-185v24,-30,4,-70,-41,-70v-10,0,-22,2,-35,7r-2,-24v52,-19,119,-3,119,56v0,57,-64,64,-81,106v-1,7,6,14,10,19r-24,13v-33,-33,-3,-70,27,-83v13,-9,22,-18,27,-24","w":180},"@":{"d":"68,-105v0,-66,80,-133,119,-68r6,-20r25,0r-30,112v0,6,4,8,12,8v24,-1,43,-42,43,-72v0,-49,-43,-85,-93,-85v-58,0,-105,47,-105,105v0,59,45,103,102,103v40,0,69,-11,87,-33r29,0v-18,36,-61,59,-116,59v-77,0,-133,-53,-133,-130v0,-76,60,-130,136,-130v68,0,125,43,124,107v-2,57,-33,97,-89,100v-18,1,-23,-9,-26,-20v-31,38,-91,19,-91,-36xm123,-75v27,0,53,-33,53,-65v0,-22,-10,-33,-29,-33v-29,-1,-51,34,-51,64v0,22,9,34,27,34","w":287},"A":{"d":"4,-23r23,0r94,-229r33,0r85,229r24,0r0,23r-85,0r0,-23r26,0r-26,-76r-92,0r-29,76r30,0r0,23r-83,0r0,-23xm170,-122r-36,-101r-39,101r75,0","w":266,"k":{"y":27,"w":27,"v":23,"u":9,"Y":33,"W":27,"V":33,"U":11,"T":33,"Q":13,"O":13,"G":13,"C":13}},"B":{"d":"205,-70v2,84,-104,70,-188,70r0,-23r27,0r1,-206r-28,0r0,-23v76,1,172,-15,172,61v0,33,-23,53,-49,59v37,-1,65,27,65,62xm172,-70v0,-46,-45,-51,-96,-48r-1,95v52,0,97,3,97,-47xm158,-186v0,-43,-37,-46,-82,-43r0,88v45,2,82,-4,82,-45","w":226,"k":{"A":11,".":9,",":9}},"C":{"d":"18,-124v0,-110,108,-156,211,-120r0,58r-28,0r0,-40v-79,-22,-150,16,-150,98v0,84,62,123,146,103r1,-42r28,0r-1,61v-14,6,-48,10,-72,10v-85,0,-135,-44,-135,-128","w":246,"k":{"A":9}},"D":{"d":"255,-130v0,86,-51,130,-138,130r-102,0r0,-23r28,0r1,-206r-29,0r0,-23r114,0v79,0,126,44,126,122xm222,-130v0,-82,-57,-108,-147,-99r-1,206v92,7,148,-20,148,-107","w":273,"k":{"Y":27,"W":16,"V":16,"A":20,".":16,",":16}},"E":{"d":"44,-229r-29,0r0,-23r171,0r0,58r-27,0r0,-35r-84,0r0,88r79,0r0,23r-79,0r-1,95r87,0r2,-39r27,0r-2,62r-173,0r0,-23r28,0","w":206},"F":{"d":"44,-229r-29,0r0,-23r169,0r1,59r-27,0r-1,-36r-82,0r0,92r86,0r0,23r-86,0r-1,91r32,0r0,23r-91,0r0,-23r28,0","k":{"r":7,"o":11,"i":7,"e":11,"a":16,"A":27,".":46,",":46}},"G":{"d":"51,-128v0,84,64,123,146,103r0,-62r-31,0r0,-23r87,0r0,23r-28,0r0,81v-14,6,-48,10,-72,10v-85,0,-135,-44,-135,-128v0,-112,112,-158,211,-119r0,57r-27,0r0,-38v-75,-26,-151,11,-151,96","w":259,"k":{".":9,",":9}},"H":{"d":"44,-229r-29,0r0,-23r88,0r0,23r-28,0r0,92r130,0r1,-92r-28,0r0,-23r87,0r0,23r-28,0r-1,206r29,0r0,23r-87,0r0,-23r27,0r0,-91r-130,0r-1,91r29,0r0,23r-88,0r0,-23r28,0","w":280},"I":{"d":"45,-229r-28,0r0,-23r87,0r0,23r-28,0r-1,206r29,0r0,23r-87,0r0,-23r27,0","w":120},"J":{"d":"-20,43v85,-29,59,-164,65,-272r-30,0r0,-23r87,0r0,23r-26,0v-5,82,11,190,-22,243v-12,19,-34,37,-65,52","w":113,"k":{"u":7,"o":4,"e":4,"a":4,"A":7,".":13,",":13}},"K":{"d":"15,-252r88,0r0,23r-28,0r0,96r109,-96r-31,0r0,-23r87,0r0,23r-22,0r-112,98r114,108r23,0r0,23r-92,0r0,-23r30,0r-106,-100r-1,100r29,0r0,23r-88,0r0,-23r28,0r1,-206r-29,0r0,-23","w":253,"k":{"y":20,"u":13,"o":11,"e":4,"O":16}},"L":{"d":"44,-229r-29,0r0,-23r86,0r0,23r-26,0r-1,206r86,0r2,-39r27,0r-2,62r-172,0r0,-23r28,0","k":{"y":27,"Y":40,"W":33,"V":33,"T":33}},"M":{"d":"13,-252r68,0r81,201v1,5,1,6,4,16v24,-77,58,-144,85,-217r70,0r0,23r-33,0r2,206r31,0r0,23r-87,0r0,-23r27,0r0,-184r-83,207r-27,0r-83,-205r-1,182r31,0r0,23r-85,0r0,-23r29,0r2,-206r-31,0r0,-23","w":333},"N":{"d":"44,-229r-33,0r0,-23r60,0r150,203r1,-180r-31,0r0,-23r85,0r0,23r-27,0r-2,229r-25,0r-153,-205r-2,182r32,0r0,23r-84,0r0,-23r28,0","w":286,"k":{"A":7,".":9,",":9}},"O":{"d":"137,-232v-56,0,-86,46,-86,106v0,60,30,106,86,106v56,0,86,-48,86,-106v0,-59,-29,-106,-86,-106xm137,4v-73,0,-120,-53,-119,-126v0,-78,43,-134,119,-134v73,0,120,53,119,126v0,77,-43,134,-119,134","w":273,"k":{"Y":27,"X":9,"W":13,"V":13,"T":9,"A":16,".":16,",":16}},"P":{"d":"162,-178v0,-45,-37,-56,-87,-51r0,104v50,4,87,-6,87,-53xm193,-181v0,62,-48,87,-118,79r-1,79r32,0r0,23r-91,0r0,-23r28,0r1,-206r-29,0r0,-23v82,-1,178,-10,178,71","w":206,"k":{"o":11,"e":9,"a":9,"A":27,".":46,",":46}},"Q":{"d":"223,-126v0,-59,-29,-106,-86,-106v-56,0,-86,46,-86,106v0,60,30,106,86,106v56,0,86,-48,86,-106xm175,-1v34,7,80,50,126,38r-1,23v-67,12,-116,-36,-174,-56v-67,-4,-108,-55,-108,-126v0,-78,43,-134,119,-134v73,0,120,53,119,126v0,65,-30,115,-81,129","w":273,"k":{"U":4}},"R":{"d":"193,-187v0,39,-28,62,-59,69v42,10,46,74,77,94r21,1r0,23v-32,2,-54,-3,-62,-24v-16,-25,-31,-57,-49,-79v-9,-10,-27,-9,-45,-9r-1,89r29,0r0,23r-87,0r0,-23r27,0r1,-206r-28,0r0,-23v78,3,176,-18,176,65xm162,-184v0,-45,-39,-47,-86,-45r0,95v48,3,86,-6,86,-50","w":233,"k":{"Y":20,"W":20,"V":20,"U":4,"T":13,"O":4}},"S":{"d":"195,-71v0,80,-105,87,-171,63r0,-56r29,0r0,34v36,18,109,15,109,-37v0,-47,-91,-48,-116,-71v-50,-46,-6,-118,71,-118v21,0,50,5,68,11r0,51r-28,0r0,-31v-38,-15,-104,-8,-100,37v6,64,138,31,138,117","w":213,"k":{".":9,",":7}},"T":{"d":"105,-229r-69,0r-2,39r-27,0r2,-62r222,0r2,62r-26,0r-3,-39r-68,0r-2,206r32,0r0,23r-90,0r0,-23r27,0","w":240,"k":{"y":54,"w":54,"u":46,"r":33,"o":40,"i":20,"e":27,"a":33,"O":9,"A":33,";":27,":":27,".":40,",":40}},"U":{"d":"137,4v-121,9,-97,-117,-96,-233r-29,0r0,-23r87,0r0,23r-27,0v9,85,-38,209,66,209v100,0,59,-123,68,-209r-31,0r0,-23r87,0r0,23r-28,0r-1,136v1,69,-30,92,-96,97","w":273,"k":{"A":20,".":16,",":16}},"V":{"d":"24,-229r-23,0r0,-23r87,0r0,23r-28,0r73,202r71,-202r-30,0r0,-23r85,0r0,23r-24,0r-88,229r-34,0","w":259,"k":{"u":20,"o":27,"i":13,"e":27,"a":33,"O":11,"G":13,"A":33,";":27,":":27,".":46,",":46}},"W":{"d":"26,-229r-25,0r0,-23r87,0r0,23r-29,0r67,205r59,-160r-14,-45r-27,0r0,-23r85,0r0,23r-27,0r61,205r70,-205r-32,0r0,-23r85,0r0,23r-24,0r-84,229r-35,0r-46,-148r-57,148r-35,0","w":386,"k":{"y":23,"u":13,"o":27,"i":11,"e":27,"a":27,"O":13,"A":27,";":27,":":27,".":46,",":46}},"X":{"d":"111,-127r-72,-102r-26,0r0,-23r91,0r0,23r-29,0v19,23,37,54,55,79r59,-79r-30,0r0,-23r83,0r0,23r-24,0r-73,99r75,107r24,0r0,23r-89,0r0,-23r28,0v-22,-27,-38,-56,-58,-84r-62,84r29,0r0,23r-83,0r0,-23r23,0","w":253},"Y":{"d":"3,-252r87,0r0,23r-26,0r71,96r70,-96r-31,0r0,-23r83,0r0,23r-23,0r-86,120r-1,86r28,0r0,23r-85,0r0,-23r26,0r1,-85r-88,-121r-26,0r0,-23","w":259,"k":{"u":33,"o":40,"i":20,"e":33,"a":33,"S":13,"O":20,"A":33,";":33,":":33,".":46,",":46}},"Z":{"d":"19,-21r159,-208r-123,0r-2,37r-27,0r2,-60r186,0r0,23r-157,206r129,0r2,-38r27,0r-3,61r-193,0r0,-21","w":233},"[":{"d":"38,-277r64,0r0,23r-34,0r-2,322r34,0r0,22r-63,0","w":113},"\\":{"d":"143,19r-22,9r-118,-299r22,-9","w":133},"]":{"d":"75,90r-63,0r0,-22r33,0r2,-322r-34,0r0,-23r63,0","w":113},"^":{"d":"108,-224r-51,103r-25,0r65,-131r22,0r65,131r-25,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"`":{"d":"86,-232r-17,15r-68,-56r19,-16","w":113},"a":{"d":"140,-106v2,-38,-6,-62,-42,-61v-16,0,-29,2,-41,7r0,29r-27,0r0,-45v65,-29,153,-19,138,71r-2,82r27,0r0,23r-53,0v0,-13,0,-26,3,-40v-13,59,-124,62,-120,-9v3,-55,54,-57,117,-57xm52,-50v-2,34,48,40,69,19v12,-12,19,-29,19,-54v-47,0,-86,-2,-88,35","w":206,"k":{"y":11,"w":11,"v":11,"g":4,"b":4}},"b":{"d":"98,4v-26,0,-49,-7,-68,-14r1,-244r-31,0r0,-23r61,0r-3,132v7,-26,33,-45,65,-45v50,0,75,38,75,90v0,62,-36,104,-100,104xm115,-166v-60,-2,-56,76,-56,137v51,24,108,-6,108,-71v0,-38,-17,-65,-52,-66","w":213,"k":{"y":11,"v":9,"l":4,".":9,",":9}},"c":{"d":"48,-93v0,64,58,89,121,62r-2,26v-77,27,-150,-6,-150,-88v0,-82,77,-115,153,-88r0,49r-27,0r0,-29v-51,-17,-95,12,-95,68","w":186,"k":{"y":9,"k":7,"h":7}},"d":{"d":"20,-85v0,-77,65,-125,137,-97r0,-72r-37,0r0,-23r67,0r-2,254r28,0r0,23r-57,0v0,-14,1,-26,3,-37v-9,22,-32,41,-62,41v-47,0,-77,-35,-77,-89xm103,-20v62,0,54,-74,54,-137v-51,-25,-111,8,-107,72v3,37,19,64,53,65","w":226,"k":{"y":9,"w":11,"v":7}},"e":{"d":"103,-190v57,0,80,41,80,100r-135,0v-4,70,73,85,126,56r-1,25v-10,6,-42,13,-61,13v-61,0,-95,-34,-95,-96v0,-56,31,-99,86,-98xm152,-113v6,-48,-57,-71,-88,-39v-10,10,-15,24,-16,39r104,0","k":{"y":11,"x":2,"w":11,"v":11,"p":4,"g":7,"b":2,".":7,",":7}},"f":{"d":"47,-186v-9,-77,42,-107,110,-89r-1,24v-47,-13,-90,3,-79,65r48,0r0,23r-48,0r-1,140r31,0r0,23r-85,0r0,-23r25,0r0,-140r-30,0r0,-23r30,0","w":133},"g":{"d":"153,-123v0,-27,-22,-44,-50,-44v-29,0,-50,18,-50,45v0,25,22,45,48,45v28,0,52,-19,52,-46xm47,39v6,45,123,47,123,-4v0,-31,-54,-23,-82,-31v-18,4,-43,20,-41,35xm25,-123v1,-53,54,-77,109,-63r69,0r0,23v-15,1,-28,-1,-41,-2v42,42,1,118,-61,111v-23,-2,-53,22,-16,30v45,10,112,4,114,56v4,81,-175,86,-179,12v-2,-27,20,-41,46,-46v-19,-4,-28,-14,-28,-29v0,-20,16,-21,34,-29v-27,-7,-48,-27,-47,-63","k":{"i":-4,"e":-4,"a":-2}},"h":{"d":"129,-166v-64,0,-55,78,-56,143r27,0r0,23r-83,0r0,-23r26,0r2,-231r-36,0r0,-23r65,0v-1,46,4,91,-4,132v8,-24,36,-45,67,-45v80,0,62,88,62,167r27,0r0,23r-80,0r0,-23r24,0v-4,-57,20,-142,-41,-143","w":240,"k":{"y":11}},"i":{"d":"78,-257v0,28,-45,28,-45,0v0,-33,45,-27,45,0xm45,-163r-34,0r0,-23r63,0r-1,163r29,0r0,23r-88,0r0,-23r29,0","w":113,"k":{"v":4}},"j":{"d":"83,-257v0,27,-45,28,-45,0v0,-12,10,-23,22,-23v12,0,23,11,23,23xm-20,71v87,-13,66,-135,69,-234r-34,0r0,-23r64,0v-6,118,25,264,-94,281","w":113},"k":{"d":"45,-254r-36,0r0,-23r65,0r-1,173r71,-59r-26,0r0,-23r81,0r0,23r-19,0r-77,63r84,77r20,0r0,23r-81,0r0,-23r23,0r-76,-72r0,72r24,0r0,23r-80,0r0,-23r26,0","w":213,"k":{"y":4}},"l":{"d":"45,-254r-36,0r0,-23r65,0r-1,254r29,0r0,23r-85,0r0,-23r26,0","w":113,"k":{"y":4,"w":4}},"m":{"d":"127,-166v-62,0,-54,79,-54,143r27,0r0,23r-80,0r0,-23r23,0r2,-140r-30,0r0,-23r59,0v1,14,-4,31,-3,41v9,-53,115,-63,122,-2v11,-21,29,-43,64,-43v79,0,62,89,62,167r27,0r0,23r-80,0r0,-23r24,0v1,-61,1,-90,1,-90v1,-34,-10,-53,-41,-53v-62,0,-54,78,-53,143r26,0r0,23r-81,0r0,-23r24,0v1,-61,1,-90,1,-90v0,-34,-10,-53,-40,-53","w":360,"k":{"y":7,"u":4}},"n":{"d":"137,-190v80,-3,62,88,62,167r27,0r0,23r-80,0r0,-23r24,0v-4,-57,20,-142,-41,-143v-64,0,-55,78,-56,143r27,0r0,23r-80,0r0,-23r23,0r2,-140r-30,0r0,-23r59,0v1,14,-4,31,-3,41v6,-26,36,-45,66,-45","w":240,"k":{"y":11,"v":11,"u":4}},"o":{"d":"107,-166v-37,0,-59,33,-59,73v0,41,21,73,59,73v38,0,59,-33,59,-73v0,-41,-22,-72,-59,-73xm107,4v-55,0,-90,-38,-90,-92v-1,-58,34,-102,90,-102v54,0,90,38,90,92v0,58,-34,102,-90,102","w":213,"k":{"y":9,"x":2,"w":9,"v":9,"g":2,".":9,",":9}},"p":{"d":"127,-166v-62,0,-56,74,-56,137v54,26,108,-8,108,-71v0,-38,-17,-66,-52,-66xm210,-100v0,75,-61,122,-138,98r-1,70r31,0r0,22r-87,0r0,-22r26,0r2,-231r-32,0r0,-23r61,0v1,11,-2,30,-3,41v7,-25,34,-45,66,-45v50,0,75,38,75,90","w":226,"k":{"y":11,".":9,",":9}},"q":{"d":"20,-85v0,-86,74,-126,155,-95r11,0r-1,248r28,0r0,22r-85,0r0,-22r27,0v1,-34,-1,-76,4,-105v-7,23,-32,41,-62,41v-49,-1,-77,-34,-77,-89xm103,-20v59,0,55,-74,54,-137v-51,-25,-111,8,-107,72v3,37,19,65,53,65","w":226},"r":{"d":"150,-159v-45,-15,-75,23,-76,67r-1,69r31,0r0,23r-87,0r0,-23r26,0r2,-140r-32,0r0,-23r61,0v2,16,-3,40,-3,58v9,-44,33,-68,82,-58","w":153,"k":{"y":4,"o":4,"g":9,"e":4,"d":9,"c":7,"a":7,".":20,",":20}},"s":{"d":"38,-97v-41,-34,-9,-101,54,-93v16,2,43,5,59,11r1,45r-26,0v-1,-16,1,-33,-18,-32v-28,-4,-62,2,-59,27v5,50,112,16,112,84v0,65,-86,68,-140,48r-1,-47r26,0r2,27v25,14,86,15,85,-22v-1,-36,-73,-29,-95,-48","w":180,"k":{"w":9}},"t":{"d":"135,-4v-48,20,-94,6,-93,-66r1,-93r-29,0r0,-23r30,0r1,-45r30,-2r-2,47r58,0r0,23r-58,0r-2,93v-7,52,29,58,65,42","w":140},"u":{"d":"105,4v-48,0,-66,-25,-65,-76v0,-3,0,-33,1,-91r-30,0r0,-23r59,0v6,61,-25,164,40,166v64,1,55,-77,55,-143r-29,0r0,-23r59,0r-1,163r26,0r0,23r-55,0v0,-19,2,-26,3,-41v-7,23,-34,46,-63,45","w":233},"v":{"d":"4,-186r76,0r0,23r-22,0r47,135v13,-48,32,-90,48,-135r-24,0r0,-23r74,0r0,23r-21,0r-64,163r-29,0r-65,-163r-20,0r0,-23","w":206,"k":{"o":4,"e":4,"a":4,".":33,",":33}},"w":{"d":"6,-186r76,0r0,23r-22,0r46,135v11,-36,27,-72,40,-107r-11,-28r-20,0r0,-23r76,0r0,23r-25,0r45,135v13,-47,32,-90,47,-135r-25,0r0,-23r74,0r0,23r-21,0r-62,163r-31,0r-35,-105v-10,36,-27,71,-40,105r-29,0r-62,-163r-21,0r0,-23","w":313,"k":{"o":7,"e":7,"a":4,".":33,",":33}},"x":{"d":"11,-186r81,0r0,23v-10,1,-32,-3,-18,6r36,45r42,-51r-26,0r0,-23r74,0r0,23r-21,0r-56,66r59,74r23,0r0,23r-81,0r0,-23r25,0v-16,-17,-30,-37,-45,-55r-45,55r24,0r0,23r-74,0r0,-23r21,0r60,-72r-55,-68r-24,0r0,-23","w":213},"y":{"d":"4,-186r78,0r0,23r-23,0r50,135v13,-49,31,-88,46,-135r-26,0r0,-23r74,0r0,23r-21,0v-29,72,-55,182,-96,235v-16,21,-48,29,-77,19r0,-24v48,13,74,-21,85,-59r-69,-171r-21,0r0,-23","w":206,"k":{"o":7,"e":7,"a":7,".":33,",":33}},"z":{"d":"172,0r-154,0r0,-22r121,-141r-88,0r-1,30r-27,0r1,-53r150,0r0,21r-107,128r-14,14r92,0r3,-31r27,0","w":193},"{":{"d":"37,-129v8,-62,-26,-165,63,-148r0,23v-52,-5,-24,60,-33,110v1,31,-6,42,-25,51v38,10,22,71,25,119v1,31,2,41,33,42r0,22v-77,15,-63,-61,-62,-131v0,-26,-1,-41,-25,-40r0,-24v17,1,22,-5,24,-24","w":113},"|":{"d":"28,-270r24,0r0,360r-24,0r0,-360","w":79},"}":{"d":"76,-57v-9,64,26,164,-63,147r0,-22v71,9,-3,-136,58,-162v-37,-11,-23,-70,-25,-118v-1,-32,-1,-42,-33,-42r0,-23v76,-14,64,62,62,131v0,26,1,43,25,41r0,24v-17,-1,-22,5,-24,24","w":113},"~":{"d":"68,-91v-13,-1,-25,13,-30,25r-13,-18v12,-19,20,-29,44,-31v15,-1,66,25,78,24v15,-2,21,-10,31,-25r13,18v-15,17,-18,28,-45,31v-12,1,-68,-25,-78,-24","w":216},"\u00a0":{"w":100}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991, 1992 Adobe Systems Incorporated.  All Rights Reserved.PMN
 * Caecilia is a trademark of Linotype-Hell AG and/or its subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1991, 1992 Adobe Systems.  All Rights
 * Reserved. This software is the property of Adobe Systems  Incorporated and its
 * licensors, and may not be reproduced, used,   displayed, modified, disclosed or
 * transferred without the express   written approval of Adobe.    The digitally
 * encoded machine readable outline data for producing  the Typefaces licensed to
 * you is copyrighted (c) 1981 Linotype-Hell AG  and/or its subsidiaries. All
 * Rights Reserved.  This data is the property of Linotype-Hell AG and/or its
 * subsidiaries  and may not be reproduced, used, displayed, modified, disclosed or
 *   transferred without the express written approval of Linotype-Hell AG   and/or
 * its subsidiaries.  12 PMN Caecilia* 75 Bold 07663
 * 
 * Vendor URL:
 * www.linotypelibrary.com
 */
Cufon.registerFont({"w":213,"face":{"font-family":"Caecilia LT Bold","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-26 -304 397 98","underline-thickness":"8.78906","underline-position":"-13.1836","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":106},"!":{"d":"53,5v-15,0,-28,-12,-28,-27v0,-15,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,27,-28,27xm34,-83r-4,-194r47,0r-5,194r-38,0","w":106},"\"":{"d":"53,-281v40,0,9,70,13,109v-2,8,-4,14,-13,13v-22,-2,-12,-39,-17,-58v-1,-25,-13,-64,17,-64xm121,-281v40,0,9,70,13,109v-2,8,-4,14,-13,13v-22,-2,-12,-39,-17,-58v-1,-25,-13,-64,17,-64","w":173},"#":{"d":"123,-76r-47,0r-11,76r-25,0r11,-76r-33,0r0,-25r36,0r7,-50r-33,0r0,-25r37,0r11,-76r25,0r-11,76r47,0r11,-76r25,0r-11,76r33,0r0,25r-36,0r-7,50r33,0r0,25r-37,0r-11,76r-25,0xm134,-151r-48,0r-6,50r47,0"},"$":{"d":"91,5v-26,0,-62,-4,-80,-10r0,-62r36,0r0,35v13,4,28,6,44,6r1,-85v-36,-11,-82,-25,-82,-70v0,-46,38,-74,83,-76r1,-47r27,0r-1,47v23,0,47,5,67,11r0,56r-34,0r0,-30v-12,-4,-23,-6,-33,-6r0,83v44,12,84,21,83,74v-1,46,-38,71,-85,74r0,44r-28,0xm120,-104r-2,78v51,1,60,-68,12,-75xm93,-226v-43,-1,-59,63,-13,72r12,3"},"%":{"d":"219,-272r24,14r-166,279r-24,-14xm16,-198v0,-35,25,-59,60,-59v36,0,57,22,57,58v0,35,-23,60,-58,59v-35,0,-59,-22,-59,-58xm104,-199v-1,-21,-9,-33,-29,-33v-20,0,-30,11,-30,33v0,22,11,34,30,34v19,0,29,-14,29,-34xm167,-53v0,-35,26,-59,60,-59v36,0,57,22,57,58v0,35,-24,59,-59,59v-35,0,-58,-22,-58,-58xm255,-53v0,-21,-9,-34,-30,-34v-20,0,-29,12,-29,34v0,22,10,33,29,33v19,0,30,-11,30,-33","w":299},"&":{"d":"94,-120v-48,20,-45,94,20,93v25,-1,36,-6,51,-20xm108,-229v-40,0,-38,45,-13,63v14,10,21,-7,33,-14v18,-18,8,-49,-20,-49xm112,-256v48,0,75,47,48,84v-6,8,-26,24,-38,33r65,66v8,-9,17,-37,16,-54r-24,0r0,-27r79,0r0,27r-23,0v0,27,-13,62,-26,76v17,17,27,24,49,20r0,30v-32,5,-56,-7,-70,-25v-42,51,-167,36,-167,-41v0,-30,25,-59,52,-75v-15,-17,-32,-33,-32,-58v1,-34,33,-56,71,-56","w":273},"'":{"d":"53,-281v39,0,11,71,13,109v-1,9,-3,14,-13,13v-22,-1,-13,-38,-16,-58v-3,-24,-13,-64,16,-64","w":106},"(":{"d":"111,82v-11,3,-25,22,-34,10v-61,-87,-86,-228,-21,-332v10,-17,18,-31,29,-45r27,16v-64,83,-71,266,-1,351","w":106},")":{"d":"-4,-269v11,-3,26,-24,33,-9v63,84,85,228,22,331v-11,20,-19,31,-29,45r-28,-16v67,-82,70,-265,2,-351","w":106},"*":{"d":"56,-209r-35,27r-13,-23r41,-16r-41,-16r13,-24r35,27r-6,-43r28,0r-6,43r33,-27r14,24r-40,16r40,16r-14,23r-33,-27r6,44r-28,0","w":126},"+":{"d":"93,-76r-76,0r0,-30r76,0r0,-76r30,0r0,76r76,0r0,30r-76,0r0,76r-30,0r0,-76","w":216},",":{"d":"48,-50v54,6,31,92,0,110r-13,12v-5,-8,-26,-16,-13,-24v12,-12,19,-23,19,-33v0,-12,-19,-31,-19,-42v0,-12,12,-24,26,-23","w":106},"-":{"d":"24,-120r99,0r0,36r-99,0r0,-36","w":146},".":{"d":"53,5v-15,0,-28,-12,-28,-27v0,-15,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,27,-28,27","w":106},"\/":{"d":"107,-281r27,10r-108,300r-27,-10","w":133},"0":{"d":"103,5v-66,0,-88,-52,-88,-126v0,-71,29,-137,94,-136v66,1,89,57,89,126v0,76,-23,136,-95,136xm108,-226v-40,0,-50,52,-50,104v0,50,8,96,47,96v41,0,51,-49,51,-100v0,-66,-16,-100,-48,-100"},"1":{"d":"48,-30r49,0r2,-184v-20,17,-40,27,-61,42r-16,-28r85,-52r32,0r-2,222r53,0r0,30r-142,0r0,-30"},"2":{"d":"186,-185v-6,74,-63,107,-112,153v37,-4,80,-2,121,-2r0,34r-178,0v0,-16,-3,-34,10,-37v50,-44,105,-76,119,-148v-1,-26,-16,-39,-42,-39v-28,0,-44,19,-46,46r-40,0v3,-48,35,-79,87,-79v46,0,85,26,81,72"},"3":{"d":"151,-72v0,-35,-39,-44,-79,-42r0,-29v36,2,69,-16,69,-49v0,-22,-17,-34,-38,-34v-25,-1,-43,16,-43,40r-40,0v3,-44,36,-71,86,-71v44,0,77,20,78,62v1,35,-25,54,-53,62v36,3,61,25,63,61v4,80,-110,91,-173,63r0,-38v36,24,129,33,130,-25"},"4":{"d":"124,-102r0,-111r-76,111r76,0xm9,-102r105,-150r49,0r-1,150r47,0r0,32r-47,0r-1,40r30,0r0,30r-94,0r0,-30r26,0r1,-40r-115,0r0,-32"},"5":{"d":"146,-77v-5,-50,-58,-51,-116,-51r1,-124r146,0r0,32r-105,0r-2,60v63,-2,118,22,118,80v0,76,-93,102,-163,75r0,-34v39,17,127,19,121,-38"},"6":{"d":"155,-80v0,-54,-72,-60,-97,-23v-1,41,15,75,52,75v27,0,45,-25,45,-52xm18,-112v-3,-101,67,-168,171,-138r-2,31v-72,-24,-130,16,-128,88v37,-52,136,-27,136,48v0,52,-34,89,-86,88v-65,-1,-89,-51,-91,-117"},"7":{"d":"23,-252r167,0r0,26r-78,158v-12,24,-26,47,-39,68r-44,0v42,-59,79,-154,120,-218r-126,0r0,-34"},"8":{"d":"103,5v-91,0,-119,-98,-43,-127v5,-3,12,-3,15,-7v-30,-10,-49,-27,-51,-62v-2,-40,36,-66,85,-66v47,0,83,18,83,61v0,34,-27,52,-53,65v33,12,59,25,59,66v0,51,-39,70,-95,70xm108,-26v39,0,65,-35,41,-62v-8,-9,-31,-18,-44,-25v-21,9,-48,28,-48,49v0,24,22,38,51,38xm108,-226v-48,0,-57,60,-14,71v27,17,57,-18,57,-38v0,-23,-19,-33,-43,-33"},"9":{"d":"58,-172v0,53,72,60,97,23v1,-41,-15,-75,-52,-75v-27,0,-45,25,-45,52xm195,-140v2,102,-66,165,-171,139r3,-32v70,24,129,-17,127,-88v-38,52,-136,26,-136,-48v0,-52,34,-89,86,-88v64,1,89,51,91,117"},":":{"d":"53,5v-15,0,-28,-12,-28,-27v0,-15,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,27,-28,27xm53,-136v-16,0,-28,-13,-28,-28v0,-15,12,-28,28,-28v15,1,28,12,28,28v0,16,-12,28,-28,28","w":106},";":{"d":"53,-136v-16,0,-28,-12,-28,-28v0,-16,12,-28,28,-28v15,1,27,13,27,28v0,16,-11,28,-27,28xm48,-50v54,6,31,92,0,110r-13,12v-5,-8,-26,-16,-13,-24v12,-12,19,-23,19,-33v0,-12,-19,-31,-19,-42v0,-12,12,-24,26,-23","w":106},"<":{"d":"17,-105r182,-81r0,29r-146,66r146,66r0,29r-182,-81r0,-28","w":216},"=":{"d":"17,-71r182,0r0,29r-182,0r0,-29xm17,-140r182,0r0,29r-182,0r0,-29","w":216},">":{"d":"199,-77r-182,81r0,-29r146,-66r-146,-66r0,-29r182,81r0,28","w":216},"?":{"d":"57,5v-16,0,-28,-11,-28,-27v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,27,-28,27xm111,-212v3,-37,-58,-45,-87,-30r-2,-32v56,-18,134,-4,134,59v0,49,-55,69,-84,95v-6,9,-2,24,6,30v-17,5,-41,23,-45,-3v-25,-64,74,-60,78,-119","w":173},"@":{"d":"68,-105v0,-66,80,-133,119,-68r6,-20r25,0r-30,112v0,5,4,7,12,7v24,-1,43,-42,43,-71v0,-47,-44,-82,-93,-82v-57,0,-105,46,-105,102v-1,57,45,101,102,100v38,0,67,-10,87,-30r29,0v-18,36,-61,59,-116,59v-77,0,-133,-53,-133,-130v0,-76,60,-130,136,-130v68,0,125,43,124,107v-2,57,-33,97,-89,100v-18,1,-23,-9,-26,-20v-31,38,-91,19,-91,-36xm125,-76v27,0,52,-37,51,-64v0,-22,-10,-33,-29,-33v-27,-1,-50,35,-49,64v0,22,9,33,27,33","w":287},"A":{"d":"4,-30r22,0r91,-222r45,0r85,222r22,0r0,30r-92,0r0,-30r23,0r-22,-62r-88,0r-24,62r26,0r0,30r-88,0r0,-30xm168,-124r-32,-94v-9,35,-24,62,-35,94r67,0","w":273,"k":{"y":20,"w":20,"v":20,"u":11,"Y":27,"W":27,"V":27,"U":16,"T":27,"Q":13,"O":13,"G":13,"C":13}},"B":{"d":"153,-185v0,-36,-32,-40,-72,-38r0,78v39,3,72,-3,72,-40xm211,-70v0,86,-110,69,-197,70r0,-30r25,0r2,-193r-27,0r0,-29v78,3,181,-19,181,62v0,33,-23,54,-50,58v36,-1,66,26,66,62xm166,-72v-1,-37,-42,-45,-85,-41r-1,83v44,3,86,-2,86,-42","w":226,"k":{"A":9}},"C":{"d":"15,-123v0,-111,114,-159,215,-120r0,65r-36,0r0,-40v-74,-23,-135,14,-135,93v0,72,55,113,131,94r2,-45r36,0r-2,68v-96,35,-211,-4,-211,-115","w":246,"k":{"A":9}},"D":{"d":"216,-130v0,-75,-54,-101,-135,-93r-1,193v85,8,136,-22,136,-100xm261,-132v0,77,-52,132,-128,132r-119,0r0,-30r26,0r1,-193r-27,0r0,-29r120,0v76,-1,127,45,127,120","w":280,"k":{"Y":27,"W":16,"V":20,"A":23,".":13,",":13}},"E":{"d":"17,-30r25,0r1,-193r-29,0r0,-29r177,0r2,66r-34,0r-2,-37r-73,0r-1,78r72,0r0,32r-72,0r-1,83r77,0r3,-40r34,0r-3,70r-176,0r0,-30"},"F":{"d":"17,-30r25,0r1,-193r-29,0r0,-29r177,0r2,66r-34,0r-2,-37r-73,0r-1,78r79,0r0,32r-79,0r-1,83r31,0r0,30r-96,0r0,-30","w":206,"k":{"r":11,"o":20,"i":11,"e":16,"a":27,"A":20,".":46,",":46}},"G":{"d":"15,-123v0,-111,112,-159,215,-120r0,65r-36,0r0,-40v-74,-23,-135,14,-135,93v0,71,56,114,129,93r1,-56r-29,0r0,-29r93,0r0,29r-26,0r-1,80v-97,35,-211,-5,-211,-115","w":259},"H":{"d":"172,-30r26,0r0,-81r-117,0r0,81r27,0r0,30r-93,0r0,-30r25,0r1,-193r-26,0r0,-29r93,0r0,29r-26,0r-1,81r117,0r1,-81r-27,0r0,-29r93,0r0,29r-25,0r-2,193r27,0r0,30r-93,0r0,-30","w":280},"I":{"d":"17,-30r26,0r1,-193r-27,0r0,-29r93,0r0,29r-26,0r-1,193r27,0r0,30r-93,0r0,-30","w":126},"J":{"d":"-17,39v40,-20,59,-45,60,-107r2,-155r-28,0r0,-29r93,0r0,29r-25,0v-7,101,21,228,-51,270r-38,21","w":119,"k":{"u":9,"o":4,"e":4,"a":4,"A":11,".":9,",":9}},"K":{"d":"14,-30r25,0r1,-193r-26,0r0,-29r93,0r0,29r-26,0r-1,89r100,-89r-28,0r0,-29r95,0r0,29r-21,0r-103,91r106,102r21,0r0,30r-101,0r0,-30r27,0r-96,-91r0,91r27,0r0,30r-93,0r0,-30","w":253,"k":{"y":20,"u":13,"O":11}},"L":{"d":"14,-30r26,0r1,-193r-27,0r0,-29r93,0r0,29r-26,0r-1,193r75,0r3,-42r34,0r-3,72r-175,0r0,-30","k":{"y":33,"Y":40,"W":40,"V":40,"T":33}},"M":{"d":"12,-30r26,0r1,-193r-28,0r0,-29r83,0r79,208v22,-72,52,-139,77,-208r79,0r0,29r-29,0r2,193r27,0r0,30r-92,0r0,-30r25,0r0,-171v-18,70,-51,135,-74,201r-40,0v-25,-70,-53,-121,-74,-199v-4,53,0,114,-2,169r28,0r0,30r-88,0r0,-30","w":339},"N":{"d":"15,-30r25,0r1,-193r-31,0r0,-29r66,0r117,152r25,38r-1,-161r-28,0r0,-29r88,0r0,29r-25,0r-1,223r-33,0r-126,-163v-9,-10,-13,-24,-18,-26r1,159r28,0r0,30r-88,0r0,-30","w":286,"k":{"A":9}},"O":{"d":"139,-223v-53,0,-80,44,-80,100v0,51,28,94,77,93v53,-1,78,-41,78,-98v0,-56,-24,-95,-75,-95xm135,4v-74,1,-120,-51,-120,-126v0,-78,50,-134,127,-134v74,0,117,50,116,126v-2,75,-43,134,-123,134","w":273,"k":{"Y":27,"X":11,"W":16,"V":16,"T":11,"A":13,".":13,",":13}},"P":{"d":"159,-178v0,-40,-34,-47,-78,-45r-1,93v45,3,79,-3,79,-48xm202,-179v0,62,-50,86,-122,79r0,70r31,0r0,30r-97,0r0,-30r26,0r1,-193r-27,0r0,-29r95,0v59,-3,93,23,93,73","k":{"o":11,"e":11,"a":13,"A":20,".":46,",":46}},"Q":{"d":"139,-223v-53,0,-80,44,-80,100v0,51,28,94,77,93v53,-1,78,-41,78,-98v0,-56,-24,-95,-75,-95xm258,-130v0,67,-37,112,-84,130v47,4,70,46,124,35r0,31v-82,10,-117,-40,-180,-62v-64,-7,-103,-55,-103,-126v0,-78,50,-134,127,-134v74,0,116,50,116,126","w":273},"R":{"d":"80,-139v42,3,80,-2,80,-42v0,-41,-36,-45,-79,-42xm202,-185v0,41,-27,60,-60,67v46,7,38,87,91,88r0,30v-86,13,-75,-74,-123,-106v-8,-2,-20,0,-30,-1r0,77r29,0r0,30r-95,0r0,-30r25,0r1,-193r-26,0r0,-29v83,2,188,-18,188,67","w":233,"k":{"Y":16,"W":13,"V":13,"T":7}},"S":{"d":"201,-75v0,86,-110,91,-182,66r0,-61r40,0r0,34v33,15,105,14,99,-33v-9,-65,-138,-21,-138,-113v0,-78,103,-86,171,-62r0,56r-38,0r0,-30v-31,-13,-97,-8,-91,30v10,65,139,21,139,113","w":219},"T":{"d":"76,-30r26,0r2,-193r-59,0r-1,37r-36,0r1,-66r229,0r1,66r-36,0r-1,-37r-58,0r-1,193r29,0r0,30r-96,0r0,-30","w":246,"k":{"y":46,"w":54,"u":40,"r":33,"o":40,"i":13,"h":9,"e":33,"a":33,"O":11,"A":27,";":20,":":20,".":33,",":33}},"U":{"d":"136,4v-66,0,-99,-25,-99,-91r0,-136r-26,0r0,-29r92,0r0,29r-26,0v7,76,-30,193,59,193v97,0,54,-115,64,-193r-30,0r0,-29r92,0r0,29r-24,0r0,136v0,63,-37,91,-102,91","w":273,"k":{"A":16,".":9,",":9}},"V":{"d":"2,-252r94,0r0,29r-26,0r61,167v3,6,0,10,6,22v19,-65,44,-126,65,-189r-29,0r0,-29r92,0r0,29r-23,0r-86,223r-45,0r-87,-223r-22,0r0,-29","w":266,"k":{"u":20,"o":33,"i":13,"e":33,"a":33,"O":16,"G":9,"A":27,";":27,":":27,".":33,",":33}},"W":{"d":"3,-252r94,0r0,29r-25,0r62,189r52,-148r-14,-41r-24,0r0,-29r92,0r0,29r-25,0r57,189v17,-64,43,-127,63,-189r-28,0r0,-29r90,0r0,29r-22,0r-84,223r-44,0r-44,-134r-51,134r-44,0r-83,-223r-22,0r0,-29","w":399,"k":{"y":13,"u":20,"o":27,"i":11,"h":9,"e":27,"a":27,"O":16,"A":27,";":20,":":20,".":40,",":33}},"X":{"d":"149,-30r26,0v-19,-22,-34,-48,-52,-71v-19,23,-34,50,-55,71r26,0r0,30r-88,0r0,-30r21,0r77,-96r-71,-97r-23,0r0,-29r98,0r0,29r-27,0v18,21,33,45,50,67r55,-67r-28,0r0,-29r84,0r0,29r-19,0r-73,93r75,100r23,0r0,30r-99,0r0,-30","w":253},"Y":{"d":"84,-30r26,0r1,-74r-88,-119r-22,0r0,-29r93,0r0,29r-25,0r65,88r65,-88r-28,0r0,-29r87,0r0,29r-22,0r-85,119r-1,74r26,0r0,30r-92,0r0,-30","w":259,"k":{"u":33,"o":36,"i":13,"e":36,"a":36,"O":27,"A":27,";":27,":":27,".":40,",":40}},"Z":{"d":"16,-28r150,-195r-103,0r-3,37r-36,0r3,-66r188,0r0,30r-148,192r112,0r2,-36r36,0r-2,66r-199,0r0,-28","w":233},"[":{"d":"101,90r-72,0r1,-367r72,0r0,30r-34,0r-1,308r34,0r0,29","w":106},"\\":{"d":"-1,-271r27,-10r108,300r-27,10","w":133},"]":{"d":"6,-277r72,0r-2,367r-72,0r0,-29r34,0r2,-308r-34,0r0,-30","w":106},"^":{"d":"108,-216r-48,95r-29,0r66,-131r23,0r65,131r-29,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"`":{"d":"-11,-266r22,-21r72,61r-22,17","w":100},"a":{"d":"139,-82v-34,-1,-77,0,-78,29v0,15,12,26,30,26v30,0,51,-22,48,-55xm140,-109v10,-53,-37,-61,-75,-47r0,28r-36,0r0,-47v53,-27,156,-28,147,55v0,0,0,29,-1,90r25,0r0,30r-60,0v-1,-12,4,-28,3,-39v-10,59,-124,57,-122,-10v2,-57,62,-58,119,-60","k":{"y":11,"w":11,"v":11,"t":9,"g":4,"b":7}},"b":{"d":"102,4v-30,0,-47,-4,-72,-14r2,-237r-31,0r0,-30r71,0r-4,129v9,-23,33,-45,64,-44v48,0,76,35,76,85v0,69,-35,112,-106,111xm70,-37v52,23,96,-9,96,-67v0,-32,-16,-54,-46,-54v-55,-1,-51,65,-50,121","w":219,"k":{"y":9}},"c":{"d":"13,-92v0,-81,81,-120,154,-90r0,53r-34,0r0,-28v-45,-13,-80,15,-80,60v0,61,64,82,114,57r-2,35v-71,27,-152,-7,-152,-87","w":180,"k":{"k":7,"h":7}},"d":{"d":"101,-30v54,0,49,-66,48,-122v-44,-24,-94,9,-94,61v0,33,14,61,46,61xm13,-85v0,-76,60,-123,137,-102r1,-60r-34,0r0,-30r73,0r-1,247r25,0r0,30r-64,0v-1,-10,4,-27,3,-38v-11,28,-32,42,-62,42v-49,1,-78,-38,-78,-89","w":226,"k":{"y":13,"w":11,"v":9}},"e":{"d":"147,-114v6,-45,-55,-63,-80,-33v-7,8,-11,20,-12,33r92,0xm55,-87v-1,60,79,74,125,45r-2,33v-71,32,-165,4,-165,-84v0,-58,36,-99,92,-99v57,0,86,44,84,105r-134,0","w":200,"k":{"y":9,"w":9,"v":9}},"f":{"d":"154,-245v-40,-13,-85,4,-74,58r43,0r0,29r-43,0r-1,128r29,0r0,30r-92,0r0,-30r22,0r1,-128r-28,0r0,-29r28,0v-7,-74,42,-107,116,-90","w":126},"g":{"d":"104,65v32,-1,53,-5,56,-31v-3,-28,-54,-21,-80,-29v-20,9,-30,20,-30,32v0,21,27,30,54,28xm100,-162v-27,0,-45,17,-46,41v0,26,16,39,48,39v26,1,45,-15,44,-41v0,-26,-15,-39,-46,-39xm64,-58v-83,-26,-48,-143,36,-134v28,3,67,6,102,5r-1,29r-36,-2v39,48,-6,119,-76,107v-14,-2,-31,17,-13,23v41,14,123,0,122,57v-1,47,-45,68,-98,68v-43,0,-86,-15,-88,-50v-1,-26,23,-40,43,-45v-35,-5,-36,-47,-3,-55","w":206},"h":{"d":"130,-158v-55,0,-52,70,-51,128r25,0r0,30r-87,0r0,-30r21,0r2,-217r-27,0r0,-30r69,0v-2,49,3,85,-6,131v11,-26,30,-46,67,-46v44,0,65,28,65,73v0,0,-1,29,-2,89r25,0r0,30r-86,0r0,-30r21,0v1,-55,1,-82,1,-82v1,-27,-13,-46,-37,-46","w":240,"k":{"y":13}},"i":{"d":"59,-226v-15,0,-27,-12,-27,-27v0,-16,11,-28,27,-28v16,0,28,12,28,28v0,16,-12,27,-28,27xm14,-30r24,0r1,-128r-28,0r0,-29r69,0r-1,157r25,0r0,30r-90,0r0,-30","w":113,"k":{"v":7}},"j":{"d":"59,-226v-15,0,-27,-12,-27,-27v0,-16,11,-28,27,-28v16,0,28,12,28,28v0,16,-12,27,-28,27xm-26,63v86,-10,60,-129,65,-221r-28,0r0,-29r69,0v-3,122,24,271,-101,282","w":119},"k":{"d":"16,-30r22,0r2,-217r-33,0r0,-30r73,0r-1,171r66,-52r-27,0r0,-29r88,0r0,29r-18,0r-67,56r72,72r21,0r0,30r-90,0r0,-30r22,0r-67,-65r0,65r23,0r0,30r-86,0r0,-30","w":219,"k":{"e":7}},"l":{"d":"16,-30r22,0r2,-217r-33,0r0,-30r73,0r-1,247r25,0r0,30r-88,0r0,-30","w":113,"k":{"y":9,"w":7}},"m":{"d":"76,-146v9,-52,115,-66,122,-3v12,-26,30,-43,65,-43v77,0,66,93,63,162r25,0r0,30r-86,0r0,-30r21,0v-1,-41,17,-128,-37,-128v-53,0,-46,73,-46,128r24,0r0,30r-85,0r0,-30r21,0v-3,-51,16,-128,-37,-128v-53,0,-47,72,-47,128r25,0r0,30r-87,0r0,-30r21,0r1,-128r-26,0r0,-29r67,0v0,12,-2,26,-4,41","w":360,"k":{"y":9,"u":7}},"n":{"d":"130,-158v-55,0,-52,70,-51,128r25,0r0,30r-87,0r0,-30r21,0r1,-128r-26,0r0,-29r67,0v1,11,-4,29,-3,41v8,-28,30,-46,66,-46v44,0,65,28,65,73v0,0,-1,29,-2,89r25,0r0,30r-86,0r0,-30r21,0v1,-55,1,-82,1,-82v1,-27,-13,-46,-37,-46","w":240,"k":{"y":9,"v":9}},"o":{"d":"105,4v-57,0,-93,-37,-93,-94v0,-59,40,-103,98,-102v59,1,92,42,92,100v0,58,-38,96,-97,96xm109,-158v-36,0,-55,29,-55,67v0,34,19,62,52,61v36,0,53,-29,53,-67v0,-36,-17,-61,-50,-61","k":{"y":9,"x":4,"w":9,"v":9}},"p":{"d":"124,-158v-54,0,-50,66,-49,123v44,24,94,-8,94,-62v0,-34,-14,-61,-45,-61xm212,-103v0,76,-62,125,-138,101r-1,63r30,0r0,29r-90,0r0,-29r21,0r2,-219r-27,0r0,-29r65,0v1,10,-4,27,-3,38v11,-28,31,-43,62,-43v48,0,79,39,79,89","w":226,"k":{"y":13,".":9,",":9}},"q":{"d":"119,-192v30,0,46,5,72,15r-1,238r26,0r0,29r-90,0r0,-29r23,0r1,-60v0,-11,4,-18,3,-40v-8,24,-32,43,-64,43v-49,0,-76,-35,-76,-85v1,-68,36,-111,106,-111xm101,-30v56,0,50,-65,50,-120v-50,-24,-96,9,-96,67v0,32,15,53,46,53","w":226},"r":{"d":"149,-152v-66,-18,-74,53,-70,122r27,0r0,30r-90,0r0,-30r22,0r1,-128r-28,0r0,-29r66,0v1,22,-3,41,-1,52v5,-37,36,-65,77,-53","w":153,"k":{"o":4,"a":9,".":20,",":20}},"s":{"d":"35,-95v-45,-37,-3,-104,60,-97v25,3,43,6,65,13r1,45r-36,0r0,-22v-25,-17,-95,2,-61,32v38,18,107,4,107,66v0,70,-96,72,-152,51r-1,-51r36,0r1,25v36,20,99,1,70,-35v-22,-12,-72,-12,-90,-27","w":186,"k":{"w":9}},"t":{"d":"135,-5v-42,19,-98,12,-97,-48r1,-105r-28,0r0,-29r28,0r1,-42r41,-3r-2,45r54,0r0,29r-54,0v2,56,-21,161,57,123","w":133},"u":{"d":"100,4v-41,1,-64,-29,-64,-71v0,-36,1,-67,2,-91r-25,0r0,-29r65,0v6,57,-23,153,35,157v55,4,51,-70,49,-128r-24,0r0,-29r65,0r-1,157r25,0r0,30r-65,0v-1,-12,4,-29,3,-41v-6,25,-34,45,-65,45","w":240},"v":{"d":"18,-158r-19,0r0,-29r83,0r0,29r-20,0r44,124v10,-42,29,-84,42,-124r-24,0r0,-29r84,0r0,29r-20,0r-63,158r-43,0","w":206,"k":{"e":7,"a":9,".":27,",":27}},"w":{"d":"194,0r-33,-94v-8,32,-25,64,-36,94r-41,0r-62,-158r-20,0r0,-29r83,0r0,29r-21,0r43,122v11,-35,26,-65,39,-97r-9,-25r-21,0r0,-29r84,0r0,29r-23,0r42,122v11,-41,29,-83,42,-122r-26,0r0,-29r83,0r0,29r-19,0r-63,158r-42,0","w":320,"k":{"o":9,"h":7,"e":9,"a":7,".":27,",":27}},"x":{"d":"126,-30r23,0r-40,-45v-14,15,-27,32,-43,45r26,0r0,30r-81,0r0,-30r20,0r60,-64r-55,-64r-22,0r0,-29r90,0r0,29r-23,0v12,12,26,29,37,42r38,-42r-24,0r0,-29r79,0r0,29r-20,0r-56,59r60,69r21,0r0,30r-90,0r0,-30","w":226,"k":{"e":4}},"y":{"d":"10,59v39,16,71,-13,78,-49r-69,-168r-20,0r0,-29r86,0r0,29r-21,0r45,125v10,-41,28,-85,41,-125r-24,0r0,-29r79,0r0,29r-19,0r-62,172v-14,49,-49,95,-114,77r0,-32","k":{"o":13,"e":11,"a":13,".":27,",":27}},"z":{"d":"14,-30r114,-128r-72,0r-3,28r-34,0r3,-57r156,0r0,30r-102,115v-1,1,-5,5,-13,12r79,0r3,-28r34,0r-3,58r-162,0r0,-30","w":193},"{":{"d":"41,-149v-1,-66,-10,-141,69,-128r0,28v-49,-7,-31,60,-31,100v0,29,-18,48,-38,56v46,9,38,74,38,129v0,21,9,29,31,27r0,27v-43,5,-69,-14,-69,-53v0,-49,13,-112,-34,-117r0,-27v18,0,35,-21,34,-42","w":106},"|":{"d":"25,-270r30,0r0,360r-30,0r0,-360","w":79},"}":{"d":"66,-38v2,65,12,142,-69,128r0,-27v49,8,30,-61,30,-101v0,-28,18,-48,39,-56v-45,-9,-40,-72,-39,-128v0,-23,-7,-29,-30,-27r0,-28v44,-5,68,15,69,54v2,48,-14,111,33,116r0,27v-18,0,-33,21,-33,42","w":106},"~":{"d":"191,-94v-24,52,-77,19,-122,5v-14,0,-25,16,-31,27r-13,-26v16,-44,73,-27,105,-9v25,13,36,-3,48,-23","w":216},"\u00a0":{"w":106}}});

