// Mailmask

jQuery.fn.noSpam = function() {
	var at = '@';
	return this.each(function(){
		e = null;
		jQuery(this).find('span').replaceWith(at);
		e = jQuery(this).text();
		jQuery(this).attr('href', 'mailto:' + e);
	});
};


jQuery(document).ready(function(){
	jQuery('a[href*=#]').click(function(){
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var $target = $(this.hash);
			$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
			if ($target.length) {
				var targetOffset = $target.offset().top;
				jQuery('html,body').animate({scrollTop: targetOffset}, 1000);
				return false;
			};
		};
	});
	
	jQuery('a.escape').noSpam();
	jQuery("a[rel='lightbox']").colorbox({maxHeight:"90%"});
});




// Slide Down Box Menu with jQuery and CSS3

$(function() {
/**
//* for each menu element, on mouseenter, 
//* we enlarge the image, and show both sdt_active span and 
//* sdt_wrap span. If the element has a sub menu (sdt_box),
//* then we slide it - if the element is the last one in the menu
//* we slide it to the left, otherwise to the right
*/
                $('#sdt_menu > li').bind('mouseenter',function(){
					var $elem = $(this);
					$elem.find('img')
						 .stop(true)
						 .animate({
							'width':'130px',
							'height':'120px',
							'left':'0px'
						 },400,'easeOutBack')
						 .andSelf()
						 .find('.sdt_wrap')
					     .stop(true)
						 .animate({'top':'205px'},500,'easeOutBack')
						 .andSelf()
						 .find('.sdt_active')
					     .stop(true)
						 .animate({'height':'120px'},300,function(){
						var $sub_menu = $elem.find('.sdt_box');
						if($sub_menu.length){
							var left = '130px';
							if($elem.parent().children().length == $elem.index()+1)
								left = '-130px';
							$sub_menu.show().animate({'left':left},200);
						}	
					});
				}).bind('mouseleave',function(){
					var $elem = $(this);
					var $sub_menu = $elem.find('.sdt_box');
					if($sub_menu.length)
						$sub_menu.hide().css('left','0px');
					
					$elem.find('.sdt_active')
						 .stop(true)
						 .animate({'height':'0px'},300)
						 .andSelf().find('img')
						 .stop(true)
						 .animate({
							'width':'0px',
							'height':'0px',
							'left':'85px'},400)
						 .andSelf()
						 .find('.sdt_wrap')
						 .stop(true)
						 .animate({'top':'85px'},500);
				});
            });


function tabSlider(){
	var self = this;

	var sliderID = 'slider'; //ID
	var containerID = 'tab-slider-container'; //ID
	var prev = 'prevBtn'; //ID
	var next = 'nextBtn'; //ID
	var controlButtons = 'tab-slider-button'; //class
	var slideSpeed = 600; //ms
	var slidingTabs = 1; //how many tabs are to be slide
	var tabWidth = 185; //width incl. margin, padding and border, this has nothing to do with your css file
	var visibleTabs = 4;
	var autoPlay = true;
	var autoPlayDelay = 3000;//ms
	var prevTop = 1;//px
	var prevLeft = 0;//px
	var nextTop = 0;//px
	var nextLeft = 748;//px
	
	var containerWidth = tabWidth*visibleTabs;
	var containerHeight = jQuery('#'+containerID).height();
	var tabs = jQuery('#'+sliderID).children('li').length;
	visibleTabs = visibleTabs > tabs ? tabs : visibleTabs;
	slidingTabs = slidingTabs > visibleTabs ? visibleTabs : slidingTabs;
	var sliderWidth = tabs*tabWidth*3;
	var interval_autoSlide;
	
	tabSlider.prototype.checkPosition = function(current){
		var current = jQuery('#'+sliderID).css('margin-left');
		var leftMin = parseInt('-'+sliderWidth*2/3);
		var leftMax = parseInt('-'+(sliderWidth/3))+tabWidth;

		if(parseInt(current) <= leftMin){
			jQuery('#'+sliderID).css('margin-left','-'+parseInt(sliderWidth/3)+'px');
		}else if(parseInt(current) >= leftMax){
			jQuery('#'+sliderID).css('margin-left','-'+parseInt((sliderWidth*2/3)-tabWidth)+'px');
		};
	};
	
	tabSlider.prototype.slideNext = function(){
		jQuery('#'+sliderID).stop(true,true);
		jQuery('#'+sliderID).animate({
				marginLeft: '-='+ (tabWidth*slidingTabs)
			},slideSpeed,function(){self.checkPosition();}
		);
		autoPlay=true;
	};
	
	tabSlider.prototype.slidePrev = function(){
		jQuery('#'+sliderID).stop(true,true);
		jQuery('#'+sliderID).animate({
				marginLeft: '+='+ (tabWidth*slidingTabs)
			},slideSpeed,function(){self.checkPosition();}
		);
		autoPlay=true;
	};
	
	tabSlider.prototype.slide = function(){
		jQuery('#'+containerID).css('width',containerWidth);
		var offset = jQuery('#'+containerID).offset();
		jQuery('#'+containerID).after('<span id="'+prev+'" class="'+controlButtons+'">&laquo;</span><span id="'+next+'" class="'+controlButtons+'">&raquo;</span>');
		var ul = jQuery('#'+sliderID).html();
		jQuery('#'+sliderID)
			.append(ul)
			.prepend(ul)
			.css({
				'margin-left':'-'+sliderWidth/3+'px',
				'width':sliderWidth
			});
		if(jQuery('#'+prev).css('top'))
		jQuery('#'+prev)
			.css({
				'top':prevTop,
				'left':prevLeft,
				'text-align':'center'
			})
			.click(function(){
				window.clearInterval(interval_autoSlide);
				self.slidePrev();
			});
		jQuery('#'+next)
			.css({
				'top':nextTop,
				'left': nextLeft,
				'text-align':'center'
			})
			.click(function(){
				window.clearInterval(interval_autoSlide);
				self.slideNext();
			});
		if(autoPlay){interval_autoSlide = window.setInterval(function(){self.slideNext();},autoPlayDelay);}
	};
};

