/*
 * jquery.tools 1.1.0 - The missing UI library for the Web
 * 
 * [tools.scrollable-1.1.0, tools.scrollable.circular-0.5.0, tools.scrollable.navigator-1.0.0]
 * 
 * Copyright (c) 2009 Tero Piirainen
 * http://flowplayer.org/tools/
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * http://www.opensource.org/licenses
 * 
 * -----
 * 
 * File generated: Thu Sep 03 23:56:39 GMT+00:00 2009
 */
(function(c){c.tools=c.tools||{};c.tools.scrollable={version:"1.1.0",conf:{size:5,vertical:false,speed:400,keyboard:true,keyboardSteps:null,disabledClass:"disabled",hoverClass:null,clickable:true,activeClass:"active",easing:"swing",items:".items",item:null,prev:".prev",next:".next",prevPage:".prevPage",nextPage:".nextPage",api:false}};var d,a=0;function b(r,o,m){var t=this,e=!o.vertical,f=r.children(),l=0,j;if(!d){d=t}function p(u,v){c(t).bind(u,function(x,w){if(v&&v.call(this,w.index)===false&&w){w.proceed=false}});return t}c.each(o,function(u,v){if(c.isFunction(v)){p(u,v)}});if(f.length>1){f=c(o.items,r)}function n(v){var u=c(v);return m==1||u.length==1||o.globalNav?u:r.parent().find(v)}r.data("finder",n);var g=n(o.prev),i=n(o.next),h=n(o.prevPage),q=n(o.nextPage);c.extend(t,{getIndex:function(){return l},getConf:function(){return o},getSize:function(){return t.getItems().size()},getPageAmount:function(){return Math.ceil(this.getSize()/o.size)},getPageIndex:function(){return Math.ceil(l/o.size)},getNaviButtons:function(){return g.add(i).add(h).add(q)},getRoot:function(){return r},getItemWrap:function(){return f},getItems:function(){return f.children(o.item)},getVisibleItems:function(){return t.getItems().slice(l,l+o.size)},seekTo:function(u,y,v){if(y===undefined){y=o.speed}if(c.isFunction(y)){v=y;y=o.speed}if(u<0){u=0}if(u>t.getSize()-o.size){return this.end()}var w=t.getItems().eq(u);if(!w.length){return t}var x={index:u,proceed:true};c(t).trigger("onBeforeSeek",x);if(!x.proceed){return t}function z(){if(v){v.call(t)}c(t).trigger("onSeek",x)}if(e){f.animate({left:-w.position().left},y,o.easing,z)}else{f.animate({top:-w.position().top},y,o.easing,z)}d=t;l=u;return t},move:function(w,v,u){j=w>0;return this.seekTo(l+w,v,u)},next:function(v,u){return this.move(1,v,u)},prev:function(v,u){return this.move(-1,v,u)},movePage:function(y,x,w){j=y>0;var u=o.size*y;var v=l%o.size;if(v>0){u+=(y>0?-v:o.size-v)}return this.move(u,x,w)},prevPage:function(v,u){return this.movePage(-1,v,u)},nextPage:function(v,u){return this.movePage(1,v,u)},setPage:function(v,w,u){return this.seekTo(v*o.size,w,u)},begin:function(v,u){return this.seekTo(0,v,u)},end:function(v,u){var w=this.getSize()-o.size;return w>0?this.seekTo(w,v,u):t},reload:function(){c(t).trigger("onReload",{});return t},onBeforeSeek:function(u){return p("onBeforeSeek",u)},onSeek:function(u){return p("onSeek",u)},onReload:function(u){return p("onReload",u)},focus:function(){d=t;return t},click:function(w){var x=t.getItems().eq(w),u=o.activeClass,v=o.size;if(w<0||w>=t.getSize()){return t}if(v==1){if(w===0||w==t.getSize()-1){j=(j===undefined)?true:!j}return j===false?t.prev():t.next()}if(v==2){if(w==l){w--}t.getItems().removeClass(u);x.addClass(u);return t.seekTo(w,time,fn)}if(!x.hasClass(u)){t.getItems().removeClass(u);x.addClass(u);var z=Math.floor(v/2);var y=w-z;if(y>t.getSize()-v){y=t.getSize()-v}if(y!==w){return t.seekTo(y)}}return t}});g.addClass(o.disabledClass).click(function(){t.prev()});i.click(function(){t.next()});q.click(function(){t.nextPage()});h.addClass(o.disabledClass).click(function(){t.prevPage()});t.onSeek(function(u){if(u===0){g.add(h).addClass(o.disabledClass)}else{g.add(h).removeClass(o.disabledClass)}if(u>=t.getSize()-o.size){i.add(q).addClass(o.disabledClass)}else{i.add(q).removeClass(o.disabledClass)}});var k=o.hoverClass,s="keydown."+Math.random().toString().substring(10);t.onReload(function(){if(k){t.getItems().hover(function(){c(this).addClass(k)},function(){c(this).removeClass(k)})}if(o.clickable){t.getItems().each(function(u){c(this).unbind("click.scrollable").bind("click.scrollable",function(v){if(c(v.target).is("a")){return}return t.click(u)})})}if(o.keyboard){c(document).bind(s,function(u){if(u.altKey||u.ctrlKey){return}if(o.keyboard!="static"&&d!=t){return}var v=o.keyboardSteps;if(e&&(u.keyCode==37||u.keyCode==39)){t.move(u.keyCode==37?-v:v);return u.preventDefault()}if(!e&&(u.keyCode==38||u.keyCode==40)){t.move(u.keyCode==38?-v:v);return u.preventDefault()}return true})}else{c(document).unbind(s)}});t.reload()}c.fn.scrollable=function(e){var f=this.eq(typeof e=="number"?e:0).data("scrollable");if(f){return f}var g=c.extend({},c.tools.scrollable.conf);c.extend(g,e);g.keyboardSteps=g.keyboardSteps||g.size;a+=this.length;this.each(function(){f=new b(c(this),g);c(this).data("scrollable",f)});return g.api?f:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.circular={version:"0.5.0",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)}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}return(j+k.size)/k.size-1},getVisibleItems:function(){var o=j+k.size;return m.slice(o,o+k.size)}});i.onSeek(function(o){j=o-k.size;i.getNaviButtons().removeClass(k.disabledClass)});i.getNaviButtons().removeClass(k.disabledClass)});return d.api?c:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.navigator={version:"1.0.0",conf:{navi:".navi",naviItem:null,activeClass:"active",indexed:false,api:false}};b.fn.navigator=function(e){var d=b.extend({},a.plugins.navigator.conf),c;if(typeof e=="string"){e={navi:e}}b.extend(d,e);this.each(function(){var i=b(this).scrollable(),f=i.getRoot(),l=f.data("finder").call(null,d.navi),g=null,k=i.getNaviButtons();if(i){c=i}i.getNaviButtons=function(){return k.add(l)};function j(){if(!l.children().length||l.data("navi")==i){l.empty();l.data("navi",i);for(var m=0;m<i.getPageAmount();m++){l.append(b("<"+(d.naviItem||"a")+"/>"))}g=l.children().each(function(n){b(this).click(function(o){i.setPage(n);return o.preventDefault()});if(d.indexed){b(this).text(n)}})}else{g=d.naviItem?l.find(d.naviItem):l.children();g.each(function(n){var o=b(this);o.click(function(p){i.setPage(n);return p.preventDefault()})})}g.eq(0).addClass(d.activeClass)}i.onSeek(function(n){var m=d.activeClass;g.removeClass(m).eq(i.getPageIndex()).addClass(m)});i.onReload(function(){j()});j();var h=g.filter("[href="+location.hash+"]");if(h.length){i.move(g.index(h))}});return d.api?c:this}})(jQuery);


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.04
 */
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}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},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 B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};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-1]-=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)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,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 B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}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(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;if(!D){return}for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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},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",textShadow:"none"};var p={words:/[^\S\u00a0]+/,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)}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-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").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.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("span");s.className="cufon cufon-canvas";s.alt=w;n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("span");S.className="cufon-alt";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">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</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("span");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("span");q.className="cufon-vml-canvas";y.appendChild(q);if(C.printable){var Z=document.createElement("span");Z.className="cufon-alt";Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());

