/**
 * Equal Heights Plugin Version 1.0
 * Copyright (c) 2008 Rob Glazebrook (cssnewbie.com) 
 */

(function($) {
	$.fn.equalHeights = function(minHeight, maxHeight) {
		tallest = (minHeight) ? minHeight : 0;
		this.each(function() {
			if($(this).height() > tallest) {
				tallest = $(this).height();
			}
		});
		if((maxHeight) && tallest > maxHeight) tallest = maxHeight;
		return this.each(function() {$(this).height(tallest).css("overflow","hidden");});
	}
})(jQuery);


/* Homepage image slider */

$(document).ready(function(){

$("#main_nav .blank a").attr( "target", "_blank" ) ;  

$("#latest_news li").equalHeights(10);
$("div.machine_inner").equalHeights(10);

    lastBlock = $("#a1");
    maxWidth = 310;
    minWidth = 26;	


    $("ol li").click( function(){
    
     if( lastBlock != this ) {
        $(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
	$(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
	lastBlock = this;
	} else {
	 	$(this).animate({width: minWidth+"px"}, { queue:false, duration:400});
	 	lastBlock = $("#a1");
	}
      }
      
      
    );
});



(function(D){var A="Lite-1.0";D.fn.cycle=function(E){return this.each(function(){E=E||{};if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var I=D(this);var J=E.slideExpr?D(E.slideExpr,this):I.children();var G=J.get();if(G.length<2){if(window.console&&window.console.log){window.console.log("terminating; too few slides: "+G.length)}return }var H=D.extend({},D.fn.cycle.defaults,E||{},D.metadata?I.metadata():D.meta?I.data():{});H.before=H.before?[H.before]:[];H.after=H.after?[H.after]:[];H.after.unshift(function(){H.busy=0});var F=this.className;H.width=parseInt((F.match(/w:(\d+)/)||[])[1])||H.width;H.height=parseInt((F.match(/h:(\d+)/)||[])[1])||H.height;H.timeout=parseInt((F.match(/t:(\d+)/)||[])[1])||H.timeout;if(I.css("position")=="static"){I.css("position","relative")}if(H.width){I.width(H.width)}if(H.height&&H.height!="auto"){I.height(H.height)}var K=0;J.css({position:"absolute",top:0,left:0}).hide().each(function(M){D(this).css("z-index",G.length-M)});D(G[K]).css("opacity",1).show();if(D.browser.msie){G[K].style.removeAttribute("filter")}if(H.fit&&H.width){J.width(H.width)}if(H.fit&&H.height&&H.height!="auto"){J.height(H.height)}if(H.pause){I.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}D.fn.cycle.transitions.fade(I,J,H);J.each(function(){var M=D(this);this.cycleH=(H.fit&&H.height)?H.height:M.height();this.cycleW=(H.fit&&H.width)?H.width:M.width()});J.not(":eq("+K+")").css({opacity:0});if(H.cssFirst){D(J[K]).css(H.cssFirst)}if(H.timeout){if(H.speed.constructor==String){H.speed={slow:600,fast:200}[H.speed]||400}if(!H.sync){H.speed=H.speed/2}while((H.timeout-H.speed)<250){H.timeout+=H.speed}}H.speedIn=H.speed;H.speedOut=H.speed;H.slideCount=G.length;H.currSlide=K;H.nextSlide=1;var L=J[K];if(H.before.length){H.before[0].apply(L,[L,L,H,true])}if(H.after.length>1){H.after[1].apply(L,[L,L,H,true])}if(H.click&&!H.next){H.next=H.click}if(H.next){D(H.next).bind("click",function(){return C(G,H,H.rev?-1:1)})}if(H.prev){D(H.prev).bind("click",function(){return C(G,H,H.rev?1:-1)})}if(H.timeout){this.cycleTimeout=setTimeout(function(){B(G,H,0,!H.rev)},H.timeout+(H.delay||0))}})};function B(J,E,I,K){if(E.busy){return}var H=J[0].parentNode,M=J[E.currSlide],L=J[E.nextSlide];if(H.cycleTimeout===0&&!I){return}if(I||!H.cyclePause){if(E.before.length){D.each(E.before,function(N,O){O.apply(L,[M,L,E,K])})}var F=function(){if(D.browser.msie){this.style.removeAttribute("filter")}D.each(E.after,function(N,O){O.apply(L,[M,L,E,K])})};if(E.nextSlide!=E.currSlide){E.busy=1;D.fn.cycle.custom(M,L,E,F)}var G=(E.nextSlide+1)==J.length;E.nextSlide=G?0:E.nextSlide+1;E.currSlide=G?J.length-1:E.nextSlide-1}if(E.timeout){H.cycleTimeout=setTimeout(function(){B(J,E,0,!E.rev)},E.timeout)}}function C(E,F,I){var H=E[0].parentNode,G=H.cycleTimeout;if(G){clearTimeout(G);H.cycleTimeout=0}F.nextSlide=F.currSlide+I;if(F.nextSlide<0){F.nextSlide=E.length-1}else{if(F.nextSlide>=E.length){F.nextSlide=0}}B(E,F,1,I>=0);return false}D.fn.cycle.custom=function(K,H,I,E){var J=D(K),G=D(H);G.css({opacity:0});var F=function(){G.animate({opacity:1},I.speedIn,I.easeIn,E)};J.animate({opacity:0},I.speedOut,I.easeOut,function(){J.css({display:"none"});if(!I.sync){F()}});if(I.sync){F()}};D.fn.cycle.transitions={fade:function(F,G,E){G.not(":eq(0)").css("opacity",0);E.before.push(function(){D(this).show()})}};D.fn.cycle.ver=function(){return A};D.fn.cycle.defaults={timeout:4000,speed:1000,next:null,prev:null,before:null,after:null,height:"auto",sync:1,fit:0,pause:0,delay:0,slideExpr:null}})(jQuery)

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


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data copyright (C) 1992 - 1997 The Monotype Corporation.  Rockwell®
 * is a trademark of The Monotype Corporation which may be registered in certain
 * jurisdictions. Portions copyright Microsoft  Corporation.  All rights reserved.
 * 
 * Trademark:
 * Rockwell® is a trademark of The Monotype Corporation which may be registered in
 * certain jurisdictions.
 * 
 * Description:
 * Rockwell is a distinctive version of a geometric slab serif design, which has
 * retained its popularity since its appearance in the 1930's. The slab serifs, or
 * Egyptians, originated in the nineteenth century when they were used principally
 * for display work. Rockwell is notable for its judiciously clipped slab serifs,
 * and is given a particular sparkle by means of its angular terminals. In more
 * recent years this style of typeface has been increasingly used for text setting
 * where their even colour and visual impact can be fully exploited.
 * 
 * Manufacturer:
 * Monotype Typography
 * 
 * Vendor URL:
 * http://www.monotype.com/html/mtname/ms_welcome.html
 * 
 * License information:
 * http://www.monotype.com/html/mtname/ms_welcome.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"176,-1419r710,1441r-166,0r-710,-1441r166,0","w":897},{"d":"-12,154r1048,0r0,102r-1048,0r0,-102","w":1024},{"d":"1023,-388v0,236,-198,410,-436,410v-127,0,-241,-46,-342,-137r0,115r-174,0r0,-505r174,0r0,123v83,151,192,227,327,227v133,0,245,-94,245,-228v0,-66,-20,-113,-58,-143v-79,-64,-410,-132,-496,-180v-108,-60,-197,-163,-197,-323v0,-231,180,-384,409,-384v111,0,215,36,310,108r0,-93r170,0r0,422r-170,0r0,-97v-71,-107,-170,-161,-295,-161v-172,0,-302,142,-205,276v63,87,117,74,268,119v222,64,309,73,410,228v41,64,60,139,60,223","w":1087,"k":{".":51,",":51}},{"w":512,"k":{"Y":205,"W":164,"V":164,"T":82}},{"d":"224,-169r0,-1053r-174,0r0,-169r364,0r0,869r362,-289r-161,0r0,-157r535,0r0,157r-148,0r-363,302r341,340r170,0r0,169r-249,0r-487,-487r0,318r167,0r0,169r-531,0r0,-169r174,0","w":1174,"k":{"y":41,"o":61,"e":61}},{"d":"710,-617v9,-157,-70,-218,-214,-218v-95,0,-164,38,-207,114r-182,-48v81,-151,220,-226,418,-226v185,1,329,63,359,206v34,160,9,428,14,620r163,0r0,169r-332,0r0,-118v-92,89,-195,134,-308,134v-171,0,-327,-132,-327,-306v0,-181,169,-313,353,-313v91,0,178,27,263,82r0,-96xm276,-291v0,94,73,160,173,160v92,0,179,-39,261,-116r0,-113v-82,-64,-165,-96,-249,-96v-100,0,-185,67,-185,165","w":1087,"k":{"y":41,"w":41,"v":41}},{"d":"239,-590r-185,0r353,-801r145,0r355,801r-181,0r-247,-597","w":961},{"d":"787,-791v-299,-2,-360,92,-357,409r0,213r211,0r0,169r-596,0r0,-169r195,0r0,-630r-195,0r0,-169r347,0r0,218v64,-152,159,-243,383,-233r50,0r0,192r-38,0","w":854,"k":{"y":-31,"v":-31,"u":-31,"t":-31,"r":-31,"q":61,"p":-31,"o":82,"n":-61,"l":41,"k":41,"i":-41,"g":61,"e":102,"d":82,"c":82,"a":51,".":123,",":123}},{"d":"552,-1019r396,0r81,-391r147,0r-81,391r185,0r0,147r-216,0r-73,353r289,0r0,147r-320,0r-81,391r-147,0r81,-391r-396,0r-81,391r-147,0r81,-391r-185,0r0,-147r216,0r73,-353r-289,0r0,-147r320,0r81,-391r147,0xm521,-872r-73,353r396,0r73,-353r-396,0","w":1366},{"d":"135,-1009r1096,0r0,157r-1096,0r0,-157xm135,-539r1096,0r0,157r-1096,0r0,-157","w":1366},{"d":"207,-174r354,-527r-354,-516r-179,0r0,-174r560,0r0,174r-157,0r241,353r243,-353r-161,0r0,-174r534,0r0,174r-174,0r-343,499r373,544r181,0r0,174r-571,0r0,-174r161,0r-255,-378r-254,378r169,0r0,174r-554,0r0,-174r186,0","w":1343},{"d":"409,-1217r0,696v5,196,-4,252,99,329v80,60,281,55,360,6v106,-65,109,-134,109,-325r0,-706r-161,0r0,-174r544,0r0,174r-174,0r0,727v-3,194,1,244,-80,352v-75,101,-215,160,-398,160v-267,0,-442,-91,-492,-294v-13,-51,-17,-131,-17,-239r0,-706r-172,0r0,-174r547,0r0,174r-165,0","w":1386,"k":{"A":51,".":154,",":154}},{"d":"74,-484v0,-282,239,-511,506,-511v130,0,248,47,354,141v106,94,160,233,164,418r-814,0v21,170,144,300,331,300v133,0,238,-53,315,-160r168,74v-92,151,-268,247,-487,250v-294,4,-537,-208,-537,-512xm902,-574v-25,-132,-154,-267,-317,-267v-159,0,-275,122,-294,267r611,0","w":1174,"k":{"y":82,"x":20,"w":41,"v":72,"b":31,".":41,",":41}},{"d":"33,0r0,-158r607,-653r-398,0r0,186r-162,0r0,-343r786,0r0,169r-609,641r443,0r0,-198r166,0r0,356r-833,0","w":918,"k":{"o":31,"e":20}},{"d":"317,-1182v-63,0,-115,-54,-115,-115v0,-61,54,-114,115,-114v62,0,115,52,115,114v0,62,-54,115,-115,115xm-38,416r0,-172v114,15,234,7,254,-84v7,-30,13,-120,13,-273r0,-686r-152,0r0,-169r342,0r0,824v0,166,-4,282,-16,347v-26,144,-141,227,-329,223v-39,0,-77,-3,-112,-10","w":598},{"d":"216,-174r0,-1043r-175,0r0,-174v260,5,631,-20,825,31v145,38,260,208,256,399v-5,230,-128,379,-330,413v-70,12,-243,17,-366,16r0,358r180,0r0,174r-565,0r0,-174r175,0xm546,-700v249,-4,357,-40,363,-265v3,-117,-60,-209,-146,-235v-59,-18,-231,-17,-337,-17r0,517r120,0","w":1174,"k":{"o":61,"e":61,"a":41,"A":154,".":287,",":287}},{"d":"213,-174r0,-1043r-158,0r0,-174r532,0r0,174r-164,0r0,398r605,0r0,-398r-163,0r0,-174r532,0r0,174r-159,0r0,1043r159,0r0,174r-532,0r0,-174r163,0r0,-471r-605,0r0,471r164,0r0,174r-532,0r0,-174r158,0","w":1450},{"d":"215,-174r0,-1043r-151,0r0,-174r512,0r0,174r-151,0r0,1043r151,0r0,174r-512,0r0,-174r151,0","w":641},{"d":"236,-174r0,-1043r-180,0r0,-174r1156,0r0,419r-172,0r0,-245r-594,0r0,414r517,0r0,174r-517,0r0,455r594,0r0,-253r172,0r0,427r-1156,0r0,-174r180,0","w":1280},{"d":"711,-1416r0,155v-140,71,-274,260,-313,434v-39,176,-36,554,9,715v50,179,167,317,304,401r0,156v-139,-57,-262,-166,-377,-323v-214,-293,-221,-864,-20,-1185v102,-163,230,-282,397,-353","w":768},{"d":"1133,-169r0,169r-357,0r0,-111v-111,85,-218,127,-320,127v-125,0,-220,-59,-245,-152v-42,-158,-15,-459,-21,-663r-137,0r0,-169r327,0r0,590v4,119,-11,156,41,205v18,17,44,24,73,24v88,0,182,-42,282,-126r0,-524r-171,0r0,-169r361,0r0,799r167,0","w":1153},{"d":"483,16r-316,-815r-171,0r0,-169r487,0r0,169r-126,0r208,549r209,-549r-134,0r0,-169r473,0r0,169r-149,0r-309,815r-172,0","k":{"o":72,"e":51,"a":31,".":205,",":205}},{"d":"587,28v-285,0,-509,-223,-509,-512v0,-288,227,-511,509,-511v279,0,509,220,509,511v0,291,-229,512,-509,512xm587,-810v-177,0,-308,148,-308,326v0,181,134,326,308,326v175,0,308,-146,308,-326v0,-180,-136,-326,-308,-326","w":1174,"k":{"y":102,"x":82,"w":92,"v":82,".":102,",":102}},{"d":"78,238v147,0,149,-77,149,-248r0,-1207r-178,0r0,-174r566,0r0,174r-178,0r0,1217v-4,209,-12,293,-137,378v-95,65,-247,73,-372,35r0,-195v52,13,102,20,150,20","w":641,"k":{"u":31,"o":82,"e":82,"a":72,"A":20,".":61,",":61}},{"d":"563,-174r0,-459r-414,-584r-170,0r0,-174r572,0r0,174r-175,0r307,429r280,-429r-175,0r0,-174r555,0r0,174r-184,0r-386,584r0,459r190,0r0,174r-587,0r0,-174r187,0","w":1323,"k":{"u":164,"o":246,"e":236,"a":256,"O":154,"A":102,";":72,":":72,".":246,"-":256,",":246}},{"d":"866,-739v141,46,241,171,241,344v0,219,-147,348,-339,379v-192,31,-494,12,-722,16r0,-174r171,0r0,-1043r-171,0r0,-174v235,5,568,-16,750,23v126,27,244,175,241,336v-3,140,-68,247,-171,293xm558,-812v179,0,269,-50,269,-207v0,-132,-90,-198,-269,-198r-131,0r0,405r131,0xm427,-174v192,-5,345,14,423,-88v55,-72,62,-215,2,-286v-68,-81,-149,-90,-305,-92r-120,0r0,466","w":1194,"k":{"U":41,".":41,",":41}},{"d":"74,-481v0,-286,198,-502,471,-502v135,0,249,56,344,167r0,-152r353,0r0,169r-163,0r0,1064r177,0r0,169r-555,0r0,-169r188,0r0,-387v-179,193,-476,200,-669,15v-96,-92,-146,-215,-146,-374xm583,-145v188,0,305,-154,309,-325v5,-192,-142,-345,-317,-345v-172,1,-303,143,-303,332v0,186,118,338,311,338","w":1260},{"d":"457,-478v-159,-67,-209,-175,-209,-423v0,-125,-2,-205,-6,-239v-10,-92,-79,-105,-197,-102r0,-149v147,-2,247,6,307,91v69,98,61,183,65,376v4,187,0,262,87,332v31,25,73,35,120,36r0,155v-100,3,-162,53,-188,135v-29,90,-18,458,-43,532v-46,134,-159,176,-348,168r0,-148v159,0,203,-20,203,-193v0,-248,-16,-337,65,-463v28,-43,78,-78,144,-108","w":682},{"d":"229,-1413v59,-1,106,46,103,107v-6,111,-59,350,-80,477r-43,0r-55,-296v-15,-81,-22,-136,-22,-165v0,-82,32,-123,97,-123xm599,-1413v59,0,101,47,100,106v-2,166,-51,327,-76,478r-48,0r-54,-291v-16,-85,-24,-142,-24,-171v0,-81,34,-122,102,-122","w":831},{"d":"349,-377r-102,0r-50,-591r0,-423r202,0r0,423xm176,0r0,-246r246,0r0,246r-246,0","w":598},{"d":"852,-538v-164,0,-352,-158,-505,-158v-90,0,-189,47,-298,140r0,-169v105,-85,206,-128,305,-128v62,0,160,31,293,94v91,42,159,63,204,63v89,0,187,-46,294,-139r0,169v-103,85,-201,128,-293,128","w":1194},{"w":512,"k":{"Y":205,"W":164,"V":164,"T":82}},{"d":"461,-1419r157,0r0,1875r-157,0r0,-1875","w":1079},{"d":"827,-387v-3,-194,-175,-270,-408,-253r0,-172v169,-3,254,3,316,-84v97,-136,6,-365,-179,-355v-170,9,-223,108,-231,281r-193,0v-8,-293,153,-436,409,-443v256,-7,416,135,421,366v3,153,-97,268,-197,314v173,51,260,162,260,332v0,274,-220,421,-477,423v-321,2,-478,-181,-480,-493r184,0v3,200,114,326,307,329v157,2,270,-98,268,-245"},{"d":"496,-17r-318,-782r-161,0r0,-169r479,0r0,169r-116,0r209,536r205,-536r-128,0r0,-169r469,0r0,169r-144,0r-479,1233r-321,0r0,-166r189,0","w":1153,"k":{"o":102,"e":102,"a":41,".":205,",":205}},{"d":"63,-575r600,0r0,190r-600,0r0,-190","w":725},{"d":"617,-374r-468,0v-16,-62,-46,-114,-89,-157r579,-871r161,0r0,860r222,0r0,168r-222,0r0,205r127,0r0,169r-458,0r0,-169r148,0r0,-205xm617,-542r0,-548r-365,548r365,0"},{"d":"462,-1263v-79,0,-75,53,-75,156r0,140r166,0r0,168r-166,0r0,630r184,0r0,169r-515,0r0,-169r141,0r0,-630r-141,0r0,-168r141,0r0,-140v-6,-205,86,-312,252,-312v147,0,232,74,255,223r-169,26v-7,-62,-31,-93,-73,-93","w":598,"k":{"o":-41,"l":-20,"i":-20,"f":-20,"e":-51,"a":-51,".":-82,",":-82}},{"d":"732,-995v201,0,265,113,265,337r0,489r165,0r0,169r-355,0r0,-592v-4,-123,11,-160,-45,-208v-20,-17,-46,-24,-75,-24v-73,0,-167,42,-280,125r0,530r168,0r0,169r-533,0r0,-169r175,0r0,-1053r-175,0r0,-169r365,0r0,534v114,-92,222,-138,325,-138","w":1174,"k":{"y":61}},{"d":"569,-385r-188,216r124,0r0,169r-469,0r0,-169r143,0r291,-329r-278,-301r-131,0r0,-169r455,0r0,169r-121,0r174,187r168,-187r-99,0r0,-169r457,0r0,169r-159,0r-265,301r302,329r122,0r0,169r-457,0r0,-169r134,0","w":1130,"k":{"e":82}},{"d":"635,14r-467,-1231r-172,0r0,-174r549,0r0,174r-161,0r354,934r345,-934r-162,0r0,-174r534,0r0,174r-169,0r-458,1231r-193,0","w":1450,"k":{"u":102,"o":225,"e":225,"a":225,"O":102,"G":102,"A":123,";":72,":":72,".":369,"-":246,",":369}},{"d":"225,-478v160,68,209,174,209,423v0,125,2,205,6,238v9,92,79,104,197,102r0,149v-147,2,-247,-5,-307,-90v-69,-98,-61,-184,-65,-377v-4,-187,0,-263,-87,-332v-31,-25,-73,-35,-120,-36r0,-155v100,-3,161,-53,188,-135v29,-89,18,-459,43,-532v46,-133,159,-176,348,-168r0,149v-159,0,-203,20,-203,193v0,247,16,337,-65,463v-28,43,-78,78,-144,108","w":682},{"d":"1196,-479v0,289,-215,505,-475,507v-128,0,-241,-49,-340,-148r0,385r188,0r0,169r-555,0r0,-169r177,0r0,-1064r-163,0r0,-169r353,0r0,152v95,-111,209,-167,344,-167v275,0,471,220,471,504xm695,-815v-175,-1,-323,154,-317,345v6,187,118,322,307,325v188,3,313,-142,313,-341v0,-189,-135,-328,-303,-329","w":1280,"k":{"y":61,".":82,",":82}},{"d":"485,-169r0,-1053r-190,0r0,-167r380,0r0,1220r181,0r0,169r-561,0r0,-169r190,0"},{"d":"59,-1391r494,0r0,1808r-494,0r0,-139r304,0r0,-1530r-304,0r0,-139","w":768},{"d":"63,-575r600,0r0,190r-600,0r0,-190","w":725},{"d":"521,14r-354,-1231r-167,0r0,-174r532,0r0,174r-167,0r263,910r253,-910r-166,0r0,-174r639,0r0,174r-163,0r254,910r258,-910r-165,0r0,-174r511,0r0,174r-164,0r-347,1231r-199,0r-313,-1100r-311,1100r-194,0","w":2048,"k":{"y":102,"u":113,"o":184,"e":184,"a":184,"O":102,"A":82,";":72,":":72,".":328,"-":174,",":328}},{"d":"813,22v-427,-7,-704,-302,-711,-724v-6,-401,304,-711,714,-711v415,0,725,308,725,715v0,411,-316,727,-728,720xm814,-1228v-284,0,-483,239,-483,527v0,293,195,539,486,539v284,0,494,-254,494,-537v0,-285,-214,-529,-497,-529","w":1642,"k":{"Y":154,"X":154,"W":143,"V":143,"A":123,".":164,",":164}},{"d":"814,-633v1,-120,-25,-177,-114,-177v-84,0,-179,41,-285,123r0,518r167,0r0,169r-527,0r0,-169r170,0r0,-630r-170,0r0,-169r360,0r0,117v122,-88,233,-132,334,-132v120,0,214,64,236,153v41,170,12,452,19,661r163,0r0,169r-353,0r0,-633","w":1174,"k":{"y":61,"v":51,"u":20}},{"d":"196,-173v-164,-238,-161,-827,6,-1053v90,-122,204,-187,353,-187v155,0,269,68,357,194v164,236,163,826,-4,1053v-90,122,-204,188,-353,188v-156,0,-272,-68,-359,-195xm340,-1106v-84,170,-77,688,8,838v94,166,319,165,414,-1v86,-149,91,-714,-1,-855v-53,-82,-117,-127,-206,-127v-100,0,-168,51,-215,145"},{"d":"94,-938v0,-254,161,-475,419,-475v145,0,260,60,347,179v87,119,130,295,130,530v0,223,-42,400,-126,530v-84,130,-204,196,-363,196v-249,0,-391,-192,-397,-433r169,0v15,140,107,269,250,269v89,0,159,-46,208,-139v49,-93,75,-219,76,-379v-94,103,-203,154,-326,154v-227,1,-387,-191,-387,-432xm271,-953v0,147,82,265,232,265v99,0,197,-61,294,-182v-29,-252,-121,-378,-276,-378v-155,0,-250,138,-250,295"},{"d":"816,-633v-2,-113,-20,-180,-121,-180v-72,0,-165,42,-278,125r0,519r170,0r0,169r-533,0r0,-169r173,0r0,-630r-161,0r0,-169r351,0r0,122v115,-91,227,-137,337,-137v111,0,187,50,229,151v126,-101,243,-151,352,-151v196,0,257,113,257,334r0,480r169,0r0,169r-359,0r0,-615v5,-131,-14,-198,-119,-198v-81,0,-174,42,-277,125r0,519r166,0r0,169r-356,0r0,-633","w":1772,"k":{"y":41}},{"d":"565,22v-298,0,-497,-136,-497,-405v0,-165,82,-279,247,-344v-136,-79,-204,-186,-204,-321v0,-236,202,-365,432,-365v258,0,453,124,454,365v0,133,-68,240,-204,321v165,65,247,179,247,344v1,256,-204,405,-475,405xm548,-1248v-145,-1,-249,74,-249,218v0,151,107,226,261,225v139,-1,249,-77,249,-225v0,-145,-87,-218,-261,-218xm548,-643v-158,0,-278,94,-278,252v0,153,120,251,284,251v160,0,286,-95,284,-252v-2,-159,-117,-251,-290,-251"},{"d":"90,-480v0,-292,217,-515,479,-515v131,0,245,52,342,156r0,-383r-186,0r0,-169r376,0r0,1222r174,0r0,169r-364,0r0,-142v-95,105,-210,158,-346,158v-266,-2,-475,-202,-475,-496xm598,-819v-173,-3,-305,156,-305,334v0,197,128,332,307,332v173,0,311,-147,311,-341v0,-197,-140,-322,-313,-325","w":1280,"k":{"y":51,"w":20,"v":20}},{"d":"176,-722r0,-246r246,0r0,246r-246,0xm176,0r0,-246r246,0v-9,187,33,407,-90,482v-38,23,-89,39,-156,41r0,-104v87,-12,127,-73,119,-173r-119,0","w":598,"k":{" ":164}},{"d":"72,-491v0,-273,221,-504,476,-504v107,0,198,32,272,95r0,-68r170,0r0,366r-170,0v-12,-131,-119,-216,-254,-217v-176,-1,-288,144,-288,328v0,180,108,346,296,346v133,0,230,-63,290,-190r157,74v-87,193,-238,289,-455,289v-293,0,-494,-244,-494,-519","w":1067},{"d":"374,16r-259,-815r-118,0r0,-169r408,0r0,169r-127,0r185,584r185,-584r-106,0r0,-169r468,0r0,169r-106,0r185,584r186,-584r-133,0r0,-169r437,0r0,169r-139,0r-260,815r-179,0r-222,-700r-226,700r-179,0","w":1579,"k":{"o":72,"h":41,"e":51,"a":31,".":164,",":164}},{"d":"720,-1419r166,0r-710,1441r-166,0","w":897},{"d":"461,-668v-198,-1,-297,-155,-297,-372v0,-210,93,-374,297,-373v198,2,297,156,297,373v0,211,-95,373,-297,372xm308,-1041v0,185,51,277,153,277v101,0,152,-92,152,-276v0,-185,-51,-277,-152,-277v-102,0,-153,92,-153,276xm367,0r1104,-1391r142,0r-1096,1391r-150,0xm1523,22v-199,0,-297,-155,-297,-373v0,-218,99,-369,296,-372v205,-3,297,164,297,372v0,218,-98,373,-296,373xm1370,-351v0,185,51,277,152,277v102,0,153,-92,153,-276v0,-185,-51,-277,-152,-277v-102,0,-153,92,-153,276","w":1985},{"d":"213,-169r0,-1053r-172,0r0,-169r362,0r0,1222r148,0r0,169r-510,0r0,-169r172,0","w":598,"k":{"y":41,"w":31}},{"d":"178,-1413v62,0,107,47,104,106v-5,110,-59,352,-80,479r-44,0r-54,-296v-15,-83,-23,-136,-23,-160v0,-86,32,-129,97,-129","w":362},{"d":"1024,-395v0,255,-161,392,-402,415r0,155r-151,0r0,-155v-242,-7,-422,-187,-407,-440r182,0v10,167,85,259,225,278r0,-460v-254,-50,-381,-179,-381,-386v0,-230,158,-378,381,-393r0,-63r151,0r0,63v88,9,167,43,236,102v73,61,106,180,103,338r-176,0v-1,-162,-38,-242,-163,-273r0,444v160,30,267,76,321,138v54,62,81,142,81,237xm471,-804r0,-418v-121,21,-181,90,-181,205v0,109,60,180,181,213xm622,-570r0,426v140,-26,210,-100,210,-223v0,-134,-69,-174,-210,-203"},{"d":"57,-1416v316,141,548,469,545,930v-3,474,-215,765,-545,931r0,-156v237,-150,349,-375,342,-774v-5,-289,-30,-438,-153,-604v-60,-79,-122,-136,-189,-172r0,-155","w":768},{"d":"213,-174r0,-1043r-176,0r0,-174r1079,0r0,419r-172,0r0,-245r-521,0r0,412r449,0r0,174r-449,0r0,457r178,0r0,174r-564,0r0,-174r176,0","w":1130,"k":{"o":164,"e":164,"a":164,"A":184,".":287,",":287}},{"d":"305,-1182v-62,0,-115,-54,-115,-115v0,-61,51,-114,115,-114v61,0,115,52,115,114v0,62,-54,115,-115,115xm217,-169r0,-630r-151,0r0,-169r341,0r0,799r149,0r0,169r-490,0r0,-169r151,0","w":598,"k":{"v":41}},{"d":"622,-1413r0,169v-40,82,-61,164,-62,247v89,-32,161,-77,215,-136r167,-53r55,177r-164,55v-83,-14,-181,-2,-245,16v63,79,126,132,187,158r101,140r-148,107r-106,-141v-9,-84,-39,-161,-90,-231v-51,70,-81,147,-90,231r-106,141r-148,-107r101,-140v61,-26,124,-79,187,-158v-65,-18,-161,-30,-245,-16r-164,-55r55,-177r167,53v54,59,126,104,215,136v-1,-83,-22,-165,-62,-247r0,-169r180,0","w":1067},{"d":"176,0r0,-246r246,0v-9,187,33,407,-90,482v-38,23,-89,39,-156,41r0,-104v87,-12,127,-73,119,-173r-119,0","w":598,"k":{" ":164}},{"d":"709,-1391r0,139r-304,0r0,1530r304,0r0,139r-494,0r0,-1808r494,0","w":768},{"d":"528,-1096r-128,0r-289,-317r276,0","w":682},{"d":"211,-174r0,-1043r-174,0r0,-174r563,0r0,174r-179,0r0,1043r160,0r0,174r-544,0r0,-174r174,0xm428,-734r446,-483r-159,0r0,-174r545,0r0,174r-148,0r-428,483r440,560r149,0r0,174r-565,0r0,-174r150,0","w":1280,"k":{"y":164,"u":41,"o":41,"e":51,"O":82}},{"d":"176,0r0,-246r246,0r0,246r-246,0","w":598,"k":{" ":164}},{"d":"378,-329v8,120,-17,166,75,166v35,0,70,-7,104,-20r0,173v-93,35,-217,41,-287,-12v-87,-66,-82,-128,-82,-297r0,-480r-126,0r0,-169r126,0r0,-149r190,-174r0,323r179,0r0,169r-179,0r0,470","w":618},{"d":"72,-470v0,-285,217,-514,479,-513v128,0,242,51,342,153r0,-138r364,0r0,169r-174,0r0,721v-3,194,-4,252,-87,360v-76,99,-249,174,-430,174v-143,0,-270,-43,-382,-129r124,-138v121,95,275,129,426,67v78,-32,127,-90,149,-162v12,-39,10,-156,10,-225v-60,75,-207,159,-351,159v-274,0,-470,-226,-470,-498xm584,-805v-172,0,-310,143,-310,331v0,186,124,333,304,333v176,0,318,-149,318,-334v0,-185,-141,-331,-312,-330","w":1280,"k":{"y":61,"o":41,"g":20,"e":41,"a":31,".":82,",":82}},{"d":"135,-774r470,0r0,-469r156,0r0,469r470,0r0,157r-470,0r0,469r-156,0r0,-469r-470,0r0,-157","w":1366},{"d":"970,-489r-500,0r-107,315r169,0r0,174r-548,0r0,-174r168,0r380,-1060r-169,0r0,-157r711,0r0,157r-173,0r389,1060r156,0r0,174r-545,0r0,-174r173,0xm918,-652r-185,-582r-19,0r-192,582r396,0","w":1430,"k":{"y":82,"w":20,"v":123,"Y":102,"W":82,"V":123,"U":51,"T":41,"Q":82,"O":61,"G":61,"C":41}},{"d":"762,16v-146,0,-294,-79,-350,-161r0,145r-358,0r0,-169r172,0r0,-1053r-172,0r0,-169r358,0r0,560v95,-109,212,-164,351,-164v271,0,471,216,471,500v0,277,-197,511,-472,511xm729,-822v-175,0,-311,141,-311,340v0,186,137,328,306,328v178,0,311,-152,311,-346v0,-189,-134,-322,-306,-322","w":1323,"k":{"y":82,"v":82,"u":20,"l":41,"b":41,".":123,",":123}},{"d":"135,-1226r1096,460r0,141r-1096,460r0,-170r882,-360r-882,-361r0,-170","w":1366},{"d":"483,-174r0,-1043r-287,0r0,355r-172,0r0,-529r1127,0r0,529r-172,0r0,-355r-286,0r0,1043r181,0r0,174r-569,0r0,-174r178,0","w":1174,"k":{"o":123,"h":-31,"e":102,"a":61,"O":31,"A":51,".":164,"-":256,",":164}},{"d":"215,-174r0,-1043r-189,0r0,-174r538,0v291,4,410,10,577,127v146,102,250,299,248,545v-3,384,-164,627,-487,689v-228,43,-593,25,-876,30r0,-174r189,0xm425,-174v246,1,454,-2,583,-102v102,-79,166,-241,166,-431v0,-227,-107,-415,-268,-471v-90,-32,-309,-42,-481,-39r0,1043","w":1493,"k":{"Y":143,"W":143,"V":143,"A":20,".":123,",":123}},{"d":"897,-1019v2,222,-162,390,-386,374r-25,270r-103,0r-24,-442v31,8,63,12,94,12v158,0,243,-87,247,-223v3,-136,-91,-223,-221,-223v-166,0,-243,113,-229,283r-187,0v-26,-290,159,-441,410,-445v256,-5,422,150,424,394xm311,0r0,-246r245,0r0,246r-245,0","w":961},{"d":"623,-1413v176,0,333,127,333,298v0,74,-23,135,-68,182v-45,47,-120,92,-224,135r283,383v51,-89,87,-196,108,-321r285,0r0,170r-147,0v-36,129,-82,228,-138,298r73,94r212,0r0,174r-317,0r-92,-122v-121,96,-244,144,-370,144v-276,0,-498,-200,-498,-469v0,-185,106,-324,317,-417v-63,-81,-95,-162,-95,-243v0,-176,165,-306,338,-306xm627,-1249v-81,0,-147,56,-147,137v0,35,40,119,84,182v80,-33,134,-66,164,-94v89,-83,28,-225,-101,-225xm270,-456v0,161,147,305,312,305v89,0,169,-37,242,-111r-338,-474v-144,64,-216,157,-216,280","w":1386},{"d":"217,-174r0,-1043r-191,0r0,-174v273,7,625,-25,846,27v137,32,240,163,240,337v0,184,-96,300,-287,347r246,506r170,0r0,174r-301,0r-317,-650r-196,0r0,476r178,0r0,174r-579,0r0,-174r191,0xm591,-824v197,5,297,-33,304,-206v4,-89,-57,-158,-127,-174v-74,-17,-236,-12,-341,-13r0,393r164,0","w":1237,"k":{"Y":41,"W":41,"V":41,"O":41}},{"d":"217,-174r0,-1043r-167,0r0,-174r476,0r366,953r370,-953r481,0r0,174r-168,0r0,1043r168,0r0,174r-524,0r0,-174r166,0r0,-1043r-480,1231r-41,0r-475,-1231r0,1043r153,0r0,174r-492,0r0,-174r167,0","w":1792},{"d":"51,0r0,-174r745,-1043r-539,0r0,245r-172,0r0,-419r977,0r0,154r-758,1063r609,0r0,-269r172,0r0,443r-1034,0","w":1153},{"d":"538,-1413v255,0,432,148,432,377v0,89,-24,164,-73,227v-49,63,-142,142,-279,239v-134,94,-220,172,-262,231v-42,59,-66,112,-73,158r524,0r8,-316r169,0r-13,497r-889,0v1,-212,84,-388,196,-504v62,-65,158,-145,286,-238v81,-59,135,-108,164,-148v29,-40,43,-86,43,-139v1,-131,-92,-220,-229,-220v-210,0,-253,155,-239,376r-185,0v-18,-324,116,-540,420,-540"},{"d":"328,-703v0,312,222,541,513,541v218,0,426,-140,448,-335r-251,0r0,-174r506,0v26,435,-279,694,-698,693v-251,0,-439,-71,-562,-214v-123,-143,-185,-313,-185,-508v0,-408,282,-713,702,-713v194,0,357,59,488,177r0,-155r177,0r0,457r-177,0v-63,-147,-253,-294,-469,-294v-296,0,-492,239,-492,525","w":1642,"k":{".":123,",":123}},{"d":"879,-278v0,190,-170,294,-372,294v-103,0,-188,-23,-253,-70r0,54r-170,0r0,-332r170,0r0,32v11,93,117,156,226,156v104,0,202,-32,202,-121v0,-37,-16,-64,-46,-81v-30,-17,-90,-33,-180,-48v-133,-23,-229,-60,-286,-110v-57,-50,-85,-115,-85,-195v0,-171,153,-284,338,-284v91,0,170,19,236,56r0,-41r169,0r0,321r-169,0r0,-59v-51,-79,-126,-119,-224,-119v-88,0,-171,40,-172,119v0,37,16,62,45,76v61,30,337,63,404,94v88,41,167,133,167,258","w":938},{"d":"1356,29v-132,0,-179,-50,-192,-167v-97,111,-199,166,-307,166v-213,-2,-362,-209,-362,-448v0,-286,247,-638,519,-638v127,0,227,61,302,183r34,-155r179,0r-144,672v-20,93,-30,144,-30,155v-2,36,36,66,68,66v35,0,86,-23,151,-67v122,-83,237,-284,237,-487v0,-370,-335,-631,-715,-631v-481,0,-834,389,-834,860v0,506,346,770,861,770v315,0,576,-114,704,-302r181,0v-55,115,-159,218,-310,311v-151,93,-342,139,-572,139v-607,0,-1010,-329,-1012,-899v0,-273,87,-512,260,-717v173,-205,417,-307,731,-307v256,0,460,78,619,227v289,271,315,745,47,1050v-127,145,-264,219,-415,219xm1259,-624v0,-160,-88,-286,-232,-286v-101,0,-184,56,-249,167v-65,111,-98,225,-98,340v0,146,85,283,213,283v199,0,366,-277,366,-504","w":2068},{"d":"176,-722r0,-246r246,0r0,246r-246,0xm176,0r0,-246r246,0r0,246r-246,0","w":598,"k":{" ":164}},{"d":"408,-169v15,-360,205,-818,364,-1041r-479,0r0,187r-172,0r0,-366r869,0r0,142v-162,181,-386,741,-380,1078r162,0r0,169r-549,0r0,-169r185,0"},{"d":"1019,-447v0,279,-187,473,-477,469v-293,-4,-453,-178,-469,-466r180,0v18,171,113,304,291,306v169,2,277,-135,277,-307v0,-175,-100,-294,-258,-294v-110,0,-203,56,-279,167v-43,-42,-91,-76,-145,-101r57,-716r742,0r0,369r-172,0r0,-190r-426,0r-31,407v85,-69,179,-103,283,-103v260,0,427,204,427,459"},{"d":"996,-453v0,253,-161,475,-418,475v-145,0,-261,-59,-348,-178v-87,-119,-130,-296,-130,-531v0,-223,42,-401,126,-531v84,-130,205,-195,363,-195v250,0,391,191,397,433r-169,0v-15,-141,-106,-269,-250,-269v-89,0,-158,47,-207,139v-49,92,-75,218,-77,379v95,-103,204,-154,327,-154v222,0,386,190,386,432xm819,-438v0,-150,-86,-266,-231,-265v-99,0,-198,61,-295,182v30,252,122,378,276,378v157,0,250,-140,250,-295"},{"d":"209,-174r0,-1043r-199,0r0,-174r475,0r610,1081r0,-907r-197,0r0,-174r571,0r0,174r-205,0r0,1231r-216,0r-667,-1187r0,999r199,0r0,174r-570,0r0,-174r199,0","w":1473,"k":{"A":31,".":82,",":82}},{"d":"1231,-165r-1096,-460r0,-141r1096,-460r0,170r-882,361r882,360r0,170","w":1366},{"d":"209,-174r0,-1043r-180,0r0,-174r569,0r0,174r-171,0r0,1043r426,0r0,-473r196,0r0,647r-1020,0r0,-174r180,0","w":1067,"k":{"y":41,"Y":154,"W":154,"V":205}},{"d":"798,-167v247,-3,423,-177,479,-399r181,101v-68,288,-334,482,-673,487v-410,6,-698,-313,-698,-712v0,-426,278,-723,693,-723v182,0,335,50,459,149r0,-127r180,0r0,447r-180,0v-65,-162,-242,-282,-448,-285v-281,-4,-475,240,-475,529v0,291,212,537,482,533","w":1556,"k":{"A":51,".":82,",":82}},{"d":"816,-1413v419,0,731,305,724,715v-5,266,-103,447,-279,579v-103,78,-217,123,-345,134v135,52,238,109,365,76r-74,172v-123,18,-180,-13,-328,-79v-101,-45,-179,-72,-236,-72v-59,0,-107,16,-143,49r-59,-85v39,-43,91,-71,154,-84v-287,-93,-489,-334,-493,-693v-5,-395,301,-712,714,-712xm814,-1228v-284,0,-483,239,-483,527v0,293,195,539,486,539v284,0,494,-254,494,-537v0,-285,-214,-529,-497,-529","w":1642,"k":{"U":61,".":184,",":184}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+173-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("mK]twJjB~8^amu01gJZk>K>^x}jt]J^ax}Wk~8v.]X37d{BAxZYs*kVTdX|k>{tdX8XN~0V>4**Sgx]9400u,xt,>AZexP*GCK;GsMj|F$vJ~Pl8+O:YxXYtCMVl]ZgIwr:|w$lH=}jOxu30wu,Hm*]UmAYw:VuM;ZKP>WmFCj=IEv4$*X8xd]~w,g+s`lArH0J.SUbT7fa9GYk{Bt}Op|N13^e6d;7agK,TE8>eX;E6W0Wj8rWP,B:Nj{*}$rYCEt;AF.jGwK0Bmu>Am4YUI$:7,MtAF.:7wMtGFJY0wJgB~uY.I8>a]A|.wP0G~PC^+OB1~8dSdA|9~{B9xA`6=.gOgtGam$3SI{UH]x],FJj9wJ|0dOv}]8|H~8|.xu|rwtGag8f3d}^awJXrgP]0wJvUwJg,FJj9xu|t~kHHF}HagKX{gul7w}jlgK09wA|SwOjBwJZf]4HU]J^kmMfUIKG1mkfUm8gwdtfUxXB^,ZfUxxBUmuH`")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":1110,"face":{"font-family":"Rockwell","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 6 6 3 2 2 5 2 4 3","ascent":"1638","descent":"-410","x-height":"28","bbox":"-72 -1467 2049 456","underline-thickness":"102","underline-position":"-109","unicode-range":"U+0020-U+007E"}}));




