(function($){
	/* hoverIntent by Brian Cherne */
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	
})(jQuery);


/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 600,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: false,
		dropShadows : false,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);



jQuery(document).ready(function() {
	jQuery('#menu').superfish();	
});


/*menu ends*/

/*Cufon Main Starts*/

/*
 * 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}})());

/*Cufon Main Ends*/

/*Cufon Fonts Start*/

Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica Neue","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-8 -287 329 77","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"27,-40r0,40r40,0r0,-40r-40,0xm64,-178r0,-79r-34,0v-2,68,4,130,9,191r16,0","w":93},"\"":{"d":"90,-257r0,93r24,0r0,-93r-24,0xm39,-257r0,93r25,0r0,-93r-25,0","w":153},"#":{"d":"83,-153r45,0r-8,54r-44,0xm47,-74r-10,74r25,0r10,-74r45,0r-11,74r25,0r10,-74r37,0r0,-25r-33,0r8,-54r35,0r0,-24r-32,0r10,-74r-25,0r-10,74r-45,0r11,-74r-25,0r-10,74r-40,0r0,24r36,0r-7,54r-39,0r0,25r35,0"},"$":{"d":"90,-23v-28,-4,-50,-23,-50,-55r-31,0v4,50,33,79,81,84r0,29r20,0r0,-29v78,6,107,-109,39,-139v-13,-6,-25,-8,-39,-12r0,-88v22,4,35,17,40,41r31,0v-8,-40,-31,-66,-71,-71r0,-24r-20,0r0,24v-42,5,-72,28,-73,75v0,49,33,60,73,70r0,95xm110,-113v47,0,65,69,19,87v-6,2,-12,3,-19,3r0,-90xm90,-150v-34,-2,-55,-46,-29,-72v8,-7,17,-11,29,-12r0,84"},"%":{"d":"90,-131v-44,-2,-41,-103,1,-104v45,0,43,104,-1,104xm91,-255v-42,0,-58,31,-58,73v0,42,15,71,58,71v42,-1,58,-31,58,-72v0,-43,-15,-72,-58,-72xm268,-15v-43,-3,-42,-103,1,-105v46,1,42,105,-1,105xm269,-140v-42,0,-57,31,-58,73v0,42,16,71,58,71v42,0,58,-31,58,-72v0,-43,-15,-72,-58,-72xm261,-260r-193,268r31,0r193,-268r-31,0","w":360},"&":{"d":"104,-230v39,-1,32,53,7,64v-7,3,-7,4,-12,8v-9,-14,-24,-23,-25,-45v0,-17,15,-26,30,-27xm12,-66v-5,80,122,90,153,34r27,32r40,0r-50,-58v10,-19,15,-35,17,-63r-29,0v-1,13,-3,27,-8,40r-46,-57v23,-15,48,-31,48,-66v0,-36,-26,-53,-62,-53v-35,0,-58,18,-58,53v-1,30,17,42,28,60v-29,17,-57,34,-60,78xm148,-53v-16,38,-104,43,-104,-13v0,-33,23,-46,45,-58","w":226},"'":{"d":"38,-257r0,93r24,0r0,-93r-24,0","w":100},"(":{"d":"17,-97v0,73,27,121,56,168r24,0v-62,-85,-63,-250,0,-334r-24,0v-33,42,-56,99,-56,166","w":93},")":{"d":"-3,-263v61,86,62,248,0,334r23,0v33,-42,56,-99,56,-166v0,-73,-27,-121,-56,-168r-23,0","w":93},"*":{"d":"72,-216r0,-41r-19,0r0,41r-38,-15r-6,18r38,13r-24,33r17,11r23,-34r25,34r15,-11r-24,-33r39,-13r-7,-18","w":126},"+":{"d":"120,-103r0,-79r-24,0r0,79r-79,0r0,24r79,0r0,79r24,0r0,-79r79,0r0,-24r-79,0","w":216},",":{"d":"30,53v37,-9,43,-46,40,-93r-40,0r0,40r21,0v2,17,-9,29,-21,35r0,18","w":100},"-":{"d":"18,-114r0,28r104,0r0,-28r-104,0","w":140},"\u00ad":{"d":"18,-114r0,28r104,0r0,-28r-104,0","w":140},".":{"d":"30,-40r0,40r40,0r0,-40r-40,0","w":100},"\/":{"d":"100,-263r-106,269r26,0r106,-269r-26,0","w":119},"0":{"d":"100,-23v-57,0,-53,-66,-52,-123v1,-42,9,-82,52,-82v50,0,53,52,53,102v0,49,-3,103,-53,103xm100,-255v-81,-1,-88,78,-84,159v2,58,23,100,84,100v81,1,89,-77,84,-158v-2,-58,-23,-101,-84,-101"},"1":{"d":"105,-255v-7,35,-33,48,-74,48r0,24r67,0r0,183r30,0r0,-255r-23,0"},"2":{"d":"139,-110v62,-36,45,-151,-41,-145v-54,4,-84,34,-82,90r30,0v2,-34,14,-61,50,-63v49,-3,62,59,33,88v-42,42,-118,56,-120,140r166,0r0,-27r-131,0v11,-47,64,-55,95,-83"},"3":{"d":"140,-187v0,33,-31,46,-62,41r0,26v41,-5,73,9,73,48v0,33,-23,48,-55,49v-36,0,-54,-22,-55,-56r-30,0v0,55,30,83,85,83v52,0,87,-25,88,-77v0,-33,-19,-55,-46,-63v18,-9,35,-26,35,-51v0,-85,-136,-89,-151,-19v-3,10,-6,21,-6,33r31,0v1,-32,15,-55,48,-55v26,0,45,14,45,41"},"4":{"d":"122,-87r-86,0r86,-125r0,125xm151,-87r0,-168r-25,0r-116,166r0,29r112,0r0,60r29,0r0,-60r34,0r0,-27r-34,0"},"5":{"d":"183,-81v5,-74,-78,-111,-130,-69r13,-74r103,0r0,-27r-126,0r-24,133r27,1v26,-40,109,-26,105,34v-3,36,-18,60,-54,60v-32,0,-50,-18,-54,-46r-30,0v1,49,34,73,81,73v55,0,85,-31,89,-85"},"6":{"d":"106,-228v25,0,41,15,43,38r31,0v-4,-41,-29,-65,-72,-65v-75,1,-93,62,-94,137v0,67,19,122,88,122v54,0,85,-33,85,-85v0,-49,-27,-82,-78,-83v-32,0,-51,13,-65,33v2,-48,11,-96,62,-97xm50,-80v0,-35,18,-57,53,-57v35,0,51,23,51,58v0,33,-17,56,-51,56v-35,0,-53,-23,-53,-57"},"7":{"d":"85,0v8,-95,49,-171,98,-225r0,-26r-165,0r0,29r134,0v-51,54,-92,126,-101,222r34,0"},"8":{"d":"101,-148v-27,-1,-45,-13,-45,-41v0,-26,18,-39,44,-39v24,0,43,14,43,39v0,25,-18,41,-42,41xm98,-255v-74,0,-101,95,-39,118v-26,9,-45,31,-45,64v1,52,35,77,87,77v51,0,85,-27,85,-77v0,-35,-17,-56,-46,-64v20,-10,36,-27,36,-53v0,-43,-30,-65,-78,-65xm101,-23v-31,1,-54,-19,-54,-49v1,-32,22,-49,54,-49v30,0,52,18,52,49v0,31,-20,49,-52,49"},"9":{"d":"95,-23v-25,1,-46,-16,-47,-39r-30,0v3,42,33,66,77,66v70,-2,89,-60,89,-137v0,-72,-20,-122,-88,-122v-52,0,-84,31,-84,83v0,53,28,84,81,85v27,0,49,-15,59,-35v1,52,-11,97,-57,99xm95,-228v36,0,52,23,52,58v0,34,-18,56,-52,56v-31,0,-49,-22,-50,-54v0,-36,14,-60,50,-60"},":":{"d":"70,-146r0,-40r-40,0r0,40r40,0xm30,-40r0,40r40,0r0,-40r-40,0","w":100},";":{"d":"70,-146r0,-40r-40,0r0,40r40,0xm30,53v38,-8,43,-46,40,-93r-40,0r0,40r21,0v2,17,-9,29,-21,35r0,18","w":100},"\u037e":{"d":"70,-146r0,-40r-40,0r0,40r40,0xm30,53v38,-8,43,-46,40,-93r-40,0r0,40r21,0v2,17,-9,29,-21,35r0,18","w":100},"<":{"d":"199,-161r0,-24r-182,83r0,22r182,83r0,-25r-153,-69","w":216},"=":{"d":"17,-67r0,25r182,0r0,-25r-182,0xm199,-115r0,-25r-182,0r0,25r182,0","w":216},">":{"d":"17,-22r0,25r182,-83r0,-22r-182,-83r0,24r153,70","w":216},"?":{"d":"78,-40r0,40r40,0r0,-40r-40,0xm145,-130v53,-39,32,-140,-45,-133v-51,4,-79,34,-80,86r30,0v-11,-65,94,-81,94,-17v0,63,-70,57,-60,131r30,0v-3,-34,13,-54,31,-67"},"@":{"d":"247,-150v0,37,-18,74,-50,82v-14,0,-7,-20,-5,-29r30,-102r-22,0r-8,22v-6,-19,-20,-29,-41,-29v-56,0,-84,47,-84,102v0,34,19,55,51,57v20,1,34,-15,46,-24v0,14,10,23,23,23v51,0,84,-47,84,-104v0,-70,-50,-111,-122,-111v-81,0,-128,54,-134,133v-10,136,188,181,248,73r-23,0v-29,47,-128,58,-167,10v-16,-20,-34,-45,-33,-81v3,-68,42,-115,109,-115v59,0,98,36,98,93xm94,-107v2,-38,21,-70,57,-75v18,2,29,15,29,34v0,36,-19,72,-55,76v-18,1,-32,-16,-31,-35","w":288},"A":{"d":"72,-106r45,-120r42,120r-87,0xm98,-257r-100,257r35,0r29,-77r108,0r28,77r38,0r-100,-257r-38,0","w":233,"k":{"y":6,"w":6,"v":6,"Y":27,"W":9,"V":17,"T":33}},"B":{"d":"185,-188v0,56,-71,38,-123,41r0,-81v52,4,123,-16,123,40xm220,-194v0,-84,-109,-60,-192,-63r0,257r124,0v84,10,107,-123,29,-136v22,-9,39,-28,39,-58xm196,-75v0,61,-76,44,-134,46r0,-89v56,3,134,-16,134,43","w":246},"C":{"d":"137,-234v39,0,65,21,72,54r34,0v-9,-53,-46,-83,-106,-83v-82,0,-122,55,-122,135v0,79,38,133,119,134v68,0,106,-41,112,-103r-35,0v-4,45,-27,74,-74,74v-62,0,-87,-45,-87,-107v0,-59,25,-104,87,-104","w":259},"D":{"d":"206,-130v3,86,-54,109,-144,101r0,-199r58,0v63,-2,85,38,86,98xm240,-135v0,-82,-43,-122,-124,-122r-88,0r0,257r88,0v86,0,125,-48,124,-135","w":253},"E":{"d":"28,-257r0,257r179,0r0,-29r-145,0r0,-89r134,0r0,-29r-134,0r0,-81r144,0r0,-29r-178,0","w":219},"F":{"d":"28,-257r0,257r34,0r0,-118r118,0r0,-29r-118,0r0,-81r135,0r0,-29r-169,0","w":206,"k":{"A":20,".":57,",":57}},"G":{"d":"138,6v35,0,66,-15,82,-38r9,32r22,0r0,-135r-113,0r0,28r82,0v0,54,-29,84,-82,84v-59,0,-88,-43,-88,-102v0,-62,25,-109,88,-109v43,0,69,19,76,56r34,0v-8,-56,-48,-85,-110,-85v-83,0,-123,58,-123,140v0,76,45,129,123,129","w":273},"H":{"d":"28,-257r0,257r34,0r0,-118r136,0r0,118r34,0r0,-257r-34,0r0,110r-136,0r0,-110r-34,0","w":259},"I":{"d":"30,-257r0,257r34,0r0,-257r-34,0","w":93},"J":{"d":"83,6v48,0,76,-25,76,-70r0,-193r-34,0r0,188v-1,29,-10,46,-41,46v-37,0,-43,-26,-42,-62r-34,0v-4,58,21,92,75,91","w":186},"K":{"d":"28,-257r0,257r34,0r0,-90r43,-40r93,130r43,0r-112,-153r108,-104r-44,0r-131,128r0,-128r-34,0","w":240},"L":{"d":"28,-257r0,257r170,0r0,-29r-136,0r0,-228r-34,0","k":{"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"29,-257r0,257r32,0r1,-214r80,214r29,0r81,-214r0,214r33,0r0,-257r-47,0r-81,216r-81,-216r-47,0","w":313},"N":{"d":"28,-257r0,257r32,0r1,-206r134,206r38,0r0,-257r-33,0r-1,208r-135,-208r-36,0","w":259},"O":{"d":"137,-23v-62,0,-89,-45,-89,-106v0,-60,27,-105,89,-105v61,0,89,45,89,105v0,61,-27,106,-89,106xm137,-263v-80,0,-123,53,-123,134v0,81,42,135,123,135v81,0,123,-55,123,-135v0,-79,-42,-134,-123,-134","w":273},"P":{"d":"185,-181v0,58,-68,46,-123,47r0,-94v55,1,123,-12,123,47xm220,-181v0,-49,-28,-76,-79,-76r-113,0r0,257r34,0r0,-105r79,0v51,0,79,-27,79,-76","w":233,"k":{"A":27,".":64,",":64}},"Q":{"d":"137,-234v94,-4,112,134,59,188r-34,-27r-18,20r28,23v-72,26,-127,-26,-124,-99v2,-60,27,-102,89,-105xm14,-129v-5,104,94,164,184,120r40,31r17,-22r-34,-26v24,-23,39,-59,39,-103v0,-79,-42,-134,-123,-134v-80,0,-119,54,-123,134","w":273},"R":{"d":"227,-190v1,-87,-114,-65,-199,-67r0,257r34,0r0,-110r84,0v56,-2,36,72,52,110r38,0v-27,-32,4,-113,-53,-125v30,-7,44,-31,44,-65xm193,-184v0,60,-74,42,-131,45r0,-89v55,3,131,-16,131,44","w":246,"k":{"Y":13,"W":6,"V":6,"T":6}},"S":{"d":"113,-234v38,0,60,17,64,52r32,0v-2,-56,-39,-75,-95,-81v-90,-9,-129,108,-41,135v42,13,113,7,113,59v0,36,-30,45,-65,46v-44,0,-74,-19,-75,-62r-33,0v1,63,46,84,107,91v93,10,140,-109,48,-142v-39,-14,-113,-6,-113,-54v0,-33,25,-44,58,-44","w":233},"T":{"d":"86,-228r0,228r35,0r0,-228r85,0r0,-29r-205,0r0,29r85,0","w":206,"k":{"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":40,"A":33,";":40,":":40,".":40,"-":46,",":40}},"U":{"d":"132,6v64,0,101,-33,101,-99r0,-164r-34,0r0,164v0,45,-21,70,-67,70v-47,0,-71,-24,-71,-70r0,-164r-34,0r0,164v-1,67,39,99,105,99","w":259},"V":{"d":"129,0r92,-257r-36,0r-75,223r-73,-223r-37,0r90,257r39,0","w":219,"k":{"y":6,"u":13,"r":13,"o":20,"i":6,"e":20,"a":20,"A":17,";":17,":":17,".":46,"-":20,",":46}},"W":{"d":"260,0r69,-257r-34,0r-53,214r-57,-214r-37,0r-58,214r-51,-214r-35,0r66,257r36,0r60,-216r59,216r35,0","w":333,"k":{"u":6,"r":6,"o":21,"e":21,"a":13,"A":9,";":6,":":6,".":27,",":27}},"X":{"d":"89,-132r-89,132r38,0r71,-106r70,106r41,0r-90,-132r85,-125r-38,0r-67,100r-64,-100r-41,0","w":219},"Y":{"d":"134,-105r99,-152r-39,0r-76,122r-77,-122r-40,0r99,152r0,105r34,0r0,-105","w":233,"k":{"v":20,"u":27,"q":33,"p":27,"o":40,"i":13,"e":40,"a":33,"A":27,";":33,":":33,".":50,"-":40,",":50}},"Z":{"d":"8,-29r0,29r204,0r0,-29r-163,0r159,-199r0,-29r-188,0r0,29r148,0","w":219},"[":{"d":"93,-239r0,-24r-67,0r0,334r67,0r0,-25r-38,0r0,-285r38,0","w":93},"\\":{"d":"126,6r-106,-269r-26,0r106,269r26,0","w":119},"]":{"d":"0,46r0,25r67,0r0,-334r-67,0r0,24r39,0r0,285r-39,0","w":93},"^":{"d":"96,-251r-78,156r26,0r64,-130r65,130r25,0r-78,-156r-24,0","w":216},"_":{"d":"0,27r0,18r180,0r0,-18r-180,0","w":180},"`":{"d":"-8,-263r47,51r23,0r-31,-51r-39,0","w":79},"a":{"d":"140,-24v-4,28,29,33,48,23r0,-23v-16,4,-19,-3,-19,-20r0,-95v5,-71,-122,-63,-142,-18v-4,8,-7,17,-7,29r31,0v1,-27,20,-35,46,-35v36,-8,61,41,23,51v-46,12,-107,5,-107,64v0,66,101,63,127,24xm81,-23v-38,0,-47,-42,-17,-55v21,-9,55,-6,74,-18v5,48,-12,73,-57,73","w":193},"b":{"d":"115,-190v-27,0,-51,10,-60,29r0,-96r-31,0r0,257r31,0r0,-25v12,18,32,29,61,29v57,-2,85,-41,85,-97v0,-56,-28,-96,-86,-97xm111,-163v40,0,57,29,57,68v0,40,-14,72,-56,72v-41,-1,-58,-29,-58,-70v0,-40,17,-70,57,-70","w":213},"c":{"d":"103,-163v27,0,42,13,46,37r32,0v-6,-42,-32,-65,-80,-64v-60,1,-88,40,-88,99v0,58,28,95,87,95v49,0,76,-28,82,-72r-31,0v-4,27,-21,45,-51,45v-40,0,-55,-30,-55,-68v0,-41,16,-71,58,-72","w":193},"d":{"d":"103,-23v-41,1,-58,-30,-58,-68v0,-40,15,-71,56,-72v42,0,59,29,59,70v0,40,-17,69,-57,70xm99,4v28,1,49,-12,60,-29r0,25r30,0r0,-257r-30,0r-1,96v-11,-19,-32,-29,-60,-29v-58,1,-85,39,-85,96v0,58,28,96,86,98","w":213},"e":{"d":"45,-111v-3,-56,85,-70,102,-20v3,6,5,13,5,20r-107,0xm13,-94v-11,106,149,137,169,35r-30,0v-4,40,-70,47,-93,18v-9,-11,-14,-24,-14,-43r140,0v0,-60,-24,-106,-85,-106v-56,0,-81,40,-87,96","w":193},"f":{"d":"107,-257v-49,-13,-80,14,-71,71r-32,0r0,27r32,0r0,159r30,0r0,-159r36,0r0,-27r-36,0v-5,-34,6,-57,41,-44r0,-27","w":106,"k":{"f":6}},"g":{"d":"97,75v124,7,79,-153,87,-261r-29,0v-1,8,2,21,-1,27v-10,-19,-28,-31,-55,-31v-59,1,-86,41,-86,98v0,56,28,94,83,94v28,0,49,-14,59,-34v2,48,-10,83,-56,83v-23,0,-46,-7,-48,-30r-31,0v3,39,37,52,77,54xm153,-97v0,40,-14,72,-55,72v-40,0,-53,-33,-53,-71v0,-38,15,-67,55,-67v39,0,53,30,53,66","w":206},"h":{"d":"113,-190v-29,0,-49,11,-59,31r0,-98r-31,0r0,257r31,0v4,-69,-21,-167,55,-163v64,3,30,104,38,163r30,0v-5,-80,26,-190,-64,-190"},"i":{"d":"55,-220r0,-37r-30,0r0,37r30,0xm25,-186r0,186r30,0r0,-186r-30,0","w":79},"j":{"d":"55,-220r0,-37r-30,0r0,37r30,0xm-5,69v35,8,60,-9,60,-46r0,-209r-30,0r0,204v1,22,-9,29,-30,25r0,26","w":79},"k":{"d":"25,-257r0,257r30,0r0,-71r29,-26r64,97r39,0r-79,-118r73,-68r-41,0r-85,81r0,-152r-30,0","w":186},"l":{"d":"25,-257r0,257r30,0r0,-257r-30,0","w":79},"m":{"d":"284,-136v7,-68,-100,-67,-120,-23v-15,-45,-90,-37,-112,0r0,-27r-29,0r0,186r31,0v5,-66,-22,-163,49,-163v26,0,35,14,35,41r0,122r31,0v5,-65,-23,-163,48,-163v26,0,36,14,36,41r0,122r31,0r0,-136","w":307},"n":{"d":"177,0v-5,-80,26,-190,-64,-190v-29,0,-46,12,-61,33r0,-29r-29,0r0,186r31,0v4,-69,-21,-167,55,-163v64,3,30,104,38,163r30,0"},"o":{"d":"103,-23v-40,0,-58,-30,-58,-70v0,-40,18,-70,58,-70v40,0,58,29,58,70v0,41,-18,70,-58,70xm103,-190v-60,0,-90,39,-90,97v0,58,30,97,90,97v60,0,91,-38,91,-97v0,-59,-31,-97,-91,-97","w":206},"p":{"d":"115,-190v-27,0,-51,10,-60,29r0,-25r-31,0r0,257r31,0r0,-96v12,18,32,29,61,29v57,-2,85,-41,85,-97v0,-56,-28,-96,-86,-97xm111,-163v40,0,57,29,57,68v0,40,-14,72,-56,72v-41,-1,-58,-29,-58,-70v0,-40,17,-70,57,-70","w":213},"q":{"d":"103,-23v-41,1,-58,-30,-58,-68v0,-40,15,-71,56,-72v42,0,59,29,59,70v0,40,-17,69,-57,70xm99,4v28,1,49,-12,60,-29r0,96r30,0r0,-257r-30,0v-1,8,2,19,-1,25v-11,-19,-32,-29,-60,-29v-58,1,-85,39,-85,96v0,58,28,96,86,98","w":213},"r":{"d":"120,-190v-38,0,-55,16,-69,43r0,-39r-29,0r0,186r31,0v0,-76,-13,-163,67,-158r0,-32","w":119,"k":{"q":6,"o":6,"n":-6,"g":10,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"137,-50v-5,42,-100,36,-95,-9r-31,0v2,45,34,58,79,63v71,8,112,-79,41,-105v-29,-10,-75,-6,-83,-39v0,-20,19,-23,39,-23v24,0,42,8,43,31r31,0v-3,-42,-30,-58,-76,-58v-63,0,-97,71,-38,96v30,13,84,7,90,44","w":180},"t":{"d":"103,-27v-19,-1,-41,4,-37,-17r0,-115r37,0r0,-27r-37,0r0,-56r-31,0r0,56r-32,0r0,27r32,0r0,118v-4,42,28,42,68,41r0,-27","w":113},"u":{"d":"23,-64v-13,77,102,88,125,34r0,30r29,0r0,-186r-30,0v-4,70,20,163,-56,163v-23,0,-37,-14,-37,-37r0,-126r-31,0r0,122"},"v":{"d":"107,0r68,-186r-32,0r-52,155r-52,-155r-34,0r69,186r33,0","w":180,"k":{".":27,",":27}},"w":{"d":"207,0r60,-186r-32,0r-42,152r-39,-152r-34,0r-38,152r-42,-152r-34,0r60,186r33,0r38,-148r38,148r32,0","w":272,"k":{".":20,",":20}},"x":{"d":"73,-98r-70,98r37,0r52,-77r52,77r39,0r-72,-100r64,-86r-36,0r-47,65r-44,-65r-40,0","w":186},"y":{"d":"64,30v-4,16,-26,21,-43,13v-1,18,-4,33,21,31v35,-3,44,-23,54,-50r81,-210r-32,0r-53,152r-55,-152r-34,0r74,185","w":180,"k":{".":27,",":27}},"z":{"d":"8,-23r0,23r157,0r0,-27r-119,0r114,-138r0,-21r-145,0r0,27r105,0","w":172},"{":{"d":"45,-95v57,-17,7,-127,48,-147r18,0r0,-21v-69,-12,-67,49,-64,113v0,23,-10,40,-30,42r0,24v72,8,-24,173,94,155r0,-22v-75,15,2,-128,-66,-144","w":119},"|":{"d":"28,-283r0,360r24,0r0,-360r-24,0","w":79},"}":{"d":"44,18v1,23,-8,36,-35,31r0,22v69,11,67,-48,64,-112v0,-23,10,-40,30,-43r0,-24v-73,-8,25,-173,-94,-155r0,21v74,-12,-1,128,66,147v-38,9,-31,66,-31,113","w":119},"~":{"d":"68,-92v43,10,96,50,123,-5r-13,-18v-7,12,-14,26,-31,28v-35,-14,-102,-49,-122,5r13,18v5,-13,13,-27,30,-28","w":216}}});

Cufon.registerFont({"w":200,"face":{"font-family":"HelveticaNeue","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":"5","bbox":"-17 -291 339 70.873","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"!":{"d":"77,-257v3,67,-7,123,-14,180r-26,0v-7,-58,-17,-112,-14,-180r54,0xm22,0r0,-55r56,0r0,55r-56,0","w":100},"\"":{"d":"98,-141r0,-116r38,0r0,116r-38,0xm31,-141r0,-116r38,0r0,116r-38,0","w":166},"#":{"d":"32,0r10,-71r-30,0r0,-33r34,0r7,-44r-30,0r0,-33r34,0r10,-71r35,0r-10,71r35,0r9,-71r35,0r-9,71r26,0r0,33r-31,0r-6,44r26,0r0,33r-31,0r-10,71r-34,0r9,-71r-34,0r-10,71r-35,0xm122,-148r-35,0r-6,44r35,0"},"$":{"d":"89,-221v-25,-2,-42,31,-25,48v5,4,13,8,25,11r0,-59xm111,-36v28,0,51,-34,30,-56v-6,-5,-15,-9,-30,-13r0,69xm201,-69v-2,43,-44,74,-90,75r0,31r-22,0r0,-31v-54,-4,-84,-34,-89,-90r51,0v0,27,15,44,38,48r0,-75v-44,-11,-83,-25,-83,-75v0,-46,37,-75,83,-77r0,-28r22,0r0,28v46,5,79,30,81,77r-52,0v1,-17,-13,-35,-29,-35r0,64v49,11,93,29,90,88"},"%":{"d":"147,-184v0,41,-22,67,-61,67v-40,0,-59,-23,-59,-69v0,-41,22,-71,61,-71v39,0,59,25,59,73xm64,-185v0,24,3,41,23,41v16,0,24,-14,24,-41v0,-30,-8,-45,-23,-45v-16,0,-24,15,-24,45xm91,8r149,-268r31,0r-148,268r-32,0xm333,-64v0,41,-22,69,-61,69v-40,0,-59,-24,-59,-71v0,-41,22,-69,61,-69v39,0,59,24,59,71xm249,-66v0,29,9,44,24,44v16,0,23,-14,23,-43v0,-29,-7,-43,-22,-43v-16,0,-25,13,-25,42","w":360},"&":{"d":"111,-165v16,-10,26,-16,27,-36v0,-12,-12,-27,-24,-25v-32,4,-25,43,-3,61xm60,-71v0,40,58,45,80,11r-44,-53v-24,11,-36,24,-36,42xm112,-260v39,0,71,22,70,62v0,27,-16,48,-46,64r34,40v5,-9,7,-18,9,-30r44,0v-3,25,-11,46,-25,63r53,61r-63,0r-21,-26v-47,54,-155,35,-155,-46v0,-32,19,-57,57,-75v-46,-46,-20,-113,43,-113","w":246},"'":{"d":"31,-141r0,-116r38,0r0,116r-38,0","w":100},"(":{"d":"66,66v-67,-97,-57,-242,0,-329r43,0v-52,98,-52,231,0,329r-43,0","w":106},")":{"d":"40,-263v67,97,58,242,0,329r-43,0v53,-97,53,-231,1,-329r42,0","w":106},"*":{"d":"87,-257r0,45r42,-16r10,28r-43,14r27,35r-24,18r-27,-37r-25,37r-24,-18r27,-35r-42,-14r10,-28r40,16r0,-45r29,0","w":146},"+":{"d":"127,-182r0,72r72,0r0,38r-72,0r0,72r-38,0r0,-72r-72,0r0,-38r72,0r0,-72r38,0","w":216},",":{"d":"22,0r0,-55r56,0v-1,38,6,75,-16,95v-12,10,-24,18,-40,20r0,-26v14,-1,27,-18,26,-34r-26,0","w":100},"-":{"d":"19,-76r0,-44r108,0r0,44r-108,0","w":146},"\u2010":{"d":"19,-76r0,-44r108,0r0,44r-108,0","w":146},".":{"d":"22,0r0,-55r56,0r0,55r-56,0","w":100},"\/":{"d":"-4,6r100,-269r42,0r-101,269r-41,0","w":133},"0":{"d":"100,-257v69,0,92,54,93,130v0,88,-31,132,-93,132v-61,0,-92,-44,-92,-132v0,-77,23,-130,92,-130xm100,-37v36,0,41,-44,41,-90v0,-59,-13,-88,-41,-88v-27,0,-41,29,-41,88v0,47,5,90,41,90"},"1":{"d":"141,-252r0,252r-51,0r0,-163r-63,0r0,-39v44,1,68,-16,73,-50r41,0"},"2":{"d":"102,-213v-27,0,-40,27,-40,58r-49,0v-2,-59,33,-102,92,-102v48,0,86,33,86,79v0,71,-89,90,-118,134r120,0r0,44r-185,0v-4,-73,71,-104,114,-138v30,-23,20,-75,-20,-75"},"3":{"d":"140,-77v-1,-33,-19,-38,-58,-37r0,-36v29,3,54,-6,54,-31v0,-20,-16,-34,-36,-34v-24,0,-40,19,-39,45r-48,0v1,-50,35,-87,87,-87v43,0,84,29,84,70v0,27,-16,45,-35,52v26,5,44,27,45,57v4,77,-112,108,-163,59v-17,-16,-25,-39,-25,-68r49,0v-7,58,86,68,85,10"},"4":{"d":"112,0r0,-58r-106,0r0,-47r109,-147r46,0r0,152r33,0r0,42r-33,0r0,58r-49,0xm112,-100r-1,-88r-65,88r66,0"},"5":{"d":"143,-86v2,-46,-60,-64,-83,-27r-46,0r25,-139r141,0r0,42r-104,0v-2,19,-9,41,-9,58v48,-46,127,-4,127,66v0,77,-100,118,-159,71v-19,-15,-29,-35,-29,-60r52,0v1,21,19,37,41,38v26,1,43,-25,44,-49"},"6":{"d":"8,-125v0,-70,34,-133,99,-132v45,1,77,28,81,70r-48,0v-4,-16,-15,-32,-34,-32v-32,0,-48,40,-48,78v39,-57,135,-19,135,54v0,50,-37,92,-89,92v-69,0,-96,-55,-96,-130xm141,-83v0,-26,-14,-48,-38,-48v-26,0,-41,22,-41,47v0,24,18,47,41,47v24,0,38,-23,38,-46"},"7":{"d":"186,-208v-44,36,-82,128,-82,208r-55,0v6,-76,34,-143,85,-204r-120,0r0,-48r172,0r0,44"},"8":{"d":"101,-116v-26,0,-45,15,-45,40v0,25,21,43,45,43v24,1,43,-19,43,-43v0,-23,-19,-40,-43,-40xm5,-74v1,-33,20,-55,48,-62v-25,-7,-38,-24,-38,-52v-1,-41,41,-69,85,-69v75,0,120,94,48,121v28,6,46,29,47,62v1,49,-45,79,-94,79v-52,0,-97,-29,-96,-79xm100,-219v-21,1,-38,13,-38,35v0,21,17,34,38,34v21,0,38,-13,38,-34v0,-22,-16,-35,-38,-35"},"9":{"d":"193,-127v0,69,-35,133,-99,132v-45,-1,-78,-27,-82,-70r48,0v5,38,58,43,72,4v5,-13,12,-33,10,-50v-39,57,-134,20,-134,-54v0,-51,36,-92,88,-92v69,0,97,56,97,130xm59,-169v0,26,14,48,38,48v26,0,41,-21,41,-47v0,-24,-18,-47,-41,-47v-23,0,-38,23,-38,46"},":":{"d":"22,0r0,-55r56,0r0,55r-56,0xm78,-183r0,56r-56,0r0,-56r56,0","w":100},";":{"d":"22,0r0,-55r56,0v-1,38,6,75,-16,95v-12,10,-24,18,-40,20r0,-26v14,-1,27,-18,26,-34r-26,0xm78,-183r0,56r-56,0r0,-56r56,0","w":100},"<":{"d":"199,-185r0,41r-132,53r132,52r0,42r-182,-73r0,-42","w":216},"=":{"d":"199,-149r0,39r-182,0r0,-39r182,0xm199,-72r0,39r-182,0r0,-39r182,0","w":216},">":{"d":"17,3r0,-42r132,-52r-132,-53r0,-41r182,73r0,42","w":216},"?":{"d":"102,-221v-26,-1,-38,21,-38,47r-52,0v-1,-51,36,-89,87,-89v50,0,86,26,90,69v5,65,-70,57,-66,117r-48,0v-12,-65,57,-66,57,-112v0,-22,-10,-32,-30,-32xm69,0r0,-55r57,0r0,55r-57,0"},"@":{"d":"149,-168v-39,-4,-67,81,-16,85v39,4,67,-80,16,-85xm68,-110v0,-46,34,-93,79,-92v21,0,35,8,42,25r5,-19r30,0r-25,108v0,6,1,8,5,8v25,0,43,-36,43,-66v0,-55,-42,-88,-98,-88v-59,0,-101,46,-101,106v0,96,122,138,183,76r30,0v-22,33,-58,57,-109,58v-75,1,-139,-60,-139,-135v0,-74,64,-134,137,-134v66,0,125,47,125,110v0,51,-41,102,-85,104v-14,1,-24,-10,-27,-20v-27,44,-95,8,-95,-41","w":288},"A":{"d":"-3,0r98,-257r58,0r96,257r-59,0r-19,-57r-96,0r-20,57r-58,0xm124,-194v-14,29,-22,64,-34,95r66,0","w":246},"B":{"d":"81,-114r0,70v43,-1,103,11,103,-34v0,-47,-59,-35,-103,-36xm240,-75v1,48,-41,76,-91,75r-124,0r0,-257v82,3,203,-20,203,64v0,24,-12,42,-35,53v31,9,47,31,47,65xm81,-213r0,60v38,-2,92,11,92,-31v0,-38,-55,-28,-92,-29","w":253},"C":{"d":"14,-127v0,-109,115,-175,200,-112v22,16,34,39,37,68r-55,0v-3,-24,-29,-46,-56,-45v-47,0,-70,39,-70,89v0,49,24,86,70,86v34,-1,55,-24,58,-58r55,0v-4,61,-49,105,-113,105v-76,0,-126,-57,-126,-133","w":266},"D":{"d":"252,-130v0,78,-41,131,-116,130r-111,0r0,-257r111,0v73,0,116,50,116,127xm196,-125v0,-72,-41,-91,-115,-85r0,162r51,0v43,0,64,-32,64,-77","w":266},"E":{"d":"25,0r0,-257r192,0r0,47r-136,0r0,56r125,0r0,43r-125,0r0,63r139,0r0,48r-195,0","w":233},"F":{"d":"25,0r0,-257r181,0r0,47r-125,0r0,60r108,0r0,44r-108,0r0,106r-56,0","w":213},"G":{"d":"70,-127v0,49,24,86,70,86v37,0,58,-19,61,-56r-57,0r0,-42r108,0r0,139r-36,0r-5,-29v-67,83,-209,8,-197,-98v-9,-107,113,-175,198,-113v22,16,33,40,36,68r-54,0v-5,-27,-25,-44,-54,-44v-47,0,-70,39,-70,89","w":273},"H":{"d":"25,0r0,-257r56,0r0,99r104,0r0,-99r57,0r0,257r-57,0r0,-111r-104,0r0,111r-56,0","w":266},"I":{"d":"25,0r0,-257r56,0r0,257r-56,0","w":106},"J":{"d":"89,-41v24,-1,30,-15,30,-43r0,-173r56,0r0,176v0,58,-28,87,-85,87v-58,-1,-93,-37,-85,-102r51,0v-2,32,7,57,33,55"},"K":{"d":"25,0r0,-257r56,0r0,107r101,-107r70,0r-100,101r110,156r-71,0r-77,-116r-33,33r0,83r-56,0","w":259},"L":{"d":"25,0r0,-257r56,0r0,209r126,0r0,48r-182,0","w":213},"M":{"d":"25,0r0,-257r79,0r61,177r57,-177r80,0r0,257r-53,0r-1,-182r-63,182r-44,0r-63,-180r0,180r-53,0","w":326},"N":{"d":"25,0r0,-257r56,0r108,172r0,-172r53,0r0,257r-57,0r-107,-172r0,172r-53,0","w":266},"O":{"d":"140,6v-76,0,-126,-57,-126,-133v0,-78,49,-136,126,-136v77,0,126,58,126,136v0,76,-50,133,-126,133xm140,-216v-47,0,-70,39,-70,89v0,49,24,86,70,86v46,0,70,-37,70,-86v0,-50,-23,-89,-70,-89","w":280},"P":{"d":"230,-175v1,74,-67,91,-149,83r0,92r-56,0r0,-257r116,0v53,-1,88,32,89,82xm175,-175v0,-45,-50,-38,-94,-38r0,77v44,0,94,7,94,-39","w":240},"Q":{"d":"140,-263v116,0,164,151,93,230r32,29r-26,28r-37,-33v-89,46,-188,-18,-188,-118v0,-78,49,-136,126,-136xm70,-127v0,57,38,99,93,82r-24,-22r26,-28r29,27v33,-49,15,-151,-54,-148v-47,2,-70,39,-70,89","w":280},"R":{"d":"190,0v-14,-35,4,-100,-52,-100r-57,0r0,100r-56,0r0,-257r138,0v78,-9,105,111,35,135v43,7,33,85,48,122r-56,0xm81,-213r0,72v43,-2,101,12,101,-36v0,-47,-58,-34,-101,-36","w":259},"S":{"d":"225,-76v0,84,-125,104,-183,60v-22,-17,-33,-39,-33,-69r54,0v0,31,24,47,57,47v26,0,51,-9,50,-32v10,-33,-117,-50,-113,-55v-26,-13,-40,-33,-40,-60v0,-76,113,-98,168,-59v21,15,31,36,31,64r-54,0v-1,-26,-19,-39,-51,-39v-32,0,-54,34,-25,49v8,4,91,24,108,36v20,14,31,33,31,58","w":233},"T":{"d":"82,0r0,-210r-77,0r0,-47r210,0r0,47r-77,0r0,210r-56,0","w":219},"U":{"d":"133,-41v39,0,53,-15,53,-56r0,-160r57,0r0,160v0,69,-41,103,-110,103v-73,0,-109,-34,-109,-103r0,-160r56,0r0,160v1,37,15,56,53,56","w":266},"V":{"d":"230,-257r-86,257r-63,0r-84,-257r58,0r58,181r58,-181r59,0","w":226},"W":{"d":"339,-257r-69,257r-57,0r-44,-175r-43,175r-57,0r-68,-257r57,0r41,175r45,-175r53,0r44,177r42,-177r56,0","w":339},"X":{"d":"-2,0r90,-135r-83,-122r66,0r50,82r52,-82r62,0r-82,123r89,134r-67,0r-56,-89r-57,89r-64,0","w":240},"Y":{"d":"91,0r0,-100r-94,-157r63,0r61,101r59,-101r63,0r-95,158r0,99r-57,0","w":240},"Z":{"d":"8,0r0,-45r138,-165r-127,0r0,-47r202,0r0,45r-137,164r141,0r0,48r-217,0","w":233},"[":{"d":"24,66r0,-329r96,0r0,40r-44,0r0,248r44,0r0,41r-96,0","w":119},"\\":{"d":"37,-263r101,269r-42,0r-100,-269r41,0","w":133},"]":{"d":"95,-263r0,329r-95,0r0,-41r44,0r0,-248r-44,0r0,-40r95,0","w":119},"^":{"d":"22,-113r62,-139r48,0r62,139r-42,0r-44,-99r-44,99r-42,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"`":{"d":"38,-209r-55,-51r56,0r35,51r-36,0","w":93},"a":{"d":"135,-91v-19,13,-72,4,-72,38v0,16,10,24,31,24v35,1,44,-25,41,-62xm135,-132v0,-19,-11,-26,-33,-25v-21,0,-32,9,-34,28r-51,0v2,-43,39,-63,88,-62v54,0,81,18,81,53v0,43,-6,109,7,138r-52,0v-2,-7,-3,-13,-3,-18v-32,37,-126,31,-126,-33v0,-55,57,-54,105,-62v12,-2,18,-10,18,-19","w":206},"b":{"d":"207,-93v0,54,-27,98,-77,98v-31,1,-49,-12,-62,-29r0,24r-49,0r0,-257r52,0r0,94v12,-18,32,-28,59,-28v50,0,77,44,77,98xm112,-33v29,0,44,-28,44,-60v0,-32,-15,-60,-44,-60v-29,0,-43,28,-43,60v0,32,14,60,43,60","w":219},"c":{"d":"14,-90v0,-84,89,-128,154,-84v18,13,27,30,28,53r-50,0v-3,-21,-16,-32,-38,-32v-29,0,-44,29,-43,61v0,31,13,59,42,59v24,0,37,-13,41,-38r49,0v-5,47,-38,76,-89,76v-55,1,-94,-40,-94,-95","w":206},"d":{"d":"12,-95v0,-82,91,-129,138,-68r0,-94r51,0r0,257r-49,0r0,-24v-11,19,-31,29,-57,29v-52,0,-83,-44,-83,-100xm63,-93v0,32,16,60,45,60v29,0,44,-21,44,-61v0,-33,-14,-59,-44,-59v-31,1,-45,26,-45,60","w":219},"e":{"d":"10,-93v0,-87,116,-134,166,-64v15,21,22,46,20,76r-134,0v-6,55,71,61,86,23r45,0v-14,42,-44,63,-88,63v-58,1,-95,-41,-95,-98xm62,-113r83,0v-4,-55,-83,-50,-83,0","w":206},"f":{"d":"31,-186v-6,-57,30,-77,89,-70r0,39v-24,-7,-43,1,-38,31r35,0r0,34r-35,0r0,152r-51,0r0,-152r-31,0r0,-34r31,0","w":119},"g":{"d":"14,-99v0,-80,95,-125,136,-62r0,-25r48,0r0,174v11,75,-90,102,-150,69v-18,-11,-27,-26,-28,-46r51,0v12,40,86,32,79,-21v-1,-7,2,-18,-1,-24v-11,19,-30,29,-56,29v-52,0,-79,-39,-79,-94xm65,-100v0,30,13,56,41,56v27,1,44,-23,44,-51v0,-38,-15,-58,-44,-58v-27,0,-41,24,-41,53","w":219},"h":{"d":"110,-151v-62,0,-32,95,-39,151r-52,0r0,-257r52,0r1,97v9,-17,29,-31,54,-31v92,0,63,109,68,191r-51,0v-5,-53,20,-151,-33,-151","w":213},"i":{"d":"21,0r0,-186r51,0r0,186r-51,0xm72,-257r0,42r-51,0r0,-42r51,0","w":92},"j":{"d":"75,9v3,51,-33,61,-82,55r0,-42v14,3,31,0,31,-15r0,-193r51,0r0,195xm75,-257r0,42r-51,0r0,-42r51,0","w":100},"k":{"d":"24,0r0,-257r51,0r0,138r65,-67r60,0r-70,68r78,118r-62,0r-51,-83r-20,19r0,64r-51,0","w":206},"l":{"d":"21,0r0,-257r51,0r0,257r-51,0","w":92},"m":{"d":"107,-151v-56,0,-29,96,-35,151r-51,0r0,-186r48,0v1,8,-2,19,1,25v22,-39,94,-41,111,1v29,-53,124,-37,124,35r0,125r-51,0r0,-105v0,-30,-5,-46,-31,-46v-54,0,-28,99,-34,151r-51,0r0,-104v0,-33,-3,-47,-31,-47","w":326},"n":{"d":"110,-151v-62,0,-32,95,-39,151r-52,0r0,-186r49,0v1,8,-2,20,1,26v13,-21,32,-31,57,-31v92,0,63,109,68,191r-51,0v-5,-53,20,-151,-33,-151","w":213},"o":{"d":"110,5v-57,0,-96,-40,-96,-98v0,-58,39,-98,96,-98v57,0,96,40,96,98v0,58,-39,98,-96,98xm65,-93v0,34,14,59,45,60v30,0,45,-20,45,-60v0,-40,-15,-60,-45,-60v-30,0,-45,20,-45,60","w":219},"p":{"d":"209,-91v0,80,-92,131,-138,68r0,89r-52,0r0,-252r49,0v1,7,-2,18,1,24v12,-19,30,-29,55,-29v55,0,85,43,85,100xm69,-93v-1,34,15,59,44,60v30,0,45,-21,45,-60v1,-33,-15,-60,-45,-60v-32,0,-44,26,-44,60","w":219},"q":{"d":"12,-92v0,-56,30,-100,83,-99v27,0,46,10,57,29r0,-24r49,0r0,252r-51,0r-1,-89v-11,19,-31,28,-59,28v-49,0,-78,-42,-78,-97xm108,-153v-30,0,-45,27,-45,60v0,35,12,59,44,60v30,0,45,-25,45,-59v0,-33,-15,-61,-44,-61","w":219},"r":{"d":"68,-152v12,-21,38,-45,71,-37r0,47v-42,-9,-68,11,-68,58r0,84r-52,0r0,-186r49,0r0,34","w":140},"s":{"d":"183,-60v5,66,-96,80,-144,51v-18,-11,-28,-28,-29,-51r49,0v0,21,17,31,39,31v29,0,48,-29,19,-41v-29,-12,-102,-13,-102,-61v0,-40,27,-60,81,-60v51,0,79,19,82,59r-49,0v-1,-17,-13,-25,-35,-25v-35,0,-36,28,-10,36v26,7,108,15,99,61","w":193},"t":{"d":"84,-60v-3,25,19,24,38,20r0,40v-40,7,-89,-1,-89,-42r0,-110r-31,0r0,-34r31,0r0,-56r51,0r0,56r38,0r0,34r-38,0r0,92","w":126},"u":{"d":"103,-35v62,2,33,-94,40,-151r51,0r0,186r-49,0v-1,-8,2,-20,-1,-26v-13,21,-32,31,-57,31v-92,0,-63,-109,-68,-191r52,0v6,52,-20,150,32,151","w":213},"v":{"d":"185,-186r-63,186r-56,0r-64,-186r53,0r40,127r40,-127r50,0","w":187},"w":{"d":"291,-186r-59,186r-52,0r-34,-125r-32,125r-53,0r-59,-186r54,0r35,126r31,-126r50,0r32,126r34,-126r53,0","w":293},"x":{"d":"0,0r67,-98r-61,-88r58,0r33,48r32,-48r57,0r-61,87r68,99r-58,0r-39,-59r-39,59r-57,0","w":193},"y":{"d":"189,-186r-78,209v-11,39,-45,47,-95,41r0,-42v42,6,58,-4,47,-34r-65,-174r55,0r42,127r41,-127r53,0","w":186},"z":{"d":"8,0r0,-39r97,-109r-90,0r0,-38r157,0r0,38r-97,109r104,0r0,39r-171,0","w":186},"{":{"d":"30,-215v0,-42,41,-53,90,-48r0,40v-24,-1,-40,-2,-39,26v1,46,6,94,-36,99v42,2,37,52,36,97v-1,27,15,27,39,26r0,41v-49,5,-90,-5,-90,-49v0,-43,11,-101,-33,-100r0,-31v43,0,33,-58,33,-101","w":119},"|":{"d":"21,6r0,-269r38,0r0,269r-38,0","w":80},"}":{"d":"90,17v0,43,-41,55,-90,49r0,-41v24,1,40,1,39,-26v-2,-46,-4,-94,36,-98v-44,-2,-36,-53,-36,-98v1,-27,-15,-27,-39,-26r0,-40v49,-5,90,5,90,48v0,43,-10,101,33,101r0,31v-44,-1,-33,57,-33,100","w":119},"~":{"d":"69,-122v13,-3,69,26,77,24v10,0,20,-9,31,-26r15,34v-13,18,-22,31,-45,31v-35,0,-88,-55,-108,1r-15,-33v11,-21,26,-31,45,-31","w":216},"\u00a0":{"w":100}}});

/*Cufon Fonts End*/

/*Cufon Fonts Settings Start*/

function initCufon()
{
	Cufon.replace('#content ul.boxes h2, #content ul.boxes ul.menu li a, #footer ul li a,#footer p,  div.picture-text div.big p, #rightcol h2,#rightcol ul.list-news h3 #etitle, #rightcol p a', { fontFamily: 'Helvetica Neue'});
	/*Cufon.replace('#content div.ul-menu-cont h2, div.picture-text b, div.picture-text div.big b, #leftcol div.image-box em span, #rightcol div.text-content h3,#rightcol ul.list-news h3, #rightcol table tr td h3', { fontFamily: 'HelveticaNeue'});*/
	Cufon.replace('#content div.ul-menu-cont h2, #leftcol div.image-box em span, #rightcol div.text-content h3,#rightcol ul.list-news h3, #rightcol table tr td h3, a.white_paper span, a.white_paper b, #content ul.boxes ul.news li p span', { fontFamily: 'HelveticaNeue'});
	/*Cufon.replace('.top-text', { color: '-linear-gradient(0.05=#c4c4c4, #767676, 0.45=#767676, #585858)' , fontFamily: 'MyriadPro-Cond'});
	Cufon.replace('.top-text em', { color: '-linear-gradient(0.05=#c5dda9, #76a33e, 0.45=#5c8924, #5c8924)' ,  fontFamily: 'MyriadPro-Cond'});#rightcol div.text-content ul li*/
	
	Cufon.now();
}

$(document).ready(function(){
	initCufon();


});


/*Cufon Fonts Settings End*/


$(document).ready(function() {
	
	
/*Accordion Start*/
$('.accordion-content').hide();

$('.accordion').hover(
	function()
	{
		$('.accordion-content').show();
	}
);

$('.closeclass').click(
	function()
	{
		$('.accordion-content').hide();
	}
);
/*Accordion End*/



	
	});
$(document).ready(function() {
		
		
		if($('#leftcol div.quote span.left'))
		{
			$('#leftcol div.quote span.left').prepend('<img src="img/left-quote.gif" class="quote-start"/>');
		}
		
		if($('#leftcol div.quote span.right'))
		{
			$('#leftcol div.quote span.right').append('<img src="img/right-quote.gif" class="quote-end"/>');
		}
	});
	