//Cufon Fonts
Cufon.registerFont({"w":200,"face":{"font-family":"Avenir LT 65 Medium","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 2 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"4","bbox":"-17 -285 346 102","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"50,2v-12,0,-24,-12,-24,-24v0,-12,12,-23,24,-23v12,0,24,11,24,23v0,12,-12,24,-24,24xm67,-73r-35,0r0,-182r35,0r0,182","w":100},"\"":{"d":"106,-255r28,0r0,89r-28,0r0,-89xm53,-255r28,0r0,89r-28,0r0,-89","w":186},"#":{"d":"83,-153r-7,51r41,0r8,-51r-42,0xm43,-73r-34,0r0,-29r38,0r7,-51r-34,0r0,-28r38,0r10,-74r29,0r-10,74r42,0r10,-74r28,0r-10,74r34,0r0,28r-38,0r-7,51r34,0r0,29r-38,0r-10,73r-29,0r10,-73r-41,0r-10,73r-29,0"},"$":{"d":"108,-26v45,2,58,-65,16,-78v-5,-2,-11,-3,-16,-5r0,83xm89,-229v-41,-1,-53,62,-15,75v5,2,10,4,15,5r0,-80xm15,-188v0,-44,32,-67,74,-71r0,-26r19,0r0,26v30,0,57,9,71,28r-26,25v-10,-13,-24,-23,-45,-23r0,85v39,12,78,24,78,74v0,46,-32,71,-78,74r0,26r-19,0r0,-26v-37,0,-63,-10,-80,-34r28,-25v10,16,29,28,52,29r0,-88v-38,-11,-74,-26,-74,-74"},"%":{"d":"230,-93v-20,0,-36,16,-36,36v0,20,16,35,36,35v19,0,35,-16,35,-35v0,-20,-15,-36,-35,-36xm230,6v-38,0,-64,-25,-64,-63v0,-38,26,-64,64,-64v38,0,63,26,63,64v0,38,-25,63,-63,63xm77,-233v-19,0,-36,16,-36,35v0,19,16,36,36,36v20,0,36,-17,36,-36v0,-19,-17,-35,-36,-35xm77,-134v-38,0,-64,-26,-64,-64v0,-38,26,-63,64,-63v38,0,64,25,64,63v0,38,-26,64,-64,64xm85,11r-22,-11r160,-266r22,11","w":306},"&":{"d":"81,-111v-42,18,-30,91,21,87v27,-1,43,-17,56,-32r-62,-64xm105,-157v16,-11,39,-18,39,-45v0,-17,-14,-27,-31,-27v-35,0,-42,45,-17,63v4,5,5,5,9,9xm179,-202v0,36,-28,53,-53,66r50,52r32,-52r40,0r-50,77r58,59r-46,0r-31,-34v-21,23,-39,40,-79,40v-50,-1,-83,-26,-83,-73v0,-41,28,-59,58,-73v-14,-17,-30,-31,-30,-59v0,-40,28,-60,68,-60v39,0,66,18,66,57","w":259},"'":{"d":"64,-166r-28,0r0,-89r28,0r0,89","w":100},"(":{"d":"70,56v-68,-75,-67,-242,0,-320r21,14v-58,69,-60,222,0,292","w":100},")":{"d":"30,-264v68,76,68,242,0,320r-21,-14v58,-69,60,-221,0,-291","w":100},"*":{"d":"97,-202r50,-17r7,24r-50,16r32,43r-20,15r-32,-44r-33,43r-19,-14r32,-43r-51,-17r7,-23r51,17r0,-53r26,0r0,53","w":167},"+":{"d":"24,-123r82,0r0,-82r28,0r0,82r82,0r0,28r-82,0r0,82r-28,0r0,-82r-82,0r0,-28","w":239},",":{"d":"47,48r-30,0r25,-89r35,0","w":100},"-":{"d":"101,-72r-88,0r0,-30r88,0r0,30","w":113},"\u00ad":{"d":"101,-72r-88,0r0,-30r88,0r0,30","w":113},".":{"d":"74,-22v0,12,-12,24,-24,24v-12,0,-24,-12,-24,-24v0,-12,12,-23,24,-23v12,0,24,11,24,23","w":100},"\/":{"d":"25,16r-25,-10r115,-277r25,10","w":140},"0":{"d":"100,-229v-47,0,-52,52,-53,102v0,47,7,101,53,101v53,0,56,-66,53,-121v-2,-39,-11,-82,-53,-82xm100,4v-69,0,-88,-64,-88,-131v0,-69,18,-132,88,-132v70,0,88,63,88,132v0,67,-19,131,-88,131"},"1":{"d":"97,-215r-47,43r-20,-24r71,-59r31,0r0,255r-35,0r0,-215"},"2":{"d":"103,-261v80,-6,101,86,53,133r-101,98r129,0r0,30r-167,0r0,-37v42,-47,95,-83,128,-138v8,-32,-11,-56,-42,-56v-26,-1,-43,16,-46,39r-38,-3v7,-42,36,-62,84,-66"},"3":{"d":"184,-69v5,90,-151,97,-167,18r36,-11v7,23,18,36,47,36v29,0,49,-17,49,-46v0,-40,-33,-47,-72,-48r0,-30v38,1,65,-5,66,-40v2,-51,-75,-52,-86,-12r-35,-11v11,-29,39,-49,77,-48v46,1,77,22,78,69v0,28,-20,52,-43,58v31,6,48,30,50,65"},"4":{"d":"121,-86r-1,-128r-78,128r79,0xm121,-56r-109,0r0,-35r102,-164r42,0r0,169r36,0r0,30r-36,0r0,56r-35,0r0,-56"},"5":{"d":"144,-78v3,-60,-71,-65,-114,-43r3,-134r137,0r0,33r-104,0r-1,63v61,-18,114,16,114,79v0,92,-141,113,-167,33r35,-12v9,21,21,33,47,33v31,0,49,-20,50,-52"},"6":{"d":"100,-132v-33,0,-53,21,-53,53v0,32,20,53,53,53v33,0,53,-21,53,-53v0,-32,-20,-53,-53,-53xm100,4v-86,5,-102,-94,-62,-157r65,-102r40,0r-64,99v55,-19,111,15,109,75v-1,55,-34,82,-88,85"},"7":{"d":"138,-225r-123,0r0,-30r160,0r0,30r-101,225r-39,0"},"8":{"d":"51,-73v1,30,20,46,49,47v28,1,49,-20,49,-47v-1,-30,-19,-46,-49,-47v-28,-1,-49,20,-49,47xm100,-231v-22,0,-41,17,-40,40v2,24,16,41,40,41v25,0,39,-16,40,-41v0,-23,-16,-41,-40,-40xm135,-136v77,23,53,147,-35,140v-50,-4,-83,-27,-83,-77v0,-35,22,-53,49,-63v-24,-8,-41,-27,-40,-60v2,-41,31,-63,74,-63v43,0,75,22,75,63v0,32,-16,52,-40,60"},"9":{"d":"100,-123v33,0,53,-21,53,-53v0,-32,-20,-53,-53,-53v-33,0,-53,21,-53,53v0,32,20,53,53,53xm100,-259v74,-3,109,77,72,139v-24,41,-50,80,-74,120r-41,0r63,-99v-54,19,-110,-15,-107,-75v2,-53,33,-83,87,-85"},":":{"d":"50,2v-12,0,-24,-12,-24,-24v0,-12,12,-23,24,-23v12,0,24,11,24,23v0,12,-12,24,-24,24xm74,-149v0,12,-12,24,-24,24v-12,0,-24,-12,-24,-24v0,-12,12,-24,24,-24v12,0,24,12,24,24","w":100},";":{"d":"50,-125v-12,0,-24,-12,-24,-24v0,-12,12,-23,24,-23v12,0,24,11,24,23v0,12,-12,24,-24,24xm47,48r-30,0r25,-89r35,0","w":100},"\u037e":{"d":"50,-125v-12,0,-24,-12,-24,-24v0,-12,12,-23,24,-23v12,0,24,11,24,23v0,12,-12,24,-24,24xm47,48r-30,0r25,-89r35,0","w":100},"<":{"d":"216,-15r-192,-79r0,-30r192,-79r0,28r-163,66r163,65r0,29","w":239},"=":{"d":"216,-95r0,28r-192,0r0,-28r192,0xm216,-151r0,28r-192,0r0,-28r192,0","w":239},">":{"d":"24,-203r192,79r0,30r-192,79r0,-29r162,-65r-162,-66r0,-28","w":239},"?":{"d":"93,2v-12,0,-24,-12,-24,-24v0,-12,12,-23,24,-23v11,0,23,12,23,23v0,12,-11,24,-23,24xm96,-261v62,0,93,65,57,109v-18,24,-49,34,-43,81r-34,0v-11,-68,48,-69,58,-122v-1,-23,-15,-38,-38,-38v-25,0,-40,17,-42,40r-37,-3v5,-40,35,-67,79,-67","w":180},"@":{"d":"150,-203v19,0,34,10,39,28r6,-21r26,0r-32,109v0,6,4,9,11,9v29,-6,44,-36,44,-71v0,-58,-38,-89,-94,-89v-66,0,-106,45,-106,111v0,67,42,110,108,110v36,0,67,-14,83,-37r29,0v-21,35,-58,60,-113,60v-82,0,-135,-52,-135,-134v0,-80,53,-133,133,-133v71,0,123,40,123,109v0,57,-36,94,-84,102v-15,2,-20,-14,-25,-23v-10,10,-26,23,-44,23v-33,0,-50,-24,-50,-57v0,-53,29,-96,81,-96xm175,-143v0,-16,-7,-32,-23,-32v-36,0,-51,30,-52,68v0,18,7,29,25,29v32,0,50,-32,50,-65","w":288},"B":{"d":"173,-73v1,-50,-55,-48,-106,-46r0,89v49,0,105,6,106,-43xm162,-187v1,-43,-51,-39,-95,-38r0,76v44,0,95,6,95,-38xm210,-71v0,81,-94,72,-177,71r0,-255v76,1,166,-13,166,64v0,32,-22,46,-44,57v33,4,55,26,55,63","w":226},"C":{"d":"17,-125v-10,-120,146,-180,222,-97r-29,22v-12,-16,-35,-29,-61,-29v-61,0,-95,42,-95,104v0,60,35,99,95,99v32,0,51,-14,66,-34r29,22v-20,24,-49,45,-96,44v-81,-2,-125,-54,-131,-131","w":253},"D":{"d":"213,-127v0,-77,-61,-104,-151,-95r0,190v86,6,151,-17,151,-95xm250,-127v0,110,-99,137,-223,127r0,-255r89,0v86,1,134,48,134,128","w":266},"E":{"d":"33,-255r164,0r0,33r-130,0r0,75r121,0r0,33r-121,0r0,82r137,0r0,32r-171,0r0,-255","w":219},"F":{"d":"33,-255r160,0r0,33r-126,0r0,79r117,0r0,33r-117,0r0,110r-34,0r0,-255","w":206,"k":{"A":20,".":57,",":57}},"G":{"d":"54,-127v-3,85,88,122,161,88r0,-71r-56,0r0,-33r91,0r0,126v-24,15,-58,24,-97,23v-85,-2,-130,-51,-136,-133v-8,-119,147,-174,228,-101r-25,26v-18,-18,-39,-27,-70,-27v-61,0,-94,40,-96,102","w":280},"H":{"d":"33,-255r34,0r0,106r132,0r0,-106r35,0r0,255r-35,0r0,-117r-132,0r0,117r-34,0r0,-255","w":266},"I":{"d":"33,-255r34,0r0,255r-34,0r0,-255","w":100},"J":{"d":"72,-26v33,0,40,-25,40,-58r0,-171r35,0r0,182v12,90,-131,109,-144,24r34,-8v4,18,14,31,35,31","w":173},"K":{"d":"33,-255r34,0r0,110r3,0r113,-110r48,0r-123,118r131,137r-50,0r-119,-127r-3,0r0,127r-34,0r0,-255","w":233},"L":{"d":"33,-255r34,0r0,223r117,0r0,32r-151,0r0,-255","w":186,"k":{"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"30,-255r52,0r82,193r80,-193r52,0r0,255r-35,0r0,-210r-86,210r-23,0r-87,-210r0,210r-35,0r0,-255","w":326},"N":{"d":"33,-255r45,0r141,210r0,-210r35,0r0,255r-44,0r-143,-210r0,210r-34,0r0,-255","w":286},"O":{"d":"54,-127v0,62,35,101,96,101v61,0,96,-41,96,-101v0,-61,-35,-102,-96,-102v-61,0,-96,40,-96,102xm283,-127v0,81,-51,133,-133,133v-82,0,-133,-52,-133,-133v0,-82,50,-134,133,-134v82,0,133,52,133,134","w":299},"P":{"d":"167,-184v0,-49,-53,-40,-100,-41r0,82v47,-1,100,9,100,-41xm204,-184v0,70,-64,76,-137,72r0,112r-34,0r0,-255v81,-1,171,-11,171,71","w":213,"k":{"A":27,".":64,",":64}},"Q":{"d":"54,-133v0,61,35,101,94,101v59,0,94,-40,94,-100v0,-58,-37,-97,-94,-97v-57,0,-94,39,-94,96xm279,-134v0,52,-25,85,-59,104r76,0r0,30r-147,0v-78,-5,-132,-50,-132,-130v0,-80,52,-131,132,-131v79,0,130,51,130,127","w":299},"R":{"d":"167,-184v0,-49,-53,-40,-100,-41r0,82v47,-1,100,9,100,-41xm204,-184v-2,40,-26,63,-63,68r73,116r-43,0r-65,-112r-39,0r0,112r-34,0r0,-255v81,-1,174,-11,171,71","w":219,"k":{"Y":6,"T":6}},"S":{"d":"149,-129v64,38,25,135,-56,135v-35,0,-66,-13,-81,-35r28,-24v20,37,103,37,105,-15v-14,-66,-126,-26,-126,-122v0,-74,119,-95,160,-42r-28,25v-17,-33,-98,-29,-95,17v3,47,61,42,93,61"},"T":{"d":"86,-222r-82,0r0,-33r199,0r0,33r-82,0r0,222r-35,0r0,-222","w":206,"k":{"A":33,"y":40,"w":40,"u":36,"s":40,"r":33,"o":40,"e":40,"c":40,"a":40,";":40,":":40,".":40,"-":46,",":40}},"U":{"d":"127,6v-61,0,-99,-39,-99,-99r0,-162r35,0v8,90,-32,229,64,229v96,0,56,-139,64,-229r34,0r0,162v-2,62,-37,99,-98,99","w":253},"V":{"d":"-2,-255r40,0r75,207r78,-207r38,0r-100,255r-33,0","w":226,"k":{"A":17,"y":6,"u":13,"r":13,"o":20,"i":6,"e":20,"a":20,";":17,":":17,".":46,"-":20,",":46}},"W":{"d":"0,-255r36,0r57,204r60,-204r40,0r61,204r56,-204r36,0r-74,255r-37,0r-62,-208r-62,208r-36,0","w":346,"k":{"A":9,"u":6,"r":6,"o":17,"e":17,"a":17,";":6,":":6,".":32,",":32}},"X":{"d":"92,-134r-86,-121r44,0r67,98r65,-98r43,0r-85,121r94,134r-45,0r-73,-111r-74,111r-43,0","w":233},"Y":{"d":"93,-109r-97,-146r45,0r69,112r72,-112r42,0r-97,146r0,109r-34,0r0,-109","w":220,"k":{"A":27,"v":20,"u":27,"q":33,"p":27,"o":40,"i":13,"e":40,"a":33,";":33,":":33,".":50,"-":40,",":50}},"Z":{"d":"12,-32r145,-190r-141,0r0,-33r184,0r0,33r-145,190r147,0r0,32r-190,0r0,-32","w":213},"[":{"d":"26,-264r63,0r0,24r-33,0r0,272r33,0r0,24r-63,0r0,-320","w":100},"\\":{"d":"0,-261r25,-10r115,277r-25,10","w":140},"]":{"d":"12,32r32,0r0,-272r-32,0r0,-24r62,0r0,320r-62,0r0,-24","w":100},"^":{"d":"105,-255r29,0r77,156r-30,0r-61,-127r-61,127r-30,0","w":239},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"`":{"d":"67,-203r-30,0r-54,-52r47,0","w":86},"a":{"d":"85,-22v36,0,50,-23,49,-60v-38,0,-82,-2,-85,33v-1,22,16,27,36,27xm134,-106v7,-53,-68,-50,-89,-24r-20,-20v34,-37,138,-37,139,32r2,118r-29,0v-2,-8,1,-19,-2,-26v-22,43,-122,41,-119,-21v2,-55,58,-60,118,-59","w":186},"b":{"d":"57,-85v0,36,20,59,56,59v36,0,56,-23,56,-59v0,-37,-20,-60,-56,-60v-36,0,-56,23,-56,60xm204,-85v6,82,-103,116,-147,61r0,24r-33,0r0,-272r33,0r1,126v10,-17,34,-29,59,-29v54,0,83,35,87,90","w":219},"c":{"d":"16,-85v-5,-83,103,-117,155,-63r-24,23v-28,-37,-104,-16,-96,41v-5,54,67,76,96,39r23,23v-14,17,-37,26,-65,26v-56,-1,-86,-34,-89,-89","w":173},"d":{"d":"51,-85v0,36,20,59,56,59v36,0,56,-23,56,-59v0,-37,-20,-60,-56,-60v-36,0,-56,23,-56,60xm16,-85v-6,-83,104,-118,147,-61r0,-126r32,0r0,272r-32,0v-1,-7,2,-18,-1,-24v-10,17,-33,28,-59,28v-54,-2,-83,-35,-87,-89","w":219},"e":{"d":"151,-99v7,-59,-83,-65,-98,-18v-2,6,-4,12,-4,18r102,0xm103,-175v59,0,84,41,83,102r-137,0v-1,53,82,64,104,24r25,18v-46,63,-170,36,-164,-54v4,-54,34,-90,89,-90"},"f":{"d":"116,-245v-28,-11,-46,4,-46,35r0,39r38,0r0,28r-39,0r0,143r-32,0r0,-143r-37,0r0,-28r37,0v-6,-69,10,-120,83,-103","w":119,"k":{"f":6}},"g":{"d":"163,-85v-1,-37,-20,-60,-56,-60v-36,0,-55,23,-56,60v0,34,22,57,56,57v34,0,56,-23,56,-57xm163,-146r0,-25r32,0r0,170v8,91,-123,111,-176,57r22,-28v27,42,129,38,122,-31v-1,-8,2,-19,-1,-25v-10,18,-32,30,-59,30v-54,-1,-82,-36,-87,-87v-7,-82,103,-118,147,-61","w":219},"h":{"d":"104,-145v-63,0,-45,83,-47,145r-33,0r0,-272r33,0r1,128v8,-18,30,-31,56,-31v39,2,62,24,62,65r0,110r-33,0v-5,-56,20,-145,-39,-145"},"i":{"d":"43,-208v-12,0,-24,-12,-24,-24v0,-12,12,-24,24,-24v12,0,24,12,24,24v0,12,-12,24,-24,24xm27,-171r32,0r0,171r-32,0r0,-171","w":86},"j":{"d":"43,-208v-12,0,-24,-12,-24,-24v0,-12,12,-24,24,-24v12,0,24,12,24,24v0,12,-12,24,-24,24xm-10,53v22,9,37,-3,37,-30r0,-194r32,0r0,195v4,45,-27,73,-73,59","w":86},"k":{"d":"24,-272r33,0r0,176r73,-74r45,0r-79,77r86,93r-46,0r-79,-89r0,89r-33,0r0,-272","w":186},"l":{"d":"27,-272r32,0r0,272r-32,0r0,-272","w":86},"m":{"d":"55,-144v15,-37,95,-43,108,1v10,-19,30,-31,54,-32v84,-3,63,96,65,175r-32,0v-6,-55,22,-144,-37,-145v-62,-1,-38,87,-43,145r-33,0v-6,-55,22,-145,-36,-145v-60,0,-41,85,-44,145r-33,0r0,-171r31,0r0,27","w":306},"n":{"d":"104,-145v-63,0,-45,83,-47,145r-33,0r0,-171r33,0v1,8,-2,21,1,27v8,-18,30,-31,56,-31v39,2,62,24,62,65r0,110r-33,0v-5,-56,20,-145,-39,-145"},"o":{"d":"107,4v-55,0,-91,-35,-91,-89v0,-54,36,-90,91,-90v55,0,91,36,91,90v0,54,-37,89,-91,89xm107,-145v-36,0,-56,23,-56,60v0,36,20,59,56,59v36,0,56,-23,56,-59v0,-37,-20,-60,-56,-60","w":213},"p":{"d":"169,-85v0,-37,-20,-60,-56,-60v-36,0,-56,23,-56,60v0,36,20,59,56,59v36,0,56,-23,56,-59xm57,-24r0,126r-33,0r0,-273r33,0v1,8,-2,19,1,25v10,-17,34,-29,59,-29v55,0,83,36,87,90v7,82,-105,117,-147,61","w":219},"q":{"d":"163,-85v0,-37,-20,-60,-56,-60v-36,0,-56,23,-56,60v0,36,20,59,56,59v36,0,56,-23,56,-59xm163,-146r0,-25r32,0r0,253r-32,0r-1,-106v-10,17,-33,28,-59,28v-54,-2,-83,-34,-87,-89v-6,-82,103,-118,147,-61","w":219},"r":{"d":"122,-138v-39,-9,-65,10,-65,52r0,86r-33,0r0,-171r33,0v1,8,-2,21,1,27v9,-21,35,-36,65,-29","w":133,"k":{"q":6,"o":6,"g":6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"17,-122v0,-61,98,-68,123,-25r-25,19v-11,-27,-82,-19,-58,15v29,22,88,9,88,64v0,65,-110,68,-135,23r25,-20v12,21,70,32,76,-2v-15,-41,-94,-16,-94,-74","w":159},"t":{"d":"117,-1v-43,15,-80,-1,-80,-53r0,-89r-37,0r0,-28r37,0r0,-48r32,0r0,48r47,0r0,28r-47,0r1,92v-3,25,28,30,47,20r0,30","w":133},"u":{"d":"96,-26v65,2,44,-84,47,-145r33,0r0,171r-33,0r0,-26v-8,17,-31,30,-57,30v-81,0,-59,-99,-62,-175r33,0v6,55,-21,144,39,145"},"v":{"d":"4,-171r37,0r52,131r48,-131r35,0r-67,171r-36,0","w":180,"k":{".":27,",":27}},"w":{"d":"4,-171r36,0r40,128r40,-128r34,0r44,128r37,-128r34,0r-55,171r-33,0r-45,-127r-41,127r-35,0","w":273,"k":{".":20,",":20}},"x":{"d":"71,-91r-60,-80r42,0r41,61r41,-61r39,0r-58,80r69,91r-42,0r-50,-72r-51,72r-40,0","w":186},"y":{"d":"4,-171r37,0r52,134r48,-134r35,0r-90,228v-8,26,-46,36,-78,25r4,-30v41,17,53,-22,63,-51","w":180,"k":{".":27,",":27}},"z":{"d":"13,-29r96,-114r-93,0r0,-28r133,0r0,29r-98,114r103,0r0,28r-141,0r0,-29","w":166},"{":{"d":"14,-117v71,-13,-19,-169,95,-147r0,26v-70,-12,-2,119,-64,135v36,6,30,58,30,102v0,22,8,36,34,31r0,26v-65,11,-67,-41,-64,-103v0,-22,-12,-41,-31,-42r0,-28","w":119},"|":{"d":"26,-272r28,0r0,278r-28,0r0,-278","w":79},"}":{"d":"105,-90v-63,9,4,149,-68,146r-27,0r0,-26v71,13,2,-118,65,-134v-36,-7,-30,-59,-30,-103v1,-22,-9,-35,-35,-31r0,-26v66,-10,69,41,65,104v-1,23,11,41,30,42r0,28","w":119},"~":{"d":"82,-136v39,1,87,53,109,0r14,22v-17,46,-76,28,-108,10v-23,-13,-42,4,-48,22r-14,-22v11,-16,21,-33,47,-32","w":239},"A":{"d":"175,-93r-49,-117r-48,117r97,0xm113,-255r31,0r109,255r-40,0r-26,-63r-121,0r-25,63r-41,0","w":253,"k":{"y":6,"w":6,"v":6,"Y":27,"W":9,"V":17,"T":33}}}});
Cufon.registerFont({"w":200,"face":{"font-family":"Avenir LT 55 Roman","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 4 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"4","bbox":"-12 -283 345 90","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"!":{"d":"28,-19v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-22,-10,-22,-21xm65,-71r-30,0r0,-184r30,0r0,184","w":100},"\"":{"d":"107,-255r26,0r0,87r-26,0r0,-87xm54,-255r26,0r0,87r-26,0r0,-87","w":186},"#":{"d":"127,-155r-46,0r-7,55r45,0xm46,-77r-35,0r0,-23r39,0r7,-55r-35,0r0,-24r38,0r11,-76r24,0r-10,76r45,0r11,-76r24,0r-11,76r35,0r0,24r-38,0r-8,55r36,0r0,23r-39,0r-11,77r-24,0r11,-77r-46,0r-11,77r-24,0"},"$":{"d":"109,-24v35,1,60,-48,30,-72v-8,-7,-18,-11,-30,-15r0,87xm92,-231v-40,0,-54,65,-15,78v5,2,9,5,15,7r0,-85xm185,-68v-1,46,-32,68,-76,72r0,26r-17,0r0,-26v-34,0,-62,-11,-77,-33r25,-22v9,14,30,27,52,27r0,-91v-36,-11,-71,-27,-71,-73v0,-43,30,-67,71,-71r0,-24r17,0r0,24v29,0,57,11,70,29r-23,22v-10,-13,-26,-23,-47,-23r0,90v38,12,77,23,76,73"},"%":{"d":"221,-266r20,11r-160,267r-20,-12xm223,-96v-22,0,-37,15,-37,37v0,22,14,37,37,37v23,0,37,-15,37,-37v0,-22,-15,-37,-37,-37xm223,4v-38,0,-63,-25,-63,-63v0,-38,25,-63,63,-63v38,0,63,25,63,63v0,38,-25,63,-63,63xm77,-233v-23,0,-37,15,-37,37v0,22,14,37,37,37v22,0,37,-15,37,-37v0,-22,-15,-37,-37,-37xm77,-133v-38,0,-63,-25,-63,-63v0,-38,25,-63,63,-63v38,0,63,25,63,63v0,38,-25,63,-63,63","w":299},"&":{"d":"52,-69v-3,51,71,60,96,26v4,-4,9,-9,13,-14r-64,-67v-21,13,-44,23,-45,55xm114,-234v-26,-1,-47,30,-31,53v6,9,13,17,21,24v18,-11,42,-19,43,-47v0,-18,-15,-30,-33,-30xm177,-203v0,37,-30,50,-54,65r54,57r34,-57r35,0r-49,78r58,60r-42,0r-34,-37v-18,23,-37,42,-76,41v-47,-1,-81,-24,-81,-72v0,-42,27,-60,56,-74v-14,-16,-30,-32,-30,-59v1,-39,27,-59,65,-59v37,0,64,19,64,57","w":259},"(":{"d":"46,-104v0,65,20,106,46,146r-20,14v-66,-76,-67,-243,0,-320r20,15v-27,37,-46,86,-46,145","w":100},")":{"d":"54,-104v0,-64,-20,-106,-46,-146r20,-14v66,77,68,243,0,320r-20,-14v27,-37,46,-86,46,-146","w":100},"*":{"d":"91,-201r51,-18r7,21r-51,18r32,42r-18,14r-32,-44r-31,44r-18,-14r31,-42r-51,-18r7,-21r51,18r0,-54r22,0r0,54","w":159},"+":{"d":"26,-121r82,0r0,-82r24,0r0,82r82,0r0,24r-82,0r0,82r-24,0r0,-82r-82,0r0,-24","w":239},",":{"d":"46,50r-27,0r24,-87r33,0","w":100},"-":{"d":"16,-99r88,0r0,26r-88,0r0,-26","w":119},"\u00ad":{"d":"16,-99r88,0r0,26r-88,0r0,-26","w":119},".":{"d":"28,-19v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-22,-10,-22,-21","w":100},"\/":{"d":"24,15r-23,-9r108,-276r23,9","w":133},"0":{"d":"100,-233v-56,0,-57,69,-55,126v2,43,12,85,55,85v56,0,59,-66,56,-126v-2,-42,-12,-85,-56,-85xm100,4v-69,0,-86,-63,-86,-131v0,-68,17,-132,86,-132v69,0,86,63,86,132v0,69,-17,131,-86,131"},"1":{"d":"130,0r-31,0r0,-216r-46,39r-18,-22r68,-56r27,0r0,255"},"2":{"d":"103,-259v81,-6,94,92,46,138r-97,93r130,0r0,28r-164,0r0,-35v42,-47,97,-81,130,-138v9,-35,-10,-61,-44,-60v-27,0,-44,17,-49,40r-32,-2v6,-41,34,-60,80,-64"},"3":{"d":"147,-72v0,-40,-34,-49,-74,-49r0,-26v39,2,66,-7,68,-44v3,-52,-78,-54,-91,-14r-29,-11v21,-60,150,-59,150,23v0,28,-20,53,-44,59v32,6,51,29,53,65v5,89,-148,97,-167,20r31,-10v8,25,20,37,51,37v32,0,52,-19,52,-50"},"4":{"d":"121,-86r-1,-134r-81,134r82,0xm151,-86r37,0r0,28r-37,0r0,58r-30,0r0,-58r-108,0r0,-34r101,-163r37,0r0,169"},"5":{"d":"149,-80v4,-61,-76,-71,-114,-42r2,-133r134,0r0,28r-104,0r-1,69v58,-21,114,16,114,78v0,90,-134,114,-163,38r30,-12v8,18,23,33,48,32v34,-2,52,-23,54,-58"},"6":{"d":"155,-76v0,-34,-22,-54,-55,-54v-33,0,-55,20,-55,54v0,34,20,54,55,54v35,0,55,-20,55,-54xm100,4v-85,5,-99,-90,-61,-151r68,-108r35,0r-68,107v54,-23,114,11,111,72v-2,52,-33,77,-85,80"},"7":{"d":"173,-227r-102,227r-34,0r103,-227r-123,0r0,-28r156,0r0,28"},"8":{"d":"100,-123v-31,0,-51,20,-51,51v0,30,19,50,51,50v32,0,51,-20,51,-50v0,-31,-20,-51,-51,-51xm100,-233v-25,0,-42,18,-42,42v0,24,17,42,42,42v25,0,43,-18,43,-42v0,-24,-18,-42,-43,-42xm69,-136v-23,-9,-42,-27,-42,-57v0,-42,30,-66,73,-66v43,0,73,24,73,66v0,30,-19,48,-42,57v30,8,50,29,50,66v0,49,-33,74,-81,74v-48,0,-81,-25,-81,-74v0,-37,20,-58,50,-66"},"9":{"d":"45,-179v0,34,22,54,55,54v33,0,55,-20,55,-54v0,-34,-20,-54,-55,-54v-35,0,-55,20,-55,54xm100,-259v84,-6,99,90,61,151r-67,108r-36,0r68,-107v-55,24,-113,-12,-111,-72v1,-52,33,-77,85,-80"},":":{"d":"28,-19v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-22,-10,-22,-21xm28,-151v0,-27,44,-28,44,0v0,11,-10,21,-22,21v-12,0,-22,-10,-22,-21","w":100},";":{"d":"28,-151v0,-27,44,-28,44,0v0,11,-10,21,-22,21v-12,0,-22,-10,-22,-21xm46,50r-27,0r24,-87r33,0","w":100},"\u037e":{"d":"28,-151v0,-27,44,-28,44,0v0,11,-10,21,-22,21v-12,0,-22,-10,-22,-21xm46,50r-27,0r24,-87r33,0","w":100},"<":{"d":"214,-179r-159,70r159,70r0,24r-188,-84r0,-21r188,-83r0,24","w":239},"=":{"d":"26,-93r188,0r0,24r-188,0r0,-24xm26,-149r188,0r0,24r-188,0r0,-24","w":239},">":{"d":"26,-39r159,-70r-159,-70r0,-24r188,83r0,21r-188,84r0,-24","w":239},"?":{"d":"62,-19v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-21,-9,-21,-21xm157,-197v0,61,-68,56,-59,126r-30,0v-12,-74,51,-70,56,-125v2,-24,-15,-39,-38,-39v-25,-1,-41,16,-44,39r-32,-4v7,-38,33,-61,76,-61v43,0,71,22,71,64","w":173},"@":{"d":"152,-205v22,0,33,12,41,30r6,-23r24,0r-34,120v0,5,3,7,9,7v32,-7,50,-39,50,-78v0,-59,-41,-93,-98,-93v-68,0,-110,47,-110,115v0,68,44,111,110,114v39,2,73,-20,91,-44r23,0v-22,36,-57,63,-114,63v-81,0,-134,-52,-134,-133v0,-82,53,-134,134,-134v72,0,122,40,122,110v0,58,-35,97,-84,104v-15,2,-21,-12,-24,-24v-23,39,-101,26,-96,-32v4,-55,29,-102,84,-102xm152,-181v-38,3,-55,39,-58,76v-2,19,14,34,32,34v35,0,55,-40,55,-76v0,-20,-11,-32,-29,-34","w":288},"A":{"d":"179,-91r-52,-125r-52,125r104,0xm114,-255r29,0r108,255r-35,0r-26,-63r-127,0r-27,63r-34,0","w":253,"k":{"y":6,"w":6,"v":6,"Y":27,"W":9,"V":17,"T":33}},"B":{"d":"175,-72v0,-53,-59,-48,-113,-47r0,91v52,1,113,5,113,-44xm162,-188v0,-46,-54,-38,-100,-39r0,80v47,0,101,7,100,-41xm207,-71v0,80,-93,71,-175,71r0,-255v74,0,161,-11,162,63v1,33,-21,49,-45,58v34,4,58,25,58,63","w":226},"C":{"d":"17,-127v-9,-119,148,-177,220,-94r-27,19v-13,-18,-34,-31,-63,-31v-62,2,-98,46,-98,106v0,61,35,105,98,105v35,0,56,-14,73,-35r23,19v-21,28,-50,45,-96,44v-80,-2,-124,-53,-130,-133","w":253},"D":{"d":"217,-127v0,-89,-67,-106,-160,-100r0,199v92,6,160,-9,160,-99xm250,-127v0,80,-48,127,-125,127r-98,0r0,-255r98,0v77,6,125,47,125,128","w":266},"E":{"d":"32,-255r160,0r0,28r-130,0r0,80r121,0r0,28r-121,0r0,91r136,0r0,28r-166,0r0,-255","w":213},"F":{"d":"32,-255r158,0r0,28r-128,0r0,84r119,0r0,29r-119,0r0,114r-30,0r0,-255","k":{"A":20,".":57,",":57}},"G":{"d":"49,-127v-3,88,93,128,169,91r0,-78r-59,0r0,-29r89,0r0,126v-27,14,-56,24,-95,23v-85,-2,-131,-50,-136,-133v-6,-118,143,-173,227,-101r-23,24v-15,-17,-39,-30,-69,-29v-64,2,-100,42,-103,106","w":280},"H":{"d":"32,-255r30,0r0,108r136,0r0,-108r30,0r0,255r-30,0r0,-119r-136,0r0,119r-30,0r0,-255","w":259},"I":{"d":"32,-255r30,0r0,255r-30,0r0,-255","w":93},"J":{"d":"69,-22v34,0,42,-23,43,-54r0,-179r30,0r0,189v6,63,-70,91,-118,59v-12,-8,-20,-23,-23,-41r30,-6v5,18,15,32,38,32","w":173},"K":{"d":"32,-255r30,0r0,110r4,0r116,-110r44,0r-126,116r132,139r-44,0r-122,-130r-4,0r0,130r-30,0r0,-255","w":226},"L":{"d":"32,-255r30,0r0,227r117,0r0,28r-147,0r0,-255","w":180,"k":{"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"32,-255r45,0r87,200r87,-200r44,0r0,255r-30,0r-1,-214r-92,214r-18,0r-92,-214r0,214r-30,0r0,-255","w":326},"N":{"d":"32,-255r38,0r148,212r0,-212r30,0r0,255r-38,0r-148,-212r0,212r-30,0r0,-255","w":280},"O":{"d":"49,-127v0,62,37,105,101,105v63,0,101,-42,101,-105v0,-64,-38,-106,-101,-106v-64,0,-101,43,-101,106xm283,-127v0,81,-51,133,-133,133v-81,0,-133,-52,-133,-133v0,-82,51,-134,133,-134v82,0,133,52,133,134","w":300},"P":{"d":"164,-185v0,-48,-54,-43,-102,-42r0,84v48,1,102,6,102,-42xm197,-185v0,68,-64,74,-135,71r0,114r-30,0r0,-255v79,-1,165,-8,165,70","w":213,"k":{"A":27,".":64,",":64}},"Q":{"d":"148,-233v-61,0,-99,41,-99,102v0,61,38,103,99,103v61,0,99,-42,99,-103v0,-61,-38,-102,-99,-102xm279,-131v0,53,-27,85,-62,105r79,0r0,26r-148,0v-80,-4,-131,-52,-131,-131v0,-79,51,-130,131,-130v80,0,131,51,131,130","w":300},"R":{"d":"166,-185v0,-49,-56,-41,-104,-42r0,84v49,0,104,7,104,-42xm198,-185v-1,40,-26,63,-63,68r72,117r-37,0r-69,-114r-39,0r0,114r-30,0r0,-255v79,0,167,-11,166,70","w":219,"k":{"Y":13,"W":6,"V":6,"T":6}},"S":{"d":"58,-128v-70,-33,-33,-142,48,-133v33,4,56,9,71,30r-24,21v-22,-42,-125,-22,-98,35v24,50,127,23,127,107v0,84,-131,96,-168,39r26,-21v22,48,136,28,105,-35v-14,-28,-57,-29,-87,-43"},"T":{"d":"203,-227r-85,0r0,227r-30,0r0,-227r-84,0r0,-28r199,0r0,28","w":206,"k":{"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":40,"A":33,";":40,":":40,".":40,"-":46,",":40}},"U":{"d":"127,-22v99,-1,57,-142,66,-233r30,0v-4,115,29,261,-96,261v-125,0,-92,-146,-96,-261r30,0v9,92,-34,233,66,233","w":253},"V":{"d":"-3,-255r34,0r79,210r81,-210r32,0r-100,255r-29,0","w":219,"k":{"y":6,"u":13,"r":13,"o":20,"i":6,"e":20,"a":20,"A":17,";":17,":":17,".":46,"-":20,",":46}},"W":{"d":"2,-255r34,0r58,212r63,-212r34,0r63,212r59,-212r32,0r-75,255r-33,0r-64,-216r-63,216r-33,0","w":346,"k":{"u":6,"r":6,"o":21,"e":17,"a":13,"A":9,";":6,":":6,".":27,",":27}},"X":{"d":"92,-134r-86,-121r39,0r69,100r68,-100r38,0r-86,121r94,134r-40,0r-76,-113r-76,113r-37,0","w":226},"Y":{"d":"92,-110r-95,-145r38,0r72,115r74,-115r36,0r-95,145r0,110r-30,0r0,-110","w":213,"k":{"v":20,"u":27,"q":33,"p":27,"o":40,"i":13,"e":40,"a":33,"A":27,";":33,":":33,".":50,"-":40,",":50}},"Z":{"d":"10,-27r148,-200r-145,0r0,-28r181,0r0,26r-147,201r149,0r0,28r-186,0r0,-27","w":206},"[":{"d":"69,-242r-33,0r0,277r33,0r0,21r-59,0r0,-320r59,0r0,22","w":93},"\\":{"d":"1,-261r23,-9r108,276r-23,9","w":133},"]":{"d":"24,-264r59,0r0,320r-59,0r0,-21r33,0r0,-277r-33,0r0,-22","w":93},"^":{"d":"109,-255r22,0r80,156r-27,0r-64,-126r-65,126r-26,0","w":239},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"84,-19v35,0,51,-24,50,-62v-39,0,-87,-3,-87,32v0,22,16,30,37,30xm134,-105v7,-53,-68,-48,-92,-24r-18,-18v39,-41,138,-37,138,45v0,34,-2,71,3,102r-27,0v-3,-6,0,-18,-3,-25v-19,42,-121,40,-118,-21v2,-55,61,-59,117,-59","w":186},"b":{"d":"113,-147v-38,0,-60,24,-60,63v0,37,21,62,60,62v39,0,60,-25,60,-62v0,-39,-22,-63,-60,-63xm119,4v-31,1,-54,-17,-66,-34r0,30r-28,0r0,-272r28,0r1,128v43,-55,156,-24,149,60v-4,53,-31,86,-84,88","w":219},"c":{"d":"17,-84v-6,-83,102,-115,152,-62r-22,20v-30,-40,-108,-17,-100,42v-5,56,68,83,100,42r21,19v-14,17,-36,27,-64,27v-55,-1,-83,-34,-87,-88","w":173},"d":{"d":"107,-22v39,0,60,-25,60,-62v0,-38,-22,-63,-60,-63v-38,0,-60,24,-60,63v0,37,21,62,60,62xm17,-84v-6,-85,105,-114,150,-60r0,-128r28,0r0,272r-28,0v-1,-9,2,-23,-1,-30v-10,19,-35,35,-65,34v-53,-2,-80,-35,-84,-88","w":219},"e":{"d":"153,-99v4,-45,-59,-62,-89,-35v-10,9,-15,21,-17,35r106,0xm47,-76v-2,57,83,71,109,29r21,16v-18,24,-37,36,-75,35v-53,-1,-85,-35,-85,-88v0,-55,33,-89,86,-89v56,0,81,38,80,97r-136,0"},"f":{"d":"118,-247v-47,-19,-54,28,-49,79r41,0r0,23r-41,0r0,145r-28,0r0,-145r-37,0r0,-23r37,0v-8,-68,13,-124,81,-104","w":113,"k":{"f":6}},"g":{"d":"107,-147v-38,0,-60,25,-60,63v0,36,23,60,60,60v38,0,60,-24,60,-61v0,-37,-22,-62,-60,-62xm167,-140r0,-28r28,0r0,160v12,98,-120,120,-175,62r20,-23v32,46,138,38,127,-39v-1,-6,2,-16,-1,-21v-11,19,-32,31,-59,31v-55,-1,-85,-32,-90,-86v-8,-86,113,-117,150,-56","w":219},"h":{"d":"107,-147v-67,-1,-50,83,-52,147r-28,0r0,-272r28,0r0,127v10,-16,29,-27,54,-28v83,-4,63,96,65,173r-29,0v-6,-56,22,-146,-38,-147"},"i":{"d":"43,-214v-11,0,-21,-8,-20,-20v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20xm29,-168r28,0r0,168r-28,0r0,-168","w":86},"j":{"d":"43,-214v-11,0,-21,-8,-20,-20v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20xm-9,58v25,8,38,-7,38,-33r0,-193r28,0r0,206v2,36,-32,56,-69,45","w":86},"k":{"d":"27,-272r28,0r0,178r76,-74r40,0r-81,76r90,92r-42,0r-83,-89r0,89r-28,0r0,-272","w":180},"l":{"d":"29,-272r28,0r0,272r-28,0r0,-272","w":86},"m":{"d":"107,-147v-67,-3,-50,83,-52,147r-28,0r-2,-168r27,0r1,27v14,-40,98,-42,110,0v12,-18,25,-31,53,-32v84,-4,61,96,64,173r-28,0v-6,-57,22,-147,-41,-147v-61,0,-41,87,-44,147r-28,0v-7,-52,21,-145,-32,-147","w":306},"n":{"d":"107,-147v-67,-1,-50,83,-52,147r-28,0r-2,-168r27,0r1,27v10,-19,29,-31,56,-32v83,-4,63,96,65,173r-29,0v-6,-56,22,-146,-38,-147"},"o":{"d":"107,-147v-38,0,-60,24,-60,63v0,37,21,62,60,62v39,0,60,-25,60,-62v0,-38,-22,-63,-60,-63xm107,4v-56,0,-90,-33,-90,-88v0,-55,35,-89,90,-89v55,0,90,34,90,89v0,55,-34,88,-90,88","w":213},"p":{"d":"113,-147v-38,0,-60,24,-60,63v0,37,21,62,60,62v39,0,60,-25,60,-62v0,-39,-22,-63,-60,-63xm119,4v-31,1,-54,-17,-66,-34r0,112r-28,0r0,-250r28,0v1,7,-2,18,1,24v43,-55,156,-24,149,60v-4,53,-31,86,-84,88","w":219},"q":{"d":"107,-22v39,0,60,-25,60,-62v0,-38,-22,-63,-60,-63v-38,0,-60,24,-60,63v0,37,21,62,60,62xm167,-139r0,-29r28,0r0,250r-28,0r-1,-106v-14,16,-33,28,-61,28v-55,-1,-84,-33,-88,-88v-6,-86,112,-117,150,-55","w":219},"r":{"d":"119,-143v-42,-10,-64,18,-64,61r0,82r-28,0r-2,-168r27,0r1,27v10,-21,37,-36,68,-30","w":126,"k":{"q":6,"o":6,"g":6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"125,-84v54,55,-25,108,-89,82v-10,-4,-20,-13,-28,-25r22,-17v13,26,77,34,81,-4v-13,-45,-96,-15,-96,-75v0,-59,100,-66,120,-19r-23,15v-10,-30,-84,-23,-65,13v19,17,60,12,78,30","w":153},"t":{"d":"69,-60v-8,36,25,45,50,33r1,25v-39,17,-79,2,-79,-50r0,-93r-37,0r0,-23r37,0r0,-48r28,0r0,48r50,0r0,23r-50,0r0,85","w":126},"u":{"d":"93,-22v68,2,50,-82,52,-146r29,0r1,168r-27,0v-1,-9,2,-21,-1,-28v-10,18,-27,32,-56,32v-83,0,-62,-95,-64,-172r28,0v6,55,-22,145,38,146"},"v":{"d":"103,0r-31,0r-68,-168r32,0r54,132r50,-132r30,0","w":173,"k":{".":27,",":27}},"w":{"d":"207,0r-27,0r-49,-130r-42,130r-29,0r-55,-168r31,0r39,129r44,-129r29,0r45,129r38,-129r31,0","w":266,"k":{".":20,",":20}},"x":{"d":"70,-91r-60,-77r36,0r45,60r42,-60r34,0r-58,77r70,91r-37,0r-53,-73r-53,73r-35,0","w":180},"y":{"d":"170,-168r-90,226v-8,23,-43,36,-73,24r4,-24v43,14,53,-26,62,-57r-69,-169r32,0r53,132r50,-132r31,0","w":173,"k":{".":27,",":27}},"z":{"d":"11,-22r99,-123r-95,0r0,-23r132,0r0,21r-99,123r101,0r0,24r-138,0r0,-22","w":159},"{":{"d":"12,-114v73,-15,-21,-171,94,-150r0,22v-77,-17,-1,121,-68,139v42,7,29,71,31,120v1,17,17,20,37,18r0,21v-39,4,-63,-9,-63,-45v0,-43,10,-100,-31,-104r0,-21","w":119},"|":{"d":"52,-270r0,360r-24,0r0,-360r24,0","w":79},"}":{"d":"51,-213v1,-25,-11,-32,-37,-29r0,-22v67,-11,63,47,63,109v0,22,11,39,31,41r0,21v-72,7,23,168,-94,149r0,-21v77,17,1,-123,68,-139v-38,-7,-32,-63,-31,-109","w":119},"~":{"d":"157,-85v-38,0,-90,-49,-108,1r-12,-18v12,-14,20,-30,45,-31v32,0,46,24,78,24v17,0,25,-14,31,-25r12,17v-11,15,-21,32,-46,32","w":239},"'":{"d":"37,-255r26,0r0,87r-26,0r0,-87","w":100},"`":{"d":"68,-203r-26,0r-51,-52r40,0","w":86},"\u00a0":{"w":100}}});

Cufon.replace('.cf', { fontFamily: 'Avenir LT 65 Medium' });
Cufon.replace('.cf-1', { fontFamily: 'Avenir LT 55 Roman' });


/**
 * Compact labels plugin
 */
(function($){$.fn.compactize=function(){return this.each(function(){var label=$(this),input=$('#'+label.attr('for'));input.focus(function(){label.hide();}).blur(function(){if(input.val()===''){label.show();}});window.setTimeout(function(){if(input.val()!==''){label.hide();}},50);});};})(jQuery);

/*
 * hrefID jQuery extention - returns a valid #hash string from link href attribute in Internet Explorer
 */
(function($){$.fn.extend({hrefId:function(){return $(this).attr('href').substr($(this).attr('href').indexOf('#'));}});})(jQuery);
 
/*
 * Scripts
 *
 */
jQuery(function($) {
 
	var Engine = {
		utils : {
			links : function(){
				$('a[rel*=external]').click(function(e){
					e.preventDefault();
					window.open($(this).attr('href'));						  
				});
			},
			mails : function(){
				$('a[href^=mailto:]').each(function(){
					var mail = $(this).attr('href').replace('mailto:','');
					var replaced = mail.replace('/at/','@');
					$(this).attr('href','mailto:'+replaced);
					if($(this).text() == mail) {
						$(this).text(replaced);
					}
				});
			}
		},
		ui : {
			tabsInit : function () {
				//add nav elements				
				$(".panes").before('<a class="backward">Previous</a>');
				$(".panes").after('<a class="forward">Next</a>');
										
				$(".tabs-container").scrollable({size: 1, items: "div.panes", clickable: false, next: '.forward', prev: '.backward'}).circular().navigator({ navi:'ul.tabs' });
				
				if($.browser.msie && jQuery.browser.version.substr(0,1) == "6"){
					$("ul.tabs li").hover(
						function () {
							$(this).find('a').addClass('hover');
						},
						function () {
							$(this).find('a').removeClass('hover');
						}
					)
				}
			}
		},
		fixes : {
			ie6MenuFix : function () {
				if($.browser.msie && jQuery.browser.version.substr(0,1) == "6"){
					$('#nav ul li:first-child').addClass('first-child');
					$('#nav li').hover(
						function () {
							$(this).addClass('hover');
							
						},
						function () {							
							$(this).removeClass('hover');
						}					
					);
				}
			}
		}
	};

	Engine.utils.links();
	Engine.utils.mails();
	Engine.ui.tabsInit();
	Engine.fixes.ie6MenuFix();	
});