$(document).ready(function(){

	//cufon
	Cufon.replace('.cufon, table.table-1 caption, section.h-box h2, ul.products-index-rows h2, #header-website h1, .sidebar-box h3', {fontFamily: 'MyriadPro-Semibold',textShadow: '#fff 1px 1px'});
	Cufon.replace('ul.products-index-thumbs h3, section.headline h1, .button-action-quote, .button-action-view, .button-action-contact, .button-action-pdf, .cufon-noshadow', {fontFamily: 'MyriadPro-Semibold'});
	Cufon.replace('div.hero-card h2', {fontFamily: 'MyriadPro-Semibold',textShadow: '#555 1px 1px'});

	//globals ************************************************
	// - declare IE6, or not. (declared in /js/ie6.js)
	window.IE6 = (typeof IE6 == 'undefined') ? false : true;

	//scrollto plugin ******
	$('a.scrollto').click(function() {
		$.scrollTo(this.hash, 400);
		//return false;
	});


	//google plus one
	/*
	var h1PlusOneCufon = $('h1.h-fat.cufon');
	if(h1PlusOneCufon.length) {
		h1PlusOneCufon.removeClass('cufon').wrapInner("<span class='cufon' />").append(' <g:plusone></g:plusone>');
		$('body').append('<script type="text/javascript" src="https://apis.google.com/js/plusone.js">{lang: \'en-GB\'}</script>');
	}
	*/

	//tabs ************************************************
	$('div.tabs').each(function(index) {

		var tabsContainer = $(this);

		//apply style to tab group - for js-enabled users only *****
		$(this).addClass('tabs-container');

		//make the tab nav - h2 titles make the nav li's *****
		var nav = "<ul class='tabs-nav'>";
		$('.tab-item', $(this)).each(function(index) {
			var title = $(this).children('h2').attr('title'); //get the title from the h2 (required!)
			var thisClass = ($(this).children('h2').prop('className') || ''); //optional class name from the h2, for css styling this tab nav
			$(this).addClass('tab-item-'+index); //add a class to the div so we can link it with the click event
			nav += "<li class='"+thisClass+"'><a href='#' rel='"+ index +"'><span>"+ title +"</span></a></li>\n"; //create the li
		});
		nav += "</ul>";
		nav += "<div class='clear'></div>";
		$(this).prepend(nav); //add the nav list

		//remove any hr/br seperators outside the tab-item div elements, they only existed for js-disabled users *********
		$('.tab-item', $(this)).siblings('hr,br').remove();

		//remove the h2 elements
		$('.tab-item', $(this)).children('h2').remove();

		//click function for tabs-nav ***************
		$('ul.tabs-nav a', $(this)).live('click', function() {
			$('.tab-item', $(tabsContainer)).hide(); //hide all tab items
			$('.tab-item-'+$(this).attr('rel'), $(tabsContainer)).show(); //show this tab item
			$('.tabs-nav a', $(tabsContainer)).removeClass('tabs-nav-selected'); //remove selected class from all tabs-nav
			$(this).addClass('tabs-nav-selected');
			return false;
		});

		$('li:eq(0) a', 'ul.tabs-nav').trigger('click');

	});


	//email nospam ************************
	$('a.email').nospam({replaceText: true, filterLevel: 'low'});
	
	//email nospam2 ************************
	$('span.email-nospam').each(function(index) {
		var str = $(this).text();
		str = str.replace(" AT ", "@");
		$(this).html(str);
	});
	
	
	//defaultValue ************************
	$('#nav-search-text').clearDefault();
	$('#google-search-form input:text').clearDefault();


	//go to top of page ************************
    $('a[href=#top]').click(function() {$('html, body').animate({scrollTop:0}, 400); return false; });

	//show/hide ************************
    $('a.js-show-hide').click(function() {
		var target = $('#'+ $(this).attr('rel'));
		if(target.is(':hidden')) {
			target.slideDown(400);
		} else {
			target.slideUp(400);
		}
		return false;
	});


	//tooltips - hoverTip ************************************************
	$('.hoverTip').hover(
		function () {

			//abort if element is disabled (i.e. disabled buttons, etc)
			if($(this).hasClass('disabled')) {
				return false;
			}

			//abort if the title attribute AND title data is empty
			if(!$(this).attr('title') && !$(this).data('tooltip')) { 
				return false;
			}

			//tip already stored?
			var tip =  $(this).data('tooltip') || $(this).attr('title');

			$('body').append('<div id="hoverTip">'+tip+'<b></b></div>');

			var pos = $(this).offset();
			var leftpos = pos.left + 8; //add some left margin
			var toppos = pos.top - ($('#hoverTip').outerHeight() + parseInt($('#hoverTip b').css('height'),10));

			//position, and show the new element
			$('#hoverTip').css({ "left": leftpos +"px", "top": toppos + "px" }).show();

			$(this).data('tooltip', tip).attr('title', ''); //move the contents of the title attribute into this element's data, and hide the native title

			$('#hoverTip').delay(2000).fadeOut(400, function(){$(this).remove()}); //auto fade & remove after x seconds

		}, 
		function () {
			var tip = $(this).data('tooltip'); //get the hidden stored title
			$(this).attr('title', tip); //re-add the title
			$('#hoverTip').remove();
		}
	);

	//modals ************************
	// - select all "a" tags with the class "modal-trigger"
	$('a.modal-trigger').click(function() {

		var target = $($(this).attr('href'));

		//create modal-mask
		$('body').append("<div id='modal-mask'></div>");

		//Set height and width to mask to fill entire screen, fade in, attach close event
		$('#modal-mask')
		.css({'width' : $(window).width(), 'height' : $(document).height(), 'opacity' : '0.7'})
		.show()
		.live('click', function() {
			$(target).hide();
			$(this).remove();
			return false;
		});

		//attach close event to any close buttons in the target popup
		$('.modal-close', target).live('click', function() {
			$(target).hide();
			$('#modal-mask').remove();
			return false;
		});

		//Set the popup window to center, then show it.
		$(target)
		.css({'top' : parseInt($(window).height()/2-$(target).height()/2,10), 'left' : parseInt($(window).width()/2-$(target).width()/2,10)})
		.show();

		return false;
	
	});



	/********************************************************************************************
	SHOP
	********************************************************************************************/
	//migrating this entire script to common.js, so use it only on pages that have the "html.shop-single" class (newly adjusted pages). Because they do not include the old "shop.js" script.
	if($('html.shop-single').length) {

		$('#buy-now-form-box').find('h2:eq(0)').addClass('cufon-noshadow');
	
	
		//style picker *****
		$('#style-picker p').html('Click on a style for a preview.');
	
		$('a', '#style-picker-palette').click(function() {
	
			var targetImage = $('#style-picker-image');
	
	 		//show loading background
			targetImage.attr('src', '/images/blank.gif');
	
			//get title
			var title =  $(this).data('tooltip') || $(this).attr('title'); //incase hoverTip steals the title!
	
			$('#style-picker-label').html('Style shown: <strong>'+title+'</strong>');
			targetImage.attr('src', this.href);
	
			return false;
		});
	
		//total price/total qty for product page ************************
		function product_totals(product_id, event) {
			var qty = 0;
			var extras = '';
			var coupon_code = '';
		
			//get qty of all select boxes
			$('select.options').each(function() { qty += parseFloat($('option:selected', this).val()); });
	
	
			//add extras?
			$('select.options-extras').each(function() {
				if($('option:selected', this).val() == 'yes') {
					extras = $(this).attr('title');
				}
			});
	
	
			//check coupon?
			if($('#coupon-code').length) {
				coupon_code = $('#coupon-code').val();
			}
	
			//check coupon - without a qty selected?
			if(typeof event != 'undefined') {
				if(event.target.id == 'coupon-code-button' && qty < 1) {
					$('#coupon-code-response').html("<strong class='red'>Select a Quantity first.</strong>");
					//alert('event target is:' + event.target.id);
					return false;
				}
			}
	
		
			//load price and insert html?
			if(qty > 0) {
				$('.total-price', '#buy-now-form').html('<em>loading...</em>');  //preloading status
	
				//load prices
				$('.total-price', '#buy-now-form').load('/shop_prices.inc.php?ajax=1&qty='+qty+'&product_id='+product_id+'&extras='+extras+'&coupon_code='+coupon_code, function(response, status, xhr) {
	
					//coupon code - did we receive one in the ajax request? (ajax response includes a div element with an ID for identification here, and also contains the data)
					if($('#coupon-code-response-text').length) {
						$('#coupon-code-response').html($('#coupon-code-response-text').html());
						$('#coupon-code-response-text').remove();
					} else {
						$('#coupon-code-response').html('');
					}
	
				});
	
				$('.total-price-label', '#buy-now-form').html('Total Price:');
				$('.total-qty-label', '#buy-now-form').html('Total Qty:');
				$('.total-qty', '#buy-now-form').html(qty);
			} else {
				$('#coupon-code-response').html('');
				$('.total-price', '#buy-now-form').html('');
				$('.total-price-label', '#buy-now-form').html('');
				$('.total-qty-label', '#buy-now-form').html('Total Qty:');
				$('.total-qty', '#buy-now-form').html('0');
			}
		
		}


		//initiate key bindings and call the product_totals function *****
		function init_product_totals(product_id) {
			$('select.options').live('change keyup', function() { product_totals(product_id); });
			$('select.options-extras').live('change keyup', function() { product_totals(product_id); });
			product_totals(product_id);
		}
		
	
	
		//coupon code? ******
		$('#coupon-code-button').click(function(event) {
			product_totals($("input[name='product_id']").val(), event); //product id
		});
	
	
		//product totals - only for certain pages *****
		if($('select.options').length) {
			init_product_totals($("input[name='product_id']").val()); //product id
		}
	
	} //shop single only


}); //doc ready


