/*
 * jquery.tools 1.1.2 - The missing UI library for the Web
 * 
 * [tools.scrollable-1.1.2, tools.scrollable.circular-0.5.1, tools.scrollable.autoscroll-1.0.1]
 * 
 * Copyright (c) 2009 Tero Piirainen
 * http://flowplayer.org/tools/
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * http://www.opensource.org/licenses
 * 
 * -----
 * 
 * File generated: Tue Feb 16 10:10:45 GMT 2010
 */
(function(b){b.tools=b.tools||{};b.tools.scrollable={version:"1.1.2",conf:{size:5,vertical:false,speed:400,keyboard:true,keyboardSteps:null,disabledClass:"disabled",hoverClass:null,clickable:true,activeClass:"active",easing:"swing",loop:false,items:".items",item:null,prev:".prev",next:".next",prevPage:".prevPage",nextPage:".nextPage",api:false}};var c;function a(o,m){var r=this,p=b(this),d=!m.vertical,e=o.children(),k=0,i;if(!c){c=r}b.each(m,function(s,t){if(b.isFunction(t)){p.bind(s,t)}});if(e.length>1){e=b(m.items,o)}function l(t){var s=b(t);return m.globalNav?s:o.parent().find(t)}o.data("finder",l);var f=l(m.prev),h=l(m.next),g=l(m.prevPage),n=l(m.nextPage);b.extend(r,{getIndex:function(){return k},getClickIndex:function(){var s=r.getItems();return s.index(s.filter("."+m.activeClass))},getConf:function(){return m},getSize:function(){return r.getItems().size()},getPageAmount:function(){return Math.ceil(this.getSize()/m.size)},getPageIndex:function(){return Math.ceil(k/m.size)},getNaviButtons:function(){return f.add(h).add(g).add(n)},getRoot:function(){return o},getItemWrap:function(){return e},getItems:function(){return e.children(m.item)},getVisibleItems:function(){return r.getItems().slice(k,k+m.size)},seekTo:function(s,w,t){if(s<0){s=0}if(k===s){return r}if(b.isFunction(w)){t=w}if(s>r.getSize()-m.size){return m.loop?r.begin():this.end()}var u=r.getItems().eq(s);if(!u.length){return r}var v=b.Event("onBeforeSeek");p.trigger(v,[s]);if(v.isDefaultPrevented()){return r}if(w===undefined||b.isFunction(w)){w=m.speed}function x(){if(t){t.call(r,s)}p.trigger("onSeek",[s])}if(d){e.animate({left:-u.position().left},w,m.easing,x)}else{e.animate({top:-u.position().top},w,m.easing,x)}c=r;k=s;v=b.Event("onStart");p.trigger(v,[s]);if(v.isDefaultPrevented()){return r}f.add(g).toggleClass(m.disabledClass,s===0);h.add(n).toggleClass(m.disabledClass,s>=r.getSize()-m.size);return r},move:function(u,t,s){i=u>0;return this.seekTo(k+u,t,s)},next:function(t,s){return this.move(1,t,s)},prev:function(t,s){return this.move(-1,t,s)},movePage:function(w,v,u){i=w>0;var s=m.size*w;var t=k%m.size;if(t>0){s+=(w>0?-t:m.size-t)}return this.move(s,v,u)},prevPage:function(t,s){return this.movePage(-1,t,s)},nextPage:function(t,s){return this.movePage(1,t,s)},setPage:function(t,u,s){return this.seekTo(t*m.size,u,s)},begin:function(t,s){i=false;return this.seekTo(0,t,s)},end:function(t,s){i=true;var u=this.getSize()-m.size;return u>0?this.seekTo(u,t,s):r},reload:function(){p.trigger("onReload");return r},focus:function(){c=r;return r},click:function(u){var v=r.getItems().eq(u),s=m.activeClass,t=m.size;if(u<0||u>=r.getSize()){return r}if(t==1){if(m.loop){return r.next()}if(u===0||u==r.getSize()-1){i=(i===undefined)?true:!i}return i===false?r.prev():r.next()}if(t==2){if(u==k){u--}r.getItems().removeClass(s);v.addClass(s);return r.seekTo(u,time,fn)}if(!v.hasClass(s)){r.getItems().removeClass(s);v.addClass(s);var x=Math.floor(t/2);var w=u-x;if(w>r.getSize()-t){w=r.getSize()-t}if(w!==u){return r.seekTo(w)}}return r},bind:function(s,t){p.bind(s,t);return r},unbind:function(s){p.unbind(s);return r}});b.each("onBeforeSeek,onStart,onSeek,onReload".split(","),function(s,t){r[t]=function(u){return r.bind(t,u)}});f.addClass(m.disabledClass).click(function(){r.prev()});h.click(function(){r.next()});n.click(function(){r.nextPage()});if(r.getSize()<m.size){h.add(n).addClass(m.disabledClass)}g.addClass(m.disabledClass).click(function(){r.prevPage()});var j=m.hoverClass,q="keydown."+Math.random().toString().substring(10);r.onReload(function(){if(j){r.getItems().hover(function(){b(this).addClass(j)},function(){b(this).removeClass(j)})}if(m.clickable){r.getItems().each(function(s){b(this).unbind("click.scrollable").bind("click.scrollable",function(t){if(b(t.target).is("a")){return}return r.click(s)})})}if(m.keyboard){b(document).unbind(q).bind(q,function(t){if(t.altKey||t.ctrlKey){return}if(m.keyboard!="static"&&c!=r){return}var u=m.keyboardSteps;if(d&&(t.keyCode==37||t.keyCode==39)){r.move(t.keyCode==37?-u:u);return t.preventDefault()}if(!d&&(t.keyCode==38||t.keyCode==40)){r.move(t.keyCode==38?-u:u);return t.preventDefault()}return true})}else{b(document).unbind(q)}});r.reload()}b.fn.scrollable=function(d){var e=this.eq(typeof d=="number"?d:0).data("scrollable");if(e){return e}var f=b.extend({},b.tools.scrollable.conf);d=b.extend(f,d);d.keyboardSteps=d.keyboardSteps||d.size;this.each(function(){e=new a(b(this),d);b(this).data("scrollable",e)});return d.api?e:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.circular={version:"0.5.1",conf:{api:false,clonedClass:"cloned"}};b.fn.circular=function(e){var d=b.extend({},a.plugins.circular.conf),c;b.extend(d,e);this.each(function(){var i=b(this).scrollable(),n=i.getItems(),k=i.getConf(),f=i.getItemWrap(),j=0;if(i){c=i}if(n.length<k.size){return false}n.slice(0,k.size).each(function(o){b(this).clone().appendTo(f).click(function(){i.click(n.length+o)}).addClass(d.clonedClass)});var l=b.makeArray(n.slice(-k.size)).reverse();b(l).each(function(o){b(this).clone().prependTo(f).click(function(){i.click(-o-1)}).addClass(d.clonedClass)});var m=f.children(k.item);var h=k.hoverClass;if(h){m.hover(function(){b(this).addClass(h)},function(){b(this).removeClass(h)})}function g(o){var p=m.eq(o);if(k.vertical){f.css({top:-p.position().top})}else{f.css({left:-p.position().left})}}g(k.size);b.extend(i,{move:function(s,r,p,q){var u=j+s+k.size;var t=u>i.getSize()-k.size;if(u<=0||t){var o=j+k.size+(t?-n.length:n.length);g(o);u=o+s}if(q){m.removeClass(k.activeClass).eq(u+Math.floor(k.size/2)).addClass(k.activeClass)}if(u===j+k.size){return self}return i.seekTo(u,r,p)},begin:function(p,o){return this.seekTo(k.size,p,o)},end:function(p,o){return this.seekTo(n.length,p,o)},click:function(p,r,q){if(!k.clickable){return self}if(k.size==1){return this.next()}var s=p-j,o=k.activeClass;s-=Math.floor(k.size/2);return this.move(s,r,q,true)},getIndex:function(){return j},setPage:function(p,q,o){return this.seekTo(p*k.size+k.size,q,o)},getPageAmount:function(){return Math.ceil(n.length/k.size)},getPageIndex:function(){if(j<0){return this.getPageAmount()-1}if(j>=n.length){return 0}var o=(j+k.size)/k.size-1;return o},getVisibleItems:function(){var o=j+k.size;return m.slice(o,o+k.size)}});i.onStart(function(p,o){j=o-k.size;return false});i.getNaviButtons().removeClass(k.disabledClass)});return d.api?c:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.autoscroll={version:"1.0.1",conf:{autoplay:true,interval:3000,autopause:true,steps:1,api:false}};b.fn.autoscroll=function(d){if(typeof d=="number"){d={interval:d}}var e=b.extend({},a.plugins.autoscroll.conf),c;b.extend(e,d);this.each(function(){var g=b(this).scrollable();if(g){c=g}var i,f,h=true;g.play=function(){if(i){return}h=false;i=setInterval(function(){g.move(e.steps)},e.interval);g.move(e.steps)};g.pause=function(){i=clearInterval(i)};g.stop=function(){g.pause();h=true};if(e.autopause){g.getRoot().add(g.getNaviButtons()).hover(function(){g.pause();clearInterval(f)},function(){if(!h){f=setTimeout(g.play,e.interval)}})}if(e.autoplay){setTimeout(g.play,e.interval)}});return e.api?c:this}})(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:
 * HTF Gotham  2001 The Hoefler Type Foundry, Inc. Info: www.typography.com
 * 
 * Manufacturer:
 * The Hoefler Type Foundry, Inc
 */
Cufon.registerFont({"w":136,"face":{"font-family":"Gotham HTF","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 3 0 0 2 0 4","ascent":"288","descent":"-72","bbox":"-7 -276 216 56","underline-thickness":"7.2","underline-position":"-40.68","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":58},"!":{"d":"22,-35r29,0r0,35r-29,0r0,-35xm30,-69r-8,-183r28,0r-8,183r-12,0","w":72},"\"":{"d":"16,-252r25,0r-16,95r-9,0r0,-95xm59,-252r25,0r-15,95r-10,0r0,-95","w":94},"#":{"d":"83,-87r6,-80r-34,0r-7,80r35,0xm30,-66r-23,0r0,-21r25,0r6,-80r-24,0r0,-21r26,0r5,-64r16,0r-5,64r35,0r5,-64r17,0r-5,64r23,0r1,21r-26,0r-6,80r25,0r0,21r-27,0r-5,66r-17,0r5,-66r-34,0r-5,66r-17,0","w":138},"$":{"d":"74,-22v34,-10,23,-71,0,-86r0,86xm54,-230v-35,9,-24,67,0,82r0,-82xm74,-136v46,19,66,126,0,136r0,35r-20,0r0,-33v-16,-1,-27,-6,-39,-13r0,-25v15,9,27,15,39,16r0,-100v-27,-17,-43,-39,-45,-74v-1,-32,20,-54,45,-59r0,-20r20,0r0,20v12,1,23,4,32,10r0,24v-9,-6,-19,-10,-32,-12r0,95","w":124},"%":{"d":"139,-104v-28,4,-28,84,0,88v29,-2,29,-86,0,-88xm48,-236v-29,3,-29,85,0,88v28,-4,28,-84,0,-88xm139,-122v52,1,51,123,0,124v-51,0,-51,-123,0,-124xm142,-252r17,0r-114,252r-17,0xm48,-254v51,2,50,123,0,124v-51,0,-54,-123,0,-124","w":186},"&":{"d":"58,-125v-42,23,-31,136,26,99v6,-5,11,-12,16,-21xm69,-235v-39,5,-21,59,-5,82v17,-14,27,-29,28,-54v0,-14,-8,-30,-23,-28xm111,-30v-11,18,-23,33,-50,33v-36,0,-53,-28,-53,-65v0,-36,18,-59,40,-79v-29,-35,-38,-114,21,-114v29,0,44,21,44,50v0,32,-20,50,-39,69r36,66r10,-51r19,3v-4,27,-9,47,-16,69r24,41r-18,11","w":149},"'":{"d":"16,-252r25,0r-16,95r-9,0r0,-95","w":47},"(":{"d":"84,-240v-64,46,-64,226,0,272r0,18v-93,-41,-93,-267,0,-308r0,18","w":90},")":{"d":"6,-258v94,40,95,268,0,308r0,-18v65,-45,66,-227,0,-272r0,-18","w":90},"*":{"d":"46,-193r-29,22r-9,-14r34,-17r-34,-17r9,-15r29,23r-4,-41r18,0r-4,41r29,-23r9,15r-34,17r34,17r-9,14r-29,-22r4,41r-18,0","w":101},"+":{"d":"62,-115r-53,0r0,-23r53,0r0,-60r23,0r0,60r53,0r0,23r-53,0r0,60r-23,0r0,-60","w":147},",":{"d":"7,31v16,-5,23,-13,21,-31r-13,0r0,-35r30,0v2,40,0,70,-34,78","w":60},"-":{"d":"14,-119r75,0r0,22r-75,0r0,-22","w":102},"\u00ad":{"d":"14,-119r75,0r0,22r-75,0r0,-22","w":102},".":{"d":"15,-35r30,0r0,35r-30,0r0,-35","w":60},"\/":{"d":"77,-276r19,0r-78,311r-20,0","w":98},"0":{"d":"68,-234v-48,19,-35,136,-23,192v3,13,10,23,23,24v35,-11,32,-64,32,-112v0,-45,1,-94,-32,-104xm68,-255v68,7,60,120,52,190v-4,35,-16,65,-52,68v-54,-7,-55,-71,-55,-133v0,-59,3,-119,55,-125"},"1":{"d":"33,-225r-25,13r0,-25v15,-6,25,-18,49,-15r0,252r-24,0r0,-225","w":78},"2":{"d":"15,-243v47,-32,112,12,85,79v-20,49,-44,94,-65,141r72,0r0,23r-98,0r0,-18r69,-149v10,-28,3,-64,-28,-63v-15,0,-26,5,-35,11r0,-24","w":117},"3":{"d":"104,-78v3,59,-44,95,-96,73r0,-22v36,19,72,-3,72,-49v0,-33,-19,-48,-50,-50r0,-15r47,-88r-68,0r0,-23r94,0r0,18r-50,91v31,7,49,27,51,65","w":113},"4":{"d":"80,-75r0,-131r-53,131r53,0xm80,-55r-74,0r0,-18r74,-180r22,0r0,178r20,0r0,20r-20,0r0,55r-22,0r0,-55","w":127},"5":{"d":"85,-80v0,-40,-24,-62,-58,-48r-14,-9r5,-115r80,0r0,23r-61,0r-4,79v46,-15,75,20,75,70v0,56,-42,98,-95,75r0,-22v38,20,72,-8,72,-53","w":118},"6":{"d":"97,-79v5,-50,-36,-75,-61,-42v1,44,-6,94,30,103v27,-3,28,-32,31,-61xm71,-158v70,0,63,161,-5,161v-52,0,-52,-62,-53,-120v-1,-75,15,-156,90,-131r0,23v-20,-12,-45,-9,-55,16v-6,15,-11,38,-12,68v8,-9,19,-17,35,-17","w":128},"7":{"d":"77,-229r-67,0r0,-23r90,0r0,18r-55,234r-23,0","w":111},"8":{"d":"61,-121v-38,2,-44,102,0,104v44,-2,38,-102,0,-104xm61,-235v-38,2,-34,92,0,95v35,-4,37,-93,0,-95xm82,-131v44,21,45,134,-21,134v-66,0,-66,-114,-20,-134v-41,-19,-39,-124,20,-124v59,0,61,103,21,124","w":122},"9":{"d":"32,-171v0,29,4,59,31,59v14,0,21,-8,30,-16v-2,-45,6,-98,-30,-106v-27,2,-31,34,-31,63xm116,-145v4,81,-15,169,-94,140r0,-23v19,11,48,13,58,-14v6,-15,12,-37,13,-66v-37,39,-89,-1,-83,-63v5,-44,14,-80,53,-84v49,4,51,56,53,110","w":128},":":{"d":"17,-35r30,0r0,35r-30,0r0,-35xm17,-190r30,0r0,35r-30,0r0,-35","w":64},";":{"d":"9,31v16,-5,23,-13,21,-31r-13,0r0,-35r30,0v2,40,0,70,-34,78xm17,-190r30,0r0,35r-30,0r0,-35","w":64},"\u037e":{"d":"9,31v16,-5,23,-13,21,-31r-13,0r0,-35r30,0v2,40,0,70,-34,78xm17,-190r30,0r0,35r-30,0r0,-35","w":64},"<":{"d":"12,-115r0,-24r104,-72r0,28r-84,56r84,56r0,29","w":132},"=":{"d":"19,-100r125,0r0,23r-125,0r0,-23xm19,-176r125,0r0,22r-125,0r0,-22","w":162},">":{"d":"17,-70r83,-56r-83,-57r0,-28r104,72r0,24r-104,73r0,-28","w":132},"?":{"d":"32,-35r29,0r0,35r-29,0r0,-35xm79,-189v0,-41,-45,-54,-71,-33r0,-22v57,-36,126,34,81,97v-8,12,-21,19,-33,26r-3,52r-15,0r-3,-63v21,-13,44,-23,44,-57","w":110},"@":{"d":"120,-163v-33,9,-47,75,-35,113v3,5,7,6,12,6v31,-9,40,-47,42,-86v1,-17,-6,-32,-19,-33xm108,37v24,0,38,-6,54,-15r6,9v-16,11,-34,17,-60,17v-68,0,-98,-52,-96,-125v2,-91,31,-178,117,-178v61,0,87,50,87,112v0,52,-10,111,-56,117v-20,3,-30,-17,-28,-36v-9,16,-20,36,-42,36v-19,0,-31,-21,-30,-44v2,-52,14,-103,57,-113v20,0,24,17,28,33r5,-27r20,3r-20,116v0,11,2,19,13,19v35,-10,42,-61,42,-104v0,-56,-22,-101,-77,-101v-78,0,-105,85,-105,167v0,66,23,111,85,114","w":228},"A":{"d":"98,-86r-25,-127r-26,127r51,0xm60,-253r26,0r53,253r-24,0r-13,-65r-58,0r-13,65r-23,0","w":146},"B":{"d":"103,-68v0,-36,-23,-51,-61,-49r0,95v37,2,61,-12,61,-46xm100,-185v0,-32,-23,-48,-58,-45r0,92v36,2,58,-13,58,-47xm127,-68v-1,57,-46,72,-109,68r0,-252v59,-4,106,8,105,64v1,35,-17,52,-43,60v27,8,48,24,47,60"},"C":{"d":"108,-6v-70,28,-96,-47,-96,-124v0,-71,25,-139,95,-118r0,25v-54,-28,-71,39,-71,101v0,59,19,121,72,93r0,23","w":119},"D":{"d":"110,-122v0,-59,-9,-110,-68,-109r0,210v54,1,67,-41,68,-101xm134,-130v1,84,-25,140,-116,130r0,-252v87,-9,116,42,116,122","w":145},"E":{"d":"18,-252r89,0r0,22r-65,0r0,92r59,0r0,22r-59,0r0,94r66,0r0,22r-90,0r0,-252","w":117},"F":{"d":"18,-252r85,0r0,22r-61,0r0,95r55,0r0,22r-55,0r0,113r-24,0r0,-252","w":110},"G":{"d":"126,-7v-76,33,-114,-38,-114,-123v0,-77,37,-144,110,-116r0,25v-56,-33,-86,30,-86,99v0,56,14,112,68,100r0,-90r-33,0r0,-21r55,0r0,126","w":142},"H":{"d":"18,-252r24,0r0,114r67,0r0,-114r23,0r0,252r-23,0r0,-116r-67,0r0,116r-24,0r0,-252","w":150},"I":{"d":"20,-252r24,0r0,252r-24,0r0,-252","w":64},"J":{"d":"73,-48v2,40,-30,57,-66,47r0,-23v20,9,43,1,43,-25r0,-203r23,0r0,204","w":89},"K":{"d":"18,-252r24,0r0,133r60,-133r27,0r-54,112r59,140r-26,0r-49,-114r-17,37r0,77r-24,0r0,-252"},"L":{"d":"18,-252r24,0r0,230r58,0r0,22r-82,0r0,-252","w":103},"M":{"d":"18,-252r26,0r42,128r43,-128r26,0r0,252r-23,0r0,-199r-46,132r-45,-132r0,199r-23,0r0,-252","w":172},"N":{"d":"18,-252r24,0r69,189r0,-189r23,0r0,252r-22,0r-71,-194r0,194r-23,0r0,-252","w":151},"O":{"d":"74,-234v-51,9,-43,146,-27,190v6,17,16,26,27,26v34,-9,38,-58,38,-112v-1,-53,-6,-94,-38,-104xm74,-255v79,9,71,163,44,227v-7,17,-23,31,-44,31v-56,0,-62,-69,-62,-133v0,-61,9,-118,62,-125","w":147},"P":{"d":"103,-170v0,-40,-20,-63,-61,-60r0,119v42,3,62,-19,61,-59xm126,-172v0,54,-28,86,-84,83r0,89r-24,0r0,-252v67,-6,108,17,108,80","w":133},"Q":{"d":"36,-130v0,50,-1,103,39,112v9,0,16,-5,20,-12r-24,-28r13,-13r19,23v13,-49,20,-177,-29,-186v-32,9,-38,52,-38,104xm74,-255v79,9,69,161,45,224r21,25r-14,13r-18,-22v-10,12,-21,18,-34,18v-56,0,-62,-69,-62,-133v0,-61,9,-118,62,-125","w":148},"R":{"d":"104,-175v0,-39,-22,-58,-62,-55r0,111v41,3,62,-17,62,-56xm53,-252v86,-11,95,124,34,147r45,105r-27,0r-41,-99r-22,1r0,98r-24,0r0,-252r35,0","w":139},"S":{"d":"109,-54v2,54,-60,70,-98,45r0,-26v39,35,93,6,68,-44v-21,-40,-64,-65,-68,-121v-4,-49,55,-68,91,-45r0,26v-26,-22,-67,-19,-67,18v0,64,71,77,74,147","w":119},"T":{"d":"43,-230r-38,0r0,-22r100,0r0,22r-39,0r0,230r-23,0r0,-230","w":109},"U":{"d":"131,-67v1,42,-19,70,-57,70v-37,0,-57,-28,-56,-70r0,-185r23,0r0,186v0,28,10,48,33,48v24,0,34,-21,34,-48r0,-186r23,0r0,185","w":147},"V":{"d":"8,-252r24,0r38,208r39,-208r23,0r-50,253r-24,0","w":139},"W":{"d":"8,-252r25,0r30,202r36,-202r21,0r36,202r30,-202r24,0r-42,253r-24,0r-35,-200r-36,200r-23,0","w":218},"X":{"d":"52,-132r-42,-120r25,0r31,94r32,-94r23,0r-41,119r46,133r-24,0r-36,-106r-36,106r-24,0","w":131},"Y":{"d":"53,-106r-51,-146r25,0r38,116r39,-116r23,0r-50,146r0,106r-24,0r0,-106","w":129},"Z":{"d":"10,-16r77,-215r-73,0r0,-21r98,0r0,16r-77,215r77,0r0,21r-102,0r0,-16","w":121},"[":{"d":"27,-252r55,0r0,17r-34,0r0,265r34,0r0,17r-55,0r0,-299","w":94},"\\":{"d":"2,-276r20,0r78,311r-19,0","w":98},"]":{"d":"12,30r35,0r0,-265r-35,0r0,-17r56,0r0,299r-56,0r0,-17","w":94},"^":{"d":"54,-248r19,0r25,59r-17,0r-18,-40r-17,40r-17,0","w":127},"_":{"d":"-1,38r164,0r0,18r-164,0r0,-18","w":162},"`":{"d":"64,-253r22,-12r27,53r-14,0","w":180},"a":{"d":"31,-60v0,24,5,44,26,44v33,0,31,-41,30,-77v-25,-15,-56,-4,-56,33xm86,-26v-7,16,-15,29,-36,29v-31,-1,-39,-29,-41,-61v-3,-49,38,-74,78,-54v2,-32,-4,-60,-34,-59v-14,0,-25,3,-34,9r0,-22v40,-20,90,-3,90,49r0,135r-23,0r0,-26","w":124},"b":{"d":"72,-172v-48,11,-39,121,-13,150v36,16,44,-35,43,-77v0,-35,-6,-69,-30,-73xm125,-100v0,50,-6,97,-47,103v-23,-2,-31,-18,-38,-36r0,33r-23,0r0,-254r23,0r0,97v7,-18,15,-36,38,-36v40,0,47,48,47,93"},"c":{"d":"33,-98v0,49,19,97,60,71r0,22v-53,27,-82,-30,-82,-93v0,-57,28,-112,82,-88r0,23v-39,-26,-60,21,-60,65","w":101},"d":{"d":"64,-172v-39,5,-35,102,-21,135v6,13,12,19,21,19v31,0,33,-45,33,-82v0,-33,-4,-68,-33,-72xm96,-33v-7,18,-15,34,-38,36v-41,-7,-47,-53,-46,-103v1,-46,7,-88,46,-93v23,2,31,18,38,36r0,-97r23,0r0,254r-23,0r0,-33"},"e":{"d":"93,-104v5,-41,-24,-94,-51,-52v-7,11,-9,29,-9,52r60,0xm111,-9v-56,34,-107,-17,-101,-87v4,-48,11,-97,54,-97v43,0,53,54,51,108r-82,0v-4,53,38,84,75,55","w":125},"f":{"d":"24,-190v-5,-42,11,-74,52,-63r0,20v-26,-7,-33,15,-30,43r29,0r0,19r-29,0r0,171r-22,0r0,-171r-18,0r0,-19r18,0","w":78},"g":{"d":"64,-172v-43,7,-41,134,0,141v46,-10,46,-131,0,-141xm119,-9v4,56,-55,67,-100,49r0,-22v27,13,82,17,77,-27r0,-37v-7,18,-16,33,-38,36v-37,-7,-47,-46,-46,-93v0,-46,8,-84,46,-90v23,2,31,18,38,36r0,-33r23,0r0,181"},"h":{"d":"70,-174v-19,0,-30,21,-30,44r0,130r-23,0r0,-254r23,0r0,91v18,-53,79,-29,79,27r0,136r-23,0r0,-132v1,-23,-7,-42,-26,-42","w":134},"i":{"d":"19,-190r22,0r0,190r-22,0r0,-190xm18,-254r24,0r0,29r-24,0r0,-29","w":60},"j":{"d":"43,4v2,31,-20,49,-50,42r0,-19v20,4,28,-8,28,-28r0,-189r22,0r0,194xm20,-254r24,0r0,29r-24,0r0,-29","w":62},"k":{"d":"17,-254r23,0r0,160r47,-96r24,0r-39,77r42,113r-25,0r-32,-91r-17,32r0,59r-23,0r0,-254","w":120},"l":{"d":"19,-254r22,0r0,254r-22,0r0,-254","w":60},"m":{"d":"69,-174v-18,0,-29,21,-29,43r0,131r-23,0r0,-190r23,0r0,26v7,-14,17,-29,36,-29v21,-1,30,14,36,29v17,-49,82,-32,82,28r0,136r-22,0r0,-133v0,-22,-7,-41,-25,-41v-19,0,-30,20,-30,43r0,131r-22,0r0,-133v1,-22,-8,-41,-26,-41","w":210},"n":{"d":"70,-174v-19,0,-30,21,-30,44r0,130r-23,0r0,-190r23,0r0,27v18,-53,79,-29,79,27r0,136r-23,0r0,-132v1,-23,-7,-42,-26,-42","w":134},"o":{"d":"66,-172v-47,12,-39,120,-13,150v37,18,48,-36,46,-76v-1,-34,-4,-68,-33,-74xm66,-193v73,7,72,163,21,190v-51,27,-78,-37,-76,-95v2,-49,14,-89,55,-95","w":131},"p":{"d":"72,-172v-48,11,-39,121,-13,150v36,16,44,-35,43,-77v0,-35,-6,-69,-30,-73xm78,3v-23,-2,-31,-18,-38,-36r0,80r-23,0r0,-237r23,0r0,33v7,-18,15,-36,38,-36v43,0,47,54,47,103v0,46,-8,87,-47,93"},"q":{"d":"64,-172v-39,5,-35,102,-21,135v6,13,12,19,21,19v31,0,33,-45,33,-82v0,-33,-4,-68,-33,-72xm58,-193v23,2,31,18,38,36r0,-33r23,0r0,237r-23,0r0,-80v-7,18,-15,34,-38,36v-41,-7,-47,-53,-46,-103v1,-46,7,-88,46,-93"},"r":{"d":"80,-167v-64,2,-33,105,-40,167r-23,0r0,-190r23,0r0,27v5,-15,19,-32,40,-29r0,25","w":85},"s":{"d":"94,-44v2,45,-51,56,-86,38r0,-23v20,12,65,21,63,-14v-3,-45,-62,-53,-63,-105v-1,-40,44,-55,77,-38r0,22v-20,-12,-59,-13,-55,16v6,45,62,52,64,104","w":100},"t":{"d":"74,-1v-25,7,-51,-1,-51,-31r0,-139r-17,0r0,-19r17,0r0,-52r22,0r0,52r29,0r0,19r-29,0r0,134v-1,17,15,21,29,16r0,20","w":82},"u":{"d":"95,-26v-20,52,-79,28,-79,-28r0,-136r22,0r0,132v-1,23,7,41,27,41v19,0,31,-21,30,-43r0,-130r22,0r0,190r-22,0r0,-26","w":134},"v":{"d":"8,-190r23,0r32,153r33,-153r22,0r-44,191r-21,0","w":126},"w":{"d":"9,-190r24,0r26,149r27,-149r20,0r27,149r26,-149r23,0r-38,191r-21,0r-28,-145r-27,145r-21,0","w":191},"x":{"d":"48,-98r-38,-92r23,0r29,72r28,-72r22,0r-37,91r40,99r-24,0r-30,-78r-30,78r-23,0","w":123},"y":{"d":"52,-3r-44,-187r23,0r32,148r33,-148r22,0r-56,237r-22,0","w":126},"z":{"d":"8,-15r64,-156r-61,0r0,-19r85,0r0,15r-64,156r63,0r0,19r-87,0r0,-15","w":104},"{":{"d":"36,0v7,-38,32,-99,-29,-95r0,-17v26,1,40,-11,42,-33v-13,-47,-26,-114,42,-113r0,16v-52,2,-25,59,-21,94v2,22,-13,42,-36,44v51,7,32,67,23,106v0,19,14,31,34,31r0,16v-35,-1,-54,-17,-55,-49","w":99},"|":{"d":"31,-276r19,0r0,311r-19,0r0,-311","w":81},"}":{"d":"64,-208v-7,38,-31,98,29,95r0,17v-26,-1,-41,10,-42,33v13,47,26,114,-42,112r0,-16v52,-1,27,-60,21,-94v1,-24,14,-40,36,-43v-51,-7,-32,-67,-23,-106v0,-19,-13,-33,-34,-32r0,-16v34,2,54,18,55,50","w":100},"~":{"d":"96,-121v-3,17,-9,28,-22,31v-20,0,-35,-38,-43,-1r-14,-4v3,-15,8,-29,22,-30v17,-2,20,15,33,17v8,-1,7,-9,11,-17","w":113},"\u2122":{"d":"19,-238r-16,0r0,-14r48,0r0,14r-17,0r0,99r-15,0r0,-99xm65,-252r17,0r16,51r16,-51r17,0r0,113r-14,0r0,-86v-7,19,-11,41,-20,58r-18,-58r0,86r-14,0r0,-113","w":144},"\u2026":{"d":"16,-36r30,0r0,36r-30,0r0,-36xm82,-36r31,0r0,36r-31,0r0,-36xm148,-36r31,0r0,36r-31,0r0,-36","w":194},"\u2013":{"d":"14,-119r121,0r0,22r-121,0r0,-22","w":149},"\u2014":{"d":"14,-119r189,0r0,22r-189,0r0,-22","w":217},"\u201c":{"d":"15,-174v-1,-40,0,-72,34,-79r4,12v-15,6,-23,13,-21,31r13,0r0,36r-30,0xm68,-174v-1,-40,-1,-72,34,-79r4,12v-15,6,-23,14,-22,31r13,0r0,36r-29,0","w":113},"\u201d":{"d":"8,-185v16,-6,22,-14,22,-32r-13,0r0,-35r29,0v1,40,1,71,-34,78xm61,-185v15,-6,21,-14,21,-32r-13,0r0,-35r30,0v2,40,0,70,-34,78","w":113},"\u2018":{"d":"15,-174v-1,-40,0,-72,34,-79r4,12v-15,6,-23,13,-21,31r13,0r0,36r-30,0","w":61},"\u2019":{"d":"8,-185v16,-6,22,-14,22,-32r-13,0r0,-35r29,0v1,40,1,71,-34,78","w":61},"\u00a0":{"w":58}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * HTF Gotham  2001 The Hoefler Type Foundry, Inc. Info: www.typography.com
 * 
 * Manufacturer:
 * The Hoefler Type Foundry, Inc
 */
Cufon.registerFont({"w":137,"face":{"font-family":"Gotham HTF","font-weight":550,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 6 3 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-7 -278 219 55","underline-thickness":"7.2","underline-position":"-40.68","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":57},"!":{"d":"18,-44r41,0r0,44r-41,0r0,-44xm30,-75r-13,-177r42,0r-12,177r-17,0","w":76},"\"":{"d":"16,-252r36,0r-23,107r-13,0r0,-107xm69,-252r36,0r-23,107r-13,0r0,-107","w":111},"#":{"d":"79,-93r6,-68r-28,0r-6,68r28,0xm26,-61r-20,0r-1,-32r23,0r6,-68r-22,0r0,-32r25,0r5,-59r23,0r-5,59r28,0r5,-59r23,0r-5,59r20,0r0,32r-23,0r-5,68r22,0r0,32r-25,0r-5,61r-24,0r6,-61r-28,0r-5,61r-23,0","w":136},"$":{"d":"95,-119v33,31,27,106,-18,117r0,39r-26,0r0,-37v-16,0,-27,-6,-38,-11r0,-37v20,16,68,26,68,-12v0,-58,-68,-67,-70,-131v0,-31,16,-51,40,-59r0,-28r26,0r0,26v12,1,21,4,31,8r0,38v-25,-26,-79,-8,-56,32v9,17,33,38,43,55","w":125},"%":{"d":"149,-104v-22,3,-22,78,0,82v22,-3,22,-79,0,-82xm49,-230v-22,3,-22,78,0,82v21,-4,20,-78,0,-82xm149,-128v54,0,53,130,0,130v-30,-1,-40,-33,-39,-68v0,-32,11,-62,39,-62xm146,-252r22,0r-116,252r-22,0xm49,-254v54,1,53,130,0,130v-30,-1,-40,-33,-40,-68v0,-33,11,-61,40,-62","w":197},"&":{"d":"60,-116v-31,21,-25,109,24,83v5,-3,8,-8,12,-14xm72,-226v-32,3,-15,52,-3,69v13,-11,21,-24,20,-46v0,-13,-5,-24,-17,-23xm112,-23v-27,47,-112,24,-106,-42v3,-36,17,-56,39,-76v-28,-35,-35,-114,27,-114v31,0,49,21,48,54v-1,33,-16,50,-37,68r28,52v3,-13,5,-24,7,-40r28,5v-3,26,-7,47,-16,66r22,38r-26,16","w":153},"'":{"d":"16,-252r36,0r-23,107r-13,0r0,-107","w":57},"(":{"d":"92,-231v-61,37,-60,217,0,255r0,26v-106,-34,-102,-276,0,-307r0,26","w":100},")":{"d":"8,-257v107,31,103,278,0,307r0,-26v61,-39,62,-217,0,-255r0,-26","w":100},"*":{"d":"46,-187r-28,24r-12,-21r33,-15r-33,-15r12,-21r28,24r-5,-41r23,0r-5,41r28,-24r12,21r-33,15r33,15r-12,21r-28,-24r5,41r-23,0","w":105},"+":{"d":"60,-110r-52,0r0,-34r52,0r0,-58r33,0r0,58r52,0r0,34r-52,0r0,58r-33,0r0,-58","w":153},",":{"d":"7,37v18,-5,28,-17,26,-37r-18,0r0,-44r41,0v3,50,-3,90,-46,96","w":71},"-":{"d":"14,-127r85,0r0,34r-85,0r0,-34","w":113},"\u00ad":{"d":"14,-127r85,0r0,34r-85,0r0,-34","w":113},".":{"d":"15,-44r41,0r0,44r-41,0r0,-44","w":71},"\/":{"d":"76,-276r29,0r-79,311r-29,0","w":105},"0":{"d":"70,-223v-40,18,-24,123,-18,175v4,11,7,18,18,19v29,-12,24,-59,24,-102v0,-40,3,-81,-24,-92xm129,-132v0,65,-2,135,-59,135v-58,0,-60,-69,-60,-134v0,-62,5,-124,60,-124v54,0,59,62,59,123","w":139},"1":{"d":"32,-214r-26,11r0,-37v18,-7,34,-16,62,-13r0,253r-36,0r0,-214","w":86},"2":{"d":"13,-243v57,-38,117,21,84,95r-51,113r62,0r0,35r-100,0r0,-29r61,-139v9,-24,4,-52,-22,-51v-13,0,-25,5,-34,11r0,-35","w":116},"3":{"d":"108,-80v0,62,-44,97,-102,76r0,-34v31,16,70,2,67,-39v-2,-29,-19,-42,-47,-43r0,-24r44,-73r-62,0r0,-35r99,0r0,31r-45,75v28,9,46,27,46,66","w":116},"4":{"d":"76,-80r0,-109r-41,109r41,0xm76,-50r-70,0r0,-27r69,-176r34,0r0,173r21,0r0,30r-21,0r0,50r-33,0r0,-50","w":134},"5":{"d":"77,-82v4,-35,-21,-52,-49,-40r-18,-12r7,-118r85,0r0,34r-58,0r-4,62v48,-13,72,25,72,74v0,61,-43,98,-100,78r0,-35v32,19,70,-2,65,-43","w":119},"6":{"d":"90,-80v4,-40,-23,-66,-45,-40v3,34,-9,83,22,92v19,-2,21,-26,23,-52xm44,-148v40,-33,84,7,79,67v-4,46,-16,79,-56,85v-53,-5,-56,-63,-57,-124v-2,-79,20,-152,97,-128r0,34v-42,-21,-67,16,-63,66","w":131},"7":{"d":"68,-216r-61,0r0,-36r95,0r0,26r-48,226r-35,0","w":111},"8":{"d":"64,-117v-31,2,-31,90,0,92v33,-1,32,-91,0,-92xm64,-227v-28,1,-26,79,0,82v28,-2,30,-81,0,-82xm91,-134v45,24,41,137,-27,137v-67,0,-71,-113,-26,-137v-41,-22,-34,-121,26,-121v61,0,69,100,27,121","w":129},"9":{"d":"64,-224v-32,4,-34,104,1,106v10,0,15,-6,21,-11v-2,-38,8,-88,-22,-95xm121,-141v3,85,-19,165,-101,136r0,-34v17,10,44,13,56,-8v6,-11,10,-30,10,-55v-7,7,-16,14,-31,13v-38,-2,-47,-37,-47,-80v1,-45,14,-87,56,-87v52,0,55,57,57,115","w":131},":":{"d":"17,-44r41,0r0,44r-41,0r0,-44xm17,-192r41,0r0,44r-41,0r0,-44","w":74},";":{"d":"9,37v18,-5,28,-17,26,-37r-18,0r0,-44r41,0v3,50,-3,90,-46,96xm17,-192r41,0r0,44r-41,0r0,-44","w":74},"\u037e":{"d":"9,37v18,-5,28,-17,26,-37r-18,0r0,-44r41,0v3,50,-3,90,-46,96xm17,-192r41,0r0,44r-41,0r0,-44","w":74},"<":{"d":"11,-107r0,-39r104,-73r0,42r-74,50r74,51r0,41","w":128},"=":{"d":"18,-104r134,0r0,35r-134,0r0,-35xm18,-184r134,0r0,34r-134,0r0,-34","w":169},">":{"d":"13,-76r74,-50r-74,-51r0,-42r105,73r0,39r-105,72r0,-41","w":128},"?":{"d":"28,-44r41,0r0,44r-41,0r0,-44xm8,-244v60,-38,130,34,86,99v-8,10,-18,18,-31,24r-4,46r-23,0r-4,-63v21,-8,40,-21,40,-49v0,-34,-43,-43,-64,-25r0,-32","w":113},"@":{"d":"119,-154v-28,8,-36,68,-28,99v2,3,5,5,9,5v24,-8,32,-48,33,-81v1,-13,-5,-22,-14,-23xm168,32v-19,11,-32,18,-61,17v-69,-3,-97,-54,-97,-126v0,-90,33,-179,119,-179v60,0,89,49,89,111v0,54,-11,114,-59,120v-21,3,-32,-14,-33,-32v-9,14,-18,31,-37,31v-20,0,-32,-19,-31,-43v1,-53,13,-103,55,-114v16,1,23,13,26,27r5,-23r28,5r-19,116v0,12,4,17,12,17v33,-11,38,-62,38,-105v0,-54,-21,-96,-75,-96v-77,0,-104,86,-104,166v0,63,25,112,85,112v22,0,37,-6,53,-15","w":228},"A":{"d":"90,-88r-18,-101r-19,101r37,0xm53,-253r38,0r50,253r-36,0r-10,-56r-47,0r-10,56r-35,0","w":144},"B":{"d":"97,-71v0,-28,-17,-43,-46,-41r0,79v27,1,46,-13,46,-38xm94,-182v0,-26,-16,-38,-43,-37r0,76v27,1,43,-12,43,-39xm132,-71v2,63,-51,75,-117,71r0,-252v62,-3,114,6,114,65v0,32,-16,50,-39,58v24,9,42,25,42,58","w":139},"C":{"d":"110,-6v-72,30,-100,-44,-100,-124v0,-73,27,-142,99,-118r0,37v-49,-28,-63,33,-63,89v0,53,14,109,64,81r0,35","w":120},"D":{"d":"103,-122v0,-50,-4,-97,-52,-98r0,188v45,-1,52,-43,52,-90xm139,-130v0,90,-31,140,-124,130r0,-252v89,-9,124,35,124,122","w":148},"E":{"d":"15,-252r93,0r0,33r-57,0r0,75r51,0r0,34r-51,0r0,77r58,0r0,33r-94,0r0,-252","w":118},"F":{"d":"15,-252r89,0r0,33r-53,0r0,77r47,0r0,34r-47,0r0,108r-36,0r0,-252","w":111},"G":{"d":"131,-8v-79,34,-121,-32,-121,-122v0,-80,38,-143,115,-117r0,38v-50,-33,-85,20,-79,88v4,46,6,94,53,89r0,-75r-27,0r0,-32r59,0r0,131","w":144},"H":{"d":"15,-252r36,0r0,108r50,0r0,-108r35,0r0,252r-35,0r0,-110r-50,0r0,110r-36,0r0,-252","w":151},"I":{"d":"17,-252r35,0r0,252r-35,0r0,-252","w":68},"J":{"d":"86,-57v3,47,-36,68,-80,56r0,-35v19,8,44,4,44,-23r0,-193r36,0r0,195","w":99},"K":{"d":"15,-252r36,0r0,117r45,-117r41,0r-47,109r49,143r-39,0r-36,-103r-13,32r0,71r-36,0r0,-252","w":141},"L":{"d":"15,-252r36,0r0,219r51,0r0,33r-87,0r0,-252","w":106},"M":{"d":"15,-252r36,0r36,107r36,-107r36,0r0,252r-34,0r0,-172r-39,111r-37,-111r0,172r-34,0r0,-252","w":174},"N":{"d":"15,-252r34,0r55,153r0,-153r34,0r0,252r-32,0r-56,-158r0,158r-35,0r0,-252","w":153},"O":{"d":"75,-223v-42,8,-31,135,-21,173v4,14,13,21,21,21v29,-8,29,-54,29,-102v0,-48,-2,-83,-29,-92xm140,-131v0,66,-6,134,-65,134v-59,0,-65,-68,-65,-134v0,-62,9,-124,65,-124v56,0,65,62,65,124","w":149},"P":{"d":"95,-167v1,-35,-12,-53,-44,-52r0,103v31,0,44,-19,44,-51xm131,-169v-1,54,-28,84,-80,86r0,83r-36,0r0,-252v72,-6,117,16,116,83","w":136},"Q":{"d":"46,-131v0,49,-2,95,31,102v17,0,11,-11,2,-19r-11,-11r17,-19r15,16v5,-48,15,-151,-25,-161v-27,8,-29,45,-29,92xm75,-255v83,0,72,155,50,220r22,22r-18,19r-18,-19v-10,11,-22,16,-36,16v-59,0,-65,-68,-65,-134v0,-62,9,-124,65,-124","w":149},"R":{"d":"97,-171v1,-32,-13,-50,-46,-48r0,95v32,1,46,-15,46,-47xm132,-174v0,35,-12,58,-33,70r38,104r-38,0r-34,-92r-14,0r0,92r-36,0r0,-252v70,-5,117,11,117,78","w":141},"S":{"d":"112,-60v0,57,-60,76,-103,51r0,-37v21,19,80,22,67,-23v-14,-46,-66,-64,-69,-124v-2,-53,53,-75,96,-53r0,38v-19,-16,-61,-19,-61,14v0,56,70,67,70,134","w":117},"T":{"d":"39,-219r-34,0r0,-33r103,0r0,33r-33,0r0,219r-36,0r0,-219","w":113},"U":{"d":"135,-71v0,45,-20,73,-60,74v-44,0,-61,-31,-61,-74r0,-181r36,0r0,184v-1,22,7,38,25,38v18,0,25,-16,25,-38r0,-184r35,0r0,181","w":149},"V":{"d":"3,-252r37,0r29,182r30,-182r35,0r-47,253r-37,0"},"W":{"d":"4,-252r37,0r23,174r27,-174r33,0r28,174r23,-174r36,0r-40,253r-37,0r-27,-171r-27,171r-36,0","w":215},"X":{"d":"47,-130r-41,-122r38,0r25,81r25,-81r36,0r-40,122r43,130r-38,0r-27,-89r-27,89r-37,0"},"Y":{"d":"49,-102r-48,-150r37,0r29,103r31,-103r36,0r-49,150r0,102r-36,0r0,-102","w":134},"Z":{"d":"9,-27r66,-192r-63,0r0,-33r101,0r0,27r-65,192r65,0r0,33r-104,0r0,-27","w":122},"[":{"d":"24,-252r65,0r0,25r-35,0r0,249r35,0r0,25r-65,0r0,-299","w":99},"\\":{"d":"1,-276r29,0r78,311r-29,0","w":105},"]":{"d":"11,22r34,0r0,-249r-34,0r0,-25r64,0r0,299r-64,0r0,-25","w":99},"^":{"d":"65,-249r28,0r26,65r-23,0r-17,-44r-17,44r-23,0","w":158},"_":{"d":"-1,28r164,0r0,27r-164,0r0,-27","w":162},"`":{"d":"58,-256r27,-14r32,58r-21,0","w":180},"a":{"d":"40,-61v-8,42,41,45,39,8r0,-35v-20,-11,-43,-2,-39,27xm78,-23v-7,15,-13,26,-33,26v-29,-1,-39,-29,-39,-62v0,-48,34,-74,73,-54v2,-28,-4,-51,-30,-49v-14,0,-22,5,-33,9r0,-33v44,-20,97,-2,97,55r0,131r-35,0r0,-23","w":125},"b":{"d":"71,-163v-31,7,-26,90,-16,118v4,10,9,16,16,16v33,-10,31,-124,0,-134xm127,-103v0,50,0,102,-43,106v-22,2,-28,-16,-36,-30r0,27r-34,0r0,-254r34,0r0,90v8,-14,15,-31,36,-31v39,0,43,46,43,92"},"c":{"d":"44,-101v-6,46,17,89,51,62r0,35v-58,25,-86,-31,-86,-96v0,-59,28,-109,86,-89r0,35v-33,-21,-56,13,-51,53","w":102},"d":{"d":"66,-163v-31,7,-25,90,-16,118v3,10,9,16,16,16v35,-9,34,-125,0,-134xm89,-28v-7,14,-15,31,-35,31v-43,0,-44,-56,-44,-106v0,-45,4,-92,44,-92v20,0,27,17,35,30r0,-89r34,0r0,254r-34,0r0,-28"},"e":{"d":"86,-108v3,-34,-17,-77,-36,-42v-4,9,-8,23,-8,42r44,0xm114,-10v-57,37,-111,-14,-105,-89v4,-50,12,-96,56,-96v45,0,56,57,53,115r-75,0v-4,47,40,64,68,38","w":125},"f":{"d":"19,-192v-6,-44,18,-72,60,-61r0,29v-20,-5,-27,10,-25,32r24,0r0,29r-24,0r0,163r-35,0r0,-163r-14,0r0,-29r14,0","w":81},"g":{"d":"66,-163v-31,7,-32,112,0,119v34,-6,33,-113,0,-119xm123,-13v5,59,-58,70,-105,54r0,-32v25,10,75,16,71,-24r0,-27v-8,15,-15,31,-36,31v-39,0,-43,-49,-43,-93v0,-44,5,-91,43,-91v21,0,29,16,36,30r0,-27r34,0r0,179"},"h":{"d":"69,-165v-13,2,-21,14,-21,31r0,134r-34,0r0,-254r34,0r0,87v18,-51,75,-26,75,25r0,142r-34,0r0,-135v0,-18,-5,-29,-20,-30","w":135},"i":{"d":"15,-192r34,0r0,192r-34,0r0,-192xm14,-254r36,0r0,37r-36,0r0,-37","w":64},"j":{"d":"50,2v3,36,-24,52,-57,44r0,-27v16,1,24,-5,23,-21r0,-190r34,0r0,194xm16,-254r35,0r0,37r-35,0r0,-37","w":65},"k":{"d":"14,-254r34,0r0,145r36,-83r37,0r-36,78r36,114r-38,0r-23,-81v-13,18,-13,49,-12,81r-34,0r0,-254","w":125},"l":{"d":"15,-254r34,0r0,254r-34,0r0,-254","w":64},"m":{"d":"69,-165v-13,0,-21,14,-21,31r0,134r-34,0r0,-192r34,0r0,25v7,-14,18,-27,36,-28v19,-1,27,12,33,25v17,-40,78,-28,78,29r0,141r-34,0r0,-135v0,-20,-7,-30,-19,-30v-13,0,-20,13,-20,31r0,134r-35,0r0,-135v0,-20,-6,-30,-18,-30","w":208},"n":{"d":"69,-165v-13,2,-21,14,-21,31r0,134r-34,0r0,-192r34,0r0,25v18,-51,75,-26,75,25r0,142r-34,0r0,-135v0,-18,-5,-29,-20,-30","w":135},"o":{"d":"67,-164v-32,6,-25,92,-17,121v3,11,10,16,17,16v35,-9,34,-128,0,-137xm125,-100v0,53,-10,103,-58,103v-48,0,-58,-50,-58,-103v0,-48,13,-95,58,-95v45,0,57,45,58,95","w":134},"p":{"d":"71,-163v-31,7,-26,90,-16,118v4,10,9,16,16,16v33,-10,31,-124,0,-134xm84,3v-22,2,-28,-16,-36,-30r0,74r-34,0r0,-239r34,0r0,28v8,-14,15,-31,36,-31v43,0,43,56,43,106v0,46,-4,88,-43,92"},"q":{"d":"66,-163v-31,7,-25,90,-16,118v3,10,9,16,16,16v35,-9,34,-125,0,-134xm54,-195v20,0,27,17,35,30r0,-27r34,0r0,239r-34,0r0,-75v-7,14,-15,31,-35,31v-43,0,-44,-56,-44,-106v0,-45,4,-92,44,-92"},"r":{"d":"83,-153v-59,2,-27,99,-35,153r-34,0r0,-192r34,0r0,25v5,-15,15,-27,35,-27r0,41","w":88},"s":{"d":"97,-49v0,49,-53,63,-90,43r0,-34v15,11,56,23,56,-7v0,-40,-57,-50,-57,-98v0,-44,44,-58,82,-44r0,34v-14,-9,-50,-15,-49,9v10,40,58,47,58,97","w":101},"t":{"d":"78,-3v-24,12,-59,3,-59,-30r0,-130r-13,0r0,-29r13,0r0,-50r35,0r0,50r24,0r0,29r-24,0r0,119v-2,16,13,17,24,13r0,28","w":85},"u":{"d":"87,-24v-18,50,-74,24,-74,-26r0,-142r34,0r0,135v0,17,5,30,19,30v14,0,21,-13,21,-31r0,-134r35,0r0,192r-35,0r0,-24","w":135},"v":{"d":"5,-192r35,0r25,137r25,-137r33,0r-41,193r-34,0","w":128},"w":{"d":"6,-192r35,0r19,125r21,-125r28,0r21,125r20,-125r34,0r-35,193r-33,0r-21,-121r-21,121r-33,0","w":190},"x":{"d":"42,-99r-36,-93r36,0r21,64r22,-64r35,0r-36,93r37,99r-36,0r-22,-68r-23,68r-35,0","w":126},"y":{"d":"47,-5r-41,-187r34,0r24,128r25,-128r34,0r-55,239r-33,0","w":128},"z":{"d":"6,-24r56,-139r-54,0r0,-29r91,0r0,24r-57,139r56,0r0,29r-92,0r0,-24","w":104},"{":{"d":"77,-59v-7,32,-27,84,20,86r0,23v-38,-1,-61,-18,-62,-55v6,-34,27,-89,-27,-85r0,-27v90,3,-36,-137,89,-140r0,23v-46,2,-28,54,-20,86v0,26,-16,41,-40,44v24,3,40,19,40,45","w":105},"|":{"d":"30,-276r27,0r0,311r-27,0r0,-311","w":86},"}":{"d":"99,-90v-90,-2,36,136,-89,140r0,-23v46,-2,28,-55,20,-86v-1,-26,17,-42,40,-45v-23,-3,-43,-18,-40,-44v4,-33,27,-84,-20,-86r0,-23v38,0,62,17,62,54v0,35,-28,89,27,86r0,27","w":106},"~":{"d":"110,-127v-2,20,-11,36,-28,36v-21,0,-42,-34,-48,1r-19,-6v2,-20,12,-33,27,-36v21,1,42,35,49,0","w":124},"\u2122":{"d":"19,-233r-15,0r0,-19r50,0r0,19r-15,0r0,94r-20,0r0,-94xm67,-252r21,0r14,43r14,-43r21,0r0,113r-19,0r0,-76r-16,49r-16,-49r0,76r-19,0r0,-113","w":150},"\u2026":{"d":"17,-44r42,0r0,44r-42,0r0,-44xm97,-44r42,0r0,44r-42,0r0,-44xm177,-44r42,0r0,44r-42,0r0,-44","w":235},"\u2013":{"d":"14,-127r130,0r0,34r-130,0r0,-34","w":158},"\u2014":{"d":"14,-127r204,0r0,34r-204,0r0,-34","w":232},"\u201c":{"d":"15,-157v-3,-50,2,-90,45,-96r4,15v-18,5,-28,18,-27,37r19,0r0,44r-41,0xm77,-157v-3,-50,2,-90,45,-96r4,15v-18,5,-28,18,-27,37r19,0r0,44r-41,0","w":134},"\u201d":{"d":"9,-171v17,-4,28,-16,26,-37r-18,0r0,-44r41,0v3,50,-2,90,-45,96xm71,-171v17,-4,28,-16,26,-37r-18,0r0,-44r41,0v3,50,-2,90,-45,96","w":134},"\u2018":{"d":"15,-157v-3,-50,2,-90,45,-96r4,15v-18,5,-28,18,-27,37r19,0r0,44r-41,0","w":72},"\u2019":{"d":"9,-171v17,-4,28,-16,26,-37r-18,0r0,-44r41,0v3,50,-2,90,-45,96","w":72},"\u00a0":{"w":57}}});



jQuery.noConflict();
jQuery(document).ready(function($) {
	var secondLevel = jQuery('#nav li ul li a');
	jQuery('ul#nav li a').not(secondLevel).addClass('cufoned');
	Cufon.replace('#nav li a.cufoned', {hover:true});

	if(document.getElementById('slider') != null)  {
		jQuery("#sliding").scrollable({ 
			  onSeek: function() { 
        Cufon.refresh('#slider h1');
    }, 
 clickable:false,
 loop:true,
 items: '#sliding ul',
 speed:200,
    size: 1
 
});
	}
	jQuery('#nav li ul li:last').addClass('last');
	jQuery('#nav li').hover(function() {
		$(this).addClass('sfhover');
		}, function() {
			$(this).removeClass('sfhover');
			});
	jQuery('#locations li').hover(function() {
		$(this).addClass('sfhover');
		}, function() {
			$(this).removeClass('sfhover');
			});
	
	
	});

Cufon.replace('#footer-nav', {hover:true});

if(document.getElementById('random-quote') != null)  {Cufon.replace('#random-quote .quote');}
Cufon.replace('#contact li.phone');
if(document.getElementsByTagName('h1') != null)  {Cufon.replace('h1',  {hover:true});}
if(document.getElementsByTagName('h2') != null)  {Cufon.replace('h2',  {hover:true});}
if(document.getElementsByTagName('h3') != null)  {Cufon.replace('#main h3',  {hover:true});}
if(document.getElementsByTagName('h4') != null)  {Cufon.replace('#content h4',  {hover:true});}
if(document.getElementsByClassName('tags') != null)  {Cufon.replace('p.tags strong');}
if(document.getElementsByClassName('comment-number') != null)  {Cufon.replace('.comment-number a');}
if(document.getElementsByClassName('tags') != null)  {Cufon.replace('.meta');}









