/*
 * 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:
 * Copyright (C) 2004 Hoefler & Frere-Jones Typography, Inc. www.typography.com
 */
Cufon.registerFont({"w":189,"face":{"font-family":"Whitney","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-13 -288 354 72","underline-thickness":"7.2","underline-position":"-44.28","stemh":"31","stemv":"32","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":79},"!":{"d":"68,-248r-9,170r-20,4r-9,-174r38,0xm67,0r-36,0r0,-43r36,0r0,43","w":97},"\"":{"d":"125,-243r-9,75r-19,-5r-9,-70r37,0xm59,-243r-9,75r-19,-5r-8,-70r36,0","w":147},"#":{"d":"79,-62r-10,65r-25,-6r10,-59r-39,0r0,-27r43,0r10,-65r-41,0r-5,-27r50,0r10,-63r26,0r-10,63r61,0r10,-65r24,6r-9,59r39,0r0,27r-43,0r-10,65r41,0r5,27r-51,0r-10,63r-25,0r10,-63r-61,0xm94,-154r-11,65r61,0r10,-65r-60,0","w":237},"$":{"d":"126,-242v14,3,27,6,37,11r-5,30v-10,-6,-23,-12,-37,-15r-12,79v95,18,81,145,-21,138r-7,43r-23,-5r6,-40v-20,-3,-37,-8,-49,-14r4,-31v15,9,32,16,50,19r13,-88v-43,-15,-61,-31,-61,-66v0,-43,34,-65,81,-64r5,-27r23,6xm91,-25v64,3,73,-66,13,-83xm99,-219v-31,-2,-50,12,-49,35v0,19,9,28,37,39"},"%":{"d":"133,-175v0,45,-25,72,-58,72v-33,0,-59,-27,-59,-72v0,-45,26,-71,59,-71v33,0,58,26,58,71xm252,-240r-155,243r-25,-7r155,-242xm105,-175v0,-27,-9,-49,-30,-49v-22,0,-31,22,-31,49v0,27,10,49,31,49v22,0,30,-22,30,-49xm308,-69v0,45,-26,72,-59,72v-33,0,-59,-27,-59,-72v0,-45,26,-71,59,-71v33,0,59,26,59,71xm280,-69v0,-27,-10,-49,-31,-49v-22,0,-30,22,-30,49v0,27,9,49,30,49v22,0,31,-22,31,-49","w":324},"&":{"d":"246,-6r-35,8r-36,-35v-35,56,-162,52,-162,-29v0,-36,23,-60,56,-76v-44,-38,-29,-116,43,-115v24,0,44,6,61,15r-5,34v-28,-22,-87,-34,-90,10v8,46,66,79,93,113v8,-17,13,-38,17,-63r30,6v-5,30,-14,56,-26,78xm154,-54r-65,-64v-55,18,-59,91,6,94v23,0,42,-10,59,-30","w":245},"\u2019":{"d":"66,-248r-29,83r-18,-4r10,-79r37,0","w":81},"(":{"d":"131,27r-31,7v-105,-79,-103,-230,14,-295r5,30v-89,69,-81,182,12,258","w":146},")":{"d":"46,-260v106,79,103,230,-14,296r-5,-31v89,-69,81,-182,-12,-258","w":146},"*":{"d":"129,-205r-39,19r21,38r-9,7r-30,-32r-30,32r-9,-7r21,-38r-39,-19r3,-10r43,7r5,-42r12,0r5,42r43,-7","w":144},"+":{"d":"186,-108r-69,0r0,71r-28,0r0,-71r-70,0r0,-27r70,0r0,-72r28,0r0,72r69,0r0,27","w":205},",":{"d":"65,-43r-38,91r-17,-4r18,-87r37,0","w":81},"-":{"d":"108,-87r-89,0r0,-31r89,0r0,31","w":127},".":{"d":"59,0r-36,0r0,-43r36,0r0,43","w":81},"\/":{"d":"185,-246r-170,292r-28,-6r170,-292","w":192},"0":{"d":"204,-122v0,81,-37,127,-92,127v-56,0,-94,-46,-94,-127v0,-81,38,-126,94,-126v55,0,92,45,92,126xm171,-122v0,-63,-22,-98,-59,-98v-37,0,-61,35,-61,98v0,63,24,98,61,98v37,0,59,-35,59,-98","w":222},"1":{"d":"94,0r-32,0r0,-210r-50,19r-4,-26v28,-10,45,-31,86,-27r0,244","w":128},"2":{"d":"175,0r-159,0r0,-25r90,-94v22,-23,32,-38,32,-58v-2,-60,-84,-45,-111,-12r-5,-32v40,-43,153,-34,149,42v-4,61,-79,109,-113,150r112,0","w":192},"3":{"d":"119,-128v83,25,54,133,-37,133v-26,0,-51,-7,-70,-19r5,-32v33,28,116,36,118,-20v1,-33,-28,-49,-77,-47r-5,-29v43,3,78,-9,78,-41v0,-49,-86,-41,-110,-12r-5,-31v19,-14,40,-22,70,-22v93,0,101,101,33,120","w":185},"4":{"d":"203,-55r-39,0r0,55r-30,0r0,-55r-121,0r0,-24r113,-165r38,0r0,162r39,0r0,27xm134,-82r0,-126r-87,126r87,0","w":212},"5":{"d":"175,-76v0,81,-106,99,-160,62r6,-31v35,30,122,34,122,-30v0,-45,-59,-56,-93,-38r-24,-6r8,-124r128,0r5,28r-106,0r-5,71v54,-19,119,9,119,68"},"6":{"d":"52,-130v48,-37,137,-19,137,55v0,46,-36,80,-84,80v-51,0,-87,-36,-87,-103v0,-84,55,-131,132,-150r4,29v-50,13,-91,37,-102,89xm49,-99v0,46,23,75,58,75v30,0,50,-18,50,-49v0,-58,-77,-59,-108,-26","w":203},"7":{"d":"174,-218r-98,221r-31,-8r93,-209r-121,0r-4,-29r161,0r0,25","w":190},"8":{"d":"111,-139v45,-18,55,-81,-8,-82v-30,0,-46,16,-46,35v0,22,15,31,54,47xm94,-116v-58,17,-62,94,9,93v32,0,53,-16,53,-40v0,-26,-16,-34,-62,-53xm67,-128v-66,-23,-48,-120,36,-120v47,0,77,26,77,61v0,27,-20,46,-43,59v32,15,51,31,51,66v0,37,-33,67,-86,67v-101,2,-111,-104,-35,-133","w":204},"9":{"d":"150,-109v-51,36,-136,17,-136,-58v0,-47,35,-81,83,-81v51,0,88,36,88,103v0,84,-56,133,-135,150r-5,-29v50,-11,92,-35,105,-85xm46,-169v0,59,80,61,108,26v0,-46,-23,-77,-58,-77v-30,0,-50,19,-50,51","w":203},":":{"d":"60,-129r-36,0r0,-43r36,0r0,43xm60,0r-36,0r0,-43r36,0r0,43","w":84},";":{"d":"63,-129r-36,0r0,-43r36,0r0,43xm64,-43r-37,91r-18,-4r18,-87r37,0","w":84},"<":{"d":"181,-30r-160,-79r0,-25r160,-80r0,31r-127,61r127,61r0,31","w":205},"=":{"d":"186,-148r-160,0r0,-28r160,0r0,28xm186,-67r-160,0r0,-29r160,0r0,29","w":212},">":{"d":"185,-109r-161,79r0,-30r128,-61r-128,-62r0,-31r161,80r0,25","w":205},"?":{"d":"167,-189v0,39,-26,56,-69,75r-3,36r-21,4r-5,-59v31,-11,68,-29,64,-55v-7,-53,-87,-34,-112,-5r-5,-33v43,-41,151,-37,151,37xm102,0r-36,0r0,-43r36,0r0,43","w":186},"@":{"d":"171,-70r10,-62v-38,-15,-67,15,-67,65v0,45,36,26,57,-3xm173,-47v-18,21,-32,29,-49,29v-19,0,-38,-13,-38,-45v2,-78,60,-113,125,-86r-13,91v0,14,9,23,24,23v25,0,44,-26,44,-74v0,-69,-44,-104,-102,-104v-71,0,-130,61,-130,146v0,106,107,125,182,87r2,13v-21,10,-48,17,-82,17v-72,0,-118,-41,-118,-116v0,-87,65,-160,148,-160v70,0,116,46,116,117v0,55,-25,91,-65,91v-22,0,-39,-10,-44,-29","w":300},"A":{"d":"237,-5r-33,8r-29,-78r-102,0r-28,75r-35,0r98,-249r33,0xm164,-104r-40,-105r-40,105r80,0","w":247},"B":{"d":"181,-73v0,71,-74,77,-151,73r0,-248r60,0v87,-8,105,89,45,116v28,8,46,26,46,59xm137,-183v4,-32,-35,-40,-74,-37r0,76v40,3,77,-7,74,-39xm148,-72v0,-39,-39,-47,-85,-44r0,87v44,3,85,-3,85,-43","w":196},"C":{"d":"210,-19v-78,57,-190,6,-190,-105v0,-107,104,-161,186,-109r-5,35v-56,-48,-146,-20,-146,74v0,96,91,120,150,73","w":232},"D":{"d":"233,-125v0,74,-48,125,-133,125r-70,0r0,-248r72,0v86,0,131,50,131,123xm198,-124v0,-77,-54,-101,-134,-94r0,187v80,6,135,-15,134,-93","w":253},"E":{"d":"167,0r-137,0r0,-248r134,0r0,31r-100,0r0,72r77,0r6,31r-83,0r0,83r103,0r0,31","w":180},"F":{"d":"159,-217r-95,0r0,76r75,0r5,30r-80,0r0,111r-34,0r0,-248r129,0r0,31","w":172},"G":{"d":"225,-19v-21,14,-51,24,-84,24v-79,0,-121,-52,-121,-129v0,-77,44,-129,118,-129v33,0,56,8,75,21r-5,35v-18,-14,-41,-25,-70,-25v-54,0,-83,38,-83,98v0,81,72,118,136,85r0,-66r-57,0r-5,-31r96,0r0,117","w":250},"H":{"d":"223,0r-34,0r0,-114r-125,0r0,114r-34,0r0,-248r34,0r0,103r125,0r0,-103r34,0r0,248","w":253},"I":{"d":"66,0r-34,0r0,-248r34,0r0,248","w":97},"J":{"d":"105,-61v2,52,-43,72,-92,61r-5,-30v29,7,64,4,64,-34r0,-184r33,0r0,187","w":133},"K":{"d":"216,-5r-35,8r-117,-129r0,126r-34,0r0,-248r34,0r0,111r105,-111r41,0r-110,115","w":219},"L":{"d":"158,0r-128,0r0,-248r34,0r0,217r89,0","w":168},"M":{"d":"301,0r-33,0r-15,-198r-79,199r-25,0r-79,-199r-15,198r-32,0r20,-248r42,0r77,203r78,-203r41,0","w":324},"N":{"d":"223,0r-25,0r-137,-193r0,193r-31,0r0,-248r30,0r132,186r0,-186r31,0r0,248","w":253},"O":{"d":"249,-125v0,77,-45,130,-115,130v-70,0,-114,-52,-114,-129v0,-77,45,-129,115,-129v70,0,114,51,114,128xm214,-124v0,-60,-31,-98,-80,-98v-49,0,-79,38,-79,98v0,60,30,98,79,98v49,0,80,-38,80,-98","w":268},"P":{"d":"180,-177v0,60,-49,81,-116,76r0,101r-34,0r0,-248v75,-4,150,0,150,71xm146,-176v0,-39,-38,-46,-82,-43r0,88v45,3,82,-4,82,-45","w":192},"Q":{"d":"249,-125v0,63,-31,106,-77,121r71,26r-6,29r-135,-50v-54,-20,-82,-62,-82,-125v0,-77,45,-129,115,-129v70,0,114,51,114,128xm214,-124v0,-60,-31,-98,-80,-98v-49,0,-79,38,-79,98v0,60,30,100,79,100v49,0,80,-40,80,-100","w":268},"R":{"d":"146,-176v0,-39,-38,-47,-82,-43r0,86v43,3,82,-4,82,-43xm126,-109r73,104r-34,8r-76,-108r-25,0r0,105r-34,0r0,-248v75,-4,150,-1,150,70v0,37,-22,60,-54,69","w":205},"S":{"d":"167,-67v0,72,-96,85,-148,54r5,-35v27,23,108,37,110,-16v0,-23,-11,-32,-48,-49v-47,-21,-64,-37,-64,-73v0,-63,87,-80,132,-51r-6,34v-22,-24,-93,-27,-93,15v0,19,9,28,47,45v48,22,65,39,65,76","w":184},"T":{"d":"206,-217r-81,0r0,217r-34,0r0,-217r-79,0r0,-31r189,0","w":216},"U":{"d":"221,-96v0,63,-38,101,-98,101v-60,0,-96,-39,-96,-99r0,-154r34,0v8,87,-32,221,62,222v95,2,57,-136,64,-222r34,0r0,152","w":248},"V":{"d":"233,-248r-97,249r-30,0r-96,-245r34,-7r78,207r76,-204r35,0","w":243},"W":{"d":"354,-248r-75,248r-29,0r-67,-201r-67,201r-29,0r-73,-244r33,-7r56,198r64,-195r34,0r63,195r55,-195r35,0","w":366},"X":{"d":"96,-129r-77,-115r34,-7r62,94r59,-91r37,0r-78,117r85,126r-34,8r-70,-106r-68,103r-37,0","w":228},"Y":{"d":"221,-248r-90,149r0,99r-34,0r0,-99r-88,-145r34,-7r71,121r70,-118r37,0","w":228},"Z":{"d":"203,0r-186,0r0,-25r142,-194r-131,0r-5,-29r176,0r0,25r-141,193r140,0","w":217},"[":{"d":"131,37r-100,0r0,-285r98,0r0,24r-67,0r0,237r65,0","w":147},"\\":{"d":"206,40r-29,6r-169,-291r28,-6","w":192},"]":{"d":"116,37r-98,0r0,-24r67,0r0,-237r-65,0r-4,-24r100,0r0,285","w":147},"^":{"d":"131,-199r-18,3r-32,-26v-15,10,-21,29,-50,25r36,-51r30,0","w":163},"_":{"d":"164,37r-165,0r0,-25r165,0r0,25","w":163},"\u2018":{"d":"63,-247r-10,80r-38,0r30,-84","w":81},"a":{"d":"155,0r-26,0r-3,-23v-23,35,-111,40,-111,-21v0,-43,36,-60,108,-68v5,-54,-61,-36,-92,-21r-4,-28v43,-21,128,-26,128,41r0,120xm123,-47r0,-40v-63,6,-77,23,-77,41v0,38,60,22,77,-1","w":179},"b":{"d":"176,-91v0,93,-79,107,-151,82r0,-246r32,-5r0,108v41,-43,119,-25,119,61xm144,-89v0,-69,-59,-71,-87,-30r0,88v44,16,87,2,87,-58","w":191},"c":{"d":"154,-15v-57,42,-139,13,-139,-71v0,-85,83,-108,137,-73r-4,31v-38,-33,-100,-26,-100,42v0,68,60,78,101,42","w":168},"d":{"d":"168,0r-25,0r-4,-25v-38,50,-124,35,-124,-56v0,-82,60,-108,121,-85r0,-89r32,-5r0,260xm136,-55r0,-82v-42,-23,-88,-9,-88,55v0,70,62,70,88,27","w":193},"e":{"d":"91,-175v52,1,75,40,73,93r-116,0v-1,73,75,68,111,34r5,29v-54,42,-149,30,-149,-67v0,-55,33,-89,76,-89xm132,-107v-3,-56,-77,-59,-83,0r83,0","w":179},"f":{"d":"107,-227v-19,-3,-41,-2,-41,21r0,34r35,0r4,27r-39,0r0,145r-31,0r0,-145r-26,0r0,-27r26,0v-6,-56,10,-95,67,-84","w":111},"g":{"d":"108,-5v-31,-14,-71,-1,-71,24v0,14,18,23,51,23v55,0,75,-38,20,-47xm119,-116v0,-21,-14,-36,-35,-36v-22,0,-35,17,-35,38v0,20,14,35,35,35v22,0,35,-16,35,-37xm128,-161r43,-13r5,29r-33,3v24,46,-18,95,-72,84v-14,17,-13,18,28,24v37,6,71,16,71,47v0,36,-39,53,-84,53v-78,0,-110,-59,-44,-89v-18,-14,-11,-30,8,-41v-19,-9,-32,-29,-32,-52v-2,-55,71,-75,110,-45","w":181},"h":{"d":"165,0r-32,0r0,-117v-2,-47,-56,-30,-76,-2r0,119r-32,0r0,-255r32,-5r0,111v26,-34,108,-40,108,24r0,125"},"i":{"d":"64,-226v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-11,10,-21,21,-21v11,0,20,10,20,21xm60,0r-32,0r0,-172r32,0r0,172","w":87},"j":{"d":"64,-226v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-11,10,-21,21,-21v11,0,20,10,20,21xm60,22v1,37,-28,49,-61,42r-4,-28v16,3,33,2,33,-17r0,-191r32,0r0,194","w":87},"k":{"d":"168,-3r-34,6r-77,-93r0,90r-32,0r0,-255r32,-5r0,160r67,-72r38,0r-72,76","w":173},"l":{"d":"60,0r-32,0r0,-255r32,-5r0,260","w":87},"m":{"d":"269,0r-32,0r0,-117v-1,-47,-55,-30,-74,-2r0,119r-32,0r0,-117v-1,-47,-55,-30,-74,-2r0,119r-32,0r0,-172r26,0r4,25v23,-30,91,-43,105,0v26,-36,109,-42,109,22r0,125","w":293},"n":{"d":"165,0r-32,0r0,-117v-2,-47,-56,-30,-76,-2r0,119r-32,0r0,-172r26,0r4,25v28,-36,110,-42,110,22r0,125"},"o":{"d":"174,-86v0,57,-34,90,-80,90v-46,0,-79,-33,-79,-90v0,-57,33,-89,79,-89v46,0,80,32,80,89xm142,-86v0,-35,-17,-62,-48,-62v-31,0,-46,26,-46,62v0,35,16,63,46,63v32,0,48,-27,48,-63"},"p":{"d":"178,-91v0,82,-59,107,-121,86r0,67r-32,5r0,-239r26,0r4,25v39,-49,123,-34,123,56xm146,-89v0,-69,-62,-72,-89,-28r0,83v43,20,89,8,89,-55","w":193},"q":{"d":"167,62r-32,5r0,-87v-41,44,-120,26,-120,-61v0,-93,80,-107,152,-82r0,225xm135,-53r0,-87v-43,-18,-87,-3,-87,58v0,70,60,69,87,29","w":191},"r":{"d":"121,-145v-28,1,-52,20,-64,43r0,102r-32,0r0,-172r26,0r5,35v12,-19,32,-37,60,-38","w":128},"s":{"d":"84,-104v83,11,81,110,-7,108v-23,0,-47,-9,-62,-17r4,-30v16,11,38,20,61,20v22,0,35,-9,35,-23v0,-16,-9,-25,-41,-29v-77,-11,-73,-101,4,-100v21,0,41,4,57,11r-5,30v-21,-14,-82,-26,-82,5v0,12,8,21,36,25","w":159},"t":{"d":"108,1v-36,6,-75,2,-75,-43r0,-103r-25,0r0,-27r25,0r0,-57r32,-5r0,62r37,0r4,27r-41,0r0,97v-3,19,19,25,38,21","w":121},"u":{"d":"165,0r-26,0r-4,-25v-27,37,-111,43,-111,-22r0,-125r33,0r0,117v2,47,56,31,75,2r0,-119r33,0r0,172"},"v":{"d":"162,-172r-62,173r-30,0r-61,-170r32,-5r45,135r43,-133r33,0","w":170},"w":{"d":"250,-172r-56,172r-25,0r-39,-130r-40,130r-24,0r-56,-169r31,-5r37,127r39,-125r27,0r38,125r37,-125r31,0","w":259},"x":{"d":"159,-2r-31,5r-43,-67r-41,64r-34,0r58,-88r-54,-81r32,-5r39,61r37,-59r34,0r-54,83","w":169},"y":{"d":"166,-172r-70,187v-17,44,-36,55,-72,49r-5,-28v29,11,48,-9,52,-35r-62,-170r31,-5r47,137r46,-135r33,0","w":173},"z":{"d":"150,0r-137,0r0,-25r96,-120r-88,0r-4,-27r128,0r0,25r-96,120r96,0","w":162},"{":{"d":"155,37v-48,3,-99,-1,-93,-47v5,-41,11,-95,-44,-84r-4,-24v30,1,53,0,53,-34v0,-47,-12,-100,46,-96r41,0r0,24v-26,1,-65,-6,-61,22v6,41,8,93,-32,97v42,2,38,55,32,96v-4,27,33,22,58,22","w":171},"|":{"d":"62,62r-29,5r0,-322r29,-5r0,322","w":95},"}":{"d":"157,-94v-31,-1,-55,2,-52,35v4,47,12,99,-47,96r-40,0r0,-24v26,-1,65,6,61,-22v-6,-41,-8,-93,32,-97v-42,-2,-38,-56,-32,-96v4,-27,-33,-22,-59,-22r-4,-24v49,-2,99,0,94,47v-5,39,-14,95,43,83","w":171},"~":{"d":"48,-125v13,0,40,20,49,18v5,0,8,-5,11,-19r21,5v-3,27,-13,41,-30,41v-13,0,-40,-20,-49,-18v-5,0,-8,5,-11,19r-21,-5v3,-27,13,-41,30,-41","w":147},"'":{"d":"59,-243r-9,75r-19,-5r-8,-70r36,0","w":81},"\u201c":{"d":"63,-247r-10,80r-38,0r30,-84xm129,-247r-11,80r-37,0r30,-84","w":147},"\u2013":{"d":"144,-87r-125,0r0,-30r125,0r0,30","w":163},"\u201d":{"d":"66,-248r-29,83r-18,-4r10,-79r37,0xm132,-248r-30,83r-18,-4r11,-79r37,0","w":147},"\u2026":{"d":"235,0r-36,0r0,-43r36,0r0,43xm149,0r-36,0r0,-43r36,0r0,43xm62,0r-36,0r0,-43r36,0r0,43","w":261},"`":{"d":"114,-197r-21,0r-49,-46r39,-8","w":163},"\u2014":{"d":"307,-87r-288,0r0,-30r288,0r0,30","w":326},"\u00d7":{"d":"9,72r0,-360r162,0r0,360r-162,0","w":180},"\u2122":{"d":"268,-124r-22,0r-7,-87r-35,87r-17,0r-35,-87r-7,87r-21,0r10,-124r25,0r37,92r37,-92r25,0xm112,-229r-40,0r0,105r-22,0r0,-105r-39,0r0,-19r97,0","w":287},"\u00a0":{"w":79}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 2004 Hoefler & Frere-Jones Typography, Inc. www.typography.com
 */
Cufon.registerFont({"w":182,"face":{"font-family":"Whitney","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-13 -288 350 72","underline-thickness":"7.2","underline-position":"-44.28","stemh":"48","stemv":"54","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":75},"!":{"d":"87,-248r-17,155r-33,7r-18,-162r68,0xm82,0r-58,0r0,-62r58,0r0,62","w":106},"\"":{"d":"170,-243r-16,108r-34,-8r-15,-100r65,0xm82,-243r-16,108r-35,-8r-14,-100r65,0","w":187},"#":{"d":"85,-51r-8,54r-33,-7r7,-47r-37,0r0,-45r44,0r8,-51r-39,0r-8,-46r54,0r8,-51r35,0r-8,51r49,0r9,-54r33,8r-8,46r38,0r0,46r-45,0r-8,51r40,0r7,45r-54,0r-8,52r-35,0r8,-52r-49,0xm100,-148r-8,53r50,0r8,-53r-50,0","w":242},"$":{"d":"132,-242v16,3,31,8,44,15r-8,44v-13,-8,-29,-15,-45,-18r-7,53v46,14,68,33,68,75v0,51,-37,75,-89,75r-6,42r-26,-6r5,-38v-21,-3,-40,-10,-58,-19r7,-44v22,12,41,18,60,21r9,-61v-44,-14,-69,-30,-69,-72v0,-45,33,-71,88,-70r4,-27r26,6xm99,-40v45,1,52,-45,9,-56xm101,-203v-43,-3,-49,38,-7,48","w":197},"%":{"d":"134,-175v0,46,-27,72,-60,72v-34,0,-60,-26,-60,-72v0,-46,27,-71,60,-71v33,0,60,25,60,71xm255,-239r-156,242r-32,-8r155,-241xm96,-175v0,-26,-7,-41,-22,-41v-15,0,-23,15,-23,41v0,26,8,41,23,41v15,0,22,-15,22,-41xm308,-69v0,46,-27,72,-60,72v-34,0,-60,-25,-60,-71v0,-46,27,-72,60,-72v34,0,60,25,60,71xm270,-69v0,-26,-7,-41,-22,-41v-15,0,-23,16,-23,42v0,26,8,41,23,41v15,0,22,-16,22,-42","w":321},"&":{"d":"242,-6r-61,8r-21,-24v-43,46,-150,30,-150,-42v0,-35,20,-57,49,-74v-41,-44,-20,-115,52,-115v27,0,51,7,67,16r-8,48v-19,-10,-37,-17,-53,-17v-31,0,-24,28,-7,47r51,58v5,-13,8,-28,10,-47r46,10v-4,30,-12,54,-24,75xm133,-53r-47,-53v-30,18,-27,66,15,66v11,0,22,-4,32,-13","w":238},"\u2019":{"d":"85,-248r-36,113r-34,-8r8,-105r62,0","w":92},"(":{"d":"140,24r-42,10v-49,-39,-82,-80,-82,-146v0,-71,39,-117,107,-149r6,36v-75,64,-67,181,11,249","w":146},")":{"d":"130,-114v0,71,-39,118,-107,150r-5,-37v75,-64,67,-181,-11,-249r42,-10v49,39,81,80,81,146","w":146},"*":{"d":"147,-197r-39,25r17,43r-11,7r-35,-28r-35,28r-11,-7r17,-43r-39,-25r4,-12r46,2r11,-44r14,0r10,44r47,-2","w":157},"+":{"d":"186,-100r-61,0r0,63r-44,0r0,-63r-62,0r0,-43r62,0r0,-64r44,0r0,64r61,0r0,43","w":205},",":{"d":"85,-62r-45,115r-32,-7r16,-108r61,0","w":92},"-":{"d":"113,-79r-98,0r0,-52r98,0r0,52","w":127},".":{"d":"76,0r-58,0r0,-62r58,0r0,62","w":92},"\/":{"d":"186,-242r-154,288r-45,-10r155,-288","w":190},"0":{"d":"215,-122v0,81,-41,127,-101,127v-61,0,-101,-46,-101,-127v0,-81,40,-126,101,-126v60,0,101,45,101,126xm156,-122v0,-52,-14,-80,-42,-80v-28,0,-41,28,-41,80v0,52,13,81,41,81v28,0,42,-29,42,-81","w":228},"1":{"d":"122,0r-60,0r0,-187r-49,19r-7,-47r62,-29r54,0r0,244","w":146},"2":{"d":"186,0r-172,0r0,-43r84,-84v16,-17,25,-28,25,-44v0,-45,-70,-24,-96,-1r-7,-51v45,-38,161,-33,161,46v0,55,-63,94,-95,129r93,0","w":198},"3":{"d":"136,-127v86,30,44,132,-45,132v-31,0,-59,-7,-80,-19r8,-48v20,11,43,18,67,18v24,0,38,-9,38,-28v0,-25,-29,-34,-67,-32r-8,-44v34,2,75,-4,71,-28v-6,-38,-75,-23,-98,-4r-7,-46v44,-37,164,-28,164,42v0,31,-18,48,-43,57","w":196},"4":{"d":"213,-49r-34,0r0,49r-57,0r0,-49r-113,0r0,-37r103,-158r67,0r0,155r34,0r0,40xm122,-89r0,-97r-62,97r62,0","w":219},"5":{"d":"187,-81v0,87,-111,103,-175,69r8,-50v32,19,106,33,111,-16v3,-34,-49,-38,-72,-25r-37,-8r8,-132r144,0r7,48r-106,0r-3,43v56,-14,115,9,115,71","w":199},"6":{"d":"69,-137v50,-33,128,-21,128,56v0,51,-39,86,-90,86v-55,0,-94,-36,-94,-103v0,-87,60,-134,140,-150r8,47v-46,10,-80,29,-92,64xm67,-98v0,41,18,59,40,59v21,0,34,-14,34,-38v0,-43,-49,-42,-74,-21","w":207},"7":{"d":"182,-197r-90,200r-57,-11r85,-185r-102,0r-8,-50r172,0r0,46","w":194},"8":{"d":"116,-146v30,-16,31,-64,-11,-64v-19,0,-30,12,-30,27v0,15,10,25,41,37xm94,-109v-35,17,-35,75,13,73v20,0,36,-12,36,-30v0,-19,-11,-28,-49,-43xm56,-127v-65,-35,-31,-121,52,-121v87,0,111,84,47,119v76,32,48,134,-49,134v-102,0,-121,-94,-50,-132","w":212},"9":{"d":"138,-103v-51,33,-127,20,-127,-58v0,-54,39,-87,90,-87v55,0,94,36,94,103v0,87,-61,135,-144,150r-7,-47v47,-9,81,-28,94,-61xm67,-165v0,45,49,45,74,23v0,-44,-17,-62,-40,-62v-21,0,-34,14,-34,39","w":207},":":{"d":"77,-115r-58,0r0,-61r58,0r0,61xm77,0r-58,0r0,-61r58,0r0,61","w":96},";":{"d":"80,-115r-59,0r0,-61r59,0r0,61xm84,-61r-45,114r-33,-7r16,-107r62,0","w":96},"<":{"d":"181,-23r-160,-80r0,-38r160,-80r0,47r-107,52r107,52r0,47","w":205},"=":{"d":"186,-144r-160,0r0,-43r160,0r0,43xm186,-57r-160,0r0,-43r160,0r0,43","w":212},">":{"d":"185,-103r-161,80r0,-47r108,-51r-108,-53r0,-47r161,80r0,38","w":205},"?":{"d":"105,0r-58,0r0,-62r58,0r0,62xm97,-103r-1,12r-36,9r-3,-55v30,-9,65,-23,59,-42v0,-15,-11,-24,-31,-24v-23,0,-47,11,-68,26r-8,-51v44,-38,164,-38,164,44v0,42,-26,65,-76,81"},"@":{"d":"165,-76r9,-54v-34,-10,-51,18,-53,58v5,34,26,19,44,-4xm166,-47v-17,20,-31,30,-49,30v-22,0,-40,-16,-40,-47v-1,-86,72,-123,143,-90r-14,95v0,10,7,20,23,20v24,0,42,-27,42,-73v0,-72,-44,-106,-106,-106v-72,0,-135,65,-135,149v0,110,105,126,183,90r2,12v-20,10,-48,17,-80,17v-75,0,-121,-39,-121,-118v0,-87,68,-163,152,-163v72,0,121,44,121,119v0,58,-27,95,-72,95v-23,0,-42,-12,-49,-30","w":300},"A":{"d":"248,-8r-62,11r-19,-54r-85,0r-17,51r-60,0r89,-249r68,0xm153,-100r-28,-86r-29,86r57,0","w":252},"B":{"d":"201,-72v0,77,-95,75,-178,72r0,-248r84,0v91,-10,110,89,49,117v27,9,45,25,45,59xm137,-177v3,-25,-27,-29,-56,-27r0,56v30,2,58,-3,56,-29xm143,-76v0,-30,-29,-34,-62,-32r0,64v33,2,62,-2,62,-32","w":211},"C":{"d":"205,-14v-86,47,-191,-2,-191,-110v0,-105,101,-158,187,-113r-8,56v-45,-38,-118,-22,-118,57v0,78,69,93,122,60","w":217},"D":{"d":"240,-125v0,74,-46,125,-130,125r-87,0r0,-248r85,0v86,0,132,49,132,123xm178,-124v0,-61,-36,-82,-94,-77r0,153v59,4,94,-13,94,-76","w":253},"E":{"d":"181,0r-158,0r0,-248r154,0r0,49r-94,0r0,45r72,0r8,51r-80,0r0,54r98,0r0,49","w":192},"F":{"d":"171,-197r-87,0r0,50r65,0r8,53r-73,0r0,94r-61,0r0,-248r148,0r0,51","w":181},"G":{"d":"227,-22v-26,17,-57,27,-91,27v-79,0,-122,-52,-122,-129v0,-108,111,-159,199,-111r-8,54v-19,-12,-40,-21,-66,-21v-43,0,-64,32,-64,78v0,61,47,96,98,71r0,-44r-43,0r-7,-46r104,0r0,121","w":245},"H":{"d":"232,0r-62,0r0,-102r-86,0r0,102r-61,0r0,-248r61,0r0,92r86,0r0,-92r62,0r0,248","w":254},"I":{"d":"86,0r-62,0r0,-248r62,0r0,248","w":109},"J":{"d":"132,-76v2,70,-58,88,-117,75r-8,-52v27,7,64,9,64,-32r0,-163r61,0r0,172","w":153},"K":{"d":"234,-8r-66,11r-84,-119r0,116r-61,0r0,-248r61,0r0,106r78,-106r69,0r-88,114","w":234},"L":{"d":"169,0r-146,0r0,-248r61,0r0,195r77,0","w":174},"M":{"d":"305,0r-62,0r-11,-165r-47,165r-58,0r-47,-165r-11,165r-54,0r18,-248r80,0r48,171r49,-171r77,0","w":320},"N":{"d":"231,0r-53,0r-98,-149r0,149r-57,0r0,-248r59,0r92,139r0,-139r57,0r0,248","w":253},"O":{"d":"251,-125v0,77,-47,130,-119,130v-71,0,-118,-52,-118,-129v0,-77,46,-129,118,-129v72,0,119,51,119,128xm189,-124v0,-49,-21,-81,-57,-81v-36,0,-57,32,-57,81v0,49,21,80,57,80v36,0,57,-31,57,-80","w":264},"P":{"d":"200,-167v0,61,-47,89,-116,85r0,82r-61,0r0,-248v87,-4,177,-3,177,81xm140,-166v0,-29,-23,-39,-56,-36r0,73v33,2,56,-6,56,-37","w":206},"Q":{"d":"251,-128v0,52,-22,90,-58,109r58,18r-12,52v-90,-39,-225,-46,-225,-175v0,-77,46,-129,118,-129v71,0,119,49,119,125xm189,-124v0,-48,-21,-81,-57,-81v-36,0,-57,33,-57,81v0,48,21,82,57,82v36,0,57,-34,57,-82","w":264},"R":{"d":"144,-166v0,-30,-26,-39,-60,-36r0,72v34,2,60,-5,60,-36xm159,-99r59,91r-63,11r-54,-88r-17,0r0,85r-61,0r0,-248r86,0v102,-12,128,117,50,149","w":221},"S":{"d":"188,-75v0,90,-114,91,-175,59r9,-52v26,14,53,23,78,23v18,0,30,-8,30,-23v0,-14,-7,-21,-42,-34v-50,-19,-71,-35,-71,-76v0,-78,105,-87,160,-57r-10,52v-22,-13,-45,-20,-64,-20v-19,0,-28,7,-28,19v0,13,7,19,38,31v54,20,75,38,75,78","w":199},"T":{"d":"214,-196r-74,0r0,196r-62,0r0,-196r-69,0r0,-52r197,0","w":219},"U":{"d":"228,-99v0,69,-45,103,-105,103v-61,0,-103,-33,-103,-102r0,-150r62,0r0,149v0,32,14,51,42,51v28,0,42,-18,42,-50r0,-150r62,0r0,149","w":247},"V":{"d":"244,-248r-89,249r-63,0r-87,-242r67,-10r55,174r54,-171r63,0","w":249},"W":{"d":"350,-248r-68,248r-62,0r-43,-160r-43,160r-62,0r-65,-240r66,-11r38,158r40,-155r62,0r40,155r36,-155r61,0","w":356},"X":{"d":"83,-126r-72,-114r65,-11r45,79r43,-76r64,0r-73,117r78,123r-66,11r-51,-88r-49,85r-63,0","w":237},"Y":{"d":"240,-248r-90,157r0,91r-61,0r0,-91r-86,-151r65,-9r54,103r53,-100r65,0","w":241},"Z":{"d":"209,0r-195,0r0,-45r116,-154r-103,0r-8,-49r187,0r0,44r-116,155r111,0","w":220},"[":{"d":"138,37r-112,0r0,-285r110,0r0,33r-58,0r0,219r54,0","w":150},"\\":{"d":"204,36r-45,10r-155,-288r45,-10","w":190},"]":{"d":"125,37r-111,0r0,-33r59,0r0,-219r-55,0r-5,-33r112,0r0,285","w":150},"^":{"d":"142,-202r-32,7r-28,-23r-27,21r-34,0r37,-53r49,0","w":163},"_":{"d":"164,37r-165,0r0,-25r165,0r0,25","w":163},"\u2018":{"d":"78,-244r-8,106r-62,0r37,-114","w":92},"a":{"d":"165,0r-48,0r-4,-22v-25,36,-103,39,-103,-23v0,-41,32,-61,101,-67v1,-42,-58,-24,-84,-13r-6,-41v48,-20,144,-27,144,48r0,118xm111,-49r0,-37v-37,6,-47,18,-47,33v0,27,33,20,47,4"},"b":{"d":"184,-93v0,99,-91,109,-165,83r0,-241r54,-9r0,103v40,-44,111,-23,111,64xm129,-89v0,-51,-35,-51,-56,-25r0,69v31,11,56,1,56,-44","w":194},"c":{"d":"152,-13v-61,38,-142,8,-142,-74v0,-84,79,-111,140,-79r-7,46v-32,-21,-78,-17,-78,32v1,50,47,56,80,31","w":162},"d":{"d":"177,0r-48,0r-4,-23v-38,48,-118,30,-114,-60v3,-84,50,-105,112,-89r0,-79r54,-9r0,260xm123,-63r0,-67v-30,-12,-57,-4,-57,43v0,51,37,51,57,24","w":195},"e":{"d":"93,-180v59,0,83,47,77,105r-106,0v6,54,66,43,102,21r5,38v-60,39,-161,24,-161,-71v0,-58,35,-93,83,-93xm120,-104v-2,-27,-11,-41,-28,-41v-15,0,-26,14,-28,41r56,0","w":181},"f":{"d":"125,-213v-26,-7,-49,3,-41,37r32,0r6,44r-38,0r0,132r-55,0r0,-132r-24,0r0,-44r24,0v-8,-63,30,-90,89,-79","w":122},"g":{"d":"56,-3v-22,23,-11,40,35,40v43,0,65,-29,19,-34xm113,-118v0,-17,-10,-29,-26,-29v-16,0,-25,13,-25,30v0,17,9,28,25,28v17,0,26,-12,26,-29xm141,-162r42,-16r7,40r-31,1v15,53,-30,86,-87,78v-9,13,-6,16,24,18v41,3,89,6,89,43v0,39,-42,64,-99,64v-77,0,-115,-48,-56,-80v-18,-20,-8,-38,17,-52v-62,-26,-32,-113,40,-113v22,0,41,7,54,17","w":192},"h":{"d":"176,0r-55,0r0,-111v0,-31,-34,-23,-48,-5r0,116r-54,0r0,-251r54,-9r0,106v28,-38,103,-35,103,29r0,125","w":193},"i":{"d":"78,-229v0,18,-13,30,-31,30v-17,0,-31,-12,-31,-30v0,-18,14,-29,31,-29v18,0,31,11,31,29xm75,0r-55,0r0,-176r55,0r0,176","w":94},"j":{"d":"78,-229v0,18,-13,30,-31,30v-17,0,-31,-12,-31,-30v0,-18,14,-29,31,-29v18,0,31,11,31,29xm75,5v1,51,-37,67,-81,59r-7,-42v18,3,34,2,33,-21r0,-177r55,0r0,181","w":94},"k":{"d":"181,-5r-57,8r-51,-85r0,82r-54,0r0,-251r54,-9r0,156r47,-72r59,0r-56,80","w":181},"l":{"d":"75,0r-55,0r0,-251r55,-9r0,260","w":94},"m":{"d":"274,0r-54,0r0,-111v0,-30,-32,-23,-46,-5r0,116r-55,0r0,-111v0,-31,-32,-22,-46,-5r0,116r-54,0r0,-176r48,0r4,24v22,-33,85,-40,98,0v29,-41,105,-39,105,27r0,125","w":291},"n":{"d":"176,0r-55,0r0,-111v0,-31,-34,-23,-48,-5r0,116r-54,0r0,-176r48,0r4,24v29,-40,105,-39,105,27r0,125","w":193},"o":{"d":"180,-88v0,57,-37,92,-86,92v-49,0,-84,-35,-84,-92v0,-57,36,-92,85,-92v49,0,85,35,85,92xm127,-88v0,-28,-11,-47,-32,-47v-21,0,-32,18,-32,47v0,28,11,48,32,48v21,0,32,-20,32,-48","w":189},"p":{"d":"184,-93v-3,84,-51,107,-111,89r0,63r-54,8r0,-243r48,0r3,23v38,-48,118,-31,114,60xm130,-89v0,-51,-37,-51,-57,-24r0,67v31,13,57,4,57,-43","w":195},"q":{"d":"176,59r-54,8r0,-86v-41,44,-111,23,-111,-64v0,-100,91,-110,165,-83r0,225xm122,-62r0,-69v-31,-11,-56,0,-56,44v0,51,35,51,56,25","w":194},"r":{"d":"132,-125v-26,2,-46,13,-59,27r0,98r-54,0r0,-176r47,0r6,35v11,-20,25,-37,51,-39","w":135},"s":{"d":"157,-54v0,66,-103,67,-145,39r6,-41v21,13,47,21,67,21v15,0,22,-6,22,-14v0,-9,-5,-13,-30,-19v-44,-12,-63,-23,-63,-56v0,-58,88,-66,133,-42r-7,41v-19,-10,-41,-16,-58,-16v-13,0,-19,4,-19,11v0,7,5,11,30,18v47,13,64,25,64,58","w":167},"t":{"d":"124,-1v-46,11,-96,2,-96,-55r0,-76r-23,0r0,-44r23,0r0,-53r54,-8r0,61r34,0r7,44r-41,0v4,36,-17,101,35,86","w":130},"u":{"d":"175,0r-48,0r-4,-24v-29,41,-105,39,-105,-27r0,-125r54,0r0,110v0,31,33,25,48,6r0,-116r55,0r0,176","w":193},"v":{"d":"180,-176r-62,177r-54,0r-60,-173r58,-7r33,112r32,-109r53,0"},"w":{"d":"257,-176r-49,176r-52,0r-26,-101r-25,101r-52,0r-49,-172r56,-7r25,106r24,-103r49,0r26,102r23,-102r50,0","w":261},"x":{"d":"173,-4r-56,7r-31,-55r-29,52r-52,0r54,-87r-51,-85r56,-7r28,50r27,-47r51,0r-51,82","w":178},"y":{"d":"181,-176r-63,180v-17,53,-47,69,-96,59r-7,-43v20,7,48,3,52,-20r-64,-172r59,-7r34,111r32,-108r53,0","w":183},"z":{"d":"159,0r-149,0r0,-41r77,-93r-67,0r-6,-42r141,0r0,41r-77,93r74,0","w":168},"{":{"d":"169,37v-53,2,-118,3,-112,-47v5,-41,12,-87,-43,-79r-5,-33v30,1,57,-2,53,-32v-6,-48,-9,-96,51,-94r54,0r0,33v-25,0,-61,-4,-56,21v8,41,6,82,-36,89v44,5,43,48,36,88v-4,23,28,22,52,21"},"|":{"d":"77,60r-46,7r0,-320r46,-7r0,320","w":108},"}":{"d":"173,-89v-30,-1,-57,2,-53,32v6,48,9,96,-52,94r-54,0r0,-33v24,0,61,5,57,-20v-7,-42,-6,-83,36,-90v-44,-5,-43,-48,-36,-89v4,-23,-30,-20,-53,-20r-5,-33v53,-2,118,-2,112,47v-5,40,-13,87,42,79"},"~":{"d":"13,-82v4,-70,50,-46,84,-35v5,0,8,-4,11,-17r26,7v-5,71,-49,45,-84,35v-5,0,-8,3,-11,16","w":147},"'":{"d":"83,-243r-15,108r-37,-8r-14,-100r66,0","w":100},"\u201c":{"d":"77,-244r-8,106r-61,0r37,-114xm158,-244r-8,106r-60,0r36,-114","w":173},"\u2013":{"d":"149,-79r-134,0r0,-51r134,0r0,51","w":163},"\u201d":{"d":"84,-248r-36,113r-33,-8r8,-105r61,0xm165,-248r-36,113r-33,-8r8,-105r61,0","w":173},"\u2026":{"d":"262,0r-58,0r0,-62r58,0r0,62xm169,0r-57,0r0,-62r57,0r0,62xm76,0r-58,0r0,-62r58,0r0,62","w":280},"`":{"d":"123,-197r-36,0r-52,-43r66,-11","w":163},"\u2014":{"d":"312,-80r-297,0r0,-50r297,0r0,50","w":326},"\u00d7":{"d":"9,72r0,-360r162,0r0,360r-162,0","w":180},"\u2122":{"d":"279,-124r-34,0r-5,-78r-23,79r-31,0r-23,-79r-6,78r-29,0r9,-124r43,0r24,81r25,-81r41,0xm120,-221r-40,0r0,97r-34,0r0,-97r-36,0r0,-27r106,0","w":292},"\u00a0":{"w":75}}});

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

jQuery.noConflict();
jQuery(document).ready(function($) {
	if(document.getElementById('slider') != null)  {
		jQuery("#sliding").scrollable({ 
			  onSeek: function() { 
        Cufon.refresh('#slider a');
    }, 
 clickable:false,
 loop:true,
 items: '#sliding ul',
 speed:200,
    size: 1
 
}).circular().autoscroll({autoplay: true, interval: 12000, steps:1});
	}
	jQuery('#nav li ul li:last').addClass('last');
	});

Cufon.replace('#footer-nav', {hover:true});
Cufon.replace('#nav li a', {hover:true});
Cufon.replace('#random-quote blockquote');
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('h3',  {hover:true});}
if(document.getElementsByTagName('h4') != null)  {Cufon.replace('h4',  {hover:true});}
if(document.getElementsByClassName('tags') != null)  {Cufon.replace('p.tags strong');}
if(document.getElementsByClassName('comment-number') != null)  {Cufon.replace('.comment-number a');}