/*
 * 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:
 * © 1992, 1994, 1997, 2000, 2004 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-Semibold
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":536,"face":{"font-family":"MyriadPro-Semibold","font-weight":600,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 6 3 3 4 3 2 2 4","ascent":"750","descent":"-250","x-height":"11","bbox":"-42 -750 858 250","underline-thickness":"50","underline-position":"-50","stemh":"92","stemv":"123","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":207,"k":{"T":40,"V":36,"W":36,"Y":43}},"!":{"d":"172,-208r-93,0r-19,-466r130,0xm124,11v-44,0,-75,-34,-75,-78v0,-46,31,-78,76,-78v46,0,75,32,76,78v0,44,-30,78,-77,78","w":251},"\"":{"d":"42,-692r113,0r-20,257r-73,0xm215,-692r113,0r-20,257r-73,0","w":370,"k":{"T":-13,"J":58,"M":3,"C":7,"G":7,"O":7,"Q":7,"V":-13,"W":-13,"X":-3,"Y":-6,"A":53,"f":-25,"g":15,"c":11,"d":11,"e":11,"o":11,"q":11,"t":-23,"v":-13,"w":-13,"y":-13,",":119,".":119}},"#":{"d":"208,-264r96,0r17,-127r-96,0xm170,0r-77,0r26,-187r-82,0r0,-77r95,0r17,-127r-85,0r0,-77r97,0r25,-182r75,0r-25,182r97,0r26,-182r75,0r-25,182r81,0r0,77r-93,0r-17,127r84,0r0,77r-96,0r-26,187r-76,0r26,-187r-97,0","w":526},"$":{"d":"305,86r-83,0r0,-97v-63,-2,-126,-20,-162,-43r27,-95v61,49,263,76,263,-34v0,-46,-35,-74,-110,-101v-104,-38,-173,-87,-173,-179v0,-86,60,-153,161,-171r0,-97r82,0r0,92v63,2,106,18,138,34r-27,92v-24,-12,-68,-35,-136,-35v-70,0,-95,36,-95,70v0,41,36,65,122,98v112,42,161,96,161,186v0,85,-59,159,-168,177r0,103"},"%":{"d":"200,-661v101,0,163,76,163,193v0,137,-80,207,-169,207v-91,0,-165,-70,-166,-196v0,-123,71,-204,172,-204xm195,-592v-49,0,-73,58,-73,131v-1,75,26,131,74,131v50,0,73,-53,73,-132v0,-72,-20,-130,-74,-130xm265,11r-70,0r377,-672r71,0xm648,-391v102,0,164,76,164,193v0,136,-80,206,-170,206v-91,0,-165,-70,-166,-196v0,-122,71,-203,172,-203xm644,-322v-49,0,-74,58,-74,131v-1,74,26,130,75,130v50,0,73,-52,73,-131v0,-72,-20,-130,-74,-130","w":840},"&":{"d":"640,0r-144,0v-17,-17,-32,-34,-53,-56v-50,43,-113,67,-190,67v-148,0,-222,-93,-222,-191v0,-90,53,-154,130,-195v-28,-42,-54,-88,-54,-138v0,-84,64,-173,188,-173v95,0,168,59,168,151v0,70,-41,127,-139,177r-1,3r136,154v29,-44,50,-108,61,-179r110,0v-18,104,-49,190,-105,253xm272,-80v48,0,87,-20,113,-46v-41,-42,-105,-114,-169,-187v-31,22,-68,57,-68,114v0,66,49,119,124,119xm289,-607v-46,0,-71,39,-71,82v0,41,19,74,49,108v57,-36,90,-67,90,-114v0,-36,-21,-76,-68,-76","w":645},"(":{"d":"184,-693r89,0v-64,95,-112,227,-112,407v0,177,49,308,112,404r-89,0v-58,-80,-122,-211,-122,-404v1,-196,64,-326,122,-407","w":301,"k":{"T":-34,"J":-13,"C":18,"G":18,"O":18,"Q":18,"V":-37,"W":-37,"X":-8,"Y":-35,"A":16,"j":-52}},")":{"d":"117,118r-89,0v63,-95,112,-228,112,-406v0,-178,-49,-309,-112,-405r89,0v58,79,122,209,122,405v0,195,-64,325,-122,406","w":301},"*":{"d":"278,-686r75,44r-102,128r156,-26r0,86r-157,-24v30,46,70,82,103,125r-77,44r-59,-148v-24,46,-40,100,-62,149r-73,-45r101,-123r0,-3r-153,25r0,-86r152,26v-30,-45,-68,-84,-100,-127r76,-44r59,147r2,0","w":437},"+":{"d":"257,-532r83,0r0,226r217,0r0,78r-217,0r0,228r-83,0r0,-228r-217,0r0,-78r217,0r0,-226","w":596},",":{"d":"92,113r-84,8v27,-76,54,-181,67,-264r129,-10v-29,94,-73,202,-112,266","w":236,"k":{"\"":113,"'":113}},"-":{"d":"30,-309r255,0r0,85r-255,0r0,-85","w":315,"k":{"T":53,"J":12,"C":-13,"G":-13,"O":-13,"Q":-13,"V":19,"W":19,"X":19,"Y":56,"A":5,"g":-9,"c":-17,"d":-17,"e":-17,"o":-17,"q":-17,"v":3,"w":3,"y":3}},".":{"d":"126,11v-44,0,-75,-34,-75,-79v0,-46,32,-79,76,-79v45,0,76,32,76,79v0,45,-30,79,-77,79","w":236,"k":{"\"":113,"'":113}},"\/":{"d":"94,39r-85,0r243,-725r86,0","w":337},"0":{"d":"272,-661v157,0,230,140,230,331v0,210,-82,341,-238,341v-149,0,-230,-136,-230,-334v0,-203,86,-338,238,-338xm269,-567v-65,0,-111,81,-111,243v0,159,43,241,110,241v73,0,110,-88,110,-244v0,-151,-35,-240,-109,-240"},"1":{"d":"236,0r0,-539v-42,18,-80,41,-121,60r-21,-93r159,-78r102,0r0,650r-119,0"},"2":{"d":"483,0r-440,0r0,-75r77,-71v153,-142,225,-220,226,-306v0,-58,-31,-109,-116,-109v-58,0,-106,29,-139,54r-36,-87v47,-38,118,-67,200,-67v144,0,214,91,214,197v0,132,-143,261,-252,362r266,0r0,102"},"3":{"d":"40,-34r28,-93v25,15,86,40,148,40v94,0,131,-53,131,-104v0,-96,-100,-116,-204,-110r0,-90v88,5,184,-7,184,-90v0,-45,-32,-82,-104,-82v-53,0,-106,23,-133,41r-28,-89v37,-25,110,-50,187,-50v236,0,270,249,83,311r0,2v79,15,143,74,143,162v0,110,-92,197,-253,197v-79,0,-147,-22,-182,-45"},"4":{"d":"430,0r-116,0r0,-165r-295,0r0,-80r266,-405r145,0r0,392r84,0r0,93r-84,0r0,165xm137,-258r177,0r0,-177v0,-37,2,-74,4,-113r-4,0v-49,111,-117,192,-177,290"},"5":{"d":"188,-418v156,-16,288,48,289,204v0,124,-103,225,-262,225v-76,0,-139,-19,-173,-38r25,-93v28,15,84,34,143,34v72,0,141,-41,141,-118v0,-75,-55,-124,-184,-124v-37,0,-64,3,-89,6r42,-328r337,0r0,102r-250,0"},"6":{"d":"438,-659r0,97v-160,-7,-270,87,-280,192r3,0v32,-37,81,-63,146,-63v112,0,199,80,199,212v0,124,-91,232,-229,232v-158,0,-245,-120,-245,-281v0,-248,155,-392,406,-389xm268,-343v-58,0,-114,39,-114,106v0,86,42,156,123,156v63,0,104,-55,104,-133v0,-76,-41,-129,-113,-129"},"7":{"d":"53,-650r437,0r0,79r-275,571r-129,0r274,-548r-307,0r0,-102"},"8":{"d":"156,-336r0,-3v-68,-33,-99,-87,-99,-144v0,-106,94,-178,217,-178v229,0,271,224,104,311r0,3v71,27,124,83,124,164v0,116,-98,194,-237,194v-262,0,-302,-272,-109,-347xm269,-76v65,0,108,-41,108,-97v0,-66,-48,-102,-121,-122v-128,24,-130,219,13,219xm268,-576v-62,0,-94,41,-94,88v0,53,44,85,106,102v45,-13,81,-49,81,-98v0,-45,-27,-92,-93,-92"},"9":{"d":"92,10r0,-98v153,10,262,-66,284,-197v-37,33,-80,57,-144,57v-113,0,-197,-81,-197,-201v0,-125,96,-232,234,-232v152,0,232,118,232,277v0,264,-145,400,-409,394xm263,-570v-62,0,-106,55,-106,134v0,67,39,119,107,119v50,0,86,-24,105,-54v23,-88,-17,-199,-106,-199"},":":{"d":"125,-326v-43,0,-74,-34,-74,-78v0,-46,31,-79,76,-79v45,0,75,32,75,79v0,44,-30,78,-77,78xm125,11v-43,0,-74,-34,-74,-78v0,-46,31,-79,76,-79v45,0,75,32,75,79v0,44,-30,78,-77,78","w":236},";":{"d":"92,113r-83,8v27,-76,54,-181,67,-264r128,-10v-29,94,-73,202,-112,266xm132,-326v-43,0,-74,-34,-74,-78v0,-46,31,-79,76,-79v45,0,75,32,75,79v0,44,-30,78,-77,78","w":236},"<":{"d":"61,-230r0,-72r473,-230r0,90r-376,175r0,2r376,175r0,90","w":596},"=":{"d":"556,-330r-516,0r0,-78r516,0r0,78xm556,-128r-516,0r0,-78r516,0r0,78","w":596},">":{"d":"535,-304r0,76r-474,228r0,-89r382,-176r0,-2r-382,-176r0,-89","w":596},"?":{"d":"387,-534v0,123,-151,186,-139,306r0,22r-109,0v-7,-77,5,-123,59,-190v38,-46,64,-81,64,-120v0,-84,-133,-86,-183,-41r-30,-88v36,-23,93,-41,157,-41v124,0,181,72,181,152xm190,11v-44,0,-75,-34,-75,-78v0,-46,32,-78,76,-78v45,0,75,32,76,78v0,44,-30,78,-77,78","w":428},"@":{"d":"445,-252r17,-103v-97,-29,-176,54,-176,153v0,41,19,68,58,68v46,0,91,-59,101,-118xm519,16r17,51v-224,105,-489,-10,-489,-277v0,-205,146,-383,370,-383v175,0,297,122,297,290v0,147,-83,238,-184,238v-44,0,-79,-26,-81,-82r-3,0v-57,114,-246,116,-245,-47v0,-123,94,-234,235,-234v44,0,89,10,114,23r-31,183v-12,66,-3,97,27,98v47,2,102,-59,102,-175v0,-137,-85,-239,-241,-239v-158,0,-292,124,-292,320v0,229,217,323,404,234","w":755},"A":{"d":"419,-191r-213,0r-58,191r-127,0r216,-674r157,0r219,674r-133,0xm226,-284r173,0r-53,-166v-15,-40,-21,-91,-36,-126v-23,100,-54,198,-84,292","w":636,"k":{"T":81,"J":-17,"M":3,"C":21,"G":21,"O":21,"Q":21,"U":32,"V":57,"W":57,"X":20,"Y":88,"Z":-4,"f":10,"g":13,"b":5,"h":5,"k":5,"l":5,"j":5,"i":5,"m":5,"n":5,"p":5,"r":5,"c":13,"d":13,"e":13,"o":13,"q":13,"s":4,"t":15,"u":14,"v":27,"w":27,"y":27,"z":-7,"-":6,")":14,"]":14,"}":14,"\"":52,"'":52}},"B":{"d":"71,-2r0,-662v94,-18,311,-30,372,28v42,25,70,69,70,127v0,62,-39,118,-112,145r0,3v71,18,136,74,136,166v0,60,-26,107,-64,140v-48,41,-127,62,-251,62v-68,0,-119,-5,-151,-9xm193,-583r0,185r63,0v86,0,133,-40,133,-97v0,-64,-48,-93,-126,-93v-36,0,-57,2,-70,5xm193,-309r0,220v99,12,215,-3,215,-109v0,-100,-104,-117,-215,-111","w":576,"k":{"T":14,"V":5,"W":5,"Y":25,"A":3,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"a":-3,"-":-9,",":14,".":14}},"C":{"d":"534,-116r20,97v-29,14,-93,30,-175,30v-214,0,-344,-134,-344,-340v0,-222,155,-356,361,-356v81,0,138,17,163,30r-26,98v-32,-14,-77,-26,-132,-26v-137,0,-236,86,-236,248v0,149,86,243,235,243v49,0,101,-10,134,-24","w":588,"k":{"T":-20,"J":-7,"C":26,"G":26,"O":26,"Q":26,"V":-10,"W":-10,"Y":-5,"A":-7,"b":3,"h":3,"k":3,"l":3,"i":3,"m":3,"n":3,"p":3,"r":3,"c":16,"d":16,"e":16,"o":16,"q":16,"u":16,"v":27,"w":27,"y":27,"z":-6,"a":9,")":-13,"]":-13,"}":-13,"\"":-4,"'":-4}},"D":{"d":"647,-353v0,251,-154,358,-410,360v-71,0,-125,-4,-166,-9r0,-663v55,-8,123,-14,196,-14v126,0,211,27,274,78v65,54,106,134,106,248xm194,-576r0,483v195,23,323,-60,323,-256v0,-178,-139,-261,-323,-227","w":683,"k":{"T":27,"V":3,"W":3,"X":30,"Y":33,"A":15,"f":-13,"g":-5,"j":-3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"t":-15,"u":-4,"v":-12,"w":-12,"y":-12,"z":3,"x":9,"-":-13,")":13,"]":13,"}":13,",":37,".":37}},"E":{"d":"448,-399r0,100r-254,0r0,198r284,0r0,101r-407,0r0,-674r392,0r0,101r-269,0r0,174r254,0","w":515,"k":{"T":-10,"J":-20,"V":-8,"W":-8,"f":3,"g":7,"j":3,"c":4,"d":4,"e":4,"o":4,"q":4,"s":-3,"t":5,"u":9,"v":10,"w":10,"y":10,"z":-5,",":6,".":6}},"F":{"d":"71,0r0,-674r390,0r0,101r-267,0r0,186r248,0r0,100r-248,0r0,287r-123,0","w":509,"k":{"J":77,"M":16,"A":72,"g":12,"b":16,"h":16,"k":16,"l":16,"i":22,"m":22,"n":22,"p":22,"r":22,"c":28,"d":28,"e":28,"o":28,"q":28,"u":31,"v":21,"w":21,"y":21,"a":42,":":16,";":16,",":93,".":93}},"G":{"d":"395,7v-220,0,-359,-124,-359,-338v0,-214,152,-350,375,-350v83,0,148,17,179,32r-27,99v-37,-17,-82,-29,-153,-29v-144,0,-245,85,-245,242v0,153,94,244,234,244v45,0,77,-6,93,-13r0,-169r-119,0r0,-97r238,0r0,341v-43,16,-127,38,-216,38","w":666,"k":{"b":-3,"h":-3,"k":-3,"l":-3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"u":-3,"v":3,"w":3,"y":3,"a":-8}},"H":{"d":"71,-674r123,0r0,270r285,0r0,-270r123,0r0,674r-123,0r0,-297r-285,0r0,297r-123,0r0,-674","w":672,"k":{"Y":13,"f":-8,"b":-6,"h":-6,"k":-6,"l":-6,"j":-3,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"t":-11,"v":-4,"w":-4,"y":-4,"z":-7}},"I":{"d":"71,-674r123,0r0,674r-123,0r0,-674","w":264,"k":{"Y":13,"f":-8,"b":-6,"h":-6,"k":-6,"l":-6,"j":-3,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"t":-11,"v":-4,"w":-4,"y":-4,"z":-7}},"J":{"d":"205,-241r0,-433r123,0r0,437v4,231,-151,277,-327,232r15,-99v101,27,189,18,189,-137","w":392,"k":{"v":-6,"w":-6,"y":-6,"a":3,")":-26,"]":-26,"}":-26,",":9,".":9}},"K":{"d":"71,0r0,-674r122,0r0,310r3,0v71,-110,151,-206,226,-310r151,0r-232,287r247,387r-144,0r-190,-309r-61,72r0,237r-122,0","w":582,"k":{"T":-13,"J":-33,"C":26,"G":26,"O":26,"Q":26,"V":-8,"W":-8,"Y":11,"Z":-18,"A":-12,"g":9,"b":-4,"h":-4,"k":-4,"l":-4,"i":-5,"m":-5,"n":-5,"p":-5,"r":-5,"c":9,"d":9,"e":9,"o":9,"q":9,"u":13,"v":29,"w":29,"y":29,"a":-7,":":-13,";":-13,"-":21,")":-14,"]":-14,"}":-14,"\"":-3,"'":-3,",":-13,".":-13}},"L":{"d":"71,0r0,-674r123,0r0,571r277,0r0,103r-400,0","w":493,"k":{"T":97,"J":-20,"C":39,"G":39,"O":39,"Q":39,"U":33,"V":62,"W":62,"Y":87,"A":-4,"j":3,"c":11,"d":11,"e":11,"o":11,"q":11,"t":5,"u":13,"v":32,"w":32,"y":32,"-":29,"\"":99,"'":99}},"M":{"d":"653,0r-13,-275v-4,-87,-9,-192,-8,-283r-3,0v-49,184,-120,371,-179,550r-94,0r-90,-288v-28,-85,-47,-183,-70,-262v-3,88,-7,195,-12,287r-15,271r-115,0r45,-674r162,0r88,271v24,79,45,159,62,234r3,0v40,-169,105,-345,160,-505r160,0r39,674r-120,0","w":827,"k":{"T":12,"A":6,"j":-6,"i":-9,"m":-9,"n":-9,"p":-9,"r":-9,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"v":-3,"w":-3,"y":-3,"a":-4,"-":-4}},"N":{"d":"184,0r-114,0r0,-674r141,0v97,165,213,335,289,515r2,0v-16,-157,-10,-341,-11,-515r114,0r0,674r-128,0r-176,-297v-43,-74,-87,-156,-120,-232r-4,1v5,87,7,176,7,287r0,241","w":676,"k":{"Y":13,"f":-8,"b":-6,"h":-6,"k":-6,"l":-6,"j":-3,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"t":-11,"v":-4,"w":-4,"y":-4,"z":-7}},"O":{"d":"357,-686v196,0,312,149,312,342v0,226,-137,355,-322,355v-191,0,-311,-146,-311,-343v0,-208,131,-354,321,-354xm353,-587v-122,0,-187,113,-187,252v0,138,69,247,187,247v119,0,186,-111,186,-252v0,-127,-63,-247,-186,-247","w":704,"k":{"T":27,"V":3,"W":3,"X":30,"Y":33,"A":15,"f":-13,"g":-5,"j":-3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"t":-15,"u":-4,"v":-12,"w":-12,"y":-12,"z":3,"x":9,"-":-13,")":13,"]":13,"}":13,",":37,".":37}},"P":{"d":"523,-475v5,173,-154,244,-330,220r0,255r-122,0r0,-665v45,-8,106,-14,188,-14v162,0,260,60,264,204xm193,-578r0,226v102,24,208,-20,208,-118v0,-75,-52,-114,-137,-114v-34,0,-58,3,-71,6","w":559,"k":{"J":75,"M":13,"V":3,"W":3,"X":21,"Y":15,"Z":19,"A":71,"g":25,"b":3,"h":3,"k":3,"l":3,"i":12,"m":12,"n":12,"p":12,"r":12,"c":25,"d":25,"e":25,"o":25,"q":25,"s":21,"t":-9,"u":12,"v":-6,"w":-6,"y":-6,"a":21,":":11,";":11,"-":15,")":3,"]":3,"}":3,",":142,".":142}},"Q":{"d":"673,10r-35,98v-94,-26,-178,-54,-263,-87v-14,-6,-29,-9,-44,-10v-156,-8,-295,-123,-295,-342v0,-209,129,-355,322,-355v195,0,311,150,311,341v0,162,-75,271,-174,311r0,4v58,16,123,30,178,40xm353,-88v118,0,186,-110,186,-252v0,-128,-63,-247,-185,-247v-123,0,-188,117,-188,252v0,135,69,247,187,247","w":704,"k":{"T":27,"V":3,"W":3,"X":30,"Y":33,"A":15,"f":-13,"g":-5,"j":-3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"t":-15,"u":-4,"v":-12,"w":-12,"y":-12,"z":3,"x":9,"-":-13,")":13,"]":13,"}":13,",":37,".":37}},"R":{"d":"257,-679v162,-1,266,47,266,190v0,87,-59,146,-123,168r0,3v49,18,78,65,94,130v22,84,40,162,53,188r-126,0v-10,-20,-27,-75,-45,-159v-24,-112,-71,-123,-183,-118r0,277r-122,0r0,-664v47,-9,115,-15,186,-15xm193,-580r0,213r73,0v83,0,134,-44,134,-111v0,-73,-51,-108,-131,-108v-39,0,-64,3,-76,6","w":569,"k":{"T":-5,"J":-4,"U":4,"V":-4,"W":-4,"X":-7,"Y":15,"A":-7,"b":-9,"h":-9,"k":-9,"l":-9,"i":-10,"m":-10,"n":-10,"p":-10,"r":-10,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"t":-14,"v":-8,"w":-8,"y":-8,"a":-10}},"S":{"d":"41,-32r28,-102v39,23,100,43,163,43v78,0,122,-37,122,-92v0,-51,-34,-81,-119,-112v-112,-40,-183,-99,-183,-196v0,-111,92,-194,239,-194v73,0,126,16,161,34r-29,99v-25,-13,-72,-32,-135,-32v-78,0,-111,41,-111,81v0,52,39,77,129,111v117,45,173,103,173,200v0,109,-82,203,-255,203v-72,0,-146,-20,-183,-43","w":519,"k":{"b":3,"h":3,"k":3,"l":3,"j":7,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"t":4,"v":12,"w":12,"y":12,"a":-6,"-":-9}},"T":{"d":"200,0r0,-571r-192,0r0,-103r509,0r0,103r-194,0r0,571r-123,0","w":525,"k":{"i":50,"T":-29,"J":49,"M":3,"C":28,"G":28,"O":28,"Q":28,"V":-34,"W":-34,"X":-20,"Y":-16,"A":73,"S":8,"g":62,"b":10,"h":10,"k":10,"l":10,"m":50,"n":50,"p":50,"r":50,"c":77,"d":77,"e":77,"o":77,"q":77,"s":63,"u":50,"v":46,"w":46,"y":46,"z":54,"a":65,"x":23,":":31,";":31,"-":56,")":-44,"]":-44,"}":-44,"\"":-13,"'":-13,",":73,".":73}},"U":{"d":"70,-674r123,0r0,393v0,132,55,193,138,193v89,0,142,-61,142,-193r0,-393r123,0r0,385v0,208,-107,300,-269,300v-156,0,-257,-87,-257,-299r0,-386","w":666,"k":{"A":32,"f":-6,"s":10,"v":4,"w":4,"y":4,"z":7,"a":5,"x":10,",":25,".":25}},"V":{"d":"366,0r-141,0r-218,-674r134,0r92,307v28,84,46,168,68,245v44,-187,112,-372,167,-552r131,0","w":601,"k":{"T":-27,"J":32,"C":5,"G":5,"O":5,"Q":5,"V":-10,"W":-10,"A":55,"S":4,"g":9,"b":7,"h":7,"k":7,"l":7,"i":22,"m":22,"n":22,"p":22,"r":22,"c":38,"d":38,"e":38,"o":38,"q":38,"s":33,"u":25,"v":10,"w":10,"y":10,"a":38,":":20,";":20,"-":20,")":-41,"]":-41,"}":-41,"\"":-15,"'":-15,",":63,".":63}},"W":{"d":"313,0r-133,0r-165,-674r131,0r64,306v17,82,33,168,44,235r2,0v29,-172,82,-370,122,-541r129,0r67,310v16,80,31,155,41,228r2,0v12,-74,27,-151,46,-234r70,-304r125,0r-182,674r-131,0r-70,-317v-19,-76,-25,-146,-40,-214v-28,179,-82,358,-122,531","w":869,"k":{"T":-27,"J":32,"C":5,"G":5,"O":5,"Q":5,"V":-10,"W":-10,"A":55,"S":4,"g":9,"b":7,"h":7,"k":7,"l":7,"i":22,"m":22,"n":22,"p":22,"r":22,"c":38,"d":38,"e":38,"o":38,"q":38,"s":33,"u":25,"v":10,"w":10,"y":10,"a":38,":":20,";":20,"-":20,")":-41,"]":-41,"}":-41,"\"":-15,"'":-15,",":63,".":63}},"X":{"d":"574,0r-143,0r-140,-261r-2,0v-32,77,-89,180,-128,261r-141,0r200,-341r-193,-333r142,0r73,139v22,42,38,75,55,113r3,0v37,-88,83,-168,125,-252r141,0r-197,329","w":594,"k":{"T":-7,"J":-7,"C":34,"G":34,"O":34,"Q":34,"V":-9,"W":-9,"X":13,"Y":-9,"A":11,"i":3,"m":3,"n":3,"p":3,"r":3,"c":16,"d":16,"e":16,"o":16,"q":16,"u":10,"v":29,"w":29,"y":29,"a":8,"-":20,"\"":-3,"'":-3}},"Y":{"d":"347,0r-123,0r0,-281r-213,-393r141,0r139,307r2,0v38,-100,94,-208,139,-307r139,0r-224,390r0,284","w":575,"k":{"T":-16,"J":62,"M":16,"C":42,"G":42,"O":42,"Q":42,"V":-23,"W":-23,"X":13,"Y":13,"A":87,"S":22,"B":13,"D":13,"E":13,"F":13,"H":13,"I":13,"K":13,"L":13,"N":13,"P":13,"R":13,"g":63,"b":13,"h":13,"k":13,"l":13,"i":17,"m":17,"n":17,"p":17,"r":17,"c":94,"d":94,"e":94,"o":94,"q":94,"s":59,"t":33,"u":64,"v":42,"w":42,"y":42,"z":38,"a":83,"x":42,":":42,";":42,"-":57,")":-43,"]":-43,"}":-43,"\"":-8,"'":-8,",":108,".":108}},"Z":{"d":"26,0r0,-68r344,-501r0,-3r-314,0r0,-102r474,0r0,72r-340,497r0,3r345,0r0,102r-509,0","w":566,"k":{"J":-16,"C":22,"G":22,"O":22,"Q":22,"X":5,"Y":-4,"A":-5,"c":11,"d":11,"e":11,"o":11,"q":11,"u":9,"v":13,"w":13,"y":13,"-":16}},"[":{"d":"269,112r-195,0r0,-798r195,0r0,71r-104,0r0,656r104,0r0,71","w":301,"k":{"T":-34,"J":-13,"C":18,"G":18,"O":18,"Q":18,"V":-37,"W":-37,"X":-8,"Y":-35,"A":16,"j":-52}},"\\":{"d":"327,39r-86,0r-234,-725r86,0","w":335},"]":{"d":"31,-686r195,0r0,798r-195,0r0,-71r104,0r0,-656r-104,0r0,-71","w":301},"^":{"d":"546,-182r-91,0r-156,-371r-2,0r-156,371r-90,0r208,-468r79,0","w":596},"_":{"d":"0,75r500,0r0,50r-500,0r0,-50","w":500},"a":{"d":"243,-498v277,2,177,270,209,498r-111,0r-9,-54r-3,0v-29,38,-80,65,-144,65v-98,0,-153,-71,-153,-145v0,-122,109,-185,289,-184v1,-43,-9,-93,-99,-93v-48,0,-98,15,-131,36r-24,-80v36,-22,99,-43,176,-43xm224,-77v58,0,99,-36,100,-94r0,-67v-87,-1,-170,17,-170,91v0,48,31,70,70,70","w":508},"b":{"d":"66,-137r0,-573r123,0r0,290r2,0v30,-47,83,-78,156,-78v119,0,203,99,203,247v0,175,-111,262,-221,262v-65,0,-117,-28,-156,-84r-6,73r-105,0v2,-33,4,-87,4,-137xm302,-402v-59,1,-112,49,-113,122r0,79v1,71,51,115,112,115v77,0,124,-61,124,-160v0,-86,-41,-156,-123,-156","w":585,"k":{"T":45,"v":8,"w":8,"y":8,"z":8,"x":19,"-":-15,")":6,"]":6,"}":6,"\"":16,"'":16,",":30,".":30}},"c":{"d":"407,-106r17,91v-26,12,-77,25,-138,25v-152,0,-251,-98,-251,-249v0,-146,100,-259,271,-259v45,0,91,10,119,22r-22,93v-20,-10,-49,-19,-93,-19v-94,0,-149,69,-149,158v0,141,137,187,246,138","w":449,"k":{"T":13,"f":-5,"c":9,"d":9,"e":9,"o":9,"q":9,"t":-15,"v":-16,"w":-16,"y":-16,"-":-9,"\"":-4,"'":-4,",":8,".":8}},"d":{"d":"392,-710r123,0r0,573v0,50,2,104,4,137r-109,0v-4,-24,0,-56,-8,-77v-29,54,-88,88,-158,88v-117,0,-209,-99,-209,-249v-1,-163,101,-260,218,-260v69,0,113,30,139,63r0,-275xm282,-88v61,0,111,-49,110,-123r0,-73v0,-71,-43,-119,-109,-119v-79,0,-123,70,-123,160v0,90,44,155,122,155","w":581,"k":{",":10,".":10}},"e":{"d":"479,-209r-326,0v-1,142,181,143,285,104r18,84v-42,18,-100,31,-170,31v-158,0,-251,-97,-251,-246v0,-135,82,-262,238,-262v177,0,223,148,206,289xm153,-295r214,0v1,-45,-19,-119,-101,-119v-76,0,-108,69,-113,119","w":516,"k":{"T":37,"v":3,"w":3,"y":3,"x":8,"-":-29,"\"":3,"'":3,",":14,".":14}},"f":{"d":"203,0r-123,0r0,-395r-66,0r0,-92r66,0v-2,-77,13,-141,59,-187v52,-51,136,-56,205,-35r-8,95v-14,-5,-30,-9,-53,-9v-69,1,-84,64,-81,136r106,0r0,92r-105,0r0,395","w":319,"k":{"g":10,"c":11,"d":11,"e":11,"o":11,"q":11,"s":8,"t":-13,":":-30,";":-30,")":-86,"]":-86,"}":-86,"\"":-48,"'":-48,",":36,".":36}},"g":{"d":"511,-487v-7,109,-3,290,-4,416v0,102,-21,175,-72,221v-90,79,-256,73,-358,20r27,-93v31,18,83,37,142,37v94,0,151,-66,140,-189r-2,0v-28,43,-77,72,-142,72v-121,0,-207,-100,-207,-238v0,-160,104,-257,221,-257v77,0,116,39,143,76r5,-65r107,0xm279,-95v59,0,105,-46,105,-118r0,-79v-2,-67,-42,-112,-104,-112v-69,0,-120,60,-120,159v0,83,42,150,119,150","w":573,"k":{"T":33,"f":-3,"i":4,"m":4,"n":4,"p":4,"r":4,",":16,".":16}},"h":{"d":"290,-398v-59,0,-101,42,-101,106r0,292r-123,0r0,-710r123,0r0,289r2,0v28,-43,80,-77,146,-77v83,0,170,55,170,211r0,287r-123,0r0,-274v0,-70,-26,-124,-94,-124","w":572,"k":{"T":54,"t":5,"v":16,"w":16,"y":16,"\"":11,"'":11}},"i":{"d":"189,0r-123,0r0,-487r123,0r0,487xm128,-690v42,0,68,29,69,67v0,36,-27,66,-70,66v-41,0,-68,-30,-68,-66v0,-38,28,-67,69,-67","w":256},"j":{"d":"-42,117v111,-20,124,-40,124,-204r0,-400r123,0r0,435v0,101,-19,165,-64,208v-41,41,-110,57,-171,57xm145,-690v41,0,67,29,68,67v0,36,-26,66,-70,66v-42,0,-68,-30,-68,-66v0,-38,28,-67,70,-67","w":270,"k":{",":11,".":11}},"k":{"d":"189,-710r0,437v16,-15,27,-40,40,-57r119,-157r148,0r-181,199r206,288r-151,0r-140,-215r-41,49r0,166r-123,0r0,-710r123,0","w":509,"k":{"T":24,"g":7,"b":-14,"h":-14,"k":-14,"l":-14,"i":-13,"m":-13,"n":-13,"p":-13,"r":-13,"c":7,"d":7,"e":7,"o":7,"q":7,"v":-8,"w":-8,"y":-8,"a":-11,":":-6,";":-6,"-":7,",":-9,".":-9}},"l":{"d":"66,0r0,-710r123,0r0,710r-123,0","w":257,"k":{",":10,".":10}},"m":{"d":"281,-398v-60,0,-94,48,-95,110r0,288r-120,0r0,-342v0,-56,-2,-103,-4,-145r105,0r6,72r3,0v23,-38,67,-83,150,-83v66,0,112,40,137,90v35,-53,80,-90,159,-90v80,0,162,55,162,211r0,287r-120,0r0,-269v0,-81,-28,-129,-87,-129v-55,0,-92,44,-92,106r0,292r-120,0r0,-282v0,-68,-27,-116,-84,-116","w":848,"k":{"T":54,"t":5,"v":16,"w":16,"y":16,"\"":11,"'":11}},"n":{"d":"291,-398v-62,0,-102,46,-102,111r0,287r-123,0r0,-342v0,-56,-2,-103,-4,-145r107,0r6,73r3,0v22,-38,75,-84,156,-84v85,0,173,55,173,209r0,289r-123,0r0,-275v0,-70,-26,-123,-93,-123","w":572,"k":{"T":54,"t":5,"v":16,"w":16,"y":16,"\"":11,"'":11}},"o":{"d":"287,-498v145,0,242,102,242,250v0,179,-126,259,-250,259v-137,0,-244,-94,-244,-251v0,-160,105,-258,252,-258xm284,-409v-87,0,-122,85,-122,166v0,94,47,165,121,165v70,0,119,-68,119,-167v0,-76,-34,-164,-118,-164","w":564,"k":{"T":45,"v":8,"w":8,"y":8,"z":8,"x":19,"-":-15,")":6,"]":6,"}":6,"\"":16,"'":16,",":30,".":30}},"p":{"d":"66,198r0,-523v0,-64,-2,-116,-4,-162r108,0v4,24,0,55,8,75v36,-55,93,-86,167,-86v112,0,205,96,205,248v0,176,-111,261,-222,261v-63,0,-110,-29,-139,-65r0,252r-123,0xm304,-401v-60,1,-115,49,-115,122r0,75v-1,74,49,120,112,120v78,0,124,-65,124,-161v0,-86,-42,-156,-121,-156","w":585,"k":{"T":45,"v":8,"w":8,"y":8,"z":8,"x":19,"-":-15,")":6,"]":6,"}":6,"\"":16,"'":16,",":30,".":30}},"q":{"d":"253,-498v70,-1,115,33,144,76r3,-65r119,0v-2,44,-4,90,-4,141r0,544r-123,0r0,-265r-2,0v-29,47,-80,78,-151,78v-110,0,-204,-95,-204,-247v0,-178,114,-262,218,-262xm281,-86v62,0,111,-48,111,-119r0,-81v-1,-68,-44,-115,-108,-115v-80,0,-124,67,-124,159v0,89,43,156,121,156","w":581,"k":{"T":35,",":7,".":7}},"r":{"d":"339,-380v-90,-17,-150,34,-150,127r0,253r-123,0r0,-330v0,-66,-1,-114,-4,-157r106,0r5,92r3,0v31,-77,87,-113,163,-100r0,115","w":356,"k":{"T":17,"f":-28,"g":8,"c":9,"d":9,"e":9,"o":9,"q":9,"t":-23,"v":-22,"w":-22,"y":-22,"z":-8,"a":9,"x":-15,"-":3,",":59,".":59}},"s":{"d":"36,-24r25,-90v41,34,203,63,202,-19v0,-33,-20,-50,-80,-71v-95,-33,-134,-84,-134,-142v0,-86,71,-152,184,-152v54,0,101,13,130,29r-25,86v-20,-12,-60,-28,-103,-28v-44,0,-68,22,-68,52v0,31,23,46,85,68v89,32,130,76,130,148v0,89,-69,153,-198,153v-59,0,-112,-14,-148,-34","w":417,"k":{"T":30,",":11,".":11}},"t":{"d":"231,11v-105,0,-146,-62,-145,-177r0,-229r-69,0r0,-92r69,0r0,-91r121,-34r0,125r117,0r0,92r-117,0r0,215v-7,83,46,101,111,85r2,93v-18,7,-51,13,-89,13","w":351,"k":{"g":6,"c":6,"d":6,"e":6,"o":6,"q":6,"v":-7,"w":-7,"y":-7,"-":3,",":6,".":6}},"u":{"d":"278,-89v64,0,101,-43,101,-104r0,-294r123,0r0,341v0,58,2,106,4,146r-107,0r-6,-73r-3,0v-21,34,-69,84,-157,84v-88,0,-169,-53,-169,-212r0,-286r123,0r0,265v0,81,26,133,91,133","w":569,"k":{"T":35,",":7,".":7}},"v":{"d":"11,-487r133,0r79,247v14,43,24,82,33,122r3,0v30,-125,74,-249,111,-369r129,0r-186,487r-121,0","w":508,"k":{"T":34,"g":12,"c":13,"d":13,"e":13,"o":13,"q":13,"s":12,"v":-16,"w":-16,"y":-16,"a":6,":":-14,";":-14,"-":6,",":44,".":44}},"w":{"d":"14,-487r126,0r50,221v14,51,19,110,34,158v28,-132,68,-254,103,-379r100,0r61,216v15,57,28,110,39,163r2,0v18,-128,57,-257,86,-379r121,0r-153,487r-114,0r-58,-198v-17,-49,-23,-102,-39,-156v-24,135,-63,234,-99,354r-115,0","w":749,"k":{"T":34,"g":12,"c":13,"d":13,"e":13,"o":13,"q":13,"s":12,"v":-16,"w":-16,"y":-16,"a":6,":":-14,";":-14,"-":6,",":44,".":44}},"x":{"d":"11,-487r137,0r102,167r2,0v30,-59,64,-111,97,-167r134,0r-163,234r166,253r-140,0r-59,-97v-18,-25,-28,-56,-46,-79r-100,176r-136,0r169,-248","w":494,"k":{"T":26,"c":19,"d":19,"e":19,"o":19,"q":19,"s":7,"t":-13,"v":-17,"w":-17,"y":-17,"-":5}},"y":{"d":"47,117v61,-18,126,-62,146,-133v0,-5,-1,-12,-6,-24r-179,-447r136,0r87,261v10,30,21,67,28,94r3,0r102,-355r131,0v-75,189,-184,560,-291,645v-50,40,-99,58,-129,62","w":500,"k":{"T":34,"g":12,"c":13,"d":13,"e":13,"o":13,"q":13,"s":12,"v":-16,"w":-16,"y":-16,"a":6,":":-14,";":-14,"-":6,",":44,".":44}},"z":{"d":"20,0r0,-71r183,-234v23,-29,50,-53,71,-84r-236,0r0,-98r386,0r0,75r-178,229v-23,30,-50,56,-72,85r256,0r0,98r-410,0","w":450,"k":{"T":25,"c":7,"d":7,"e":7,"o":7,"q":7,"v":-16,"w":-16,"y":-16}},"{":{"d":"94,-25v0,-50,13,-107,13,-159v0,-29,-8,-70,-78,-71r0,-65v69,-1,78,-39,78,-71v0,-53,-13,-110,-13,-162v0,-103,71,-139,177,-133r0,71v-61,-4,-89,22,-87,78v0,44,12,87,12,135v0,74,-32,98,-79,115v51,12,80,43,79,113v-1,91,-52,225,75,215r0,71v-105,5,-176,-25,-177,-137","w":301,"k":{"T":-34,"J":-13,"C":18,"G":18,"O":18,"Q":18,"V":-37,"W":-37,"X":-8,"Y":-35,"A":16,"j":-52}},"|":{"d":"87,-750r89,0r0,1000r-89,0r0,-1000","w":263},"}":{"d":"206,-553v0,53,-13,110,-13,162v0,32,8,70,78,71r0,65v-69,1,-78,42,-78,71v0,51,14,108,13,159v-1,112,-72,142,-177,137r0,-71v61,4,88,-23,87,-79v-1,-45,-12,-87,-12,-136v0,-73,32,-98,79,-115v-51,-12,-80,-42,-79,-113v1,-90,53,-224,-75,-213r0,-71v106,-5,177,30,177,133","w":301},"~":{"d":"426,-195v-66,0,-188,-89,-248,-89v-30,0,-50,21,-53,83r-79,0v-2,-118,54,-170,130,-170v67,0,186,87,249,87v29,0,45,-25,47,-83r79,0v5,129,-55,172,-125,172","w":596},"'":{"d":"42,-692r113,0r-20,257r-73,0","w":198,"k":{"T":-13,"J":58,"M":3,"C":7,"G":7,"O":7,"Q":7,"V":-13,"W":-13,"X":-3,"Y":-6,"A":53,"f":-25,"g":15,"c":11,"d":11,"e":11,"o":11,"q":11,"t":-23,"v":-13,"w":-13,"y":-13,",":119,".":119}},"`":{"d":"12,-698r120,0r87,148r-85,0","w":300},"\u00a0":{"w":207,"k":{"T":40,"V":36,"W":36,"Y":43}}}});


/* Functions
-------------------------------------------------------------- */
//defaultValue for inputs
(function($){
	$.fn.clearDefault = function(){
		return this.each(function(){
			var default_value = $(this).val();
			$(this).focusin(function(){
				if ($(this).val() == default_value) { $(this).val(""); }
			}).focusout(function(){
				if ($.trim($(this).val()) == "") { $(this).val(default_value); }
			});
		});
	};
})(jQuery);

/* Plugins
-------------------------------------------------------------- */
// http://plugins.jquery.com/project/nospam - nospam plugin
jQuery.fn.nospam=function(settings){settings=jQuery.extend({replaceText:false,filterLevel:'normal'},settings);return this.each(function(){e=null;if(settings.filterLevel=='low'){if($(this).is('a[data-email]')){e=$(this).attr('data-email').replace('//','@').replace(/\//g,'.');}else{e=$(this).text().replace('//','@').replace(/\//g,'.');}}else{if($(this).is('a[data-email]')){e=$(this).attr('data-email').split('').reverse().join('').replace('//','@').replace(/\//g,'.');}else{e=$(this).text().split('').reverse().join('').replace('//','@').replace(/\//g,'.');}} if(e){if($(this).is('a[data-email]')){$(this).attr('href','mailto:'+e);if(settings.replaceText){$(this).text(e);}}else{$(this).text(e);}}});};

// http://flesler.blogspot.com/2007/10/jqueryscrollto.html @version 1.4.2
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);

