jQuery.noConflict();

jQuery(document).ready(function()
{
// activates the lightbox used at the portfolio page, if you are using a dark color scheme use another theme parameter
jQuery("a[rel^='prettyPhoto'], a[rel^='lightbox[portfolio]']").prettyPhoto({
										theme: 'dark_rounded' /* light_rounded / dark_rounded / light_square / dark_square */																		   }); 
		
	

k_fader(".preview_images a",".featured_item"); // this is the mainpages fading script-> when a image is clicked a fadeout followed by a fade in occurs
k_pointer(); // this script manages the pointer below the preview pics
k_autoslide(".preview_images a",14000); // this script starts the automatic slideshow, number represents the time between the transition in milliseconds
k_newsticker(".ticker span",10000); // starts the newsticker, number defines the time between transitions in milliseconds
k_next_slide(".preview_images a",".featured_item",".show-next"); // shows the next slide


twicet_improvements(); // adds some improvements to the site
});



function k_next_slide($items_to_click, $items_to_fade,$next)
{
	$items = jQuery($items_to_fade);
	$click_these_items = jQuery($items_to_click);
	var x = 0;
	
	$items.each(function(i)
	{
		jQuery(this).find($next).click(function()
		{
		i+1 < $click_these_items.length ? x = i + 1 : x = 0;	
		$click_these_items.filter(":eq("+x+")").trigger('click');
		return false;
		});
	});
}


function k_newsticker($items_to_fade, $display_time)
{
	
	tickerchange = setInterval(k_start_ticker, $display_time);
	var $tickeritem = jQuery($items_to_fade);
	var i = 1;
	
	function k_start_ticker()
	{
	$tickeritem.filter(":eq("+i+")").trigger('fade');
	i+1 < $tickeritem.length ? i++ : i = 0;	
	}
	
	  $tickeritem.each(function(i)
	  {
		  jQuery(this).bind("fade",function()
		  {	
			  $new_ticker_item = $tickeritem.filter(":eq("+i+")");
			  
			  if( $new_ticker_item.css("display") == "none" )
			  {
				  $tickeritem.filter(":visible").fadeOut(400, function()
				  {	
					  $new_ticker_item.fadeIn(400);
				  });
			  }
			  
		  });
	  });
}


function k_autoslide($items_to_click, $display_time)
{	
	interval = setInterval(k_start_autoplay, $display_time);
	var $click_these_items = jQuery($items_to_click);
	var i = 1;
	
	$click_these_items.click(function($eventobject, $autoplay)
	{
		if(interval && !$autoplay) clearInterval(interval);
	});
	
	
	function k_start_autoplay()
	{	
		
		$click_these_items.filter(":eq("+i+")").trigger('click',[true]);
		i+1 < $click_these_items.length ? i++ : i = 0;
		
	}
	
}


function k_fader($items_to_click, $items_to_fade)
{	
	var $item = jQuery($items_to_fade);
	
	jQuery($items_to_click).each(function(i)
	{
		jQuery(this).click(function()
		{	
			$new_item = $item.filter(":eq("+i+")");
			
			if( $new_item.css("display") == "none" )
			{
				$item.filter(":visible").fadeOut(400, function()
				{	
					$new_item.fadeIn(400);
				});
			}
			
			return false;
			
		});
		
	});
	
}

function k_pointer()
{	
	var $wrapper = jQuery(".preview_images");
	var $slider = jQuery('<div class="pointer"></div>').appendTo($wrapper);
	
	var $slider_half = $slider.width()/2;
	jQuery(".preview_images a").each(function(i)
	{
		jQuery(this).click(function()
		{	
			jQuery(".current_prev").removeClass('current_prev');
			jQuery(this).addClass('current_prev');
			
			$image_pos = jQuery(this).position();
			$newposition = $image_pos.left + jQuery(this).width()/2 - $slider_half;
			$slider.animate({"left":$newposition},600,"easeOutBack");
		});
		
	});
	
}

