/*
	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
	Available via Academic Free License >= 2.1 OR the modified BSD license.
	see: http://dojotoolkit.org/license for details
*/

/*
	This is a compiled version of Dojo, built for deployment and not for
	development. To get an editable version, please visit:

		http://dojotoolkit.org

	for documentation and information on getting the source.
*/

if(!dojo._hasResource["dojo.date.stamp"]){dojo._hasResource["dojo.date.stamp"]=true;dojo.provide("dojo.date.stamp");dojo.date.stamp.fromISOString=function(_1,_2){if(!dojo.date.stamp._isoRegExp){dojo.date.stamp._isoRegExp=/^(?:(\d{4})(?:-(\d{2})(?:-(\d{2}))?)?)?(?:T(\d{2}):(\d{2})(?::(\d{2})(.\d+)?)?((?:[+-](\d{2}):(\d{2}))|Z)?)?$/;}var _3=dojo.date.stamp._isoRegExp.exec(_1),_4=null;if(_3){_3.shift();if(_3[1]){_3[1]--;}if(_3[6]){_3[6]*=1000;}if(_2){_2=new Date(_2);dojo.map(["FullYear","Month","Date","Hours","Minutes","Seconds","Milliseconds"],function(_5){return _2["get"+_5]();}).forEach(function(_6,_7){if(_3[_7]===undefined){_3[_7]=_6;}});}_4=new Date(_3[0]||1970,_3[1]||0,_3[2]||1,_3[3]||0,_3[4]||0,_3[5]||0,_3[6]||0);if(_3[0]<100){_4.setFullYear(_3[0]||1970);}var _8=0,_9=_3[7]&&_3[7].charAt(0);if(_9!="Z"){_8=((_3[8]||0)*60)+(Number(_3[9])||0);if(_9!="-"){_8*=-1;}}if(_9){_8-=_4.getTimezoneOffset();}if(_8){_4.setTime(_4.getTime()+_8*60000);}}return _4;};dojo.date.stamp.toISOString=function(_a,_b){var _c=function(n){return (n<10)?"0"+n:n;};_b=_b||{};var _d=[],_e=_b.zulu?"getUTC":"get",_f="";if(_b.selector!="time"){var _10=_a[_e+"FullYear"]();_f=["0000".substr((_10+"").length)+_10,_c(_a[_e+"Month"]()+1),_c(_a[_e+"Date"]())].join("-");}_d.push(_f);if(_b.selector!="date"){var _11=[_c(_a[_e+"Hours"]()),_c(_a[_e+"Minutes"]()),_c(_a[_e+"Seconds"]())].join(":");var _12=_a[_e+"Milliseconds"]();if(_b.milliseconds){_11+="."+(_12<100?"0":"")+_c(_12);}if(_b.zulu){_11+="Z";}else{if(_b.selector!="time"){var _13=_a.getTimezoneOffset();var _14=Math.abs(_13);_11+=(_13>0?"-":"+")+_c(Math.floor(_14/60))+":"+_c(_14%60);}}_d.push(_11);}return _d.join("T");};}if(!dojo._hasResource["dojo.parser"]){dojo._hasResource["dojo.parser"]=true;dojo.provide("dojo.parser");dojo.parser=new function(){var d=dojo;this._attrName=d._scopeName+"Type";this._query="["+this._attrName+"]";function _15(_16){if(d.isString(_16)){return "string";}if(typeof _16=="number"){return "number";}if(typeof _16=="boolean"){return "boolean";}if(d.isFunction(_16)){return "function";}if(d.isArray(_16)){return "array";}if(_16 instanceof Date){return "date";}if(_16 instanceof d._Url){return "url";}return "object";};function _17(_18,_19){switch(_19){case "string":return _18;case "number":return _18.length?Number(_18):NaN;case "boolean":return typeof _18=="boolean"?_18:!(_18.toLowerCase()=="false");case "function":if(d.isFunction(_18)){_18=_18.toString();_18=d.trim(_18.substring(_18.indexOf("{")+1,_18.length-1));}try{if(_18.search(/[^\w\.]+/i)!=-1){return new Function(_18);}else{return d.getObject(_18,false);}}catch(e){return new Function();}case "array":return _18?_18.split(/\s*,\s*/):[];case "date":switch(_18){case "":return new Date("");case "now":return new Date();default:return d.date.stamp.fromISOString(_18);}case "url":return d.baseUrl+_18;default:return d.fromJson(_18);}};var _1a={};dojo.connect(dojo,"extend",function(){_1a={};});function _1b(_1c){if(!_1a[_1c]){var cls=d.getObject(_1c);if(!d.isFunction(cls)){throw new Error("Could not load class '"+_1c+"'. Did you spell the name correctly and use a full path, like 'dijit.form.Button'?");}var _1d=cls.prototype;var _1e={},_1f={};for(var _20 in _1d){if(_20.charAt(0)=="_"){continue;}if(_20 in _1f){continue;}var _21=_1d[_20];_1e[_20]=_15(_21);}_1a[_1c]={cls:cls,params:_1e};}return _1a[_1c];};this._functionFromScript=function(_22){var _23="";var _24="";var _25=_22.getAttribute("args");if(_25){d.forEach(_25.split(/\s*,\s*/),function(_26,idx){_23+="var "+_26+" = arguments["+idx+"]; ";});}var _27=_22.getAttribute("with");if(_27&&_27.length){d.forEach(_27.split(/\s*,\s*/),function(_28){_23+="with("+_28+"){";_24+="}";});}return new Function(_23+_22.innerHTML+_24);};this.instantiate=function(_29,_2a,_2b){var _2c=[],dp=dojo.parser;_2a=_2a||{};_2b=_2b||{};d.forEach(_29,function(_2d){if(!_2d){return;}var _2e=dp._attrName in _2a?_2a[dp._attrName]:_2d.getAttribute(dp._attrName);if(!_2e||!_2e.length){return;}var _2f=_1b(_2e),_30=_2f.cls,ps=_30._noScript||_30.prototype._noScript;var _31={},_32=_2d.attributes;for(var _33 in _2f.params){var _34=_33 in _2a?{value:_2a[_33],specified:true}:_32.getNamedItem(_33);if(!_34||(!_34.specified&&(!dojo.isIE||_33.toLowerCase()!="value"))){continue;}var _35=_34.value;switch(_33){case "class":_35="className" in _2a?_2a.className:_2d.className;break;case "style":_35="style" in _2a?_2a.style:(_2d.style&&_2d.style.cssText);}var _36=_2f.params[_33];if(typeof _35=="string"){_31[_33]=_17(_35,_36);}else{_31[_33]=_35;}}if(!ps){var _37=[],_38=[];d.query("> script[type^='dojo/']",_2d).orphan().forEach(function(_39){var _3a=_39.getAttribute("event"),_2e=_39.getAttribute("type"),nf=d.parser._functionFromScript(_39);if(_3a){if(_2e=="dojo/connect"){_37.push({event:_3a,func:nf});}else{_31[_3a]=nf;}}else{_38.push(nf);}});}var _3b=_30.markupFactory||_30.prototype&&_30.prototype.markupFactory;var _3c=_3b?_3b(_31,_2d,_30):new _30(_31,_2d);_2c.push(_3c);var _3d=_2d.getAttribute("jsId");if(_3d){d.setObject(_3d,_3c);}if(!ps){d.forEach(_37,function(_3e){d.connect(_3c,_3e.event,null,_3e.func);});d.forEach(_38,function(_3f){_3f.call(_3c);});}});if(!_2a._started){d.forEach(_2c,function(_40){if(!_2b.noStart&&_40&&_40.startup&&!_40._started&&(!_40.getParent||!_40.getParent())){_40.startup();}});}return _2c;};this.parse=function(_41,_42){var _43;if(!_42&&_41&&_41.rootNode){_42=_41;_43=_42.rootNode;}else{_43=_41;}var _44=d.query(this._query,_43);return this.instantiate(_44,null,_42);};}();(function(){var _45=function(){if(dojo.config.parseOnLoad){dojo.parser.parse();}};if(dojo.exists("dijit.wai.onload")&&(dijit.wai.onload===dojo._loaders[0])){dojo._loaders.splice(1,0,_45);}else{dojo._loaders.unshift(_45);}})();}if(!dojo._hasResource["dojo.fx.Toggler"]){dojo._hasResource["dojo.fx.Toggler"]=true;dojo.provide("dojo.fx.Toggler");dojo.declare("dojo.fx.Toggler",null,{node:null,showFunc:dojo.fadeIn,hideFunc:dojo.fadeOut,showDuration:200,hideDuration:200,constructor:function(_46){var _47=this;dojo.mixin(_47,_46);_47.node=_46.node;_47._showArgs=dojo.mixin({},_46);_47._showArgs.node=_47.node;_47._showArgs.duration=_47.showDuration;_47.showAnim=_47.showFunc(_47._showArgs);_47._hideArgs=dojo.mixin({},_46);_47._hideArgs.node=_47.node;_47._hideArgs.duration=_47.hideDuration;_47.hideAnim=_47.hideFunc(_47._hideArgs);dojo.connect(_47.showAnim,"beforeBegin",dojo.hitch(_47.hideAnim,"stop",true));dojo.connect(_47.hideAnim,"beforeBegin",dojo.hitch(_47.showAnim,"stop",true));},show:function(_48){return this.showAnim.play(_48||0);},hide:function(_49){return this.hideAnim.play(_49||0);}});}if(!dojo._hasResource["dojo.fx"]){dojo._hasResource["dojo.fx"]=true;dojo.provide("dojo.fx");(function(){var d=dojo,_4a={_fire:function(evt,_4b){if(this[evt]){this[evt].apply(this,_4b||[]);}return this;}};var _4c=function(_4d){this._index=-1;this._animations=_4d||[];this._current=this._onAnimateCtx=this._onEndCtx=null;this.duration=0;d.forEach(this._animations,function(a){this.duration+=a.duration;if(a.delay){this.duration+=a.delay;}},this);};d.extend(_4c,{_onAnimate:function(){this._fire("onAnimate",arguments);},_onEnd:function(){d.disconnect(this._onAnimateCtx);d.disconnect(this._onEndCtx);this._onAnimateCtx=this._onEndCtx=null;if(this._index+1==this._animations.length){this._fire("onEnd");}else{this._current=this._animations[++this._index];this._onAnimateCtx=d.connect(this._current,"onAnimate",this,"_onAnimate");this._onEndCtx=d.connect(this._current,"onEnd",this,"_onEnd");this._current.play(0,true);}},play:function(_4e,_4f){if(!this._current){this._current=this._animations[this._index=0];}if(!_4f&&this._current.status()=="playing"){return this;}var _50=d.connect(this._current,"beforeBegin",this,function(){this._fire("beforeBegin");}),_51=d.connect(this._current,"onBegin",this,function(arg){this._fire("onBegin",arguments);}),_52=d.connect(this._current,"onPlay",this,function(arg){this._fire("onPlay",arguments);d.disconnect(_50);d.disconnect(_51);d.disconnect(_52);});if(this._onAnimateCtx){d.disconnect(this._onAnimateCtx);}this._onAnimateCtx=d.connect(this._current,"onAnimate",this,"_onAnimate");if(this._onEndCtx){d.disconnect(this._onEndCtx);}this._onEndCtx=d.connect(this._current,"onEnd",this,"_onEnd");this._current.play.apply(this._current,arguments);return this;},pause:function(){if(this._current){var e=d.connect(this._current,"onPause",this,function(arg){this._fire("onPause",arguments);d.disconnect(e);});this._current.pause();}return this;},gotoPercent:function(_53,_54){this.pause();var _55=this.duration*_53;this._current=null;d.some(this._animations,function(a){if(a.duration<=_55){this._current=a;return true;}_55-=a.duration;return false;});if(this._current){this._current.gotoPercent(_55/this._current.duration,_54);}return this;},stop:function(_56){if(this._current){if(_56){for(;this._index+1<this._animations.length;++this._index){this._animations[this._index].stop(true);}this._current=this._animations[this._index];}var e=d.connect(this._current,"onStop",this,function(arg){this._fire("onStop",arguments);d.disconnect(e);});this._current.stop();}return this;},status:function(){return this._current?this._current.status():"stopped";},destroy:function(){if(this._onAnimateCtx){d.disconnect(this._onAnimateCtx);}if(this._onEndCtx){d.disconnect(this._onEndCtx);}}});d.extend(_4c,_4a);dojo.fx.chain=function(_57){return new _4c(_57);};var _58=function(_59){this._animations=_59||[];this._connects=[];this._finished=0;this.duration=0;d.forEach(_59,function(a){var _5a=a.duration;if(a.delay){_5a+=a.delay;}if(this.duration<_5a){this.duration=_5a;}this._connects.push(d.connect(a,"onEnd",this,"_onEnd"));},this);this._pseudoAnimation=new d.Animation({curve:[0,1],duration:this.duration});var _5b=this;d.forEach(["beforeBegin","onBegin","onPlay","onAnimate","onPause","onStop","onEnd"],function(evt){_5b._connects.push(d.connect(_5b._pseudoAnimation,evt,function(){_5b._fire(evt,arguments);}));});};d.extend(_58,{_doAction:function(_5c,_5d){d.forEach(this._animations,function(a){a[_5c].apply(a,_5d);});return this;},_onEnd:function(){if(++this._finished>this._animations.length){this._fire("onEnd");}},_call:function(_5e,_5f){var t=this._pseudoAnimation;t[_5e].apply(t,_5f);},play:function(_60,_61){this._finished=0;this._doAction("play",arguments);this._call("play",arguments);return this;},pause:function(){this._doAction("pause",arguments);this._call("pause",arguments);return this;},gotoPercent:function(_62,_63){var ms=this.duration*_62;d.forEach(this._animations,function(a){a.gotoPercent(a.duration<ms?1:(ms/a.duration),_63);});this._call("gotoPercent",arguments);return this;},stop:function(_64){this._doAction("stop",arguments);this._call("stop",arguments);return this;},status:function(){return this._pseudoAnimation.status();},destroy:function(){d.forEach(this._connects,dojo.disconnect);}});d.extend(_58,_4a);dojo.fx.combine=function(_65){return new _58(_65);};dojo.fx.wipeIn=function(_66){var _67=_66.node=d.byId(_66.node),s=_67.style,o;var _68=d.animateProperty(d.mixin({properties:{height:{start:function(){o=s.overflow;s.overflow="hidden";if(s.visibility=="hidden"||s.display=="none"){s.height="1px";s.display="";s.visibility="";return 1;}else{var _69=d.style(_67,"height");return Math.max(_69,1);}},end:function(){return _67.scrollHeight;}}}},_66));d.connect(_68,"onEnd",function(){s.height="auto";s.overflow=o;});return _68;};dojo.fx.wipeOut=function(_6a){var _6b=_6a.node=d.byId(_6a.node),s=_6b.style,o;var _6c=d.animateProperty(d.mixin({properties:{height:{end:1}}},_6a));d.connect(_6c,"beforeBegin",function(){o=s.overflow;s.overflow="hidden";s.display="";});d.connect(_6c,"onEnd",function(){s.overflow=o;s.height="auto";s.display="none";});return _6c;};dojo.fx.slideTo=function(_6d){var _6e=_6d.node=d.byId(_6d.node),top=null,_6f=null;var _70=(function(n){return function(){var cs=d.getComputedStyle(n);var pos=cs.position;top=(pos=="absolute"?n.offsetTop:parseInt(cs.top)||0);_6f=(pos=="absolute"?n.offsetLeft:parseInt(cs.left)||0);if(pos!="absolute"&&pos!="relative"){var ret=d.position(n,true);top=ret.y;_6f=ret.x;n.style.position="absolute";n.style.top=top+"px";n.style.left=_6f+"px";}};})(_6e);_70();var _71=d.animateProperty(d.mixin({properties:{top:_6d.top||0,left:_6d.left||0}},_6d));d.connect(_71,"beforeBegin",_71,_70);return _71;};})();}if(!dojo._hasResource["dojo.NodeList-fx"]){dojo._hasResource["dojo.NodeList-fx"]=true;dojo.provide("dojo.NodeList-fx");dojo.extend(dojo.NodeList,{_anim:function(obj,_72,_73){_73=_73||{};return dojo.fx.combine(this.map(function(_74){var _75={node:_74};dojo.mixin(_75,_73);return obj[_72](_75);}));},wipeIn:function(_76){return this._anim(dojo.fx,"wipeIn",_76);},wipeOut:function(_77){return this._anim(dojo.fx,"wipeOut",_77);},slideTo:function(_78){return this._anim(dojo.fx,"slideTo",_78);},fadeIn:function(_79){return this._anim(dojo,"fadeIn",_79);},fadeOut:function(_7a){return this._anim(dojo,"fadeOut",_7a);},animateProperty:function(_7b){return this._anim(dojo,"animateProperty",_7b);},anim:function(_7c,_7d,_7e,_7f,_80){var _81=dojo.fx.combine(this.map(function(_82){return dojo.animateProperty({node:_82,properties:_7c,duration:_7d||350,easing:_7e});}));if(_7f){dojo.connect(_81,"onEnd",_7f);}return _81.play(_80||0);}});}if(!dojo._hasResource["dojo.dnd.common"]){dojo._hasResource["dojo.dnd.common"]=true;dojo.provide("dojo.dnd.common");dojo.dnd.getCopyKeyState=dojo.isCopyKeyPressed;dojo.dnd._uniqueId=0;dojo.dnd.getUniqueId=function(){var id;do{id=dojo._scopeName+"Unique"+(++dojo.dnd._uniqueId);}while(dojo.byId(id));return id;};dojo.dnd._empty={};dojo.dnd.isFormElement=function(e){var t=e.target;if(t.nodeType==3){t=t.parentNode;}return " button textarea input select option ".indexOf(" "+t.tagName.toLowerCase()+" ")>=0;};}if(!dojo._hasResource["dojo.dnd.autoscroll"]){dojo._hasResource["dojo.dnd.autoscroll"]=true;dojo.provide("dojo.dnd.autoscroll");dojo.dnd.getViewport=function(){var d=dojo.doc,dd=d.documentElement,w=window,b=dojo.body();if(dojo.isMozilla){return {w:dd.clientWidth,h:w.innerHeight};}else{if(!dojo.isOpera&&w.innerWidth){return {w:w.innerWidth,h:w.innerHeight};}else{if(!dojo.isOpera&&dd&&dd.clientWidth){return {w:dd.clientWidth,h:dd.clientHeight};}else{if(b.clientWidth){return {w:b.clientWidth,h:b.clientHeight};}}}}return null;};dojo.dnd.V_TRIGGER_AUTOSCROLL=32;dojo.dnd.H_TRIGGER_AUTOSCROLL=32;dojo.dnd.V_AUTOSCROLL_VALUE=16;dojo.dnd.H_AUTOSCROLL_VALUE=16;dojo.dnd.autoScroll=function(e){var v=dojo.dnd.getViewport(),dx=0,dy=0;if(e.clientX<dojo.dnd.H_TRIGGER_AUTOSCROLL){dx=-dojo.dnd.H_AUTOSCROLL_VALUE;}else{if(e.clientX>v.w-dojo.dnd.H_TRIGGER_AUTOSCROLL){dx=dojo.dnd.H_AUTOSCROLL_VALUE;}}if(e.clientY<dojo.dnd.V_TRIGGER_AUTOSCROLL){dy=-dojo.dnd.V_AUTOSCROLL_VALUE;}else{if(e.clientY>v.h-dojo.dnd.V_TRIGGER_AUTOSCROLL){dy=dojo.dnd.V_AUTOSCROLL_VALUE;}}window.scrollBy(dx,dy);};dojo.dnd._validNodes={"div":1,"p":1,"td":1};dojo.dnd._validOverflow={"auto":1,"scroll":1};dojo.dnd.autoScrollNodes=function(e){for(var n=e.target;n;){if(n.nodeType==1&&(n.tagName.toLowerCase() in dojo.dnd._validNodes)){var s=dojo.getComputedStyle(n);if(s.overflow.toLowerCase() in dojo.dnd._validOverflow){var b=dojo._getContentBox(n,s),t=dojo.position(n,true);var w=Math.min(dojo.dnd.H_TRIGGER_AUTOSCROLL,b.w/2),h=Math.min(dojo.dnd.V_TRIGGER_AUTOSCROLL,b.h/2),rx=e.pageX-t.x,ry=e.pageY-t.y,dx=0,dy=0;if(dojo.isWebKit||dojo.isOpera){rx+=dojo.body().scrollLeft,ry+=dojo.body().scrollTop;}if(rx>0&&rx<b.w){if(rx<w){dx=-w;}else{if(rx>b.w-w){dx=w;}}}if(ry>0&&ry<b.h){if(ry<h){dy=-h;}else{if(ry>b.h-h){dy=h;}}}var _83=n.scrollLeft,_84=n.scrollTop;n.scrollLeft=n.scrollLeft+dx;n.scrollTop=n.scrollTop+dy;if(_83!=n.scrollLeft||_84!=n.scrollTop){return;}}}try{n=n.parentNode;}catch(x){n=null;}}dojo.dnd.autoScroll(e);};}if(!dojo._hasResource["dojo.dnd.Mover"]){dojo._hasResource["dojo.dnd.Mover"]=true;dojo.provide("dojo.dnd.Mover");dojo.declare("dojo.dnd.Mover",null,{constructor:function(_85,e,_86){this.node=dojo.byId(_85);this.marginBox={l:e.pageX,t:e.pageY};this.mouseButton=e.button;var h=this.host=_86,d=_85.ownerDocument,_87=dojo.connect(d,"onmousemove",this,"onFirstMove");this.events=[dojo.connect(d,"onmousemove",this,"onMouseMove"),dojo.connect(d,"onmouseup",this,"onMouseUp"),dojo.connect(d,"ondragstart",dojo.stopEvent),dojo.connect(d.body,"onselectstart",dojo.stopEvent),_87];if(h&&h.onMoveStart){h.onMoveStart(this);}},onMouseMove:function(e){dojo.dnd.autoScroll(e);var m=this.marginBox;this.host.onMove(this,{l:m.l+e.pageX,t:m.t+e.pageY});dojo.stopEvent(e);},onMouseUp:function(e){if(dojo.isWebKit&&dojo.isMac&&this.mouseButton==2?e.button==0:this.mouseButton==e.button){this.destroy();}dojo.stopEvent(e);},onFirstMove:function(){var s=this.node.style,l,t,h=this.host;switch(s.position){case "relative":case "absolute":l=Math.round(parseFloat(s.left));t=Math.round(parseFloat(s.top));break;default:s.position="absolute";var m=dojo.marginBox(this.node);var b=dojo.doc.body;var bs=dojo.getComputedStyle(b);var bm=dojo._getMarginBox(b,bs);var bc=dojo._getContentBox(b,bs);l=m.l-(bc.l-bm.l);t=m.t-(bc.t-bm.t);break;}this.marginBox.l=l-this.marginBox.l;this.marginBox.t=t-this.marginBox.t;if(h&&h.onFirstMove){h.onFirstMove(this);}dojo.disconnect(this.events.pop());},destroy:function(){dojo.forEach(this.events,dojo.disconnect);var h=this.host;if(h&&h.onMoveStop){h.onMoveStop(this);}this.events=this.node=this.host=null;}});}if(!dojo._hasResource["dojo.dnd.Moveable"]){dojo._hasResource["dojo.dnd.Moveable"]=true;dojo.provide("dojo.dnd.Moveable");dojo.declare("dojo.dnd.Moveable",null,{handle:"",delay:0,skip:false,constructor:function(_88,_89){this.node=dojo.byId(_88);if(!_89){_89={};}this.handle=_89.handle?dojo.byId(_89.handle):null;if(!this.handle){this.handle=this.node;}this.delay=_89.delay>0?_89.delay:0;this.skip=_89.skip;this.mover=_89.mover?_89.mover:dojo.dnd.Mover;this.events=[dojo.connect(this.handle,"onmousedown",this,"onMouseDown"),dojo.connect(this.handle,"ondragstart",this,"onSelectStart"),dojo.connect(this.handle,"onselectstart",this,"onSelectStart")];},markupFactory:function(_8a,_8b){return new dojo.dnd.Moveable(_8b,_8a);},destroy:function(){dojo.forEach(this.events,dojo.disconnect);this.events=this.node=this.handle=null;},onMouseDown:function(e){if(this.skip&&dojo.dnd.isFormElement(e)){return;}if(this.delay){this.events.push(dojo.connect(this.handle,"onmousemove",this,"onMouseMove"),dojo.connect(this.handle,"onmouseup",this,"onMouseUp"));this._lastX=e.pageX;this._lastY=e.pageY;}else{this.onDragDetected(e);}dojo.stopEvent(e);},onMouseMove:function(e){if(Math.abs(e.pageX-this._lastX)>this.delay||Math.abs(e.pageY-this._lastY)>this.delay){this.onMouseUp(e);this.onDragDetected(e);}dojo.stopEvent(e);},onMouseUp:function(e){for(var i=0;i<2;++i){dojo.disconnect(this.events.pop());}dojo.stopEvent(e);},onSelectStart:function(e){if(!this.skip||!dojo.dnd.isFormElement(e)){dojo.stopEvent(e);}},onDragDetected:function(e){new this.mover(this.node,e,this);},onMoveStart:function(_8c){dojo.publish("/dnd/move/start",[_8c]);dojo.addClass(dojo.body(),"dojoMove");dojo.addClass(this.node,"dojoMoveItem");},onMoveStop:function(_8d){dojo.publish("/dnd/move/stop",[_8d]);dojo.removeClass(dojo.body(),"dojoMove");dojo.removeClass(this.node,"dojoMoveItem");},onFirstMove:function(_8e){},onMove:function(_8f,_90){this.onMoving(_8f,_90);var s=_8f.node.style;s.left=_90.l+"px";s.top=_90.t+"px";this.onMoved(_8f,_90);},onMoving:function(_91,_92){},onMoved:function(_93,_94){}});}if(!dojo._hasResource["dojo.dnd.move"]){dojo._hasResource["dojo.dnd.move"]=true;dojo.provide("dojo.dnd.move");dojo.declare("dojo.dnd.move.constrainedMoveable",dojo.dnd.Moveable,{constraints:function(){},within:false,markupFactory:function(_95,_96){return new dojo.dnd.move.constrainedMoveable(_96,_95);},constructor:function(_97,_98){if(!_98){_98={};}this.constraints=_98.constraints;this.within=_98.within;},onFirstMove:function(_99){var c=this.constraintBox=this.constraints.call(this,_99);c.r=c.l+c.w;c.b=c.t+c.h;if(this.within){var mb=dojo.marginBox(_99.node);c.r-=mb.w;c.b-=mb.h;}},onMove:function(_9a,_9b){var c=this.constraintBox,s=_9a.node.style;s.left=(_9b.l<c.l?c.l:c.r<_9b.l?c.r:_9b.l)+"px";s.top=(_9b.t<c.t?c.t:c.b<_9b.t?c.b:_9b.t)+"px";}});dojo.declare("dojo.dnd.move.boxConstrainedMoveable",dojo.dnd.move.constrainedMoveable,{box:{},markupFactory:function(_9c,_9d){return new dojo.dnd.move.boxConstrainedMoveable(_9d,_9c);},constructor:function(_9e,_9f){var box=_9f&&_9f.box;this.constraints=function(){return box;};}});dojo.declare("dojo.dnd.move.parentConstrainedMoveable",dojo.dnd.move.constrainedMoveable,{area:"content",markupFactory:function(_a0,_a1){return new dojo.dnd.move.parentConstrainedMoveable(_a1,_a0);},constructor:function(_a2,_a3){var _a4=_a3&&_a3.area;this.constraints=function(){var n=this.node.parentNode,s=dojo.getComputedStyle(n),mb=dojo._getMarginBox(n,s);if(_a4=="margin"){return mb;}var t=dojo._getMarginExtents(n,s);mb.l+=t.l,mb.t+=t.t,mb.w-=t.w,mb.h-=t.h;if(_a4=="border"){return mb;}t=dojo._getBorderExtents(n,s);mb.l+=t.l,mb.t+=t.t,mb.w-=t.w,mb.h-=t.h;if(_a4=="padding"){return mb;}t=dojo._getPadExtents(n,s);mb.l+=t.l,mb.t+=t.t,mb.w-=t.w,mb.h-=t.h;return mb;};}});dojo.dnd.move.constrainedMover=function(fun,_a5){dojo.deprecated("dojo.dnd.move.constrainedMover, use dojo.dnd.move.constrainedMoveable instead");var _a6=function(_a7,e,_a8){dojo.dnd.Mover.call(this,_a7,e,_a8);};dojo.extend(_a6,dojo.dnd.Mover.prototype);dojo.extend(_a6,{onMouseMove:function(e){dojo.dnd.autoScroll(e);var m=this.marginBox,c=this.constraintBox,l=m.l+e.pageX,t=m.t+e.pageY;l=l<c.l?c.l:c.r<l?c.r:l;t=t<c.t?c.t:c.b<t?c.b:t;this.host.onMove(this,{l:l,t:t});},onFirstMove:function(){dojo.dnd.Mover.prototype.onFirstMove.call(this);var c=this.constraintBox=fun.call(this);c.r=c.l+c.w;c.b=c.t+c.h;if(_a5){var mb=dojo.marginBox(this.node);c.r-=mb.w;c.b-=mb.h;}}});return _a6;};dojo.dnd.move.boxConstrainedMover=function(box,_a9){dojo.deprecated("dojo.dnd.move.boxConstrainedMover, use dojo.dnd.move.boxConstrainedMoveable instead");return dojo.dnd.move.constrainedMover(function(){return box;},_a9);};dojo.dnd.move.parentConstrainedMover=function(_aa,_ab){dojo.deprecated("dojo.dnd.move.parentConstrainedMover, use dojo.dnd.move.parentConstrainedMoveable instead");var fun=function(){var n=this.node.parentNode,s=dojo.getComputedStyle(n),mb=dojo._getMarginBox(n,s);if(_aa=="margin"){return mb;}var t=dojo._getMarginExtents(n,s);mb.l+=t.l,mb.t+=t.t,mb.w-=t.w,mb.h-=t.h;if(_aa=="border"){return mb;}t=dojo._getBorderExtents(n,s);mb.l+=t.l,mb.t+=t.t,mb.w-=t.w,mb.h-=t.h;if(_aa=="padding"){return mb;}t=dojo._getPadExtents(n,s);mb.l+=t.l,mb.t+=t.t,mb.w-=t.w,mb.h-=t.h;return mb;};return dojo.dnd.move.constrainedMover(fun,_ab);};dojo.dnd.constrainedMover=dojo.dnd.move.constrainedMover;dojo.dnd.boxConstrainedMover=dojo.dnd.move.boxConstrainedMover;dojo.dnd.parentConstrainedMover=dojo.dnd.move.parentConstrainedMover;}if(!dojo._hasResource["dojo.dnd.TimedMoveable"]){dojo._hasResource["dojo.dnd.TimedMoveable"]=true;dojo.provide("dojo.dnd.TimedMoveable");(function(){var _ac=dojo.dnd.Moveable.prototype.onMove;dojo.declare("dojo.dnd.TimedMoveable",dojo.dnd.Moveable,{timeout:40,constructor:function(_ad,_ae){if(!_ae){_ae={};}if(_ae.timeout&&typeof _ae.timeout=="number"&&_ae.timeout>=0){this.timeout=_ae.timeout;}},markupFactory:function(_af,_b0){return new dojo.dnd.TimedMoveable(_b0,_af);},onMoveStop:function(_b1){if(_b1._timer){clearTimeout(_b1._timer);_ac.call(this,_b1,_b1._leftTop);}dojo.dnd.Moveable.prototype.onMoveStop.apply(this,arguments);},onMove:function(_b2,_b3){_b2._leftTop=_b3;if(!_b2._timer){var _b4=this;_b2._timer=setTimeout(function(){_b2._timer=null;_ac.call(_b4,_b2,_b2._leftTop);},this.timeout);}}});})();}if(!dojo._hasResource["dijit._base.manager"]){dojo._hasResource["dijit._base.manager"]=true;dojo.provide("dijit._base.manager");dojo.declare("dijit.WidgetSet",null,{constructor:function(){this._hash={};this.length=0;},add:function(_b5){if(this._hash[_b5.id]){throw new Error("Tried to register widget with id=="+_b5.id+" but that id is already registered");}this._hash[_b5.id]=_b5;this.length++;},remove:function(id){if(this._hash[id]){delete this._hash[id];this.length--;}},forEach:function(_b6,_b7){_b7=_b7||dojo.global;var i=0,id;for(id in this._hash){_b6.call(_b7,this._hash[id],i++,this._hash);}return this;},filter:function(_b8,_b9){_b9=_b9||dojo.global;var res=new dijit.WidgetSet(),i=0,id;for(id in this._hash){var w=this._hash[id];if(_b8.call(_b9,w,i++,this._hash)){res.add(w);}}return res;},byId:function(id){return this._hash[id];},byClass:function(cls){var res=new dijit.WidgetSet(),id,_ba;for(id in this._hash){_ba=this._hash[id];if(_ba.declaredClass==cls){res.add(_ba);}}return res;},toArray:function(){var ar=[];for(var id in this._hash){ar.push(this._hash[id]);}return ar;},map:function(_bb,_bc){return dojo.map(this.toArray(),_bb,_bc);},every:function(_bd,_be){_be=_be||dojo.global;var x=0,i;for(i in this._hash){if(!_bd.call(_be,this._hash[i],x++,this._hash)){return false;}}return true;},some:function(_bf,_c0){_c0=_c0||dojo.global;var x=0,i;for(i in this._hash){if(_bf.call(_c0,this._hash[i],x++,this._hash)){return true;}}return false;}});dijit.registry=new dijit.WidgetSet();dijit._widgetTypeCtr={};dijit.getUniqueId=function(_c1){var id;do{id=_c1+"_"+(_c1 in dijit._widgetTypeCtr?++dijit._widgetTypeCtr[_c1]:dijit._widgetTypeCtr[_c1]=0);}while(dijit.byId(id));return dijit._scopeName=="dijit"?id:dijit._scopeName+"_"+id;};dijit.findWidgets=function(_c2){var _c3=[];function _c4(_c5){for(var _c6=_c5.firstChild;_c6;_c6=_c6.nextSibling){if(_c6.nodeType==1){var _c7=_c6.getAttribute("widgetId");if(_c7){var _c8=dijit.byId(_c7);_c3.push(_c8);}else{_c4(_c6);}}}};_c4(_c2);return _c3;};dijit._destroyAll=function(){dijit._curFocus=null;dijit._prevFocus=null;dijit._activeStack=[];dojo.forEach(dijit.findWidgets(dojo.body()),function(_c9){if(!_c9._destroyed){if(_c9.destroyRecursive){_c9.destroyRecursive();}else{if(_c9.destroy){_c9.destroy();}}}});};if(dojo.isIE){dojo.addOnWindowUnload(function(){dijit._destroyAll();});}dijit.byId=function(id){return typeof id=="string"?dijit.registry._hash[id]:id;};dijit.byNode=function(_ca){return dijit.registry.byId(_ca.getAttribute("widgetId"));};dijit.getEnclosingWidget=function(_cb){while(_cb){var id=_cb.getAttribute&&_cb.getAttribute("widgetId");if(id){return dijit.byId(id);}_cb=_cb.parentNode;}return null;};dijit._isElementShown=function(_cc){var _cd=dojo.style(_cc);return (_cd.visibility!="hidden")&&(_cd.visibility!="collapsed")&&(_cd.display!="none")&&(dojo.attr(_cc,"type")!="hidden");};dijit.isTabNavigable=function(_ce){if(dojo.attr(_ce,"disabled")){return false;}else{if(dojo.hasAttr(_ce,"tabIndex")){return dojo.attr(_ce,"tabIndex")>=0;}else{switch(_ce.nodeName.toLowerCase()){case "a":return dojo.hasAttr(_ce,"href");case "area":case "button":case "input":case "object":case "select":case "textarea":return true;case "iframe":if(dojo.isMoz){return _ce.contentDocument.designMode=="on";}else{if(dojo.isWebKit){var doc=_ce.contentDocument,_cf=doc&&doc.body;return _cf&&_cf.contentEditable=="true";}else{try{doc=_ce.contentWindow.document;_cf=doc&&doc.body;return _cf&&_cf.firstChild&&_cf.firstChild.contentEditable=="true";}catch(e){return false;}}}default:return _ce.contentEditable=="true";}}}};dijit._getTabNavigable=function(_d0){var _d1,_d2,_d3,_d4,_d5,_d6;var _d7=function(_d8){dojo.query("> *",_d8).forEach(function(_d9){var _da=dijit._isElementShown(_d9);if(_da&&dijit.isTabNavigable(_d9)){var _db=dojo.attr(_d9,"tabIndex");if(!dojo.hasAttr(_d9,"tabIndex")||_db==0){if(!_d1){_d1=_d9;}_d2=_d9;}else{if(_db>0){if(!_d3||_db<_d4){_d4=_db;_d3=_d9;}if(!_d5||_db>=_d6){_d6=_db;_d5=_d9;}}}}if(_da&&_d9.nodeName.toUpperCase()!="SELECT"){_d7(_d9);}});};if(dijit._isElementShown(_d0)){_d7(_d0);}return {first:_d1,last:_d2,lowest:_d3,highest:_d5};};dijit.getFirstInTabbingOrder=function(_dc){var _dd=dijit._getTabNavigable(dojo.byId(_dc));return _dd.lowest?_dd.lowest:_dd.first;};dijit.getLastInTabbingOrder=function(_de){var _df=dijit._getTabNavigable(dojo.byId(_de));return _df.last?_df.last:_df.highest;};dijit.defaultDuration=dojo.config["defaultDuration"]||200;}if(!dojo._hasResource["dijit._base.focus"]){dojo._hasResource["dijit._base.focus"]=true;dojo.provide("dijit._base.focus");dojo.mixin(dijit,{_curFocus:null,_prevFocus:null,isCollapsed:function(){return dijit.getBookmark().isCollapsed;},getBookmark:function(){var bm,rg,tg,sel=dojo.doc.selection,cf=dijit._curFocus;if(dojo.global.getSelection){sel=dojo.global.getSelection();if(sel){if(sel.isCollapsed){tg=cf?cf.tagName:"";if(tg){tg=tg.toLowerCase();if(tg=="textarea"||(tg=="input"&&(!cf.type||cf.type.toLowerCase()=="text"))){sel={start:cf.selectionStart,end:cf.selectionEnd,node:cf,pRange:true};return {isCollapsed:(sel.end<=sel.start),mark:sel};}}bm={isCollapsed:true};}else{rg=sel.getRangeAt(0);bm={isCollapsed:false,mark:rg.cloneRange()};}}}else{if(sel){tg=cf?cf.tagName:"";tg=tg.toLowerCase();if(cf&&tg&&(tg=="button"||tg=="textarea"||tg=="input")){if(sel.type&&sel.type.toLowerCase()=="none"){return {isCollapsed:true,mark:null};}else{rg=sel.createRange();return {isCollapsed:rg.text&&rg.text.length?false:true,mark:{range:rg,pRange:true}};}}bm={};try{rg=sel.createRange();bm.isCollapsed=!(sel.type=="Text"?rg.htmlText.length:rg.length);}catch(e){bm.isCollapsed=true;return bm;}if(sel.type.toUpperCase()=="CONTROL"){if(rg.length){bm.mark=[];var i=0,len=rg.length;while(i<len){bm.mark.push(rg.item(i++));}}else{bm.isCollapsed=true;bm.mark=null;}}else{bm.mark=rg.getBookmark();}}else{console.warn("No idea how to store the current selection for this browser!");}}return bm;},moveToBookmark:function(_e0){var _e1=dojo.doc,_e2=_e0.mark;if(_e2){if(dojo.global.getSelection){var sel=dojo.global.getSelection();if(sel&&sel.removeAllRanges){if(_e2.pRange){var r=_e2;var n=r.node;n.selectionStart=r.start;n.selectionEnd=r.end;}else{sel.removeAllRanges();sel.addRange(_e2);}}else{console.warn("No idea how to restore selection for this browser!");}}else{if(_e1.selection&&_e2){var rg;if(_e2.pRange){rg=_e2.range;}else{if(dojo.isArray(_e2)){rg=_e1.body.createControlRange();dojo.forEach(_e2,function(n){rg.addElement(n);});}else{rg=_e1.body.createTextRange();rg.moveToBookmark(_e2);}}rg.select();}}}},getFocus:function(_e3,_e4){var _e5=!dijit._curFocus||(_e3&&dojo.isDescendant(dijit._curFocus,_e3.domNode))?dijit._prevFocus:dijit._curFocus;return {node:_e5,bookmark:(_e5==dijit._curFocus)&&dojo.withGlobal(_e4||dojo.global,dijit.getBookmark),openedForWindow:_e4};},focus:function(_e6){if(!_e6){return;}var _e7="node" in _e6?_e6.node:_e6,_e8=_e6.bookmark,_e9=_e6.openedForWindow,_ea=_e8?_e8.isCollapsed:false;if(_e7){var _eb=(_e7.tagName.toLowerCase()=="iframe")?_e7.contentWindow:_e7;if(_eb&&_eb.focus){try{_eb.focus();}catch(e){}}dijit._onFocusNode(_e7);}if(_e8&&dojo.withGlobal(_e9||dojo.global,dijit.isCollapsed)&&!_ea){if(_e9){_e9.focus();}try{dojo.withGlobal(_e9||dojo.global,dijit.moveToBookmark,null,[_e8]);}catch(e2){}}},_activeStack:[],registerIframe:function(_ec){return dijit.registerWin(_ec.contentWindow,_ec);},unregisterIframe:function(_ed){dijit.unregisterWin(_ed);},registerWin:function(_ee,_ef){var _f0=function(evt){dijit._justMouseDowned=true;setTimeout(function(){dijit._justMouseDowned=false;},0);dijit._onTouchNode(_ef||evt.target||evt.srcElement,"mouse");};var doc=dojo.isIE?_ee.document.documentElement:_ee.document;if(doc){if(dojo.isIE){doc.attachEvent("onmousedown",_f0);var _f1=function(evt){if(evt.srcElement.tagName.toLowerCase()!="#document"&&dijit.isTabNavigable(evt.srcElement)){dijit._onFocusNode(_ef||evt.srcElement);}else{dijit._onTouchNode(_ef||evt.srcElement);}};doc.attachEvent("onactivate",_f1);var _f2=function(evt){dijit._onBlurNode(_ef||evt.srcElement);};doc.attachEvent("ondeactivate",_f2);return function(){doc.detachEvent("onmousedown",_f0);doc.detachEvent("onactivate",_f1);doc.detachEvent("ondeactivate",_f2);doc=null;};}else{doc.addEventListener("mousedown",_f0,true);var _f3=function(evt){dijit._onFocusNode(_ef||evt.target);};doc.addEventListener("focus",_f3,true);var _f4=function(evt){dijit._onBlurNode(_ef||evt.target);};doc.addEventListener("blur",_f4,true);return function(){doc.removeEventListener("mousedown",_f0,true);doc.removeEventListener("focus",_f3,true);doc.removeEventListener("blur",_f4,true);doc=null;};}}},unregisterWin:function(_f5){_f5&&_f5();},_onBlurNode:function(_f6){dijit._prevFocus=dijit._curFocus;dijit._curFocus=null;if(dijit._justMouseDowned){return;}if(dijit._clearActiveWidgetsTimer){clearTimeout(dijit._clearActiveWidgetsTimer);}dijit._clearActiveWidgetsTimer=setTimeout(function(){delete dijit._clearActiveWidgetsTimer;dijit._setStack([]);dijit._prevFocus=null;},100);},_onTouchNode:function(_f7,by){if(dijit._clearActiveWidgetsTimer){clearTimeout(dijit._clearActiveWidgetsTimer);delete dijit._clearActiveWidgetsTimer;}var _f8=[];try{while(_f7){var _f9=dojo.attr(_f7,"dijitPopupParent");if(_f9){_f7=dijit.byId(_f9).domNode;}else{if(_f7.tagName&&_f7.tagName.toLowerCase()=="body"){if(_f7===dojo.body()){break;}_f7=dijit.getDocumentWindow(_f7.ownerDocument).frameElement;}else{var id=_f7.getAttribute&&_f7.getAttribute("widgetId");if(id){_f8.unshift(id);}_f7=_f7.parentNode;}}}}catch(e){}dijit._setStack(_f8,by);},_onFocusNode:function(_fa){if(!_fa){return;}if(_fa.nodeType==9){return;}dijit._onTouchNode(_fa);if(_fa==dijit._curFocus){return;}if(dijit._curFocus){dijit._prevFocus=dijit._curFocus;}dijit._curFocus=_fa;dojo.publish("focusNode",[_fa]);},_setStack:function(_fb,by){var _fc=dijit._activeStack;dijit._activeStack=_fb;for(var _fd=0;_fd<Math.min(_fc.length,_fb.length);_fd++){if(_fc[_fd]!=_fb[_fd]){break;}}var _fe;for(var i=_fc.length-1;i>=_fd;i--){_fe=dijit.byId(_fc[i]);if(_fe){_fe._focused=false;_fe._hasBeenBlurred=true;if(_fe._onBlur){_fe._onBlur(by);}if(_fe._setStateClass){_fe._setStateClass();}dojo.publish("widgetBlur",[_fe,by]);}}for(i=_fd;i<_fb.length;i++){_fe=dijit.byId(_fb[i]);if(_fe){_fe._focused=true;if(_fe._onFocus){_fe._onFocus(by);}if(_fe._setStateClass){_fe._setStateClass();}dojo.publish("widgetFocus",[_fe,by]);}}}});dojo.addOnLoad(function(){var _ff=dijit.registerWin(window);if(dojo.isIE){dojo.addOnWindowUnload(function(){dijit.unregisterWin(_ff);_ff=null;});}});}if(!dojo._hasResource["dojo.AdapterRegistry"]){dojo._hasResource["dojo.AdapterRegistry"]=true;dojo.provide("dojo.AdapterRegistry");dojo.AdapterRegistry=function(_100){this.pairs=[];this.returnWrappers=_100||false;};dojo.extend(dojo.AdapterRegistry,{register:function(name,_101,wrap,_102,_103){this.pairs[((_103)?"unshift":"push")]([name,_101,wrap,_102]);},match:function(){for(var i=0;i<this.pairs.length;i++){var pair=this.pairs[i];if(pair[1].apply(this,arguments)){if((pair[3])||(this.returnWrappers)){return pair[2];}else{return pair[2].apply(this,arguments);}}}throw new Error("No match found");},unregister:function(name){for(var i=0;i<this.pairs.length;i++){var pair=this.pairs[i];if(pair[0]==name){this.pairs.splice(i,1);return true;}}return false;}});}if(!dojo._hasResource["dijit._base.place"]){dojo._hasResource["dijit._base.place"]=true;dojo.provide("dijit._base.place");dijit.getViewport=function(){var _104=(dojo.doc.compatMode=="BackCompat")?dojo.body():dojo.doc.documentElement;var _105=dojo._docScroll();return {w:_104.clientWidth,h:_104.clientHeight,l:_105.x,t:_105.y};};dijit.placeOnScreen=function(node,pos,_106,_107){var _108=dojo.map(_106,function(_109){var c={corner:_109,pos:{x:pos.x,y:pos.y}};if(_107){c.pos.x+=_109.charAt(1)=="L"?_107.x:-_107.x;c.pos.y+=_109.charAt(0)=="T"?_107.y:-_107.y;}return c;});return dijit._place(node,_108);};dijit._place=function(node,_10a,_10b){var view=dijit.getViewport();if(!node.parentNode||String(node.parentNode.tagName).toLowerCase()!="body"){dojo.body().appendChild(node);}var best=null;dojo.some(_10a,function(_10c){var _10d=_10c.corner;var pos=_10c.pos;if(_10b){_10b(node,_10c.aroundCorner,_10d);}var _10e=node.style;var _10f=_10e.display;var _110=_10e.visibility;_10e.visibility="hidden";_10e.display="";var mb=dojo.marginBox(node);_10e.display=_10f;_10e.visibility=_110;var _111=Math.max(view.l,_10d.charAt(1)=="L"?pos.x:(pos.x-mb.w)),_112=Math.max(view.t,_10d.charAt(0)=="T"?pos.y:(pos.y-mb.h)),endX=Math.min(view.l+view.w,_10d.charAt(1)=="L"?(_111+mb.w):pos.x),endY=Math.min(view.t+view.h,_10d.charAt(0)=="T"?(_112+mb.h):pos.y),_113=endX-_111,_114=endY-_112,_115=(mb.w-_113)+(mb.h-_114);if(best==null||_115<best.overflow){best={corner:_10d,aroundCorner:_10c.aroundCorner,x:_111,y:_112,w:_113,h:_114,overflow:_115};}return !_115;});node.style.left=best.x+"px";node.style.top=best.y+"px";if(best.overflow&&_10b){_10b(node,best.aroundCorner,best.corner);}return best;};dijit.placeOnScreenAroundNode=function(node,_116,_117,_118){_116=dojo.byId(_116);var _119=_116.style.display;_116.style.display="";var _11a=dojo.position(_116,true);_116.style.display=_119;return dijit._placeOnScreenAroundRect(node,_11a.x,_11a.y,_11a.w,_11a.h,_117,_118);};dijit.placeOnScreenAroundRectangle=function(node,_11b,_11c,_11d){return dijit._placeOnScreenAroundRect(node,_11b.x,_11b.y,_11b.width,_11b.height,_11c,_11d);};dijit._placeOnScreenAroundRect=function(node,x,y,_11e,_11f,_120,_121){var _122=[];for(var _123 in _120){_122.push({aroundCorner:_123,corner:_120[_123],pos:{x:x+(_123.charAt(1)=="L"?0:_11e),y:y+(_123.charAt(0)=="T"?0:_11f)}});}return dijit._place(node,_122,_121);};dijit.placementRegistry=new dojo.AdapterRegistry();dijit.placementRegistry.register("node",function(n,x){return typeof x=="object"&&typeof x.offsetWidth!="undefined"&&typeof x.offsetHeight!="undefined";},dijit.placeOnScreenAroundNode);dijit.placementRegistry.register("rect",function(n,x){return typeof x=="object"&&"x" in x&&"y" in x&&"width" in x&&"height" in x;},dijit.placeOnScreenAroundRectangle);dijit.placeOnScreenAroundElement=function(node,_124,_125,_126){return dijit.placementRegistry.match.apply(dijit.placementRegistry,arguments);};dijit.getPopupAlignment=function(_127,_128){var _129={};dojo.forEach(_127,function(pos){switch(pos){case "after":_129[_128?"BR":"BL"]=_128?"BL":"BR";break;case "before":_129[_128?"BL":"BR"]=_128?"BR":"BL";break;case "below":_129[_128?"BL":"BR"]=_128?"TL":"TR";_129[_128?"BR":"BL"]=_128?"TR":"TL";break;case "above":default:_129[_128?"TL":"TR"]=_128?"BL":"BR";_129[_128?"TR":"TL"]=_128?"BR":"BL";break;}});return _129;};dijit.getPopupAroundAlignment=function(_12a,_12b){var _12c={};dojo.forEach(_12a,function(pos){switch(pos){case "after":_12c[_12b?"BR":"BL"]=_12b?"BL":"BR";break;case "before":_12c[_12b?"BL":"BR"]=_12b?"BR":"BL";break;case "below":_12c[_12b?"BL":"BR"]=_12b?"TL":"TR";_12c[_12b?"BR":"BL"]=_12b?"TR":"TL";break;case "above":default:_12c[_12b?"TL":"TR"]=_12b?"BL":"BR";_12c[_12b?"TR":"TL"]=_12b?"BR":"BL";break;}});return _12c;};}if(!dojo._hasResource["dijit._base.window"]){dojo._hasResource["dijit._base.window"]=true;dojo.provide("dijit._base.window");dijit.getDocumentWindow=function(doc){if(dojo.isIE&&window!==document.parentWindow&&!doc._parentWindow){doc.parentWindow.execScript("document._parentWindow = window;","Javascript");var win=doc._parentWindow;doc._parentWindow=null;return win;}return doc._parentWindow||doc.parentWindow||doc.defaultView;};}if(!dojo._hasResource["dijit._base.popup"]){dojo._hasResource["dijit._base.popup"]=true;dojo.provide("dijit._base.popup");dijit.popup=new function(){var _12d=[],_12e=1000,_12f=1;this.moveOffScreen=function(node){var s=node.style;s.visibility="hidden";s.position="absolute";s.top="-9999px";if(s.display=="none"){s.display="";}dojo.body().appendChild(node);};var _130=function(){for(var pi=_12d.length-1;pi>0&&_12d[pi].parent===_12d[pi-1].widget;pi--){}return _12d[pi];};var _131=[];this.open=function(args){var _132=args.popup,_133=args.orient||(dojo._isBodyLtr()?{"BL":"TL","BR":"TR","TL":"BL","TR":"BR"}:{"BR":"TR","BL":"TL","TR":"BR","TL":"BL"}),_134=args.around,id=(args.around&&args.around.id)?(args.around.id+"_dropdown"):("popup_"+_12f++);var _135=_131.pop(),_136,_137;if(!_135){_136=dojo.create("div",{"class":"dijitPopup"},dojo.body());dijit.setWaiRole(_136,"presentation");}else{_136=_135[0];_137=_135[1];}dojo.attr(_136,{id:id,style:{zIndex:_12e+_12d.length,visibility:"hidden",top:"-9999px"},dijitPopupParent:args.parent?args.parent.id:""});var s=_132.domNode.style;s.display="";s.visibility="";s.position="";s.top="0px";_136.appendChild(_132.domNode);if(!_137){_137=new dijit.BackgroundIframe(_136);}else{_137.resize(_136);}var best=_134?dijit.placeOnScreenAroundElement(_136,_134,_133,_132.orient?dojo.hitch(_132,"orient"):null):dijit.placeOnScreen(_136,args,_133=="R"?["TR","BR","TL","BL"]:["TL","BL","TR","BR"],args.padding);_136.style.visibility="visible";var _138=[];_138.push(dojo.connect(_136,"onkeypress",this,function(evt){if(evt.charOrCode==dojo.keys.ESCAPE&&args.onCancel){dojo.stopEvent(evt);args.onCancel();}else{if(evt.charOrCode===dojo.keys.TAB){dojo.stopEvent(evt);var _139=_130();if(_139&&_139.onCancel){_139.onCancel();}}}}));if(_132.onCancel){_138.push(dojo.connect(_132,"onCancel",args.onCancel));}_138.push(dojo.connect(_132,_132.onExecute?"onExecute":"onChange",function(){var _13a=_130();if(_13a&&_13a.onExecute){_13a.onExecute();}}));_12d.push({wrapper:_136,iframe:_137,widget:_132,parent:args.parent,onExecute:args.onExecute,onCancel:args.onCancel,onClose:args.onClose,handlers:_138});if(_132.onOpen){_132.onOpen(best);}return best;};this.close=function(_13b){while(dojo.some(_12d,function(elem){return elem.widget==_13b;})){var top=_12d.pop(),_13c=top.wrapper,_13d=top.iframe,_13e=top.widget,_13f=top.onClose;if(_13e.onClose){_13e.onClose();}dojo.forEach(top.handlers,dojo.disconnect);if(_13e&&_13e.domNode){this.moveOffScreen(_13e.domNode);}_13c.style.top="-9999px";_13c.style.visibility="hidden";_131.push([_13c,_13d]);if(_13f){_13f();}}};}();dijit._frames=new function(){var _140=[];this.pop=function(){var _141;if(_140.length){_141=_140.pop();_141.style.display="";}else{if(dojo.isIE){var burl=dojo.config["dojoBlankHtmlUrl"]||(dojo.moduleUrl("dojo","resources/blank.html")+"")||"javascript:\"\"";var html="<iframe src='"+burl+"'"+" style='position: absolute; left: 0px; top: 0px;"+"z-index: -1; filter:Alpha(Opacity=\"0\");'>";_141=dojo.doc.createElement(html);}else{_141=dojo.create("iframe");_141.src="javascript:\"\"";_141.className="dijitBackgroundIframe";dojo.style(_141,"opacity",0.1);}_141.tabIndex=-1;}return _141;};this.push=function(_142){_142.style.display="none";_140.push(_142);};}();dijit.BackgroundIframe=function(node){if(!node.id){throw new Error("no id");}if(dojo.isIE||dojo.isMoz){var _143=dijit._frames.pop();node.appendChild(_143);if(dojo.isIE<7){this.resize(node);this._conn=dojo.connect(node,"onresize",this,function(){this.resize(node);});}else{dojo.style(_143,{width:"100%",height:"100%"});}this.iframe=_143;}};dojo.extend(dijit.BackgroundIframe,{resize:function(node){if(this.iframe&&dojo.isIE<7){dojo.style(this.iframe,{width:node.offsetWidth+"px",height:node.offsetHeight+"px"});}},destroy:function(){if(this._conn){dojo.disconnect(this._conn);this._conn=null;}if(this.iframe){dijit._frames.push(this.iframe);delete this.iframe;}}});}if(!dojo._hasResource["dijit._base.scroll"]){dojo._hasResource["dijit._base.scroll"]=true;dojo.provide("dijit._base.scroll");dijit.scrollIntoView=function(node,pos){try{node=dojo.byId(node);var doc=node.ownerDocument||dojo.doc,body=doc.body||dojo.body(),html=doc.documentElement||body.parentNode,isIE=dojo.isIE,isWK=dojo.isWebKit;if((!(dojo.isMoz||isIE||isWK)||node==body||node==html)&&(typeof node.scrollIntoView!="undefined")){node.scrollIntoView(false);return;}var _144=doc.compatMode=="BackCompat",_145=_144?body:html,_146=isWK?body:_145,_147=_145.clientWidth,_148=_145.clientHeight,rtl=!dojo._isBodyLtr(),_149=pos||dojo.position(node),el=node.parentNode,_14a=function(el){return ((isIE<=6||(isIE&&_144))?false:(dojo.style(el,"position").toLowerCase()=="fixed"));};if(_14a(node)){return;}while(el){if(el==body){el=_146;}var _14b=dojo.position(el),_14c=_14a(el);with(_14b){if(el==_146){w=_147,h=_148;if(_146==html&&isIE&&rtl){x+=_146.offsetWidth-w;}if(x<0||!isIE){x=0;}if(y<0||!isIE){y=0;}}else{var pb=dojo._getPadBorderExtents(el);w-=pb.w;h-=pb.h;x+=pb.l;y+=pb.t;}with(el){if(el!=_146){var _14d=clientWidth,_14e=w-_14d;if(_14d>0&&_14e>0){w=_14d;if(isIE&&rtl){x+=_14e;}}_14d=clientHeight;_14e=h-_14d;if(_14d>0&&_14e>0){h=_14d;}}if(_14c){if(y<0){h+=y,y=0;}if(x<0){w+=x,x=0;}if(y+h>_148){h=_148-y;}if(x+w>_147){w=_147-x;}}var l=_149.x-x,t=_149.y-Math.max(y,0),r=l+_149.w-w,bot=t+_149.h-h;if(r*l>0){var s=Math[l<0?"max":"min"](l,r);_149.x+=scrollLeft;scrollLeft+=(isIE>=8&&!_144&&rtl)?-s:s;_149.x-=scrollLeft;}if(bot*t>0){_149.y+=scrollTop;scrollTop+=Math[t<0?"max":"min"](t,bot);_149.y-=scrollTop;}}}el=(el!=_146)&&!_14c&&el.parentNode;}}catch(error){console.error("scrollIntoView: "+error);node.scrollIntoView(false);}};}if(!dojo._hasResource["dijit._base.sniff"]){dojo._hasResource["dijit._base.sniff"]=true;dojo.provide("dijit._base.sniff");(function(){var d=dojo,html=d.doc.documentElement,ie=d.isIE,_14f=d.isOpera,maj=Math.floor,ff=d.isFF,_150=d.boxModel.replace(/-/,""),_151={dj_ie:ie,dj_ie6:maj(ie)==6,dj_ie7:maj(ie)==7,dj_ie8:maj(ie)==8,dj_iequirks:ie&&d.isQuirks,dj_opera:_14f,dj_khtml:d.isKhtml,dj_webkit:d.isWebKit,dj_safari:d.isSafari,dj_chrome:d.isChrome,dj_gecko:d.isMozilla,dj_ff3:maj(ff)==3};_151["dj_"+_150]=true;for(var p in _151){if(_151[p]){if(html.className){html.className+=" "+p;}else{html.className=p;}}}dojo._loaders.unshift(function(){if(!dojo._isBodyLtr()){html.className+=" dijitRtl";for(var p in _151){if(_151[p]){html.className+=" "+p+"-rtl";}}}});})();}if(!dojo._hasResource["dijit._base.typematic"]){dojo._hasResource["dijit._base.typematic"]=true;dojo.provide("dijit._base.typematic");dijit.typematic={_fireEventAndReload:function(){this._timer=null;this._callback(++this._count,this._node,this._evt);this._currentTimeout=Math.max(this._currentTimeout<0?this._initialDelay:(this._subsequentDelay>1?this._subsequentDelay:Math.round(this._currentTimeout*this._subsequentDelay)),10);this._timer=setTimeout(dojo.hitch(this,"_fireEventAndReload"),this._currentTimeout);},trigger:function(evt,_152,node,_153,obj,_154,_155){if(obj!=this._obj){this.stop();this._initialDelay=_155||500;this._subsequentDelay=_154||0.9;this._obj=obj;this._evt=evt;this._node=node;this._currentTimeout=-1;this._count=-1;this._callback=dojo.hitch(_152,_153);this._fireEventAndReload();}},stop:function(){if(this._timer){clearTimeout(this._timer);this._timer=null;}if(this._obj){this._callback(-1,this._node,this._evt);this._obj=null;}},addKeyListener:function(node,_156,_157,_158,_159,_15a){if(_156.keyCode){_156.charOrCode=_156.keyCode;dojo.deprecated("keyCode attribute parameter for dijit.typematic.addKeyListener is deprecated. Use charOrCode instead.","","2.0");}else{if(_156.charCode){_156.charOrCode=String.fromCharCode(_156.charCode);dojo.deprecated("charCode attribute parameter for dijit.typematic.addKeyListener is deprecated. Use charOrCode instead.","","2.0");}}return [dojo.connect(node,"onkeypress",this,function(evt){if(evt.charOrCode==_156.charOrCode&&(_156.ctrlKey===undefined||_156.ctrlKey==evt.ctrlKey)&&(_156.altKey===undefined||_156.altKey==evt.altKey)&&(_156.metaKey===undefined||_156.metaKey==(evt.metaKey||false))&&(_156.shiftKey===undefined||_156.shiftKey==evt.shiftKey)){dojo.stopEvent(evt);dijit.typematic.trigger(_156,_157,node,_158,_156,_159,_15a);}else{if(dijit.typematic._obj==_156){dijit.typematic.stop();}}}),dojo.connect(node,"onkeyup",this,function(evt){if(dijit.typematic._obj==_156){dijit.typematic.stop();}})];},addMouseListener:function(node,_15b,_15c,_15d,_15e){var dc=dojo.connect;return [dc(node,"mousedown",this,function(evt){dojo.stopEvent(evt);dijit.typematic.trigger(evt,_15b,node,_15c,node,_15d,_15e);}),dc(node,"mouseup",this,function(evt){dojo.stopEvent(evt);dijit.typematic.stop();}),dc(node,"mouseout",this,function(evt){dojo.stopEvent(evt);dijit.typematic.stop();}),dc(node,"mousemove",this,function(evt){dojo.stopEvent(evt);}),dc(node,"dblclick",this,function(evt){dojo.stopEvent(evt);if(dojo.isIE){dijit.typematic.trigger(evt,_15b,node,_15c,node,_15d,_15e);setTimeout(dojo.hitch(this,dijit.typematic.stop),50);}})];},addListener:function(_15f,_160,_161,_162,_163,_164,_165){return this.addKeyListener(_160,_161,_162,_163,_164,_165).concat(this.addMouseListener(_15f,_162,_163,_164,_165));}};}if(!dojo._hasResource["dijit._base.wai"]){dojo._hasResource["dijit._base.wai"]=true;dojo.provide("dijit._base.wai");dijit.wai={onload:function(){var div=dojo.create("div",{id:"a11yTestNode",style:{cssText:"border: 1px solid;"+"border-color:red green;"+"position: absolute;"+"height: 5px;"+"top: -999px;"+"background-image: url(\""+(dojo.config.blankGif||dojo.moduleUrl("dojo","resources/blank.gif"))+"\");"}},dojo.body());var cs=dojo.getComputedStyle(div);if(cs){var _166=cs.backgroundImage;var _167=(cs.borderTopColor==cs.borderRightColor)||(_166!=null&&(_166=="none"||_166=="url(invalid-url:)"));dojo[_167?"addClass":"removeClass"](dojo.body(),"dijit_a11y");if(dojo.isIE){div.outerHTML="";}else{dojo.body().removeChild(div);}}}};if(dojo.isIE||dojo.isMoz){dojo._loaders.unshift(dijit.wai.onload);}dojo.mixin(dijit,{_XhtmlRoles:/banner|contentinfo|definition|main|navigation|search|note|secondary|seealso/,hasWaiRole:function(elem,role){var _168=this.getWaiRole(elem);return role?(_168.indexOf(role)>-1):(_168.length>0);},getWaiRole:function(elem){return dojo.trim((dojo.attr(elem,"role")||"").replace(this._XhtmlRoles,"").replace("wairole:",""));},setWaiRole:function(elem,role){var _169=dojo.attr(elem,"role")||"";if(!this._XhtmlRoles.test(_169)){dojo.attr(elem,"role",role);}else{if((" "+_169+" ").indexOf(" "+role+" ")<0){var _16a=dojo.trim(_169.replace(this._XhtmlRoles,""));var _16b=dojo.trim(_169.replace(_16a,""));dojo.attr(elem,"role",_16b+(_16b?" ":"")+role);}}},removeWaiRole:function(elem,role){var _16c=dojo.attr(elem,"role");if(!_16c){return;}if(role){var t=dojo.trim((" "+_16c+" ").replace(" "+role+" "," "));dojo.attr(elem,"role",t);}else{elem.removeAttribute("role");}},hasWaiState:function(elem,_16d){return elem.hasAttribute?elem.hasAttribute("aria-"+_16d):!!elem.getAttribute("aria-"+_16d);},getWaiState:function(elem,_16e){return elem.getAttribute("aria-"+_16e)||"";},setWaiState:function(elem,_16f,_170){elem.setAttribute("aria-"+_16f,_170);},removeWaiState:function(elem,_171){elem.removeAttribute("aria-"+_171);}});}if(!dojo._hasResource["dijit._base"]){dojo._hasResource["dijit._base"]=true;dojo.provide("dijit._base");}if(!dojo._hasResource["dijit._Widget"]){dojo._hasResource["dijit._Widget"]=true;dojo.provide("dijit._Widget");dojo.require("dijit._base");dojo.connect(dojo,"_connect",function(_172,_173){if(_172&&dojo.isFunction(_172._onConnect)){_172._onConnect(_173);}});dijit._connectOnUseEventHandler=function(_174){};dijit._lastKeyDownNode=null;if(dojo.isIE){(function(){var _175=function(evt){dijit._lastKeyDownNode=evt.srcElement;};dojo.doc.attachEvent("onkeydown",_175);dojo.addOnWindowUnload(function(){dojo.doc.detachEvent("onkeydown",_175);});})();}else{dojo.doc.addEventListener("keydown",function(evt){dijit._lastKeyDownNode=evt.target;},true);}(function(){var _176={},_177=function(_178){var dc=_178.declaredClass;if(!_176[dc]){var r=[],_179,_17a=_178.constructor.prototype;for(var _17b in _17a){if(dojo.isFunction(_17a[_17b])&&(_179=_17b.match(/^_set([a-zA-Z]*)Attr$/))&&_179[1]){r.push(_179[1].charAt(0).toLowerCase()+_179[1].substr(1));}}_176[dc]=r;}return _176[dc]||[];};dojo.declare("dijit._Widget",null,{id:"",lang:"",dir:"","class":"",style:"",title:"",tooltip:"",srcNodeRef:null,domNode:null,containerNode:null,attributeMap:{id:"",dir:"",lang:"","class":"",style:"",title:""},_deferredConnects:{onClick:"",onDblClick:"",onKeyDown:"",onKeyPress:"",onKeyUp:"",onMouseMove:"",onMouseDown:"",onMouseOut:"",onMouseOver:"",onMouseLeave:"",onMouseEnter:"",onMouseUp:""},onClick:dijit._connectOnUseEventHandler,onDblClick:dijit._connectOnUseEventHandler,onKeyDown:dijit._connectOnUseEventHandler,onKeyPress:dijit._connectOnUseEventHandler,onKeyUp:dijit._connectOnUseEventHandler,onMouseDown:dijit._connectOnUseEventHandler,onMouseMove:dijit._connectOnUseEventHandler,onMouseOut:dijit._connectOnUseEventHandler,onMouseOver:dijit._connectOnUseEventHandler,onMouseLeave:dijit._connectOnUseEventHandler,onMouseEnter:dijit._connectOnUseEventHandler,onMouseUp:dijit._connectOnUseEventHandler,_blankGif:(dojo.config.blankGif||dojo.moduleUrl("dojo","resources/blank.gif")).toString(),postscript:function(_17c,_17d){this.create(_17c,_17d);},create:function(_17e,_17f){this.srcNodeRef=dojo.byId(_17f);this._connects=[];this._subscribes=[];this._deferredConnects=dojo.clone(this._deferredConnects);for(var attr in this.attributeMap){delete this._deferredConnects[attr];}for(attr in this._deferredConnects){if(this[attr]!==dijit._connectOnUseEventHandler){delete this._deferredConnects[attr];}}if(this.srcNodeRef&&(typeof this.srcNodeRef.id=="string")){this.id=this.srcNodeRef.id;}if(_17e){this.params=_17e;dojo.mixin(this,_17e);}this.postMixInProperties();if(!this.id){this.id=dijit.getUniqueId(this.declaredClass.replace(/\./g,"_"));}dijit.registry.add(this);this.buildRendering();if(this.domNode){this._applyAttributes();var _180=this.srcNodeRef;if(_180&&_180.parentNode){_180.parentNode.replaceChild(this.domNode,_180);}for(attr in this.params){this._onConnect(attr);}}if(this.domNode){this.domNode.setAttribute("widgetId",this.id);}this.postCreate();if(this.srcNodeRef&&!this.srcNodeRef.parentNode){delete this.srcNodeRef;}this._created=true;},_applyAttributes:function(){var _181=function(attr,_182){if((_182.params&&attr in _182.params)||_182[attr]){_182.attr(attr,_182[attr]);}};for(var attr in this.attributeMap){_181(attr,this);}dojo.forEach(_177(this),function(a){if(!(a in this.attributeMap)){_181(a,this);}},this);},postMixInProperties:function(){},buildRendering:function(){this.domNode=this.srcNodeRef||dojo.create("div");},postCreate:function(){},startup:function(){this._started=true;},destroyRecursive:function(_183){this._beingDestroyed=true;this.destroyDescendants(_183);this.destroy(_183);},destroy:function(_184){this._beingDestroyed=true;this.uninitialize();var d=dojo,dfe=d.forEach,dun=d.unsubscribe;dfe(this._connects,function(_185){dfe(_185,d.disconnect);});dfe(this._subscribes,function(_186){dun(_186);});dfe(this._supportingWidgets||[],function(w){if(w.destroyRecursive){w.destroyRecursive();}else{if(w.destroy){w.destroy();}}});this.destroyRendering(_184);dijit.registry.remove(this.id);this._destroyed=true;},destroyRendering:function(_187){if(this.bgIframe){this.bgIframe.destroy(_187);delete this.bgIframe;}if(this.domNode){if(_187){dojo.removeAttr(this.domNode,"widgetId");}else{dojo.destroy(this.domNode);}delete this.domNode;}if(this.srcNodeRef){if(!_187){dojo.destroy(this.srcNodeRef);}delete this.srcNodeRef;}},destroyDescendants:function(_188){dojo.forEach(this.getChildren(),function(_189){if(_189.destroyRecursive){_189.destroyRecursive(_188);}});},uninitialize:function(){return false;},onFocus:function(){},onBlur:function(){},_onFocus:function(e){this.onFocus();},_onBlur:function(){this.onBlur();},_onConnect:function(_18a){if(_18a in this._deferredConnects){var _18b=this[this._deferredConnects[_18a]||"domNode"];this.connect(_18b,_18a.toLowerCase(),_18a);delete this._deferredConnects[_18a];}},_setClassAttr:function(_18c){var _18d=this[this.attributeMap["class"]||"domNode"];dojo.removeClass(_18d,this["class"]);this["class"]=_18c;dojo.addClass(_18d,_18c);},_setStyleAttr:function(_18e){var _18f=this[this.attributeMap.style||"domNode"];if(dojo.isObject(_18e)){dojo.style(_18f,_18e);}else{if(_18f.style.cssText){_18f.style.cssText+="; "+_18e;}else{_18f.style.cssText=_18e;}}this.style=_18e;},setAttribute:function(attr,_190){dojo.deprecated(this.declaredClass+"::setAttribute() is deprecated. Use attr() instead.","","2.0");this.attr(attr,_190);},_attrToDom:function(attr,_191){var _192=this.attributeMap[attr];dojo.forEach(dojo.isArray(_192)?_192:[_192],function(_193){var _194=this[_193.node||_193||"domNode"];var type=_193.type||"attribute";switch(type){case "attribute":if(dojo.isFunction(_191)){_191=dojo.hitch(this,_191);}var _195=_193.attribute?_193.attribute:(/^on[A-Z][a-zA-Z]*$/.test(attr)?attr.toLowerCase():attr);dojo.attr(_194,_195,_191);break;case "innerText":_194.innerHTML="";_194.appendChild(dojo.doc.createTextNode(_191));break;case "innerHTML":_194.innerHTML=_191;break;case "class":dojo.removeClass(_194,this[attr]);dojo.addClass(_194,_191);break;}},this);this[attr]=_191;},attr:function(name,_196){var args=arguments.length;if(args==1&&!dojo.isString(name)){for(var x in name){this.attr(x,name[x]);}return this;}var _197=this._getAttrNames(name);if(args>=2){if(this[_197.s]){args=dojo._toArray(arguments,1);return this[_197.s].apply(this,args)||this;}else{if(name in this.attributeMap){this._attrToDom(name,_196);}this[name]=_196;}return this;}else{return this[_197.g]?this[_197.g]():this[name];}},_attrPairNames:{},_getAttrNames:function(name){var apn=this._attrPairNames;if(apn[name]){return apn[name];}var uc=name.charAt(0).toUpperCase()+name.substr(1);return (apn[name]={n:name+"Node",s:"_set"+uc+"Attr",g:"_get"+uc+"Attr"});},toString:function(){return "[Widget "+this.declaredClass+", "+(this.id||"NO ID")+"]";},getDescendants:function(){return this.containerNode?dojo.query("[widgetId]",this.containerNode).map(dijit.byNode):[];},getChildren:function(){return this.containerNode?dijit.findWidgets(this.containerNode):[];},nodesWithKeyClick:["input","button"],connect:function(obj,_198,_199){var d=dojo,dc=d._connect,_19a=[];if(_198=="ondijitclick"){if(!this.nodesWithKeyClick[obj.tagName.toLowerCase()]){var m=d.hitch(this,_199);_19a.push(dc(obj,"onkeydown",this,function(e){if((e.keyCode==d.keys.ENTER||e.keyCode==d.keys.SPACE)&&!e.ctrlKey&&!e.shiftKey&&!e.altKey&&!e.metaKey){dijit._lastKeyDownNode=e.target;d.stopEvent(e);}}),dc(obj,"onkeyup",this,function(e){if((e.keyCode==d.keys.ENTER||e.keyCode==d.keys.SPACE)&&e.target===dijit._lastKeyDownNode&&!e.ctrlKey&&!e.shiftKey&&!e.altKey&&!e.metaKey){dijit._lastKeyDownNode=null;return m(e);}}));}_198="onclick";}_19a.push(dc(obj,_198,this,_199));this._connects.push(_19a);return _19a;},disconnect:function(_19b){for(var i=0;i<this._connects.length;i++){if(this._connects[i]==_19b){dojo.forEach(_19b,dojo.disconnect);this._connects.splice(i,1);return;}}},subscribe:function(_19c,_19d){var d=dojo,_19e=d.subscribe(_19c,this,_19d);this._subscribes.push(_19e);return _19e;},unsubscribe:function(_19f){for(var i=0;i<this._subscribes.length;i++){if(this._subscribes[i]==_19f){dojo.unsubscribe(_19f);this._subscribes.splice(i,1);return;}}},isLeftToRight:function(){return dojo._isBodyLtr();},isFocusable:function(){return this.focus&&(dojo.style(this.domNode,"display")!="none");},placeAt:function(_1a0,_1a1){if(_1a0.declaredClass&&_1a0.addChild){_1a0.addChild(this,_1a1);}else{dojo.place(this.domNode,_1a0,_1a1);}return this;},_onShow:function(){this.onShow();},onShow:function(){},onHide:function(){}});})();}if(!dojo._hasResource["dojo.string"]){dojo._hasResource["dojo.string"]=true;dojo.provide("dojo.string");dojo.string.rep=function(str,num){if(num<=0||!str){return "";}var buf=[];for(;;){if(num&1){buf.push(str);}if(!(num>>=1)){break;}str+=str;}return buf.join("");};dojo.string.pad=function(text,size,ch,end){if(!ch){ch="0";}var out=String(text),pad=dojo.string.rep(ch,Math.ceil((size-out.length)/ch.length));return end?out+pad:pad+out;};dojo.string.substitute=function(_1a2,map,_1a3,_1a4){_1a4=_1a4||dojo.global;_1a3=_1a3?dojo.hitch(_1a4,_1a3):function(v){return v;};return _1a2.replace(/\$\{([^\s\:\}]+)(?:\:([^\s\:\}]+))?\}/g,function(_1a5,key,_1a6){var _1a7=dojo.getObject(key,false,map);if(_1a6){_1a7=dojo.getObject(_1a6,false,_1a4).call(_1a4,_1a7,key);}return _1a3(_1a7,key).toString();});};dojo.string.trim=String.prototype.trim?dojo.trim:function(str){str=str.replace(/^\s+/,"");for(var i=str.length-1;i>=0;i--){if(/\S/.test(str.charAt(i))){str=str.substring(0,i+1);break;}}return str;};}if(!dojo._hasResource["dojo.cache"]){dojo._hasResource["dojo.cache"]=true;dojo.provide("dojo.cache");(function(){var _1a8={};dojo.cache=function(_1a9,url,_1aa){if(typeof _1a9=="string"){var _1ab=dojo.moduleUrl(_1a9,url);}else{_1ab=_1a9;_1aa=url;}var key=_1ab.toString();var val=_1aa;if(_1aa!==undefined&&!dojo.isString(_1aa)){val=("value" in _1aa?_1aa.value:undefined);}var _1ac=_1aa&&_1aa.sanitize?true:false;if(val||val===null){if(val==null){delete _1a8[key];}else{val=_1a8[key]=_1ac?dojo.cache._sanitize(val):val;}}else{if(!(key in _1a8)){val=dojo._getText(key);_1a8[key]=_1ac?dojo.cache._sanitize(val):val;}val=_1a8[key];}return val;};dojo.cache._sanitize=function(val){if(val){val=val.replace(/^\s*<\?xml(\s)+version=[\'\"](\d)*.(\d)*[\'\"](\s)*\?>/im,"");var _1ad=val.match(/<body[^>]*>\s*([\s\S]+)\s*<\/body>/im);if(_1ad){val=_1ad[1];}}else{val="";}return val;};})();}if(!dojo._hasResource["dijit._Templated"]){dojo._hasResource["dijit._Templated"]=true;dojo.provide("dijit._Templated");dojo.declare("dijit._Templated",null,{templateString:null,templatePath:null,widgetsInTemplate:false,_skipNodeCache:false,_earlyTemplatedStartup:false,constructor:function(){this._attachPoints=[];},_stringRepl:function(tmpl){var _1ae=this.declaredClass,_1af=this;return dojo.string.substitute(tmpl,this,function(_1b0,key){if(key.charAt(0)=="!"){_1b0=dojo.getObject(key.substr(1),false,_1af);}if(typeof _1b0=="undefined"){throw new Error(_1ae+" template:"+key);}if(_1b0==null){return "";}return key.charAt(0)=="!"?_1b0:_1b0.toString().replace(/"/g,"&quot;");},this);},buildRendering:function(){var _1b1=dijit._Templated.getCachedTemplate(this.templatePath,this.templateString,this._skipNodeCache);var node;if(dojo.isString(_1b1)){node=dojo._toDom(this._stringRepl(_1b1));if(node.nodeType!=1){throw new Error("Invalid template: "+_1b1);}}else{node=_1b1.cloneNode(true);}this.domNode=node;this._attachTemplateNodes(node);if(this.widgetsInTemplate){var _1b2=dojo.parser,qry,attr;if(_1b2._query!="[dojoType]"){qry=_1b2._query;attr=_1b2._attrName;_1b2._query="[dojoType]";_1b2._attrName="dojoType";}var cw=(this._startupWidgets=dojo.parser.parse(node,{noStart:!this._earlyTemplatedStartup}));if(qry){_1b2._query=qry;_1b2._attrName=attr;}this._supportingWidgets=dijit.findWidgets(node);this._attachTemplateNodes(cw,function(n,p){return n[p];});}this._fillContent(this.srcNodeRef);},_fillContent:function(_1b3){var dest=this.containerNode;if(_1b3&&dest){while(_1b3.hasChildNodes()){dest.appendChild(_1b3.firstChild);}}},_attachTemplateNodes:function(_1b4,_1b5){_1b5=_1b5||function(n,p){return n.getAttribute(p);};var _1b6=dojo.isArray(_1b4)?_1b4:(_1b4.all||_1b4.getElementsByTagName("*"));var x=dojo.isArray(_1b4)?0:-1;for(;x<_1b6.length;x++){var _1b7=(x==-1)?_1b4:_1b6[x];if(this.widgetsInTemplate&&_1b5(_1b7,"dojoType")){continue;}var _1b8=_1b5(_1b7,"dojoAttachPoint");if(_1b8){var _1b9,_1ba=_1b8.split(/\s*,\s*/);while((_1b9=_1ba.shift())){if(dojo.isArray(this[_1b9])){this[_1b9].push(_1b7);}else{this[_1b9]=_1b7;}this._attachPoints.push(_1b9);}}var _1bb=_1b5(_1b7,"dojoAttachEvent");if(_1bb){var _1bc,_1bd=_1bb.split(/\s*,\s*/);var trim=dojo.trim;while((_1bc=_1bd.shift())){if(_1bc){var _1be=null;if(_1bc.indexOf(":")!=-1){var _1bf=_1bc.split(":");_1bc=trim(_1bf[0]);_1be=trim(_1bf[1]);}else{_1bc=trim(_1bc);}if(!_1be){_1be=_1bc;}this.connect(_1b7,_1bc,_1be);}}}var role=_1b5(_1b7,"waiRole");if(role){dijit.setWaiRole(_1b7,role);}var _1c0=_1b5(_1b7,"waiState");if(_1c0){dojo.forEach(_1c0.split(/\s*,\s*/),function(_1c1){if(_1c1.indexOf("-")!=-1){var pair=_1c1.split("-");dijit.setWaiState(_1b7,pair[0],pair[1]);}});}}},startup:function(){dojo.forEach(this._startupWidgets,function(w){if(w&&!w._started&&w.startup){w.startup();}});this.inherited(arguments);},destroyRendering:function(){dojo.forEach(this._attachPoints,function(_1c2){delete this[_1c2];},this);this._attachPoints=[];this.inherited(arguments);}});dijit._Templated._templateCache={};dijit._Templated.getCachedTemplate=function(_1c3,_1c4,_1c5){var _1c6=dijit._Templated._templateCache;var key=_1c4||_1c3;var _1c7=_1c6[key];if(_1c7){try{if(!_1c7.ownerDocument||_1c7.ownerDocument==dojo.doc){return _1c7;}}catch(e){}dojo.destroy(_1c7);}if(!_1c4){_1c4=dojo.cache(_1c3,{sanitize:true});}_1c4=dojo.string.trim(_1c4);if(_1c5||_1c4.match(/\$\{([^\}]+)\}/g)){return (_1c6[key]=_1c4);}else{var node=dojo._toDom(_1c4);if(node.nodeType!=1){throw new Error("Invalid template: "+_1c4);}return (_1c6[key]=node);}};if(dojo.isIE){dojo.addOnWindowUnload(function(){var _1c8=dijit._Templated._templateCache;for(var key in _1c8){var _1c9=_1c8[key];if(typeof _1c9=="object"){dojo.destroy(_1c9);}delete _1c8[key];}});}dojo.extend(dijit._Widget,{dojoAttachEvent:"",dojoAttachPoint:"",waiRole:"",waiState:""});}if(!dojo._hasResource["dijit.form._FormMixin"]){dojo._hasResource["dijit.form._FormMixin"]=true;dojo.provide("dijit.form._FormMixin");dojo.declare("dijit.form._FormMixin",null,{reset:function(){dojo.forEach(this.getDescendants(),function(_1ca){if(_1ca.reset){_1ca.reset();}});},validate:function(){var _1cb=false;return dojo.every(dojo.map(this.getDescendants(),function(_1cc){_1cc._hasBeenBlurred=true;var _1cd=_1cc.disabled||!_1cc.validate||_1cc.validate();if(!_1cd&&!_1cb){dijit.scrollIntoView(_1cc.containerNode||_1cc.domNode);_1cc.focus();_1cb=true;}return _1cd;}),function(item){return item;});},setValues:function(val){dojo.deprecated(this.declaredClass+"::setValues() is deprecated. Use attr('value', val) instead.","","2.0");return this.attr("value",val);},_setValueAttr:function(obj){var map={};dojo.forEach(this.getDescendants(),function(_1ce){if(!_1ce.name){return;}var _1cf=map[_1ce.name]||(map[_1ce.name]=[]);_1cf.push(_1ce);});for(var name in map){if(!map.hasOwnProperty(name)){continue;}var _1d0=map[name],_1d1=dojo.getObject(name,false,obj);if(_1d1===undefined){continue;}if(!dojo.isArray(_1d1)){_1d1=[_1d1];}if(typeof _1d0[0].checked=="boolean"){dojo.forEach(_1d0,function(w,i){w.attr("value",dojo.indexOf(_1d1,w.value)!=-1);});}else{if(_1d0[0].multiple){_1d0[0].attr("value",_1d1);}else{dojo.forEach(_1d0,function(w,i){w.attr("value",_1d1[i]);});}}}},getValues:function(){dojo.deprecated(this.declaredClass+"::getValues() is deprecated. Use attr('value') instead.","","2.0");return this.attr("value");},_getValueAttr:function(){var obj={};dojo.forEach(this.getDescendants(),function(_1d2){var name=_1d2.name;if(!name||_1d2.disabled){return;}var _1d3=_1d2.attr("value");if(typeof _1d2.checked=="boolean"){if(/Radio/.test(_1d2.declaredClass)){if(_1d3!==false){dojo.setObject(name,_1d3,obj);}else{_1d3=dojo.getObject(name,false,obj);if(_1d3===undefined){dojo.setObject(name,null,obj);}}}else{var ary=dojo.getObject(name,false,obj);if(!ary){ary=[];dojo.setObject(name,ary,obj);}if(_1d3!==false){ary.push(_1d3);}}}else{var prev=dojo.getObject(name,false,obj);if(typeof prev!="undefined"){if(dojo.isArray(prev)){prev.push(_1d3);}else{dojo.setObject(name,[prev,_1d3],obj);}}else{dojo.setObject(name,_1d3,obj);}}});return obj;},isValid:function(){this._invalidWidgets=dojo.filter(this.getDescendants(),function(_1d4){return !_1d4.disabled&&_1d4.isValid&&!_1d4.isValid();});return !this._invalidWidgets.length;},onValidStateChange:function(_1d5){},_widgetChange:function(_1d6){var _1d7=this._lastValidState;if(!_1d6||this._lastValidState===undefined){_1d7=this.isValid();if(this._lastValidState===undefined){this._lastValidState=_1d7;}}else{if(_1d6.isValid){this._invalidWidgets=dojo.filter(this._invalidWidgets||[],function(w){return (w!=_1d6);},this);if(!_1d6.isValid()&&!_1d6.attr("disabled")){this._invalidWidgets.push(_1d6);}_1d7=(this._invalidWidgets.length===0);}}if(_1d7!==this._lastValidState){this._lastValidState=_1d7;this.onValidStateChange(_1d7);}},connectChildren:function(){dojo.forEach(this._changeConnections,dojo.hitch(this,"disconnect"));var _1d8=this;var _1d9=this._changeConnections=[];dojo.forEach(dojo.filter(this.getDescendants(),function(item){return item.validate;}),function(_1da){_1d9.push(_1d8.connect(_1da,"validate",dojo.hitch(_1d8,"_widgetChange",_1da)));_1d9.push(_1d8.connect(_1da,"_setDisabledAttr",dojo.hitch(_1d8,"_widgetChange",_1da)));});this._widgetChange(null);},startup:function(){this.inherited(arguments);this._changeConnections=[];this.connectChildren();}});}if(!dojo._hasResource["dijit._DialogMixin"]){dojo._hasResource["dijit._DialogMixin"]=true;dojo.provide("dijit._DialogMixin");dojo.declare("dijit._DialogMixin",null,{attributeMap:dijit._Widget.prototype.attributeMap,execute:function(_1db){},onCancel:function(){},onExecute:function(){},_onSubmit:function(){this.onExecute();this.execute(this.attr("value"));},_getFocusItems:function(_1dc){var _1dd=dijit._getTabNavigable(dojo.byId(_1dc));this._firstFocusItem=_1dd.lowest||_1dd.first||_1dc;this._lastFocusItem=_1dd.last||_1dd.highest||this._firstFocusItem;if(dojo.isMoz&&this._firstFocusItem.tagName.toLowerCase()=="input"&&dojo.getNodeProp(this._firstFocusItem,"type").toLowerCase()=="file"){dojo.attr(_1dc,"tabIndex","0");this._firstFocusItem=_1dc;}}});}if(!dojo._hasResource["dijit.DialogUnderlay"]){dojo._hasResource["dijit.DialogUnderlay"]=true;dojo.provide("dijit.DialogUnderlay");dojo.declare("dijit.DialogUnderlay",[dijit._Widget,dijit._Templated],{templateString:"<div class='dijitDialogUnderlayWrapper'><div class='dijitDialogUnderlay' dojoAttachPoint='node'></div></div>",dialogId:"","class":"",attributeMap:{id:"domNode"},_setDialogIdAttr:function(id){dojo.attr(this.node,"id",id+"_underlay");},_setClassAttr:function(_1de){this.node.className="dijitDialogUnderlay "+_1de;},postCreate:function(){dojo.body().appendChild(this.domNode);},layout:function(){var is=this.node.style,os=this.domNode.style;os.display="none";var _1df=dijit.getViewport();os.top=_1df.t+"px";os.left=_1df.l+"px";is.width=_1df.w+"px";is.height=_1df.h+"px";os.display="block";},show:function(){this.domNode.style.display="block";this.layout();this.bgIframe=new dijit.BackgroundIframe(this.domNode);},hide:function(){this.bgIframe.destroy();this.domNode.style.display="none";},uninitialize:function(){if(this.bgIframe){this.bgIframe.destroy();}this.inherited(arguments);}});}if(!dojo._hasResource["dijit._Contained"]){dojo._hasResource["dijit._Contained"]=true;dojo.provide("dijit._Contained");dojo.declare("dijit._Contained",null,{getParent:function(){var _1e0=dijit.getEnclosingWidget(this.domNode.parentNode);return _1e0&&_1e0.isContainer?_1e0:null;},_getSibling:function(_1e1){var node=this.domNode;do{node=node[_1e1+"Sibling"];}while(node&&node.nodeType!=1);return node&&dijit.byNode(node);},getPreviousSibling:function(){return this._getSibling("previous");},getNextSibling:function(){return this._getSibling("next");},getIndexInParent:function(){var p=this.getParent();if(!p||!p.getIndexOfChild){return -1;}return p.getIndexOfChild(this);}});}if(!dojo._hasResource["dijit._Container"]){dojo._hasResource["dijit._Container"]=true;dojo.provide("dijit._Container");dojo.declare("dijit._Container",null,{isContainer:true,buildRendering:function(){this.inherited(arguments);if(!this.containerNode){this.containerNode=this.domNode;}},addChild:function(_1e2,_1e3){var _1e4=this.containerNode;if(_1e3&&typeof _1e3=="number"){var _1e5=this.getChildren();if(_1e5&&_1e5.length>=_1e3){_1e4=_1e5[_1e3-1].domNode;_1e3="after";}}dojo.place(_1e2.domNode,_1e4,_1e3);if(this._started&&!_1e2._started){_1e2.startup();}},removeChild:function(_1e6){if(typeof _1e6=="number"&&_1e6>0){_1e6=this.getChildren()[_1e6];}if(_1e6&&_1e6.domNode){var node=_1e6.domNode;node.parentNode.removeChild(node);}},getChildren:function(){return dojo.query("> [widgetId]",this.containerNode).map(dijit.byNode);},hasChildren:function(){return dojo.query("> [widgetId]",this.containerNode).length>0;},destroyDescendants:function(_1e7){dojo.forEach(this.getChildren(),function(_1e8){_1e8.destroyRecursive(_1e7);});},_getSiblingOfChild:function(_1e9,dir){var node=_1e9.domNode,_1ea=(dir>0?"nextSibling":"previousSibling");do{node=node[_1ea];}while(node&&(node.nodeType!=1||!dijit.byNode(node)));return node&&dijit.byNode(node);},getIndexOfChild:function(_1eb){return dojo.indexOf(this.getChildren(),_1eb);},startup:function(){if(this._started){return;}dojo.forEach(this.getChildren(),function(_1ec){_1ec.startup();});this.inherited(arguments);}});}if(!dojo._hasResource["dijit.layout._LayoutWidget"]){dojo._hasResource["dijit.layout._LayoutWidget"]=true;dojo.provide("dijit.layout._LayoutWidget");dojo.declare("dijit.layout._LayoutWidget",[dijit._Widget,dijit._Container,dijit._Contained],{baseClass:"dijitLayoutContainer",isLayoutContainer:true,postCreate:function(){dojo.addClass(this.domNode,"dijitContainer");dojo.addClass(this.domNode,this.baseClass);this.inherited(arguments);},startup:function(){if(this._started){return;}this.inherited(arguments);var _1ed=this.getParent&&this.getParent();if(!(_1ed&&_1ed.isLayoutContainer)){this.resize();this.connect(dojo.isIE?this.domNode:dojo.global,"onresize",function(){this.resize();});}},resize:function(_1ee,_1ef){var node=this.domNode;if(_1ee){dojo.marginBox(node,_1ee);if(_1ee.t){node.style.top=_1ee.t+"px";}if(_1ee.l){node.style.left=_1ee.l+"px";}}var mb=_1ef||{};dojo.mixin(mb,_1ee||{});if(!("h" in mb)||!("w" in mb)){mb=dojo.mixin(dojo.marginBox(node),mb);}var cs=dojo.getComputedStyle(node);var me=dojo._getMarginExtents(node,cs);var be=dojo._getBorderExtents(node,cs);var bb=(this._borderBox={w:mb.w-(me.w+be.w),h:mb.h-(me.h+be.h)});var pe=dojo._getPadExtents(node,cs);this._contentBox={l:dojo._toPixelValue(node,cs.paddingLeft),t:dojo._toPixelValue(node,cs.paddingTop),w:bb.w-pe.w,h:bb.h-pe.h};this.layout();},layout:function(){},_setupChild:function(_1f0){dojo.addClass(_1f0.domNode,this.baseClass+"-child");if(_1f0.baseClass){dojo.addClass(_1f0.domNode,this.baseClass+"-"+_1f0.baseClass);}},addChild:function(_1f1,_1f2){this.inherited(arguments);if(this._started){this._setupChild(_1f1);}},removeChild:function(_1f3){dojo.removeClass(_1f3.domNode,this.baseClass+"-child");if(_1f3.baseClass){dojo.removeClass(_1f3.domNode,this.baseClass+"-"+_1f3.baseClass);}this.inherited(arguments);}});dijit.layout.marginBox2contentBox=function(node,mb){var cs=dojo.getComputedStyle(node);var me=dojo._getMarginExtents(node,cs);var pb=dojo._getPadBorderExtents(node,cs);return {l:dojo._toPixelValue(node,cs.paddingLeft),t:dojo._toPixelValue(node,cs.paddingTop),w:mb.w-(me.w+pb.w),h:mb.h-(me.h+pb.h)};};(function(){var _1f4=function(word){return word.substring(0,1).toUpperCase()+word.substring(1);};var size=function(_1f5,dim){_1f5.resize?_1f5.resize(dim):dojo.marginBox(_1f5.domNode,dim);dojo.mixin(_1f5,dojo.marginBox(_1f5.domNode));dojo.mixin(_1f5,dim);};dijit.layout.layoutChildren=function(_1f6,dim,_1f7){dim=dojo.mixin({},dim);dojo.addClass(_1f6,"dijitLayoutContainer");_1f7=dojo.filter(_1f7,function(item){return item.layoutAlign!="client";}).concat(dojo.filter(_1f7,function(item){return item.layoutAlign=="client";}));dojo.forEach(_1f7,function(_1f8){var elm=_1f8.domNode,pos=_1f8.layoutAlign;var _1f9=elm.style;_1f9.left=dim.l+"px";_1f9.top=dim.t+"px";_1f9.bottom=_1f9.right="auto";dojo.addClass(elm,"dijitAlign"+_1f4(pos));if(pos=="top"||pos=="bottom"){size(_1f8,{w:dim.w});dim.h-=_1f8.h;if(pos=="top"){dim.t+=_1f8.h;}else{_1f9.top=dim.t+dim.h+"px";}}else{if(pos=="left"||pos=="right"){size(_1f8,{h:dim.h});dim.w-=_1f8.w;if(pos=="left"){dim.l+=_1f8.w;}else{_1f9.left=dim.l+dim.w+"px";}}else{if(pos=="client"){size(_1f8,dim);}}}});};})();}if(!dojo._hasResource["dojo.html"]){dojo._hasResource["dojo.html"]=true;dojo.provide("dojo.html");(function(){var _1fa=0,d=dojo;dojo.html._secureForInnerHtml=function(cont){return cont.replace(/(?:\s*<!DOCTYPE\s[^>]+>|<title[^>]*>[\s\S]*?<\/title>)/ig,"");};dojo.html._emptyNode=dojo.empty;dojo.html._setNodeContent=function(node,cont){d.empty(node);if(cont){if(typeof cont=="string"){cont=d._toDom(cont,node.ownerDocument);}if(!cont.nodeType&&d.isArrayLike(cont)){for(var _1fb=cont.length,i=0;i<cont.length;i=_1fb==cont.length?i+1:0){d.place(cont[i],node,"last");}}else{d.place(cont,node,"last");}}return node;};dojo.declare("dojo.html._ContentSetter",null,{node:"",content:"",id:"",cleanContent:false,extractContent:false,parseContent:false,constructor:function(_1fc,node){dojo.mixin(this,_1fc||{});node=this.node=dojo.byId(this.node||node);if(!this.id){this.id=["Setter",(node)?node.id||node.tagName:"",_1fa++].join("_");}if(!(this.node||node)){new Error(this.declaredClass+": no node provided to "+this.id);}},set:function(cont,_1fd){if(undefined!==cont){this.content=cont;}if(_1fd){this._mixin(_1fd);}this.onBegin();this.setContent();this.onEnd();return this.node;},setContent:function(){var node=this.node;if(!node){console.error("setContent given no node");}try{node=dojo.html._setNodeContent(node,this.content);}catch(e){var _1fe=this.onContentError(e);try{node.innerHTML=_1fe;}catch(e){console.error("Fatal "+this.declaredClass+".setContent could not change content due to "+e.message,e);}}this.node=node;},empty:function(){if(this.parseResults&&this.parseResults.length){dojo.forEach(this.parseResults,function(w){if(w.destroy){w.destroy();}});delete this.parseResults;}dojo.html._emptyNode(this.node);},onBegin:function(){var cont=this.content;if(dojo.isString(cont)){if(this.cleanContent){cont=dojo.html._secureForInnerHtml(cont);}if(this.extractContent){var _1ff=cont.match(/<body[^>]*>\s*([\s\S]+)\s*<\/body>/im);if(_1ff){cont=_1ff[1];}}}this.empty();this.content=cont;return this.node;},onEnd:function(){if(this.parseContent){this._parse();}return this.node;},tearDown:function(){delete this.parseResults;delete this.node;delete this.content;},onContentError:function(err){return "Error occured setting content: "+err;},_mixin:function(_200){var _201={},key;for(key in _200){if(key in _201){continue;}this[key]=_200[key];}},_parse:function(){var _202=this.node;try{this.parseResults=dojo.parser.parse(_202,true);}catch(e){this._onError("Content",e,"Error parsing in _ContentSetter#"+this.id);}},_onError:function(type,err,_203){var _204=this["on"+type+"Error"].call(this,err);if(_203){console.error(_203,err);}else{if(_204){dojo.html._setNodeContent(this.node,_204,true);}}}});dojo.html.set=function(node,cont,_205){if(undefined==cont){console.warn("dojo.html.set: no cont argument provided, using empty string");cont="";}if(!_205){return dojo.html._setNodeContent(node,cont,true);}else{var op=new dojo.html._ContentSetter(dojo.mixin(_205,{content:cont,node:node}));return op.set();}};})();}if(!dojo._hasResource["dojo.i18n"]){dojo._hasResource["dojo.i18n"]=true;dojo.provide("dojo.i18n");dojo.i18n.getLocalization=function(_206,_207,_208){_208=dojo.i18n.normalizeLocale(_208);var _209=_208.split("-");var _20a=[_206,"nls",_207].join(".");var _20b=dojo._loadedModules[_20a];if(_20b){var _20c;for(var i=_209.length;i>0;i--){var loc=_209.slice(0,i).join("_");if(_20b[loc]){_20c=_20b[loc];break;}}if(!_20c){_20c=_20b.ROOT;}if(_20c){var _20d=function(){};_20d.prototype=_20c;return new _20d();}}throw new Error("Bundle not found: "+_207+" in "+_206+" , locale="+_208);};dojo.i18n.normalizeLocale=function(_20e){var _20f=_20e?_20e.toLowerCase():dojo.locale;if(_20f=="root"){_20f="ROOT";}return _20f;};dojo.i18n._requireLocalization=function(_210,_211,_212,_213){var _214=dojo.i18n.normalizeLocale(_212);var _215=[_210,"nls",_211].join(".");var _216="";if(_213){var _217=_213.split(",");for(var i=0;i<_217.length;i++){if(_214["indexOf"](_217[i])==0){if(_217[i].length>_216.length){_216=_217[i];}}}if(!_216){_216="ROOT";}}var _218=_213?_216:_214;var _219=dojo._loadedModules[_215];var _21a=null;if(_219){if(dojo.config.localizationComplete&&_219._built){return;}var _21b=_218.replace(/-/g,"_");var _21c=_215+"."+_21b;_21a=dojo._loadedModules[_21c];}if(!_21a){_219=dojo["provide"](_215);var syms=dojo._getModuleSymbols(_210);var _21d=syms.concat("nls").join("/");var _21e;dojo.i18n._searchLocalePath(_218,_213,function(loc){var _21f=loc.replace(/-/g,"_");var _220=_215+"."+_21f;var _221=false;if(!dojo._loadedModules[_220]){dojo["provide"](_220);var _222=[_21d];if(loc!="ROOT"){_222.push(loc);}_222.push(_211);var _223=_222.join("/")+".js";_221=dojo._loadPath(_223,null,function(hash){var _224=function(){};_224.prototype=_21e;_219[_21f]=new _224();for(var j in hash){_219[_21f][j]=hash[j];}});}else{_221=true;}if(_221&&_219[_21f]){_21e=_219[_21f];}else{_219[_21f]=_21e;}if(_213){return true;}});}if(_213&&_214!=_216){_219[_214.replace(/-/g,"_")]=_219[_216.replace(/-/g,"_")];}};(function(){var _225=dojo.config.extraLocale;if(_225){if(!_225 instanceof Array){_225=[_225];}var req=dojo.i18n._requireLocalization;dojo.i18n._requireLocalization=function(m,b,_226,_227){req(m,b,_226,_227);if(_226){return;}for(var i=0;i<_225.length;i++){req(m,b,_225[i],_227);}};}})();dojo.i18n._searchLocalePath=function(_228,down,_229){_228=dojo.i18n.normalizeLocale(_228);var _22a=_228.split("-");var _22b=[];for(var i=_22a.length;i>0;i--){_22b.push(_22a.slice(0,i).join("-"));}_22b.push(false);if(down){_22b.reverse();}for(var j=_22b.length-1;j>=0;j--){var loc=_22b[j]||"ROOT";var stop=_229(loc);if(stop){break;}}};dojo.i18n._preloadLocalizations=function(_22c,_22d){function _22e(_22f){_22f=dojo.i18n.normalizeLocale(_22f);dojo.i18n._searchLocalePath(_22f,true,function(loc){for(var i=0;i<_22d.length;i++){if(_22d[i]==loc){dojo["require"](_22c+"_"+loc);return true;}}return false;});};_22e();var _230=dojo.config.extraLocale||[];for(var i=0;i<_230.length;i++){_22e(_230[i]);}};}if(!dojo._hasResource["dijit.layout.ContentPane"]){dojo._hasResource["dijit.layout.ContentPane"]=true;dojo.provide("dijit.layout.ContentPane");dojo.declare("dijit.layout.ContentPane",dijit._Widget,{href:"",extractContent:false,parseOnLoad:true,preventCache:false,preload:false,refreshOnShow:false,loadingMessage:"<span class='dijitContentPaneLoading'>${loadingState}</span>",errorMessage:"<span class='dijitContentPaneError'>${errorState}</span>",isLoaded:false,baseClass:"dijitContentPane",doLayout:true,ioArgs:{},isContainer:true,isLayoutContainer:true,onLoadDeferred:null,attributeMap:dojo.delegate(dijit._Widget.prototype.attributeMap,{title:[]}),postMixInProperties:function(){this.inherited(arguments);var _231=dojo.i18n.getLocalization("dijit","loading",this.lang);this.loadingMessage=dojo.string.substitute(this.loadingMessage,_231);this.errorMessage=dojo.string.substitute(this.errorMessage,_231);if(!this.href&&this.srcNodeRef&&this.srcNodeRef.innerHTML){this.isLoaded=true;}},buildRendering:function(){this.inherited(arguments);if(!this.containerNode){this.containerNode=this.domNode;}},postCreate:function(){this.domNode.title="";if(!dojo.attr(this.domNode,"role")){dijit.setWaiRole(this.domNode,"group");}dojo.addClass(this.domNode,this.baseClass);},startup:function(){if(this._started){return;}var _232=dijit._Contained.prototype.getParent.call(this);this._childOfLayoutWidget=_232&&_232.isLayoutContainer;this._needLayout=!this._childOfLayoutWidget;if(this.isLoaded){dojo.forEach(this.getChildren(),function(_233){_233.startup();});}if(this._isShown()||this.preload){this._onShow();}this.inherited(arguments);},_checkIfSingleChild:function(){var _234=dojo.query("> *",this.containerNode).filter(function(node){return node.tagName!=="SCRIPT";}),_235=_234.filter(function(node){return dojo.hasAttr(node,"dojoType")||dojo.hasAttr(node,"widgetId");}),_236=dojo.filter(_235.map(dijit.byNode),function(_237){return _237&&_237.domNode&&_237.resize;});if(_234.length==_235.length&&_236.length==1){this._singleChild=_236[0];}else{delete this._singleChild;}dojo.toggleClass(this.containerNode,this.baseClass+"SingleChild",!!this._singleChild);},setHref:function(href){dojo.deprecated("dijit.layout.ContentPane.setHref() is deprecated. Use attr('href', ...) instead.","","2.0");return this.attr("href",href);},_setHrefAttr:function(href){this.cancel();this.onLoadDeferred=new dojo.Deferred(dojo.hitch(this,"cancel"));this.href=href;if(this._created&&(this.preload||this._isShown())){this._load();}else{this._hrefChanged=true;}return this.onLoadDeferred;},setContent:function(data){dojo.deprecated("dijit.layout.ContentPane.setContent() is deprecated.  Use attr('content', ...) instead.","","2.0");this.attr("content",data);},_setContentAttr:function(data){this.href="";this.cancel();this.onLoadDeferred=new dojo.Deferred(dojo.hitch(this,"cancel"));this._setContent(data||"");this._isDownloaded=false;return this.onLoadDeferred;},_getContentAttr:function(){return this.containerNode.innerHTML;},cancel:function(){if(this._xhrDfd&&(this._xhrDfd.fired==-1)){this._xhrDfd.cancel();}delete this._xhrDfd;this.onLoadDeferred=null;},uninitialize:function(){if(this._beingDestroyed){this.cancel();}this.inherited(arguments);},destroyRecursive:function(_238){if(this._beingDestroyed){return;}this.inherited(arguments);},resize:function(_239,_23a){if(!this._wasShown){this._onShow();}this._resizeCalled=true;if(_239){dojo.marginBox(this.domNode,_239);}var cn=this.containerNode;if(cn===this.domNode){var mb=_23a||{};dojo.mixin(mb,_239||{});if(!("h" in mb)||!("w" in mb)){mb=dojo.mixin(dojo.marginBox(cn),mb);}this._contentBox=dijit.layout.marginBox2contentBox(cn,mb);}else{this._contentBox=dojo.contentBox(cn);}this._layoutChildren();},_isShown:function(){if(this._childOfLayoutWidget){if(this._resizeCalled&&"open" in this){return this.open;}return this._resizeCalled;}else{if("open" in this){return this.open;}else{var node=this.domNode;return (node.style.display!="none")&&(node.style.visibility!="hidden")&&!dojo.hasClass(node,"dijitHidden");}}},_onShow:function(){if(this.href){if(!this._xhrDfd&&(!this.isLoaded||this._hrefChanged||this.refreshOnShow)){this.refresh();}}else{if(!this._childOfLayoutWidget&&this._needLayout){this._layoutChildren();}}this.inherited(arguments);this._wasShown=true;},refresh:function(){this.cancel();this.onLoadDeferred=new dojo.Deferred(dojo.hitch(this,"cancel"));this._load();return this.onLoadDeferred;},_load:function(){this._setContent(this.onDownloadStart(),true);var self=this;var _23b={preventCache:(this.preventCache||this.refreshOnShow),url:this.href,handleAs:"text"};if(dojo.isObject(this.ioArgs)){dojo.mixin(_23b,this.ioArgs);}var hand=(this._xhrDfd=(this.ioMethod||dojo.xhrGet)(_23b));hand.addCallback(function(html){try{self._isDownloaded=true;self._setContent(html,false);self.onDownloadEnd();}catch(err){self._onError("Content",err);}delete self._xhrDfd;return html;});hand.addErrback(function(err){if(!hand.canceled){self._onError("Download",err);}delete self._xhrDfd;return err;});delete this._hrefChanged;},_onLoadHandler:function(data){this.isLoaded=true;try{this.onLoadDeferred.callback(data);this.onLoad(data);}catch(e){console.error("Error "+this.widgetId+" running custom onLoad code: "+e.message);}},_onUnloadHandler:function(){this.isLoaded=false;try{this.onUnload();}catch(e){console.error("Error "+this.widgetId+" running custom onUnload code: "+e.message);}},destroyDescendants:function(){if(this.isLoaded){this._onUnloadHandler();}var _23c=this._contentSetter;dojo.forEach(this.getChildren(),function(_23d){if(_23d.destroyRecursive){_23d.destroyRecursive();}});if(_23c){dojo.forEach(_23c.parseResults,function(_23e){if(_23e.destroyRecursive&&_23e.domNode&&_23e.domNode.parentNode==dojo.body()){_23e.destroyRecursive();}});delete _23c.parseResults;}dojo.html._emptyNode(this.containerNode);delete this._singleChild;},_setContent:function(cont,_23f){this.destroyDescendants();var _240=this._contentSetter;if(!(_240&&_240 instanceof dojo.html._ContentSetter)){_240=this._contentSetter=new dojo.html._ContentSetter({node:this.containerNode,_onError:dojo.hitch(this,this._onError),onContentError:dojo.hitch(this,function(e){var _241=this.onContentError(e);try{this.containerNode.innerHTML=_241;}catch(e){console.error("Fatal "+this.id+" could not change content due to "+e.message,e);}})});}var _242=dojo.mixin({cleanContent:this.cleanContent,extractContent:this.extractContent,parseContent:this.parseOnLoad},this._contentSetterParams||{});dojo.mixin(_240,_242);_240.set((dojo.isObject(cont)&&cont.domNode)?cont.domNode:cont);delete this._contentSetterParams;if(!_23f){dojo.forEach(this.getChildren(),function(_243){if(!this.parseOnLoad||_243.getParent){_243.startup();}},this);this._scheduleLayout();this._onLoadHandler(cont);}},_onError:function(type,err,_244){this.onLoadDeferred.errback(err);var _245=this["on"+type+"Error"].call(this,err);if(_244){console.error(_244,err);}else{if(_245){this._setContent(_245,true);}}},_scheduleLayout:function(){if(this._isShown()){this._layoutChildren();}else{this._needLayout=true;}},_layoutChildren:function(){if(this.doLayout){this._checkIfSingleChild();}if(this._singleChild&&this._singleChild.resize){var cb=this._contentBox||dojo.contentBox(this.containerNode);this._singleChild.resize({w:cb.w,h:cb.h});}else{dojo.forEach(this.getChildren(),function(_246){if(_246.resize){_246.resize();}});}delete this._needLayout;},onLoad:function(data){},onUnload:function(){},onDownloadStart:function(){return this.loadingMessage;},onContentError:function(_247){},onDownloadError:function(_248){return this.errorMessage;},onDownloadEnd:function(){}});}if(!dojo._hasResource["dijit.TooltipDialog"]){dojo._hasResource["dijit.TooltipDialog"]=true;dojo.provide("dijit.TooltipDialog");dojo.declare("dijit.TooltipDialog",[dijit.layout.ContentPane,dijit._Templated,dijit.form._FormMixin,dijit._DialogMixin],{title:"",doLayout:false,autofocus:true,baseClass:"dijitTooltipDialog",_firstFocusItem:null,_lastFocusItem:null,templateString:dojo.cache("dijit","templates/TooltipDialog.html","<div waiRole=\"presentation\">\n\t<div class=\"dijitTooltipContainer\" waiRole=\"presentation\">\n\t\t<div class =\"dijitTooltipContents dijitTooltipFocusNode\" dojoAttachPoint=\"containerNode\" tabindex=\"-1\" waiRole=\"dialog\"></div>\n\t</div>\n\t<div class=\"dijitTooltipConnector\" waiRole=\"presentation\"></div>\n</div>\n"),postCreate:function(){this.inherited(arguments);this.connect(this.containerNode,"onkeypress","_onKey");this.containerNode.title=this.title;},orient:function(node,_249,_24a){var c=this._currentOrientClass;if(c){dojo.removeClass(this.domNode,c);}c="dijitTooltipAB"+(_24a.charAt(1)=="L"?"Left":"Right")+" dijitTooltip"+(_24a.charAt(0)=="T"?"Below":"Above");dojo.addClass(this.domNode,c);this._currentOrientClass=c;},onOpen:function(pos){this.orient(this.domNode,pos.aroundCorner,pos.corner);this._onShow();if(this.autofocus){this._getFocusItems(this.containerNode);dijit.focus(this._firstFocusItem);}},onClose:function(){this.onHide();},_onKey:function(evt){var node=evt.target;var dk=dojo.keys;if(evt.charOrCode===dk.TAB){this._getFocusItems(this.containerNode);}var _24b=(this._firstFocusItem==this._lastFocusItem);if(evt.charOrCode==dk.ESCAPE){setTimeout(dojo.hitch(this,"onCancel"),0);dojo.stopEvent(evt);}else{if(node==this._firstFocusItem&&evt.shiftKey&&evt.charOrCode===dk.TAB){if(!_24b){dijit.focus(this._lastFocusItem);}dojo.stopEvent(evt);}else{if(node==this._lastFocusItem&&evt.charOrCode===dk.TAB&&!evt.shiftKey){if(!_24b){dijit.focus(this._firstFocusItem);}dojo.stopEvent(evt);}else{if(evt.charOrCode===dk.TAB){evt.stopPropagation();}}}}}});}if(!dojo._hasResource["dijit.Dialog"]){dojo._hasResource["dijit.Dialog"]=true;dojo.provide("dijit.Dialog");dojo.declare("dijit._DialogBase",[dijit._Templated,dijit.form._FormMixin,dijit._DialogMixin],{templateString:dojo.cache("dijit","templates/Dialog.html","<div class=\"dijitDialog\" tabindex=\"-1\" waiRole=\"dialog\" waiState=\"labelledby-${id}_title\">\n\t<div dojoAttachPoint=\"titleBar\" class=\"dijitDialogTitleBar\">\n\t<span dojoAttachPoint=\"titleNode\" class=\"dijitDialogTitle\" id=\"${id}_title\"></span>\n\t<span dojoAttachPoint=\"closeButtonNode\" class=\"dijitDialogCloseIcon\" dojoAttachEvent=\"onclick: onCancel, onmouseenter: _onCloseEnter, onmouseleave: _onCloseLeave\" title=\"${buttonCancel}\">\n\t\t<span dojoAttachPoint=\"closeText\" class=\"closeText\" title=\"${buttonCancel}\">x</span>\n\t</span>\n\t</div>\n\t\t<div dojoAttachPoint=\"containerNode\" class=\"dijitDialogPaneContent\"></div>\n</div>\n"),attributeMap:dojo.delegate(dijit._Widget.prototype.attributeMap,{title:[{node:"titleNode",type:"innerHTML"},{node:"titleBar",type:"attribute"}],"aria-describedby":""}),open:false,duration:dijit.defaultDuration,refocus:true,autofocus:true,_firstFocusItem:null,_lastFocusItem:null,doLayout:false,draggable:true,"aria-describedby":"",postMixInProperties:function(){var _24c=dojo.i18n.getLocalization("dijit","common");dojo.mixin(this,_24c);this.inherited(arguments);},postCreate:function(){dojo.style(this.domNode,{display:"none",position:"absolute"});dojo.body().appendChild(this.domNode);this.inherited(arguments);this.connect(this,"onExecute","hide");this.connect(this,"onCancel","hide");this._modalconnects=[];},onLoad:function(){this._position();this.inherited(arguments);},_endDrag:function(e){if(e&&e.node&&e.node===this.domNode){this._relativePosition=dojo.position(e.node);}},_setup:function(){var node=this.domNode;if(this.titleBar&&this.draggable){this._moveable=(dojo.isIE==6)?new dojo.dnd.TimedMoveable(node,{handle:this.titleBar}):new dojo.dnd.Moveable(node,{handle:this.titleBar,timeout:0});dojo.subscribe("/dnd/move/stop",this,"_endDrag");}else{dojo.addClass(node,"dijitDialogFixed");}this.underlayAttrs={dialogId:this.id,"class":dojo.map(this["class"].split(/\s/),function(s){return s+"_underlay";}).join(" ")};this._fadeIn=dojo.fadeIn({node:node,duration:this.duration,beforeBegin:dojo.hitch(this,function(){var _24d=dijit._underlay;if(!_24d){_24d=dijit._underlay=new dijit.DialogUnderlay(this.underlayAttrs);}else{_24d.attr(this.underlayAttrs);}var _24e=948+dijit._dialogStack.length*2;dojo.style(dijit._underlay.domNode,"zIndex",_24e);dojo.style(this.domNode,"zIndex",_24e+1);_24d.show();}),onEnd:dojo.hitch(this,function(){if(this.autofocus){this._getFocusItems(this.domNode);dijit.focus(this._firstFocusItem);}})});this._fadeOut=dojo.fadeOut({node:node,duration:this.duration,onEnd:dojo.hitch(this,function(){node.style.display="none";var ds=dijit._dialogStack;if(ds.length==0){dijit._underlay.hide();}else{dojo.style(dijit._underlay.domNode,"zIndex",948+ds.length*2);dijit._underlay.attr(ds[ds.length-1].underlayAttrs);}if(this.refocus){var _24f=this._savedFocus;if(ds.length>0){var pd=ds[ds.length-1];if(!dojo.isDescendant(_24f.node,pd.domNode)){pd._getFocusItems(pd.domNode);_24f=pd._firstFocusItem;}}dijit.focus(_24f);}})});},uninitialize:function(){var _250=false;if(this._fadeIn&&this._fadeIn.status()=="playing"){_250=true;this._fadeIn.stop();}if(this._fadeOut&&this._fadeOut.status()=="playing"){_250=true;this._fadeOut.stop();}if((this.open||_250)&&!dijit._underlay._destroyed){dijit._underlay.hide();}if(this._moveable){this._moveable.destroy();}this.inherited(arguments);},_size:function(){this._checkIfSingleChild();if(this._singleChild){if(this._singleChildOriginalStyle){this._singleChild.domNode.style.cssText=this._singleChildOriginalStyle;}delete this._singleChildOriginalStyle;}else{dojo.style(this.containerNode,{width:"auto",height:"auto"});}var mb=dojo.marginBox(this.domNode);var _251=dijit.getViewport();if(mb.w>=_251.w||mb.h>=_251.h){var w=Math.min(mb.w,Math.floor(_251.w*0.75)),h=Math.min(mb.h,Math.floor(_251.h*0.75));if(this._singleChild&&this._singleChild.resize){this._singleChildOriginalStyle=this._singleChild.domNode.style.cssText;this._singleChild.resize({w:w,h:h});}else{dojo.style(this.containerNode,{width:w+"px",height:h+"px",overflow:"auto",position:"relative"});}}else{if(this._singleChild&&this._singleChild.resize){this._singleChild.resize();}}},_position:function(){if(!dojo.hasClass(dojo.body(),"dojoMove")){var node=this.domNode,_252=dijit.getViewport(),p=this._relativePosition,bb=p?null:dojo._getBorderBox(node),l=Math.floor(_252.l+(p?p.x:(_252.w-bb.w)/2)),t=Math.floor(_252.t+(p?p.y:(_252.h-bb.h)/2));dojo.style(node,{left:l+"px",top:t+"px"});}},_onKey:function(evt){var ds=dijit._dialogStack;if(ds[ds.length-1]!=this){return;}if(evt.charOrCode){var dk=dojo.keys;var node=evt.target;if(evt.charOrCode===dk.TAB){this._getFocusItems(this.domNode);}var _253=(this._firstFocusItem==this._lastFocusItem);if(node==this._firstFocusItem&&evt.shiftKey&&evt.charOrCode===dk.TAB){if(!_253){dijit.focus(this._lastFocusItem);}dojo.stopEvent(evt);}else{if(node==this._lastFocusItem&&evt.charOrCode===dk.TAB&&!evt.shiftKey){if(!_253){dijit.focus(this._firstFocusItem);}dojo.stopEvent(evt);}else{while(node){if(node==this.domNode||dojo.hasClass(node,"dijitPopup")){if(evt.charOrCode==dk.ESCAPE){this.onCancel();}else{return;}}node=node.parentNode;}if(evt.charOrCode!==dk.TAB){dojo.stopEvent(evt);}else{if(!dojo.isOpera){try{this._firstFocusItem.focus();}catch(e){}}}}}}},show:function(){if(this.open){return;}if(!this._alreadyInitialized){this._setup();this._alreadyInitialized=true;}if(this._fadeOut.status()=="playing"){this._fadeOut.stop();}this._modalconnects.push(dojo.connect(window,"onscroll",this,"layout"));this._modalconnects.push(dojo.connect(window,"onresize",this,function(){var _254=dijit.getViewport();if(!this._oldViewport||_254.h!=this._oldViewport.h||_254.w!=this._oldViewport.w){this.layout();this._oldViewport=_254;}}));this._modalconnects.push(dojo.connect(dojo.doc.documentElement,"onkeypress",this,"_onKey"));dojo.style(this.domNode,{opacity:0,display:""});this.open=true;this._onShow();this._size();this._position();dijit._dialogStack.push(this);this._fadeIn.play();this._savedFocus=dijit.getFocus(this);},hide:function(){var ds=dijit._dialogStack;if(!this._alreadyInitialized||this!=ds[ds.length-1]){return;}if(this._fadeIn.status()=="playing"){this._fadeIn.stop();}ds.pop();this._fadeOut.play();if(this._scrollConnected){this._scrollConnected=false;}dojo.forEach(this._modalconnects,dojo.disconnect);this._modalconnects=[];if(this._relativePosition){delete this._relativePosition;}this.open=false;this.onHide();},layout:function(){if(this.domNode.style.display!="none"){if(dijit._underlay){dijit._underlay.layout();}this._position();}},destroy:function(){dojo.forEach(this._modalconnects,dojo.disconnect);if(this.refocus&&this.open){setTimeout(dojo.hitch(dijit,"focus",this._savedFocus),25);}this.inherited(arguments);},_onCloseEnter:function(){dojo.addClass(this.closeButtonNode,"dijitDialogCloseIcon-hover");},_onCloseLeave:function(){dojo.removeClass(this.closeButtonNode,"dijitDialogCloseIcon-hover");}});dojo.declare("dijit.Dialog",[dijit.layout.ContentPane,dijit._DialogBase],{});dijit._dialogStack=[];}if(!dojo._hasResource["plugd.base"]){dojo._hasResource["plugd.base"]=true;dojo.provide("plugd.base");(function(d){var _255=d.place,_256=d.style,_257="display",_258="visibility",_259={"slow":1800,"fast":420,"granny":7600,"racecar":200,"snail":1200,"rocket":100,"peller":3500,"mild":900},_25a=d.config.keepLayout||false,_25b=_25a?_258:_257,_25c=_25a?"hidden":"none",_25d=_25a?"visible":(d.config.useBlock?"block":""),_25e=function(arg){return _259[arg in _259?arg:"fast"];},_25f=d.NodeList,_260=_25f._adaptAsForEach,_261,_262=0,_263=/enter|over/,_264="getSelection",_265=d.global[_264]||d.doc[_264]||function(){return d.doc.selection.createRange().text||"";};d[_264]=function(){return _265()+"";};d.unique=function(_266,base){base=base||"djid_";do{_261=base+(++_262);}while(_266(_261));return _261;};d.generateId=function(base){return d.unique(d.byId,base);};d.load=function(){var a=d._toArray(arguments),l=a.length,f=l&&!d.isString(a[l-1])?a.pop():null;d.forEach(a,d.require,d);f&&d.ready(f);};d.show=function(n,arg){if(!arg){_256(n,_25b,_25d);}else{if(d.isString(arg)){_256(n,"opacity",0);d.show(n);d.anim(n,{opacity:1},_25e(arg));}}};d.hide=function(n,arg){if(!arg){_256(n,_25b,_25c);}else{if(d.isString(arg)){_256(n,"opacity",1);d.anim(n,{opacity:0},_25e(arg),null,d.hitch(d,"hide",n));}}};d.wrap=function(n,_267){var _268=d.create(_267);_255(_268,n,"before");_255(n,_268,"first");return _268;};d.toggle=function(n,_269){n=d.byId(n);d[(n.style[_25b]==_25c?"show":"hide")](n,_269);};d.qw=function(str){return str?d.map(str.split(/\ +/),d.trim):[];};d.create=function(_26a,_26b,_26c,pos){var n=_26a.charAt(0)=="<"?d._toDom(_26a):d.doc.createElement(_26a);if(_26b){d.attr(n,_26b);}if(_26c){_255(n,_26c,pos);}return n;};d.sub=d.subscribe;d.pub=function(t){d.publish(t,d._toArray(arguments,1));};d.forIn=function(obj,_26d,_26e){_26e=_26e||d.global;for(var key in obj){_26d.call(_26e,obj[key],key,obj);}};d.compose=function(){var list=d._toArray(arguments);return function(){var a=arguments;d.forEach(list,function(fn){a=fn.apply(this,d.isArrayLike(a)?a:[a]);});return a;};};d.delay=function(fn,_26f){var args=d._toArray(arguments,2);return setTimeout(function(){fn.apply(this,args);},_26f);};d.defer=function(fn){d.delay(fn,0);};d.now=function(){return +(new Date());};d.reduce=function(arr,key){return d.map(arr,function(item){return item[key];});};d.all=d.every;d.any=d.some;d.each=function(list){return list&&d[(d.isArrayLike(list)?"forEach":"forIn")].apply(d,arguments);};d.extend(_25f,{show:_260(d.show),hide:_260(d.hide),toggle:_260(d.toggle),destroy:_260(d.destroy),selectable:_260(d.setSelectable),create:function(_270){return this.map(function(){return d.create(_270);})._stash(this);},animate:function(_271,_272,_273,_274){return this.forEach(function(n,i,a){var anim=d.anim(n,_271,_272,_273);if(_274&&i==a.length-1){d.connect(anim,"onEnd",_274);}});},size:function(_275){_275=_275||"marginBox";var s=this.map(function(n){return d[_275](n);});return s.length==1?s[0]:s;},hover:function(over,out){return this.onmouseenter(over).onmouseleave(out||over);},hoverClass:function(_276){return this.hover(function(e){d.toggleClass(this,_276,_263.test(e.type));});},grab:function(url,_277,_278){this.length&&d.xhr(_278||"GET",d._mixin({url:url},_277)).addCallback(this,function(r){this.addContent(r,"only");});return this;}});var _279=d.query;d.query=function(_27a,_27b){var c=d.isString(_27a)&&_27a.charAt(0)=="<",r=_279(c?d.create(_27a):_27a,_27b);return r;};d.conflict=function(){d.global.$=d.mixin(function(){return d.mixin(d.query.apply(this,arguments),$.fn);},{fn:{}});d.global.$.fn.ready=d.ready;d.config.conflict=true;};if(d.config.conflict){d.conflict();}})(dojo);}if(!dojo._hasResource["dg.base"]){dojo._hasResource["dg.base"]=true;dojo.provide("dg.base");dojo.addOnLoad(function(){dojo.query(".dialog").removeClass("dialog");dojo.query(".badgeExplanation").onclick(function(){dijit.byid("badgeExplanation").show();return false;});dojo.query(".loginLink").onclick(function(e){dojo.stopEvent(e);dijit.byId("loginDialog").show();return false;});dojo.query("#masterContainer a[href=#]").onclick(function(e){dojo.stopEvent(e);dijit.byId("betaExplanation").show();return false;});dojo.query("#orgSelection").onchange(function(e){url=dojo.query("#orgSelection").attr("value");window.location=url;});dojo.query(".userMessages .closeButton").onclick(function(e){dojo.stopEvent(e);var anim=dojo.fadeOut({node:dojo.query(".userMessages")[0]});dojo.connect(anim,"onEnd",function(){dojo.query(".userMessages").orphan();});anim.play();});dojo.query(".userMessages").forEach(function(node){var _27c=dojo.animateProperty({node:node,duration:500,properties:{backgroundColor:{start:"#fff5dc",end:"#888888"},color:{start:"black",end:"white"}}});var _27d=dojo.animateProperty({node:node,duration:500,properties:{backgroundColor:{start:"#888888",end:"#fff5dc "},color:{start:"white",end:"black"}}});dojo.fx.chain([_27c,_27d]).play();});});}if(!dojo._hasResource["dg.cufon.base"]){dojo._hasResource["dg.cufon.base"]=true;dojo.provide("dg.cufon.base");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={" ":1," ":1,"　":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(" ")?/[^\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;};})());}if(!dojo._hasResource["dg.cufon.config"]){dojo._hasResource["dg.cufon.config"]=true;dojo.provide("dg.cufon.config");Cufon.replace("#nav a, .details b.orgName, button",{selector:dojo.query,fontFamily:"bold",hover:true});Cufon.replace("#footerHeader, .orgName h1, h5.header, h3.header",{selector:dojo.query,fontFamily:"bold"});Cufon.replace("#profileCol #titleTab h3.tab, #tabs .tab, #needsCol h3",{selector:dojo.query,fontFamily:"black",hover:true});Cufon.replace("#howItWorks div b",{selector:dojo.query,fontFamily:"black"});Cufon.replace("#howItWorks h1",{selector:dojo.query,fontFamily:"Museo 500"});}if(!dojo._hasResource["dg.fonts.black_900"]){dojo._hasResource["dg.fonts.black_900"]=true;dojo.provide("dg.fonts.black_900");Cufon.registerFont({"w":205,"face":{"font-family":"black","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 10 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-20 -288 378 71","underline-thickness":"7.2","underline-position":"-47.88","stemh":"53","stemv":"64","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":118},"!":{"d":"99,-252v2,60,-1,115,-12,162r-48,0v-10,-48,-14,-102,-12,-162r72,0xm100,-33v0,21,-15,37,-37,37v-22,0,-37,-16,-37,-37v0,-21,15,-37,37,-37v22,0,37,16,37,37","w":126},"\"":{"d":"203,-252r-14,118r-49,0r-14,-118r77,0xm97,-252r-14,118r-48,0r-14,-118r76,0","w":223},"#":{"d":"270,-44r-38,0r0,44r-65,0r0,-44r-46,0r0,44r-65,0r0,-44r-38,0r0,-55r38,0r0,-54r-38,0r0,-55r38,0r0,-44r65,0r0,44r46,0r0,-44r65,0r0,44r38,0r0,55r-38,0r0,54r38,0r0,55xm171,-94r0,-64r-54,0r0,64r54,0","w":288},"$":{"d":"222,-77v0,45,-27,68,-68,76r0,37r-67,0r0,-36v-29,-5,-56,-15,-75,-28r34,-53v18,13,51,25,74,25v25,0,33,-4,33,-16v0,-9,-9,-15,-43,-23v-61,-14,-90,-31,-90,-81v0,-39,25,-66,67,-75r0,-37r67,0r0,37v26,4,47,13,66,26r-34,53v-22,-15,-44,-24,-70,-24v-21,0,-26,7,-26,16v0,9,9,13,41,21v63,15,91,35,91,82","w":237},"%":{"d":"378,-75v0,52,-33,79,-75,79v-42,0,-74,-26,-74,-78v0,-52,33,-79,75,-79v42,0,74,26,74,78xm299,-252r-154,252r-55,0r154,-252r55,0xm160,-178v0,52,-33,79,-75,79v-42,0,-74,-26,-74,-78v0,-52,33,-79,75,-79v42,0,74,26,74,78xm325,-74v0,-30,-8,-40,-22,-40v-15,0,-21,9,-21,39v0,30,7,40,22,40v15,0,21,-9,21,-39xm107,-177v0,-30,-8,-40,-22,-40v-15,0,-21,9,-21,39v0,30,7,40,22,40v15,0,21,-9,21,-39","w":388},"&":{"d":"261,0r-79,0r-18,-21v-48,38,-157,40,-155,-43v0,-33,26,-57,53,-72v-50,-44,-18,-120,62,-120v36,0,60,9,84,23r-28,52v-19,-10,-35,-17,-57,-17v-22,0,-20,16,-9,28r54,63v7,-11,14,-25,22,-40r53,28v-13,21,-25,40,-37,56xm129,-60r-35,-40v-13,9,-19,18,-19,27v0,24,38,28,54,13","w":259},"'":{"d":"101,-252r-14,118r-51,0r-14,-118r79,0","w":123},"(":{"d":"135,12r-47,28v-36,-41,-67,-90,-67,-149v0,-62,31,-110,67,-151r47,28v-54,75,-53,169,0,244","w":154},")":{"d":"134,-111v0,62,-31,110,-67,151r-47,-28v54,-75,53,-169,0,-244r47,-28v36,41,67,90,67,149","w":154},"*":{"d":"187,-143r-25,44r-48,-40r10,61r-50,0r10,-61r-48,39r-25,-43r61,-22r-61,-22r25,-43r48,39r-10,-61r50,0r-10,61r48,-40r25,43r-62,23","w":198},"+":{"d":"213,-93r-64,0r0,67r-65,0r0,-67r-64,0r0,-62r64,0r0,-66r65,0r0,66r64,0r0,62","w":232},",":{"d":"99,-75r-34,120r-44,0r5,-120r73,0","w":113},"-":{"d":"150,-95r-126,0r0,-68r126,0r0,68","w":174},".":{"d":"98,-37v0,24,-17,41,-41,41v-24,0,-42,-17,-42,-41v0,-24,18,-41,42,-41v24,0,41,17,41,41","w":113},"/":{"d":"189,-284r-126,316r-69,0r127,-316r68,0","w":183},"0":{"d":"243,-126v0,84,-48,130,-114,130v-66,0,-114,-46,-114,-130v0,-84,48,-130,114,-130v66,0,114,46,114,130xm171,-126v0,-46,-15,-70,-42,-70v-27,0,-43,24,-43,70v0,46,16,70,43,70v27,0,42,-24,42,-70","w":257},"1":{"d":"125,0r-68,0r0,-174r-43,0r0,-44v32,-2,46,-11,53,-34r58,0r0,252","w":151},"2":{"d":"225,0r-206,0v2,-85,42,-126,105,-154v27,-12,31,-16,31,-26v0,-11,-8,-17,-28,-17v-25,0,-50,8,-75,25r-32,-51v53,-46,203,-51,203,38v0,33,-12,54,-60,76v-50,23,-64,37,-69,52r131,0r0,57","w":252},"3":{"d":"230,-80v0,102,-164,103,-216,45r36,-45v21,16,43,26,71,26v29,0,42,-8,42,-25v0,-30,-42,-23,-72,-24r0,-55v25,-1,61,7,61,-21v0,-13,-10,-20,-35,-20v-24,0,-43,7,-62,21r-33,-45v43,-45,198,-54,198,39v0,28,-17,42,-34,50v23,5,44,22,44,54","w":246},"4":{"d":"252,-43r-32,0r0,43r-63,0r0,-45r-142,0r0,-51r135,-156r70,0r0,150r32,0r0,59xm158,-181v-11,17,-51,64,-67,80r66,-1","w":266},"5":{"d":"237,-88v0,104,-156,112,-221,61r29,-52v24,14,54,25,81,25v57,0,58,-63,10,-62v-21,0,-33,6,-46,15r-60,-20r9,-131r183,0r0,57r-127,0r-2,35v58,-27,144,-6,144,72","w":255},"6":{"d":"237,-87v0,57,-44,91,-115,91v-63,0,-108,-35,-108,-104v0,-67,44,-156,188,-156r0,57v-66,0,-100,20,-119,49v53,-30,154,-17,154,63xm169,-82v0,-19,-15,-31,-42,-31v-31,0,-46,11,-46,31v0,18,13,31,44,31v26,0,44,-11,44,-31","w":250},"7":{"d":"226,-202v-74,68,-88,120,-88,202r-68,0v1,-86,24,-145,73,-195r-125,0r0,-57r208,0r0,50","w":249},"8":{"d":"246,-78v0,51,-44,82,-115,82v-71,0,-114,-31,-114,-82v0,-32,23,-50,39,-56v-15,-9,-29,-24,-29,-47v0,-48,44,-75,105,-75v86,0,137,79,75,121v16,6,39,25,39,57xm168,-180v0,-13,-10,-25,-37,-25v-27,0,-37,12,-37,25v0,13,11,24,38,24v27,0,36,-11,36,-24xm179,-79v0,-17,-16,-30,-48,-30v-32,0,-47,13,-47,30v0,17,16,30,48,30v32,0,47,-13,47,-30","w":262},"9":{"d":"236,-152v0,67,-44,156,-188,156r0,-57v66,0,101,-20,120,-49v-53,30,-154,17,-154,-63v0,-57,44,-91,115,-91v63,0,107,35,107,104xm170,-170v0,-18,-14,-31,-45,-31v-26,0,-44,11,-44,31v0,19,16,31,43,31v31,0,46,-11,46,-31","w":250},":":{"d":"97,-153v0,23,-17,40,-40,40v-23,0,-41,-17,-41,-40v0,-23,18,-40,41,-40v23,0,40,17,40,40xm97,-36v0,23,-17,40,-40,40v-23,0,-41,-17,-41,-40v0,-23,18,-40,41,-40v23,0,40,17,40,40","w":113},";":{"d":"97,-153v0,23,-17,40,-40,40v-23,0,-41,-17,-41,-40v0,-23,18,-40,41,-40v23,0,40,17,40,40xm94,-73r-34,117r-43,0r5,-117r72,0","w":113},"<":{"d":"163,4r-142,-106r0,-48r142,-106r0,84r-70,45r70,45r0,86","w":185},"=":{"d":"204,-140r-175,0r0,-66r175,0r0,66xm204,-42r-175,0r0,-65r175,0r0,65","w":232},">":{"d":"165,-102r-143,106r0,-84r70,-45r-70,-45r0,-86r143,106r0,48","w":185},"?":{"d":"110,-256v98,0,131,96,51,129v-21,9,-29,20,-29,37r-64,0v0,-31,9,-53,47,-68v29,-11,32,-39,-6,-39v-26,0,-48,9,-69,23r-32,-51v30,-19,62,-31,102,-31xm137,-33v0,21,-15,37,-37,37v-22,0,-38,-16,-38,-37v0,-21,16,-37,38,-37v22,0,37,16,37,37","w":216},"@":{"d":"280,-130v0,76,-58,92,-93,57v-33,25,-101,28,-101,-30v0,-44,51,-54,84,-38v6,-37,-39,-27,-63,-17r-12,-29v39,-21,123,-18,115,39v3,26,-10,69,19,68v18,0,25,-16,25,-50v0,-57,-45,-100,-104,-100v-63,0,-103,46,-103,104v0,80,75,124,149,95r10,23v-91,39,-185,-23,-185,-118v0,-72,54,-130,129,-130v75,0,130,58,130,126xm170,-94r0,-22v-14,-7,-45,-8,-45,12v0,21,32,19,45,10","w":300},"A":{"d":"264,0r-76,0r-13,-44r-76,0r-14,44r-75,0r92,-252r70,0xm158,-100r-21,-79v-3,17,-12,52,-21,79r42,0","w":274},"B":{"d":"241,-81v0,51,-31,81,-94,81r-121,0r0,-252r121,0v93,-11,112,83,58,115v23,10,36,28,36,56xm167,-177v0,-29,-47,-18,-74,-20r0,40v27,-2,74,10,74,-20xm173,-80v0,-35,-49,-22,-80,-24r0,49v32,-2,80,10,80,-25","w":258},"C":{"d":"235,-61v-17,33,-45,65,-105,65v-75,0,-115,-55,-115,-130v0,-81,47,-130,115,-130v62,0,87,26,104,74r-63,25v-9,-23,-18,-38,-41,-38v-29,0,-42,29,-42,69v0,39,13,69,43,69v22,0,31,-12,45,-36","w":246},"D":{"d":"243,-127v0,128,-95,132,-217,127r0,-252v120,-3,217,-7,217,125xm172,-126v0,-53,-23,-70,-76,-66r0,132v52,2,76,-10,76,-66","w":259},"E":{"d":"221,0r-195,0r0,-252r193,0r0,59r-124,0r0,33r74,0r0,58r-74,0r0,43r126,0r0,59","w":240},"F":{"d":"225,-193r-130,0r0,35r79,0r0,59r-79,0r0,99r-69,0r0,-252r199,0r0,59","w":236},"G":{"d":"244,-138v7,90,-29,142,-113,142v-69,0,-116,-48,-116,-130v0,-75,41,-130,117,-130v63,0,88,24,106,71r-63,24v-8,-22,-19,-34,-43,-34v-33,0,-44,29,-44,69v0,50,17,71,49,71v30,0,39,-14,42,-31r-46,0r0,-52r111,0","w":259},"H":{"d":"247,0r-72,0r0,-99r-78,0r0,99r-71,0r0,-252r71,0r0,92r78,0r0,-92r72,0r0,252","w":272},"I":{"d":"99,0r-72,0r0,-252r72,0r0,252","w":126},"J":{"d":"224,-103v0,66,-35,107,-106,107v-67,0,-97,-34,-110,-87r69,-18v5,54,75,59,76,4r0,-155r71,0r0,149","w":248},"K":{"d":"258,0r-83,0r-52,-107r-26,31r0,76r-71,0r0,-252r71,0r-1,92v16,-26,47,-65,69,-92r84,0r-75,89","w":264},"L":{"d":"208,0r-182,0r0,-252r70,0r0,191r112,0r0,61","w":221},"M":{"d":"278,0r-65,0r1,-127r-62,136r-62,-136r1,127r-65,0r0,-252r64,0r31,67v15,32,27,62,31,76v9,-30,46,-104,63,-143r63,0r0,252","w":303},"N":{"d":"247,0r-57,0r-100,-142v4,36,3,99,3,142r-67,0r0,-252r61,0r56,75v12,15,34,49,39,59v-4,-33,-1,-94,-2,-134r67,0r0,252","w":272},"O":{"d":"248,-126v0,84,-49,130,-117,130v-68,0,-116,-46,-116,-130v0,-84,49,-130,117,-130v68,0,116,46,116,130xm176,-126v0,-45,-17,-69,-45,-69v-28,0,-44,24,-44,69v0,45,17,69,45,69v28,0,44,-24,44,-69","w":263},"P":{"d":"232,-168v0,77,-60,90,-138,86r0,82r-68,0r0,-252v96,1,206,-18,206,84xm163,-167v4,-31,-37,-29,-69,-28r0,56v32,0,73,5,69,-28","w":244},"Q":{"d":"248,-126v0,38,-12,68,-32,91r21,27r-48,31r-18,-26v-86,26,-157,-24,-156,-123v0,-84,49,-130,117,-130v68,0,116,46,116,130xm176,-90v11,-46,-5,-105,-45,-105v-28,0,-44,24,-44,69v1,49,15,74,48,73r-21,-29r46,-30","w":263},"R":{"d":"242,0r-79,0r-41,-85r-28,0r0,85r-68,0r0,-252v96,2,211,-20,211,82v0,38,-18,61,-46,74xm167,-168v4,-31,-41,-28,-73,-27r0,55v32,0,77,5,73,-28","w":257},"S":{"d":"226,-77v0,102,-153,93,-210,50r34,-54v18,13,50,25,73,25v25,0,33,-4,33,-16v0,-9,-9,-15,-43,-23v-61,-14,-90,-31,-90,-81v0,-88,146,-100,200,-51r-34,55v-22,-15,-44,-24,-70,-24v-21,0,-26,7,-26,16v0,9,10,13,42,21v63,15,91,35,91,82","w":244},"T":{"d":"226,-191r-70,0r0,191r-70,0r0,-191r-71,0r0,-61r211,0r0,61","w":241},"U":{"d":"245,-108v0,80,-48,112,-111,112v-63,0,-110,-32,-110,-112r0,-144r71,0r0,144v0,31,13,50,40,50v27,0,39,-19,39,-50r0,-144r71,0r0,144","w":269},"V":{"d":"255,-252r-87,252r-71,0r-87,-252r79,0r44,174v10,-49,29,-123,44,-174r78,0","w":264},"W":{"d":"320,-252r-60,252r-65,0r-29,-159v-2,32,-19,116,-28,159r-64,0r-60,-252r72,0r22,152v4,-44,17,-107,27,-152r64,0r9,42v8,36,15,80,18,110r22,-152r72,0","w":333},"X":{"d":"253,0r-81,0r-41,-76v-10,23,-27,53,-41,76r-80,0r83,-127r-80,-125r81,0r38,71v10,-21,26,-49,39,-71r79,0r-79,123","w":263},"Y":{"d":"263,-252r-93,158r0,94r-71,0r0,-93r-93,-159r80,0v16,29,41,78,49,103v8,-25,32,-75,48,-103r80,0","w":268},"Z":{"d":"230,0r-206,0r0,-50r123,-146r-116,1r0,-57r199,0r0,50r-74,90v-16,19,-38,43,-50,56r124,-1r0,57","w":255},"[":{"d":"138,40r-110,0r0,-292r110,0r0,53r-44,0r0,186r44,0r0,53","w":166},"\\":{"d":"189,32r-68,0r-127,-316r69,0","w":183},"]":{"d":"138,40r-110,0r0,-53r45,0r0,-186r-45,0r0,-53r110,0r0,292","w":166},"^":{"d":"214,-130r-67,0r-36,-66r-35,66r-67,0r74,-122r57,0","w":223},"_":{"d":"180,71r-180,0r0,-49r180,0r0,49","w":180},"`":{"d":"135,-214r-46,0r-56,-58r76,0","w":180},"a":{"d":"182,0r-61,0r0,-13v-39,33,-107,17,-107,-48v0,-56,62,-74,107,-54v6,-47,-52,-34,-79,-18r-17,-43v23,-11,48,-17,81,-17v103,0,71,105,76,193xm121,-51r0,-26v-14,-7,-51,-10,-48,15v-3,26,36,23,48,11","w":200},"b":{"d":"193,-95v0,91,-58,120,-108,82r0,13r-65,0r0,-237r65,-25r0,86v51,-37,108,-14,108,81xm129,-93v0,-54,-19,-53,-44,-38r0,73v23,15,44,16,44,-35"},"c":{"d":"177,-41v-45,79,-164,51,-164,-54v0,-58,30,-98,90,-98v36,0,55,16,72,43r-44,34v-16,-39,-54,-31,-54,22v0,54,38,58,59,21","w":187},"d":{"d":"186,0r-65,0r0,-13v-51,37,-108,14,-108,-81v0,-92,57,-120,108,-82r0,-61r65,-25r0,262xm121,-58r0,-73v-22,-15,-44,-16,-44,35v0,54,19,53,44,38"},"e":{"d":"99,-193v56,0,88,42,84,117r-111,0v5,42,50,34,81,17r25,41v-23,14,-47,22,-77,22v-57,0,-88,-40,-88,-98v0,-65,36,-99,86,-99xm126,-116v-3,-19,-10,-29,-29,-29v-15,0,-23,10,-25,29r54,0","w":195},"f":{"d":"127,-212v-9,-5,-33,-9,-31,8r0,15r29,0r0,51r-28,0r0,138r-64,0r0,-138r-20,0r0,-51r20,0v-3,-46,9,-74,53,-72v17,0,32,3,41,8r0,41","w":137},"g":{"d":"186,-28v0,65,-31,87,-99,97r-24,-37v49,-9,59,-14,58,-47v-50,36,-108,16,-108,-79v0,-92,57,-120,108,-82r0,-13r65,0r0,161xm121,-58r0,-73v-22,-15,-44,-16,-44,35v0,54,19,53,44,38"},"h":{"d":"194,0r-65,0r0,-107v0,-24,-9,-31,-22,-31v-14,0,-22,6,-22,30r0,108r-65,0r0,-237r65,-25r0,86v42,-35,109,-15,109,60r0,116","w":212},"i":{"d":"92,-235v0,20,-16,32,-38,32v-21,0,-37,-12,-37,-32v0,-18,16,-31,37,-31v22,0,38,13,38,31xm87,0r-65,0r0,-189r65,0r0,189","w":108},"j":{"d":"92,-235v0,20,-16,32,-38,32v-21,0,-37,-12,-37,-32v0,-18,16,-31,37,-31v22,0,38,13,38,31xm87,-18v0,59,-25,80,-85,87r-22,-44v32,-4,42,-13,42,-39r0,-175r65,0r0,171","w":108},"k":{"d":"200,0r-70,0r-28,-79r-17,22r0,57r-65,0r0,-237r65,-25r-1,130v9,-16,28,-42,41,-57r74,0r-49,57","w":206},"l":{"d":"87,0r-65,0r0,-237r65,-25r0,262","w":108},"m":{"d":"298,0r-65,0r0,-107v0,-24,-8,-31,-21,-31v-13,0,-20,6,-20,30r0,108r-65,0r0,-107v0,-24,-8,-31,-21,-31v-13,0,-21,6,-21,30r0,108r-65,0r0,-189r65,0r0,13v19,-23,82,-22,97,4v14,-11,29,-21,55,-21v82,0,57,115,61,193","w":316},"n":{"d":"194,0r-65,0r0,-107v0,-24,-9,-31,-22,-31v-14,0,-22,6,-22,30r0,108r-65,0r0,-189r65,0r0,13v42,-35,109,-15,109,60r0,116","w":212},"o":{"d":"192,-95v0,65,-38,99,-90,99v-52,0,-89,-34,-89,-99v0,-66,37,-98,89,-98v52,0,90,32,90,98xm128,-95v0,-32,-9,-45,-26,-45v-17,0,-25,13,-25,45v0,31,8,46,25,46v17,0,26,-15,26,-46","w":204},"p":{"d":"193,-95v0,91,-58,120,-108,82r0,57r-65,25r0,-258r65,0r0,13v51,-37,108,-14,108,81xm129,-93v0,-54,-19,-53,-44,-38r0,73v23,15,44,16,44,-35"},"q":{"d":"186,44r-65,25r0,-82v-51,37,-108,14,-108,-81v0,-92,57,-120,108,-82r0,-13r65,0r0,233xm121,-58r0,-73v-22,-15,-44,-16,-44,35v0,54,19,53,44,38"},"r":{"d":"156,-185r-15,67v-15,-21,-56,-26,-56,15r0,103r-65,0r0,-189r65,0r0,14v15,-19,50,-24,71,-10","w":161},"s":{"d":"172,-60v0,76,-102,73,-157,48r16,-48v23,10,48,16,65,16v24,1,22,-15,2,-20v-58,-13,-79,-28,-79,-67v0,-67,96,-73,150,-48r-14,50v-25,-11,-43,-16,-60,-16v-13,0,-16,2,-16,8v0,6,2,8,19,13v53,14,74,27,74,64","w":188},"t":{"d":"144,-61r-8,55v-42,18,-97,17,-97,-50r0,-82r-29,0r0,-51r29,0r0,-48r63,-25r0,73r41,0r0,51r-41,0r0,68v0,28,27,21,42,9","w":162},"u":{"d":"192,0r-65,0r0,-13v-42,35,-108,15,-108,-60r0,-116r65,0r0,107v0,24,8,31,21,31v13,0,22,-6,22,-30r0,-108r65,0r0,189","w":212},"v":{"d":"200,-189r-65,189r-64,0r-66,-189r69,0r29,126v7,-45,18,-85,29,-126r68,0"},"w":{"d":"261,-189r-54,189r-52,0r-22,-116r-22,116r-52,0r-53,-189r63,0r17,105r21,-105r54,0r20,105r18,-105r62,0","w":266},"x":{"d":"202,0r-71,0r-29,-57v-9,20,-19,39,-30,57r-67,0r65,-99r-57,-90r70,0v7,14,17,32,22,47v6,-16,15,-33,22,-47r67,0r-58,87","w":206},"y":{"d":"207,-189r-91,256r-62,0r23,-59r-72,-197r69,0r33,135v8,-46,20,-93,32,-135r68,0","w":212},"z":{"d":"183,0r-164,0r0,-45r88,-93r-84,2r0,-53r160,0r0,45r-88,93r88,-2r0,53","w":203},"{":{"d":"164,40v-92,-2,-119,-29,-114,-103v1,-17,-16,-18,-33,-17r0,-54v31,6,33,-15,33,-45v0,-49,34,-75,114,-75r0,42v-39,4,-43,19,-42,52v0,42,-17,48,-45,53v31,3,45,17,45,62v0,27,7,39,42,43r0,42","w":183},"|":{"d":"90,67r-64,0r0,-355r64,0r0,355","w":116},"}":{"d":"167,-80v-18,-1,-35,0,-34,18v5,73,-22,99,-114,102r0,-42v39,-4,43,-19,43,-52v0,-42,17,-48,45,-53v-31,-3,-45,-17,-45,-62v0,-27,-8,-39,-43,-43r0,-42v92,2,119,28,114,102v-1,18,16,19,34,18r0,54","w":183},"~":{"d":"73,-173v20,0,48,24,59,24v7,0,10,-3,22,-26r39,18v-19,46,-34,63,-57,63v-20,0,-47,-27,-59,-24v-7,0,-10,2,-22,25r-39,-17v19,-46,34,-63,57,-63","w":209}," ":{"w":118}}});}if(!dojo._hasResource["dg.fonts.bold_700"]){dojo._hasResource["dg.fonts.bold_700"]=true;dojo.provide("dg.fonts.bold_700");Cufon.registerFont({"w":202,"face":{"font-family":"bold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-16 -288 346 69","underline-thickness":"7.2","underline-position":"-47.88","stemh":"47","stemv":"50","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":104},"!":{"d":"86,-252v1,61,1,121,-8,173r-34,0v-8,-52,-9,-112,-8,-173r50,0xm92,-27v0,17,-14,31,-31,31v-17,0,-30,-14,-30,-31v0,-17,13,-30,30,-30v17,0,31,13,31,30","w":122},"\"":{"d":"170,-252r-13,118r-34,0r-13,-118r60,0xm80,-252r-13,118r-34,0r-12,-118r59,0","w":190},"#":{"d":"248,-50r-43,0r0,50r-44,0r0,-50r-56,0r0,50r-44,0r0,-50r-43,0r0,-42r43,0r0,-68r-43,0r0,-42r43,0r0,-50r44,0r0,50r56,0r0,-50r44,0r0,50r43,0r0,42r-43,0r0,68r43,0r0,42xm161,-92r0,-68r-56,0r0,68r56,0","w":266},"$":{"d":"216,-76v0,41,-22,68,-71,76r0,36r-51,0r0,-36v-32,-5,-60,-21,-75,-44r36,-32v18,21,41,29,65,29v30,0,44,-7,44,-26v0,-16,-8,-23,-56,-34v-46,-11,-79,-25,-79,-75v0,-38,27,-63,65,-70r0,-36r51,0r0,36v27,5,48,18,66,37r-37,36v-16,-17,-34,-26,-57,-26v-27,0,-36,10,-36,21v0,16,11,21,51,30v40,9,84,23,84,78","w":235},"%":{"d":"346,-75v0,48,-28,79,-67,79v-39,0,-66,-30,-66,-78v0,-49,28,-79,67,-79v40,0,66,30,66,78xm279,-252r-155,252r-43,0r154,-252r44,0xm147,-178v0,48,-28,79,-67,79v-39,0,-66,-30,-66,-78v0,-49,27,-79,66,-79v40,0,67,30,67,78xm306,-74v0,-30,-10,-45,-27,-45v-17,0,-26,14,-26,44v0,30,10,46,27,46v17,0,26,-18,26,-45xm106,-177v0,-30,-9,-45,-26,-45v-17,0,-26,14,-26,44v0,30,9,46,26,46v17,0,26,-18,26,-45","w":359},"&":{"d":"248,0r-58,0r-19,-21v-43,41,-156,34,-156,-42v0,-35,19,-56,51,-72v-13,-16,-28,-35,-28,-59v0,-73,107,-77,150,-36r-24,37v-17,-13,-35,-18,-53,-18v-33,-1,-24,28,-10,44r69,79v6,-12,12,-25,18,-42r41,13v-8,24,-18,46,-29,63xm142,-52r-49,-54v-37,16,-42,65,10,65v15,0,29,-3,39,-11","w":252},"'":{"d":"82,-252r-13,118r-36,0r-12,-118r61,0","w":102},"(":{"d":"118,17r-33,23v-35,-38,-62,-81,-62,-148v0,-67,25,-109,62,-150r33,23v-56,56,-56,197,0,252","w":133},")":{"d":"110,-110v0,67,-25,109,-62,150r-33,-23v56,-56,56,-197,0,-252r33,-23v35,38,62,81,62,148","w":133},"*":{"d":"168,-149r-19,32r-44,-29r4,52r-38,0r4,-53r-44,30r-19,-33r51,-23r-51,-23r19,-33r44,30r-4,-53r38,0r-4,53r44,-30r19,32r-52,24","w":180},"+":{"d":"201,-100r-66,0r0,68r-49,0r0,-68r-66,0r0,-47r66,0r0,-69r49,0r0,69r66,0r0,47","w":220},",":{"d":"82,-61r-30,106r-34,0r5,-106r59,0","w":97},"-":{"d":"125,-106r-103,0r0,-50r103,0r0,50","w":146},".":{"d":"83,-30v0,18,-16,34,-34,34v-18,0,-34,-16,-34,-34v0,-18,16,-34,34,-34v18,0,34,16,34,34","w":97},"/":{"d":"168,-284r-118,316r-49,0r118,-316r49,0","w":169},"0":{"d":"230,-127v0,77,-38,131,-107,131v-69,0,-105,-53,-105,-130v0,-77,37,-130,106,-130v69,0,106,52,106,129xm179,-126v0,-45,-17,-81,-56,-81v-39,0,-54,35,-54,80v0,45,16,82,55,82v39,0,55,-36,55,-81","w":247},"1":{"d":"107,0r-50,0r0,-182r-43,0r0,-37v28,-1,47,-12,52,-33r41,0r0,252","w":138},"2":{"d":"220,0r-197,0v1,-86,54,-124,116,-151v22,-9,28,-19,28,-30v0,-13,-11,-26,-41,-26v-30,0,-54,14,-72,31r-32,-38v44,-58,195,-62,195,30v0,41,-21,59,-64,79v-45,21,-62,37,-67,56r134,0r0,49","w":245},"3":{"d":"212,-78v0,54,-42,82,-105,82v-38,0,-71,-15,-99,-48r38,-31v21,22,40,30,66,30v60,0,66,-62,11,-61r-29,0r0,-50v27,1,58,2,56,-25v-3,-34,-73,-33,-91,-4r-37,-34v43,-57,179,-51,179,34v0,27,-14,44,-29,52v16,6,40,22,40,55","w":232},"4":{"d":"235,-51r-33,0r0,51r-48,0r0,-51r-138,0r0,-46r133,-155r53,0r0,154r33,0r0,47xm155,-194r-82,96r81,0","w":250},"5":{"d":"222,-88v0,101,-133,113,-204,65r25,-43v37,25,126,37,128,-20v2,-48,-71,-41,-93,-22r-48,-18r9,-126r168,0r0,49r-122,0r-3,43v14,-8,29,-11,53,-11v57,0,87,35,87,83","w":240},"6":{"d":"223,-82v0,56,-47,86,-106,86v-56,0,-100,-31,-100,-102v0,-66,38,-158,169,-158r0,49v-58,0,-95,20,-109,59v53,-35,146,-13,146,66xm172,-81v0,-26,-18,-37,-50,-37v-34,0,-53,12,-53,38v0,23,17,37,50,37v33,0,53,-15,53,-38","w":238},"7":{"d":"205,-203v-51,50,-84,116,-84,203r-51,0v0,-82,27,-150,74,-204r-128,0r0,-48r189,0r0,49","w":227},"8":{"d":"192,-137v76,39,34,141,-66,141v-65,0,-105,-30,-105,-80v0,-35,21,-53,40,-61v-64,-38,-11,-119,65,-119v50,0,95,24,95,73v0,18,-10,35,-29,46xm171,-182v0,-16,-12,-30,-45,-30v-31,0,-44,13,-44,29v0,16,15,29,44,29v31,0,45,-11,45,-28xm181,-76v0,-23,-17,-36,-55,-36v-38,0,-55,13,-55,35v0,23,23,37,55,37v35,0,55,-13,55,-36","w":252},"9":{"d":"222,-154v0,66,-39,158,-170,158r0,-49v58,0,96,-20,110,-59v-54,35,-147,14,-147,-66v0,-56,48,-86,107,-86v56,0,100,31,100,102xm170,-172v0,-23,-17,-37,-50,-37v-33,0,-53,15,-53,38v0,26,18,37,50,37v34,0,53,-12,53,-38","w":238},":":{"d":"83,-159v0,18,-16,34,-34,34v-18,0,-34,-16,-34,-34v0,-18,16,-34,34,-34v18,0,34,16,34,34xm83,-30v0,18,-16,34,-34,34v-18,0,-34,-16,-34,-34v0,-18,16,-34,34,-34v18,0,34,16,34,34","w":97},";":{"d":"83,-159v0,18,-16,34,-34,34v-18,0,-34,-16,-34,-34v0,-18,16,-34,34,-34v18,0,34,16,34,34xm80,-61r-31,106r-34,0r6,-106r59,0","w":97},"<":{"d":"140,-10r-119,-97r0,-34r119,-97r0,62r-68,52r68,52r0,62","w":162},"=":{"d":"192,-143r-163,0r0,-47r163,0r0,47xm192,-58r-163,0r0,-46r163,0r0,46","w":220},">":{"d":"141,-107r-119,97r0,-62r68,-51r-68,-52r0,-63r119,97r0,34","w":162},"?":{"d":"197,-183v0,64,-77,58,-76,104r-49,0v0,-34,9,-57,51,-74v38,-16,30,-54,-20,-54v-27,0,-47,14,-63,31r-32,-38v37,-56,189,-63,189,31xm127,-27v0,17,-13,31,-30,31v-17,0,-31,-14,-31,-31v0,-17,14,-30,31,-30v17,0,30,13,30,30","w":210},"@":{"d":"280,-130v0,78,-63,93,-96,55v-25,32,-98,27,-98,-30v0,-41,53,-56,85,-39v7,-36,-40,-31,-60,-19r-13,-24v35,-25,108,-17,108,35v0,30,-12,75,22,75v22,0,32,-19,32,-53v0,-57,-47,-105,-110,-105v-63,0,-109,46,-109,109v0,79,79,132,156,99r9,19v-92,40,-185,-24,-185,-118v0,-75,54,-130,129,-130v77,0,130,58,130,126xm144,-85v19,-1,30,-9,27,-32v-11,-10,-50,-12,-50,12v0,10,6,20,23,20","w":300},"A":{"d":"256,0r-56,0r-20,-56r-92,0r-20,56r-54,0r97,-252r49,0xm163,-104r-29,-85v-7,24,-19,60,-29,85r58,0","w":270},"B":{"d":"237,-81v0,53,-36,81,-90,81r-115,0r0,-252v83,2,199,-18,196,67v0,22,-10,39,-27,49v20,9,36,27,36,55xm177,-181v0,-37,-60,-22,-95,-25r0,48v34,-3,95,12,95,-23xm185,-81v0,-46,-62,-29,-103,-32r0,65v42,-2,103,12,103,-33","w":255},"C":{"d":"223,-200r-47,21v-30,-54,-115,-21,-105,53v-7,73,77,111,109,48r42,25v-17,36,-47,57,-93,57v-66,0,-110,-50,-110,-130v0,-77,46,-130,112,-130v48,0,76,23,92,56","w":241},"D":{"d":"237,-126v0,120,-91,133,-205,126r0,-252v116,-5,205,1,205,126xm185,-126v0,-61,-36,-82,-102,-77r0,154v65,6,102,-22,102,-77","w":254},"E":{"d":"213,0r-181,0r0,-252r175,0r0,49r-124,0r0,44r72,0r0,49r-72,0r0,61r130,0r0,49","w":234},"F":{"d":"213,-203r-130,0r0,48r76,0r0,49r-76,0r0,106r-51,0r0,-252r181,0r0,49","w":225},"G":{"d":"230,-131v8,83,-31,136,-101,135v-66,0,-110,-50,-110,-130v0,-77,46,-130,112,-130v51,0,78,24,95,63r-47,20v-29,-62,-108,-30,-108,47v0,46,22,81,60,81v35,0,46,-17,49,-39r-40,0r0,-47r90,0","w":251},"H":{"d":"237,0r-51,0r0,-106r-103,0r0,106r-51,0r0,-252r51,0r0,96r103,0r0,-96r51,0r0,252","w":268},"I":{"d":"86,0r-50,0r0,-252r50,0r0,252","w":122},"J":{"d":"203,-252v-3,114,26,256,-95,256v-50,0,-83,-31,-96,-75r49,-13v10,26,23,38,47,38v31,0,45,-20,45,-58r0,-148r50,0","w":234},"K":{"d":"252,0r-60,0r-69,-122r-40,48r0,74r-51,0r0,-252r51,0r-1,112r90,-112r61,0r-74,87","w":259},"L":{"d":"209,0r-177,0r0,-252r51,0r0,202r126,0r0,50","w":223},"M":{"d":"268,0r-50,0r1,-148r-69,154r-69,-154r1,148r-50,0r0,-252r49,0r70,156r68,-156r49,0r0,252","w":300},"N":{"d":"237,0r-45,0r-111,-166r1,166r-50,0r0,-252r49,0r107,162r-1,-162r50,0r0,252","w":268},"O":{"d":"238,-126v0,77,-40,130,-109,130v-69,0,-110,-53,-110,-130v0,-77,41,-130,110,-130v69,0,109,53,109,130xm186,-126v0,-45,-16,-80,-57,-80v-41,0,-58,35,-58,80v0,45,17,80,58,80v41,0,57,-35,57,-80","w":257},"P":{"d":"229,-172v0,79,-66,88,-146,83r0,89r-51,0r0,-252v92,1,198,-17,197,80xm177,-171v0,-43,-54,-30,-94,-32r0,65v40,-2,94,11,94,-33","w":244},"Q":{"d":"238,-126v0,43,-12,74,-34,97r18,27r-38,25r-18,-26v-84,28,-147,-33,-147,-123v0,-77,41,-130,110,-130v69,0,109,53,109,130xm176,-71v21,-47,13,-135,-47,-135v-41,0,-58,35,-58,80v1,49,19,85,67,82r-17,-25r38,-26","w":257},"R":{"d":"237,0r-58,0r-45,-91r-51,0r0,91r-51,0r0,-252v94,1,205,-19,205,80v0,38,-17,61,-49,74xm185,-171v0,-47,-60,-29,-102,-32r0,65v42,-3,102,13,102,-33","w":257},"S":{"d":"217,-76v0,48,-30,80,-99,80v-42,0,-79,-18,-98,-46r37,-32v18,21,40,29,64,29v30,0,44,-9,44,-28v0,-16,-8,-23,-56,-34v-46,-11,-79,-25,-79,-75v-1,-87,140,-94,182,-34r-37,35v-17,-29,-93,-37,-93,-3v0,16,11,21,51,30v40,9,84,23,84,78","w":237},"T":{"d":"211,-202r-72,0r0,202r-50,0r0,-202r-73,0r0,-50r195,0r0,50","w":227},"U":{"d":"235,-111v0,73,-39,115,-103,115v-61,0,-101,-42,-101,-115r0,-141r50,0v6,77,-26,207,51,207v77,0,46,-131,52,-207r51,0r0,141","w":265},"V":{"d":"243,-252r-90,252r-49,0r-90,-252r56,0r60,187v15,-62,40,-127,58,-187r55,0","w":257},"W":{"d":"299,-252r-52,252r-50,0r-39,-173r-40,173r-47,0r-53,-252r53,0r28,164v10,-56,26,-110,38,-164r44,0r38,164r28,-164r52,0","w":317},"X":{"d":"237,0r-61,0r-50,-87v-11,22,-35,63,-50,87r-60,0r80,-129r-76,-123r60,0r46,82r47,-82r60,0r-77,123","w":252},"Y":{"d":"249,-252r-95,152r0,100r-51,0r0,-99r-95,-153r58,0r63,109r63,-109r57,0","w":257},"Z":{"d":"223,0r-199,0r0,-45r138,-162r-130,1r0,-46r189,0r0,45r-136,162r138,-1r0,46","w":247},"[":{"d":"127,40r-93,0r0,-292r93,0r0,40r-44,0r0,212r44,0r0,40","w":149},"\\":{"d":"168,32r-49,0r-118,-316r49,0","w":169},"]":{"d":"115,40r-92,0r0,-40r44,0r0,-212r-44,0r0,-40r92,0r0,292","w":149},"^":{"d":"191,-138r-51,0r-36,-66r-37,66r-50,0r67,-114r40,0","w":208},"_":{"d":"180,67r-180,0r0,-41r180,0r0,41","w":180},"`":{"d":"130,-214r-42,0r-52,-58r63,0","w":180},"a":{"d":"178,0r-50,0r0,-13v-36,34,-113,15,-113,-50v0,-55,69,-76,113,-55v8,-45,-55,-38,-79,-21r-19,-35v47,-34,148,-24,148,47r0,127xm94,-38v25,-1,39,-12,34,-41v-15,-12,-63,-13,-63,16v0,13,8,25,29,25","w":200},"b":{"d":"187,-92v0,76,-61,121,-113,81r0,11r-50,0r0,-238r50,-24r0,85v50,-38,113,-6,113,85xm137,-91v0,-59,-40,-68,-63,-39r0,71v22,27,63,21,63,-32"},"c":{"d":"180,-38v-18,24,-40,42,-77,42v-49,0,-89,-40,-89,-98v0,-58,38,-99,91,-99v36,0,59,18,75,42r-33,33v-20,-40,-82,-35,-82,24v0,57,59,63,84,26","w":193},"d":{"d":"177,0r-49,0r0,-12v-50,38,-114,6,-114,-85v0,-75,62,-121,114,-81r0,-60r49,-24r0,262xm128,-59r0,-71v-23,-26,-63,-22,-63,32v0,60,39,67,63,39"},"e":{"d":"99,-193v55,0,85,54,78,115r-113,0v2,41,52,43,72,22r35,29v-51,60,-157,27,-157,-67v0,-58,37,-99,85,-99xm130,-116v-1,-17,-12,-34,-34,-34v-18,0,-29,15,-31,34r65,0","w":193},"f":{"d":"122,-216v-19,-10,-45,-2,-36,27r32,0r0,47r-32,0r0,142r-50,0r0,-142r-22,0r0,-47r22,0v-10,-61,32,-84,86,-67r0,40","w":133},"g":{"d":"177,-189v-10,109,39,254,-81,258r-18,-37v39,-5,50,-15,50,-44v-50,38,-114,6,-114,-85v0,-75,62,-121,114,-81r0,-11r49,0xm128,-59r0,-71v-23,-26,-63,-22,-63,32v0,60,39,67,63,39"},"h":{"d":"188,0r-50,0v-5,-49,19,-146,-32,-146v-51,0,-26,97,-32,146r-50,0r0,-238r50,-24r0,86v9,-9,24,-17,44,-17v86,-4,69,109,70,193","w":210},"i":{"d":"79,-233v0,15,-13,29,-28,29v-15,0,-29,-14,-29,-29v0,-15,14,-28,29,-28v15,0,28,13,28,28xm76,0r-50,0r0,-189r50,0r0,189","w":101},"j":{"d":"79,-233v0,15,-13,29,-28,29v-15,0,-29,-14,-29,-29v0,-15,14,-28,29,-28v15,0,28,13,28,28xm76,-14v0,53,-17,74,-75,83r-17,-38v34,-6,42,-13,42,-43r0,-177r50,0r0,175","w":101},"k":{"d":"188,0r-54,0r-36,-87r-24,30r0,57r-50,0r0,-238r50,-24r-1,140r51,-67r59,0r-49,60","w":198},"l":{"d":"76,0r-50,0r0,-238r50,-24r0,262","w":101},"m":{"d":"295,0r-50,0r0,-102v0,-34,-9,-44,-30,-44v-21,0,-31,10,-31,43r0,103r-49,0r0,-102v0,-34,-10,-44,-31,-44v-21,0,-30,10,-30,43r0,103r-50,0r0,-189r50,0r0,13v20,-24,76,-23,93,7v13,-13,30,-24,61,-24v86,0,65,110,67,193","w":317},"n":{"d":"188,0r-50,0v-5,-49,19,-146,-32,-146v-51,0,-26,97,-32,146r-50,0r0,-189r50,0r0,13v9,-9,24,-17,44,-17v86,-4,69,109,70,193","w":210},"o":{"d":"185,-94v0,58,-36,98,-85,98v-49,0,-86,-40,-86,-98v0,-58,37,-99,86,-99v49,0,85,41,85,99xm135,-94v0,-29,-11,-51,-35,-51v-24,0,-35,22,-35,51v0,29,11,50,35,50v24,0,35,-24,35,-50","w":199},"p":{"d":"187,-92v0,76,-61,121,-113,81r0,56r-50,24r0,-258r50,0r0,12v50,-38,113,-6,113,85xm137,-91v0,-59,-40,-68,-63,-39r0,71v22,27,63,21,63,-32"},"q":{"d":"177,45r-49,24r0,-81v-50,38,-114,6,-114,-85v0,-75,62,-121,114,-81r0,-11r49,0r0,234xm128,-59r0,-71v-23,-26,-63,-22,-63,32v0,60,39,67,63,39"},"r":{"d":"148,-180r-13,49v-23,-19,-61,-21,-61,29r0,102r-50,0r0,-189r50,0r0,13v12,-19,60,-23,74,-4","w":154},"s":{"d":"174,-55v1,76,-113,67,-157,37r17,-38v20,11,41,17,65,17v19,0,26,-4,26,-14v0,-9,-7,-13,-28,-19v-45,-14,-75,-25,-75,-65v0,-66,100,-66,146,-38r-16,40v-19,-10,-39,-15,-55,-15v-20,0,-26,4,-26,12v0,8,7,11,40,22v34,11,63,23,63,61","w":193},"t":{"d":"137,-58r-7,50v-34,26,-89,7,-89,-45r0,-89r-32,0r0,-47r32,0r0,-49r49,-24r0,73r46,0r0,47r-46,0r0,76v2,34,29,24,47,8","w":159},"u":{"d":"186,0r-50,0r0,-13v-9,9,-24,17,-44,17v-86,4,-69,-109,-70,-193r50,0v5,49,-19,146,32,146v51,0,26,-97,32,-146r50,0r0,189","w":210},"v":{"d":"196,-189r-68,189r-51,0r-68,-189r55,0r39,129v10,-40,28,-89,40,-129r53,0","w":205},"w":{"d":"258,-189r-54,189r-42,0r-28,-119r-29,119r-42,0r-54,-189r50,0r26,113v6,-34,20,-79,29,-113r41,0r29,113r25,-113r49,0","w":267},"x":{"d":"199,0r-59,0r-37,-62v-8,17,-25,44,-36,62r-59,0r67,-102r-57,-87r59,0r26,46r27,-46r59,0r-57,87","w":206},"y":{"d":"203,-189r-97,256r-49,0r25,-67r-73,-189r55,0r43,132v11,-41,30,-91,43,-132r53,0","w":212},"z":{"d":"178,0r-156,0r0,-36r92,-109r-86,1r0,-45r150,0r0,36r-90,109r90,-1r0,45","w":199},"{":{"d":"147,40v-77,-1,-100,-32,-96,-102v1,-20,-10,-27,-29,-25r0,-40v30,6,29,-22,29,-51v0,-50,30,-76,96,-76r0,33v-41,4,-45,21,-45,58v0,39,-12,49,-35,56v26,5,35,25,35,67v0,30,9,43,45,47r0,33","w":165},"|":{"d":"74,67r-45,0r0,-355r45,0r0,355","w":102},"}":{"d":"144,-87v-30,-5,-30,21,-30,51v0,50,-29,76,-95,76r0,-33v41,-4,45,-21,45,-58v0,-39,11,-49,34,-56v-26,-5,-34,-25,-34,-67v0,-30,-9,-43,-45,-47r0,-33v77,1,95,33,95,102v0,20,11,27,30,25r0,40","w":165},"~":{"d":"70,-169v24,0,49,27,63,27v10,0,13,-4,25,-26r29,15v-13,33,-28,55,-55,55v-23,0,-47,-28,-63,-27v-10,0,-12,4,-24,26r-30,-15v13,-33,28,-55,55,-55"}," ":{"w":104}}});}if(!dojo._hasResource["dg.fonts.museo_500"]){dojo._hasResource["dg.fonts.museo_500"]=true;dojo.provide("dg.fonts.museo_500");Cufon.registerFont({"w":220,"face":{"font-family":"Museo 500","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-7 -318 342 76","underline-thickness":"18","underline-position":"-18","stemh":"31","stemv":"35","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":96,"k":{"Y":13,"W":8,"V":8,"T":7,".":18,",":18}}," ":{"w":96},"!":{"d":"41,-70r-2,-184r36,0r-3,184r-31,0xm39,0r0,-35r36,0r0,35r-36,0","w":113},"\"":{"d":"73,-191r0,-67r27,0r0,67r-27,0xm22,-191r0,-67r28,0r0,67r-28,0","w":122,"k":{"X":-7,"4":18,"T":-7,"Y":-7,"V":-7,"W":-7,"C":4,"G":4,"O":4,"Q":4,"a":17,"A":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"J":25,"M":8,"N":8,"s":4,"Z":-5}},"#":{"d":"48,0r12,-69r-47,0r5,-26r47,0r10,-61r-46,0r4,-26r47,0r13,-72r29,0r-13,72r56,0r12,-72r30,0r-13,72r47,0r-4,26r-47,0r-11,61r47,0r-5,26r-46,0r-13,69r-29,0r12,-69r-56,0r-12,69r-29,0xm94,-95r56,0r11,-61r-56,0","w":254},"$":{"d":"15,-45r26,-21v0,0,20,38,61,38v26,0,44,-16,44,-38v0,-54,-123,-45,-123,-127v0,-33,27,-59,66,-64r0,-34r27,0r0,33v33,3,67,20,59,67r-33,0v4,-25,-13,-35,-38,-35v-27,0,-44,15,-44,33v0,53,122,40,122,126v0,35,-25,65,-66,70r0,34r-27,0r0,-33v-51,-6,-74,-49,-74,-49","w":196,"k":{"7":7}},"%":{"d":"76,-152v-30,0,-55,-23,-55,-53v0,-29,25,-53,55,-53v30,0,54,24,54,53v0,30,-24,53,-54,53xm27,0r194,-254r34,0r-195,254r-33,0xm76,-179v15,0,26,-11,26,-26v0,-15,-11,-27,-26,-27v-15,0,-27,12,-27,27v0,15,12,26,27,26xm152,-49v0,-29,23,-53,54,-53v30,0,55,24,55,53v0,30,-25,53,-55,53v-31,0,-54,-23,-54,-53xm180,-49v0,15,11,27,26,27v15,0,27,-12,27,-27v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27","w":281},"&":{"d":"104,4v-89,0,-121,-111,-44,-140v1,-3,-30,-11,-33,-57v-3,-50,58,-74,108,-62r-9,29v-27,-10,-63,7,-63,37v0,16,8,40,47,40r46,0r0,-33r34,0r0,33r32,0r0,31r-32,0v7,74,-21,122,-86,122xm52,-73v0,24,20,45,52,45v43,0,57,-39,52,-90v-50,-3,-104,0,-104,45","w":229},"'":{"d":"22,-191r0,-67r28,0r0,67r-28,0","w":72,"k":{"X":-7,"4":18,"T":-7,"Y":-7,"V":-7,"W":-7,"C":4,"G":4,"O":4,"Q":4,"a":17,"A":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"J":25,"M":8,"N":8,"s":4,"Z":-5}},"(":{"d":"72,34v-54,-83,-57,-216,-1,-299r30,0v-55,92,-50,206,2,299r-31,0","w":118,"k":{"j":-7,"4":14}},")":{"d":"16,34v52,-93,57,-207,2,-299r30,0v56,83,53,216,-1,299r-31,0","w":118},"*":{"d":"58,-118r-26,-19r32,-40r-49,-14r9,-30r48,18r-2,-51r33,0r-3,51r48,-18r10,30r-50,14r32,40r-26,19v-10,-14,-17,-30,-28,-43","w":172},"+":{"d":"15,-89r0,-28r81,0r0,-88r29,0r0,88r81,0r0,28r-81,0r0,89r-29,0r0,-89r-81,0","k":{"7":6}},",":{"d":"30,-38r36,0r-31,74r-27,0","w":86,"k":{"9":2,"7":6,"6":4,"4":5,"0":7,"T":25,"Y":29,"V":25,"W":25,"C":4,"G":4,"O":4,"Q":4,"v":14,"w":14,"y":14,"­":28,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"J":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7}},"-":{"d":"25,-87r0,-31r105,0r0,31r-105,0","w":155,"k":{"x":8,"X":4,"9":12,"7":23,"5":9,"3":14,"1":11}},"­":{"d":"25,-87r0,-31r105,0r0,31r-105,0","w":155,"k":{"T":22,"Y":22,"V":11,"W":11,"C":-5,"G":-5,"O":-5,"Q":-5,"v":6,"w":6,"y":6,"A":5,"z":6,"S":8,"Z":4}},".":{"d":"25,0r0,-37r36,0r0,37r-36,0","w":86,"k":{"9":2,"7":6,"6":4,"4":5,"0":7,"T":25,"Y":29,"V":25,"W":25,"C":4,"G":4,"O":4,"Q":4,"v":14,"w":14,"y":14,"­":28,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"J":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7}},"/":{"d":"0,15r92,-283r31,0r-92,283r-31,0","w":124,"k":{"7":-5}},"0":{"d":"109,4v-68,0,-90,-58,-90,-131v0,-73,22,-131,90,-131v68,0,90,58,90,131v0,73,-22,131,-90,131xm109,-28v41,0,54,-44,54,-99v0,-55,-13,-99,-54,-99v-42,0,-53,44,-53,99v0,55,11,99,53,99","w":218,"k":{".":14,",":14,"8":4,"7":9,"3":3,"2":4,"1":5}},"1":{"d":"23,0r0,-31r56,0r-1,-180v-3,8,-26,30,-35,38r-22,-22r61,-59r33,0r0,223r55,0r0,31r-147,0","w":181,"k":{"-":18,"'":22,"\"":22,"9":4,"8":3,"7":4,"6":4,"5":3,"4":6,"3":1,"0":5,"/":-9,"%":9}},"2":{"d":"14,-29v0,-94,129,-87,129,-156v0,-23,-18,-40,-45,-40v-28,0,-42,10,-39,35r-33,0v-10,-51,35,-67,74,-68v46,0,80,29,80,73v0,87,-129,88,-129,147v0,5,3,7,9,7r90,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-130,0v-20,0,-24,-8,-24,-29","w":206,"k":{"-":8,"9":6,"7":1,"4":7,"0":2}},"3":{"d":"9,-31r20,-27v0,0,25,28,64,28v27,0,51,-19,51,-46v-1,-34,-33,-49,-73,-45r-8,-19r68,-84v-13,1,-53,1,-71,1v-11,0,-6,15,-7,24r-34,0v1,-25,-7,-55,22,-55r134,0r0,23r-67,80v33,4,72,26,72,75v0,42,-34,80,-87,80v-53,0,-84,-35,-84,-35","w":194,"k":{"9":2,"7":2}},"4":{"d":"6,-67r0,-23r115,-164r41,0r0,156r39,0r0,31r-39,0r0,67r-36,0r0,-67r-120,0xm126,-98r1,-114v-21,37,-57,81,-82,115v18,-2,58,-1,81,-1","w":207,"k":{".":4,",":4,"9":4,"4":-11,"2":-7,"1":3}},"5":{"d":"18,-31r20,-27v0,0,20,28,59,28v32,0,55,-22,55,-50v0,-32,-28,-52,-61,-52v-44,1,-43,22,-63,6r11,-105v3,-43,73,-17,111,-23v29,-4,23,29,23,55r-33,0v-1,-10,3,-25,-8,-24v-20,3,-54,-9,-61,8v-1,19,-7,42,-6,59v0,0,14,-7,33,-7v55,0,91,37,91,83v0,45,-37,84,-92,84v-53,0,-79,-35,-79,-35","w":209,"k":{".":5,",":5,"9":1,"7":6,"5":3,"3":3,"2":2,"1":7,"0":3}},"6":{"d":"109,4v-54,0,-95,-46,-95,-117v0,-66,35,-145,114,-145v30,0,49,10,49,10r-11,31v0,0,-16,-9,-36,-9v-45,-1,-75,45,-76,87v41,-51,136,-14,136,58v0,50,-33,85,-81,85xm51,-98v0,32,25,70,57,70v30,0,47,-23,47,-53v0,-31,-19,-52,-52,-52v-28,0,-52,17,-52,35","w":204,"k":{"-":5,"9":4,"7":3,"5":2,"3":2,"0":3}},"7":{"d":"23,0r122,-224v-24,2,-67,1,-95,1v-11,0,-7,14,-8,24r-33,0v1,-25,-7,-55,22,-55r155,0r0,24r-123,230r-40,0","w":189,"k":{">":14,"=":14,"<":14,";":5,":":5,".":43,"-":19,",":43,"+":14,"?":-6,"9":3,"8":3,"7":-2,"5":1,"4":21,"2":3,"1":1,"0":7,"/":22}},"8":{"d":"15,-73v0,-44,43,-63,42,-66v0,0,-31,-16,-31,-51v0,-35,28,-68,79,-68v49,0,79,28,79,68v0,37,-30,61,-30,61v69,34,36,133,-50,133v-48,0,-89,-30,-89,-77xm61,-190v-1,27,35,38,61,46v9,0,27,-21,27,-44v0,-23,-18,-38,-44,-38v-28,0,-44,16,-44,36xm155,-71v0,-29,-45,-43,-69,-51v-9,0,-35,20,-35,47v0,28,25,47,53,47v27,0,51,-18,51,-43","w":207,"k":{"9":3,"7":4,"4":-1,"0":4}},"9":{"d":"27,-6r11,-31v0,0,17,9,37,9v45,1,74,-46,75,-88v-41,53,-136,14,-136,-58v0,-50,33,-84,81,-84v54,0,95,46,95,117v0,66,-35,145,-114,145v-30,0,-49,-10,-49,-10xm101,-121v28,0,52,-18,52,-36v0,-33,-25,-69,-57,-69v-30,0,-47,22,-47,52v0,30,19,53,52,53","w":204,"k":{".":14,",":14,"8":2,"7":5,"3":2,"2":2,"1":1,"0":2}},":":{"d":"35,-145r0,-37r36,0r0,37r-36,0xm35,0r0,-37r36,0r0,37r-36,0","w":105},";":{"d":"35,-145r0,-37r36,0r0,37r-36,0xm16,36r19,-74r34,0r-26,74r-27,0","w":105},"<":{"d":"24,-91r0,-23r168,-75r0,32r-129,55r129,54r0,32","k":{"7":6}},"=":{"d":"24,-122r0,-28r172,0r0,28r-172,0xm24,-54r0,-28r172,0r0,28r-172,0","k":{"7":6}},">":{"d":"27,-16r0,-32r128,-55r-128,-54r0,-32r167,75r0,23","k":{"7":6}},"?":{"d":"54,-70v-10,-68,59,-77,61,-121v0,-20,-17,-35,-41,-35v-23,0,-41,15,-41,15r-20,-25v0,0,24,-23,63,-23v41,0,76,26,76,66v-1,66,-73,61,-64,123r-34,0xm53,0r0,-35r36,0r0,35r-36,0","w":163},"@":{"d":"14,-87v0,-74,59,-133,132,-133v116,1,91,79,93,175r26,0r0,26r-98,0v-45,0,-74,-32,-74,-68v-1,-49,50,-75,113,-67v-1,-21,-21,-37,-58,-37v-56,0,-99,48,-99,104v0,57,42,104,103,104r0,28v-81,0,-138,-59,-138,-132xm128,-87v0,37,36,47,78,42r0,-85v-42,-4,-79,5,-78,43","w":274},"A":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113","w":239,"k":{"X":3}},"B":{"d":"37,-23r0,-200r-24,0r0,-31v80,1,183,-16,183,65v0,29,-17,45,-32,55v27,8,42,34,42,62v-1,72,-71,76,-146,72v-16,0,-23,-7,-23,-23xm73,-147v42,2,86,3,86,-39v0,-41,-45,-38,-86,-37r0,76xm73,-39v4,16,36,8,53,8v27,0,43,-17,43,-43v2,-47,-48,-46,-96,-44r0,79","w":222,"k":{"w":2,"v":2,"Y":9,"W":4,"V":4,"T":7,"'":2,"\"":2}},"C":{"d":"12,-129v0,-73,55,-129,128,-129v42,1,108,16,95,79r-33,0v7,-37,-30,-46,-62,-46v-51,0,-90,39,-90,96v0,55,39,99,91,99v50,0,81,-34,81,-34r19,26v0,0,-36,42,-100,42v-76,0,-129,-58,-129,-133","w":252,"k":{"Y":4,"C":2,"G":2,"O":2,"Q":2,"\"":-8,"'":-8,")":-8,"]":-8,"|":-8,"}":-8}},"D":{"d":"37,-23r0,-200r-23,0r0,-31r103,0v77,0,128,47,128,127v0,103,-75,127,-185,127v-16,0,-23,-7,-23,-23xm73,-39v1,15,27,8,41,8v57,0,94,-33,94,-96v-1,-78,-54,-103,-135,-96r0,184","w":257,"k":{"i":-3,"X":4,"T":7,"Y":13,"V":4,"W":4,"a":-2,"v":-1,"w":-1,"y":-1,"­":-5,"\"":4,"'":4,",":5,".":5,"A":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3}},"E":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23","w":204,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"F":{"d":"37,0r0,-223r-23,0r0,-31r140,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-63,0r0,83r87,0r0,31r-87,0r0,109r-36,0","w":184,"k":{"q":2,"o":2,"g":2,"e":2,"d":2,"c":2,"a":5,"Q":4,"O":4,"N":3,"M":3,"J":6,"G":4,"C":4,"A":17,"@":2,".":36,",":36,"'":-7,"\"":-7}},"G":{"d":"13,-128v0,-73,55,-130,128,-130v61,0,90,31,90,31r-20,26v0,0,-28,-24,-70,-24v-51,0,-91,40,-91,97v0,59,41,98,92,98v45,0,73,-31,73,-31v0,-19,5,-40,-24,-34r0,-31v26,1,57,-7,57,23r0,103r-32,0r0,-27v0,0,-29,31,-80,31v-68,0,-123,-53,-123,-132","w":264,"k":{"T":6,"U":3,"a":-3,"­":-7,"\"":2,"'":2,"@":-3,"c":-3,"d":-3,"e":-3,"g":-3,"o":-3,"q":-3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,":":-10,";":-10,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"P":2,"R":2}},"H":{"d":"37,0r0,-215v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,89r129,0r0,-89v-3,-31,33,-22,60,-23r0,31v-10,1,-24,-3,-24,8r0,215r-36,0r0,-112r-129,0r0,112r-36,0","w":275,"k":{"a":4,"v":4,"w":4,"y":4,",":7,".":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2}},"I":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0","w":114},"J":{"d":"84,4v-41,0,-81,-29,-76,-90r36,0v-3,38,17,56,40,56v20,0,39,-12,39,-45r0,-140v0,-5,-2,-8,-7,-8r-63,0r0,-31r83,0v16,0,23,7,23,23r0,158v0,55,-38,77,-75,77","w":187,"k":{",":4,".":4,"A":4,":":6,";":6}},"K":{"d":"37,0r0,-215v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,84v18,-1,38,4,45,-9r57,-98r40,0v-25,39,-47,88,-76,122v18,16,38,65,53,93v4,10,12,8,24,8r0,31v-27,0,-44,3,-55,-19r-44,-88v-6,-14,-26,-9,-44,-10r0,117r-36,0","w":219,"k":{"x":2,"C":8,"G":8,"O":8,"Q":8,"v":11,"w":11,"y":7,"­":13,")":-9,"]":-9,"|":-9,"}":-9,",":-7,".":-7,"A":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,":":-11,";":-11,"z":4}},"L":{"d":"37,-23r0,-192v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,192v0,5,3,8,8,8r70,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-109,0v-16,0,-23,-7,-23,-23","w":195,"k":{"*":27,"T":36,"Y":29,"V":14,"W":14,"C":7,"G":7,"O":7,"Q":7,"U":13,"v":17,"w":17,"y":14,"­":9,"\"":29,"'":29,",":-4,".":-4,"A":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"m":2,"n":2,"p":2,"r":2,"u":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"b":5,"h":5,"k":5,"l":5}},"M":{"d":"7,0r0,-31v9,0,19,2,20,-8r18,-215r37,0r73,167v18,-52,50,-116,72,-167r37,0r18,215v-1,10,10,8,19,8r0,31v-26,-1,-53,6,-55,-23r-12,-172v-13,46,-45,105,-64,149r-31,0r-51,-111v-7,-13,-12,-39,-15,-38v1,52,-10,119,-10,172v0,29,-30,23,-56,23","w":308,"k":{"u":-1,"r":-1,"p":-1,"n":-1,"m":-1,"T":6,"'":11,"\"":11}},"N":{"d":"14,0r0,-31v10,0,23,3,23,-8r0,-215r33,0r113,161v8,11,13,24,22,34v-6,-46,-1,-119,-3,-172v-1,-30,33,-22,60,-23r0,31v-10,1,-24,-3,-24,8r0,215r-32,0r-113,-161v-8,-11,-13,-24,-22,-34v4,47,0,119,2,172v1,30,-33,22,-59,23","w":275,"k":{"a":4,"v":4,"w":4,"y":4,",":7,".":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2}},"O":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"V":4,"W":4,"a":-2,"v":-1,"w":-1,"y":-1,"­":-5,"\"":4,"'":4,",":5,".":5,"A":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3}},"P":{"d":"37,0r0,-223r-23,0r0,-31r112,0v46,0,79,31,79,79v0,69,-57,89,-132,81r0,94r-36,0xm73,-125v51,3,95,1,95,-50v0,-50,-45,-50,-95,-48r0,98","w":213,"k":{"z":2,"s":4,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"a":7,"N":3,"M":3,"J":6,"A":21,"@":7,".":38,",":38,"'":-2,"\"":-2}},"Q":{"d":"12,-129v0,-73,57,-129,130,-129v110,0,170,133,101,213r30,28r-22,23r-29,-29v-82,67,-210,1,-210,-106xm50,-129v0,56,40,99,92,99v33,0,54,-17,54,-17r-28,-28r21,-23r28,29v46,-60,3,-156,-75,-156v-52,0,-92,41,-92,96","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"V":4,"W":4,"a":-2,"v":-1,"w":-1,"y":-1,"­":-5,"\"":4,"'":4,",":5,".":5,"A":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3}},"R":{"d":"37,0r0,-223r-23,0r0,-31r111,0v45,0,76,28,76,74v0,42,-28,64,-46,68v17,15,29,51,41,73v4,10,12,8,23,8r0,31v-26,0,-42,2,-53,-19r-35,-68v-7,-21,-34,-12,-58,-14r0,101r-36,0xm73,-132v47,2,90,2,90,-46v0,-48,-43,-47,-90,-45r0,91","w":222,"k":{"T":8,"Y":11,"V":2,"W":2,"C":1,"G":1,"O":1,"Q":1,",":-7,".":-7,"A":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3}},"S":{"d":"12,-33r21,-26v0,0,26,31,64,31v24,0,44,-15,44,-38v0,-53,-123,-45,-123,-124v0,-38,33,-68,81,-68v34,0,84,15,73,67r-33,0v4,-26,-15,-35,-40,-35v-27,0,-44,15,-44,34v0,51,122,40,122,124v0,39,-31,72,-81,72v-54,0,-84,-37,-84,-37","w":191,"k":{"­":-3,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"z":2}},"T":{"d":"96,0r0,-223v-23,5,-67,-16,-59,24r-32,0v1,-25,-8,-55,22,-55r175,0v30,-4,21,30,22,55r-32,0v-1,-10,3,-24,-8,-24r-52,0r0,223r-36,0","w":228,"k":{"j":14,"i":12," ":7,"Y":-4,"V":-3,"W":-3,"C":7,"G":7,"O":7,"Q":7,"a":22,"v":22,"w":22,"y":23,"­":22,"\"":-7,"'":-7,",":25,".":25,"A":31,"@":27,"c":27,"d":27,"e":27,"g":27,"o":27,"q":27,"m":16,"n":16,"p":16,"r":16,"u":16,"J":18,"z":22,"M":4,"N":4,"s":17}},"U":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93","w":262,"k":{",":4,".":4,"A":7,"M":2,"N":2}},"V":{"d":"101,0r-80,-215v-2,-8,-8,-8,-17,-8r0,-31v26,0,42,-2,50,21r56,156v6,14,8,36,11,35v15,-63,46,-130,65,-191v7,-24,24,-21,50,-21r0,31v-9,0,-15,0,-17,8r-80,215r-38,0","w":240,"k":{" ":8,"T":-3,"C":4,"G":4,"O":4,"Q":4,"a":17,"­":11,"\"":-7,"'":-7,",":25,".":25,"A":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"m":7,"n":7,"p":7,"r":7,"u":7,"J":11,"M":2,"N":2,"S":2}},"W":{"d":"80,0r-56,-215v-3,-8,-9,-8,-18,-8r0,-31v26,0,46,-3,52,21r45,190r57,-210r33,0r53,210r45,-190v4,-24,25,-21,51,-21r0,31v-9,0,-15,0,-17,8r-56,215r-42,0r-51,-195r-54,195r-42,0","w":348,"k":{" ":8,"T":-3,"C":4,"G":4,"O":4,"Q":4,"a":17,"­":11,"\"":-7,"'":-7,",":25,".":25,"A":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"m":7,"n":7,"p":7,"r":7,"u":7,"J":11,"M":2,"N":2,"S":2}},"X":{"d":"4,0r80,-131r-52,-83v-7,-11,-13,-9,-26,-9r0,-31v27,0,43,-3,56,19r45,78v7,-16,34,-58,44,-78v11,-22,28,-19,55,-19r0,31v-13,0,-20,-2,-26,9r-51,83r80,131r-41,0r-63,-106v-14,29,-43,76,-61,106r-40,0","w":212,"k":{"}":-7,"|":-7,"q":3,"o":3,"g":3,"e":3,"d":3,"c":3,"]":-7,"Q":4,"O":4,"G":4,"C":4,"A":3,"@":3,"-":4,")":-7,"'":-7,"\"":-7}},"Y":{"d":"91,0r0,-111r-65,-103v-6,-10,-10,-9,-22,-9r0,-31v26,0,37,-3,50,19r55,93v11,-22,39,-68,54,-93v12,-22,24,-19,50,-19r0,31v-12,0,-16,-1,-22,9r-64,103r0,111r-36,0","w":217,"k":{" ":13,"T":-4,"a":16,"­":22,"\"":-7,"'":-7,",":29,".":29,"A":28,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"m":13,"n":13,"p":13,"r":13,"u":13,"J":13,"z":11,"M":6,"N":6,"s":17}},"Z":{"d":"6,0r0,-24r145,-200v-26,2,-71,1,-101,1v-11,0,-7,14,-8,24r-33,0v1,-26,-6,-55,23,-55r163,0r0,23r-125,177v-10,15,-19,21,-19,24v28,-2,76,-1,108,-1v11,0,7,-14,8,-24r34,0v0,26,5,55,-24,55r-171,0","w":209,"k":{"­":8}},"[":{"d":"35,11r0,-253v-3,-30,33,-22,59,-23r0,27v-11,1,-29,-5,-28,8r0,230v-1,13,17,7,28,8r0,26v-26,-1,-59,7,-59,-23","w":117,"k":{"j":-7,"4":14}},"\\":{"d":"93,15r-91,-283r31,0r91,283r-31,0","w":122},"]":{"d":"23,8v11,-1,29,4,29,-8r0,-230v0,-12,-18,-7,-29,-8r0,-27v26,1,60,-8,60,23r0,253v3,31,-34,22,-60,23r0,-26","w":117},"^":{"d":"25,-89r72,-165r23,0r71,165r-31,0r-52,-127r-51,127r-32,0"},"_":{"d":"2,0r193,0r0,28r-193,0r0,-28","w":197},"`":{"d":"64,-272r-34,-46r35,0r26,46r-27,0","w":136},"a":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35","w":195,"k":{"T":31,"v":4,"w":4,"y":4,"\"":25,"'":25}},"b":{"d":"29,0r0,-216v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,23v0,24,-3,52,0,74v0,0,16,-29,59,-29v49,0,80,38,80,95v0,58,-35,95,-83,95v-43,0,-55,-31,-58,-30r1,26r-34,0xm63,-90v0,32,17,64,52,64v29,0,52,-24,52,-65v0,-40,-20,-65,-51,-65v-27,0,-53,20,-53,66","w":216,"k":{"T":14,"Y":11,"a":2,"v":4,"w":4,"y":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"c":{"d":"13,-91v0,-54,39,-95,98,-95v29,0,75,12,65,58r-31,0v5,-23,-17,-28,-34,-29v-36,0,-62,27,-62,66v0,41,30,64,64,64v34,0,56,-25,56,-25r15,25v0,0,-26,31,-74,31v-57,0,-97,-40,-97,-95","w":191,"k":{"y":2,"l":1,"k":1,"h":1,"b":1,"T":11}},"d":{"d":"13,-91v0,-58,35,-95,83,-95v44,0,54,29,57,28v-2,-14,-1,-41,-1,-58v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,23r0,193v0,11,13,8,23,8r0,30v-29,1,-62,5,-57,-29v0,0,-14,33,-59,33v-49,0,-81,-38,-81,-95xm100,-26v27,0,53,-19,53,-65v0,-32,-17,-65,-52,-65v-28,0,-52,24,-52,65v0,40,21,65,51,65","w":217},"e":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0","w":198,"k":{"T":14}},"f":{"d":"31,0r0,-154r-23,0r0,-28r23,0v1,-67,43,-79,82,-73r0,30v-22,-5,-49,3,-47,43r43,0r0,28r-43,0r0,154r-35,0","w":117,"k":{"T":-7,"a":7,"­":6,")":-5,"]":-5,"|":-5,"}":-5,",":18,".":18,"@":8,"c":8,"d":8,"e":8,"g":8,"o":8,"q":8,"s":3}},"g":{"d":"13,-95v0,-52,29,-91,80,-91v45,0,59,28,59,28v-6,-29,28,-24,54,-24r0,30v-9,1,-22,-3,-22,7r0,137v-1,86,-93,100,-154,68r12,-28v0,0,22,13,49,13v41,0,65,-29,58,-75v-11,18,-27,28,-54,28v-50,0,-82,-40,-82,-93xm102,-32v25,0,48,-15,48,-63v0,-48,-23,-61,-51,-61v-32,0,-50,23,-50,60v0,38,20,64,53,64","w":214},"h":{"d":"125,-154v-35,0,-62,28,-61,69r0,85r-35,0r0,-216v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,22r0,86v8,-18,32,-40,68,-40v74,0,62,79,62,148v0,11,13,8,23,8r0,30v-26,-1,-60,6,-58,-23v-7,-50,22,-131,-34,-131","w":223,"k":{"T":31,"v":4,"w":4,"y":4,"\"":25,"'":25}},"i":{"d":"33,-218r0,-36r31,0r0,36r-31,0xm32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23","w":99,"k":{"v":2,"w":2,"y":2}},"j":{"d":"40,-218r0,-36r32,0r0,36r-32,0xm-7,44v22,0,47,0,47,-40r0,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-6,58,23r0,165v-4,66,-47,70,-82,67r0,-29","w":102},"k":{"d":"29,0r0,-216v0,-11,-13,-8,-23,-8r0,-30v25,2,58,-8,58,21r0,118v15,0,27,3,35,-8r42,-59r40,0v-19,25,-41,62,-63,82v14,9,29,46,40,63v3,9,15,7,26,7r0,30v-26,-1,-44,3,-55,-17r-33,-61v-7,-11,-18,-7,-32,-8r0,86r-35,0","w":189,"k":{"y":4,"w":4,"v":4,"q":3,"o":3,"l":3,"k":3,"h":3,"g":3,"e":3,"d":3,"c":3,"b":3,"a":2,"T":7,"@":3}},"l":{"d":"30,-23r0,-193v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,23r0,193v0,10,12,8,22,8r0,30v-26,-1,-57,7,-57,-23","w":96},"m":{"d":"120,-155v-62,1,-55,87,-54,155r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v33,-2,63,-3,57,37v13,-46,109,-60,117,0v12,-20,34,-41,65,-41v71,0,60,80,60,148v0,11,13,8,23,8r0,30v-26,-1,-60,7,-57,-23v-6,-49,20,-132,-33,-132v-61,0,-56,87,-54,155r-34,0r0,-109v0,-24,-4,-46,-32,-46","w":337,"k":{"T":31,"v":4,"w":4,"y":4,"\"":25,"'":25}},"n":{"d":"126,-154v-36,0,-60,27,-60,69r0,85r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v32,-1,65,-5,56,37v7,-16,29,-41,69,-41v74,0,62,79,62,148v0,11,13,8,23,8r0,30v-26,-1,-60,7,-57,-23v-6,-50,22,-131,-35,-131","w":225,"k":{"T":31,"v":4,"w":4,"y":4,"\"":25,"'":25}},"o":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65","w":222,"k":{"T":14,"Y":11,"a":2,"v":4,"w":4,"y":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"p":{"d":"31,72r0,-216v0,-11,-13,-8,-23,-8r0,-30v27,1,63,-7,55,28v0,0,16,-32,61,-32v49,0,80,38,80,95v0,58,-35,95,-83,95v-42,0,-53,-30,-56,-29v2,27,1,67,1,97r-35,0xm64,-90v0,32,18,64,52,64v29,0,52,-24,52,-65v0,-40,-21,-65,-51,-65v-27,0,-53,20,-53,66","w":217,"k":{"T":14,"Y":11,"a":2,"v":4,"w":4,"y":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"q":{"d":"14,-91v0,-58,34,-95,82,-95v45,0,56,31,59,30v-7,-31,28,-26,55,-26r0,30v-10,0,-23,-3,-23,8r0,216r-35,0r0,-98v0,0,-15,30,-58,30v-49,0,-80,-38,-80,-95xm101,-26v27,0,52,-19,52,-65v0,-32,-16,-65,-51,-65v-29,0,-53,24,-53,65v0,40,21,65,52,65","w":217},"r":{"d":"131,-149v-39,-8,-65,29,-65,74r0,75r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v36,-2,66,-4,56,45v11,-30,31,-50,67,-47r0,35","w":139,"k":{"a":11,"v":-5,"w":-5,"y":-5,"­":7,",":20,".":20,"@":7,"c":7,"d":7,"e":7,"g":7,"o":7,"q":7,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"b":4,"h":4,"k":4,"l":4}},"s":{"d":"10,-28r18,-23v0,0,22,27,55,27v17,0,31,-8,31,-24v0,-33,-99,-28,-99,-87v0,-35,31,-51,68,-51v28,0,69,10,60,52r-32,0v4,-19,-12,-24,-27,-24v-21,0,-34,7,-34,21v0,35,99,27,99,88v0,32,-29,53,-67,53v-49,0,-72,-32,-72,-32","w":163},"t":{"d":"32,-67r0,-87r-24,0r0,-28r25,0r0,-50r34,0r0,50r44,0r0,28r-44,0r0,83v3,40,24,42,47,41r0,31v-37,1,-82,-1,-82,-68","w":126,"k":{"a":2,"v":4,"w":4,"y":4,"­":5,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"b":3,"h":3,"k":3,"l":3}},"u":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41","w":223,"k":{"T":14}},"v":{"d":"76,0r-57,-145v-2,-6,-6,-7,-14,-7r0,-30v23,0,38,-1,45,18r47,129v10,-43,32,-88,45,-129v6,-19,22,-18,45,-18r0,30v-8,0,-14,1,-16,7r-55,145r-40,0","w":191,"k":{"T":11,"a":2,"­":6,",":14,".":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4}},"w":{"d":"68,0r-48,-145v-2,-8,-8,-7,-16,-7r0,-30v24,0,43,-3,49,19r37,128r44,-146r32,0r45,146r37,-128v5,-23,24,-19,49,-19r0,30v-8,0,-15,-1,-17,7r-47,145r-40,0r-43,-137v-11,45,-30,93,-43,137r-39,0","w":300,"k":{"T":11,"a":2,"­":6,",":14,".":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4}},"x":{"d":"5,0r62,-94r-35,-51v-5,-9,-14,-7,-26,-7r0,-30v27,1,42,-4,54,18v8,15,22,32,29,47v18,-28,27,-76,83,-65r0,30v-11,0,-21,-2,-26,6r-35,52r61,94r-39,0r-44,-69r-44,69r-40,0","w":177,"k":{"-":8}},"y":{"d":"16,32v0,0,12,13,27,13v22,1,33,-27,40,-46r-62,-144v-4,-7,-8,-7,-16,-7r0,-30v23,0,38,-3,46,18r49,125v10,-41,31,-85,44,-125v7,-21,24,-18,48,-18r0,30v-9,0,-13,-1,-17,7r-72,178v-11,28,-32,43,-58,43v-27,0,-43,-18,-43,-18","w":196,"k":{"a":3,"­":6,",":16,".":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4}},"z":{"d":"12,0r0,-20r108,-133v-14,2,-49,1,-67,1v-10,-1,-8,11,-8,20r-32,0v0,-25,-4,-50,23,-50r130,0r0,20r-108,133v17,-2,55,-1,76,-1v9,0,7,-11,7,-20r32,0v0,25,4,50,-23,50r-138,0","w":181,"k":{"v":6,"w":6,"y":5,"­":6,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4}},"{":{"d":"41,-28r0,-34v0,-37,-31,-40,-31,-40r0,-30v0,0,31,-3,31,-40r0,-31v4,-61,39,-62,67,-62r0,27v-16,0,-36,-1,-36,37r0,38v0,38,-31,43,-30,46v0,0,30,9,30,46r0,41v2,38,20,38,36,38r0,27v-29,0,-62,-2,-67,-63","w":122,"k":{"j":-7,"4":14}},"|":{"d":"39,57r0,-342r30,0r0,342r-30,0","w":107,"k":{"j":-7,"4":14}},"}":{"d":"14,8v16,0,36,0,36,-38r0,-41v0,-39,31,-44,30,-47v0,0,-30,-9,-30,-45r0,-38v-2,-38,-20,-37,-36,-37r0,-27v29,0,62,1,67,62r0,31v0,37,31,40,31,40r0,30v0,0,-31,3,-31,40r0,34v-4,61,-39,63,-67,63r0,-27","w":122},"~":{"d":"22,-73v0,-42,20,-61,51,-61v38,0,41,35,68,35v19,0,25,-19,25,-34r28,0v0,42,-19,61,-50,61v-38,0,-42,-35,-69,-35v-19,0,-24,19,-24,34r-29,0"}}});Cufon.registerFont({"w":222,"face":{"font-family":"Museo 700","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-7 -321 351 76","underline-thickness":"18","underline-position":"-18","stemh":"40","stemv":"46","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":95,"k":{"Y":13,"W":8,"V":8,"T":7,".":18,",":18}}," ":{"w":95},"!":{"d":"40,-74r-4,-182r48,0r-4,182r-40,0xm38,0r0,-42r44,0r0,42r-44,0","w":119},"\"":{"d":"78,-185r0,-75r34,0r0,75r-34,0xm21,-185r0,-75r33,0r0,75r-33,0","w":132,"k":{"X":-7,"4":18,"T":-7,"Y":-7,"V":-7,"W":-7,"C":4,"G":4,"O":4,"Q":4,"a":16,"A":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"J":25,"M":8,"N":8,"s":4,"Z":-5}},"#":{"d":"43,0r11,-67r-42,0r5,-33r43,0r9,-50r-42,0r5,-34r43,0r12,-72r37,0r-13,72r49,0r13,-72r37,0r-13,72r43,0r-5,34r-43,0r-9,50r42,0r-5,33r-43,0r-12,67r-36,0r11,-67r-49,0r-11,67r-37,0xm96,-100r50,0r9,-50r-50,0","w":252},"$":{"d":"14,-47r32,-28v0,0,21,37,59,37v21,0,37,-11,37,-30v0,-45,-120,-39,-120,-122v0,-36,28,-62,67,-68r0,-34r32,0r0,34v36,5,68,23,60,72r-42,0v3,-22,-10,-31,-32,-31v-22,0,-38,11,-38,26v0,46,120,34,120,121v0,36,-27,67,-68,73r0,33r-32,0r0,-33v-53,-7,-75,-50,-75,-50","w":201,"k":{"7":7}},"%":{"d":"78,-146v-32,0,-58,-25,-58,-57v0,-31,26,-57,58,-57v32,0,60,26,60,57v0,32,-28,57,-60,57xm29,0r196,-256r42,0r-196,256r-42,0xm78,-179v13,0,25,-11,25,-24v0,-13,-12,-24,-25,-24v-13,0,-23,11,-23,24v0,13,10,24,23,24xm159,-52v0,-31,26,-57,59,-57v32,0,59,26,59,57v0,31,-27,56,-59,56v-33,0,-59,-25,-59,-56xm194,-53v0,13,11,24,24,24v13,0,24,-11,24,-24v0,-13,-11,-23,-24,-23v-13,0,-24,10,-24,23","w":297},"&":{"d":"107,4v-89,4,-128,-109,-49,-140v1,-3,-30,-12,-32,-57v-3,-53,63,-77,113,-63r-11,37v-24,-7,-55,7,-55,32v0,14,8,34,39,34r38,0r0,-31r46,0r0,31r31,0r0,40r-31,0v6,72,-21,114,-89,117xm63,-75v0,20,17,37,44,37v38,0,47,-33,43,-75v-42,-2,-87,-1,-87,38","w":234},"'":{"d":"21,-185r0,-75r34,0r0,75r-34,0","w":75,"k":{"X":-7,"4":18,"T":-7,"Y":-7,"V":-7,"W":-7,"C":4,"G":4,"O":4,"Q":4,"a":16,"A":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"J":25,"M":8,"N":8,"s":4,"Z":-5}},"(":{"d":"72,34v-56,-83,-58,-217,-1,-301r39,0v-56,93,-51,207,1,301r-39,0","w":126,"k":{"j":-8,"4":14}},")":{"d":"15,34v53,-94,58,-208,1,-301r39,0v58,84,56,218,-1,301r-39,0","w":126},"*":{"d":"62,-116r-33,-23v10,-13,21,-23,30,-37r-46,-11r13,-39r43,18r-3,-48r41,0r-3,48r44,-18r13,38v-15,5,-34,6,-47,13r31,35r-33,24v-9,-13,-16,-28,-26,-39","w":173},"+":{"d":"15,-85r0,-36r78,0r0,-85r37,0r0,85r78,0r0,36r-78,0r0,85r-37,0r0,-85r-78,0","k":{"7":6}},",":{"d":"32,-46r44,0r-35,84r-33,0","w":95,"k":{"9":2,"7":6,"6":4,"4":4,"0":7,"T":25,"Y":29,"V":25,"W":25,"C":4,"G":4,"O":4,"Q":4,"v":14,"w":14,"y":14,"­":26,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"J":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7}},"-":{"d":"23,-83r0,-40r109,0r0,40r-109,0","w":155,"k":{"x":6,"X":4,"9":10,"7":22,"5":9,"3":14,"1":11}},"­":{"d":"23,-83r0,-40r109,0r0,40r-109,0","w":155,"k":{"T":22,"Y":22,"V":11,"W":11,"C":-5,"G":-5,"O":-5,"Q":-5,"v":5,"w":5,"y":5,"A":3,"z":5,"S":6,"Z":4}},".":{"d":"26,0r0,-46r44,0r0,46r-44,0","w":95,"k":{"9":2,"7":6,"6":4,"4":4,"0":7,"T":25,"Y":29,"V":25,"W":25,"C":4,"G":4,"O":4,"Q":4,"v":14,"w":14,"y":14,"­":26,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"J":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7}},"/":{"d":"0,15r91,-284r39,0r-91,284r-39,0","w":132,"k":{"7":-6}},"0":{"d":"110,4v-70,0,-92,-59,-92,-132v0,-73,22,-132,92,-132v70,0,93,59,93,132v0,73,-23,132,-93,132xm110,-38v35,0,45,-40,45,-90v0,-50,-10,-89,-45,-89v-35,0,-45,39,-45,89v0,50,10,90,45,90","w":220,"k":{".":14,",":14,"8":4,"7":9,"3":4,"2":4,"1":5}},"1":{"d":"23,0r0,-40r55,0r0,-159v-3,6,-24,27,-32,34r-27,-29r64,-62r42,0r0,216r55,0r0,40r-157,0","w":191,"k":{"-":18,"'":22,"\"":22,"9":5,"8":3,"7":4,"6":5,"5":3,"4":6,"3":1,"0":5,"/":-9,"%":9}},"2":{"d":"12,-34v0,-93,125,-88,125,-150v0,-20,-15,-33,-37,-33v-26,0,-37,9,-34,32r-42,0v-11,-56,35,-74,78,-75v45,0,82,28,82,76v0,86,-123,92,-123,138v0,5,3,6,10,6r74,0v11,0,8,-13,8,-23r43,0v-1,28,8,63,-25,63r-133,0v-22,0,-26,-10,-26,-34","w":209,"k":{"-":6,"9":6,"7":1,"4":7,"0":2}},"3":{"d":"9,-32r24,-35v0,0,25,27,63,27v25,0,43,-16,43,-38v0,-29,-31,-40,-66,-37r-9,-24r60,-78r-55,1v-11,0,-7,14,-8,24r-42,0v2,-27,-9,-64,22,-64r139,0r0,30r-59,73v35,5,66,32,66,75v0,42,-33,82,-91,82v-55,0,-87,-36,-87,-36","w":200,"k":{"9":2,"7":2}},"4":{"d":"6,-64r0,-30r106,-162r56,0r0,152r39,0r0,40r-39,0r0,64r-47,0r0,-64r-115,0xm121,-104r1,-99v-15,29,-48,73,-66,100","w":212,"k":{".":4,",":4,"9":4,"4":-11,"2":-7,"1":3}},"5":{"d":"17,-31r24,-36v0,0,22,27,59,27v28,0,47,-19,47,-42v0,-28,-26,-44,-55,-44v-46,0,-43,21,-65,4r9,-109v1,-17,7,-25,24,-25r95,0v32,-3,23,36,24,64r-43,0v-1,-9,3,-25,-7,-24v-17,2,-47,-8,-51,8v-1,15,-6,34,-4,47v59,-16,121,24,121,80v0,45,-35,86,-95,86v-54,0,-83,-36,-83,-36","w":214,"k":{".":5,",":5,"9":1,"7":6,"5":3,"3":3,"2":2,"1":7,"0":3}},"6":{"d":"111,4v-53,0,-99,-42,-99,-118v0,-68,39,-146,118,-146v32,0,52,11,52,11r-14,40v0,0,-17,-8,-36,-8v-39,-1,-64,35,-66,69v47,-44,129,1,129,67v0,48,-34,85,-84,85xm60,-100v0,32,24,62,51,62v24,0,38,-19,38,-43v0,-26,-16,-47,-47,-47v-23,0,-42,13,-42,28","w":207,"k":{"-":5,"9":4,"7":3,"5":2,"3":2,"0":3}},"7":{"d":"17,0r105,-192v9,-16,16,-24,16,-24r-79,0v-11,0,-7,14,-8,24r-43,0v2,-27,-9,-64,22,-64r160,0r0,33r-122,223r-51,0","w":193,"k":{">":13,"=":13,"<":13,";":5,":":5,".":43,"-":19,",":43,"+":13,"?":-5,"9":3,"8":3,"7":-2,"5":1,"4":21,"2":3,"1":1,"0":7,"/":22}},"8":{"d":"13,-74v0,-40,39,-64,39,-64v0,0,-28,-16,-28,-51v0,-36,29,-71,82,-71v50,0,82,31,82,71v0,38,-29,56,-28,59v66,39,31,134,-56,134v-51,0,-91,-32,-91,-78xm69,-188v-1,23,31,32,52,39v8,0,22,-18,22,-37v0,-19,-15,-31,-37,-31v-23,0,-37,13,-37,29xm148,-74v0,-24,-42,-37,-60,-44v-44,11,-32,80,16,80v24,0,44,-15,44,-36","w":209,"k":{"9":3,"7":4,"4":-1,"0":4}},"9":{"d":"24,-6r14,-40v0,0,17,8,36,8v39,1,65,-36,67,-70v-45,46,-129,0,-129,-66v0,-47,33,-86,84,-86v53,0,99,43,99,119v0,68,-39,145,-118,145v-32,0,-53,-10,-53,-10xm58,-174v-10,49,88,64,88,19v0,-32,-23,-62,-50,-62v-24,0,-38,19,-38,43","w":207,"k":{".":14,",":14,"8":2,"7":5,"3":2,"2":2,"1":1,"0":2}},":":{"d":"33,-138r0,-46r44,0r0,46r-44,0xm33,0r0,-46r44,0r0,46r-44,0","w":110},";":{"d":"33,-138r0,-46r44,0r0,46r-44,0xm13,38r19,-84r44,0r-30,84r-33,0","w":110},"<":{"d":"23,-88r0,-30r173,-77r0,40r-125,52r125,52r0,40","k":{"7":6}},"=":{"d":"24,-122r0,-35r175,0r0,35r-175,0xm24,-48r0,-36r175,0r0,36r-175,0","k":{"7":6}},">":{"d":"26,-11r0,-40r124,-52r-124,-52r0,-40r173,77r0,30","k":{"7":6}},"?":{"d":"52,-74v-10,-65,58,-75,60,-115v0,-17,-15,-30,-35,-30v-21,0,-39,16,-39,16r-25,-32v0,0,25,-26,68,-26v41,0,78,26,78,68v-1,66,-72,61,-63,119r-44,0xm52,0r0,-42r44,0r0,42r-44,0","w":171},"@":{"d":"14,-86v0,-75,59,-135,135,-135v115,0,99,72,99,169r26,0r0,33r-99,0v-49,0,-78,-32,-78,-67v0,-43,46,-74,108,-66v-1,-19,-24,-32,-55,-32v-52,0,-91,47,-91,98v0,53,37,96,97,96r0,36v-86,0,-142,-58,-142,-132xm143,-87v0,30,28,39,62,35r0,-71v-35,-4,-62,6,-62,36","w":282},"A":{"d":"4,0r0,-40v9,0,15,0,17,-8r76,-208r49,0r76,208v2,8,8,8,17,8r0,40v-28,0,-51,4,-59,-21r-15,-45r-87,0v-13,24,-10,68,-46,66r-28,0xm89,-104r65,0r-22,-64v-6,-14,-8,-40,-11,-39v-4,25,-23,76,-32,103","w":242,"k":{"X":3}},"B":{"d":"35,-24r0,-192r-23,0r0,-40v82,1,191,-16,190,66v1,29,-18,46,-31,56v28,8,41,34,41,60v-1,74,-75,78,-152,74v-17,0,-25,-7,-25,-24xm82,-151v36,2,72,2,72,-33v0,-34,-37,-34,-72,-32r0,65xm82,-48v2,15,30,8,45,8v23,0,36,-15,36,-37v0,-39,-41,-39,-81,-37r0,66","w":226,"k":{"w":2,"v":2,"Y":9,"W":4,"V":4,"T":7,"'":2,"\"":2}},"C":{"d":"11,-130v0,-74,55,-130,129,-130v33,0,97,13,97,57r0,29r-43,0v7,-34,-25,-42,-53,-42v-46,0,-81,33,-81,86v0,50,37,90,83,90v48,0,77,-33,77,-33r25,33v0,0,-37,44,-103,44v-78,0,-131,-58,-131,-134","w":255,"k":{"Y":4,"C":2,"G":2,"O":2,"Q":2,"\"":-8,"'":-8,")":-6,"]":-6,"|":-6,"}":-6}},"D":{"d":"36,-24r0,-192r-24,0r0,-40r104,0v79,0,131,47,131,128v0,102,-76,128,-187,128v-17,0,-24,-7,-24,-24xm83,-48v0,13,19,8,31,8v51,0,84,-30,84,-88v-1,-69,-45,-94,-115,-88r0,168","w":257,"k":{"i":-3,"X":4,"T":7,"Y":13,"V":4,"W":4,"a":-2,"v":-1,"w":-1,"y":-1,"­":-5,"\"":4,"'":4,",":5,".":5,"A":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3}},"E":{"d":"36,-24r0,-192r-24,0r0,-40r155,0v32,-3,23,36,24,64r-43,0v-1,-10,3,-24,-8,-24r-57,0r0,67r83,0r0,40r-83,0r0,61v0,5,3,8,8,8r59,0v11,0,8,-13,8,-23r43,0v-1,28,8,63,-25,63r-116,0v-17,0,-24,-7,-24,-24","w":208,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"F":{"d":"36,0r0,-216r-24,0r0,-40r146,0v32,-3,24,35,25,64r-43,0v-1,-10,3,-24,-8,-24r-49,0r0,73r82,0r0,40r-82,0r0,103r-47,0","w":189,"k":{"q":2,"o":2,"g":2,"e":2,"d":2,"c":2,"a":5,"Q":4,"O":4,"N":3,"M":3,"J":6,"G":4,"C":4,"A":17,"@":2,".":36,",":36,"'":-7,"\"":-7}},"G":{"d":"11,-129v0,-73,56,-131,130,-131v63,0,93,32,93,32r-26,34v0,0,-27,-22,-66,-22v-44,0,-82,34,-82,86v0,56,38,90,84,90v41,0,65,-26,65,-26v-1,-11,4,-27,-8,-27r-16,0r0,-40v28,2,66,-9,66,24r0,109r-40,0r0,-23v0,0,-28,27,-76,27v-67,0,-124,-51,-124,-133","w":267,"k":{"T":6,"U":3,"a":-3,"­":-7,"\"":2,"'":2,"@":-3,"c":-3,"d":-3,"e":-3,"g":-3,"o":-3,"q":-3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,":":-10,";":-10,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"P":2,"R":2}},"H":{"d":"36,0r0,-208v0,-11,-14,-7,-24,-8r0,-40v30,2,71,-10,71,25r0,84r112,0v6,-39,-18,-109,25,-109r46,0r0,40v-10,0,-23,-3,-23,8r0,208r-48,0r0,-107r-112,0r0,107r-47,0","w":278,"k":{"a":4,"v":4,"w":4,"y":4,",":7,".":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2}},"I":{"d":"14,0r0,-40r25,0r0,-176r-25,0r0,-40r95,0r0,40r-25,0r0,176r25,0r0,40r-95,0","w":123},"J":{"d":"87,4v-44,1,-86,-31,-80,-94r47,0v-3,33,14,50,34,50v17,0,33,-10,33,-38r0,-130v0,-5,-3,-8,-8,-8r-62,0r0,-40r93,0v17,0,24,8,24,25r0,155v0,56,-41,80,-81,80","w":194,"k":{",":4,".":4,"A":4,":":6,";":6}},"K":{"d":"36,0r0,-208v0,-11,-14,-7,-24,-8r0,-40v30,2,71,-10,71,25r0,79v15,-1,32,4,38,-8r52,-96r52,0v-24,40,-45,92,-74,125v18,13,36,60,49,83v5,10,13,8,25,8r0,40v-29,-1,-51,5,-63,-19r-42,-84v-6,-12,-21,-8,-37,-9r0,112r-47,0","w":228,"k":{"x":2,"C":8,"G":8,"O":8,"Q":8,"v":11,"w":11,"y":7,"­":12,")":-9,"]":-9,"|":-9,"}":-9,",":-7,".":-7,"A":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,":":-11,";":-11,"z":4}},"L":{"d":"36,-24r0,-184v0,-11,-14,-7,-24,-8r0,-40v30,2,71,-10,71,25r0,183v0,5,3,8,8,8r56,0v10,0,6,-14,7,-23r43,0v-1,28,9,63,-24,63r-113,0v-17,0,-24,-7,-24,-24","w":200,"k":{"*":25,"T":36,"Y":29,"V":14,"W":14,"C":7,"G":7,"O":7,"Q":7,"U":13,"v":17,"w":17,"y":14,"­":7,"\"":29,"'":29,",":-4,".":-4,"A":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"m":2,"n":2,"p":2,"r":2,"u":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"b":5,"h":5,"k":5,"l":5}},"M":{"d":"6,0r0,-40v9,0,19,2,20,-8r16,-208r49,0r53,122v7,15,10,35,13,34r65,-156r49,0r17,208v0,9,10,8,19,8r0,40v-29,-2,-62,9,-65,-24r-9,-114v-2,-17,2,-41,-1,-40v-11,38,-39,96,-56,134r-38,0r-43,-94v-7,-14,-12,-41,-15,-40v2,43,-8,109,-8,154v0,33,-37,22,-66,24","w":313,"k":{"u":-1,"r":-1,"p":-1,"n":-1,"m":-1,"T":6,"'":11,"\"":11}},"N":{"d":"12,0r0,-40v10,-1,24,3,24,-8r0,-208r42,0r97,142v11,15,19,37,22,36v-5,-38,-1,-107,-3,-153v-1,-35,41,-23,71,-25r0,40v-10,1,-23,-3,-23,8r0,208r-43,0r-97,-141v-11,-14,-19,-37,-22,-36v5,38,1,107,3,153v1,34,-41,22,-71,24","w":277,"k":{"a":4,"v":4,"w":4,"y":4,",":7,".":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2}},"O":{"d":"11,-130v0,-73,57,-130,132,-130v75,0,132,57,132,130v0,75,-57,134,-132,134v-75,0,-132,-59,-132,-134xm60,-130v0,51,37,90,83,90v46,0,83,-39,83,-90v0,-49,-37,-86,-83,-86v-46,0,-83,37,-83,86","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"V":4,"W":4,"a":-2,"v":-1,"w":-1,"y":-1,"­":-5,"\"":4,"'":4,",":5,".":5,"A":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3}},"P":{"d":"36,0r0,-216r-24,0r0,-40r117,0v48,0,82,34,82,84v-1,67,-53,92,-128,84r0,88r-47,0xm83,-129v43,3,79,0,79,-43v0,-41,-35,-48,-79,-44r0,87","w":217,"k":{"z":2,"s":4,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"a":7,"N":3,"M":3,"J":5,"A":21,"@":7,".":38,",":38,"'":-2,"\"":-2}},"Q":{"d":"11,-129v0,-73,57,-131,132,-131v109,0,171,130,104,211r28,26r-28,30r-28,-27v-85,62,-208,-4,-208,-109xm60,-129v0,51,37,89,83,89v27,0,42,-12,42,-12r-26,-24r27,-31r26,26v37,-55,-4,-135,-69,-135v-46,0,-83,38,-83,87","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"V":4,"W":4,"a":-2,"v":-1,"w":-1,"y":-1,"­":-5,"\"":4,"'":4,",":5,".":5,"A":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3}},"R":{"d":"36,0r0,-216r-24,0r0,-40r115,0v47,0,79,29,79,77v0,46,-31,66,-42,68v14,11,27,45,37,63v5,10,12,8,23,8r0,40v-29,-1,-50,4,-61,-19r-32,-65v-6,-16,-28,-10,-48,-11r0,95r-47,0xm83,-136v40,2,75,2,75,-40v0,-41,-35,-42,-75,-40r0,80","w":227,"k":{"T":8,"Y":11,"V":2,"W":2,"C":1,"G":1,"O":1,"Q":1,",":-7,".":-7,"A":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3}},"S":{"d":"12,-35r26,-33v0,0,26,30,62,30v19,0,37,-10,37,-30v0,-44,-120,-40,-120,-120v0,-41,36,-72,85,-72v39,0,87,19,76,74r-43,0v4,-23,-11,-31,-33,-31v-22,0,-38,11,-38,27v0,44,120,35,120,119v0,41,-31,75,-85,75v-57,0,-87,-39,-87,-39","w":197,"k":{"­":-4,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"z":2}},"T":{"d":"94,0r0,-216v-21,2,-55,-11,-47,24r-42,0v2,-27,-10,-64,23,-64r179,0v33,-3,21,37,23,64r-42,0v-1,-10,3,-24,-8,-24r-39,0r0,216r-47,0","w":235,"k":{"j":14,"i":10," ":7,"Y":-4,"V":-3,"W":-3,"C":7,"G":7,"O":7,"Q":7,"a":22,"v":22,"w":22,"y":23,"­":22,"\"":-7,"'":-7,",":25,".":25,"A":31,"@":27,"c":27,"d":27,"e":27,"g":27,"o":27,"q":27,"m":16,"n":16,"p":16,"r":16,"u":16,"J":18,"z":22,"M":4,"N":4,"s":17}},"U":{"d":"33,-91r0,-117v0,-11,-14,-7,-24,-8r0,-40v30,2,71,-10,71,25v0,74,-28,191,53,191v81,0,53,-118,53,-191v0,-35,41,-23,71,-25r0,40v-10,0,-23,-3,-23,8r0,117v0,57,-40,95,-100,95v-61,0,-101,-38,-101,-95","w":266,"k":{",":4,".":4,"A":7,"M":2,"N":2}},"V":{"d":"98,0r-76,-208v-3,-8,-9,-8,-18,-8r0,-40v29,1,51,-4,60,21r49,143v5,14,10,37,10,37v14,-56,43,-124,59,-180v7,-26,31,-20,60,-21r0,40v-9,0,-16,0,-18,8r-76,208r-50,0","w":246,"k":{" ":8,"T":-3,"C":4,"G":4,"O":4,"Q":4,"a":17,"­":11,"\"":-7,"'":-7,",":25,".":25,"A":11,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"m":7,"n":7,"p":7,"r":7,"u":7,"J":10,"M":2,"N":2,"S":2}},"W":{"d":"77,0r-53,-208v-1,-8,-9,-8,-18,-8r0,-40v28,1,56,-6,62,21r40,180v12,-65,36,-136,52,-200r40,0r49,200r40,-180v4,-27,34,-20,62,-21r0,40v-9,0,-17,0,-18,8r-53,208r-55,0r-46,-176r-47,176r-55,0","w":357,"k":{" ":8,"T":-3,"C":4,"G":4,"O":4,"Q":4,"a":17,"­":11,"\"":-7,"'":-7,",":25,".":25,"A":11,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"m":7,"n":7,"p":7,"r":7,"u":7,"J":10,"M":2,"N":2,"S":2}},"X":{"d":"2,0r79,-130r-48,-77v-6,-12,-12,-9,-26,-9r0,-40v29,1,49,-4,62,19r42,74v4,-13,31,-56,40,-74v12,-23,32,-18,62,-19r0,40v-13,0,-20,-2,-26,9r-48,77r80,130r-53,0r-57,-97v-10,24,-39,71,-54,97r-53,0","w":220,"k":{"}":-7,"|":-7,"q":3,"o":3,"g":3,"e":3,"d":3,"c":3,"]":-7,"Q":4,"O":4,"G":4,"C":4,"A":3,"@":3,"-":4,")":-7,"'":-7,"\"":-7}},"Y":{"d":"87,0r0,-112r-60,-95v-6,-10,-11,-9,-23,-9r0,-40v28,1,44,-4,57,19r50,85v9,-18,37,-63,49,-85v12,-23,30,-18,58,-19r0,40v-12,0,-17,-1,-23,9r-61,95r0,112r-47,0","w":221,"k":{" ":13,"T":-4,"a":16,"­":22,"\"":-7,"'":-7,",":29,".":29,"A":28,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"m":13,"n":13,"p":13,"r":13,"u":13,"J":13,"z":11,"M":6,"N":6,"s":17}},"Z":{"d":"6,0r0,-30r115,-163v10,-14,19,-23,19,-23r-81,0v-11,0,-7,14,-8,24r-43,0v1,-29,-8,-64,25,-64r166,0r0,30r-115,163v-10,16,-20,21,-20,24v21,-2,64,-1,90,-1v11,0,8,-13,8,-23r42,0v-1,28,9,63,-24,63r-174,0","w":211,"k":{"­":6}},"[":{"d":"33,10r0,-252v-3,-35,41,-23,71,-25r0,33v-12,1,-32,-5,-32,8r0,219v0,13,20,6,32,8r0,33v-30,-2,-71,10,-71,-24","w":126,"k":{"j":-8,"4":14}},"\\":{"d":"94,15r-92,-284r39,0r92,284r-39,0","w":131},"]":{"d":"23,1v12,-1,31,5,31,-8r0,-219v0,-13,-19,-7,-31,-8r0,-33v30,2,71,-10,71,25r0,252v2,34,-41,22,-71,24r0,-33","w":126},"^":{"d":"23,-88r73,-168r29,0r72,168r-40,0r-47,-119r-47,119r-40,0"},"_":{"d":"2,0r202,0r0,35r-202,0r0,-35","w":205},"`":{"d":"63,-273r-37,-48r44,0r27,48r-34,0","w":143},"a":{"d":"12,-53v3,-63,83,-58,115,-64v0,-26,-11,-36,-34,-36v-12,0,-30,4,-25,22r-42,0v-11,-48,41,-58,67,-57v91,2,79,64,79,142v0,10,14,6,23,7r0,39v-31,1,-72,4,-65,-28v-13,46,-121,41,-118,-25xm58,-55v0,12,9,24,28,24v25,-1,42,-27,41,-53v-28,0,-68,1,-69,29","w":201,"k":{"T":31,"v":4,"w":4,"y":4,"\"":25,"'":25}},"b":{"d":"28,0r0,-209v1,-11,-13,-7,-22,-8r0,-39v29,2,68,-10,68,25v0,22,-3,49,0,69v0,0,16,-26,55,-26v50,0,82,39,82,96v0,58,-36,96,-85,96v-40,0,-52,-27,-55,-26r1,22r-44,0xm73,-91v0,28,14,57,45,57v25,0,47,-21,47,-57v0,-35,-19,-58,-46,-58v-24,0,-46,17,-46,58","k":{"T":14,"Y":11,"a":2,"v":4,"w":4,"y":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"c":{"d":"12,-92v0,-52,37,-96,100,-96v32,0,78,14,67,63r-41,0v4,-19,-10,-24,-26,-24v-32,0,-54,24,-54,57v0,37,27,56,57,56v31,0,54,-24,54,-24r19,31v0,0,-27,33,-77,33v-60,0,-99,-43,-99,-96","w":193,"k":{"y":2,"l":1,"k":1,"h":1,"b":1,"T":11}},"d":{"d":"12,-92v0,-58,34,-96,83,-96v42,0,51,23,54,22v-6,-16,13,-60,-23,-51r0,-39v29,2,68,-10,68,25r0,185v0,10,13,6,22,7r0,39v-29,0,-70,7,-66,-26v0,0,-15,30,-57,30v-50,0,-81,-39,-81,-96xm103,-34v24,0,46,-17,46,-58v0,-28,-14,-57,-45,-57v-25,0,-46,21,-46,57v0,35,18,58,45,58","w":223},"e":{"d":"12,-92v0,-57,38,-96,93,-96v59,1,87,45,80,104r-127,0v4,32,27,49,55,49v30,0,52,-20,52,-20r19,32v0,0,-28,27,-74,27v-61,0,-98,-44,-98,-96xm60,-116r79,0v-1,-52,-74,-45,-79,0","w":200,"k":{"T":14}},"f":{"d":"30,0r0,-147r-23,0r0,-37r23,0v1,-68,49,-77,90,-72r0,39v-19,-4,-45,0,-44,33r39,0r0,37r-39,0r0,147r-46,0","w":124,"k":{"T":-7,"a":6,"­":6,")":-5,"]":-5,"|":-5,"}":-5,",":18,".":18,"@":8,"c":8,"d":8,"e":8,"g":8,"o":8,"q":8,"s":3}},"g":{"d":"12,-96v0,-50,28,-92,81,-92v44,0,54,27,57,26v-5,-29,37,-21,63,-22r0,39v-9,1,-22,-3,-22,7r0,127v-1,90,-98,103,-162,71r14,-36v0,0,23,12,51,12v35,0,57,-24,51,-63v-11,15,-27,23,-51,23v-53,0,-82,-42,-82,-92xm104,-42v22,0,43,-13,43,-54v0,-42,-21,-53,-46,-53v-28,0,-43,20,-43,51v0,32,16,56,46,56","w":220},"h":{"d":"127,-146v-32,0,-54,25,-53,62r0,84r-46,0r0,-209v1,-11,-13,-7,-22,-8r0,-39v29,2,68,-10,68,25v0,26,-3,55,0,79v9,-18,31,-36,63,-36v41,0,64,21,64,70r0,72v0,10,14,6,23,7r0,39v-29,-2,-71,10,-68,-24v-6,-45,20,-122,-29,-122","w":230,"k":{"T":31,"v":4,"w":4,"y":4,"\"":25,"'":25}},"i":{"d":"33,-213r0,-43r40,0r0,43r-40,0xm31,-24r0,-113v0,-10,-12,-8,-22,-8r0,-39v29,2,68,-10,68,25r0,113v0,10,13,6,22,7r0,39v-29,-2,-68,10,-68,-24","w":107,"k":{"v":2,"w":2,"y":2}},"j":{"d":"40,-213r0,-43r40,0r0,43r-40,0xm-7,35v19,3,45,0,45,-33r0,-139v0,-11,-13,-8,-23,-8r0,-39v30,2,69,-9,69,25r0,164v-4,68,-55,74,-91,68r0,-38","w":109},"k":{"d":"28,0r0,-209v1,-11,-13,-7,-22,-8r0,-39v27,3,68,-11,68,21r0,116v13,0,24,2,31,-7r38,-58r50,0v-18,26,-39,64,-60,85v22,8,18,69,61,60r0,39v-27,-1,-50,5,-62,-16r-31,-57v-6,-9,-15,-7,-27,-7r0,80r-46,0","w":199,"k":{"y":4,"w":4,"v":4,"q":3,"o":3,"l":2,"k":2,"h":2,"g":3,"e":3,"d":3,"c":3,"b":2,"a":1,"T":7,"@":3}},"l":{"d":"29,-24r0,-185v0,-11,-13,-8,-23,-8r0,-39v30,2,69,-9,69,25r0,185v-1,10,12,6,21,7r0,39v-29,-2,-67,10,-67,-24","w":104},"m":{"d":"122,-146v-56,2,-47,85,-47,146r-45,0r0,-137v0,-10,-12,-8,-22,-8r0,-39v34,-1,74,-6,66,34v13,-41,102,-57,113,0v12,-18,34,-38,64,-38v65,0,63,75,60,142v0,10,13,6,22,7r0,39v-29,-2,-68,10,-68,-24r0,-85v0,-21,-4,-37,-25,-37v-57,2,-47,85,-47,146r-46,0r0,-109v0,-20,-3,-37,-25,-37","w":339,"k":{"T":31,"v":4,"w":4,"y":4,"\"":25,"'":25}},"n":{"d":"128,-146v-63,-2,-54,81,-53,146r-45,0r0,-137v0,-10,-12,-8,-22,-8r0,-39v34,-1,74,-6,66,34v8,-15,28,-38,65,-38v41,0,64,21,64,70r0,72v0,10,13,6,22,7r0,39v-29,-2,-71,10,-68,-24v-6,-45,20,-121,-29,-122","w":231,"k":{"T":31,"v":4,"w":4,"y":4,"\"":25,"'":25}},"o":{"d":"12,-92v0,-56,44,-96,100,-96v56,0,101,40,101,96v0,57,-45,96,-101,96v-56,0,-100,-39,-100,-96xm58,-92v0,34,24,57,54,57v30,0,55,-23,55,-57v0,-34,-25,-57,-55,-57v-30,0,-54,23,-54,57","w":224,"k":{"T":14,"Y":11,"a":2,"v":4,"w":4,"y":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"p":{"d":"30,72r0,-209v0,-10,-12,-8,-22,-8r0,-39v28,0,68,-6,64,25v0,0,15,-29,58,-29v50,0,82,39,82,96v0,58,-36,96,-84,96v-36,0,-53,-24,-53,-24r0,92r-45,0xm74,-91v0,28,16,57,46,57v25,0,46,-21,46,-57v0,-35,-19,-58,-46,-58v-24,0,-46,17,-46,58","w":223,"k":{"T":14,"Y":11,"a":2,"v":4,"w":4,"y":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"q":{"d":"12,-92v0,-58,34,-96,83,-96v44,0,55,28,58,27v-7,-29,36,-22,63,-23r0,39v-10,0,-23,-2,-22,8r0,209r-46,0r0,-94v0,0,-15,26,-55,26v-50,0,-81,-39,-81,-96xm104,-34v24,0,46,-17,46,-58v0,-28,-15,-57,-46,-57v-25,0,-46,21,-46,57v0,35,19,58,46,58","w":223},"r":{"d":"140,-140v-37,-8,-65,23,-65,67r0,73r-45,0r0,-137v0,-10,-12,-8,-22,-8r0,-39v40,-3,76,-3,66,45v9,-28,33,-51,66,-46r0,45","w":148,"k":{"a":11,"v":-5,"w":-5,"y":-5,"­":7,",":20,".":20,"@":7,"c":7,"d":7,"e":7,"g":7,"o":7,"q":7,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"b":4,"h":4,"k":4,"l":4}},"s":{"d":"9,-28r22,-30v0,0,23,27,54,27v14,0,25,-6,25,-18v0,-26,-97,-26,-97,-85v0,-37,34,-54,72,-54v32,0,73,12,64,57r-40,0v3,-17,-9,-22,-23,-22v-16,0,-28,6,-28,17v0,29,98,23,98,84v0,35,-31,56,-71,56v-50,0,-76,-32,-76,-32","w":168},"t":{"d":"31,-67r0,-80r-24,0r0,-37r25,0r0,-50r44,0r0,50r42,0r0,37r-42,0r0,74v2,33,24,34,45,34r0,40v-38,3,-90,0,-90,-68","w":133,"k":{"a":1,"v":4,"w":4,"y":4,"­":5,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"b":2,"h":2,"k":2,"l":2}},"u":{"d":"29,-66r0,-71v0,-10,-12,-8,-22,-8r0,-39v30,1,71,-9,68,25v6,44,-20,122,28,122v63,0,50,-83,51,-147r46,0r0,138v0,10,13,6,22,7r0,39v-34,1,-74,6,-66,-34v-9,19,-31,38,-63,38v-39,0,-64,-20,-64,-70","w":229,"k":{"T":14}},"v":{"d":"71,0r-53,-138v-2,-6,-6,-7,-14,-7r0,-39v25,0,47,-3,54,18r42,122v8,-39,30,-84,41,-122v6,-21,26,-18,51,-18r0,39v-8,0,-12,1,-14,7r-53,138r-54,0","w":196,"k":{"T":11,"a":2,"­":5,",":14,".":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4}},"w":{"d":"63,0r-44,-138v-2,-7,-7,-7,-15,-7r0,-39v26,1,51,-5,57,19r31,121v9,-45,26,-95,38,-139r41,0r39,139v6,-40,22,-83,30,-121v5,-24,31,-18,57,-19r0,39v-8,0,-13,0,-15,7r-44,138r-52,0r-36,-125r-36,125r-51,0","w":300,"k":{"T":11,"a":2,"­":5,",":14,".":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4}},"x":{"d":"4,0r60,-93r-31,-46v-4,-8,-15,-6,-27,-6r0,-39v29,1,51,-5,62,18v7,14,15,30,25,42v12,-20,22,-61,53,-60r32,0r0,39v-38,-5,-39,34,-58,52r60,93r-50,0v-13,-20,-24,-42,-38,-61r-37,61r-51,0","w":184,"k":{"-":6}},"y":{"d":"18,24v0,0,11,13,26,13v19,0,31,-19,37,-37r-62,-138v-2,-7,-7,-7,-15,-7r0,-39v26,1,48,-5,55,18v12,38,34,75,42,116v11,-40,27,-77,38,-116v7,-23,30,-17,56,-18r0,39v-8,0,-14,0,-16,7r-66,166v-13,33,-39,48,-66,48v-29,0,-47,-19,-47,-19","w":199,"k":{"a":3,"­":5,",":16,".":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4}},"z":{"d":"10,0r0,-24r100,-121v-21,5,-63,-15,-58,19r-42,0v0,-28,-6,-58,25,-58r135,0r0,25r-85,104v-8,11,-16,14,-16,17v14,-8,73,15,66,-19r41,0v-1,27,7,57,-24,57r-142,0","w":183,"k":{"v":6,"w":6,"y":5,"­":5,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4}},"{":{"d":"39,-26r0,-34v0,-36,-30,-38,-30,-38r0,-40v0,0,30,-1,30,-38r0,-31v4,-60,44,-63,75,-60r0,33v-17,0,-36,1,-36,31r0,39v0,36,-29,46,-29,46v0,0,29,9,29,46r0,43v2,31,20,30,36,30r0,34v-31,3,-71,-1,-75,-61","w":126,"k":{"j":-8,"4":14}},"|":{"d":"37,58r0,-345r39,0r0,345r-39,0","w":112,"k":{"j":-8,"4":14}},"}":{"d":"13,1v17,0,35,1,35,-30r0,-43v0,-37,30,-46,30,-46v0,0,-30,-10,-30,-46r0,-39v-2,-30,-18,-31,-35,-31r0,-33v31,-3,71,0,74,60r0,31v0,37,31,38,31,38r0,40v0,0,-31,2,-31,38r0,34v-4,60,-42,64,-74,61r0,-34","w":126},"~":{"d":"20,-72v0,-44,21,-65,56,-65v36,0,42,33,66,33v16,0,22,-16,22,-32r36,0v0,44,-20,66,-55,66v-36,0,-42,-33,-66,-33v-16,0,-22,15,-22,31r-37,0"}}});}if(!dojo._hasResource["dg.Switcher"]){dojo._hasResource["dg.Switcher"]=true;dojo.provide("dg.Switcher");dojo.declare("dg.Switcher",null,{constructor:function(args){this.switcher_node=dojo.byId(args.switcher_node);this.element_selector=args.element_selector;this.next_selector=args.next_selector;this.prev_selector=args.prev_selector;this.progress_selector=args.progress_selector;this.counter_selector=args.counter_selector;if(args.duration){this.duration=args.duration;}else{this.duration=5000;}this.current_progress=0;this.progress_interval=this.duration/50;this.elements=dojo.query(this.element_selector,this.switcher_node);this.progress_elements=dojo.query(this.progress_selector,this.switcher_node);if(this.elements.length>1){this.cur_index=0;this.next_index=1;this.elements.style("zIndex",-1);dojo.style(this.elements[this.cur_index],"zIndex",1);this._schedule_transition(this.cur_index,this.next_index);}dojo.connect(this.switcher_node,"onmouseover",this,"_pause_animation");dojo.connect(this.switcher_node,"onmouseout",this,"_start_animation");dojo.query(this.next_selector,this.switcher_node).connect("onclick",this,"_click_next");dojo.query(this.prev_selector,this.switcher_node).connect("onclick",this,"_click_prev");this.paused=false;},_pause_animation:function(){this.paused=true;this._unschedule_transition();var _27e=this._animate_progress();_27e.play();},_start_animation:function(){this.paused=false;this._schedule_transition(this.cur_index,this.next_index);},_unschedule_transition:function(){clearTimeout(this.timeout_id);clearInterval(this.interval_id);},_click_next:function(_27f){dojo.stopEvent(_27f);this.next();return false;},_click_prev:function(_280){dojo.stopEvent(_280);this.prev();return false;},_reset_progress:function(){this.current_progress=0;clearInterval(this.interval_id);},_schedule_transition:function(_281,_282){this.timeout_id=setTimeout(dojo.hitch(this,"next"),this.duration);this._reset_progress();this.interval_id=setInterval(dojo.hitch(this,"progress"),this.progress_interval);},_setup_next:function(){this._schedule_transition(this.cur_index,this.next_index);},_animate_progress:function(){cur_progress=this.current_progress;this._reset_progress();return this.progress_elements.animateProperty({properties:{width:{start:cur_progress,end:"0",units:"%"}}});},transition:function(_283,_284,_285){var _286=this.elements[_283];var _287=this.elements[_284];dojo.style(_286,{opacity:1,zIndex:1});dojo.style(_287,{opacity:0,display:"block",zIndex:0});dojo.addClass(_286,"shown");dojo.addClass(_287,"shown");dojo.removeClass(_286,"hidden");dojo.removeClass(_287,"hidden");var _288=dojo.fadeIn({node:_287,duration:500});var _289=dojo.fadeOut({node:_286,duration:500});var _28a=this._animate_progress();var anim=dojo.fx.combine([_288,_289,_28a]);if(_285){dojo.connect(anim,"onEnd",this,_285);}dojo.connect(anim,"onBegin",dojo.hitch(this,function(){var pos=_284+1;dojo.query(this.counter_selector)[0].innerHTML=pos+" of "+this.elements.length;Cufon.refresh();}));dojo.connect(anim,"onEnd",dojo.hitch(this,function(){dojo.removeClass(_286,"shown");dojo.addClass(_286,"hidden");dojo.style(_286,{display:"none",zIndex:-1});dojo.style(_287,{zIndex:1});}));anim.play();},next:function(){if(this.paused){this.transition(this.cur_index,this.next_index);}else{this.transition(this.cur_index,this.next_index,"_setup_next");}this.cur_index+=1;if(this.cur_index>=this.elements.length){this.cur_index=0;}this.next_index=this.cur_index+1;if(this.next_index>=this.elements.length){this.next_index=0;}},prev:function(){this.cur_index-=1;if(this.cur_index<0){this.cur_index=this.elements.length-1;}this.next_index=this.cur_index+1;if(this.next_index>=this.elements.length){this.next_index=0;}if(this.paused){this.transition(this.next_index,this.cur_index);}else{this.transition(this.next_index,this.cur_index,"_setup_next");}},progress:function(_28b,_28c){this.current_progress+=2;if(this.current_progress>100){this.current_progress=100;}this.progress_elements.style("width",this.current_progress+"%");},_forIE:"No Trailing Commas"});}dojo.i18n._preloadLocalizations("dojo.nls.dg",["ROOT","en","en-ca","en-gb","en-us","fr","fr-fr","xx"]);