jQuery(document).ready(function(){
	var slider = new tabSlider();
	slider.slide();
});


// CUFON SCRIPT

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */

var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright by ClassicFontCorporation, USA RWE
 */
Cufon.registerFont({"w":188,"face":{"font-family":"AvantageCondensed","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-59 -325 319 86","underline-thickness":"14.4141","underline-position":"-41.1328","unicode-range":"U+0020-U+2026"},"glyphs":{" ":{"w":94},"!":{"d":"29,-36r26,0r0,37r-26,0r0,-37xm29,-254r26,0r0,186r-26,0r0,-186","w":72},"\"":{"d":"25,-254r24,0r-22,56r-23,0xm64,-254r24,0r-22,56r-24,0","w":85},"#":{"d":"47,-74r-35,0r0,-24r38,0r10,-70r-39,0r0,-24r42,0r11,-74r25,0r-11,74r45,0r10,-74r25,0r-10,74r30,0r0,24r-34,0r-10,70r33,0r0,24r-36,0r-10,74r-25,0r10,-74r-44,0r-11,74r-25,0xm85,-168r-10,70r45,0r9,-70r-44,0","w":199},"$":{"d":"74,-228v-21,0,-40,20,-39,40v4,62,116,45,116,121v0,38,-21,62,-63,70r0,34r-21,0r0,-34v-42,-11,-53,-24,-64,-67r27,0v6,58,94,55,94,-1v0,-65,-118,-46,-116,-122v0,-32,28,-60,58,-63r0,-32r22,0r0,32v37,6,51,28,57,67r-28,0v-6,-31,-11,-44,-43,-45","w":159},"%":{"d":"-3,-175v0,-43,15,-84,55,-83v39,0,56,38,56,81v0,40,-17,85,-52,85v-39,0,-59,-40,-59,-83xm20,-176v-1,29,9,65,33,64v22,0,33,-23,33,-70v0,-26,-11,-59,-33,-59v-22,0,-33,22,-33,65xm179,-255r21,0r-102,256r-21,0xm170,-81v0,-40,18,-81,54,-81v39,0,56,38,56,82v0,43,-17,85,-55,85v-38,0,-55,-42,-55,-86xm225,-144v-45,3,-45,127,0,130v43,-3,47,-128,0,-130","w":289},"&":{"d":"4,-65v1,-41,19,-55,49,-78v-36,-40,-25,-113,31,-116v29,-1,52,23,52,51v0,27,-16,51,-47,72r49,63v14,-29,15,-29,44,-86r23,11v-16,32,-32,64,-50,96v16,18,31,36,44,53r-34,0r-25,-32v-8,18,-36,37,-62,36v-42,0,-76,-29,-74,-70xm68,-122v-51,27,-48,100,14,101v14,0,28,-9,42,-28v-29,-35,-28,-36,-56,-73xm87,-235v-39,5,-34,46,-13,81v24,-15,36,-33,36,-54v1,-13,-11,-29,-23,-27","w":209},"'":{"d":"40,-253r25,0r-37,76r-26,0","w":62},"(":{"d":"146,83v-95,-50,-136,-156,-83,-261v21,-42,41,-58,83,-81r0,26v-47,26,-82,79,-82,145v0,73,34,111,82,147r0,24","w":145},")":{"d":"78,-87v0,-67,-35,-121,-81,-147r0,-24v102,50,135,170,77,272v-18,32,-45,54,-78,69r0,-25v55,-35,82,-84,82,-145","w":145},"*":{"d":"38,-204r-34,-17r9,-15r32,20r-2,-37r18,0r-2,36r31,-21r10,16r-35,17r35,16r-10,18r-31,-22r2,38r-18,0r2,-38r-31,21r-10,-15","w":108},"+":{"d":"4,-117r68,0r0,-68r22,0r0,68r69,0r0,22r-69,0r0,69r-22,0r0,-69r-68,0r0,-22","w":173},",":{"d":"35,-36r27,0r-38,77r-25,0","w":65},"-":{"d":"6,-109r81,0r0,22r-81,0r0,-22","w":94},".":{"d":"20,-36r28,0r0,36r-28,0r0,-36","w":65},"\/":{"d":"92,-254r20,0r-103,274r-19,0","w":115},"0":{"d":"5,-126v0,-70,25,-132,88,-132v57,-1,81,64,81,129v0,67,-26,132,-85,132v-58,0,-84,-64,-84,-129xm33,-126v0,49,15,105,56,105v42,0,59,-58,59,-108v0,-50,-15,-106,-58,-106v-43,0,-57,55,-57,109"},"1":{"d":"44,-253r68,0r0,254r-28,0r0,-231r-40,0r0,-23","k":{"1":36}},"2":{"d":"92,-257v65,-2,91,75,52,125v-22,28,-70,78,-98,109r114,0r0,23r-149,0r0,-22v23,-21,82,-89,104,-114v33,-38,26,-98,-25,-98v-31,0,-47,24,-47,58r-28,0v-2,-50,30,-81,77,-81"},"3":{"d":"171,-71v0,68,-92,96,-137,54v-14,-13,-22,-34,-23,-59r27,0v4,37,22,56,55,56v30,0,50,-23,50,-53v-1,-41,-26,-53,-73,-53r0,-23v75,13,81,-86,17,-86v-25,0,-43,23,-43,49r-26,0v3,-46,25,-71,72,-71v73,0,96,102,29,118v35,11,52,34,52,68"},"4":{"d":"4,-80r99,-173r34,0r0,174r35,0r0,22r-35,0r0,58r-28,0r0,-58r-105,0r0,-23xm112,-79v-1,-49,-2,-115,4,-153v-13,25,-41,76,-86,153r82,0"},"5":{"d":"169,-87v8,75,-84,118,-135,69v-14,-14,-21,-32,-21,-55r27,0v1,30,20,52,49,52v33,0,53,-29,53,-64v0,-34,-17,-66,-48,-65v-27,0,-44,15,-50,45v-2,0,-9,-3,-23,-6r14,-142r118,0r0,24r-96,0r-10,79v48,-53,130,-9,122,63"},"6":{"d":"94,3v-59,-1,-85,-57,-84,-123v0,-92,30,-137,89,-137v40,0,64,23,71,71r-28,0v1,-27,-18,-49,-45,-48v-45,0,-63,57,-62,113v28,-76,137,-43,137,40v0,48,-31,85,-78,84xm93,-20v33,0,52,-26,52,-60v0,-33,-18,-61,-48,-61v-36,1,-55,23,-55,60v0,33,20,61,51,61"},"7":{"d":"9,-253r152,0r0,20r-83,233r-30,0r86,-231r-125,0r0,-22"},"8":{"d":"8,-71v0,-33,24,-61,52,-69v-68,-21,-39,-117,32,-117v36,0,72,24,70,60v-1,32,-15,44,-39,57v34,13,50,36,50,68v0,43,-37,75,-80,75v-47,0,-86,-29,-85,-74xm147,-75v0,-30,-24,-53,-55,-52v-38,0,-56,20,-56,60v-1,26,27,48,54,47v34,0,57,-21,57,-55xm48,-192v0,24,19,40,44,40v25,0,43,-17,43,-41v0,-25,-19,-42,-44,-42v-25,0,-43,18,-43,43"},"9":{"d":"171,-132v0,74,-24,136,-89,136v-41,0,-65,-24,-71,-72r27,0v0,28,18,48,45,48v47,1,64,-56,62,-113v-29,78,-137,41,-137,-40v0,-46,33,-84,78,-84v61,0,85,57,85,125xm36,-172v0,33,19,59,50,59v33,0,52,-26,52,-60v0,-34,-19,-60,-51,-60v-34,0,-51,25,-51,61"},":":{"d":"30,-37r27,0r0,37r-27,0r0,-37xm30,-159r27,0r0,37r-27,0r0,-37","w":72},";":{"d":"31,-36r28,0r-39,77r-25,0xm31,-159r28,0r0,37r-28,0r0,-37","w":72},"<":{"d":"200,-160r-154,69r154,69r0,25r-183,-83r0,-22r183,-83r0,25","w":218},"=":{"d":"-9,-84r182,0r0,21r-182,0r0,-21xm-9,-148r182,0r0,21r-182,0r0,-21","w":173},">":{"d":"19,-22r153,-69r-153,-69r0,-25r183,83r0,22r-183,83r0,-25","w":218},"?":{"d":"14,-173v-2,-51,22,-83,71,-83v39,0,68,27,68,65v0,61,-72,55,-60,131r-28,0r0,-39v-2,-39,59,-47,61,-93v0,-27,-14,-40,-43,-40v-28,0,-42,19,-41,59r-28,0xm66,-36r26,0r0,37r-26,0r0,-37","w":166},"@":{"d":"220,-147v0,-16,-14,-33,-30,-33v-29,0,-54,40,-54,70v0,19,12,35,30,35v28,0,54,-43,54,-72xm107,-107v0,-67,84,-141,124,-71r7,-22r25,0r-33,117v0,7,3,11,8,11v27,2,51,-49,51,-78v0,-55,-44,-93,-100,-93v-62,0,-110,52,-110,115v0,61,51,114,112,113v38,-1,71,-18,88,-42r24,0v-21,36,-61,63,-113,64v-74,1,-137,-62,-137,-137v0,-73,64,-135,136,-135v65,0,124,49,124,112v0,46,-42,106,-87,104v-14,0,-22,-9,-23,-22v-33,43,-96,17,-96,-36","w":365},"A":{"d":"65,-253r39,0r76,253r-29,0v-11,-38,-10,-38,-22,-77r-88,0r-23,76r-28,0xm122,-101r-37,-139v-7,30,-19,76,-38,139r75,0","w":181,"k":{"\u00d6":10,"y":15,"w":14,"v":15,"Y":20,"W":18,"V":21,"T":19,"Q":11,"O":10,"G":10,"C":10}},"B":{"d":"127,-132v31,9,47,25,49,61v5,72,-81,75,-159,71r0,-254v71,-3,148,-3,148,64v0,28,-16,47,-38,58xm44,-23v52,3,104,-4,104,-47v0,-49,-51,-52,-103,-49xm45,-142v47,3,98,-3,93,-43v3,-41,-44,-49,-93,-46r0,89"},"C":{"d":"5,-127v0,-73,31,-131,98,-131v53,1,77,43,81,97r-27,0v-5,-49,-25,-73,-58,-73v-45,-1,-64,55,-64,108v0,57,17,106,67,106v36,0,56,-30,56,-68r27,0v-1,55,-29,91,-82,92v-67,0,-98,-58,-98,-131","w":195},"D":{"d":"192,-127v0,73,-34,126,-101,126r-75,0r0,-254r74,0v70,1,102,53,102,128xm165,-130v0,-77,-40,-111,-122,-102r0,208v83,7,122,-22,122,-106","w":202},"E":{"d":"18,-254r126,0r0,24r-98,0r0,84r96,0r0,24r-96,0r0,98r98,0r0,24r-126,0r0,-254","w":159},"F":{"d":"19,-253r118,0r0,23r-90,0r0,85r88,0r0,24r-88,0r0,121r-28,0r0,-253","w":145,"k":{"\u00c4":11,"A":11,".":36,",":36}},"G":{"d":"5,-127v0,-71,35,-131,101,-131v46,0,85,39,84,84r-29,0v-8,-37,-18,-61,-56,-61v-50,0,-71,55,-71,113v0,53,25,102,75,102v43,0,62,-34,60,-81r-87,0r0,-25r115,0v1,83,-19,128,-90,130v-68,2,-102,-59,-102,-131","w":209},"H":{"d":"17,-253r27,0r0,110r109,0r0,-111r28,0r0,254r-28,0r0,-119r-109,0r0,119r-27,0r0,-253","w":202},"I":{"d":"24,-253r28,0r0,253r-28,0r0,-253","w":72},"J":{"d":"126,-93v0,61,-12,95,-64,97v-41,1,-64,-25,-64,-66r28,0v0,27,13,40,37,40v23,0,35,-18,35,-55r0,-178r28,0r0,162","w":152},"K":{"d":"18,-253r26,0r0,133r98,-133r28,0r-71,97r82,156r-31,0r-68,-133r-38,51r0,82r-26,0r0,-253","w":181},"L":{"d":"19,-253r27,0r0,229r98,0r0,24r-125,0r0,-253","w":145,"k":{"Y":20,"W":16,"V":20,"T":19}},"M":{"d":"15,-254r40,0r47,163v6,21,11,40,13,58v12,-52,30,-125,58,-221r44,0r0,255r-27,0r0,-177v0,-2,1,-23,3,-62v-29,112,-29,113,-65,239r-27,0r-64,-237v5,75,2,158,3,237r-25,0r0,-255","w":239},"N":{"d":"16,-254r31,0r58,108v20,38,38,75,54,110v-6,-71,-2,-142,-3,-217r25,0r0,254r-27,0r-60,-111v-21,-40,-40,-78,-56,-113v7,81,1,141,3,222r-25,0r0,-253","w":202},"O":{"d":"5,-127v0,-71,32,-131,97,-131v62,0,94,64,94,131v0,67,-32,131,-94,131v-64,0,-97,-62,-97,-131xm100,-21v47,0,67,-48,67,-102v0,-55,-18,-112,-65,-112v-48,0,-68,53,-68,108v0,53,21,106,66,106","w":209,"k":{"\u00c4":10,"Y":14,"V":10,"Q":6,"G":6,"A":10}},"P":{"d":"173,-177v-4,67,-43,75,-127,74r0,103r-28,0r0,-254v80,-4,160,-2,155,77xm144,-180v0,-50,-45,-53,-98,-51r0,104v53,4,98,-1,98,-53","w":173,"k":{"\u00c4":12,"A":11,".":44,",":44}},"Q":{"d":"101,-258v101,0,121,159,67,230v11,4,25,5,39,5r0,22v-21,3,-44,-1,-58,-9v-83,46,-143,-29,-143,-125v0,-61,37,-123,95,-123xm103,-235v-65,0,-81,96,-61,163v46,-15,69,-1,104,30v40,-52,30,-193,-43,-193xm50,-53v17,26,40,43,78,29v-26,-25,-43,-36,-78,-29","w":209},"R":{"d":"66,-125v55,0,77,-8,80,-55v4,-50,-49,-53,-101,-50r0,231r-28,0r1,-254v79,-2,157,-6,157,73v0,42,-22,68,-66,75r74,106r-34,0","w":181,"k":{"Y":7,"V":5}},"S":{"d":"146,-110v40,52,-6,117,-67,115v-49,-2,-74,-34,-77,-82v9,1,23,-3,28,2v-1,31,18,55,49,55v30,0,54,-16,54,-44v-1,-71,-123,-44,-123,-125v0,-63,86,-90,126,-49v13,13,19,33,20,57r-28,0v8,-69,-91,-67,-91,-11v8,38,18,34,67,54v20,8,34,17,42,28","w":173},"T":{"d":"-1,-254r153,0r0,24r-62,0r0,230r-28,0r0,-230r-63,0r0,-24","w":159,"k":{"\u00c4":17,"z":20,"y":18,"x":19,"w":17,"v":19,"u":25,"s":22,"r":27,"q":23,"p":25,"o":22,"n":25,"m":24,"g":22,"e":22,"d":22,"c":23,"a":22,"A":17,";":25,":":30,".":27,"-":22,",":27}},"U":{"d":"95,5v-114,0,-72,-154,-80,-259r29,0r0,161v0,46,10,73,52,73v45,0,50,-32,50,-88r0,-146r27,0v-7,102,32,259,-78,259","w":195},"V":{"d":"21,-253v17,52,40,128,68,231r64,-231r28,0r-75,253r-35,0r-80,-253r30,0","w":181,"k":{"\u00c4":20,"z":9,"y":3,"x":5,"w":2,"v":4,"u":10,"s":13,"r":11,"q":14,"p":10,"o":13,"n":10,"m":9,"g":14,"e":13,"d":13,"c":14,"a":14,"A":20,";":18,":":18,".":25,"-":15,",":28}},"W":{"d":"75,-23v10,-88,21,-124,40,-231r36,0r22,114v8,43,14,82,18,115v7,-29,27,-105,61,-229r27,0r-71,254r-34,0v-20,-99,-33,-175,-41,-229v-6,71,-26,159,-40,229r-35,0r-72,-254r28,0","w":282,"k":{"\u00c4":19,"z":10,"y":4,"x":6,"w":3,"v":5,"u":11,"s":13,"r":13,"q":14,"p":11,"o":14,"n":11,"m":10,"g":14,"e":14,"d":14,"c":14,"a":14,"A":19,";":18,":":18,".":25,"-":15,",":28}},"X":{"d":"64,-132v-13,-23,-47,-100,-60,-122r29,0r47,96r47,-95r30,0r-63,119r72,134r-29,0r-57,-109r-57,109r-30,0","w":166},"Y":{"d":"21,-253r57,125r54,-125r31,0r-71,150r0,104r-27,0r0,-103r-75,-151r31,0","w":166,"k":{"\u00d6":14,"\u00c4":20,"z":14,"y":8,"x":9,"w":7,"v":8,"u":15,"s":18,"r":15,"q":20,"p":14,"o":20,"n":14,"m":13,"g":20,"e":20,"d":20,"c":21,"a":20,"Q":14,"O":14,"G":14,"C":14,"A":20,";":24,":":24,".":29,"-":23,",":28}},"Z":{"d":"0,-18r54,-107v22,-42,41,-77,58,-105r-103,0r0,-23r133,0r0,18r-110,212r111,0r0,23r-143,0r0,-18","w":152},"[":{"d":"108,86v-48,-19,-70,-46,-70,-109v0,-101,-20,-216,70,-239r0,24v-69,25,-45,144,-45,231v0,39,16,52,45,70r0,23","w":108},"\\":{"d":"-6,-265r24,0r88,272r-24,0","w":100},"]":{"d":"0,-263v45,18,69,46,69,105v0,69,13,160,-17,205v-10,16,-28,29,-53,39r0,-24v69,-27,45,-139,45,-226v0,-34,-14,-60,-44,-75r0,-24","w":108},"^":{"d":"-1,-325r60,51r-36,0r-23,-22r-25,22r-34,0","w":0},"_":{"d":"0,45r0,-18r200,0r0,18r-200,0","w":200},"`":{"d":"-43,-265r68,38r-11,19r-68,-38","w":0},"a":{"d":"83,-197v20,0,41,15,46,32r0,-29r22,0r0,194r-23,0r0,-27v-13,20,-30,30,-52,30v-46,1,-71,-45,-70,-95v0,-70,25,-105,77,-105xm33,-97v-1,40,13,79,49,78v30,0,45,-26,45,-79v0,-51,-15,-77,-44,-77v-34,0,-50,27,-50,78","w":173},"b":{"d":"91,3v-28,-1,-36,-10,-51,-30r0,27r-24,0r0,-253r24,0r0,91v12,-22,23,-33,51,-34v46,0,71,46,71,97v0,54,-23,103,-71,102xm93,-174v-41,1,-52,31,-52,77v0,52,15,79,46,79v32,0,48,-28,48,-83v0,-33,-13,-74,-42,-73","w":173},"c":{"d":"6,-98v-1,-51,26,-99,73,-98v47,2,57,25,65,71r-26,0v-3,-29,-10,-47,-38,-47v-35,0,-46,34,-46,74v0,51,16,77,48,77v25,1,40,-22,40,-47r26,0v-3,39,-24,71,-64,71v-52,0,-78,-46,-78,-101","w":152},"d":{"d":"5,-101v0,-50,25,-97,71,-96v25,0,42,11,52,31r0,-89r24,0r0,255r-23,0r0,-28v-10,20,-27,31,-50,31v-53,-1,-74,-45,-74,-104xm31,-100v0,42,14,82,51,82v31,0,46,-26,46,-78v0,-52,-16,-79,-47,-79v-34,0,-51,35,-50,75","w":173},"e":{"d":"78,-197v51,0,71,51,69,108r-115,0v0,33,16,70,47,69v28,-1,38,-17,43,-45r23,0v-1,35,-25,67,-65,67v-49,0,-75,-46,-75,-99v0,-51,26,-100,73,-100xm121,-110v0,-32,-13,-64,-41,-64v-31,-1,-49,31,-48,64r89,0","w":159},"f":{"d":"91,-235v-33,-2,-40,7,-38,41r36,0r0,21r-35,0r0,173r-27,0r0,-173r-27,0r0,-21r28,0v-4,-50,19,-66,63,-59r0,18","w":94},"g":{"d":"6,-95v0,-54,23,-102,71,-102v23,0,40,11,51,31r0,-27r23,0r0,190v0,53,-20,78,-70,78v-49,0,-64,-20,-73,-64r26,0v6,30,14,42,49,42v46,0,45,-24,45,-82v-39,69,-122,17,-122,-66xm32,-98v-1,39,15,79,49,79v30,0,46,-25,46,-75v0,-54,-15,-80,-45,-80v-33,0,-50,25,-50,76","w":173},"h":{"d":"85,-173v-65,0,-37,109,-43,173r-26,0r0,-254r25,0r-2,88v17,-21,21,-31,52,-31v78,0,49,120,54,197r-25,0v-7,-60,23,-173,-35,-173","w":166},"i":{"d":"20,-194r26,0r0,194r-26,0r0,-194xm21,-254r25,0r0,32r-25,0r0,-32","w":65},"j":{"d":"40,31v-1,34,-29,47,-68,41r0,-22v32,4,43,-4,43,-35r0,-209r25,0r0,225xm16,-254r25,0r0,31r-25,0r0,-31","w":65},"k":{"d":"17,-254r25,0r0,158r67,-97r28,0r-49,69r55,124r-28,0r-44,-102r-29,40r0,62r-25,0r0,-254","w":145},"l":{"d":"22,-255r25,0r0,255r-25,0r0,-255","w":65},"m":{"d":"113,-134v0,-22,-13,-40,-33,-40v-61,-2,-41,111,-44,174r-26,0r0,-193r25,0r0,27v19,-40,79,-40,97,-1v15,-20,25,-28,55,-29v79,-1,46,120,53,196r-25,0v-7,-60,24,-172,-35,-172v-65,0,-34,110,-41,173r-26,0r0,-135","w":260},"n":{"d":"120,-115v0,-36,-6,-57,-36,-58v-59,-2,-39,111,-42,173r-26,0r1,-194r24,0r0,27v30,-54,105,-34,105,45r0,122r-26,0r0,-115","w":166},"o":{"d":"5,-98v0,-58,26,-99,81,-99v92,0,91,200,-5,200v-50,0,-76,-47,-76,-101xm31,-96v0,38,17,76,50,76v33,0,48,-40,48,-77v0,-40,-12,-77,-47,-77v-36,0,-51,36,-51,78","w":166},"p":{"d":"161,-95v0,49,-24,99,-70,98v-22,0,-40,-10,-53,-31r2,96r-25,0r1,-262r24,0r0,31v13,-21,22,-32,50,-33v50,-1,71,45,71,101xm135,-101v0,-40,-13,-73,-48,-73v-31,0,-47,27,-47,80v0,50,16,75,46,75v33,0,49,-27,49,-82","w":173},"q":{"d":"7,-108v0,-73,85,-125,122,-58r0,-28r22,0r0,263r-24,0r1,-100v-10,22,-26,33,-51,33v-51,0,-70,-51,-70,-110xm82,-175v-36,0,-50,36,-49,77v0,53,17,78,51,78v32,1,43,-37,43,-74v0,-54,-15,-81,-45,-81","w":166},"r":{"d":"43,-163v12,-23,25,-36,56,-32r0,26v-74,-10,-50,101,-54,169r-25,0r0,-194r23,0r0,31","w":101,"k":{".":23,"-":18,",":23}},"s":{"d":"141,-55v0,38,-30,58,-69,58v-39,0,-62,-21,-68,-61r26,0v2,44,82,54,85,8v3,-46,-104,-33,-104,-94v0,-50,74,-68,108,-39v10,9,17,24,20,45r-26,0v4,-48,-76,-48,-76,-8v0,46,104,31,104,91","w":152},"t":{"d":"1,-193r27,0r0,-61r26,0r0,61r36,0r0,20r-36,0r0,173r-26,0r0,-173r-27,0r0,-20","w":86},"u":{"d":"121,-25v-29,52,-105,27,-105,-43r0,-125r26,0r0,110v-1,39,4,62,36,63v67,0,35,-109,42,-173r26,0r0,193r-25,0r0,-25","w":166},"v":{"d":"22,-193r45,171v10,-47,32,-121,47,-171r29,0r-62,194r-32,0r-55,-194r28,0","w":145,"k":{".":22,",":25}},"w":{"d":"17,-193v14,50,29,106,44,168v6,-36,17,-92,34,-168r35,0r35,171v9,-52,29,-119,44,-171r26,0r-56,193r-32,0v-13,-57,-24,-112,-35,-165v-10,55,-21,110,-34,165r-33,0r-55,-193r27,0","w":239,"k":{".":21,",":23}},"x":{"d":"55,-101v-28,-44,-28,-44,-56,-93r31,0r40,71r41,-70r29,0r-55,92r59,102r-31,0r-43,-80r-47,79r-31,0","w":145},"y":{"d":"22,-193r45,166r49,-166r28,0r-86,267r-27,0r23,-68r-61,-199r29,0","w":145,"k":{".":22,",":23}},"z":{"d":"-3,-16r107,-156r-92,0r0,-21r122,0r0,21r-105,151r106,0r0,21r-138,0r0,-16","w":145},"{":{"d":"105,71v-112,16,-22,-145,-90,-155r0,-22v61,-3,-4,-159,66,-154r24,0r0,24v-47,-12,-32,53,-32,90v0,20,-16,48,-32,51v32,9,31,58,31,103v0,35,6,42,33,39r0,24","w":120},"|":{"d":"34,-265r26,0r0,272r-26,0r0,-272","w":93},"}":{"d":"77,-193v0,37,-5,88,28,87r0,22v-68,9,23,173,-90,155r0,-24v38,12,33,-34,32,-70v-1,-38,7,-63,32,-72v-35,-10,-33,-65,-32,-112v1,-28,-9,-31,-32,-29r0,-24v47,-4,62,10,62,67","w":120},"~":{"d":"49,-306v-13,28,-41,21,-67,13v-5,0,-10,3,-16,10r-18,-11v19,-26,39,-20,67,-12v5,0,11,-3,16,-10","w":0},"\u00c4":{"d":"65,-253r39,0r76,253r-29,0v-10,-37,-10,-37,-22,-77r-88,0r-22,76r-29,0xm122,-101v-17,-58,-29,-103,-37,-138v-7,28,-19,74,-38,138r75,0xm51,-320r25,0r0,43r-25,0r0,-43xm90,-320r25,0r0,43r-25,0r0,-43","w":181,"k":{"\u00d6":10,"y":15,"w":14,"v":15,"Y":20,"W":18,"V":21,"T":19,"Q":10,"O":10,"G":10,"C":10}},"\u00d6":{"d":"5,-127v0,-71,32,-131,97,-131v62,0,94,64,94,131v0,67,-32,131,-94,131v-64,0,-97,-62,-97,-131xm100,-21v47,0,67,-48,67,-102v0,-55,-18,-112,-65,-112v-48,0,-68,53,-68,108v0,53,21,106,66,106xm68,-320r24,0r0,43r-24,0r0,-43xm108,-320r24,0r0,43r-24,0r0,-43","w":209,"k":{"\u00c4":10,"Y":14,"V":10,"Q":6,"G":6,"A":10}},"\u00dc":{"d":"95,5v-113,0,-71,-155,-79,-259r28,0r0,160v0,46,11,74,52,74v46,0,52,-32,51,-90r0,-144r27,0v-8,104,35,259,-79,259xm62,-320r26,0r0,43r-26,0r0,-43xm102,-320r25,0r0,43r-25,0r0,-43","w":195},"\u00e4":{"d":"6,-98v-1,-54,24,-99,74,-99v21,0,38,11,50,32r0,-29r22,0r0,194r-24,0r0,-30v-9,21,-25,33,-49,33v-50,0,-73,-47,-73,-101xm33,-97v0,39,16,78,49,78v33,0,46,-37,46,-74v0,-55,-16,-83,-48,-83v-35,-1,-47,39,-47,79xm54,-257r25,0r0,42r-25,0r0,-42xm93,-257r25,0r0,42r-25,0r0,-42","w":173},"\u00f6":{"d":"5,-97v0,-54,27,-100,77,-100v47,-1,72,49,72,99v0,51,-24,101,-72,101v-50,0,-77,-46,-77,-100xm30,-97v0,39,16,78,51,77v65,0,65,-156,0,-155v-35,0,-51,39,-51,78xm49,-257r24,0r0,42r-24,0r0,-42xm89,-257r24,0r0,42r-24,0r0,-42","w":166},"\u00fc":{"d":"121,-27v-27,53,-105,31,-105,-39r0,-127r25,0r0,125v0,27,10,49,35,49v64,1,38,-111,43,-174r26,0r0,194r-24,0r0,-28xm48,-257r25,0r0,42r-25,0r0,-42xm88,-257r25,0r0,42r-25,0r0,-42","w":166},"\u00df":{"d":"124,-131v79,9,57,139,-14,135v-45,-3,-53,-13,-70,-47r0,43r-24,0r0,-181v-1,-45,28,-75,72,-75v70,0,97,97,36,125xm134,-188v-1,-28,-18,-45,-48,-45v-61,0,-42,106,-45,168r17,0v0,28,20,46,49,46v26,0,43,-21,43,-46v-1,-41,-27,-52,-76,-51v1,-7,-3,-19,2,-22v38,0,58,-16,58,-50","w":181},"\u00ab":{"d":"6,-110r49,-60r0,43r-28,31r28,28r0,43r-49,-57r0,-28","w":54},"\u00bb":{"d":"6,-66r29,-32r-29,-28r0,-42r49,56r0,30r-49,59r0,-43","w":54},"\u2026":{"d":"79,0r-38,0r0,-38r38,0r0,38xm199,0r-38,0r0,-38r38,0r0,38xm319,0r-38,0r0,-38r38,0r0,38","w":360},"\u201c":{"d":"21,-254r23,0r-21,56r-24,0xm59,-254r24,0r-22,56r-24,0","w":86},"\u201e":{"d":"20,-36r24,0r-22,55r-25,0xm58,-36r24,0r-22,55r-23,0","w":86},"\u00a0":{"w":94}}});

/* Cufon */
Cufon.replace('#navi a', {
	textShadow: '#4f4f4f 1px 1px',
	hover: {
	}
});

Cufon.replace('h2, h3', {
	textShadow: '#ffffff 1px 1px'
});

Cufon.now();