function twicet_improvements()
{
	jQuery(".featured_item").prepend("<div class='corner_left ie6fix'></div><div class='corner_right ie6fix'></div>");
	
	if((jQuery.browser.msie && parseInt(jQuery.browser.version) < 7))
	{
		jQuery("#nav, .navwrap, #main, #featured, #featured_bottom, .content_top, #content, #footer").addClass("ie6fix");
	}
}
/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 0.6;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 0.6;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var V=L.DOM={ready:(function(){var a=false,c={loaded:1,complete:1};var Z=[],b=function(){if(a){return}a=true;for(var d;d=Z.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){c[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(d){setTimeout(arguments.callee,1)}})()}P(window,"load",b);return function(d){if(!arguments.length){b()}else{a?d():Z.push(d)}}})()};var M=L.CSS={Size:function(a,Z){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/Z*this.value};this.convertFrom=function(b){return b/this.value*Z};this.toString=function(){return this.value+this.unit}},color:I(function(a){var Z={};Z.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,b,d){Z.opacity=parseFloat(d);return"rgb("+b+")"});return Z}),getStyle:function(a){var Z=document.defaultView;if(Z&&Z.getComputedStyle){return new A(Z.getComputedStyle(a,null))}if(a.currentStyle){return new A(a.currentStyle)}return new A(a.style)},gradient:I(function(d){var e={id:d,type:d.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},a=d.substr(d.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var c=0,Z=a.length,b;c<Z;++c){b=a[c].split("=",2).reverse();e.stops.push([b[1]||c/(Z-1),b[0]])}return e}),quotedList:I(function(c){var b=[],a=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Z;while(Z=a.exec(c)){b.push(Z[3]||Z[1])}return b}),recognizesMedia:I(function(c){var b=document.createElement("style"),a,Z;b.type="text/css";b.media=c;a=F("head")[0];a.insertBefore(b,a.firstChild);Z=!!(b.sheet||b.styleSheet);a.removeChild(b);return Z}),supports:function(b,a){var Z=document.createElement("span").style;if(Z[b]===undefined){return false}Z[b]=a;return Z[b]===a},textAlign:function(c,b,Z,a){if(b.get("textAlign")=="right"){if(Z>0){c=" "+c}}else{if(Z<a-1){c+=" "}}return c},textDecoration:function(e,d){if(!d){d=this.getStyle(e)}var a={underline:null,overline:null,"line-through":null};for(var Z=e;Z.parentNode&&Z.parentNode.nodeType==1;){var c=true;for(var b in a){if(!J(a,b)||a[b]){continue}if(d.get("textDecoration").indexOf(b)!=-1){a[b]=d.get("color")}c=false}if(c){break}d=this.getStyle(Z=Z.parentNode)}return a},textShadow:I(function(d){if(d=="none"){return null}var c=[],e={},Z,a=0;var b=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Z=b.exec(d)){if(Z[0]==","){c.push(e);e={},a=0}else{if(Z[1]){e.color=Z[1]}else{e[["offX","offY","blur"][a++]]=Z[2]}}}c.push(e);return c}),textTransform:function(a,Z){return a[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Z.get("textTransform")]||"toString"]()},whiteSpace:(function(){var Z={inline:1,"inline-block":1,"run-in":1};return function(c,a,b){if(Z[a.get("display")]){return c}if(!b.previousSibling){c=c.replace(/^\s+/,"")}if(!b.nextSibling){c=c.replace(/\s+$/,"")}return c}})()};M.ready=(function(){var b=!M.recognizesMedia("all"),a=false;var Z=[],d=function(){b=true;for(var g;g=Z.shift();g()){}};var e=F("link"),f={stylesheet:1};function c(){var h,g,j;for(g=0;j=e[g];++g){if(j.disabled||!f[j.rel.toLowerCase()]||!M.recognizesMedia(j.media||"screen")){continue}h=j.sheet||j.styleSheet;if(!h||h.disabled){return false}}return true}V.ready(function(){if(!a){a=M.getStyle(document.body).isUsable()}if(b||(a&&c())){d()}else{setTimeout(arguments.callee,10)}});return function(g){if(b){g()}else{Z.push(g)}}})();function R(a){var Z=this.face=a.face;this.glyphs=a.glyphs;this.kerning=a.kerning;this.w=a.w;this.baseSize=parseInt(Z["units-per-em"],10);this.family=Z["font-family"].toLowerCase();this.weight=Z["font-weight"];this.style=Z["font-style"]||"normal";this.viewBox=(function(){var c=Z.bbox.split(/\s+/);var b={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};b.width=b.maxX-b.minX,b.height=b.maxY-b.minY;b.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return b})();this.ascent=-parseInt(Z.ascent,10);this.descent=-parseInt(Z.descent,10);this.height=-this.ascent+this.descent}function E(){var a={},Z={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(f,g){var e=a[f]||a[Z[f]]||a.normal||a.italic||a.oblique;if(!e){return null}g={normal:400,bold:700}[g]||parseInt(g,10);if(e[g]){return e[g]}var c={1:1,99:0}[g%100],i=[],d,b;if(c===undefined){c=g>400}if(g==500){g=400}for(var h in e){if(!J(e,h)){continue}h=parseInt(h,10);if(!d||h<d){d=h}if(!b||h>b){b=h}i.push(h)}if(g<d){g=d}if(g>b){g=b}i.sort(function(k,j){return(c?(k>g&&j>g)?k<j:k>j:(k<g&&j<g)?k>j:k<j)?-1:1});return e[i[0]]}}function Q(){function b(d,e){if(d.contains){return d.contains(e)}return d.compareDocumentPosition(e)&16}function Z(f){var d=f.relatedTarget;if(!d||b(this,d)){return}a(this)}function c(d){a(this)}function a(d){setTimeout(function(){L.replace(d,D.get(d).options,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){P(d,"mouseover",Z);P(d,"mouseout",Z)}else{P(d,"mouseenter",c);P(d,"mouseleave",c)}}}function Y(){var b={},Z=0;function a(c){return c.cufid||(c.cufid=++Z)}this.get=function(c){var d=a(c);return b[d]||(b[d]={})}}function A(Z){var b={},a={};this.extend=function(c){for(var d in c){if(J(c,d)){b[d]=c[d]}}return this};this.get=function(c){return b[c]!=undefined?b[c]:Z[c]};this.getSize=function(d,c){return a[d]||(a[d]=new M.Size(this.get(d),c))};this.isUsable=function(){return !!Z}}function P(a,Z,b){if(a.addEventListener){a.addEventListener(Z,b,false)}else{if(a.attachEvent){a.attachEvent("on"+Z,function(){return b.call(a,window.event)})}}}function T(a,Z){var b=D.get(a);if(b.options){return a}if(Z.hover&&Z.hoverables[a.nodeName.toLowerCase()]){B.attach(a)}b.options=Z;return a}function I(Z){var a={};return function(b){if(!J(a,b)){a[b]=Z.apply(null,arguments)}return a[b]}}function C(e,d){if(!d){d=M.getStyle(e)}var a=M.quotedList(d.get("fontFamily").toLowerCase()),c;for(var b=0,Z=a.length;b<Z;++b){c=a[b];if(H[c]){return H[c].get(d.get("fontStyle"),d.get("fontWeight"))}}return null}function F(Z){return document.getElementsByTagName(Z)}function J(a,Z){return a.hasOwnProperty(Z)}function G(){var Z={},b,d;for(var c=0,a=arguments.length;b=arguments[c],c<a;++c){for(d in b){if(J(b,d)){Z[d]=b[d]}}}return Z}function N(c,m,a,n,d,b){var k=n.separate;if(k=="none"){return X[n.engine].apply(null,arguments)}var j=document.createDocumentFragment(),f;var g=m.split(O[k]),Z=(k=="words");if(Z&&S){if(/^\s/.test(m)){g.unshift("")}if(/\s$/.test(m)){g.push("")}}for(var h=0,e=g.length;h<e;++h){f=X[n.engine](c,Z?M.textAlign(g[h],a,h,e):g[h],a,n,d,b,h<e-1);if(f){j.appendChild(f)}}return j}function K(a,i){var b,Z,c,f,e,h;for(c=T(a,i).firstChild;c;c=e){f=c.nodeType;e=c.nextSibling;h=false;if(f==1){if(!c.firstChild){continue}if(!/cufon/.test(c.className)){arguments.callee(c,i);continue}else{h=true}}else{if(f!=3){continue}}if(!Z){Z=M.getStyle(a).extend(i)}if(!b){b=C(a,Z)}if(!b){continue}if(h){X[i.engine](b,null,Z,i,c,a);continue}var g=M.whiteSpace(c.data,Z,c);if(g===""){continue}var d=N(b,g,Z,i,c,a);if(d){c.parentNode.replaceChild(d,c)}else{c.parentNode.removeChild(c)}}}var S=" ".split(/\s+/).length==0;var D=new Y();var B=new Q();var W=[];var X={},H={},U={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Z){return jQuery(Z)})||(window.dojo&&dojo.query)||(window.$$&&function(Z){return $$(Z)})||(window.$&&function(Z){return $(Z)})||(document.querySelectorAll&&function(Z){return document.querySelectorAll(Z)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){V.ready();return L};L.refresh=function(){var b=W.splice(0,W.length);for(var a=0,Z=b.length;a<Z;++a){L.replace.apply(null,b[a])}return L};L.registerEngine=function(a,Z){if(!Z){return L}X[a]=Z;return L.set("engine",a)};L.registerFont=function(b){var Z=new R(b),a=Z.family;if(!H[a]){H[a]=new E()}H[a].add(Z);return L.set("fontFamily",'"'+a+'"')};L.replace=function(b,a,Z){a=G(U,a);if(!a.engine){return L}if(typeof a.textShadow=="string"){a.textShadow=M.textShadow(a.textShadow)}if(typeof a.color=="string"&&/^-/.test(a.color)){a.textGradient=M.gradient(a.color)}if(!Z){W.push(arguments)}if(b.nodeType||typeof b=="string"){b=[b]}M.ready(function(){for(var d=0,c=b.length;d<c;++d){var e=b[d];if(typeof e=="string"){L.replace(a.selector(e),a,true)}else{K(e,a)}}});return L};L.set=function(Z,a){U[Z]=a;return L};return L})();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-canvas{text-indent:0}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(AD,Z,u,V,d,AE){var I=(Z===null);if(I){Z=d.alt}var b=AD.viewBox;var K=u.getSize("fontSize",AD.baseSize);var s=u.get("letterSpacing");s=(s=="normal")?0:K.convertFrom(parseInt(s,10));var c=0,t=0,r=0,X=0;var a=V.textShadow,p=[];if(a){for(var AC=a.length;AC--;){var h=a[AC];var o=K.convertFrom(parseFloat(h.offX));var n=K.convertFrom(parseFloat(h.offY));p[AC]=[o,n];if(n<c){c=n}if(o>t){t=o}if(n>r){r=n}if(o<X){X=o}}}var AH=Cufon.CSS.textTransform(Z,u).split(""),T;var J=AD.glyphs,W,M,w;var G=0,P,f=[];for(var AC=0,AA=0,v=AH.length;AC<v;++AC){W=J[T=AH[AC]]||AD.missingGlyph;if(!W){continue}if(M){G-=w=M[T]||0;f[AA-1]-=w}G+=P=f[AA++]=~~(W.w||AD.w)+s;M=W.k}if(P===undefined){return null}t+=b.width-P;X+=b.minX;var U,L;if(I){U=d;L=d.firstChild}else{U=document.createElement("span");U.className="cufon cufon-canvas";U.alt=Z;L=document.createElement("canvas");U.appendChild(L);if(V.printable){var z=document.createElement("span");z.className="cufon-alt";z.appendChild(document.createTextNode(Z));U.appendChild(z)}}var AI=U.style;var m=L.style;var H=K.convert(b.height);var AG=Math.ceil(H);var q=AG/H;L.width=Math.ceil(K.convert(G*q+t-X));L.height=Math.ceil(K.convert(b.height-c+r));c+=b.minY;m.top=Math.round(K.convert(c-AD.ascent))+"px";m.left=Math.round(K.convert(X))+"px";var S=Math.ceil(K.convert(G*q))+"px";if(A){AI.width=S;AI.height=K.convert(AD.height)+"px"}else{AI.paddingLeft=S;AI.paddingBottom=(K.convert(AD.height)-1)+"px"}var AF=L.getContext("2d"),e=H/b.height;AF.scale(e,e*q);AF.translate(-X,-c);AF.lineWidth=AD.face["underline-thickness"];AF.save();function N(i,g){AF.strokeStyle=g;AF.beginPath();AF.moveTo(0,i);AF.lineTo(G,i);AF.stroke()}var O=V.enableTextDecoration?Cufon.CSS.textDecoration(AE,u):{};if(O.underline){N(-AD.face["underline-position"],O.underline)}if(O.overline){N(AD.ascent,O.overline)}function AB(){AF.scale(q,1);for(var x=0,k=0,g=AH.length;x<g;++x){var y=J[AH[x]]||AD.missingGlyph;if(!y){continue}if(y.d){AF.beginPath();if(y.code){C(y.code,AF)}else{y.code=D("m"+y.d,AF)}AF.fill()}AF.translate(f[k++],0)}AF.restore()}if(a){for(var AC=a.length;AC--;){var h=a[AC];AF.save();AF.fillStyle=h.color;AF.translate.apply(AF,p[AC]);AB()}}var R=V.textGradient;if(R){var Y=R.stops,Q=AF.createLinearGradient(0,b.minY,0,b.maxY);for(var AC=0,v=Y.length;AC<v;++AC){Q.addColorStop.apply(Q,Y[AC])}AF.fillStyle=Q}else{AF.fillStyle=u.get("color")}AB();if(O["line-through"]){N(-AD.descent,O["line-through"])}return U}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>');function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(AB,b,v,Y,f,AC,t){var I=(b===null);if(I){b=f.alt}var d=AB.viewBox;var K=v.computedFontSize||(v.computedFontSize=new Cufon.CSS.Size(C(AC,v.get("fontSize"))+"px",AB.baseSize));var s=v.computedLSpacing;if(s==undefined){s=v.get("letterSpacing");v.computedLSpacing=s=(s=="normal")?0:~~K.convertFrom(A(AC,s))}var V,L;if(I){V=f;L=f.firstChild}else{V=document.createElement("span");V.className="cufon cufon-vml";V.alt=b;L=document.createElement("span");L.className="cufon-vml-canvas";V.appendChild(L);if(Y.printable){var y=document.createElement("span");y.className="cufon-alt";y.appendChild(document.createTextNode(b));V.appendChild(y)}if(!t){V.appendChild(document.createElement("cvml:shape"))}}var AH=V.style;var n=L.style;var G=K.convert(d.height),AE=Math.ceil(G);var r=AE/G;var q=d.minX,p=d.minY;n.height=AE;n.top=Math.round(K.convert(p-AB.ascent));n.left=Math.round(K.convert(q));AH.height=K.convert(AB.height)+"px";var P=Y.enableTextDecoration?Cufon.CSS.textDecoration(AC,v):{};var a=v.get("color");var AG=Cufon.CSS.textTransform(b,v).split(""),U;var J=AB.glyphs,Z,M,x;var F=0,g=[],o=0,Q;var S,c=Y.textShadow;for(var AA=0,z=0,w=AG.length;AA<w;++AA){Z=J[U=AG[AA]]||AB.missingGlyph;if(!Z){continue}if(M){F-=x=M[U]||0;g[z-1]-=x}F+=Q=g[z++]=~~(Z.w||AB.w)+s;M=Z.k}if(Q===undefined){return null}var T=-q+F+(d.width-Q);var AF=K.convert(T*r),u=Math.round(AF);var m=T+","+d.height,H;var e="r"+m+"ns";var R=Y.textGradient&&D(Y.textGradient);for(AA=0,z=0;AA<w;++AA){Z=J[AG[AA]]||AB.missingGlyph;if(!Z){continue}if(I){S=L.childNodes[z];if(S.firstChild){S.removeChild(S.firstChild)}}else{S=document.createElement("cvml:shape");L.appendChild(S)}S.stroked="f";S.coordsize=m;S.coordorigin=H=(q-o)+","+p;S.path=(Z.d?"m"+Z.d+"xe":"")+"m"+H+e;S.fillcolor=a;if(R){S.appendChild(R.cloneNode(false))}var AD=S.style;AD.width=u;AD.height=AE;if(c){var O=c[0],N=c[1];var X=Cufon.CSS.color(O.color),W;var h=document.createElement("cvml:shadow");h.on="t";h.color=X.color;h.offset=O.offX+","+O.offY;if(N){W=Cufon.CSS.color(N.color);h.type="double";h.color2=W.color;h.offset2=N.offX+","+N.offY}h.opacity=X.opacity||(W&&W.opacity)||1;S.appendChild(h)}o+=g[z++]}AH.width=Math.max(Math.ceil(K.convert(F*r)),0);return V}})());
																																							

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2009 by Morice Kastoun. All rights reserved.
 * 
 * Manufacturer:
 * Morice Kastoun
 */
Cufon.registerFont({"w":129,"face":{"font-family":"Oceania Medium","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 3 0 0 0 0 0 3","ascent":"288","descent":"-72","x-height":"2","bbox":"-7 -326 348 79","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+00FC"},"glyphs":{" ":{"w":86},"#":{"d":"192,-153r-33,0r-11,64r32,0r-7,43r-33,0r-8,46r-28,0r8,-46r-38,0r-8,46r-28,0r8,-46r-34,0r7,-43r35,0r11,-64r-34,0r7,-42r35,0r7,-43r28,0r-8,43r39,0r8,-43r27,0r-8,43r33,0xm93,-153r-12,64r39,0r11,-64r-38,0","w":210},"$":{"d":"26,-182v-4,-66,57,-89,120,-70r12,-36r18,0r-13,39v8,2,18,1,25,0r-5,43v-14,1,-21,1,-33,-3r-21,61v41,8,70,29,72,73v2,68,-55,90,-120,74r-12,34r-18,0r13,-39v-14,-3,-24,-4,-34,-4v0,-14,3,-34,5,-43v16,-2,27,2,43,7r21,-63v-43,-8,-71,-28,-73,-73xm134,-214v-28,-11,-62,-4,-61,29v0,18,13,30,39,35xm94,-41v28,9,59,5,59,-31v0,-18,-12,-30,-37,-35","w":217},"%":{"d":"124,0r-28,0r101,-251r28,0xm69,-246v42,0,58,34,58,78v0,37,-20,70,-58,68v-36,-2,-53,-36,-53,-79v0,-36,20,-67,53,-67xm73,-216v-24,-1,-27,24,-26,49v1,20,7,38,26,37v32,-1,33,-85,0,-86xm241,-143v42,-1,59,35,59,79v0,37,-20,69,-59,67v-36,-2,-53,-35,-53,-78v0,-36,20,-67,53,-68xm246,-113v-23,-1,-27,24,-26,49v1,20,6,38,26,37v33,-1,32,-85,0,-86","w":315},"&":{"d":"171,-34v-44,64,-153,41,-153,-38v0,-41,19,-64,51,-81v-13,-19,-24,-33,-26,-57v-1,-36,32,-63,68,-63v35,-1,67,27,66,62v-2,34,-21,52,-47,68r32,40v11,-36,37,-75,85,-59r0,40v-38,-14,-46,23,-55,50r62,72r-55,0xm94,-122v-44,11,-37,92,15,80v13,-3,24,-12,34,-24xm103,-174v24,-3,49,-57,7,-60v-30,3,-28,41,-7,60","w":246},"(":{"d":"117,-271v-64,77,-65,243,0,321r-41,0v-30,-41,-53,-96,-53,-160v0,-65,23,-120,53,-161r41,0"},")":{"d":"13,50v63,-78,63,-242,0,-321r40,0v68,75,68,246,0,321r-40,0"},"*":{"d":"153,-205r-48,13r32,37r-32,22r-26,-41r-26,41r-32,-22r32,-37r-48,-13r12,-36r46,18r-3,-48r38,0r-2,48r45,-18","w":158},"+":{"d":"115,-76r0,72r-39,0r0,-72r-60,0r0,-39r60,0r0,-72r39,0r0,72r59,0r0,39r-59,0","w":190},",":{"d":"8,41v23,-17,33,-16,33,-46v-13,1,-19,-5,-19,-19v0,-17,9,-26,28,-26v21,0,32,13,32,38v0,33,-17,59,-51,79","w":102},"-":{"d":"8,-77r0,-37r74,0r0,37r-74,0","w":90},".":{"d":"51,3v-18,0,-28,-9,-28,-27v0,-18,10,-26,28,-26v19,0,28,8,28,26v0,18,-9,27,-28,27","w":102},"\/":{"d":"31,50r-38,0r112,-314r39,0","w":128},"0":{"d":"206,-123v0,70,-27,128,-92,126v-57,-2,-87,-59,-84,-126v3,-56,33,-108,91,-108v51,0,85,53,85,108xm118,-36v42,1,43,-43,43,-88v0,-35,-11,-68,-42,-68v-38,0,-44,45,-44,89v0,35,14,67,43,67","w":228},"1":{"d":"108,-219r0,219r-44,0r0,-182r-36,35r-20,-27r61,-56","w":137},"2":{"d":"36,-202v40,-56,151,-32,144,44v-5,58,-60,84,-92,119r95,0r0,39r-149,0r-10,-39r81,-75v11,-14,32,-27,33,-49v0,-45,-58,-42,-71,-9v-5,4,-9,10,-13,16r-32,-29","w":211},"3":{"d":"105,-231v73,0,108,94,53,134v60,36,28,137,-53,137v-33,0,-66,-23,-88,-40r28,-33v16,11,39,33,60,33v31,0,41,-13,41,-44v0,-33,-41,-36,-79,-34r0,-38v40,3,77,-1,74,-42v-4,-53,-76,-30,-92,-2r-28,-34v20,-19,49,-37,84,-37","w":215},"4":{"d":"177,-53r32,0r0,38r-32,0r0,53r-43,0r0,-53r-98,0v-4,-19,-24,-36,-12,-55v36,-57,49,-115,97,-163r51,0v-45,49,-76,117,-106,180r68,0r0,-75r43,0r0,75","w":228},"5":{"d":"209,-54v0,95,-126,122,-168,49r33,-32v11,19,25,36,49,36v28,0,42,-18,42,-52v0,-30,-12,-54,-40,-54v-23,0,-39,15,-49,32v-11,-5,-23,-9,-35,-12r0,-145r158,0r-10,39r-104,0r0,75v13,-15,30,-27,57,-26v44,1,67,40,67,90","w":239},"6":{"d":"121,4v-82,1,-90,-75,-90,-165v0,-95,91,-142,166,-94r-19,40v-11,-11,-29,-20,-48,-20v-45,-1,-57,38,-55,87v10,-19,33,-31,62,-31v45,-1,74,43,74,90v0,56,-35,93,-90,93xm121,-34v31,0,46,-17,46,-52v0,-37,-14,-55,-44,-55v-32,0,-48,18,-48,53v0,36,15,54,46,54","w":240},"7":{"d":"81,-194v-20,2,-15,17,-28,37r-40,-15v15,-20,19,-59,51,-59r126,0r11,37r-108,230r-48,0r108,-230r-72,0","w":217},"8":{"d":"176,-141v17,15,32,34,33,61v1,48,-41,80,-92,80v-50,0,-92,-32,-91,-80v0,-27,17,-48,33,-61v-14,-13,-27,-32,-27,-55v-1,-45,38,-77,85,-77v47,0,87,31,86,77v0,23,-13,43,-27,55xm118,-233v-28,0,-42,12,-42,37v0,29,15,39,45,39v25,0,38,-13,38,-38v0,-25,-14,-38,-41,-38xm122,-120v-30,0,-52,14,-52,39v0,27,15,40,47,40v31,0,48,-14,48,-41v0,-22,-21,-38,-43,-38","w":237},"9":{"d":"116,-242v82,-1,90,75,90,165v0,95,-90,142,-166,94r19,-40v11,11,29,20,48,20v45,1,57,-38,55,-87v-10,19,-33,31,-62,31v-45,1,-74,-43,-74,-90v0,-56,35,-92,90,-93xm116,-204v-31,0,-46,17,-46,52v0,37,14,55,44,55v32,0,48,-18,48,-53v0,-36,-15,-54,-46,-54","w":236,"k":{"8":-11}},":":{"d":"51,-138v-18,0,-28,-8,-28,-26v0,-18,10,-26,28,-26v19,0,28,8,28,26v0,18,-9,26,-28,26xm51,3v-18,0,-28,-9,-28,-27v0,-18,10,-26,28,-26v19,0,28,8,28,26v0,18,-9,27,-28,27","w":102},";":{"d":"8,41v23,-17,33,-16,33,-46v-13,1,-19,-5,-19,-19v0,-17,9,-26,28,-26v21,0,32,13,32,38v0,33,-17,59,-51,79xm51,-138v-18,0,-28,-8,-28,-26v0,-18,10,-26,28,-26v19,0,28,8,28,26v0,18,-9,26,-28,26","w":102},"<":{"d":"114,0r-86,-96r86,-95r48,0r0,4r-82,91r82,92r0,4r-48,0","w":190},"=":{"d":"23,-33r0,-38r145,0r0,38r-145,0xm23,-122r0,-38r145,0r0,38r-145,0","w":190},">":{"d":"77,-191r85,95r-85,96r-49,0r0,-4r83,-91r-83,-92r0,-4r49,0","w":190},"?":{"d":"21,-247v39,-44,131,-31,131,36v0,60,-76,53,-66,124r-37,0v-7,-55,13,-84,49,-103v20,-10,10,-42,-16,-42v-15,0,-29,8,-45,23xm69,3v-18,0,-27,-9,-27,-26v0,-17,10,-26,28,-26v18,0,28,9,28,26v0,17,-10,26,-29,26","w":166},"@":{"d":"318,-140v0,61,-35,109,-87,111v-22,1,-32,-10,-43,-20v-40,33,-92,27,-92,-33v0,-68,52,-128,111,-90r2,-9r37,0r-20,114v0,6,5,9,12,9v32,-3,47,-41,47,-82v0,-65,-35,-98,-105,-98v-82,0,-128,63,-128,149v0,99,76,131,160,101r3,30v-105,34,-197,-10,-197,-131v0,-104,61,-178,162,-178v85,0,138,44,138,127xm203,-149v-42,-25,-69,21,-67,64v1,34,30,30,53,14","w":336},"A":{"d":"142,-270r91,270r-48,0r-26,-77r-83,0r-25,77r-48,0r92,-270r47,0xm149,-113r-31,-110v-3,44,-22,72,-31,110r62,0","w":236,"k":{"z":5,"y":11,"x":4,"w":12,"v":6,"u":6,"s":4,"r":4,"q":4,"o":4,"g":4,"Y":19,"W":17,"V":17,"T":23,"P":5}},"B":{"d":"222,-76v1,45,-34,76,-79,76r-111,0r0,-270r101,0v75,-9,106,96,49,131v20,9,40,35,40,63xm175,-80v-2,-42,-53,-38,-98,-37r0,77v45,-1,101,10,98,-40xm77,-155v42,-1,89,10,89,-38v0,-47,-48,-36,-89,-37r0,75","w":239,"k":{"z":5,"v":5,"k":4,"j":4,"h":4}},"C":{"d":"206,-25v-25,14,-52,29,-86,29v-73,-2,-99,-73,-99,-160v0,-62,41,-120,104,-116v30,1,56,10,80,27r-25,39v-14,-12,-36,-23,-59,-23v-48,2,-54,59,-54,116v0,77,73,92,118,49","w":217,"k":{"y":15,"w":16,"t":5,"s":7,"r":8,"o":8,"n":6,"m":5,"l":4,"i":6,"h":7,"e":7,"d":7,"a":7}},"D":{"d":"236,-152v0,86,-25,152,-100,152r-101,0r0,-270r101,0v62,0,100,53,100,118xm189,-117v0,-57,-2,-112,-55,-111r-54,0r0,186v67,4,109,1,109,-75","w":257,"k":{"z":4,"w":5,"u":4,"n":5,"m":4,"j":5,"i":4,"h":4,"a":2}},"E":{"d":"35,0r0,-270r164,0r0,41r-119,0r0,71r106,0r0,40r-106,0r0,76r115,0r6,42r-166,0","w":219,"k":{"z":5,"y":5,"x":5,"w":9,"v":9,"u":7,"s":3,"r":2,"q":2,"o":3,"n":4,"l":3,"k":4,"j":4,"i":4,"g":5,"f":4,"a":4}},"F":{"d":"35,-270r159,0r0,42r-114,0r0,70r102,0r0,40r-102,0r0,118r-45,0r0,-270","w":207,"k":{"y":11,"u":11,"t":3,"s":11,"r":11,"o":14,"m":7,"l":7,"j":9,"i":11,"h":9,"e":14,"a":18}},"G":{"d":"129,3v-79,0,-105,-73,-105,-168v0,-103,123,-150,196,-86r-28,37v-14,-14,-34,-25,-58,-25v-60,-1,-64,61,-64,126v0,43,21,74,59,74v40,0,63,-32,59,-77r-57,0r-8,-40r109,0v11,92,-24,159,-103,159","w":255,"k":{"z":7,"y":4,"w":7,"u":5,"s":5,"r":4,"n":4,"l":5,"k":4,"j":5,"h":2}},"H":{"d":"35,0r0,-270r45,0r0,112r110,0r0,-112r45,0r0,270r-45,0r0,-117r-110,0r0,117r-45,0","w":267,"k":{"z":5,"y":8,"w":10,"u":11,"s":5,"r":8,"o":5,"i":5,"g":6,"e":5,"a":7,"T":3}},"I":{"d":"35,0r0,-270r46,0r0,270r-46,0","w":114,"k":{"y":4,"x":5,"w":9,"v":4,"u":8,"s":4,"r":4,"q":6,"n":7,"m":5,"l":4,"k":8,"j":7,"h":5,"g":5,"d":5,"c":5,"b":7,"a":6}},"J":{"d":"83,-5v0,45,-28,76,-74,66r3,-41v17,6,27,-2,27,-25r0,-265r44,0r0,265","w":118,"k":{"u":9,"r":5,"o":6,"n":7,"m":6,"i":4,"h":9,"e":5,"a":7}},"K":{"d":"236,0v-55,19,-73,-36,-95,-67v-12,-17,-19,-32,-27,-46r-34,44r0,69r-45,0r0,-270r45,0r0,140r105,-140r54,0r-94,122r63,100v5,8,17,11,27,7","w":249,"k":{"y":22,"u":13,"r":13,"o":15,"l":10,"i":11,"h":11,"e":13,"a":9,"E":11}},"L":{"d":"34,0r0,-270r46,0r0,229r113,0r-7,41r-152,0","w":200,"k":{"y":17,"u":8,"o":8,"b":5,"a":4,"L":9}},"M":{"d":"285,-270r0,270r-45,0r-1,-204v-15,70,-41,129,-60,195r-43,0r-53,-166r-7,-30r0,205r-45,0r0,-270r65,0r62,199r62,-199r65,0","w":316,"k":{"u":4,"i":5,"e":2}},"N":{"d":"80,0r-45,0r0,-270r47,0r102,179r3,11r0,-190r45,0r0,270r-47,0r-102,-181r-3,-13r0,194","w":265,"k":{"y":4,"u":8,"i":5}},"O":{"d":"244,-158v0,93,-34,160,-112,161v-61,2,-111,-54,-111,-114v0,-94,34,-159,112,-161v61,-1,111,52,111,114xm132,-230v-56,1,-63,57,-63,121v0,38,26,69,63,69v57,0,63,-57,63,-122v0,-36,-28,-69,-63,-68","w":265,"k":{"s":4,"r":2,"n":3,"m":3,"l":4,"k":4,"j":4,"h":4,"f":3,"b":4,"a":4}},"P":{"d":"219,-184v-1,70,-58,100,-139,90r0,94r-45,0r0,-270r101,0v46,-1,84,40,83,86xm172,-184v0,-23,-15,-45,-37,-45r-55,0r0,93r51,0v24,0,41,-23,41,-48","w":233,"k":{"w":8,"u":10,"s":10,"r":5,"o":11,"n":11,"l":8,"j":11,"i":11,"h":14,"g":18,"f":4,"e":18,"d":18,"a":18}},"Q":{"d":"132,-272v135,0,137,239,40,271v12,11,28,30,51,18r0,38v-41,18,-67,-24,-93,-47v-73,-6,-107,-67,-107,-158v0,-72,39,-122,109,-122xm131,-233v-55,-1,-62,53,-62,114v0,47,20,83,62,83v49,0,60,-53,60,-110v0,-48,-19,-87,-60,-87","w":257,"k":{"u":4}},"R":{"d":"140,-270v48,-2,85,39,85,86v0,39,-19,66,-56,82v22,17,21,67,60,63r1,39v-63,17,-74,-48,-99,-86v-10,-14,-29,-11,-51,-11r0,97r-45,0r0,-270r105,0xm178,-184v0,-24,-16,-46,-39,-45r-59,0r0,91r57,0v23,1,41,-22,41,-46","w":247,"k":{"y":6,"w":11,"u":11,"s":8,"r":7,"o":11,"j":7,"i":7,"h":7,"e":11,"d":7,"a":8,"A":3}},"S":{"d":"215,-76v0,96,-135,95,-191,47r16,-47v20,29,118,67,124,2v2,-26,-34,-37,-60,-43v-43,-10,-78,-30,-79,-79v-2,-88,126,-90,181,-47r-19,45v-24,-22,-43,-30,-73,-33v-43,-4,-52,56,-14,67v50,14,115,31,115,88","w":228,"k":{"z":5,"y":12,"w":11,"v":11,"u":7,"t":4,"r":5,"q":4,"p":4,"n":6,"m":5,"l":6,"k":6,"i":5,"h":6}},"T":{"d":"78,0r0,-231r-66,0r-1,-39r184,0r0,39r-71,0r0,231r-46,0","w":205,"k":{"z":32,"y":32,"x":26,"w":34,"u":38,"s":29,"r":37,"o":37,"m":26,"i":13,"h":14,"e":32,"d":28,"c":28,"b":7,"a":31}},"U":{"d":"135,4v-67,1,-105,-48,-105,-115r0,-159r46,0r0,163v0,46,19,69,58,69v92,1,50,-147,59,-232r46,0r0,160v1,65,-42,114,-104,114","w":266,"k":{"z":5,"x":4,"w":7,"v":5,"s":5,"r":5,"p":5,"n":5,"m":5,"l":5,"k":6,"i":5,"h":5,"g":4}},"V":{"d":"222,-271r-74,271r-62,0r-80,-271r50,0r61,224r56,-224r49,0","w":227,"k":{"u":11,"s":11,"o":13,"l":3,"i":7,"h":4,"e":14,"a":14,"E":3}},"W":{"d":"348,-270r-65,270r-57,0r-44,-180v-11,63,-28,120,-41,180r-57,0r-70,-270r49,0r50,212r45,-196r46,0r46,175r3,21v12,-74,31,-141,46,-212r49,0","w":360,"k":{"y":9,"u":18,"o":18,"i":11,"h":8,"e":15,"a":15,"A":14}},"X":{"d":"198,-59v11,15,12,19,32,17r0,43v-69,12,-75,-65,-109,-102v-21,31,-38,69,-59,101r-54,0r88,-139r-88,-131r55,0r57,91r55,-91r54,0r-84,130","w":240,"k":{"y":18,"i":7,"e":7,"a":5}},"Y":{"d":"104,-141v13,-50,37,-84,54,-129r53,0v-26,48,-50,99,-75,150v-16,32,-6,77,-9,120r-45,0v-1,-60,-1,-106,-23,-150r-59,-120r51,0v17,43,41,81,53,129","w":210,"k":{"u":34,"s":34,"p":29,"o":34,"i":15,"e":34,"a":33,"A":22}},"Z":{"d":"65,-42r132,0r0,42r-170,0r-13,-50r133,-181r-124,0r0,-39r166,0r12,40","w":213,"k":{"y":13,"u":11,"o":11,"i":2,"h":4,"e":11,"a":4}},"[":{"d":"34,50r0,-314r86,0r-3,35r-37,0r0,244r37,0r3,35r-86,0"},"\\":{"d":"105,50r-112,-314r38,0r113,314r-39,0","w":137},"]":{"d":"95,-264r0,314r-86,0r3,-35r38,0r0,-244r-38,0r-3,-35r86,0"},"^":{"d":"125,-175r-30,-81r-29,81r-38,0v9,-35,25,-63,36,-96r62,0v12,33,28,61,37,96r-38,0","w":190},"_":{"d":"12,59r0,-33r156,0r0,33r-156,0","w":180},"a":{"d":"29,-181v62,-30,154,-10,154,64r0,117r-42,0r0,-15v-39,35,-124,15,-124,-45v0,-60,80,-85,122,-48v8,-65,-62,-54,-99,-31xm139,-62v0,-21,-20,-27,-45,-27v-21,0,-32,9,-32,27v0,23,21,26,47,26v15,0,30,-11,30,-26","w":208,"k":{"z":5,"y":7,"x":4,"w":9,"v":9,"u":7,"t":5,"s":5,"r":5,"p":2,"n":7,"m":5,"l":6,"k":7,"j":7,"i":4,"h":7,"g":4,"f":6,"d":2,"b":7,"a":2}},"b":{"d":"75,-170v37,-47,129,-19,125,43r0,61v4,61,-87,91,-125,44r-2,22r-42,0r0,-265r44,-8r0,103xm115,-36v40,0,40,-38,40,-80v0,-22,-18,-40,-40,-40v-38,0,-40,38,-40,80v0,23,16,40,40,40","w":222,"k":{"z":5,"y":4,"w":8,"v":4,"u":4,"t":4,"s":6,"r":4,"p":2,"o":-4,"m":4,"l":4,"k":5,"j":6,"i":5,"h":5,"f":4,"e":-2,"b":4}},"c":{"d":"168,-19v-14,13,-42,21,-69,21v-56,-1,-82,-47,-82,-115v0,-44,37,-81,85,-81v26,0,48,5,65,17r-13,39v-28,-27,-92,-27,-92,25v0,41,4,76,42,76v21,0,40,-11,52,-23","w":184,"k":{"z":4,"y":5,"w":11,"v":5,"u":15,"t":6,"r":12,"q":5,"p":5,"o":10,"n":9,"m":8,"l":9,"k":13,"i":7,"h":13,"g":11,"f":5,"e":4,"d":8,"c":7,"b":7,"a":5}},"d":{"d":"22,-124v-5,-64,86,-93,125,-47r0,-95r44,-7r0,273r-42,0r-1,-22v-38,48,-131,18,-126,-47r0,-55xm108,-157v-38,0,-44,38,-41,81v1,23,17,40,41,40v39,0,39,-39,39,-81v0,-22,-18,-40,-39,-40","w":218,"k":{"z":3,"y":4,"w":7,"v":4,"u":6,"s":8,"r":5,"n":9,"m":4,"l":5,"k":5,"j":5,"i":7,"h":4,"g":4,"d":2,"b":5,"a":1}},"e":{"d":"63,-79v-2,62,91,50,114,15v0,28,1,55,-27,59v-72,26,-132,-13,-132,-101v0,-50,39,-88,90,-88v41,0,76,25,76,65v0,52,-64,53,-121,50xm63,-112v30,-2,77,9,77,-22v0,-29,-54,-26,-67,-8v-6,9,-10,18,-10,30","w":201,"k":{"z":4,"y":5,"x":7,"w":5,"v":6,"u":4,"t":6,"s":4,"r":5,"p":4,"n":9,"m":5,"l":4,"k":5,"j":3,"h":6,"g":4,"f":3,"d":4,"b":8,"a":2}},"f":{"d":"139,-228v-27,-15,-71,-11,-61,33r61,0r0,35r-61,0r0,160r-44,0r0,-160r-22,0r0,-35r22,0v-8,-66,49,-90,105,-71r0,38","w":149,"k":{"y":4,"u":17,"t":6,"s":15,"r":7,"o":18,"n":11,"l":8,"k":11,"j":9,"i":5,"h":8,"g":15,"f":12,"e":13,"d":18,"c":14,"b":9,"a":18,",":13}},"g":{"d":"22,-124v-4,-64,86,-96,125,-47r0,-17r44,-6r0,192v4,71,-84,99,-147,64r5,-47v24,28,98,40,98,-11r0,-26v-38,46,-130,18,-125,-47r0,-55xm108,-36v38,0,39,-40,39,-82v0,-23,-16,-40,-39,-40v-40,0,-41,39,-41,82v0,22,19,40,41,40","w":218,"k":{"z":2,"w":7,"u":7,"s":5,"r":5,"p":2,"o":2,"n":6,"m":4,"l":4,"i":4,"h":9,"g":4,"d":2,"b":9,"a":1}},"h":{"d":"75,-172v40,-48,125,-16,125,50r0,122r-45,0v-6,-61,23,-159,-41,-159v-62,0,-33,100,-39,159r-44,0r0,-266r44,-7r0,101","w":228,"k":{"y":13,"u":10,"t":9,"s":6,"r":5,"o":4,"n":11,"m":9,"l":7,"k":9,"i":6,"h":8,"f":5,"e":5,"d":5,"b":7,"a":5}},"i":{"d":"74,0r-44,0r0,-191r44,-6r0,197xm54,-222v-19,1,-28,-7,-28,-25v0,-18,9,-26,27,-25v17,0,25,9,25,25v0,16,-8,25,-24,25","w":104,"k":{"z":5,"x":5,"w":14,"v":5,"t":5,"s":9,"r":9,"q":4,"p":6,"o":5,"n":11,"m":5,"l":6,"k":7,"j":8,"i":4,"h":8,"g":4,"e":5,"d":5,"c":2,"b":10,"a":5}},"j":{"d":"76,-8v1,51,-31,89,-81,79r0,-40v24,9,37,-3,37,-36r0,-186r44,-6r0,189xm55,-222v-18,1,-27,-7,-27,-25v0,-17,8,-25,26,-25v17,0,26,9,26,25v0,16,-9,25,-25,25","w":104,"k":{"u":7,"s":4,"p":5,"o":4,"k":7,"i":2,"h":6,"e":3,"d":5,"b":9,"a":2}},"k":{"d":"203,-2v-58,17,-75,-49,-101,-79r-27,30r0,51r-44,0r0,-267r44,-7r0,169r79,-88r51,0r-71,80v15,25,27,40,43,61v8,10,14,13,26,10r0,40","w":210,"k":{"z":3,"y":5,"w":4,"v":6,"u":6,"s":9,"r":6,"o":10,"n":9,"m":5,"l":5,"k":4,"i":2,"h":6,"e":9,"d":6,"c":5,"b":6,"a":6}},"l":{"d":"75,0r-44,0r0,-266r44,-7r0,273","w":105,"k":{"z":5,"y":7,"w":12,"v":5,"u":11,"t":4,"s":6,"r":4,"p":4,"o":3,"n":11,"m":4,"l":5,"k":7,"i":9,"h":7,"g":5,"f":6,"e":5,"d":6,"c":2,"b":4,"a":5}},"m":{"d":"186,-161v35,-60,132,-34,132,37r0,124r-46,0v-7,-58,24,-159,-39,-159v-61,0,-31,101,-38,159r-45,0v-7,-58,24,-159,-39,-159v-61,0,-31,101,-38,159r-44,0r0,-188r44,-6r0,22v30,-35,92,-30,113,11","w":345,"k":{"y":11,"w":13,"u":7,"t":5,"s":4,"p":5,"o":1,"n":7,"m":5,"l":8,"k":3,"i":5,"f":6,"e":4,"d":4,"b":11,"a":2}},"n":{"d":"75,-172v40,-48,125,-16,125,50r0,122r-45,0v-6,-61,23,-159,-41,-159v-62,0,-33,100,-39,159r-44,0r0,-188r44,-6r0,22","w":228,"k":{"y":9,"x":5,"u":5,"t":7,"s":6,"o":2,"n":9,"m":5,"l":6,"k":7,"j":7,"i":5,"h":7,"g":5,"e":4,"d":5,"c":4,"b":7,"a":4}},"o":{"d":"106,-195v59,1,89,43,89,112v0,48,-40,87,-89,85v-56,-1,-88,-45,-88,-112v0,-48,40,-86,88,-85xm107,-35v34,0,46,-31,44,-70v-2,-29,-18,-53,-45,-53v-33,0,-44,33,-44,72v0,34,15,51,45,51","w":214,"k":{"z":2,"y":5,"x":4,"w":9,"v":4,"u":5,"t":5,"s":4,"r":4,"n":7,"m":4,"l":4,"k":6,"j":4,"h":5,"g":-4,"f":4,"e":-2,"d":-4,"b":7}},"p":{"d":"195,-70v5,65,-86,93,-125,47r0,88r-44,7r0,-261r44,-6r0,22v39,-49,130,-17,125,48r0,55xm109,-37v40,1,41,-39,41,-83v0,-23,-18,-39,-41,-39v-40,0,-39,40,-39,82v0,22,18,40,39,40","w":222,"k":{"z":7,"y":8,"u":9,"t":6,"s":5,"r":8,"p":7,"o":3,"n":5,"m":11,"l":11,"j":11,"i":8,"h":7,"g":5,"f":9,"e":4,"d":5,"b":10,"a":5}},"q":{"d":"144,-21v-39,46,-130,18,-125,-47r0,-55v-4,-64,86,-96,125,-47r0,-22r44,0r0,258r-44,7r0,-94xm105,-157v-40,0,-41,38,-41,81v0,23,18,40,41,40v39,0,39,-40,39,-82v0,-22,-16,-39,-39,-39","w":214,"k":{"u":9}},"r":{"d":"72,-161v11,-23,36,-43,66,-30r-3,42v-31,-12,-63,6,-63,44r0,105r-44,0r0,-191r44,-3r0,33","w":147,"k":{"z":11,"y":5,"x":2,"w":12,"v":7,"u":12,"t":5,"s":13,"r":8,"p":4,"o":18,"n":14,"m":11,"l":10,"k":13,"i":12,"h":9,"g":15,"e":22,"d":22,"c":18,"b":14,"a":18,".":24,",":10}},"s":{"d":"136,-105v64,22,39,107,-32,107v-31,0,-57,-10,-80,-19r13,-38v21,13,42,20,67,21v32,2,33,-37,4,-42v-42,-8,-84,-15,-86,-62v-4,-71,105,-64,147,-36r-13,37v-25,-14,-38,-22,-63,-22v-34,0,-39,36,-7,41v16,3,37,8,50,13","w":186,"k":{"z":4,"y":6,"x":4,"w":14,"v":5,"u":9,"t":9,"s":5,"q":2,"p":4,"n":2,"m":5,"l":5,"k":9,"i":5,"h":5,"g":4,"f":4,"c":4}},"t":{"d":"92,1v-70,1,-59,-90,-59,-161r-25,0r0,-35r25,0r0,-56r44,-8r0,64r67,0r0,35r-67,0v5,42,-17,120,26,122v12,0,24,-5,34,-14r0,41v-10,7,-29,12,-45,12","w":161,"k":{"z":9,"y":5,"w":14,"v":7,"u":7,"t":9,"s":6,"r":9,"o":14,"k":11,"i":8,"h":10,"e":18,"d":14,"c":14,"b":11,"a":15}},"u":{"d":"154,-22v-40,49,-125,17,-125,-50r0,-122r46,0v6,61,-23,160,40,160v62,0,32,-100,39,-160r44,0r0,194r-41,0","w":226,"k":{"z":5,"w":5,"v":4,"u":9,"t":5,"s":5,"r":5,"p":7,"o":4,"n":9,"m":8,"l":8,"k":11,"j":7,"i":5,"h":5,"g":4,"e":4,"d":5,"c":1,"b":11,"a":4}},"v":{"d":"114,0r-48,0r-60,-195r46,0r38,152r39,-152r46,0","w":180,"k":{"u":4,"s":4,"o":5,"i":5,"e":6,"d":5,"b":5,"a":11}},"w":{"d":"228,0r-49,0r-30,-116r-2,-17v-9,46,-22,88,-32,133r-50,0r-52,-194r46,0r31,144v9,-51,24,-95,35,-144r43,0r34,128r2,16r30,-144r46,0","w":292,"k":{"y":4,"u":13,"t":5,"s":4,"r":9,"o":8,"n":11,"l":6,"k":5,"i":9,"h":6,"g":7,"e":8,"c":5,"a":11}},"x":{"d":"179,0r-51,0r-37,-64r-36,64r-50,0r63,-98v-22,-30,-42,-64,-63,-96r50,0r36,65r37,-65r51,0r-61,96","w":185,"k":{"u":7,"o":11,"n":5,"m":3,"i":4,"e":10,"b":4}},"y":{"d":"20,65r4,-40v21,14,49,6,50,-20r-71,-199r48,0r43,139r38,-139r48,0r-72,223v-11,40,-49,51,-88,36","w":182,"k":{"z":4,"w":5,"u":5,"s":8,"r":4,"p":3,"o":4,"n":5,"m":7,"l":7,"k":5,"i":4,"h":5,"g":9,"e":7,"d":7,"c":4,"b":7,"a":9,",":12}},"z":{"d":"17,-40r100,-117r-90,0r-3,-37r146,0r0,42r-97,115r98,0r0,37r-141,0","w":192,"k":{"z":5,"u":5,"t":5,"s":4,"o":6,"l":8,"i":2,"h":7,"e":8,"c":9,"a":7}},"{":{"d":"66,-214v5,27,42,40,42,71v0,20,-13,32,-40,35r0,3v58,2,41,60,13,80v-13,9,-27,40,4,40r29,0r0,35v-57,7,-109,-16,-85,-69v8,-16,32,-32,35,-54v2,-18,-25,-16,-45,-16r0,-36v49,10,54,-26,25,-50v-37,-32,-21,-98,43,-89r27,0r0,35v-19,1,-51,-5,-48,15"},"|":{"d":"32,79r0,-355r36,0r0,355r-36,0","w":99},"}":{"d":"78,-48v41,33,37,107,-36,98r-27,0r0,-35v26,3,64,-1,42,-29v-28,-22,-63,-85,4,-91r0,-3v-67,-6,-31,-72,-4,-91v10,-14,8,-30,-13,-30r-29,0r0,-35v58,-7,111,17,85,69v-8,17,-33,32,-35,55v-2,18,26,15,45,15r0,36v-38,-7,-61,18,-32,41"},"~":{"d":"169,-89v-46,51,-102,-35,-147,16r0,-39v31,-33,73,3,108,3v11,0,24,-7,39,-20r0,40","w":190},"'":{"d":"60,-172r-39,0r-3,-99r46,0","w":81},"`":{"d":"92,-210r-43,-54r53,0v9,19,22,33,29,54r-39,0","w":180},"\u00c4":{"d":"85,-287v-14,0,-21,-6,-21,-19v0,-13,7,-20,21,-20v14,0,22,7,22,20v0,13,-8,19,-22,19xm155,-287v-14,0,-22,-6,-22,-19v0,-13,8,-20,22,-20v14,0,21,7,21,20v0,13,-7,19,-21,19xm142,-270r91,270r-48,0r-26,-77r-83,0r-25,77r-48,0r92,-270r47,0xm149,-113r-31,-110v-3,44,-22,72,-31,110r62,0","w":235},"\u00d6":{"d":"99,-287v-14,0,-21,-6,-21,-19v0,-13,7,-20,21,-20v14,0,22,7,22,20v0,13,-8,19,-22,19xm169,-287v-14,0,-22,-6,-22,-19v0,-13,8,-20,22,-20v14,0,21,7,21,20v0,13,-7,19,-21,19xm244,-158v0,93,-34,160,-112,161v-61,2,-111,-54,-111,-114v0,-94,34,-159,112,-161v61,-1,111,52,111,114xm195,-109v0,-64,-7,-121,-63,-121v-56,0,-63,57,-63,121v0,38,26,69,63,69v37,0,63,-31,63,-69","w":263},"\u00dc":{"d":"101,-287v-14,0,-21,-6,-21,-19v0,-13,8,-20,22,-20v14,0,21,7,21,20v0,13,-8,19,-22,19xm171,-287v-14,0,-22,-6,-22,-19v0,-13,8,-20,22,-20v14,0,21,7,21,20v0,13,-7,19,-21,19xm138,4v-67,1,-105,-48,-105,-115r0,-159r46,0r0,163v0,46,19,69,58,69v39,0,58,-23,58,-69r0,-163r47,0r0,160v1,65,-42,114,-104,114","w":260},"\u00e4":{"d":"71,-213v-15,0,-22,-8,-22,-23v0,-15,7,-22,22,-22v15,0,22,7,22,22v0,15,-7,23,-22,23xm142,-213v-15,0,-22,-8,-22,-23v0,-15,8,-22,23,-22v14,0,21,7,21,22v0,15,-7,23,-22,23xm30,-181v62,-30,154,-10,154,64r0,117r-41,0r-1,-15v-39,35,-124,15,-124,-45v0,-60,80,-85,122,-48v8,-65,-62,-54,-99,-31xm140,-62v0,-21,-20,-27,-45,-27v-21,0,-32,9,-32,27v0,23,21,26,47,26v15,0,30,-11,30,-26","w":209},"\u00f6":{"d":"72,-213v-15,0,-22,-8,-22,-23v0,-15,7,-22,22,-22v15,0,22,7,22,22v0,15,-7,23,-22,23xm143,-213v-15,0,-22,-8,-22,-23v0,-15,7,-22,22,-22v14,0,22,7,22,22v0,15,-7,23,-22,23xm106,-195v59,1,89,43,89,113v0,48,-41,85,-89,84v-56,-1,-88,-45,-88,-112v0,-48,40,-86,88,-85xm107,-35v34,0,46,-31,44,-70v-2,-29,-18,-53,-45,-53v-33,0,-44,33,-44,72v0,34,15,51,45,51","w":213},"\u00fc":{"d":"80,-213v-15,0,-22,-8,-22,-23v0,-15,7,-22,22,-22v15,0,22,7,22,22v0,15,-7,23,-22,23xm151,-213v-15,0,-22,-8,-22,-23v0,-15,8,-22,23,-22v14,0,21,7,21,22v0,15,-7,23,-22,23xm156,-22v-40,49,-126,17,-126,-50r0,-122r46,0v6,61,-23,160,40,160v63,0,34,-100,40,-160r43,0r0,194r-41,0","w":224},"\"":{"d":"60,-172r-39,0r-3,-99r46,0xm131,-172r-39,0r-4,-99r47,0","w":152},"!":{"d":"72,-87r-35,0r-4,-83r0,-100r44,0r0,100xm55,3v-18,0,-28,-9,-28,-27v0,-17,10,-26,28,-26v18,0,27,9,27,26v0,18,-9,27,-27,27","w":109},"\u00a0":{"w":86}}});

Cufon.replace('.meta, .meta2, .meta3, #nav li a, h1, h2, h3, h5, h6', {
			  hover: true
              });

