(function($){$.Jcrop=function(obj,opt)
{var obj=obj,opt=opt;if(typeof(obj)!=='object')obj=$(obj)[0];if(typeof(opt)!=='object')opt={};if(!('trackDocument'in opt))
{opt.trackDocument=$.browser.msie?false:true;if($.browser.msie&&$.browser.version.split('.')[0]=='8')
opt.trackDocument=true;}
if(!('keySupport'in opt))
opt.keySupport=$.browser.msie?false:true;var defaults={trackDocument:false,baseClass:'jcrop',addClass:null,bgColor:'black',bgOpacity:.6,borderOpacity:.4,handleOpacity:.5,handlePad:5,handleSize:9,handleOffset:5,edgeMargin:14,aspectRatio:0,keySupport:true,cornerHandles:true,sideHandles:true,drawBorders:true,dragEdges:true,boxWidth:0,boxHeight:0,boundary:8,animationDelay:20,swingSpeed:3,allowSelect:true,allowMove:true,allowResize:true,minSelect:[0,0],maxSize:[0,0],minSize:[0,0],onChange:function(){},onSelect:function(){}};var options=defaults;setOptions(opt);var $origimg=$(obj);var $img=$origimg.clone().removeAttr('id').css({position:'absolute'});$img.width($origimg.width());$img.height($origimg.height());$origimg.after($img).hide();presize($img,options.boxWidth,options.boxHeight);var boundx=$img.width(),boundy=$img.height(),$div=$('<div />').width(boundx).height(boundy).addClass(cssClass('holder')).css({position:'relative',backgroundColor:options.bgColor}).insertAfter($origimg).append($img);;if(options.addClass)$div.addClass(options.addClass);var $img2=$('<img />').attr('src',$img.attr('src')).css('position','absolute').width(boundx).height(boundy);var $img_holder=$('<div />').width(pct(100)).height(pct(100)).css({zIndex:310,position:'absolute',overflow:'hidden'}).append($img2);var $hdl_holder=$('<div />').width(pct(100)).height(pct(100)).css('zIndex',320);var $sel=$('<div />').css({position:'absolute',zIndex:300}).insertBefore($img).append($img_holder,$hdl_holder);var bound=options.boundary;var $trk=newTracker().width(boundx+(bound*2)).height(boundy+(bound*2)).css({position:'absolute',top:px(-bound),left:px(-bound),zIndex:290}).mousedown(newSelection);var xlimit,ylimit,xmin,ymin;var xscale,yscale,enabled=true;var docOffset=getPos($img),btndown,lastcurs,dimmed,animating,shift_down;var Coords=function()
{var x1=0,y1=0,x2=0,y2=0,ox,oy;function setPressed(pos)
{var pos=rebound(pos);x2=x1=pos[0];y2=y1=pos[1];};function setCurrent(pos)
{var pos=rebound(pos);ox=pos[0]-x2;oy=pos[1]-y2;x2=pos[0];y2=pos[1];};function getOffset()
{return[ox,oy];};function moveOffset(offset)
{var ox=offset[0],oy=offset[1];if(0>x1+ox)ox-=ox+x1;if(0>y1+oy)oy-=oy+y1;if(boundy<y2+oy)oy+=boundy-(y2+oy);if(boundx<x2+ox)ox+=boundx-(x2+ox);x1+=ox;x2+=ox;y1+=oy;y2+=oy;};function getCorner(ord)
{var c=getFixed();switch(ord)
{case'ne':return[c.x2,c.y];case'nw':return[c.x,c.y];case'se':return[c.x2,c.y2];case'sw':return[c.x,c.y2];}};function getFixed()
{if(!options.aspectRatio)return getRect();var aspect=options.aspectRatio,min_x=options.minSize[0]/xscale,min_y=options.minSize[1]/yscale,max_x=options.maxSize[0]/xscale,max_y=options.maxSize[1]/yscale,rw=x2-x1,rh=y2-y1,rwa=Math.abs(rw),rha=Math.abs(rh),real_ratio=rwa/rha,xx,yy;if(max_x==0){max_x=boundx*10}
if(max_y==0){max_y=boundy*10}
if(real_ratio<aspect)
{yy=y2;w=rha*aspect;xx=rw<0?x1-w:w+x1;if(xx<0)
{xx=0;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1;}
else if(xx>boundx)
{xx=boundx;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1;}}
else
{xx=x2;h=rwa/aspect;yy=rh<0?y1-h:y1+h;if(yy<0)
{yy=0;w=Math.abs((yy-y1)*aspect);xx=rw<0?x1-w:w+x1;}
else if(yy>boundy)
{yy=boundy;w=Math.abs(yy-y1)*aspect;xx=rw<0?x1-w:w+x1;}}
if(xx>x1){if(xx-x1<min_x){xx=x1+min_x;}else if(xx-x1>max_x){xx=x1+max_x;}
if(yy>y1){yy=y1+(xx-x1)/aspect;}else{yy=y1-(xx-x1)/aspect;}}else if(xx<x1){if(x1-xx<min_x){xx=x1-min_x}else if(x1-xx>max_x){xx=x1-max_x;}
if(yy>y1){yy=y1+(x1-xx)/aspect;}else{yy=y1-(x1-xx)/aspect;}}
if(xx<0){x1-=xx;xx=0;}else if(xx>boundx){x1-=xx-boundx;xx=boundx;}
if(yy<0){y1-=yy;yy=0;}else if(yy>boundy){y1-=yy-boundy;yy=boundy;}
return last=makeObj(flipCoords(x1,y1,xx,yy));};function rebound(p)
{if(p[0]<0)p[0]=0;if(p[1]<0)p[1]=0;if(p[0]>boundx)p[0]=boundx;if(p[1]>boundy)p[1]=boundy;return[p[0],p[1]];};function flipCoords(x1,y1,x2,y2)
{var xa=x1,xb=x2,ya=y1,yb=y2;if(x2<x1)
{xa=x2;xb=x1;}
if(y2<y1)
{ya=y2;yb=y1;}
return[Math.round(xa),Math.round(ya),Math.round(xb),Math.round(yb)];};function getRect()
{var xsize=x2-x1;var ysize=y2-y1;if(xlimit&&(Math.abs(xsize)>xlimit))
x2=(xsize>0)?(x1+xlimit):(x1-xlimit);if(ylimit&&(Math.abs(ysize)>ylimit))
y2=(ysize>0)?(y1+ylimit):(y1-ylimit);if(ymin&&(Math.abs(ysize)<ymin))
y2=(ysize>0)?(y1+ymin):(y1-ymin);if(xmin&&(Math.abs(xsize)<xmin))
x2=(xsize>0)?(x1+xmin):(x1-xmin);if(x1<0){x2-=x1;x1-=x1;}
if(y1<0){y2-=y1;y1-=y1;}
if(x2<0){x1-=x2;x2-=x2;}
if(y2<0){y1-=y2;y2-=y2;}
if(x2>boundx){var delta=x2-boundx;x1-=delta;x2-=delta;}
if(y2>boundy){var delta=y2-boundy;y1-=delta;y2-=delta;}
if(x1>boundx){var delta=x1-boundy;y2-=delta;y1-=delta;}
if(y1>boundy){var delta=y1-boundy;y2-=delta;y1-=delta;}
return makeObj(flipCoords(x1,y1,x2,y2));};function makeObj(a)
{return{x:a[0],y:a[1],x2:a[2],y2:a[3],w:a[2]-a[0],h:a[3]-a[1]};};return{flipCoords:flipCoords,setPressed:setPressed,setCurrent:setCurrent,getOffset:getOffset,moveOffset:moveOffset,getCorner:getCorner,getFixed:getFixed};}();var Selection=function()
{var start,end,dragmode,awake,hdep=370;var borders={};var handle={};var seehandles=false;var hhs=options.handleOffset;if(options.drawBorders){borders={top:insertBorder('hline').css('top',$.browser.msie?px(-1):px(0)),bottom:insertBorder('hline'),left:insertBorder('vline'),right:insertBorder('vline')};}
if(options.dragEdges){handle.t=insertDragbar('n');handle.b=insertDragbar('s');handle.r=insertDragbar('e');handle.l=insertDragbar('w');}
options.sideHandles&&createHandles(['n','s','e','w']);options.cornerHandles&&createHandles(['sw','nw','ne','se']);function insertBorder(type)
{var jq=$('<div />').css({position:'absolute',opacity:options.borderOpacity}).addClass(cssClass(type));$img_holder.append(jq);return jq;};function dragDiv(ord,zi)
{var jq=$('<div />').mousedown(createDragger(ord)).css({cursor:ord+'-resize',position:'absolute',zIndex:zi});$hdl_holder.append(jq);return jq;};function insertHandle(ord)
{return dragDiv(ord,hdep++).css({top:px(-hhs+1),left:px(-hhs+1),opacity:options.handleOpacity}).addClass(cssClass('handle'));};function insertDragbar(ord)
{var s=options.handleSize,o=hhs,h=s,w=s,t=o,l=o;switch(ord)
{case'n':case's':w=pct(100);break;case'e':case'w':h=pct(100);break;}
return dragDiv(ord,hdep++).width(w).height(h).css({top:px(-t+1),left:px(-l+1)});};function createHandles(li)
{for(i in li)handle[li[i]]=insertHandle(li[i]);};function moveHandles(c)
{var midvert=Math.round((c.h/2)-hhs),midhoriz=Math.round((c.w/2)-hhs),north=west=-hhs+1,east=c.w-hhs,south=c.h-hhs,x,y;'e'in handle&&handle.e.css({top:px(midvert),left:px(east)})&&handle.w.css({top:px(midvert)})&&handle.s.css({top:px(south),left:px(midhoriz)})&&handle.n.css({left:px(midhoriz)});'ne'in handle&&handle.ne.css({left:px(east)})&&handle.se.css({top:px(south),left:px(east)})&&handle.sw.css({top:px(south)});'b'in handle&&handle.b.css({top:px(south)})&&handle.r.css({left:px(east)});};function moveto(x,y)
{$img2.css({top:px(-y),left:px(-x)});$sel.css({top:px(y),left:px(x)});};function resize(w,h)
{$sel.width(w).height(h);};function refresh()
{var c=Coords.getFixed();Coords.setPressed([c.x,c.y]);Coords.setCurrent([c.x2,c.y2]);updateVisible();};function updateVisible()
{if(awake)return update();};function update()
{var c=Coords.getFixed();resize(c.w,c.h);moveto(c.x,c.y);options.drawBorders&&borders['right'].css({left:px(c.w-1)})&&borders['bottom'].css({top:px(c.h-1)});seehandles&&moveHandles(c);awake||show();options.onChange(unscale(c));};function show()
{$sel.show();$img.css('opacity',options.bgOpacity);awake=true;};function release()
{disableHandles();$sel.hide();$img.css('opacity',1);awake=false;};function showHandles()
{if(seehandles)
{moveHandles(Coords.getFixed());$hdl_holder.show();}};function enableHandles()
{seehandles=true;if(options.allowResize)
{moveHandles(Coords.getFixed());$hdl_holder.show();return true;}};function disableHandles()
{seehandles=false;$hdl_holder.hide();};function animMode(v)
{(animating=v)?disableHandles():enableHandles();};function done()
{animMode(false);refresh();};var $track=newTracker().mousedown(createDragger('move')).css({cursor:'move',position:'absolute',zIndex:360})
$img_holder.append($track);disableHandles();return{updateVisible:updateVisible,update:update,release:release,refresh:refresh,setCursor:function(cursor){$track.css('cursor',cursor);},enableHandles:enableHandles,enableOnly:function(){seehandles=true;},showHandles:showHandles,disableHandles:disableHandles,animMode:animMode,done:done};}();var Tracker=function()
{var onMove=function(){},onDone=function(){},trackDoc=options.trackDocument;if(!trackDoc)
{$trk.mousemove(trackMove).mouseup(trackUp).mouseout(trackUp);}
function toFront()
{$trk.css({zIndex:450});if(trackDoc)
{$(document).mousemove(trackMove).mouseup(trackUp);}}
function toBack()
{$trk.css({zIndex:290});if(trackDoc)
{$(document).unbind('mousemove',trackMove).unbind('mouseup',trackUp);}}
function trackMove(e)
{onMove(mouseAbs(e));};function trackUp(e)
{e.preventDefault();e.stopPropagation();if(btndown)
{btndown=false;onDone(mouseAbs(e));options.onSelect(unscale(Coords.getFixed()));toBack();onMove=function(){};onDone=function(){};}
return false;};function activateHandlers(move,done)
{btndown=true;onMove=move;onDone=done;toFront();return false;};function setCursor(t){$trk.css('cursor',t);};$img.before($trk);return{activateHandlers:activateHandlers,setCursor:setCursor};}();var KeyManager=function()
{var $keymgr=$('<input type="radio" />').css({position:'absolute',left:'-30px'}).keypress(parseKey).blur(onBlur),$keywrap=$('<div />').css({position:'absolute',overflow:'hidden'}).append($keymgr);function watchKeys()
{if(options.keySupport)
{$keymgr.show();$keymgr.focus();}};function onBlur(e)
{$keymgr.hide();};function doNudge(e,x,y)
{if(options.allowMove){Coords.moveOffset([x,y]);Selection.updateVisible();};e.preventDefault();e.stopPropagation();};function parseKey(e)
{if(e.ctrlKey)return true;shift_down=e.shiftKey?true:false;var nudge=shift_down?10:1;switch(e.keyCode)
{case 37:doNudge(e,-nudge,0);break;case 39:doNudge(e,nudge,0);break;case 38:doNudge(e,0,-nudge);break;case 40:doNudge(e,0,nudge);break;case 27:Selection.release();break;case 9:return true;}
return nothing(e);};if(options.keySupport)$keywrap.insertBefore($img);return{watchKeys:watchKeys};}();function px(n){return''+parseInt(n)+'px';};function pct(n){return''+parseInt(n)+'%';};function cssClass(cl){return options.baseClass+'-'+cl;};function getPos(obj)
{var pos=$(obj).offset();return[pos.left,pos.top];};function mouseAbs(e)
{return[(e.pageX-docOffset[0]),(e.pageY-docOffset[1])];};function myCursor(type)
{if(type!=lastcurs)
{Tracker.setCursor(type);lastcurs=type;}};function startDragMode(mode,pos)
{docOffset=getPos($img);Tracker.setCursor(mode=='move'?mode:mode+'-resize');if(mode=='move')
return Tracker.activateHandlers(createMover(pos),doneSelect);var fc=Coords.getFixed();var opp=oppLockCorner(mode);var opc=Coords.getCorner(oppLockCorner(opp));Coords.setPressed(Coords.getCorner(opp));Coords.setCurrent(opc);Tracker.activateHandlers(dragmodeHandler(mode,fc),doneSelect);};function dragmodeHandler(mode,f)
{return function(pos){if(!options.aspectRatio)switch(mode)
{case'e':pos[1]=f.y2;break;case'w':pos[1]=f.y2;break;case'n':pos[0]=f.x2;break;case's':pos[0]=f.x2;break;}
else switch(mode)
{case'e':pos[1]=f.y+1;break;case'w':pos[1]=f.y+1;break;case'n':pos[0]=f.x+1;break;case's':pos[0]=f.x+1;break;}
Coords.setCurrent(pos);Selection.update();};};function createMover(pos)
{var lloc=pos;KeyManager.watchKeys();return function(pos)
{Coords.moveOffset([pos[0]-lloc[0],pos[1]-lloc[1]]);lloc=pos;Selection.update();};};function oppLockCorner(ord)
{switch(ord)
{case'n':return'sw';case's':return'nw';case'e':return'nw';case'w':return'ne';case'ne':return'sw';case'nw':return'se';case'se':return'nw';case'sw':return'ne';};};function createDragger(ord)
{return function(e){if(options.disabled)return false;if((ord=='move')&&!options.allowMove)return false;btndown=true;startDragMode(ord,mouseAbs(e));e.stopPropagation();e.preventDefault();return false;};};function presize($obj,w,h)
{var nw=$obj.width(),nh=$obj.height();if((nw>w)&&w>0)
{nw=w;nh=(w/$obj.width())*$obj.height();}
if((nh>h)&&h>0)
{nh=h;nw=(h/$obj.height())*$obj.width();}
xscale=$obj.width()/nw;yscale=$obj.height()/nh;$obj.width(nw).height(nh);};function unscale(c)
{return{x:parseInt(c.x*xscale),y:parseInt(c.y*yscale),x2:parseInt(c.x2*xscale),y2:parseInt(c.y2*yscale),w:parseInt(c.w*xscale),h:parseInt(c.h*yscale)};};function doneSelect(pos)
{var c=Coords.getFixed();if(c.w>options.minSelect[0]&&c.h>options.minSelect[1])
{Selection.enableHandles();Selection.done();}
else
{Selection.release();}
Tracker.setCursor(options.allowSelect?'crosshair':'default');};function newSelection(e)
{if(options.disabled)return false;if(!options.allowSelect)return false;btndown=true;docOffset=getPos($img);Selection.disableHandles();myCursor('crosshair');var pos=mouseAbs(e);Coords.setPressed(pos);Tracker.activateHandlers(selectDrag,doneSelect);KeyManager.watchKeys();Selection.update();e.stopPropagation();e.preventDefault();return false;};function selectDrag(pos)
{Coords.setCurrent(pos);Selection.update();};function newTracker()
{var trk=$('<div></div>').addClass(cssClass('tracker'));$.browser.msie&&trk.css({opacity:0,backgroundColor:'white'});return trk;};function animateTo(a)
{var x1=a[0]/xscale,y1=a[1]/yscale,x2=a[2]/xscale,y2=a[3]/yscale;if(animating)return;var animto=Coords.flipCoords(x1,y1,x2,y2);var c=Coords.getFixed();var animat=initcr=[c.x,c.y,c.x2,c.y2];var interv=options.animationDelay;var x=animat[0];var y=animat[1];var x2=animat[2];var y2=animat[3];var ix1=animto[0]-initcr[0];var iy1=animto[1]-initcr[1];var ix2=animto[2]-initcr[2];var iy2=animto[3]-initcr[3];var pcent=0;var velocity=options.swingSpeed;Selection.animMode(true);var animator=function()
{return function()
{pcent+=(100-pcent)/velocity;animat[0]=x+((pcent/100)*ix1);animat[1]=y+((pcent/100)*iy1);animat[2]=x2+((pcent/100)*ix2);animat[3]=y2+((pcent/100)*iy2);if(pcent<100)animateStart();else Selection.done();if(pcent>=99.8)pcent=100;setSelectRaw(animat);};}();function animateStart()
{window.setTimeout(animator,interv);};animateStart();};function setSelect(rect)
{setSelectRaw([rect[0]/xscale,rect[1]/yscale,rect[2]/xscale,rect[3]/yscale]);};function setSelectRaw(l)
{Coords.setPressed([l[0],l[1]]);Coords.setCurrent([l[2],l[3]]);Selection.update();};function setOptions(opt)
{if(typeof(opt)!='object')opt={};options=$.extend(options,opt);if(typeof(options.onChange)!=='function')
options.onChange=function(){};if(typeof(options.onSelect)!=='function')
options.onSelect=function(){};};function tellSelect()
{return unscale(Coords.getFixed());};function tellScaled()
{return Coords.getFixed();};function setOptionsNew(opt)
{setOptions(opt);interfaceUpdate();};function disableCrop()
{options.disabled=true;Selection.disableHandles();Selection.setCursor('default');Tracker.setCursor('default');};function enableCrop()
{options.disabled=false;interfaceUpdate();};function cancelCrop()
{Selection.done();Tracker.activateHandlers(null,null);};function destroy()
{$div.remove();$origimg.show();};function interfaceUpdate(alt)
{options.allowResize?alt?Selection.enableOnly():Selection.enableHandles():Selection.disableHandles();Tracker.setCursor(options.allowSelect?'crosshair':'default');Selection.setCursor(options.allowMove?'move':'default');$div.css('backgroundColor',options.bgColor);if('setSelect'in options){setSelect(opt.setSelect);Selection.done();delete(options.setSelect);}
if('trueSize'in options){xscale=options.trueSize[0]/boundx;yscale=options.trueSize[1]/boundy;}
xlimit=options.maxSize[0]||0;ylimit=options.maxSize[1]||0;xmin=options.minSize[0]||0;ymin=options.minSize[1]||0;if('outerImage'in options)
{$img.attr('src',options.outerImage);delete(options.outerImage);}
Selection.refresh();};$hdl_holder.hide();interfaceUpdate(true);var api={animateTo:animateTo,setSelect:setSelect,setOptions:setOptionsNew,tellSelect:tellSelect,tellScaled:tellScaled,disable:disableCrop,enable:enableCrop,cancel:cancelCrop,focus:KeyManager.watchKeys,getBounds:function(){return[boundx*xscale,boundy*yscale];},getWidgetSize:function(){return[boundx,boundy];},release:Selection.release,destroy:destroy};$origimg.data('Jcrop',api);return api;};$.fn.Jcrop=function(options)
{function attachWhenDone(from)
{var loadsrc=options.useImg||from.src;var img=new Image();img.onload=function(){$.Jcrop(from,options);};img.src=loadsrc;};if(typeof(options)!=='object')options={};this.each(function()
{if($(this).data('Jcrop'))
{if(options=='api')return $(this).data('Jcrop');else $(this).data('Jcrop').setOptions(options);}
else attachWhenDone(this);});return this;};})(jQuery);;if(jQuery)(function(){$.extend($.fn,{contextMenu:function(o,callback){if(o.menu==undefined)return false;if(o.inSpeed==undefined)o.inSpeed=150;if(o.outSpeed==undefined)o.outSpeed=75;if(o.inSpeed==0)o.inSpeed=-1;if(o.outSpeed==0)o.outSpeed=-1;$(this).each(function(){var el=$(this);var offset=$(el).offset();$('#'+o.menu).addClass('contextMenu');$(this).mousedown(function(e){var evt=e;evt.stopPropagation();$(this).mouseup(function(e){e.stopPropagation();var srcElement=$(this);$(this).unbind('mouseup');if(evt.button==0){$(".contextMenu").hide();var menu=$('#'+o.menu);if($(el).hasClass('disabled'))return false;var d={},x,y;if(self.innerHeight){d.pageYOffset=self.pageYOffset;d.pageXOffset=self.pageXOffset;d.innerHeight=self.innerHeight;d.innerWidth=self.innerWidth;}else if(document.documentElement&&document.documentElement.clientHeight){d.pageYOffset=document.documentElement.scrollTop;d.pageXOffset=document.documentElement.scrollLeft;d.innerHeight=document.documentElement.clientHeight;d.innerWidth=document.documentElement.clientWidth;}else if(document.body){d.pageYOffset=document.body.scrollTop;d.pageXOffset=document.body.scrollLeft;d.innerHeight=document.body.clientHeight;d.innerWidth=document.body.clientWidth;}
(e.pageX)?x=e.pageX:x=e.clientX+d.scrollLeft;(e.pageY)?y=e.pageY:y=e.clientY+d.scrollTop;$(document).unbind('click');$(menu).css({top:y,left:x}).fadeIn(o.inSpeed);$(menu).find('A').mouseover(function(){$(menu).find('LI.hover').removeClass('hover');$(this).parent().addClass('hover');}).mouseout(function(){$(menu).find('LI.hover').removeClass('hover');});$(document).keypress(function(e){switch(e.keyCode){case 38:if($(menu).find('LI.hover').size()==0){$(menu).find('LI:last').addClass('hover');}else{$(menu).find('LI.hover').removeClass('hover').prevAll('LI:not(.disabled)').eq(0).addClass('hover');if($(menu).find('LI.hover').size()==0)$(menu).find('LI:last').addClass('hover');}
break;case 40:if($(menu).find('LI.hover').size()==0){$(menu).find('LI:first').addClass('hover');}else{$(menu).find('LI.hover').removeClass('hover').nextAll('LI:not(.disabled)').eq(0).addClass('hover');if($(menu).find('LI.hover').size()==0)$(menu).find('LI:first').addClass('hover');}
break;case 13:$(menu).find('LI.hover A').trigger('click');break;case 27:$(document).trigger('click');break}});$('#'+o.menu).find('A').unbind('click');$('#'+o.menu).find('LI:not(.disabled) A').click(function(){$(document).unbind('click').unbind('keypress');$(".contextMenu").hide();if(callback)callback($(this).attr('href').substr(1),$(srcElement),{x:x-offset.left,y:y-offset.top,docX:x,docY:y});return false;});setTimeout(function(){$(document).click(function(){$(document).unbind('click').unbind('keypress');$(menu).fadeOut(o.outSpeed);return false;});},0);}});});if($.browser.mozilla){$('#'+o.menu).each(function(){$(this).css({'MozUserSelect':'none'});});}else if($.browser.msie){$('#'+o.menu).each(function(){$(this).bind('selectstart.disableTextSelect',function(){return false;});});}else{$('#'+o.menu).each(function(){$(this).bind('mousedown.disableTextSelect',function(){return false;});});}
$(el).add($('UL.contextMenu')).bind('contextmenu',function(){return false;});});return $(this);},disableContextMenuItems:function(o){if(o==undefined){$(this).find('LI').addClass('disabled');return($(this));}
$(this).each(function(){if(o!=undefined){var d=o.split(',');for(var i=0;i<d.length;i++){$(this).find('A[href="'+d[i]+'"]').parent().addClass('disabled');}}});return($(this));},enableContextMenuItems:function(o){if(o==undefined){$(this).find('LI.disabled').removeClass('disabled');return($(this));}
$(this).each(function(){if(o!=undefined){var d=o.split(',');for(var i=0;i<d.length;i++){$(this).find('A[href="'+d[i]+'"]').parent().removeClass('disabled');}}});return($(this));},disableContextMenu:function(){$(this).each(function(){$(this).addClass('disabled');});return($(this));},enableContextMenu:function(){$(this).each(function(){$(this).removeClass('disabled');});return($(this));},destroyContextMenu:function(){$(this).each(function(){$(this).unbind('mousedown').unbind('mouseup');});return($(this));}});})(jQuery);;jQuery.fn.boxy=function(options){options=options||{};return this.each(function(){var node=this.nodeName.toLowerCase(),self=this;if(node=='a'){jQuery(this).click(function(){var active=Boxy.linkedTo(this),href=this.getAttribute('href'),localOptions=jQuery.extend({actuator:this,title:this.title},options);if(active){active.show();}else if(href.indexOf('#')>=0){var content=jQuery(href.substr(href.indexOf('#'))),newContent=content.clone(true);content.remove();localOptions.unloadOnHide=false;new Boxy(newContent,localOptions);}else{if(!localOptions.cache)localOptions.unloadOnHide=true;Boxy.load(this.href,localOptions);}
return false;});}else if(node=='form'){jQuery(this).bind('submit.boxy',function(){Boxy.confirm(options.message||'Please confirm:',function(){jQuery(self).unbind('submit.boxy').submit();});return false;});}});};function Boxy(element,options){this.boxy=jQuery(Boxy.WRAPPER);jQuery.data(this.boxy[0],'boxy',this);this.visible=false;this.options=jQuery.extend({},Boxy.DEFAULTS,options||{});if(this.options.modal){this.options=jQuery.extend(this.options,{center:true,draggable:false});}
if(this.options.actuator){jQuery.data(this.options.actuator,'active.boxy',this);}
this.setContent(element||"<div></div>");this._setupTitleBar();this.boxy.css('display','none').appendTo(document.body);this.toTop();if(this.options.fixed){if(jQuery.browser.msie&&jQuery.browser.version<7){this.options.fixed=false;}else{this.boxy.addClass('fixed');}}
if(this.options.center&&Boxy._u(this.options.x,this.options.y)){this.center();}else{this.moveTo(Boxy._u(this.options.x)?this.options.x:Boxy.DEFAULT_X,Boxy._u(this.options.y)?this.options.y:Boxy.DEFAULT_Y);}
if(this.options.show)this.show();};Boxy.EF=function(){};jQuery.extend(Boxy,{WRAPPER:"<table cellspacing='0' cellpadding='0' border='0' class='boxy-wrapper'>"+"<tr><td class='top-left'></td><td class='top'></td><td class='top-right'></td></tr>"+"<tr><td class='left'></td><td class='boxy-inner'></td><td class='right'></td></tr>"+"<tr><td class='bottom-left'></td><td class='bottom'></td><td class='bottom-right'></td></tr>"+"</table>",DEFAULTS:{title:null,closeable:true,draggable:true,clone:false,actuator:null,center:true,show:true,modal:false,fixed:true,closeText:'[close]',unloadOnHide:false,clickToFront:false,behaviours:Boxy.EF,afterDrop:Boxy.EF,afterShow:Boxy.EF,afterHide:Boxy.EF,beforeUnload:Boxy.EF},DEFAULT_X:50,DEFAULT_Y:50,zIndex:1337,dragConfigured:false,resizeConfigured:false,dragging:null,load:function(url,options){options=options||{};var ajax={url:url,type:'GET',dataType:'html',cache:false,success:function(html){html=jQuery(html);if(options.filter)html=jQuery(options.filter,html);new Boxy(html,options);}};jQuery.each(['type','cache'],function(){if(this in options){ajax[this]=options[this];delete options[this];}});jQuery.ajax(ajax);},get:function(ele){var p=jQuery(ele).parents('.boxy-wrapper');return p.length?jQuery.data(p[0],'boxy'):null;},linkedTo:function(ele){return jQuery.data(ele,'active.boxy');},alert:function(message,callback,options){return Boxy.ask(message,['OK'],callback,options);},confirm:function(message,after,options){return Boxy.ask(message,['OK','Cancel'],function(response){if(response=='OK')after();},options);},ask:function(question,answers,callback,options){options=jQuery.extend({modal:true,closeable:false},options||{},{show:true,unloadOnHide:true});var body=jQuery('<div></div>').append(jQuery('<div class="question"></div>').html(question));var map={},answerStrings=[];if(answers instanceof Array){for(var i=0;i<answers.length;i++){map[answers[i]]=answers[i];answerStrings.push(answers[i]);}}else{for(var k in answers){map[answers[k]]=k;answerStrings.push(answers[k]);}}
var buttons=jQuery('<form class="answers"></form>');buttons.html(jQuery.map(answerStrings,function(v){return"<input type='button' value='"+v+"' />";}).join(' '));jQuery('input[type=button]',buttons).click(function(){var clicked=this;Boxy.get(this).hide(function(){if(callback)callback(map[clicked.value]);});});body.append(buttons);new Boxy(body,options);},isModalVisible:function(){return jQuery('.boxy-modal-blackout').length>0;},_u:function(){for(var i=0;i<arguments.length;i++)
if(typeof arguments[i]!='undefined')return false;return true;},_handleResize:function(evt){var d=jQuery(document);jQuery('.boxy-modal-blackout').css('display','none').css({width:d.width(),height:d.height()}).css('display','block');},_handleDrag:function(evt){var d;if(d=Boxy.dragging){d[0].boxy.css({left:evt.pageX-d[1],top:evt.pageY-d[2]});}},_nextZ:function(){return Boxy.zIndex++;},_viewport:function(){var d=document.documentElement,b=document.body,w=window;return jQuery.extend(jQuery.browser.msie?{left:b.scrollLeft||d.scrollLeft,top:b.scrollTop||d.scrollTop}:{left:w.pageXOffset,top:w.pageYOffset},!Boxy._u(w.innerWidth)?{width:w.innerWidth,height:w.innerHeight}:(!Boxy._u(d)&&!Boxy._u(d.clientWidth)&&d.clientWidth!=0?{width:d.clientWidth,height:d.clientHeight}:{width:b.clientWidth,height:b.clientHeight}));}});Boxy.prototype={estimateSize:function(){this.boxy.css({visibility:'hidden',display:'block'});var dims=this.getSize();this.boxy.css('display','none').css('visibility','visible');return dims;},getSize:function(){return[this.boxy.width(),this.boxy.height()];},getContentSize:function(){var c=this.getContent();return[c.width(),c.height()];},getPosition:function(){var b=this.boxy[0];return[b.offsetLeft,b.offsetTop];},getCenter:function(){var p=this.getPosition();var s=this.getSize();return[Math.floor(p[0]+s[0]/2),Math.floor(p[1]+s[1]/2)];},getInner:function(){return jQuery('.boxy-inner',this.boxy);},getContent:function(){return jQuery('.boxy-content',this.boxy);},setContent:function(newContent){newContent=jQuery(newContent).css({display:'block'}).addClass('boxy-content');if(this.options.clone)newContent=newContent.clone(true);this.getContent().remove();this.getInner().append(newContent);this._setupDefaultBehaviours(newContent);this.options.behaviours.call(this,newContent);return this;},moveTo:function(x,y){this.moveToX(x).moveToY(y);return this;},moveToX:function(x){if(typeof x=='number')this.boxy.css({left:x});else this.centerX();return this;},moveToY:function(y){if(typeof y=='number')this.boxy.css({top:y});else this.centerY();return this;},centerAt:function(x,y){var s=this[this.visible?'getSize':'estimateSize']();if(typeof x=='number')this.moveToX(x-s[0]/2);if(typeof y=='number')this.moveToY(y-s[1]/2);return this;},centerAtX:function(x){return this.centerAt(x,null);},centerAtY:function(y){return this.centerAt(null,y);},center:function(axis){var v=Boxy._viewport();var o=this.options.fixed?[0,0]:[v.left,v.top];if(!axis||axis=='x')this.centerAt(o[0]+v.width/2,null);if(!axis||axis=='y')this.centerAt(null,o[1]+v.height/2);return this;},centerX:function(){return this.center('x');},centerY:function(){return this.center('y');},resize:function(width,height,after){if(!this.visible)return;var bounds=this._getBoundsForResize(width,height);this.boxy.css({left:bounds[0],top:bounds[1]});this.getContent().css({width:bounds[2],height:bounds[3]});if(after)after(this);return this;},tween:function(width,height,after){if(!this.visible)return;var bounds=this._getBoundsForResize(width,height);var self=this;this.boxy.stop().animate({left:bounds[0],top:bounds[1]});this.getContent().stop().animate({width:bounds[2],height:bounds[3]},function(){if(after)after(self);});return this;},isVisible:function(){return this.visible;},show:function(){if(this.visible)return;if(this.options.modal){var self=this;if(!Boxy.resizeConfigured){Boxy.resizeConfigured=true;jQuery(window).resize(function(){Boxy._handleResize();});}
this.modalBlackout=jQuery('<div class="boxy-modal-blackout"></div>').css({zIndex:Boxy._nextZ(),opacity:0.7,width:jQuery(document).width(),height:jQuery(document).height()}).appendTo(document.body);this.toTop();if(this.options.closeable){jQuery(document.body).bind('keypress.boxy',function(evt){var key=evt.which||evt.keyCode;if(key==27){self.hide();jQuery(document.body).unbind('keypress.boxy');}});}}
this.boxy.stop().css({opacity:1}).show();this.visible=true;this._fire('afterShow');return this;},hide:function(after){if(!this.visible)return;var self=this;if(this.options.modal){jQuery(document.body).unbind('keypress.boxy');this.modalBlackout.animate({opacity:0},function(){jQuery(this).remove();});}
this.boxy.stop().animate({opacity:0},300,function(){self.boxy.css({display:'none'});self.visible=false;self._fire('afterHide');if(after)after(self);if(self.options.unloadOnHide)self.unload();});return this;},toggle:function(){this[this.visible?'hide':'show']();return this;},hideAndUnload:function(after){this.options.unloadOnHide=true;this.hide(after);return this;},unload:function(){this._fire('beforeUnload');this.boxy.remove();if(this.options.actuator){jQuery.data(this.options.actuator,'active.boxy',false);}},toTop:function(){this.boxy.css({zIndex:Boxy._nextZ()});return this;},getTitle:function(){return jQuery('> .title-bar h2',this.getInner()).html();},setTitle:function(t){jQuery('> .title-bar h2',this.getInner()).html(t);return this;},_getBoundsForResize:function(width,height){var csize=this.getContentSize();var delta=[width-csize[0],height-csize[1]];var p=this.getPosition();return[Math.max(p[0]-delta[0]/2,0),Math.max(p[1]-delta[1]/2,0),width,height];},_setupTitleBar:function(){if(this.options.title){var self=this;var tb=jQuery("<div class='title-bar'></div>").html("<h2>"+this.options.title+"</h2>");if(this.options.closeable){tb.append(jQuery("<a href='#' class='close'></a>").html(this.options.closeText));}
if(this.options.draggable){tb[0].onselectstart=function(){return false;}
tb[0].unselectable='on';tb[0].style.MozUserSelect='none';if(!Boxy.dragConfigured){jQuery(document).mousemove(Boxy._handleDrag);Boxy.dragConfigured=true;}
tb.mousedown(function(evt){self.toTop();Boxy.dragging=[self,evt.pageX-self.boxy[0].offsetLeft,evt.pageY-self.boxy[0].offsetTop];jQuery(this).addClass('dragging');}).mouseup(function(){jQuery(this).removeClass('dragging');Boxy.dragging=null;self._fire('afterDrop');});}
this.getInner().prepend(tb);this._setupDefaultBehaviours(tb);}},_setupDefaultBehaviours:function(root){var self=this;if(this.options.clickToFront){root.click(function(){self.toTop();});}
jQuery('.close',root).click(function(){self.hide();return false;}).mousedown(function(evt){evt.stopPropagation();});},_fire:function(event){this.options[event].call(this);}};;(function($){$.extend($.fn,{validate:function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");return;}var validator=$.data(this[0],'validator');if(validator){return validator;}validator=new $.validator(options,this[0]);$.data(this[0],'validator',validator);if(validator.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){validator.cancelSubmit=true;});if(validator.settings.submitHandler){this.find("input, button").filter(":submit").click(function(){validator.submitButton=this;});}this.submit(function(event){if(validator.settings.debug)event.preventDefault();function handle(){if(validator.settings.submitHandler){if(validator.submitButton){var hidden=$("<input type='hidden'/>").attr("name",validator.submitButton.name).val(validator.submitButton.value).appendTo(validator.currentForm);}validator.settings.submitHandler.call(validator,validator.currentForm);if(validator.submitButton){hidden.remove();}return false;}return true;}if(validator.cancelSubmit){validator.cancelSubmit=false;return handle();}if(validator.form()){if(validator.pendingRequest){validator.formSubmitted=true;return false;}return handle();}else{validator.focusInvalid();return false;}});}return validator;},valid:function(){if($(this[0]).is('form')){return this.validate().form();}else{var valid=true;var validator=$(this[0].form).validate();this.each(function(){valid&=validator.element(this);});return valid;}},removeAttrs:function(attributes){var result={},$element=this;$.each(attributes.split(/\s/),function(index,value){result[value]=$element.attr(value);$element.removeAttr(value);});return result;},rules:function(command,argument){var element=this[0];if(command){var settings=$.data(element.form,'validator').settings;var staticRules=settings.rules;var existingRules=$.validator.staticRules(element);switch(command){case"add":$.extend(existingRules,$.validator.normalizeRule(argument));staticRules[element.name]=existingRules;if(argument.messages)settings.messages[element.name]=$.extend(settings.messages[element.name],argument.messages);break;case"remove":if(!argument){delete staticRules[element.name];return existingRules;}var filtered={};$.each(argument.split(/\s/),function(index,method){filtered[method]=existingRules[method];delete existingRules[method];});return filtered;}}var data=$.validator.normalizeRules($.extend({},$.validator.metadataRules(element),$.validator.classRules(element),$.validator.attributeRules(element),$.validator.staticRules(element)),element);if(data.required){var param=data.required;delete data.required;data=$.extend({required:param},data);}return data;}});$.extend($.expr[":"],{blank:function(a){return!$.trim(""+a.value);},filled:function(a){return!!$.trim(""+a.value);},unchecked:function(a){return!a.checked;}});$.validator=function(options,form){this.settings=$.extend({},$.validator.defaults,options);this.currentForm=form;this.init();};$.validator.format=function(source,params){if(arguments.length==1)return function(){var args=$.makeArray(arguments);args.unshift(source);return $.validator.format.apply(this,args);};if(arguments.length>2&&params.constructor!=Array){params=$.makeArray(arguments).slice(1);}if(params.constructor!=Array){params=[params];}$.each(params,function(i,n){source=source.replace(new RegExp("\\{"+i+"\\}","g"),n);});return source;};$.extend($.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:$([]),errorLabelContainer:$([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(element){this.lastActive=element;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,element,this.settings.errorClass,this.settings.validClass);this.errorsFor(element).hide();}},onfocusout:function(element){if(!this.checkable(element)&&(element.name in this.submitted||!this.optional(element))){this.element(element);}},onkeyup:function(element){if(element.name in this.submitted||element==this.lastElement){this.element(element);}},onclick:function(element){if(element.name in this.submitted)this.element(element);else if(element.parentNode.name in this.submitted)this.element(element.parentNode)},highlight:function(element,errorClass,validClass){$(element).addClass(errorClass).removeClass(validClass);},unhighlight:function(element,errorClass,validClass){$(element).removeClass(errorClass).addClass(validClass);}},setDefaults:function(settings){$.extend($.validator.defaults,settings);},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:$.validator.format("Please enter no more than {0} characters."),minlength:$.validator.format("Please enter at least {0} characters."),rangelength:$.validator.format("Please enter a value between {0} and {1} characters long."),range:$.validator.format("Please enter a value between {0} and {1}."),max:$.validator.format("Please enter a value less than or equal to {0}."),min:$.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){this.labelContainer=$(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||$(this.currentForm);this.containers=$(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var groups=(this.groups={});$.each(this.settings.groups,function(key,value){$.each(value.split(/\s/),function(index,name){groups[name]=key;});});var rules=this.settings.rules;$.each(rules,function(key,value){rules[key]=$.validator.normalizeRule(value);});function delegate(event){var validator=$.data(this[0].form,"validator");validator.settings["on"+event.type]&&validator.settings["on"+event.type].call(validator,this[0]);}$(this.currentForm).delegate("focusin focusout keyup",":text, :password, :file, select, textarea",delegate).delegate("click",":radio, :checkbox, select, option",delegate);if(this.settings.invalidHandler)$(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler);},form:function(){this.checkForm();$.extend(this.submitted,this.errorMap);this.invalid=$.extend({},this.errorMap);if(!this.valid())$(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid();},checkForm:function(){this.prepareForm();for(var i=0,elements=(this.currentElements=this.elements());elements[i];i++){this.check(elements[i]);}return this.valid();},element:function(element){element=this.clean(element);this.lastElement=element;this.prepareElement(element);this.currentElements=$(element);var result=this.check(element);if(result){delete this.invalid[element.name];}else{this.invalid[element.name]=true;}if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers);}this.showErrors();return result;},showErrors:function(errors){if(errors){$.extend(this.errorMap,errors);this.errorList=[];for(var name in errors){this.errorList.push({message:errors[name],element:this.findByName(name)[0]});}this.successList=$.grep(this.successList,function(element){return!(element.name in errors);});}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors();},resetForm:function(){if($.fn.resetForm)$(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass);},numberOfInvalids:function(){return this.objectLength(this.invalid);},objectLength:function(obj){var count=0;for(var i in obj)count++;return count;},hideErrors:function(){this.addWrapper(this.toHide).hide();},valid:function(){return this.size()==0;},size:function(){return this.errorList.length;},focusInvalid:function(){if(this.settings.focusInvalid){try{$(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus();}catch(e){}}},findLastActive:function(){var lastActive=this.lastActive;return lastActive&&$.grep(this.errorList,function(n){return n.element.name==lastActive.name;}).length==1&&lastActive;},elements:function(){var validator=this,rulesCache={};return $([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&validator.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in rulesCache||!validator.objectLength($(this).rules()))return false;rulesCache[this.name]=true;return true;});},clean:function(selector){return $(selector)[0];},errors:function(){return $(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext);},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=$([]);this.toHide=$([]);this.currentElements=$([]);},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers);},prepareElement:function(element){this.reset();this.toHide=this.errorsFor(element);},check:function(element){element=this.clean(element);if(this.checkable(element)){element=this.findByName(element.name)[0];}var rules=$(element).rules();var dependencyMismatch=false;for(method in rules){var rule={method:method,parameters:rules[method]};try{var result=$.validator.methods[method].call(this,element.value.replace(/\r/g,""),element,rule.parameters);if(result=="dependency-mismatch"){dependencyMismatch=true;continue;}dependencyMismatch=false;if(result=="pending"){this.toHide=this.toHide.not(this.errorsFor(element));return;}if(!result){this.formatAndAdd(element,rule);return false;}}catch(e){this.settings.debug&&window.console&&console.log("exception occured when checking element "+element.id
+", check the '"+rule.method+"' method",e);throw e;}}if(dependencyMismatch)return;if(this.objectLength(rules))this.successList.push(element);return true;},customMetaMessage:function(element,method){if(!$.metadata)return;var meta=this.settings.meta?$(element).metadata()[this.settings.meta]:$(element).metadata();return meta&&meta.messages&&meta.messages[method];},customMessage:function(name,method){var m=this.settings.messages[name];return m&&(m.constructor==String?m:m[method]);},findDefined:function(){for(var i=0;i<arguments.length;i++){if(arguments[i]!==undefined)return arguments[i];}return undefined;},defaultMessage:function(element,method){return this.findDefined(this.customMessage(element.name,method),this.customMetaMessage(element,method),!this.settings.ignoreTitle&&element.title||undefined,$.validator.messages[method],"<strong>Warning: No message defined for "+element.name+"</strong>");},formatAndAdd:function(element,rule){var message=this.defaultMessage(element,rule.method),theregex=/\$?\{(\d+)\}/g;if(typeof message=="function"){message=message.call(this,rule.parameters,element);}else if(theregex.test(message)){message=jQuery.format(message.replace(theregex,'{$1}'),rule.parameters);}this.errorList.push({message:message,element:element});this.errorMap[element.name]=message;this.submitted[element.name]=message;},addWrapper:function(toToggle){if(this.settings.wrapper)toToggle=toToggle.add(toToggle.parent(this.settings.wrapper));return toToggle;},defaultShowErrors:function(){for(var i=0;this.errorList[i];i++){var error=this.errorList[i];this.settings.highlight&&this.settings.highlight.call(this,error.element,this.settings.errorClass,this.settings.validClass);this.showLabel(error.element,error.message);}if(this.errorList.length){this.toShow=this.toShow.add(this.containers);}if(this.settings.success){for(var i=0;this.successList[i];i++){this.showLabel(this.successList[i]);}}if(this.settings.unhighlight){for(var i=0,elements=this.validElements();elements[i];i++){this.settings.unhighlight.call(this,elements[i],this.settings.errorClass,this.settings.validClass);}}this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show();},validElements:function(){return this.currentElements.not(this.invalidElements());},invalidElements:function(){return $(this.errorList).map(function(){return this.element;});},showLabel:function(element,message){var label=this.errorsFor(element);if(label.length){label.removeClass().addClass(this.settings.errorClass);label.attr("generated")&&label.html(message);}else{label=$("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(element),generated:true}).addClass(this.settings.errorClass).html(message||"");if(this.settings.wrapper){label=label.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();}if(!this.labelContainer.append(label).length)this.settings.errorPlacement?this.settings.errorPlacement(label,$(element)):label.insertAfter(element);}if(!message&&this.settings.success){label.text("");typeof this.settings.success=="string"?label.addClass(this.settings.success):this.settings.success(label);}this.toShow=this.toShow.add(label);},errorsFor:function(element){var name=this.idOrName(element);return this.errors().filter(function(){return $(this).attr('for')==name});},idOrName:function(element){return this.groups[element.name]||(this.checkable(element)?element.name:element.id||element.name);},checkable:function(element){return /radio|checkbox/i.test(element.type);},findByName:function(name){var form=this.currentForm;return $(document.getElementsByName(name)).map(function(index,element){return element.form==form&&element.name==name&&element||null;});},getLength:function(value,element){switch(element.nodeName.toLowerCase()){case'select':return $("option:selected",element).length;case'input':if(this.checkable(element))return this.findByName(element.name).filter(':checked').length;}return value.length;},depend:function(param,element){return this.dependTypes[typeof param]?this.dependTypes[typeof param](param,element):true;},dependTypes:{"boolean":function(param,element){return param;},"string":function(param,element){return!!$(param,element.form).length;},"function":function(param,element){return param(element);}},optional:function(element){return!$.validator.methods.required.call(this,$.trim(element.value),element)&&"dependency-mismatch";},startRequest:function(element){if(!this.pending[element.name]){this.pendingRequest++;this.pending[element.name]=true;}},stopRequest:function(element,valid){this.pendingRequest--;if(this.pendingRequest<0)this.pendingRequest=0;delete this.pending[element.name];if(valid&&this.pendingRequest==0&&this.formSubmitted&&this.form()){$(this.currentForm).submit();this.formSubmitted=false;}else if(!valid&&this.pendingRequest==0&&this.formSubmitted){$(this.currentForm).triggerHandler("invalid-form",[this]);this.formSubmitted=false;}},previousValue:function(element){return $.data(element,"previousValue")||$.data(element,"previousValue",{old:null,valid:true,message:this.defaultMessage(element,"remote")});}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(className,rules){className.constructor==String?this.classRuleSettings[className]=rules:$.extend(this.classRuleSettings,className);},classRules:function(element){var rules={};var classes=$(element).attr('class');classes&&$.each(classes.split(' '),function(){if(this in $.validator.classRuleSettings){$.extend(rules,$.validator.classRuleSettings[this]);}});return rules;},attributeRules:function(element){var rules={};var $element=$(element);for(method in $.validator.methods){var value=$element.attr(method);if(value){rules[method]=value;}}if(rules.maxlength&&/-1|2147483647|524288/.test(rules.maxlength)){delete rules.maxlength;}return rules;},metadataRules:function(element){if(!$.metadata)return{};var meta=$.data(element.form,'validator').settings.meta;return meta?$(element).metadata()[meta]:$(element).metadata();},staticRules:function(element){var rules={};var validator=$.data(element.form,'validator');if(validator.settings.rules){rules=$.validator.normalizeRule(validator.settings.rules[element.name])||{};}return rules;},normalizeRules:function(rules,element){$.each(rules,function(prop,val){if(val===false){delete rules[prop];return;}if(val.param||val.depends){var keepRule=true;switch(typeof val.depends){case"string":keepRule=!!$(val.depends,element.form).length;break;case"function":keepRule=val.depends.call(element,element);break;}if(keepRule){rules[prop]=val.param!==undefined?val.param:true;}else{delete rules[prop];}}});$.each(rules,function(rule,parameter){rules[rule]=$.isFunction(parameter)?parameter(element):parameter;});$.each(['minlength','maxlength','min','max'],function(){if(rules[this]){rules[this]=Number(rules[this]);}});$.each(['rangelength','range'],function(){if(rules[this]){rules[this]=[Number(rules[this][0]),Number(rules[this][1])];}});if($.validator.autoCreateRanges){if(rules.min&&rules.max){rules.range=[rules.min,rules.max];delete rules.min;delete rules.max;}if(rules.minlength&&rules.maxlength){rules.rangelength=[rules.minlength,rules.maxlength];delete rules.minlength;delete rules.maxlength;}}if(rules.messages){delete rules.messages}return rules;},normalizeRule:function(data){if(typeof data=="string"){var transformed={};$.each(data.split(/\s/),function(){transformed[this]=true;});data=transformed;}return data;},addMethod:function(name,method,message){$.validator.methods[name]=method;$.validator.messages[name]=message!=undefined?message:$.validator.messages[name];if(method.length<3){$.validator.addClassRules(name,$.validator.normalizeRule(name));}},methods:{required:function(value,element,param){if(!this.depend(param,element))return"dependency-mismatch";switch(element.nodeName.toLowerCase()){case'select':var val=$(element).val();return val&&val.length>0;case'input':if(this.checkable(element))return this.getLength(value,element)>0;default:return $.trim(value).length>0;}},remote:function(value,element,param){if(this.optional(element))return"dependency-mismatch";var previous=this.previousValue(element);if(!this.settings.messages[element.name])this.settings.messages[element.name]={};previous.originalMessage=this.settings.messages[element.name].remote;this.settings.messages[element.name].remote=previous.message;param=typeof param=="string"&&{url:param}||param;if(previous.old!==value){previous.old=value;var validator=this;this.startRequest(element);var data={};data[element.name]=value;$.ajax($.extend(true,{url:param,mode:"abort",port:"validate"+element.name,dataType:"json",data:data,success:function(response){validator.settings.messages[element.name].remote=previous.originalMessage;var valid=response===true;if(valid){var submitted=validator.formSubmitted;validator.prepareElement(element);validator.formSubmitted=submitted;validator.successList.push(element);validator.showErrors();}else{var errors={};var message=(previous.message=response||validator.defaultMessage(element,"remote"));errors[element.name]=$.isFunction(message)?message(value):message;validator.showErrors(errors);}previous.valid=valid;validator.stopRequest(element,valid);}},param));return"pending";}else if(this.pending[element.name]){return"pending";}return previous.valid;},minlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)>=param;},maxlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)<=param;},rangelength:function(value,element,param){var length=this.getLength($.trim(value),element);return this.optional(element)||(length>=param[0]&&length<=param[1]);},min:function(value,element,param){return this.optional(element)||value>=param;},max:function(value,element,param){return this.optional(element)||value<=param;},range:function(value,element,param){return this.optional(element)||(value>=param[0]&&value<=param[1]);},email:function(value,element){return this.optional(element)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value);},url:function(value,element){return this.optional(element)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);},date:function(value,element){return this.optional(element)||!/Invalid|NaN/.test(new Date(value));},dateISO:function(value,element){return this.optional(element)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value);},number:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value);},digits:function(value,element){return this.optional(element)||/^\d+$/.test(value);},creditcard:function(value,element){if(this.optional(element))return"dependency-mismatch";if(/[^0-9-]+/.test(value))return false;var nCheck=0,nDigit=0,bEven=false;value=value.replace(/\D/g,"");for(var n=value.length-1;n>=0;n--){var cDigit=value.charAt(n);var nDigit=parseInt(cDigit,10);if(bEven){if((nDigit*=2)>9)nDigit-=9;}nCheck+=nDigit;bEven=!bEven;}return(nCheck%10)==0;},accept:function(value,element,param){param=typeof param=="string"?param.replace(/,/g,'|'):"png|jpe?g|gif";return this.optional(element)||value.match(new RegExp(".("+param+")$","i"));},equalTo:function(value,element,param){var target=$(param).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){$(element).valid();});return value==target.val();}}});$.format=$.validator.format;})(jQuery);;(function($){var ajax=$.ajax;var pendingRequests={};$.ajax=function(settings){settings=$.extend(settings,$.extend({},$.ajaxSettings,settings));var port=settings.port;if(settings.mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort();}return(pendingRequests[port]=ajax.apply(this,arguments));}return ajax.apply(this,arguments);};})(jQuery);;(function($){$.each({focus:'focusin',blur:'focusout'},function(original,fix){$.event.special[fix]={setup:function(){if($.browser.msie)return false;this.addEventListener(original,$.event.special[fix].handler,true);},teardown:function(){if($.browser.msie)return false;this.removeEventListener(original,$.event.special[fix].handler,true);},handler:function(e){arguments[0]=$.event.fix(e);arguments[0].type=fix;return $.event.handle.apply(this,arguments);}};});$.extend($.fn,{delegate:function(type,delegate,handler){return this.bind(type,function(event){var target=$(event.target);if(target.is(delegate)){return handler.apply(target,arguments);}});},triggerEvent:function(type,target){return this.triggerHandler(type,[$.event.fix({type:type,target:target})]);}})})(jQuery);;(function(a){var k="function",i="password",c="maxLength",e="type",b=true,d=false,s="watermark",t,m=s,h="watermarkClass",p="watermarkFocus",j="watermarkSubmit",l="watermarkMaxLength",g="watermarkPassword",f="watermarkText",r=":data("+m+")",n=":text,:password,:search,textarea",o=["Page_ClientValidate"],q=d;a.extend(a.expr[":"],{search:function(a){if (typeof(a.type)!="unknown"){return "search"===a.type;}return false;},data:function(f,h,g){var e,c=/^((?:[^=!^$*]|[!^$*](?!=))+)(?:([!^$*]?=)(.*))?$/.exec(g[3]);if(c){e=a(f).data(c[1]);if(e!==t){if(c[2]){e=""+e;switch(c[2]){case"=":return e==c[3];case"!=":return e!=c[3];case"^=":return e.slice(0,c[3].length)==c[3];case"$=":return e.slice(-c[3].length)==c[3];case"*=":return e.indexOf(c[3])!==-1}}return b}}return d}});a.watermark={version:"3.0.4",options:{className:s,useNative:b},hide:function(b){a(b).filter(r).each(function(){a.watermark._hide(a(this))})},_hide:function(a,i){if(a.val()==a.data(f)){a.val("");if(a.data(g))if(a.attr(e)==="text"){var d=a.data(g),b=a.parent();b[0].removeChild(a[0]);b[0].appendChild(d[0]);a=d}if(a.data(l)){a.attr(c,a.data(l));a.removeData(l)}if(i){a.attr("autocomplete","off");window.setTimeout(function(){a.select()},0)}}a.removeClass(a.data(h))},show:function(b){a(b).filter(r).each(function(){a.watermark._show(a(this))})},_show:function(d){var r=d.val(),j=d.data(f),m=d.attr(e);if((r.length==0||r==j)&&!d.data(p)){q=b;if(d.data(g))if(m===i){var o=d.data(g),n=d.parent();n[0].removeChild(d[0]);n[0].appendChild(o[0]);d=o;d.attr(c,j.length)}if(m==="text"||m==="search"){var k=d.attr(c);if(k>0&&j.length>k){d.data(l,k);d.attr(c,j.length)}}d.addClass(d.data(h));d.val(j)}else a.watermark._hide(d)},hideAll:function(){if(q){a.watermark.hide(n);q=d}},showAll:function(){a.watermark.show(n)}};a.fn.watermark=function(q,l){var o="string",s=typeof q===o,r;if(typeof l==="object"){r=typeof l.className===o;l=a.extend({},a.watermark.options,l)}else if(typeof l===o){r=b;l=a.extend({},a.watermark.options,{className:l})}else l=a.watermark.options;if(typeof l.useNative!==k)l.useNative=l.useNative?function(){return b}:function(){return d};return this.each(function(){var u="dragleave",t="dragenter",w=this,d=a(w);if(!d.is(n))return;if(d.data(m)){if(s||r){a.watermark._hide(d);s&&d.data(f,q);r&&d.data(h,l.className)}}else{if(l.useNative.call(w,d))if((""+d.css("-webkit-appearance")).replace("undefined","")!==""&&d.attr("tagName")!=="TEXTAREA"){s&&d.attr("placeholder",q);return}d.data(f,s?q:"");d.data(h,l.className);d.data(m,1);if(d.attr(e)===i){var x=d.wrap("<span>").parent(),k=a(x.html().replace(/type=["']?password["']?/i,'type="text"'));k.data(f,d.data(f));k.data(h,d.data(h));k.data(m,1);k.attr(c,q.length);k.focus(function(){a.watermark._hide(k,b)}).bind(t,function(){a.watermark._hide(k)}).bind("dragend",function(){window.setTimeout(function(){k.blur()},1)});d.blur(function(){a.watermark._show(d)}).bind(u,function(){a.watermark._show(d)});k.data(g,d);d.data(g,k)}else d.focus(function(){d.data(p,1);a.watermark._hide(d,b)}).blur(function(){d.data(p,0);a.watermark._show(d)}).bind(t,function(){a.watermark._hide(d)}).bind(u,function(){a.watermark._show(d)}).bind("dragend",function(){window.setTimeout(function(){a.watermark._show(d)},1)}).bind("drop",function(b){var a=b.originalEvent.dataTransfer.getData("Text");d.val().replace(a,"")===d.data(f)&&d.val(a);d.focus()});if(w.form){var o=w.form,v=a(o);if(!v.data(j)){v.submit(a.watermark.hideAll);if(o.submit){v.data(j,o.submit);o.submit=function(c,b){return function(){var d=b.data(j);a.watermark.hideAll();if(d.apply)d.apply(c,Array.prototype.slice.call(arguments));else d()}}(o,v)}else{v.data(j,1);o.submit=function(b){return function(){a.watermark.hideAll();delete b.submit;b.submit()}}(o)}}}}a.watermark._show(d)}).end()};o.length&&a(function(){for(var b,c,d=o.length-1;d>=0;d--){b=o[d];c=window[b];if(typeof c===k)window[b]=function(b){return function(){a.watermark.hideAll();b.apply(null,Array.prototype.slice.call(arguments))}}(c)}})})(jQuery);;;(function($){$.fn.extend({autocomplete:function(urlOrData,options){var isUrl=typeof urlOrData=="string";options=$.extend({},$.Autocompleter.defaults,{url:isUrl?urlOrData:null,data:isUrl?null:urlOrData,delay:isUrl?$.Autocompleter.defaults.delay:10,max:options&&!options.scroll?10:150},options);options.highlight=options.highlight||function(value){return value;};options.formatMatch=options.formatMatch||options.formatItem;return this.each(function(){new $.Autocompleter(this,options);});},result:function(handler){return this.bind("result",handler);},search:function(handler){return this.trigger("search",[handler]);},flushCache:function(){return this.trigger("flushCache");},setOptions:function(options){return this.trigger("setOptions",[options]);},unautocomplete:function(){return this.trigger("unautocomplete");}});$.Autocompleter=function(input,options){var KEY={UP:38,DOWN:40,DEL:46,TAB:9,RETURN:13,ESC:27,COMMA:188,PAGEUP:33,PAGEDOWN:34,BACKSPACE:8};var $input=$(input).attr("autocomplete","off").addClass(options.inputClass);var timeout;var previousValue="";var cache=$.Autocompleter.Cache(options);var hasFocus=0;var lastKeyPressCode;var config={mouseDownOnSelect:false};var select=$.Autocompleter.Select(options,input,selectCurrent,config);var blockSubmit;$.browser.opera&&$(input.form).bind("submit.autocomplete",function(){if(blockSubmit){blockSubmit=false;return false;}});$input.bind(($.browser.opera?"keypress":"keydown")+".autocomplete",function(event){lastKeyPressCode=event.keyCode;switch(event.keyCode){case KEY.UP:event.preventDefault();if(select.visible()){select.prev();}else{onChange(0,true);}break;case KEY.DOWN:event.preventDefault();if(select.visible()){select.next();}else{onChange(0,true);}break;case KEY.PAGEUP:event.preventDefault();if(select.visible()){select.pageUp();}else{onChange(0,true);}break;case KEY.PAGEDOWN:event.preventDefault();if(select.visible()){select.pageDown();}else{onChange(0,true);}break;case options.multiple&&$.trim(options.multipleSeparator)==","&&KEY.COMMA:case KEY.TAB:case KEY.RETURN:if(selectCurrent()){event.preventDefault();blockSubmit=true;return false;}break;case KEY.ESC:select.hide();break;default:clearTimeout(timeout);timeout=setTimeout(onChange,options.delay);break;}}).focus(function(){hasFocus++;}).blur(function(){hasFocus=0;if(!config.mouseDownOnSelect){hideResults();}}).click(function(){if(hasFocus++>1&&!select.visible()){onChange(0,true);}}).bind("search",function(){var fn=(arguments.length>1)?arguments[1]:null;function findValueCallback(q,data){var result;if(data&&data.length){for(var i=0;i<data.length;i++){if(data[i].result.toLowerCase()==q.toLowerCase()){result=data[i];break;}}}if(typeof fn=="function")fn(result);else $input.trigger("result",result&&[result.data,result.value]);}$.each(trimWords($input.val()),function(i,value){request(value,findValueCallback,findValueCallback);});}).bind("flushCache",function(){cache.flush();}).bind("setOptions",function(){$.extend(options,arguments[1]);if("data"in arguments[1])cache.populate();}).bind("unautocomplete",function(){select.unbind();$input.unbind();$(input.form).unbind(".autocomplete");});function selectCurrent(){var selected=select.selected();if(!selected)return false;var v=selected.result;previousValue=v;if(options.multiple){var words=trimWords($input.val());if(words.length>1){v=words.slice(0,words.length-1).join(options.multipleSeparator)+options.multipleSeparator+v;}v+=options.multipleSeparator;}$input.val(v);hideResultsNow();$input.trigger("result",[selected.data,selected.value]);return true;}function onChange(crap,skipPrevCheck){if(lastKeyPressCode==KEY.DEL){select.hide();return;}var currentValue=$input.val();if(!skipPrevCheck&&currentValue==previousValue)return;previousValue=currentValue;currentValue=lastWord(currentValue);if(currentValue.length>=options.minChars){$input.addClass(options.loadingClass);if(!options.matchCase)currentValue=currentValue.toLowerCase();request(currentValue,receiveData,hideResultsNow);}else{stopLoading();select.hide();}};function trimWords(value){if(!value){return[""];}var words=value.split(options.multipleSeparator);var result=[];$.each(words,function(i,value){if($.trim(value))result[i]=$.trim(value);});return result;}function lastWord(value){if(!options.multiple)return value;var words=trimWords(value);return words[words.length-1];}function autoFill(q,sValue){if(options.autoFill&&(lastWord($input.val()).toLowerCase()==q.toLowerCase())&&lastKeyPressCode!=KEY.BACKSPACE){$input.val($input.val()+sValue.substring(lastWord(previousValue).length));$.Autocompleter.Selection(input,previousValue.length,previousValue.length+sValue.length);}};function hideResults(){clearTimeout(timeout);timeout=setTimeout(hideResultsNow,200);};function hideResultsNow(){var wasVisible=select.visible();select.hide();clearTimeout(timeout);stopLoading();if(options.mustMatch){$input.search(function(result){if(!result){if(options.multiple){var words=trimWords($input.val()).slice(0,-1);$input.val(words.join(options.multipleSeparator)+(words.length?options.multipleSeparator:""));}else
$input.val("");}});}if(wasVisible)$.Autocompleter.Selection(input,input.value.length,input.value.length);};function receiveData(q,data){if(data&&data.length&&hasFocus){stopLoading();select.display(data,q);autoFill(q,data[0].value);select.show();}else{hideResultsNow();}};function request(term,success,failure){if(!options.matchCase)term=term.toLowerCase();var data=cache.load(term);if(data&&data.length){success(term,data);}else if((typeof options.url=="string")&&(options.url.length>0)){var extraParams={timestamp:+new Date()};$.each(options.extraParams,function(key,param){extraParams[key]=typeof param=="function"?param():param;});$.ajax({mode:"abort",port:"autocomplete"+input.name,dataType:options.dataType,url:options.url,data:$.extend({q:lastWord(term),limit:options.max},extraParams),success:function(data){var parsed=options.parse&&options.parse(data)||parse(data);cache.add(term,parsed);success(term,parsed);}});}else{select.emptyList();failure(term);}};function parse(data){var parsed=[];var rows=data.split("\n");for(var i=0;i<rows.length;i++){var row=$.trim(rows[i]);if(row){row=row.split("|");parsed[parsed.length]={data:row,value:row[0],result:options.formatResult&&options.formatResult(row,row[0])||row[0]};}}return parsed;};function stopLoading(){$input.removeClass(options.loadingClass);};};$.Autocompleter.defaults={inputClass:"ac_input",resultsClass:"ac_results",loadingClass:"ac_loading",minChars:1,delay:400,matchCase:false,matchSubset:true,matchContains:false,cacheLength:10,max:100,mustMatch:false,extraParams:{},selectFirst:true,formatItem:function(row){return row[0];},formatMatch:null,autoFill:false,width:0,multiple:false,multipleSeparator:", ",highlight:function(value,term){return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)("+term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi,"\\$1")+")(?![^<>]*>)(?![^&;]+;)","gi"),"<strong>$1</strong>");},scroll:true,scrollHeight:180};$.Autocompleter.Cache=function(options){var data={};var length=0;function matchSubset(s,sub){if(!options.matchCase)s=s.toLowerCase();var i=s.indexOf(sub);if(i==-1)return false;return i==0||options.matchContains;};function add(q,value){if(length>options.cacheLength){flush();}if(!data[q]){length++;}data[q]=value;}function populate(){if(!options.data)return false;var stMatchSets={},nullData=0;if(!options.url)options.cacheLength=1;stMatchSets[""]=[];for(var i=0,ol=options.data.length;i<ol;i++){var rawValue=options.data[i];rawValue=(typeof rawValue=="string")?[rawValue]:rawValue;var value=options.formatMatch(rawValue,i+1,options.data.length);if(value===false)continue;var firstChar=value.charAt(0).toLowerCase();if(!stMatchSets[firstChar])stMatchSets[firstChar]=[];var row={value:value,data:rawValue,result:options.formatResult&&options.formatResult(rawValue)||value};stMatchSets[firstChar].push(row);if(nullData++<options.max){stMatchSets[""].push(row);}};$.each(stMatchSets,function(i,value){options.cacheLength++;add(i,value);});}setTimeout(populate,25);function flush(){data={};length=0;}return{flush:flush,add:add,populate:populate,load:function(q){if(!options.cacheLength||!length)return null;if(!options.url&&options.matchContains){var csub=[];for(var k in data){if(k.length>0){var c=data[k];$.each(c,function(i,x){if(matchSubset(x.value,q)){csub.push(x);}});}}return csub;}else
if(data[q]){return data[q];}else
if(options.matchSubset){for(var i=q.length-1;i>=options.minChars;i--){var c=data[q.substr(0,i)];if(c){var csub=[];$.each(c,function(i,x){if(matchSubset(x.value,q)){csub[csub.length]=x;}});return csub;}}}return null;}};};$.Autocompleter.Select=function(options,input,select,config){var CLASSES={ACTIVE:"ac_over"};var listItems,active=-1,data,term="",needsInit=true,element,list;function init(){if(!needsInit)return;element=$("<div/>").hide().addClass(options.resultsClass).css("position","absolute").appendTo(document.body);list=$("<ul/>").appendTo(element).mouseover(function(event){if(target(event).nodeName&&target(event).nodeName.toUpperCase()=='LI'){active=$("li",list).removeClass(CLASSES.ACTIVE).index(target(event));$(target(event)).addClass(CLASSES.ACTIVE);}}).click(function(event){$(target(event)).addClass(CLASSES.ACTIVE);select();input.focus();return false;}).mousedown(function(){config.mouseDownOnSelect=true;}).mouseup(function(){config.mouseDownOnSelect=false;});if(options.width>0)element.css("width",options.width);needsInit=false;}function target(event){var element=event.target;while(element&&element.tagName!="LI")element=element.parentNode;if(!element)return[];return element;}function moveSelect(step){listItems.slice(active,active+1).removeClass(CLASSES.ACTIVE);movePosition(step);var activeItem=listItems.slice(active,active+1).addClass(CLASSES.ACTIVE);if(options.scroll){var offset=0;listItems.slice(0,active).each(function(){offset+=this.offsetHeight;});if((offset+activeItem[0].offsetHeight-list.scrollTop())>list[0].clientHeight){list.scrollTop(offset+activeItem[0].offsetHeight-list.innerHeight());}else if(offset<list.scrollTop()){list.scrollTop(offset);}}};function movePosition(step){active+=step;if(active<0){active=listItems.size()-1;}else if(active>=listItems.size()){active=0;}}function limitNumberOfItems(available){return options.max&&options.max<available?options.max:available;}function fillList(){list.empty();var max=limitNumberOfItems(data.length);for(var i=0;i<max;i++){if(!data[i])continue;var formatted=options.formatItem(data[i].data,i+1,max,data[i].value,term);if(formatted===false)continue;var li=$("<li/>").html(options.highlight(formatted,term)).addClass(i%2==0?"ac_even":"ac_odd").appendTo(list)[0];$.data(li,"ac_data",data[i]);}listItems=list.find("li");if(options.selectFirst){listItems.slice(0,1).addClass(CLASSES.ACTIVE);active=0;}if($.fn.bgiframe)list.bgiframe();}return{display:function(d,q){init();data=d;term=q;fillList();},next:function(){moveSelect(1);},prev:function(){moveSelect(-1);},pageUp:function(){if(active!=0&&active-8<0){moveSelect(-active);}else{moveSelect(-8);}},pageDown:function(){if(active!=listItems.size()-1&&active+8>listItems.size()){moveSelect(listItems.size()-1-active);}else{moveSelect(8);}},hide:function(){element&&element.hide();listItems&&listItems.removeClass(CLASSES.ACTIVE);active=-1;},visible:function(){return element&&element.is(":visible");},current:function(){return this.visible()&&(listItems.filter("."+CLASSES.ACTIVE)[0]||options.selectFirst&&listItems[0]);},show:function(){var offset=$(input).offset();element.css({width:typeof options.width=="string"||options.width>0?options.width:$(input).width(),top:offset.top+input.offsetHeight,left:offset.left}).show();if(options.scroll){list.scrollTop(0);list.css({maxHeight:options.scrollHeight,overflow:'auto'});if($.browser.msie&&typeof document.body.style.maxHeight==="undefined"){var listHeight=0;listItems.each(function(){listHeight+=this.offsetHeight;});var scrollbarsVisible=listHeight>options.scrollHeight;list.css('height',scrollbarsVisible?options.scrollHeight:listHeight);if(!scrollbarsVisible){listItems.width(list.width()-parseInt(listItems.css("padding-left"))-parseInt(listItems.css("padding-right")));}}}},selected:function(){var selected=listItems&&listItems.filter("."+CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);return selected&&selected.length&&$.data(selected[0],"ac_data");},emptyList:function(){list&&list.empty();},unbind:function(){element&&element.remove();}};};$.Autocompleter.Selection=function(field,start,end){if(field.createTextRange){var selRange=field.createTextRange();selRange.collapse(true);selRange.moveStart("character",start);selRange.moveEnd("character",end);selRange.select();}else if(field.setSelectionRange){field.setSelectionRange(start,end);}else{if(field.selectionStart){field.selectionStart=start;field.selectionEnd=end;}}field.focus();};})(jQuery);;;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);;jQuery.fn.highlightFade=function(settings){var o=(settings&&settings.constructor==String)?{start:settings}:settings||{};var d=jQuery.highlightFade.defaults;var i=o['interval']||d['interval'];var a=o['attr']||d['attr'];var ts={'linear':function(s,e,t,c){return parseInt(s+(c/t)*(e-s));},'sinusoidal':function(s,e,t,c){return parseInt(s+Math.sin(((c/t)*90)*(Math.PI/180))*(e-s));},'exponential':function(s,e,t,c){return parseInt(s+(Math.pow(c/t,2))*(e-s));}};var t=(o['iterator']&&o['iterator'].constructor==Function)?o['iterator']:ts[o['iterator']]||ts[d['iterator']]||ts['linear'];if(d['iterator']&&d['iterator'].constructor==Function)t=d['iterator'];return this.each(function(){if(!this.highlighting)this.highlighting={};var e=(this.highlighting[a])?this.highlighting[a].end:jQuery.highlightFade.getBaseValue(this,a)||[255,255,255];var c=jQuery.highlightFade.getRGB(o['start']||o['colour']||o['color']||d['start']||[255,255,128]);var s=jQuery.speed(o['speed']||d['speed']);var r=o['final']||(this.highlighting[a]&&this.highlighting[a].orig)?this.highlighting[a].orig:jQuery.curCSS(this,a);if(o['end']||d['end'])r=jQuery.highlightFade.asRGBString(e=jQuery.highlightFade.getRGB(o['end']||d['end']));if(typeof o['final']!='undefined')r=o['final'];if(this.highlighting[a]&&this.highlighting[a].timer)window.clearInterval(this.highlighting[a].timer);this.highlighting[a]={steps:((s.duration)/i),interval:i,currentStep:0,start:c,end:e,orig:r,attr:a};jQuery.highlightFade(this,a,o['complete'],t);});};jQuery.highlightFade=function(e,a,o,t){e.highlighting[a].timer=window.setInterval(function(){var newR=t(e.highlighting[a].start[0],e.highlighting[a].end[0],e.highlighting[a].steps,e.highlighting[a].currentStep);var newG=t(e.highlighting[a].start[1],e.highlighting[a].end[1],e.highlighting[a].steps,e.highlighting[a].currentStep);var newB=t(e.highlighting[a].start[2],e.highlighting[a].end[2],e.highlighting[a].steps,e.highlighting[a].currentStep);jQuery(e).css(a,jQuery.highlightFade.asRGBString([newR,newG,newB]));if(e.highlighting[a].currentStep++>=e.highlighting[a].steps){jQuery(e).css(a,e.highlighting[a].orig||'');window.clearInterval(e.highlighting[a].timer);e.highlighting[a]=null;if(o&&o.constructor==Function)o.call(e);}},e.highlighting[a].interval);};jQuery.highlightFade.defaults={start:[255,255,128],interval:50,speed:400,attr:'backgroundColor'};jQuery.highlightFade.getRGB=function(c,d){var result;if(c&&c.constructor==Array&&c.length==3)return c;if(result=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c))
return[parseInt(result[1]),parseInt(result[2]),parseInt(result[3])];else if(result=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))
return[parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55];else if(result=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c))
return[parseInt("0x"+result[1]),parseInt("0x"+result[2]),parseInt("0x"+result[3])];else if(result=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c))
return[parseInt("0x"+result[1]+result[1]),parseInt("0x"+result[2]+result[2]),parseInt("0x"+result[3]+result[3])];else
return jQuery.highlightFade.checkColorName(c)||d||null;};jQuery.highlightFade.asRGBString=function(a){return"rgb("+a.join(",")+")";};jQuery.highlightFade.getBaseValue=function(e,a,b){var s,t;b=b||false;t=a=a||jQuery.highlightFade.defaults['attr'];do{s=jQuery(e).css(t||'backgroundColor');if((s!=''&&s!='transparent')||(e.tagName.toLowerCase()=="body")||(!b&&e.highlighting&&e.highlighting[a]&&e.highlighting[a].end))break;t=false;}while(e=e.parentNode);if(!b&&e.highlighting&&e.highlighting[a]&&e.highlighting[a].end)s=e.highlighting[a].end;if(s==undefined||s==''||s=='transparent')s=[255,255,255];return jQuery.highlightFade.getRGB(s);};jQuery.highlightFade.checkColorName=function(c){if(!c)return null;switch(c.replace(/^\s*|\s*$/g,'').toLowerCase()){case'aqua':return[0,255,255];case'black':return[0,0,0];case'blue':return[0,0,255];case'fuchsia':return[255,0,255];case'gray':return[128,128,128];case'green':return[0,128,0];case'lime':return[0,255,0];case'maroon':return[128,0,0];case'navy':return[0,0,128];case'olive':return[128,128,0];case'purple':return[128,0,128];case'red':return[255,0,0];case'silver':return[192,192,192];case'teal':return[0,128,128];case'white':return[255,255,255];case'yellow':return[255,255,0];}};
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ? 1992, 1994, 1997, 2000, 2004 Adobe Systems Incorporated. All rights reserved.
 * Protected by U.S. Patents D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-Regular
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":184,"face":{"font-family":"myriads","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-17 -270 302 90","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"32","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":76,"k":{"T":15,"V":13,"W":13,"Y":17}},"!":{"d":"54,-69r-25,0r-5,-174r35,0xm41,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,22,-23v13,0,21,10,21,23v0,13,-9,22,-22,22","w":82},"\"":{"d":"18,-249r32,0r-6,86r-20,0xm72,-249r31,0r-6,86r-19,0","w":121,"k":{"T":-6,"J":21,"M":2,"C":1,"G":1,"O":1,"Q":1,"V":-6,"W":-6,"Y":-1,"A":22,"f":-9,"g":4,"c":3,"d":3,"e":3,"o":3,"q":3,"t":-9,"v":-8,"w":-8,"y":-8,",":41,".":41}},"#":{"d":"68,-92r37,0r7,-52r-37,0xm55,0r-21,0r9,-71r-30,0r0,-21r33,0r7,-52r-31,0r0,-21r34,0r10,-69r21,0r-10,69r38,0r9,-69r21,0r-9,69r30,0r0,21r-33,0r-6,52r31,0r0,21r-35,0r-9,71r-21,0r9,-71r-38,0","w":178},"$":{"d":"101,31r-23,0r0,-36v-21,0,-41,-7,-54,-16r8,-24v25,20,97,24,95,-20v0,-20,-14,-32,-41,-43v-37,-14,-59,-32,-59,-63v0,-30,21,-53,54,-58r0,-36r22,0r0,35v21,1,36,7,47,13r-9,24v-8,-4,-22,-13,-45,-13v-28,0,-38,16,-38,31v0,18,12,31,44,41v72,23,76,113,-1,127r0,38"},"%":{"d":"68,-238v32,0,53,26,53,70v0,49,-25,73,-55,73v-30,0,-55,-23,-55,-70v0,-47,25,-73,57,-73xm66,-219v-19,0,-30,24,-30,53v0,30,10,52,30,52v21,0,30,-22,30,-53v0,-29,-8,-52,-30,-52xm83,4r-20,0r138,-242r20,0xm220,-141v32,0,54,25,54,70v0,49,-26,74,-56,74v-30,0,-55,-24,-55,-71v0,-47,25,-73,57,-73xm219,-122v-19,0,-31,23,-31,53v0,30,11,52,31,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52","w":285},"&":{"d":"217,0r-38,0r-22,-23v-44,49,-146,26,-146,-41v0,-34,22,-55,48,-72v-36,-40,-23,-109,41,-111v30,0,54,20,54,52v0,28,-20,43,-54,66r59,67v11,-17,19,-40,24,-71r29,0v-6,38,-17,69,-35,90xm41,-69v0,53,74,63,100,27r-68,-76v-13,9,-32,23,-32,49xm98,-225v-42,2,-35,59,-12,79v24,-14,40,-27,40,-48v0,-15,-8,-31,-28,-31","w":217},"(":{"d":"70,-250r25,0v-26,36,-45,82,-45,148v0,64,20,110,45,146r-25,0v-23,-30,-47,-77,-47,-147v0,-71,24,-117,47,-147","w":102,"k":{"T":-17,"J":-6,"C":4,"G":4,"O":4,"Q":4,"V":-18,"W":-18,"X":-4,"Y":-15,"A":4,"j":-20}},")":{"d":"32,44r-25,0v57,-62,59,-232,0,-294r25,0v23,30,47,76,47,147v0,71,-24,117,-47,147","w":102},"*":{"d":"97,-247r21,13r-34,45r55,-7r0,25v-18,-1,-39,-7,-55,-6r35,43r-23,13v-8,-16,-13,-35,-23,-50r-23,50r-20,-13v11,-16,25,-28,34,-45r-53,8r0,-25v17,1,38,7,53,6r-34,-44r22,-13v8,16,13,36,23,51","w":149},"+":{"d":"96,-192r23,0r0,85r81,0r0,22r-81,0r0,85r-23,0r0,-85r-82,0r0,-22r82,0r0,-85","w":214},",":{"d":"28,42r-22,3v8,-22,17,-61,21,-87r36,-3v-9,31,-25,70,-35,87","w":74,"k":{"\"":37,"'":37}},"-":{"d":"11,-109r89,0r0,23r-89,0r0,-23","w":110,"k":{"T":18,"J":7,"C":-5,"G":-5,"O":-5,"Q":-5,"V":4,"W":4,"X":8,"Y":18,"A":1,"g":-5,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"v":2,"w":2,"y":2}},".":{"d":"40,4v-12,0,-21,-10,-21,-23v0,-13,8,-22,21,-22v13,0,22,9,22,22v0,13,-9,23,-22,23","w":74,"k":{"\"":37,"'":37}},"\/":{"d":"24,14r-24,0r100,-261r25,0","w":123},"0":{"d":"95,-238v49,0,77,43,77,118v0,80,-30,124,-81,124v-46,0,-78,-43,-78,-120v0,-79,34,-122,82,-122xm93,-213v-27,0,-48,33,-48,97v0,61,19,95,48,95v32,0,47,-37,47,-97v0,-58,-14,-95,-47,-95"},"1":{"d":"85,0r-1,-204r-40,21r-7,-24v25,-10,40,-31,79,-27r0,234r-31,0"},"2":{"d":"166,0r-150,0v-4,-27,13,-32,25,-44v58,-58,87,-87,87,-122v0,-24,-11,-46,-46,-46v-21,0,-39,11,-50,20r-10,-22v16,-13,39,-24,66,-24v50,0,72,35,72,68v0,47,-56,99,-99,144r105,0r0,26"},"3":{"d":"15,-12r9,-24v9,5,30,14,52,14v40,0,53,-25,53,-45v-1,-39,-38,-50,-79,-47r0,-24v35,2,66,-5,70,-39v5,-40,-68,-42,-88,-20r-8,-23v13,-9,36,-18,61,-18v82,0,87,90,24,111v27,8,52,26,52,61v0,37,-29,70,-85,70v-26,0,-49,-8,-61,-16"},"4":{"d":"144,0r-30,0r0,-64r-109,0r0,-21r105,-149r34,0r0,145r33,0r0,25r-33,0r0,64xm114,-89r0,-114v-22,44,-50,75,-77,114r77,0"},"5":{"d":"58,-147v56,-6,99,17,103,71v5,69,-93,99,-146,66r8,-25v31,22,110,16,106,-37v7,-41,-52,-59,-100,-50r15,-112r112,0r0,27r-89,0"},"6":{"d":"150,-238r0,26v-62,-1,-101,39,-105,85v34,-49,128,-27,128,48v0,43,-29,83,-78,83v-50,0,-83,-39,-83,-100v0,-89,51,-139,138,-142xm141,-77v0,-66,-97,-70,-97,-11v0,39,18,67,51,67v27,0,46,-23,46,-56"},"7":{"d":"21,-234r147,0r0,21r-102,213r-33,0r102,-208r-114,0r0,-26"},"8":{"d":"60,-122v-66,-28,-39,-118,35,-116v77,2,93,84,29,112v27,14,47,33,47,62v0,41,-34,68,-79,68v-91,0,-104,-102,-32,-126xm93,-19v28,0,46,-18,46,-42v0,-28,-19,-42,-51,-51v-55,12,-58,91,5,93xm93,-215v-26,0,-41,17,-41,37v0,23,18,36,45,43v42,-9,52,-78,-4,-80"},"9":{"d":"35,4r0,-26v59,3,99,-34,104,-86v-36,49,-124,20,-124,-47v0,-44,32,-83,80,-83v95,0,90,167,37,208v-27,21,-56,34,-97,34xm46,-157v0,60,94,67,94,14v0,-40,-15,-71,-48,-71v-27,0,-46,24,-46,57"},":":{"d":"40,-123v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22xm40,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":74},";":{"d":"28,42r-22,2v8,-22,18,-59,22,-86r35,-4v-9,31,-25,71,-35,88xm42,-123v-12,0,-20,-9,-20,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-9,22,-22,22","w":74},"<":{"d":"24,-86r0,-19r167,-87r0,25r-141,72r141,70r0,25","w":214},"=":{"d":"200,-121r-186,0r0,-22r186,0r0,22xm200,-51r-186,0r0,-21r186,0r0,21","w":214},">":{"d":"191,-106r0,20r-167,86r0,-25r142,-71r-142,-71r0,-25","w":214},"?":{"d":"79,-69r-28,0v-17,-43,45,-87,47,-121v2,-34,-50,-39,-71,-20r-9,-23v36,-29,121,-9,112,39v3,44,-64,75,-51,125xm64,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":146},"@":{"d":"117,-43v36,0,47,-52,52,-89v-40,-13,-76,21,-75,62v0,16,7,27,23,27xm183,8r6,15v-78,40,-174,-3,-174,-98v0,-74,52,-138,132,-138v63,0,104,44,104,104v0,54,-30,86,-63,86v-17,0,-25,-15,-29,-32v-20,43,-87,45,-89,-14v-2,-58,63,-103,124,-78r-13,66v-5,27,-1,40,11,40v18,1,39,-25,39,-66v0,-53,-31,-90,-87,-90v-59,0,-108,47,-108,120v0,82,81,120,147,85","w":265},"A":{"d":"153,-76r-86,0r-26,76r-32,0r83,-243r37,0r83,243r-33,0xm73,-101r74,0r-25,-70v-6,-15,-6,-32,-13,-44v-9,39,-24,77,-36,114","w":220,"k":{"T":28,"J":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"U":10,"V":19,"W":19,"X":5,"Y":28,"a":-1,"f":3,"g":4,"b":1,"h":1,"k":1,"l":1,"j":1,"i":1,"m":1,"n":1,"p":1,"r":1,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"t":4,"u":4,"v":8,"w":8,"y":8,"z":-5,"-":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"B":{"d":"180,-69v0,70,-85,76,-153,68r0,-238v57,-10,144,-11,144,55v0,25,-18,43,-41,54v23,5,50,25,50,61xm59,-218r0,78v42,4,80,-8,80,-41v0,-38,-46,-43,-80,-37xm59,-116r0,92v40,6,89,-1,88,-45v0,-42,-42,-50,-88,-47","w":195,"k":{"T":3,"V":-1,"W":-1,"Y":5,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":-1,"w":-1,"y":-1,"-":-2,",":5,".":5}},"C":{"d":"190,-33r7,25v-11,6,-35,12,-65,12v-68,0,-119,-43,-119,-123v0,-97,99,-152,184,-117r-8,26v-67,-29,-143,7,-143,90v0,81,75,116,144,87","w":208,"k":{"T":-10,"J":-1,"C":8,"G":8,"O":8,"Q":8,"V":-4,"W":-4,"Y":-1,"A":-1,"a":3,"i":1,"m":1,"n":1,"p":1,"r":1,"c":4,"d":4,"e":4,"o":4,"q":4,"u":4,"v":7,"w":7,"y":7,"z":-1,")":-6,"]":-6,"}":-6}},"D":{"d":"227,-127v0,107,-90,142,-200,126r0,-238v103,-18,200,8,200,112xm59,-216r0,192v81,9,135,-25,135,-102v0,-69,-60,-107,-135,-90","w":239,"k":{"T":9,"X":10,"Y":10,"A":5,"f":-6,"g":-2,"j":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-6,"u":-1,"v":-5,"w":-5,"y":-5,"z":1,"x":2,"-":-5,")":3,"]":3,"}":3,",":12,".":12}},"E":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0","w":177,"k":{"T":-6,"J":-6,"V":-3,"W":-3,"Y":-1,"g":2,"c":1,"d":1,"e":1,"o":1,"q":1,"t":1,"u":3,"v":3,"w":3,"y":3,"z":-1,",":1,".":1}},"F":{"d":"27,0r0,-243r131,0r0,27r-99,0r0,80r91,0r0,26r-91,0r0,110r-32,0","w":175,"k":{"J":31,"M":6,"A":28,"a":16,"g":6,"b":6,"h":6,"k":6,"l":6,"i":9,"m":9,"n":9,"p":9,"r":9,"c":11,"d":11,"e":11,"o":11,"q":11,"u":13,"v":8,"w":8,"y":8,":":5,";":5,",":35,".":35}},"G":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14","w":232,"k":{"a":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2}},"H":{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243","w":234,"k":{"Y":3,"f":-4,"b":-4,"h":-4,"k":-4,"l":-4,"j":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-6,"v":-3,"w":-3,"y":-3,"z":-4,"x":-2}},"I":{"d":"27,-243r32,0r0,243r-32,0r0,-243","w":86,"k":{"Y":3,"f":-4,"b":-4,"h":-4,"k":-4,"l":-4,"j":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-6,"v":-3,"w":-3,"y":-3,"z":-4,"x":-2}},"J":{"d":"77,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v39,10,71,5,71,-56","w":133,"k":{"v":-4,"w":-4,"y":-4,")":-15,"]":-15,"}":-15,",":4,".":4}},"K":{"d":"27,0r0,-243r32,0r1,117v29,-41,62,-78,93,-117r39,0r-88,103r95,140r-37,0r-80,-119r-23,26r0,93r-32,0","w":195,"k":{"T":-8,"J":-14,"C":6,"G":6,"O":6,"Q":6,"V":-5,"W":-5,"Y":3,"A":-4,"Z":-7,"a":-6,"g":2,"b":-4,"h":-4,"k":-4,"l":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"u":2,"v":6,"w":6,"y":6,":":-8,";":-8,"-":6,")":-8,"]":-8,"}":-8,",":-6,".":-6}},"L":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0","w":169,"k":{"T":32,"J":-4,"C":14,"G":14,"O":14,"Q":14,"U":13,"V":21,"W":21,"Y":30,"c":5,"d":5,"e":5,"o":5,"q":5,"t":1,"u":5,"v":10,"w":10,"y":10,"-":15,"\"":35,"'":35}},"M":{"d":"238,0r-11,-211v-9,28,-18,59,-30,92r-43,118r-24,0r-40,-116v-13,-34,-18,-67,-28,-94r-11,211r-30,0r17,-243r40,0r66,199v17,-63,47,-137,69,-199r40,0r16,243r-31,0","w":289,"k":{"T":4,"A":4,"a":-2,"j":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"u":-1,"v":-3,"w":-3,"y":-3,"-":-2}},"N":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,32,56,45,79v-6,-60,-3,-135,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81","w":236,"k":{"Y":3,"f":-4,"b":-4,"h":-4,"k":-4,"l":-4,"j":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-6,"v":-3,"w":-3,"y":-3,"z":-4,"x":-2}},"O":{"d":"125,-247v67,0,110,51,110,123v0,83,-51,128,-113,128v-64,0,-109,-51,-109,-124v0,-77,47,-127,112,-127xm124,-221v-52,0,-78,48,-78,101v0,52,28,98,78,98v50,0,78,-45,78,-100v0,-49,-26,-99,-78,-99","w":248,"k":{"T":9,"X":10,"Y":10,"A":5,"f":-6,"g":-2,"j":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-6,"u":-1,"v":-5,"w":-5,"y":-5,"z":1,"x":2,"-":-5,")":3,"]":3,"}":3,",":12,".":12}},"P":{"d":"177,-174v0,61,-55,87,-118,77r0,97r-32,0r0,-240v64,-11,150,-6,150,66xm59,-217r0,94v42,11,86,-7,86,-49v0,-43,-48,-54,-86,-45","w":191,"k":{"J":27,"M":4,"X":5,"Y":3,"A":30,"Z":11,"a":9,"g":9,"b":2,"h":2,"k":2,"l":2,"i":6,"m":6,"n":6,"p":6,"r":6,"c":9,"d":9,"e":9,"o":9,"q":9,"s":8,"t":-2,"u":5,"v":-1,"w":-1,"y":-1,":":4,";":4,"-":6,",":50,".":50}},"Q":{"d":"228,36r-108,-32v-58,-2,-107,-45,-107,-123v0,-78,47,-128,113,-128v66,0,109,51,109,123v0,65,-32,99,-69,118v24,6,50,11,71,15xm124,-22v50,0,78,-45,78,-100v0,-49,-26,-99,-77,-99v-53,0,-79,48,-79,101v0,52,28,98,78,98","w":248,"k":{"T":9,"X":10,"Y":10,"A":5,"f":-6,"g":-2,"j":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-6,"u":-1,"v":-5,"w":-5,"y":-5,"z":1,"x":2,"-":-5,")":3,"]":3,"}":3,",":12,".":12}},"R":{"d":"27,-239v64,-11,150,-9,150,61v0,33,-23,51,-46,62v37,3,43,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-8,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42","w":193,"k":{"T":-3,"C":-1,"G":-1,"O":-1,"Q":-1,"V":-6,"W":-6,"X":-2,"Y":4,"A":-2,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-7,"v":-5,"w":-5,"y":-5}},"S":{"d":"15,-12r8,-26v29,24,107,22,107,-26v0,-22,-12,-40,-46,-48v-88,-22,-82,-136,15,-135v24,0,43,6,53,12r-9,26v-8,-5,-23,-12,-45,-12v-33,0,-46,20,-46,37v0,23,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16","w":177,"k":{"a":-1,"j":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"t":1,"v":3,"w":3,"y":3,"-":-2}},"T":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0","w":178,"k":{"i":16,"T":-14,"J":15,"C":10,"G":10,"O":10,"Q":10,"V":-14,"W":-14,"X":-8,"Y":-10,"A":27,"S":2,"a":23,"g":23,"b":3,"h":3,"k":3,"l":3,"m":16,"n":16,"p":16,"r":16,"c":26,"d":26,"e":26,"o":26,"q":26,"s":19,"u":16,"v":14,"w":14,"y":14,"z":18,"x":12,":":9,";":9,"-":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,",":22,".":22}},"U":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143","w":232,"k":{"A":12,"a":1,"f":-3,"s":2,"t":-1,"v":1,"w":1,"y":1,"z":2,"x":3,",":10,".":10}},"V":{"d":"115,0r-34,0r-80,-243r34,0r65,211v17,-69,46,-144,68,-211r34,0","w":200,"k":{"T":-12,"J":8,"V":-6,"W":-6,"A":21,"a":12,"g":3,"b":2,"h":2,"k":2,"l":2,"i":6,"m":6,"n":6,"p":6,"r":6,"c":12,"d":12,"e":12,"o":12,"q":12,"s":9,"t":-3,"u":6,"v":1,"w":1,"y":1,"z":1,":":6,";":6,"-":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,",":20,".":20}},"W":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123v8,28,10,60,17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-58,-17,-80v-12,65,-37,141,-53,206","w":304,"k":{"T":-12,"J":8,"V":-6,"W":-6,"A":21,"a":12,"g":3,"b":2,"h":2,"k":2,"l":2,"i":6,"m":6,"n":6,"p":6,"r":6,"c":12,"d":12,"e":12,"o":12,"q":12,"s":9,"t":-3,"u":6,"v":1,"w":1,"y":1,"z":1,":":6,";":6,"-":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,",":20,".":20}},"X":{"d":"197,0r-37,0r-60,-102r-55,102r-36,0r74,-123r-71,-120r36,0r56,98r54,-98r37,0r-74,118","w":205,"k":{"T":-3,"J":-1,"C":10,"G":10,"O":10,"Q":10,"V":-3,"W":-3,"X":5,"Y":-2,"A":3,"a":2,"c":4,"d":4,"e":4,"o":4,"q":4,"u":3,"v":7,"w":7,"y":7,"-":8}},"Y":{"d":"113,0r-32,0r0,-103r-77,-140r36,0r59,117v17,-38,41,-79,60,-117r35,0r-81,140r0,103","w":194,"k":{"T":-12,"J":19,"M":4,"C":13,"G":13,"O":13,"Q":13,"V":-10,"W":-10,"X":1,"Y":-1,"A":29,"S":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"a":25,"g":14,"b":3,"h":3,"k":3,"l":3,"i":5,"m":5,"n":5,"p":5,"r":5,"c":27,"d":27,"e":27,"o":27,"q":27,"s":19,"t":7,"u":19,"v":10,"w":10,"y":10,"z":9,"x":9,":":12,";":12,"-":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,",":34,".":34}},"Z":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0","w":199,"k":{"J":-3,"C":8,"G":8,"O":8,"Q":8,"X":2,"c":4,"d":4,"e":4,"o":4,"q":4,"u":3,"v":3,"w":3,"y":3,"-":10}},"[":{"d":"95,40r-66,0r0,-287r66,0r0,20r-41,0r0,248r41,0r0,19","w":102,"k":{"T":-17,"J":-6,"C":4,"G":4,"O":4,"Q":4,"V":-18,"W":-18,"X":-4,"Y":-15,"A":4,"j":-20}},"\\":{"d":"123,14r-24,0r-98,-261r24,0","w":122},"]":{"d":"7,-247r66,0r0,287r-66,0r0,-19r41,0r0,-248r-41,0r0,-20","w":102},"^":{"d":"193,-68r-25,0r-61,-140r-60,140r-25,0r74,-166r23,0","w":214},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"82,-178v95,3,58,96,69,178r-28,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-41,-39,-43v-17,0,-34,5,-46,13r-7,-22v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31","w":173},"b":{"d":"25,0r1,-256r32,0r0,110v36,-60,134,-30,134,57v0,93,-96,123,-138,61r-2,28r-27,0xm107,-153v-35,-1,-53,36,-49,83v3,31,23,48,49,49v33,0,52,-27,52,-67v0,-35,-18,-65,-52,-65","w":204,"k":{"T":14,"v":3,"w":3,"y":3,"z":3,"x":5,"-":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"c":{"d":"145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,73,-113,137,-83r-7,24v-42,-24,-106,5,-98,57v-4,57,55,78,99,57","w":161,"k":{"T":4,"f":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-5,"v":-6,"w":-6,"y":-6,"-":-2,",":4,".":4}},"d":{"d":"145,-256r31,0r2,256r-28,0v-2,-9,0,-22,-3,-30v-32,62,-133,31,-133,-55v0,-86,90,-120,131,-67r0,-104xm97,-22v35,1,48,-34,48,-81v0,-31,-19,-50,-47,-50v-33,0,-52,29,-52,67v0,35,17,64,51,64","w":203,"k":{",":4,".":4}},"e":{"d":"166,-81r-122,0v-2,64,66,69,108,51r6,23v-11,5,-31,11,-59,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-51,-44,-51v-32,0,-46,29,-49,51","w":180,"k":{"T":12,"x":1,"-":-10,",":4,".":4}},"f":{"d":"30,-174v-6,-58,35,-101,89,-81r-4,25v-36,-15,-60,13,-54,56r42,0r0,24r-42,0r0,150r-31,0r0,-150r-25,0r0,-24r25,0","w":105,"k":{"g":4,"c":5,"d":5,"e":5,"o":5,"q":5,"s":3,"t":-4,":":-12,";":-12,")":-37,"]":-37,"}":-37,"\"":-20,"'":-20,",":12,".":12}},"g":{"d":"175,-26v0,95,-78,120,-146,87r8,-25v44,31,124,12,106,-66v-9,16,-28,29,-55,29v-43,0,-74,-37,-74,-85v0,-90,99,-117,134,-62r1,-26r28,0v-4,41,-2,102,-2,148xm97,-25v37,1,51,-35,47,-80v-3,-29,-18,-47,-46,-48v-30,0,-52,26,-52,66v0,34,17,62,51,62","w":201,"k":{"T":12,"f":-1,"i":2,"m":2,"n":2,"p":2,"r":2,",":5,".":5}},"h":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r0,-256r32,0r1,109v29,-45,116,-51,116,43r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"t":1,"v":5,"w":5,"y":5,"\"":3,"'":3}},"i":{"d":"58,0r-32,0r0,-174r32,0r0,174xm42,-243v12,0,20,9,20,20v0,11,-8,19,-21,19v-12,0,-19,-8,-19,-19v0,-11,8,-20,20,-20","w":84},"j":{"d":"-17,51v42,-8,47,-15,47,-79r0,-146r32,0v-8,98,36,248,-75,250xm46,-243v12,0,20,9,20,20v0,10,-8,19,-21,19v-12,0,-19,-9,-19,-19v0,-11,8,-20,20,-20","w":87,"k":{",":4,".":4}},"k":{"d":"58,-256r0,162v20,-28,45,-53,67,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-256r32,0","w":168,"k":{"T":7,"a":-6,"b":-6,"h":-6,"k":-6,"l":-6,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"u":-1,"v":-5,"w":-5,"y":-5,":":-4,";":-4,"-":4,",":-5,".":-5}},"l":{"d":"26,0r0,-256r32,0r0,256r-32,0","w":84,"k":{",":4,".":4}},"m":{"d":"99,-152v-59,0,-39,92,-42,152r-31,0r-1,-174r28,0v1,9,-1,21,2,28v15,-39,91,-43,105,3v28,-50,114,-57,115,41r0,102r-31,0v-4,-55,18,-152,-37,-152v-59,0,-37,93,-41,152r-31,0v-5,-56,20,-152,-36,-152","w":300,"k":{"T":18,"t":1,"v":5,"w":5,"y":5,"\"":3,"'":3}},"n":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-45,119,-55,120,41r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"t":1,"v":5,"w":5,"y":5,"\"":3,"'":3}},"o":{"d":"100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"v":3,"w":3,"y":3,"z":3,"x":5,"-":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"p":{"d":"26,71r-1,-245r28,0r2,30v37,-62,137,-33,137,54v0,91,-90,121,-134,67r0,94r-32,0xm108,-153v-36,0,-50,35,-50,82v0,32,23,50,49,50v33,0,52,-27,52,-67v0,-35,-18,-65,-51,-65","w":204,"k":{"T":14,"v":3,"w":3,"y":3,"z":3,"x":5,"-":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"q":{"d":"145,71r-1,-98v-34,58,-130,28,-130,-57v0,-96,94,-119,133,-64r1,-26r30,0r-2,245r-31,0xm97,-21v37,0,48,-36,48,-83v0,-30,-19,-49,-47,-49v-33,0,-52,28,-52,67v0,35,16,65,51,65","w":202,"k":{"T":11,",":3,".":3}},"r":{"d":"112,-147v-68,-12,-53,82,-54,147r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,30,-42,57,-37r0,30","w":117,"k":{"T":5,"a":2,"f":-11,"g":3,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-9,"v":-9,"w":-9,"y":-9,"z":-3,"x":-6,":":-3,";":-3,"-":2,",":19,".":19}},"s":{"d":"14,-8r8,-24v18,15,76,19,76,-14v0,-15,-8,-24,-32,-31v-69,-20,-59,-99,13,-101v18,0,34,5,43,11r-8,23v-13,-12,-64,-17,-64,13v0,14,8,23,32,30v67,18,58,108,-19,105v-19,0,-37,-5,-49,-12","w":142,"k":{"T":9,",":4,".":4}},"t":{"d":"108,0v-40,13,-75,-6,-75,-55r0,-95r-27,0r0,-24r27,0r0,-33r31,-9r0,42r46,0r0,24r-46,0r0,94v-3,31,19,38,43,32","w":119,"k":{"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"v":-3,"w":-3,"y":-3,"-":2,",":1,".":1}},"u":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152","w":198,"k":{"T":11,",":3,".":3}},"v":{"d":"5,-174r34,0r49,142r48,-142r34,0r-69,174r-30,0","w":173,"k":{"T":11,"a":1,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"v":-4,"w":-4,"y":-4,":":-9,";":-9,"-":1,",":14,".":14}},"w":{"d":"6,-174r33,0r37,144v11,-49,29,-97,44,-144r27,0r43,144v8,-48,26,-98,38,-144r32,0r-57,174r-28,0r-43,-140v-11,50,-29,93,-44,140r-29,0","w":264,"k":{"T":11,"a":1,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"v":-4,"w":-4,"y":-4,":":-9,";":-9,"-":1,",":14,".":14}},"x":{"d":"6,-174r35,0r44,65r41,-65r35,0r-59,84r60,90r-35,0r-46,-69v-13,24,-29,46,-43,69r-35,0r62,-89","w":166,"k":{"T":8,"c":5,"d":5,"e":5,"o":5,"q":5,"s":2,"t":-5,"v":-5,"w":-5,"y":-5,"-":2}},"y":{"d":"13,53v25,-9,45,-29,57,-58r-67,-169r35,0r50,138r46,-138r33,0v-41,86,-59,232,-146,253","w":169,"k":{"T":11,"a":1,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"v":-4,"w":-4,"y":-4,":":-9,";":-9,"-":1,",":14,".":14}},"z":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r132,0r0,20r-100,129r102,0r0,25r-142,0","w":154,"k":{"T":7,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-9,"w":-9,"y":-9}},"{":{"d":"33,-9v-1,-33,28,-83,-23,-86r0,-18v51,-3,22,-53,23,-87v1,-35,25,-49,60,-47r0,20v-74,-7,6,111,-56,123v61,7,-19,127,56,125r0,19v-35,1,-59,-10,-60,-49","w":102,"k":{"T":-17,"J":-6,"C":4,"G":4,"O":4,"Q":4,"V":-18,"W":-18,"X":-4,"Y":-15,"A":4,"j":-20}},"|":{"d":"31,-270r24,0r0,360r-24,0r0,-360","w":86},"}":{"d":"69,-200v1,35,-28,84,23,87r0,18v-50,3,-22,52,-23,86v-1,39,-25,51,-60,49r0,-19v72,8,-3,-112,56,-125v-60,-7,19,-126,-56,-123r0,-20v35,-1,59,12,60,47","w":102},"~":{"d":"197,-129v-1,98,-90,33,-137,23v-13,0,-21,8,-21,30r-21,0v-1,-36,17,-54,42,-54v24,0,72,32,96,31v13,0,20,-10,20,-30r21,0","w":214},"'":{"d":"18,-249r32,0r-6,86r-20,0","w":67,"k":{"T":-6,"J":21,"M":2,"C":1,"G":1,"O":1,"Q":1,"V":-6,"W":-6,"Y":-1,"A":22,"f":-9,"g":4,"c":3,"d":3,"e":3,"o":3,"q":3,"t":-9,"v":-8,"w":-8,"y":-8,",":41,".":41}},"`":{"d":"8,-249r34,0r32,51r-22,0","w":108},"\u00a0":{"w":76,"k":{"T":15,"V":13,"W":13,"Y":17}}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ? 1992, 1994, 1997, 2000, 2004 Adobe Systems Incorporated. All rights reserved.
 * Protected by U.S. Patents D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-Bold
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":199,"face":{"font-family":"myriads","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-14 -270 315 90","underline-thickness":"18","underline-position":"-18","stemh":"40","stemv":"55","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":72,"k":{"T":14,"V":13,"W":13,"Y":14}},"!":{"d":"69,-80r-41,0r-8,-163r57,0xm48,4v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,14,32,33v0,19,-13,33,-32,33","w":96},"\"":{"d":"13,-249r48,0r-8,97r-32,0xm82,-249r48,0r-8,97r-32,0","w":142,"k":{"T":-3,"J":21,"C":3,"G":3,"O":3,"Q":3,"V":-3,"W":-3,"X":-1,"Y":-3,"A":17,"f":-9,"g":7,"c":5,"d":5,"e":5,"o":5,"q":5,"t":-8,"v":-2,"w":-2,"y":-2,",":45,".":45}},"#":{"d":"80,-98r33,0r6,-40r-33,0xm66,0r-33,0r10,-64r-30,0r0,-34r35,0r6,-40r-30,0r0,-33r35,0r9,-63r32,0r-9,63r33,0r9,-63r32,0r-9,63r29,0r0,33r-34,0r-6,40r30,0r0,34r-35,0r-9,64r-33,0r10,-64r-33,0","w":198},"$":{"d":"117,31r-36,0r0,-34v-24,-1,-47,-7,-61,-15r11,-42v20,14,94,28,94,-7v0,-14,-10,-25,-38,-31v-80,-17,-88,-116,-4,-130r0,-34r35,0r0,31v24,1,40,6,53,12r-11,41v-8,-11,-83,-24,-83,8v0,12,12,21,44,30v83,23,77,120,-4,134r0,37"},"%":{"d":"76,-238v40,0,62,30,62,70v0,49,-31,74,-65,74v-36,0,-63,-27,-63,-71v0,-42,26,-73,66,-73xm74,-208v-16,0,-24,18,-24,42v0,24,9,43,25,43v15,0,23,-16,23,-43v0,-24,-7,-42,-24,-42xm105,4r-29,0r135,-242r29,0xm244,-141v40,0,63,30,63,70v0,49,-31,74,-65,74v-35,0,-63,-26,-63,-70v0,-42,25,-74,65,-74xm243,-111v-16,0,-24,19,-24,42v0,24,9,42,24,42v15,0,23,-16,23,-42v0,-24,-6,-42,-23,-42","w":316},"&":{"d":"177,-190v0,25,-18,45,-48,64v14,16,29,33,41,45v10,-15,17,-37,20,-59r49,0v-6,37,-18,68,-40,92r43,48r-64,0v-5,-5,-10,-11,-16,-17v-16,12,-37,21,-66,21v-105,0,-105,-107,-39,-140v-35,-42,-17,-111,55,-111v37,0,65,22,65,57xm63,-74v0,36,53,50,74,26v-15,-15,-35,-38,-55,-60v-10,8,-19,18,-19,34xm131,-189v0,-12,-7,-26,-22,-24v-30,4,-25,43,-4,60v18,-12,26,-22,26,-36","w":244},"(":{"d":"63,-249r38,0v-47,59,-48,232,0,291r-38,0v-19,-28,-41,-76,-41,-145v0,-70,22,-118,41,-146","w":113,"k":{"T":-8,"J":-4,"C":8,"G":8,"O":8,"Q":8,"V":-10,"W":-10,"X":-2,"Y":-11,"A":7,"j":-18}},")":{"d":"51,42r-38,0v46,-58,47,-233,0,-291r38,0v19,28,41,75,41,146v0,70,-22,117,-41,145","w":113},"*":{"d":"103,-247r31,18r-39,47r58,-11r0,36v-19,-2,-41,-9,-58,-9r39,45r-32,18r-21,-55r-21,55r-31,-18v11,-15,30,-31,38,-46r-56,10r0,-36v18,2,40,10,56,10r-38,-45r32,-19v8,18,12,39,21,56","w":163},"+":{"d":"90,-192r35,0r0,79r75,0r0,33r-75,0r0,80r-35,0r0,-80r-76,0r0,-33r76,0r0,-79","w":214},",":{"d":"37,40r-37,3v12,-32,22,-69,27,-102r55,-4v-12,37,-28,75,-45,103","w":93,"k":{"\"":44,"'":44}},"-":{"d":"11,-113r94,0r0,37r-94,0r0,-37","w":115,"k":{"T":20,"J":2,"C":-4,"G":-4,"O":-4,"Q":-4,"V":9,"W":9,"X":6,"Y":22,"A":2,"g":-1,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6}},".":{"d":"50,4v-18,0,-32,-14,-32,-33v0,-20,13,-34,32,-34v19,0,32,14,32,34v0,19,-12,33,-32,33","w":93,"k":{"\"":44,"'":44}},"\/":{"d":"42,14r-36,0r77,-261r36,0","w":119},"0":{"d":"101,-238v62,0,87,56,87,120v0,72,-30,122,-89,122v-60,0,-87,-55,-87,-121v0,-68,29,-121,89,-121xm100,-197v-20,0,-33,25,-33,80v0,54,12,80,33,80v21,0,33,-27,33,-80v0,-52,-11,-80,-33,-80"},"1":{"d":"85,0r-1,-185r-44,21r-9,-41r62,-29r45,0r0,234r-53,0"},"2":{"d":"181,0r-166,0r0,-33v38,-35,115,-99,107,-127v4,-44,-69,-38,-88,-15r-16,-39v17,-13,46,-24,77,-24v53,0,82,31,82,73v0,49,-50,88,-84,120r88,0r0,45"},"3":{"d":"14,-12r11,-42v19,16,100,25,97,-16v-2,-30,-35,-36,-69,-34r0,-39v29,1,60,0,63,-27v3,-34,-69,-26,-84,-11r-11,-39v14,-9,42,-18,73,-18v87,0,103,90,34,113v28,5,51,27,51,58v0,41,-37,71,-96,71v-30,0,-55,-8,-69,-16"},"4":{"d":"164,0r-52,0r0,-56r-104,0r0,-35r88,-143r68,0r0,137r28,0r0,41r-28,0r0,56xm59,-98v15,3,36,0,53,1r0,-95v-16,33,-34,64,-53,94"},"5":{"d":"76,-153v56,-6,106,20,105,75v0,44,-38,82,-101,82v-28,0,-52,-6,-65,-13r10,-41v26,14,101,21,100,-25v8,-33,-56,-43,-98,-36r15,-123r129,0r0,45r-90,0"},"6":{"d":"165,-237r0,42v-53,-3,-98,25,-97,56v43,-38,122,-14,122,58v0,46,-36,85,-86,85v-113,0,-113,-155,-51,-207v28,-24,65,-36,112,-34xm100,-118v-20,1,-35,12,-35,34v0,25,13,48,38,48v19,0,32,-18,32,-42v0,-22,-12,-40,-35,-40"},"7":{"d":"18,-234r165,0r0,35r-97,199r-58,0r97,-189r-107,0r0,-45"},"8":{"d":"98,4v-99,0,-110,-95,-45,-125v-66,-33,-27,-121,49,-117v88,4,98,79,43,113v75,28,43,129,-47,129xm100,-34v19,0,32,-12,32,-29v0,-21,-15,-33,-36,-39v-38,7,-39,67,4,68xm99,-201v-19,0,-28,13,-28,27v0,16,14,26,33,32v30,-6,35,-59,-5,-59"},"9":{"d":"32,-39v51,4,92,-18,99,-59v-40,37,-120,10,-120,-56v0,-46,37,-84,88,-84v109,0,107,160,48,209v-28,23,-67,35,-115,32r0,-42xm98,-120v20,0,33,-7,33,-29v0,-25,-8,-49,-34,-49v-18,0,-32,17,-32,41v0,20,11,37,33,37"},":":{"d":"50,-112v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,13,32,33v0,19,-12,33,-32,33xm50,4v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,13,32,33v0,19,-12,33,-32,33","w":93},";":{"d":"37,40r-36,3v12,-32,21,-69,26,-102r55,-4v-12,37,-28,75,-45,103xm52,-112v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,13,32,33v0,19,-12,33,-32,33","w":93},"<":{"d":"21,-80r0,-31r173,-81r0,39r-131,58r131,57r0,38","w":214},"=":{"d":"200,-117r-186,0r0,-33r186,0r0,33xm200,-42r-186,0r0,-34r186,0r0,34","w":214},">":{"d":"194,-112r0,33r-173,79r0,-38r133,-58r-133,-57r0,-39","w":214},"?":{"d":"147,-191v1,48,-54,62,-49,112r-48,0v-13,-38,38,-72,41,-103v2,-28,-45,-25,-61,-11r-13,-39v13,-8,34,-15,60,-15v48,0,70,26,70,56xm72,4v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,33,14,33,33v0,19,-13,33,-33,33","w":160},"@":{"d":"129,-52v24,0,33,-44,36,-72v-31,-9,-54,17,-54,49v0,14,6,23,18,23xm190,4r7,20v-82,36,-180,-3,-179,-100v0,-73,54,-137,135,-137v64,0,109,44,109,104v0,53,-30,86,-69,86v-17,0,-29,-9,-31,-28v-22,40,-87,39,-87,-19v0,-60,68,-104,127,-75r-11,67v-4,21,-1,31,9,31v15,1,35,-19,35,-61v0,-47,-30,-83,-86,-83v-55,0,-103,43,-103,112v0,81,77,113,144,83","w":277},"A":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99","w":236,"k":{"T":30,"J":-5,"C":9,"G":9,"O":9,"Q":9,"U":13,"V":21,"W":21,"X":9,"Y":34,"Z":-2,"f":5,"g":5,"b":2,"h":2,"k":2,"l":2,"j":2,"i":2,"m":2,"n":2,"p":2,"r":2,"c":5,"d":5,"e":5,"o":5,"q":5,"s":1,"t":7,"u":5,"v":11,"w":11,"y":11,"x":1,"-":3,")":6,"]":6,"}":6,"\"":17,"'":17}},"B":{"d":"204,-71v0,60,-45,73,-121,74v-27,0,-47,-2,-59,-4r0,-238v61,-8,171,-17,171,56v0,21,-12,42,-39,52v28,7,48,29,48,60xm78,-203r0,56v32,2,65,-5,62,-29v5,-26,-36,-31,-62,-27xm78,-107r0,68v31,4,68,-1,68,-34v0,-30,-33,-36,-68,-34","w":217,"k":{"T":6,"V":4,"W":4,"Y":12,"A":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"v":2,"w":2,"y":2,"a":-1,"-":-4,",":5,".":5}},"C":{"d":"194,-50r8,44v-10,5,-33,10,-62,10v-84,0,-127,-53,-127,-122v0,-106,104,-150,192,-117r-12,43v-54,-23,-123,-3,-123,71v0,67,65,94,124,71","w":214,"k":{"T":-5,"J":-4,"C":11,"G":11,"O":11,"Q":11,"V":-3,"W":-3,"X":-1,"Y":-3,"A":-4,"b":1,"h":1,"k":1,"l":1,"i":1,"m":1,"n":1,"p":1,"r":1,"c":7,"d":7,"e":7,"o":7,"q":7,"u":7,"v":12,"w":12,"y":12,"a":4,"z":-3,")":-3,"]":-3,"}":-3,"\"":-2,"'":-2}},"D":{"d":"238,-127v5,116,-104,141,-214,126r0,-238v20,-3,47,-5,74,-5v91,0,136,34,140,117xm78,-200r0,159v62,7,102,-19,102,-84v0,-59,-44,-85,-102,-75","w":250,"k":{"T":10,"V":3,"W":3,"X":12,"Y":13,"A":6,"f":-4,"g":-1,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"t":-5,"u":-2,"v":-4,"w":-4,"y":-4,"x":4,"z":1,"-":-4,")":7,"]":7,"}":7,",":14,".":14}},"E":{"d":"168,-147r0,44r-89,0r0,58r100,0r0,45r-155,0r0,-243r150,0r0,45r-95,0r0,51r89,0","w":192,"k":{"T":-2,"J":-8,"V":-3,"W":-3,"f":2,"g":3,"b":-1,"h":-1,"k":-1,"l":-1,"j":2,"c":1,"d":1,"e":1,"o":1,"q":1,"s":-1,"t":2,"u":4,"v":4,"w":4,"y":4,"z":-2,",":3,".":3}},"F":{"d":"24,0r0,-243r148,0r0,45r-93,0r0,56r87,0r0,44r-87,0r0,98r-55,0","w":189,"k":{"J":25,"A":24,"M":5,"g":3,"b":5,"h":5,"k":5,"l":5,"i":7,"m":7,"n":7,"p":7,"r":7,"c":9,"d":9,"e":9,"o":9,"q":9,"u":10,"v":7,"w":7,"y":7,"a":14,":":6,";":6,",":32,".":32}},"G":{"d":"145,3v-83,1,-128,-44,-132,-121v-6,-107,115,-149,206,-116r-12,45v-53,-25,-137,-9,-137,68v0,60,47,89,104,76r0,-51r-38,0r0,-43r90,0r0,128v-17,6,-49,14,-81,14","w":245,"k":{"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"u":-1,"v":3,"w":3,"y":3,"a":-3}},"H":{"d":"24,-243r55,0r0,94r90,0r0,-94r55,0r0,243r-55,0r0,-102r-90,0r0,102r-55,0r0,-243","w":248,"k":{"Y":6,"f":-2,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"s":1,"t":-3,"x":1,"z":-1}},"I":{"d":"24,-243r55,0r0,243r-55,0r0,-243","w":102,"k":{"Y":6,"f":-2,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"s":1,"t":-3,"x":1,"z":-1}},"J":{"d":"71,-90r0,-153r55,0r0,154v2,86,-58,104,-126,87r6,-44v34,9,65,7,65,-44","w":147,"k":{"v":-1,"w":-1,"y":-1,"a":2,")":-5,"]":-5,"}":-5,",":3,".":3}},"K":{"d":"24,0r0,-243r54,0r1,108r71,-108r68,0r-80,104r84,139r-64,0r-59,-105r-21,26r0,79r-54,0","w":221,"k":{"T":-2,"J":-10,"C":12,"G":12,"O":12,"Q":12,"Y":5,"Z":-6,"A":-5,"g":5,"c":6,"d":6,"e":6,"o":6,"q":6,"u":7,"v":15,"w":15,"y":15,":":-3,";":-3,"-":8,")":-3,"]":-3,"}":-3,"\"":-1,"'":-1,",":-3,".":-3}},"L":{"d":"24,0r0,-243r55,0r0,197r96,0r0,46r-151,0","w":183,"k":{"T":37,"J":-10,"C":14,"G":14,"O":14,"Q":14,"U":11,"V":23,"W":23,"Y":32,"A":-2,"f":1,"j":1,"c":3,"d":3,"e":3,"o":3,"q":3,"t":2,"u":4,"v":13,"w":13,"y":13,"a":-1,"-":6,"\"":36,"'":36}},"M":{"d":"233,0r-7,-193r-57,189r-43,0r-26,-94v-8,-29,-16,-63,-22,-95r-9,193r-51,0r16,-243r73,0r24,81v10,27,12,63,22,87v13,-58,31,-114,48,-168r72,0r13,243r-53,0","w":304,"k":{"T":5,"A":1,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"a":-1,"-":-1}},"N":{"d":"74,0r-50,0r0,-243r64,0r50,89v15,25,28,58,41,83v-6,-52,-5,-113,-5,-172r51,0r0,243r-58,0r-52,-94v-15,-25,-29,-59,-43,-85","w":248,"k":{"Y":6,"f":-2,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"s":1,"t":-3,"x":1,"z":-1}},"O":{"d":"131,-247v75,0,115,56,115,123v0,80,-48,128,-119,128v-72,0,-114,-55,-114,-124v0,-73,47,-127,118,-127xm130,-203v-37,0,-59,35,-59,82v0,48,22,81,59,81v37,0,58,-35,58,-82v0,-44,-20,-81,-58,-81","w":258,"k":{"T":10,"V":3,"W":3,"X":12,"Y":13,"A":6,"f":-4,"g":-1,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"t":-5,"u":-2,"v":-4,"w":-4,"y":-4,"x":4,"z":1,"-":-4,")":7,"]":7,"}":7,",":14,".":14}},"P":{"d":"198,-169v2,64,-54,89,-120,82r0,87r-54,0r0,-239v17,-3,41,-5,74,-5v62,-1,98,21,100,75xm78,-201r0,72v33,6,68,-8,66,-38v4,-30,-37,-41,-66,-34","w":209,"k":{"J":27,"V":3,"W":3,"X":10,"Y":7,"Z":3,"A":22,"M":5,"g":9,"i":3,"m":3,"n":3,"p":3,"r":3,"c":9,"d":9,"e":9,"o":9,"q":9,"s":8,"t":-4,"u":4,"v":-3,"w":-3,"y":-3,"a":6,":":4,";":4,"-":5,")":1,"]":1,"}":1,",":52,".":52}},"Q":{"d":"231,42v-41,-10,-70,-32,-112,-38v-54,-8,-106,-44,-106,-124v0,-73,45,-127,118,-127v74,0,115,56,115,123v0,57,-28,92,-57,110v18,5,39,9,58,13xm130,-40v37,0,58,-34,58,-82v0,-45,-21,-81,-58,-81v-37,0,-59,36,-59,82v0,46,22,81,59,81","w":258,"k":{"T":10,"V":3,"W":3,"X":12,"Y":13,"A":6,"f":-4,"g":-1,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"t":-5,"u":-2,"v":-4,"w":-4,"y":-4,"x":4,"z":1,"-":-4,")":7,"]":7,"}":7,",":14,".":14}},"R":{"d":"97,-244v61,-1,99,17,101,70v1,32,-24,50,-43,60v35,8,40,92,52,114r-56,0v-4,-7,-10,-27,-17,-57v-8,-38,-21,-39,-56,-38r0,95r-54,0r0,-239v18,-3,43,-5,73,-5xm78,-202r0,67v35,3,65,-6,65,-35v0,-31,-37,-36,-65,-32","w":213,"k":{"J":-2,"C":1,"G":1,"O":1,"Q":1,"U":2,"V":2,"W":2,"X":-3,"Y":7,"A":-3,"b":-3,"h":-3,"k":-3,"l":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-4,"v":-1,"w":-1,"y":-1,"a":-3}},"S":{"d":"14,-12r12,-45v21,16,99,29,99,-11v0,-15,-12,-24,-41,-34v-40,-14,-67,-37,-67,-72v0,-41,35,-72,92,-72v28,0,48,5,62,12r-12,44v-13,-13,-86,-20,-86,12v0,15,12,24,45,34v96,30,81,150,-35,148v-28,0,-55,-8,-69,-16","w":194,"k":{"b":1,"h":1,"k":1,"l":1,"j":3,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"t":2,"v":5,"w":5,"y":5,"a":-3,"-":-4}},"T":{"d":"71,0r0,-197r-66,0r0,-46r187,0r0,46r-66,0r0,197r-55,0","w":197,"k":{"i":19,"T":-8,"J":19,"C":10,"G":10,"O":10,"Q":10,"V":-10,"W":-10,"X":-6,"Y":-3,"A":26,"M":1,"S":3,"g":22,"b":4,"h":4,"k":4,"l":4,"m":19,"n":19,"p":19,"r":19,"c":29,"d":29,"e":29,"o":29,"q":29,"s":26,"u":19,"v":19,"w":19,"y":19,"x":5,"a":24,"z":21,":":13,";":13,"-":22,")":-11,"]":-11,"}":-11,"\"":-3,"'":-3,",":30,".":30}},"U":{"d":"24,-243r54,0v6,70,-25,203,44,203v70,0,38,-133,45,-203r55,0r0,136v0,75,-38,111,-101,111v-61,0,-97,-34,-97,-111r0,-136","w":245,"k":{"A":11,"f":-2,"s":5,"v":2,"w":2,"y":2,"x":4,"a":2,"z":3,",":8,".":8}},"V":{"d":"145,0r-64,0r-78,-243r60,0r30,103v10,28,12,61,23,87v14,-66,35,-127,52,-190r59,0","w":228,"k":{"T":-8,"J":14,"C":3,"G":3,"O":3,"Q":3,"V":-2,"W":-2,"A":19,"S":3,"g":3,"b":3,"h":3,"k":3,"l":3,"i":10,"m":10,"n":10,"p":10,"r":10,"c":15,"d":15,"e":15,"o":15,"q":15,"s":14,"t":3,"u":11,"v":5,"w":5,"y":5,"a":15,":":8,";":8,"-":9,")":-10,"]":-10,"}":-10,"\"":-5,"'":-5,",":25,".":25}},"W":{"d":"123,0r-60,0r-58,-243r59,0r34,185r36,-185r58,0r33,184r34,-184r56,0r-63,243r-59,0r-21,-104v-6,-23,-6,-50,-12,-75v-9,64,-25,119,-37,179","w":319,"k":{"T":-8,"J":14,"C":3,"G":3,"O":3,"Q":3,"V":-2,"W":-2,"A":19,"S":3,"g":3,"b":3,"h":3,"k":3,"l":3,"i":10,"m":10,"n":10,"p":10,"r":10,"c":15,"d":15,"e":15,"o":15,"q":15,"s":14,"t":3,"u":11,"v":5,"w":5,"y":5,"a":15,":":8,";":8,"-":9,")":-10,"]":-10,"}":-10,"\"":-5,"'":-5,",":25,".":25}},"X":{"d":"215,0r-63,0r-45,-87v-10,27,-27,59,-39,87r-62,0r70,-123r-68,-120r63,0r41,85v11,-31,24,-57,37,-85r62,0r-68,119","w":220,"k":{"T":-2,"J":-4,"C":14,"G":14,"O":14,"Q":14,"V":-3,"W":-3,"X":4,"Y":-4,"A":5,"i":1,"m":1,"n":1,"p":1,"r":1,"c":7,"d":7,"e":7,"o":7,"q":7,"u":4,"v":13,"w":13,"y":13,"a":3,"-":6,"\"":-1,"'":-1}},"Y":{"d":"135,0r-55,0r0,-99r-77,-144r63,0r44,105r43,-105r62,0r-80,142r0,101","w":217,"k":{"J":25,"C":17,"G":17,"O":17,"Q":17,"V":-7,"W":-7,"X":8,"Y":9,"A":33,"M":8,"S":10,"B":6,"D":6,"E":6,"F":6,"H":6,"I":6,"K":6,"L":6,"N":6,"P":6,"R":6,"g":29,"b":5,"h":5,"k":5,"l":5,"i":8,"m":8,"n":8,"p":8,"r":8,"c":39,"d":39,"e":39,"o":39,"q":39,"s":23,"t":16,"u":26,"v":19,"w":19,"y":19,"x":20,"a":33,"z":18,":":18,";":18,"-":22,")":-12,"]":-12,"}":-12,"\"":-3,"'":-3,",":42,".":42}},"Z":{"d":"9,0r0,-30r115,-167r-105,0r0,-46r176,0r0,32r-113,166r115,0r0,45r-188,0","w":207,"k":{"J":-8,"C":8,"G":8,"O":8,"Q":8,"X":2,"Y":-2,"A":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"u":4,"v":6,"w":6,"y":6,"a":-1,"-":3}},"[":{"d":"98,40r-74,0r0,-287r74,0r0,30r-34,0r0,227r34,0r0,30","w":113,"k":{"T":-8,"J":-4,"C":8,"G":8,"O":8,"Q":8,"V":-10,"W":-10,"X":-2,"Y":-11,"A":7,"j":-18}},"\\":{"d":"113,14r-36,0r-73,-261r37,0","w":118},"]":{"d":"15,-247r74,0r0,287r-74,0r0,-30r34,0r0,-227r-34,0r0,-30","w":113},"^":{"d":"199,-64r-39,0r-53,-128r-53,128r-39,0r76,-170r33,0","w":214},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"91,-180v104,-2,69,97,80,180r-49,0v-2,-6,-1,-14,-4,-18v-28,40,-108,20,-108,-32v0,-46,42,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-7,36,-15,68,-15xm64,-55v0,35,52,19,52,-9r0,-19v-29,0,-52,7,-52,28","w":190},"b":{"d":"21,0r1,-256r55,0r0,101v40,-51,126,-19,126,64v0,63,-40,95,-80,95v-22,1,-40,-9,-54,-28r-2,24r-46,0xm148,-89v0,-54,-68,-68,-71,-12v-2,34,4,61,33,62v23,0,38,-18,38,-50","w":215,"k":{"T":18,"g":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":9,"z":3,"-":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"c":{"d":"148,-45r6,40v-62,26,-150,-7,-142,-81v-6,-64,69,-113,142,-87r-8,41v-32,-15,-78,0,-78,43v0,45,45,59,80,44","w":162,"k":{"T":5,"f":-3,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-6,"v":-5,"w":-5,"y":-5,"a":-1,"-":-4,"\"":-2,"'":-2,",":3,".":3}},"d":{"d":"138,-256r55,0r1,256r-49,0v-2,-8,0,-20,-3,-26v-39,59,-130,24,-130,-60v0,-81,77,-119,126,-75r0,-95xm67,-88v0,58,71,64,71,10v0,-33,-3,-59,-33,-60v-25,0,-38,22,-38,50","w":214,"k":{",":3,".":3}},"e":{"d":"177,-71r-113,0v2,40,66,39,98,26r8,37v-68,30,-158,3,-158,-78v0,-45,28,-94,89,-94v64,0,84,54,76,109xm64,-108r65,0v0,-13,-6,-36,-31,-36v-23,0,-33,22,-34,36","w":190,"k":{"T":15,"v":2,"w":2,"y":2,"x":4,"-":-11,"\"":1,"'":1,",":6,".":6}},"f":{"d":"28,-176v-5,-57,42,-98,100,-80r-2,42v-27,-8,-48,6,-43,38r35,0r0,40r-35,0r0,136r-55,0r0,-136r-23,0r0,-40r23,0","w":122,"k":{"g":3,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"t":-5,":":-10,";":-10,"-":1,")":-26,"]":-26,"}":-26,"\"":-15,"'":-15,",":14,".":14}},"g":{"d":"189,-26v11,91,-86,123,-162,88r11,-42v32,22,111,20,96,-44v-41,51,-122,10,-122,-63v0,-81,87,-122,129,-68r2,-21r47,0xm67,-89v0,52,67,65,67,11v0,-32,-3,-61,-31,-61v-20,0,-36,18,-36,50","w":210,"k":{"T":12,",":6,".":6}},"h":{"d":"106,-136v-50,0,-22,88,-29,136r-55,0r0,-256r55,0r0,101v34,-44,112,-30,112,52r0,103r-55,0r0,-97v0,-23,-7,-39,-28,-39","w":210,"k":{"T":21,"t":2,"v":7,"w":7,"y":7,"\"":5,"'":5}},"i":{"d":"77,0r-55,0r0,-176r55,0r0,176xm50,-252v18,0,28,12,28,27v0,15,-11,27,-29,27v-17,0,-28,-12,-28,-27v0,-15,11,-27,29,-27","w":98},"j":{"d":"-14,35v38,-6,43,-14,43,-69r0,-142r55,0v-7,107,36,260,-93,253xm57,-252v18,0,28,12,28,27v0,15,-11,27,-29,27v-17,0,-29,-12,-29,-27v0,-15,12,-27,30,-27","w":104,"k":{",":4,".":4}},"k":{"d":"77,-256r0,154v15,-27,33,-49,49,-74r66,0r-63,71r72,105r-68,0r-43,-72r-13,17r0,55r-55,0r0,-256r55,0","w":195,"k":{"T":10,"g":5,"b":-4,"h":-4,"k":-4,"l":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"c":5,"d":5,"e":5,"o":5,"q":5,"v":-1,"w":-1,"y":-1,"a":-2,":":-1,";":-1,"-":2,",":-1,".":-1}},"l":{"d":"22,0r0,-256r55,0r0,256r-55,0","w":99,"k":{",":3,".":3}},"m":{"d":"103,-136v-50,0,-21,88,-28,136r-53,0r-1,-176r46,0v2,7,0,18,3,24v8,-12,23,-28,53,-28v23,0,41,12,49,30v31,-48,116,-42,116,46r0,104r-53,0r0,-96v0,-26,-8,-40,-26,-40v-47,0,-20,89,-27,136r-53,0r0,-99v0,-22,-8,-37,-26,-37","w":309,"k":{"T":21,"t":2,"v":7,"w":7,"y":7,"\"":5,"'":5}},"n":{"d":"107,-136v-51,0,-23,87,-30,136r-55,0r-1,-176r47,0v2,7,0,18,4,24v7,-12,24,-28,54,-28v36,0,63,24,63,76r0,104r-55,0r0,-98v0,-23,-7,-38,-27,-38","w":210,"k":{"T":21,"t":2,"v":7,"w":7,"y":7,"\"":5,"'":5}},"o":{"d":"106,-180v54,0,90,37,90,90v0,64,-46,94,-93,94v-51,0,-91,-34,-91,-91v0,-57,37,-93,94,-93xm104,-141v-26,0,-36,27,-36,53v0,30,13,53,36,53v22,0,35,-22,35,-54v0,-26,-10,-52,-35,-52","w":207,"k":{"T":18,"g":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":9,"z":3,"-":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"p":{"d":"22,71r-1,-247r47,0r3,24v42,-55,132,-25,132,62v0,86,-81,119,-126,74r0,87r-55,0xm148,-88v0,-56,-67,-66,-71,-12v-2,33,4,62,33,62v24,0,38,-20,38,-50","w":215,"k":{"T":18,"g":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":9,"z":3,"-":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"q":{"d":"12,-86v0,-88,86,-122,128,-69r1,-21r53,0r-1,247r-55,0r-1,-93v-41,54,-125,19,-125,-64xm67,-88v0,56,68,66,71,12v2,-33,-3,-61,-33,-62v-25,0,-38,22,-38,50","w":214,"k":{"T":13,",":3,".":3}},"r":{"d":"130,-128v-31,-5,-53,8,-53,39r0,89r-55,0r-1,-176r46,0v2,10,-2,26,4,32v13,-30,32,-39,59,-35r0,51","w":136,"k":{"T":7,"f":-10,"g":3,"b":1,"h":1,"k":1,"l":1,"c":3,"d":3,"e":3,"o":3,"q":3,"t":-8,"u":1,"v":-6,"w":-6,"y":-6,"x":-5,"a":4,"z":-3,":":1,";":1,",":23,".":23}},"s":{"d":"12,-9r10,-39v13,9,68,24,70,-1v0,-9,-5,-14,-25,-20v-81,-23,-59,-111,21,-111v21,0,38,5,49,10r-9,38v-11,-7,-57,-20,-59,4v0,9,6,13,28,20v74,22,60,116,-28,112v-23,0,-44,-6,-57,-13","w":156,"k":{"T":13,",":4,".":4}},"t":{"d":"121,-1v-47,14,-91,-3,-91,-63r0,-72r-24,0r0,-40r24,0r0,-33r53,-15r0,48r39,0r0,40r-39,0v4,39,-17,108,38,94r0,41","w":132,"k":{"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"v":-2,"w":-2,"y":-2,",":3,".":3}},"u":{"d":"76,-81v-7,51,57,52,57,10r0,-105r55,0r1,176r-47,0v-2,-8,0,-19,-4,-25v-7,11,-23,29,-55,29v-36,0,-62,-23,-62,-77r0,-103r55,0r0,95","w":209,"k":{"T":13,",":3,".":3}},"v":{"d":"3,-176r60,0v13,40,19,88,35,125v7,-43,21,-84,32,-125r58,0r-66,176r-55,0","w":190,"k":{"T":13,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"s":6,"v":-7,"w":-7,"y":-7,"a":3,":":-2,";":-2,"-":3,",":17,".":17}},"w":{"d":"4,-176r56,0r25,130r31,-130r43,0r32,130v6,-45,16,-88,25,-130r54,0r-54,176r-51,0r-29,-117v-6,47,-18,77,-29,117r-52,0","w":273,"k":{"T":13,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"s":6,"v":-7,"w":-7,"y":-7,"a":3,":":-2,";":-2,"-":3,",":17,".":17}},"x":{"d":"3,-176r61,0v11,18,20,39,32,56r29,-56r60,0r-58,84r58,92r-62,0v-11,-19,-19,-41,-32,-58r-30,58r-60,0r60,-90","w":186,"k":{"T":10,"c":8,"d":8,"e":8,"o":8,"q":8,"s":3,"t":-5,"v":-7,"w":-7,"y":-7,"-":1}},"y":{"d":"20,33v22,-5,58,-22,47,-48r-65,-161r61,0r36,119r30,-119r58,0v-40,93,-59,246,-155,256","w":188,"k":{"T":13,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"s":6,"v":-7,"w":-7,"y":-7,"a":3,":":-2,";":-2,"-":3,",":17,".":17}},"z":{"d":"8,0r0,-31r55,-70v10,-12,18,-21,28,-31r-77,0r0,-44r144,0r0,33r-53,67v-10,11,-19,22,-29,32r85,0r0,44r-153,0","w":168,"k":{"T":10,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-3,"w":-3,"y":-3}},"{":{"d":"34,-9v-2,-34,25,-76,-23,-81r0,-27v47,-4,21,-47,23,-81v2,-39,28,-52,68,-49r0,31v-63,-6,7,108,-56,113v37,2,31,51,27,87v-2,19,8,28,29,26r0,30v-40,2,-66,-8,-68,-49","w":113,"k":{"T":-8,"J":-4,"C":8,"G":8,"O":8,"Q":8,"V":-10,"W":-10,"X":-2,"Y":-11,"A":7,"j":-18}},"|":{"d":"32,-270r38,0r0,360r-38,0r0,-360","w":101},"}":{"d":"79,-198v2,34,-25,77,23,81r0,27v-47,5,-21,47,-23,81v-2,40,-28,51,-67,49r0,-30v62,5,-8,-109,55,-114v-37,-2,-30,-51,-27,-87v2,-18,-8,-27,-28,-25r0,-31v40,-2,65,11,67,49","w":113},"~":{"d":"151,-67v-25,0,-64,-30,-84,-32v-9,0,-16,7,-17,30r-35,0v0,-48,22,-67,51,-67v25,0,64,29,84,31v8,0,14,-7,15,-29r34,0v2,51,-21,67,-48,67","w":214},"'":{"d":"13,-249r48,0r-8,97r-32,0","w":73,"k":{"T":-3,"J":21,"C":3,"G":3,"O":3,"Q":3,"V":-3,"W":-3,"X":-1,"Y":-3,"A":17,"f":-9,"g":7,"c":5,"d":5,"e":5,"o":5,"q":5,"t":-8,"v":-2,"w":-2,"y":-2,",":45,".":45}},"`":{"d":"1,-253r51,0r31,55r-38,0","w":108},"\u00a0":{"w":72,"k":{"T":14,"V":13,"W":13,"Y":14}}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ? 1992, 1994, 1997, 2000, 2004 Adobe Systems Incorporated. All rights reserved.
 * Protected by U.S. Patents D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-It
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":177,"face":{"font-family":"myriads","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 9 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-40 -270 322 90","underline-thickness":"18","underline-position":"-18","slope":"-11","stemh":"23","stemv":"32","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":65},"!":{"d":"51,-70r-24,0r29,-173r34,0xm28,4v-12,0,-20,-9,-20,-21v0,-13,10,-24,23,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":84},"\"":{"d":"44,-249r31,0r-22,87r-20,0xm98,-249r31,0r-23,87r-20,0","w":109,"k":{"A":14,"Y":-9,"J":20,"f":-15,"t":-9,"b":-4,"h":-4,"k":-4,"l":-4,",":37,".":37}},"#":{"d":"69,-91r33,0r16,-53r-32,0xm41,0r-21,0r22,-71r-30,0r4,-20r33,0r16,-53r-31,0r3,-21r34,0r22,-69r21,0r-22,69r33,0r22,-69r20,0r-21,69r29,0r-3,21r-33,0r-16,53r31,0r-4,20r-34,0r-21,71r-22,0r22,-71r-32,0"},"$":{"d":"76,31r-22,0r7,-36v-18,-1,-38,-8,-48,-16r10,-24v25,24,97,22,95,-24v0,-16,-6,-30,-30,-40v-68,-29,-55,-112,17,-120r7,-35r22,0r-7,35v18,1,33,7,40,12r-11,22v-18,-17,-83,-14,-83,24v0,16,8,27,35,39v69,31,43,123,-26,127"},"%":{"d":"93,-238v30,0,42,24,42,49v0,51,-27,94,-66,94v-28,0,-44,-21,-44,-52v0,-44,26,-91,68,-91xm89,-219v-24,0,-40,41,-40,73v0,17,5,32,23,32v24,0,39,-43,39,-74v0,-14,-4,-31,-22,-31xm67,5r-22,0r177,-243r21,0xm222,-141v30,0,43,24,43,49v0,51,-27,95,-66,95v-27,0,-44,-22,-44,-53v0,-44,26,-91,67,-91xm219,-122v-24,0,-39,41,-39,73v0,17,4,32,22,32v24,0,39,-43,39,-74v0,-14,-4,-31,-22,-31","w":278},"&":{"d":"192,0r-35,0v-6,-7,-11,-13,-17,-22v-39,44,-134,30,-134,-35v0,-39,32,-63,60,-79v-31,-46,-4,-111,51,-111v32,0,49,22,49,48v1,30,-22,51,-62,72v13,23,31,49,44,67v15,-18,26,-41,36,-72r28,0v-13,39,-29,69,-51,92v9,13,19,26,31,40xm36,-61v0,47,69,54,91,20v-12,-17,-32,-47,-50,-77v-16,10,-41,27,-41,57xm114,-225v-33,0,-43,53,-22,80v29,-14,47,-30,47,-53v0,-14,-7,-27,-25,-27","w":212},"(":{"d":"100,-249r26,0v-57,58,-105,185,-56,291r-22,0v-55,-93,-4,-243,52,-291","w":102,"k":{"T":-18,"A":3,"C":3,"G":3,"O":3,"Q":3,"V":-16,"W":-16,"X":-1,"Y":-12,"J":1,"j":-15,"c":4,"d":4,"e":4,"o":4,"q":4}},")":{"d":"9,42r-26,0v57,-59,105,-185,56,-291r23,0v53,94,2,243,-53,291","w":102},"*":{"d":"122,-247r20,13r-39,45r55,-7r-5,25v-17,-1,-37,-7,-52,-6r29,43r-23,13v-7,-16,-10,-35,-18,-50r-28,50r-19,-13r39,-44r-54,7r5,-25v16,1,36,7,50,6r-28,-44r23,-12v7,16,10,35,18,50","w":149},"+":{"d":"99,-192r22,0r0,85r79,0r0,21r-79,0r0,86r-22,0r0,-86r-79,0r0,-21r79,0r0,-85","w":214},",":{"d":"8,42r-23,3v11,-22,27,-61,35,-87r35,-3v-13,31,-34,70,-47,87","w":75,"k":{"T":22,"A":-6,"V":19,"W":19,"X":-7,"Y":27,"J":-1,"Z":-8,"\"":48,"'":48}},"-":{"d":"17,-109r86,0r-4,23r-86,0","w":110,"k":{"T":19,"C":-7,"G":-7,"O":-7,"Q":-7,"V":5,"W":5,"X":2,"Y":17,"J":12,"S":1,"g":-8,"c":-9,"d":-9,"e":-9,"o":-9,"q":-9,"a":-8}},".":{"d":"27,4v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":75,"k":{"T":22,"A":-6,"V":19,"W":19,"X":-7,"Y":27,"J":-1,"Z":-8,"\"":48,"'":48}},"\/":{"d":"5,14r-24,0r144,-261r25,0","w":117},"0":{"d":"118,-238v45,0,58,37,58,73v0,77,-36,169,-102,169v-43,0,-59,-35,-59,-80v0,-78,41,-162,103,-162xm114,-214v-41,0,-69,82,-69,139v0,25,5,55,33,55v44,0,68,-96,68,-143v0,-18,-3,-51,-32,-51"},"1":{"d":"66,0r37,-204r-40,20r-3,-23v26,-10,40,-31,79,-27r-45,234r-28,0"},"2":{"d":"141,0r-141,0r4,-20v52,-43,143,-114,134,-157v0,-17,-9,-35,-36,-35v-21,0,-38,9,-49,17r-7,-22v16,-12,40,-21,62,-21v44,0,61,29,61,57v0,55,-67,112,-121,155r98,0"},"3":{"d":"6,-11r10,-24v9,5,24,13,45,13v40,0,58,-27,58,-51v-1,-33,-28,-43,-62,-41r5,-24v32,2,67,-10,70,-45v4,-38,-60,-32,-78,-16r-6,-23v35,-28,115,-17,115,34v0,32,-26,52,-51,62v26,6,38,28,38,53v0,65,-97,97,-144,62"},"4":{"d":"121,0r-28,0r12,-64r-101,0r4,-21r124,-149r33,0r-27,146r31,0r-4,24r-32,0xm41,-89v20,3,46,0,68,1r23,-116v-26,43,-60,77,-91,115"},"5":{"d":"72,-149v41,-5,80,23,80,62v0,77,-89,111,-147,78r10,-24v37,25,110,4,106,-48v7,-33,-39,-52,-83,-43r33,-110r104,0r-5,26r-80,0"},"6":{"d":"169,-238r-4,26v-59,1,-98,38,-114,87v32,-47,114,-34,114,34v0,46,-36,95,-86,95v-45,0,-66,-33,-66,-77v0,-95,64,-161,156,-165xm134,-89v-1,-65,-80,-46,-90,2v-7,32,5,67,37,67v31,0,53,-36,53,-69"},"7":{"d":"48,-234r140,0r-4,21r-135,213r-34,0r135,-208r-107,0"},"8":{"d":"9,-54v0,-37,27,-60,55,-72v-56,-37,-14,-112,49,-112v34,0,59,21,59,53v1,29,-20,48,-46,62v70,35,23,127,-47,127v-44,0,-70,-25,-70,-58xm81,-19v27,0,49,-18,49,-46v0,-23,-13,-38,-41,-48v-24,6,-49,24,-49,55v0,20,13,39,41,39xm109,-215v-49,1,-59,70,-8,81v23,-8,42,-25,42,-47v0,-16,-8,-34,-34,-34"},"9":{"d":"20,4r4,-26v61,1,98,-38,114,-86v-34,46,-111,23,-111,-36v0,-48,38,-94,87,-94v110,0,49,178,3,208v-30,20,-56,34,-97,34xm93,-107v30,0,54,-23,54,-61v0,-27,-10,-46,-36,-46v-29,0,-53,33,-53,67v0,23,12,40,35,40"},":":{"d":"51,-123v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,20,9,20,21v0,13,-9,24,-23,24xm27,4v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":75},";":{"d":"7,42r-22,2v11,-22,27,-59,35,-86r35,-4v-13,31,-35,71,-48,88xm53,-123v-12,0,-20,-9,-20,-21v0,-13,10,-24,23,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":75},"<":{"d":"28,-86r0,-19r161,-87r0,25r-135,72r135,71r0,24","w":214},"=":{"d":"200,-122r-180,0r0,-21r180,0r0,21xm200,-51r-180,0r0,-21r180,0r0,21","w":214},">":{"d":"195,-106r0,20r-162,86r0,-24r137,-72r-137,-71r0,-25","w":214},"?":{"d":"144,-202v3,52,-72,79,-69,133r-29,0v-8,-49,62,-84,67,-128v3,-29,-46,-30,-63,-15r-6,-22v31,-25,107,-11,100,32xm49,4v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":138},"@":{"d":"114,-43v36,0,47,-52,52,-89v-40,-13,-76,21,-76,62v0,16,8,27,24,27xm179,8r6,15v-78,41,-172,-4,-172,-98v0,-74,51,-138,131,-138v63,0,104,44,104,104v0,54,-30,86,-64,86v-15,0,-26,-13,-28,-32v-20,43,-87,46,-89,-14v-2,-58,63,-103,123,-78r-12,66v-5,27,-1,40,11,40v19,1,39,-25,39,-66v0,-53,-32,-90,-88,-90v-59,0,-107,47,-107,120v0,82,78,120,146,85","w":259},"A":{"d":"144,-77r-84,0r-38,77r-32,0r126,-243r35,0r34,243r-31,0xm71,-100r71,0r-15,-115v-16,40,-37,78,-56,115","w":204,"k":{"T":22,"A":4,"C":8,"G":8,"O":8,"Q":8,"U":10,"V":15,"W":15,"X":2,"Y":22,"f":1,"g":4,"j":-4,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":4,"d":4,"e":4,"o":4,"q":4,"s":-2,"t":1,"u":1,"v":8,"w":8,"y":8,"x":-5,"z":-7,"-":2,"\"":13,"'":13}},"B":{"d":"170,-75v1,73,-88,85,-158,73r45,-237v51,-11,125,-8,125,49v0,31,-25,54,-52,61v22,6,40,25,40,54xm82,-219r-15,79v45,3,84,-9,84,-47v0,-32,-39,-38,-69,-32xm63,-117r-18,93v46,7,93,-4,93,-52v0,-37,-36,-44,-75,-41","w":186,"k":{"T":4,"A":-2,"U":3,"V":1,"W":1,"X":1,"Y":6,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":-3,"w":-3,"y":-3,"-":-3,",":5,".":5}},"C":{"d":"204,-211v-76,-32,-155,27,-155,110v0,44,20,79,74,79v18,0,39,-3,52,-10r4,24v-14,6,-36,12,-63,12v-61,0,-98,-39,-98,-101v0,-98,100,-179,195,-138","w":199,"k":{"A":-1,"C":9,"G":9,"O":9,"Q":9,"V":-3,"W":-3,"M":-1,"g":1,"c":3,"d":3,"e":3,"o":3,"q":3,"u":3,"v":5,"w":5,"y":5,"z":-2,"a":3,")":-7,"]":-7,"}":-7}},"D":{"d":"229,-146v0,108,-92,168,-217,145r45,-239v88,-12,172,0,172,94xm46,-24v95,13,147,-40,151,-121v3,-54,-49,-86,-114,-72","w":232,"k":{"T":10,"A":3,"X":4,"Y":12,"f":-8,"g":-5,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-3,"t":-8,"u":-2,"v":-6,"w":-6,"y":-6,"z":-1,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,":":-2,";":-2,"-":-5,",":9,".":9}},"E":{"d":"156,-139r-5,25r-88,0r-17,88r99,0r-5,26r-129,0r46,-243r124,0r-5,26r-94,0r-14,78r88,0","w":169,"k":{"V":-3,"W":-3,"Y":-1,"f":-1,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"t":1,"u":2,"v":3,"w":3,"y":3,"z":-1,"a":2,",":3,".":3}},"F":{"d":"11,0r46,-243r123,0r-5,26r-93,0r-15,82r85,0r-5,25r-85,0r-21,110r-30,0","w":167,"k":{"A":22,"C":1,"G":1,"O":1,"Q":1,"X":1,"M":3,"J":31,"g":13,"i":8,"m":8,"n":8,"p":8,"r":8,"c":10,"d":10,"e":10,"o":10,"q":10,"s":10,"u":10,"v":7,"w":7,"y":7,"x":12,"a":15,"b":6,"h":6,"k":6,"l":6,":":4,";":4,"-":2,"\"":-2,"'":-2,",":31,".":31}},"G":{"d":"212,-209v-79,-36,-162,26,-162,108v0,61,56,93,114,71r14,-72r-49,0r4,-25r79,0r-22,117v-14,6,-41,13,-69,13v-62,0,-103,-45,-103,-101v0,-78,62,-147,147,-147v30,0,49,7,57,11","w":224,"k":{"T":1,"A":-2,"V":2,"W":2,"Y":3,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"a":-3,"-":-1}},"H":{"d":"57,-243r30,0r-19,103r111,0r20,-103r30,0r-46,243r-30,0r21,-114r-111,0r-22,114r-30,0","w":225,"k":{"f":-3,"t":-2,"v":-2,"w":-2,"y":-2,"z":-3}},"I":{"d":"57,-243r30,0r-46,243r-30,0","w":83,"k":{"f":-3,"t":-2,"v":-2,"w":-2,"y":-2,"z":-3}},"J":{"d":"76,-79r31,-164r29,0r-31,167v-10,72,-57,92,-116,73r6,-25v42,12,70,5,81,-51","w":131,"k":{"A":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":-5,"w":-5,"y":-5,")":-12,"]":-12,"}":-12}},"K":{"d":"11,0r46,-243r30,0r-23,118v12,-7,18,-18,26,-27r85,-91r38,0r-102,105r62,138r-33,0r-53,-119r-29,27r-17,92r-30,0","w":185,"k":{"A":-2,"C":7,"G":7,"O":7,"Q":7,"U":3,"V":-5,"W":-5,"J":-8,"S":1,"Z":-8,"g":2,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"u":4,"v":7,"w":7,"y":7,"b":-3,"h":-3,"k":-3,"l":-3,"-":9,")":-8,"]":-8,"}":-8,"\"":-3,"'":-3,",":-8,".":-8}},"L":{"d":"11,0r46,-243r30,0r-41,217r98,0r-5,26r-128,0","w":159,"k":{"T":31,"A":-4,"C":16,"G":16,"O":16,"Q":16,"U":18,"V":23,"W":23,"Y":32,"J":-1,"Z":-7,"g":4,"c":9,"d":9,"e":9,"o":9,"q":9,"u":5,"v":14,"w":14,"y":14,"x":-1,"z":-6,"a":1,"-":21,"\"":49,"'":49}},"M":{"d":"243,0r-28,0r29,-213v-33,72,-73,143,-110,212r-23,0r-18,-131v-5,-27,-5,-58,-9,-81r-51,213r-28,0r63,-243r38,0r26,200v30,-69,69,-135,103,-200r39,0","w":280,"k":{"C":1,"G":1,"O":1,"Q":1,"Y":1,"j":-4,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"v":-3,"w":-3,"y":-3}},"N":{"d":"39,0r-28,0r46,-243r33,0r55,138v11,27,17,46,22,67v5,-62,25,-142,35,-205r28,0r-46,243r-29,0v-25,-66,-62,-137,-78,-207","w":227,"k":{"f":-3,"t":-2,"v":-2,"w":-2,"y":-2,"z":-3}},"O":{"d":"17,-95v-1,-74,48,-153,128,-152v66,0,92,48,92,100v0,74,-48,151,-128,151v-63,0,-92,-48,-92,-99xm114,-21v60,0,91,-69,91,-125v0,-35,-11,-75,-64,-75v-61,-1,-92,68,-92,124v0,40,17,76,65,76","w":240,"k":{"T":10,"A":3,"X":4,"Y":12,"f":-8,"g":-5,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-3,"t":-8,"u":-2,"v":-6,"w":-6,"y":-6,"z":-1,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,":":-2,";":-2,"-":-5,",":9,".":9}},"P":{"d":"186,-182v-3,65,-60,96,-127,85r-18,97r-30,0r46,-239v54,-12,132,-7,129,57xm82,-218r-18,96v49,11,92,-16,92,-58v0,-39,-41,-44,-74,-38","w":182,"k":{"T":3,"A":23,"X":12,"Y":1,"J":27,"Z":13,"g":8,"i":4,"m":4,"n":4,"p":4,"r":4,"c":7,"d":7,"e":7,"o":7,"q":7,"s":4,"t":-3,"u":5,"v":-6,"w":-6,"y":-6,"a":8,"b":2,"h":2,"k":2,"l":2,":":4,";":4,"-":4,")":3,"]":3,"}":3,",":39,".":39}},"Q":{"d":"145,-247v144,5,101,219,3,242r0,2v21,4,43,9,64,12r-11,25v-42,-10,-74,-26,-101,-30v-46,-6,-83,-39,-83,-99v-1,-73,50,-155,128,-152xm112,-21v62,1,93,-72,93,-126v0,-32,-11,-74,-64,-74v-62,0,-92,72,-92,125v0,39,16,75,63,75","w":240,"k":{"T":10,"A":3,"X":4,"Y":12,"f":-8,"g":-5,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-3,"t":-8,"u":-2,"v":-6,"w":-6,"y":-6,"z":-1,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,":":-2,";":-2,"-":-5,",":9,".":9}},"R":{"d":"57,-239v55,-12,130,-6,129,52v0,36,-27,62,-58,71v34,3,27,96,34,116r-31,0v-1,-5,-3,-31,-5,-59v-2,-45,-24,-50,-65,-47r-20,106r-30,0xm82,-218r-16,89v50,5,88,-16,88,-54v0,-36,-41,-43,-72,-35","w":188,"k":{"T":3,"A":-2,"C":-2,"G":-2,"O":-2,"Q":-2,"U":4,"V":-2,"W":-2,"X":-1,"Y":5,"g":3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"t":-6,"u":1,"v":-5,"w":-5,"y":-5,"a":1,"b":-3,"h":-3,"k":-3,"l":-3,"-":2}},"S":{"d":"119,-67v0,-43,-95,-62,-84,-108v-6,-63,87,-87,132,-59r-11,25v-23,-21,-90,-11,-90,28v0,20,11,33,38,45v75,34,53,144,-41,140v-24,0,-49,-8,-59,-17r11,-24v32,24,104,22,104,-30","w":167,"k":{"C":1,"G":1,"O":1,"Q":1,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"v":4,"w":4,"y":4,"x":1,"a":-3,"-":-1}},"T":{"d":"53,0r41,-217r-71,0r5,-26r173,0r-6,26r-71,0r-41,217r-30,0","w":170,"k":{"i":18,"T":-15,"A":20,"C":6,"G":6,"O":6,"Q":6,"V":-16,"W":-16,"X":-11,"Y":-11,"J":17,"S":-3,"g":25,"m":18,"n":18,"p":18,"r":18,"c":21,"d":21,"e":21,"o":21,"q":21,"s":22,"t":3,"u":21,"v":12,"w":12,"y":12,"x":18,"z":20,"a":27,"b":1,"h":1,"k":1,"l":1,":":10,";":10,"-":23,")":-20,"]":-20,"}":-20,"\"":-6,"'":-6,",":24,".":24}},"U":{"d":"57,-243r30,0v-9,59,-30,111,-30,175v0,31,18,46,45,46v33,0,57,-22,67,-77r28,-144r30,0r-28,145v-14,72,-50,102,-101,102v-52,0,-80,-44,-68,-105","w":223,"k":{"A":6,"S":3,"f":-5,"t":-1,"v":-1,"w":-1,"y":-1,"x":1,"b":-2,"h":-2,"k":-2,"l":-2}},"V":{"d":"93,0r-33,0r-30,-243r30,0r24,211v28,-66,71,-145,104,-211r33,0","w":194,"k":{"T":-12,"A":16,"M":2,"J":12,"S":-3,"g":13,"i":3,"m":3,"n":3,"p":3,"r":3,"c":11,"d":11,"e":11,"o":11,"q":11,"s":9,"t":-3,"u":5,"x":5,"z":5,"a":13,"b":-2,"h":-2,"k":-2,"l":-2,":":6,";":6,"-":8,")":-13,"]":-13,"}":-13,"\"":-4,"'":-4,",":19,".":19}},"W":{"d":"79,0r-32,0r-12,-243r30,0r6,209v24,-63,64,-145,92,-209r32,0r7,208v24,-73,59,-140,89,-208r31,0r-112,243r-32,0r-6,-138v-2,-27,0,-45,-1,-70v-24,75,-61,139,-92,208","w":298,"k":{"T":-12,"A":16,"M":2,"J":12,"S":-3,"g":13,"i":3,"m":3,"n":3,"p":3,"r":3,"c":11,"d":11,"e":11,"o":11,"q":11,"s":9,"t":-3,"u":5,"x":5,"z":5,"a":13,"b":-2,"h":-2,"k":-2,"l":-2,":":6,";":6,"-":8,")":-13,"]":-13,"}":-13,"\"":-4,"'":-4,",":19,".":19}},"X":{"d":"168,0r-32,0r-39,-103r-72,103r-36,0r95,-123r-45,-120r31,0r36,99r71,-99r36,0r-94,119","w":187,"k":{"T":-9,"A":3,"C":8,"G":8,"O":8,"Q":8,"V":-9,"W":-9,"X":-6,"Y":-9,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"u":4,"v":5,"w":5,"y":5,"a":5,"-":9,")":-9,"]":-9,"}":-9,"\"":-1,"'":-1,",":-2,".":-2}},"Y":{"d":"87,0r-29,0r19,-101r-47,-142r32,0r34,120v20,-36,55,-84,79,-120r35,0r-103,142","w":186,"k":{"i":13,"T":-8,"A":27,"C":9,"G":9,"O":9,"Q":9,"U":2,"V":-4,"W":-4,"X":5,"M":7,"J":21,"S":3,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"g":29,"j":3,"m":13,"n":13,"p":13,"r":13,"c":25,"d":25,"e":25,"o":25,"q":25,"s":24,"t":7,"u":19,"v":9,"w":9,"y":9,"x":15,"z":19,"a":31,"b":3,"h":3,"k":3,"l":3,":":9,";":9,"-":23,")":-10,"]":-10,"}":-10,",":35,".":35}},"Z":{"d":"-7,0r3,-18r165,-199r-116,0r5,-26r156,0r-4,20r-163,197r127,0r-4,26r-169,0","w":188,"k":{"A":-2,"C":8,"G":8,"O":8,"Q":8,"V":-6,"W":-6,"X":-1,"g":4,"c":3,"d":3,"e":3,"o":3,"q":3,"u":2,"a":4,"-":3}},"[":{"d":"70,40r-63,0r55,-287r63,0r-4,19r-39,0r-47,249r38,0","w":102,"k":{"T":-18,"A":3,"C":3,"G":3,"O":3,"Q":3,"V":-16,"W":-16,"X":-1,"Y":-12,"J":1,"j":-15,"c":4,"d":4,"e":4,"o":4,"q":4}},"\\":{"d":"112,14r-24,0r-66,-261r23,0","w":118},"]":{"d":"39,-247r63,0r-54,287r-63,0r3,-19r39,0r47,-249r-38,0","w":102},"^":{"d":"192,-68r-24,0r-60,-140r-59,140r-24,0r73,-166r22,0","w":214},"_":{"d":"-18,27r180,0r-3,18r-180,0","w":180},"a":{"d":"154,0r-28,0v-1,-9,4,-30,3,-45v-19,36,-43,49,-68,49v-31,0,-50,-25,-50,-58v0,-76,76,-147,168,-118v-9,50,-27,119,-25,172xm72,-21v41,0,69,-77,73,-131v-58,-13,-102,38,-103,93v0,19,7,38,30,38","w":187},"b":{"d":"57,-256r30,0r-22,113v15,-23,38,-35,61,-35v38,0,53,31,53,62v0,54,-39,120,-109,120v-42,0,-58,-30,-50,-72xm114,-153v-37,0,-67,54,-67,108v0,17,10,26,28,26v45,0,73,-54,73,-93v0,-22,-10,-41,-34,-41","w":189,"k":{"T":19,"g":-1,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":4,"z":3,"-":-5,"\"":8,"'":8,",":6,".":6}},"c":{"d":"127,-31r3,24v-9,5,-27,11,-50,11v-45,0,-67,-31,-67,-68v0,-71,69,-137,143,-106r-9,23v-54,-24,-107,28,-103,80v-6,47,54,54,83,36","w":152,"k":{"T":8,"f":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"s":-1,"t":-2,"v":-4,"w":-4,"y":-4,"x":-1,"a":5,",":4,".":4}},"d":{"d":"166,-256r29,0r-38,201v-3,18,-6,38,-7,55r-28,0v1,-11,6,-26,4,-35v-27,57,-114,51,-114,-24v0,-71,62,-139,138,-113xm134,-86r11,-61v-52,-26,-105,28,-103,84v0,21,7,42,33,42v23,0,51,-26,59,-65","w":189,"k":{",":5,".":5}},"e":{"d":"131,-32r5,22v-13,7,-35,14,-58,14v-46,0,-66,-31,-66,-70v0,-53,39,-112,95,-112v33,0,51,20,51,45v0,46,-52,57,-116,56v-4,30,14,57,43,57v21,0,35,-6,46,-12xm129,-133v0,-14,-10,-22,-26,-22v-28,0,-50,28,-58,55v47,1,84,-6,84,-33","w":163,"k":{"T":13,"-":-4,",":4,".":4}},"f":{"d":"44,0r-30,0r29,-151r-24,0r5,-23r23,0v4,-51,40,-101,96,-81r-7,24v-36,-13,-56,17,-59,57r39,0r-5,23r-39,0","w":101,"k":{"t":-2,"a":3,":":-12,";":-12,")":-31,"]":-31,"}":-31,"\"":-23,"'":-23,",":11,".":11}},"g":{"d":"4,63r8,-23v46,21,99,16,109,-51r5,-26v-26,57,-114,44,-114,-23v0,-80,85,-146,167,-106v-18,73,-17,180,-62,222v-29,27,-83,23,-113,7xm77,-24v47,-1,63,-73,69,-124v-54,-24,-103,29,-103,82v0,19,7,42,34,42","w":188,"k":{"T":15,"g":1,",":5,".":5}},"h":{"d":"40,0r-30,0r49,-256r30,0r-21,112v15,-21,36,-34,62,-34v30,0,47,36,40,76r-19,102r-30,0r22,-125v0,-16,-8,-28,-27,-28v-23,0,-53,27,-60,66","w":192,"k":{"T":21,"u":2,"v":2,"w":2,"y":2,"x":1,"\"":13,"'":13}},"i":{"d":"40,0r-30,0r34,-174r29,0xm66,-204v-10,0,-17,-7,-17,-18v0,-12,9,-21,19,-21v11,0,18,8,18,19v0,12,-8,20,-20,20","w":82},"j":{"d":"45,-174r30,0v-19,74,-20,179,-56,232v-12,17,-36,20,-59,15r4,-23v28,4,39,-1,47,-44xm66,-204v-10,0,-17,-7,-17,-18v0,-12,9,-21,20,-21v10,0,17,8,17,19v0,12,-8,20,-20,20","w":81,"k":{"j":-8,",":4,".":4}},"k":{"d":"40,0r-30,0r49,-256r30,0r-30,161v24,-28,51,-52,77,-79r37,0r-76,71r52,103r-33,0r-42,-86r-22,20","w":164,"k":{"T":10,"g":5,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":5,"d":5,"e":5,"o":5,"q":5,"v":-3,"w":-3,"y":-3,"a":5,"b":-3,"h":-3,"k":-3,"l":-3,":":-4,";":-4,",":-4,".":-4}},"l":{"d":"40,0r-30,0r49,-256r30,0","w":82,"k":{",":5,".":5}},"m":{"d":"40,0r-30,0r31,-174r27,0v-1,10,-6,24,-4,33v21,-44,98,-54,102,2v15,-25,38,-39,64,-39v30,0,46,35,39,75r-19,103r-29,0r21,-123v0,-18,-7,-30,-26,-30v-22,0,-48,25,-55,64r-17,89r-28,0r21,-123v0,-15,-4,-30,-26,-30v-22,0,-49,29,-56,66","w":290,"k":{"T":21,"u":2,"v":2,"w":2,"y":2,"x":1,"\"":13,"'":13}},"n":{"d":"40,0r-30,0r32,-174r26,0v0,11,-5,25,-3,34v15,-24,39,-38,64,-38v31,0,49,35,41,76r-19,102r-30,0r22,-123v0,-17,-7,-30,-28,-30v-21,0,-51,25,-59,68","w":192,"k":{"T":21,"u":2,"v":2,"w":2,"y":2,"x":1,"\"":13,"'":13}},"o":{"d":"109,-178v47,0,68,35,68,72v0,54,-37,110,-96,110v-44,0,-68,-33,-68,-72v0,-58,39,-110,96,-110xm106,-154v-37,0,-62,45,-62,85v0,28,16,49,41,49v35,0,62,-45,62,-86v0,-20,-10,-48,-41,-48","w":187,"k":{"T":19,"g":-1,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":4,"z":3,"-":-5,"\"":8,"'":8,",":6,".":6}},"p":{"d":"24,71r-29,0r35,-183v4,-21,7,-45,9,-63r28,0v-1,11,-6,25,-4,34v15,-23,38,-37,62,-37v37,0,54,31,54,63v1,75,-66,142,-140,111xm53,-78r-9,49v51,34,105,-25,104,-84v0,-18,-8,-40,-34,-40v-23,0,-52,26,-61,75","w":189,"k":{"T":19,"g":-1,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":4,"z":3,"-":-5,"\"":8,"'":8,",":6,".":6}},"q":{"d":"133,71r-30,0r21,-103v-29,54,-112,45,-112,-27v0,-58,42,-119,110,-119v23,0,43,5,56,11xm73,-21v49,0,66,-74,72,-127v-52,-23,-104,25,-103,85v0,27,13,42,31,42","w":189,"k":{"T":17,"g":1,"x":1,"a":2,",":4,".":4}},"r":{"d":"40,0r-30,0r22,-112v4,-23,6,-46,8,-62r27,0v0,11,-5,27,-4,38v13,-26,32,-46,62,-41r-6,29v-59,-10,-68,89,-79,148","w":114,"k":{"T":8,"f":-8,"g":3,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-9,"v":-7,"w":-7,"y":-7,"x":-4,"z":-3,"a":5,":":-4,";":-4,"-":3,",":13,".":13}},"s":{"d":"57,-129v2,30,62,40,56,75v5,55,-73,71,-110,46r9,-22v19,16,70,14,70,-18v0,-31,-63,-43,-55,-77v-6,-43,63,-66,99,-45r-8,23v-16,-13,-63,-11,-61,18","w":134,"k":{"T":15,"-":2,",":4,".":4}},"t":{"d":"56,-207r31,-9r-8,42r42,0r-5,23r-41,0r-20,112v-2,15,16,20,31,16r-2,23v-25,11,-63,-3,-60,-30v5,-41,15,-82,21,-121r-24,0r4,-23r25,0","w":112,"k":{"g":2,"c":1,"d":1,"e":1,"o":1,"q":1,"v":-4,"w":-4,"y":-4}},"u":{"d":"150,-174r30,0r-31,174r-27,0r4,-33v-15,23,-39,37,-62,37v-33,0,-51,-36,-42,-80r19,-98r29,0r-21,123v0,18,7,30,28,30v22,0,49,-26,56,-64","w":189,"k":{"T":17,"g":1,"x":1,"a":2,",":4,".":4}},"v":{"d":"19,-174r30,0v9,46,10,100,22,142v17,-43,49,-99,71,-142r33,0r-97,174r-29,0","w":163,"k":{"T":12,"g":6,"j":2,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-5,"w":-5,"y":-5,"a":6,":":-5,";":-5,"-":3,",":14,".":14}},"w":{"d":"22,-174r29,0r7,98v2,22,-2,34,1,46v18,-46,49,-99,71,-144r26,0r15,144v16,-50,42,-98,63,-144r31,0r-86,174r-28,0r-15,-141v-20,51,-46,94,-70,141r-28,0","w":254,"k":{"T":12,"g":6,"j":2,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-5,"w":-5,"y":-5,"a":6,":":-5,";":-5,"-":3,",":14,".":14}},"x":{"d":"23,-174r32,0v11,21,18,46,30,66v15,-24,34,-45,51,-66r34,0r-73,85r41,89r-33,0v-11,-23,-18,-49,-30,-70v-14,24,-37,48,-54,70r-34,0r76,-90","w":158,"k":{"T":9,"g":3,"c":6,"d":6,"e":6,"o":6,"q":6,"t":-4,"v":-5,"w":-5,"y":-5,"a":4}},"y":{"d":"17,-174r31,0r26,139r64,-139r31,0v-39,73,-72,168,-125,224v-19,20,-41,28,-51,30r-7,-26v26,-10,59,-31,66,-65","w":158,"k":{"T":12,"g":6,"j":2,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-5,"w":-5,"y":-5,"a":6,":":-5,";":-5,"-":3,",":14,".":14}},"z":{"d":"-8,0r4,-18r84,-95v15,-17,26,-24,37,-37r-90,0r5,-24r125,0r-4,20r-83,92v-16,19,-27,24,-36,38r97,0r-5,24r-134,0","w":149,"k":{"T":10,"f":-8,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-4,"v":-9,"w":-9,"y":-9}},"{":{"d":"65,40v-73,6,-40,-78,-29,-115v0,-7,-3,-20,-24,-20r3,-18v48,-2,31,-51,39,-87v8,-35,30,-49,66,-47v-3,6,1,19,-10,19v-60,0,-14,120,-70,125v43,15,0,71,1,101v0,15,10,25,28,23","w":102,"k":{"T":-18,"A":3,"C":3,"G":3,"O":3,"Q":3,"V":-16,"W":-16,"X":-1,"Y":-12,"J":1,"j":-15,"c":4,"d":4,"e":4,"o":4,"q":4}},"|":{"d":"34,-270r23,0r0,360r-23,0r0,-360","w":78},"}":{"d":"42,-247v73,-5,40,78,29,116v0,7,3,19,24,19r-3,18v-48,2,-31,50,-39,87v-8,35,-30,49,-66,47v3,-6,-1,-19,10,-19v60,0,12,-119,70,-124v-43,-15,0,-72,-1,-102v0,-15,-10,-25,-28,-23","w":102},"~":{"d":"198,-129v-1,97,-86,34,-133,23v-12,0,-21,11,-21,30r-21,0v-1,-35,18,-54,42,-54v22,0,69,33,93,31v13,0,19,-11,19,-30r21,0","w":214},"'":{"d":"46,-249r31,0r-22,87r-20,0","w":59,"k":{"A":14,"Y":-9,"J":20,"f":-15,"t":-9,"b":-4,"h":-4,"k":-4,"l":-4,",":37,".":37}},"`":{"d":"52,-247r34,0r23,52r-21,0","w":137},"\u00a0":{"w":65}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ? 1992, 1994, 1997, 2000, 2004 Adobe Systems Incorporated. All rights reserved.
 * Protected by U.S. Patents D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-BoldIt
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":194,"face":{"font-family":"myriads","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 3 3 4 3 9 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-34 -270 335 90","underline-thickness":"18","underline-position":"-18","slope":"-11","stemh":"40","stemv":"55","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":66},"!":{"d":"67,-80r-41,0r24,-163r55,0xm34,4v-17,0,-29,-13,-29,-30v0,-19,14,-36,35,-36v17,0,29,13,29,31v0,21,-14,35,-35,35","w":96},"\"":{"d":"41,-249r49,0r-27,100r-33,0xm111,-249r48,0r-27,100r-33,0","w":139,"k":{"A":13,"J":23,"X":-2,"Y":-5,"f":-16,"b":-7,"h":-7,"k":-7,"l":-7,"t":-13,",":48,".":48}},"#":{"d":"80,-97r31,0r13,-41r-31,0xm49,0r-32,0r20,-64r-29,0r5,-33r35,0r14,-41r-31,0r5,-33r35,0r20,-63r32,0r-20,63r31,0r20,-63r32,0r-20,63r29,0r-5,33r-34,0r-13,41r30,0r-6,33r-35,0r-20,64r-32,0r20,-64r-31,0"},"$":{"d":"117,-68v-5,-35,-83,-45,-83,-94v0,-36,29,-63,73,-68r6,-32r34,0r-6,31v20,1,38,8,47,14r-17,38v-12,-12,-84,-23,-81,10v0,11,10,18,36,31v28,14,47,34,47,62v0,44,-36,68,-77,73r-6,34r-34,0r6,-34v-22,-1,-45,-11,-56,-19r17,-39v17,19,91,30,94,-7"},"%":{"d":"99,-238v32,0,52,23,52,54v0,51,-33,90,-75,90v-31,0,-54,-20,-54,-55v0,-47,31,-89,77,-89xm94,-208v-21,0,-32,38,-32,60v0,14,6,25,18,25v22,0,31,-41,31,-62v0,-12,-4,-23,-17,-23xm89,4r-31,0r174,-242r31,0xm249,-141v32,0,51,23,51,54v0,51,-33,90,-75,90v-31,0,-53,-20,-53,-55v0,-47,31,-89,77,-89xm243,-111v-21,0,-32,38,-32,60v0,14,6,24,18,24v22,0,32,-40,32,-61v0,-12,-5,-23,-18,-23","w":312},"&":{"d":"220,0r-62,0v-5,-5,-9,-11,-13,-17v-37,37,-140,25,-140,-43v0,-38,30,-59,59,-76v-33,-48,1,-111,63,-111v36,0,61,22,61,54v0,29,-23,48,-60,68v10,15,23,34,33,47v15,-18,26,-40,33,-62r48,0v-13,37,-31,69,-58,95v9,14,22,29,36,45xm58,-69v0,33,48,44,67,23v-12,-16,-29,-39,-43,-61v-11,8,-24,20,-24,38xm122,-213v-27,0,-32,43,-14,61v19,-9,34,-22,34,-40v0,-11,-6,-21,-20,-21","w":239},"(":{"d":"94,-248r38,0v-54,65,-90,182,-54,290r-36,0v-45,-97,-6,-236,52,-290","w":113,"k":{"T":-8,"A":4,"C":5,"G":5,"O":5,"Q":5,"V":-8,"W":-8,"X":-3,"Y":-6,"j":-10,"c":2,"d":2,"e":2,"o":2,"q":2}},")":{"d":"26,42r-39,0v54,-65,90,-182,54,-290r37,0v44,98,6,235,-52,290","w":113},"*":{"d":"125,-247r30,19r-44,46r60,-12r-8,37v-18,-2,-38,-9,-55,-9r35,44r-35,19r-14,-56r-27,56r-30,-19r44,-45r-58,10r7,-37v17,3,38,11,53,11r-33,-46r34,-18v6,18,8,40,15,56","w":162},"+":{"d":"90,-192r35,0r0,79r74,0r0,33r-74,0r0,80r-35,0r0,-80r-75,0r0,-33r75,0r0,-79","w":214},",":{"d":"17,40r-38,3v16,-32,32,-69,41,-102r56,-4v-17,37,-38,75,-59,103","w":93,"k":{"T":23,"A":-4,"J":-3,"V":20,"W":20,"X":-5,"Y":28,"Z":-5,"\"":53,"'":53}},"-":{"d":"16,-113r93,0r-7,37r-93,0","w":115,"k":{"T":22,"J":4,"C":-6,"G":-6,"O":-6,"Q":-6,"V":10,"W":10,"X":4,"Y":19,"S":1,"a":-8,"g":-8,"c":-7,"d":-7,"e":-7,"o":-7,"q":-7,"v":1,"w":1,"y":1}},".":{"d":"35,4v-17,0,-29,-13,-29,-30v0,-20,14,-37,35,-37v18,0,30,13,30,31v0,21,-15,36,-36,36","w":93,"k":{"T":23,"A":-4,"J":-3,"V":20,"W":20,"X":-5,"Y":28,"Z":-5,"\"":53,"'":53}},"\/":{"d":"22,14r-36,0r125,-261r37,0","w":117},"0":{"d":"124,-238v50,0,67,38,67,80v0,73,-35,162,-109,162v-49,0,-68,-37,-68,-84v0,-74,38,-158,110,-158xm118,-197v-35,0,-53,85,-53,119v0,18,2,41,23,41v36,0,52,-89,52,-120v0,-16,-2,-40,-22,-40"},"1":{"d":"66,0r34,-185r-46,20r-1,-41r64,-28r43,0r-44,234r-50,0"},"2":{"d":"159,0r-160,0r6,-33v41,-32,127,-94,127,-133v0,-38,-63,-31,-81,-15r-11,-37v45,-35,146,-24,146,44v0,58,-61,96,-103,130r84,0"},"3":{"d":"3,-12r16,-41v19,17,103,20,97,-20v1,-24,-24,-33,-57,-31r8,-40v28,1,59,-8,60,-31v1,-30,-63,-19,-77,-8r-7,-39v43,-26,140,-24,139,39v0,29,-23,51,-52,58v24,5,40,25,40,52v0,73,-116,95,-167,61"},"4":{"d":"141,0r-48,0r10,-57r-99,0r6,-34r112,-143r63,0r-26,138r28,0r-7,39r-28,0xm62,-97v13,3,34,0,49,1r22,-97v-14,12,-20,31,-32,46"},"5":{"d":"89,-153v43,-6,85,22,85,65v0,81,-107,112,-169,78r13,-41v27,18,103,16,102,-27v9,-29,-46,-41,-87,-35r33,-121r126,0r-9,44r-83,0"},"6":{"d":"185,-237r-8,42v-52,-1,-89,23,-102,56v39,-37,108,-14,108,48v0,50,-38,95,-93,95v-117,-2,-80,-167,-21,-207v33,-22,70,-36,116,-34xm130,-86v-1,-50,-62,-35,-67,1v-3,25,5,49,28,49v25,0,39,-28,39,-50"},"7":{"d":"44,-234r158,0r-6,35r-129,199r-57,0r127,-190r-102,0"},"8":{"d":"33,-167v0,-80,154,-101,156,-14v0,25,-17,44,-42,56v21,12,32,32,32,52v0,94,-173,103,-173,17v0,-34,26,-54,51,-67v-16,-12,-24,-27,-24,-44xm95,-103v-35,3,-52,68,-4,69v17,0,34,-13,34,-34v0,-19,-13,-29,-30,-35xm114,-200v-17,0,-31,14,-31,30v0,15,13,24,28,29v29,-4,43,-57,3,-59"},"9":{"d":"17,3r6,-42v50,5,95,-24,106,-59v-38,36,-107,12,-107,-46v0,-51,42,-94,95,-94v52,0,76,36,76,82v0,100,-69,166,-176,159xm102,-119v44,5,56,-77,10,-79v-36,-3,-55,78,-10,79"},":":{"d":"57,-112v-17,0,-29,-13,-29,-30v0,-19,14,-36,35,-36v17,0,30,12,30,30v0,21,-15,36,-36,36xm35,4v-17,0,-29,-13,-29,-30v0,-19,14,-36,35,-36v17,0,30,13,30,31v0,21,-15,35,-36,35","w":93},";":{"d":"17,40r-38,3v16,-32,32,-69,41,-102r56,-4v-16,37,-38,75,-59,103xm59,-112v-17,0,-29,-13,-29,-30v0,-19,14,-36,35,-36v17,0,30,12,30,30v0,21,-15,36,-36,36","w":93},"<":{"d":"19,-80r0,-31r171,-81r0,39r-129,58r129,57r0,38","w":214},"=":{"d":"199,-117r-184,0r0,-33r184,0r0,33xm199,-42r-184,0r0,-34r184,0r0,34","w":214},">":{"d":"199,-112r0,33r-172,79r0,-38r132,-58r-132,-58r0,-38","w":214},"?":{"d":"162,-198v0,49,-62,71,-65,119r-51,0v-2,-41,53,-77,63,-109v2,-25,-48,-18,-60,-7r-7,-36v31,-24,120,-24,120,33xm59,4v-17,0,-28,-13,-28,-30v0,-19,14,-36,35,-36v17,0,29,13,29,31v0,21,-15,35,-36,35","w":157},"@":{"d":"125,-52v24,0,33,-44,36,-72v-31,-9,-54,17,-54,49v0,14,6,23,18,23xm186,4r6,20v-82,36,-178,-4,-178,-100v0,-73,54,-137,135,-137v63,0,108,44,108,104v0,53,-29,86,-68,86v-18,0,-28,-11,-32,-28v-20,40,-86,39,-86,-19v0,-60,68,-104,127,-75r-11,67v-3,21,-1,31,9,31v15,1,35,-19,35,-61v0,-47,-31,-83,-86,-83v-55,0,-104,43,-104,112v0,81,78,113,145,83","w":269},"A":{"d":"144,-63r-70,0r-29,63r-55,0r118,-243r67,0r28,243r-55,0xm89,-103r52,0r-9,-99","w":222,"k":{"T":23,"A":5,"J":-2,"C":10,"G":10,"O":10,"Q":10,"U":12,"V":18,"W":18,"X":4,"Y":24,"a":1,"f":1,"g":4,"b":-2,"h":-2,"k":-2,"l":-2,"j":-4,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":4,"d":4,"e":4,"o":4,"q":4,"t":2,"u":2,"v":9,"w":9,"y":9,"x":-1,"z":-5,"\"":13,"'":13}},"B":{"d":"193,-76v2,79,-111,86,-186,73r45,-236v59,-10,152,-12,152,52v0,32,-24,48,-49,58v23,7,38,26,38,53xm96,-203r-10,57v34,3,65,-7,65,-33v0,-24,-32,-28,-55,-24xm78,-108r-13,68v35,4,73,-3,73,-37v0,-30,-29,-32,-60,-31","w":209,"k":{"T":9,"A":2,"U":3,"V":5,"W":5,"X":4,"Y":8,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":1,"w":1,"y":1,"-":-4,",":5,".":5}},"C":{"d":"207,-194v-63,-26,-140,16,-133,89v-6,58,61,76,110,56r5,42v-13,6,-35,11,-64,11v-64,0,-107,-39,-107,-103v0,-106,104,-172,203,-137","w":209,"k":{"T":-1,"A":-3,"J":-2,"C":9,"G":9,"O":9,"Q":9,"V":-2,"W":-2,"X":-2,"Y":-1,"M":-3,"a":4,"g":4,"c":2,"d":2,"e":2,"o":2,"q":2,"u":2,"v":6,"w":6,"y":6,"z":-4,"-":1,")":-3,"]":-3,"}":-3}},"D":{"d":"240,-142v-4,93,-62,146,-166,144v-29,0,-55,-3,-67,-5r45,-236v92,-16,192,0,188,97xm67,-41v72,11,117,-36,117,-101v0,-47,-37,-68,-86,-59","w":245,"k":{"T":13,"A":5,"V":3,"W":3,"X":4,"Y":16,"a":-3,"f":-5,"g":-3,"b":-1,"h":-1,"k":-1,"l":-1,"j":2,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"t":-4,"u":-1,"v":-2,"w":-2,"y":-2,"x":4,"s":-1,":":1,";":1,"-":-5,",":6,".":6}},"E":{"d":"173,-147r-8,44r-87,0r-11,59r97,0r-8,44r-149,0r46,-243r144,0r-9,45r-92,0r-10,51r87,0","w":186,"k":{"V":-2,"W":-2,"Y":-1,"a":2,"f":-1,"g":2,"j":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"u":1,"v":4,"w":4,"y":4,"z":-1,",":3,".":3}},"F":{"d":"7,0r46,-243r142,0r-9,45r-90,0r-11,57r85,0r-9,43r-84,0r-18,98r-52,0","w":183,"k":{"A":22,"J":28,"C":4,"G":4,"O":4,"Q":4,"X":4,"M":3,"a":13,"g":12,"b":4,"h":4,"k":4,"l":4,"i":5,"m":5,"n":5,"p":5,"r":5,"c":9,"d":9,"e":9,"o":9,"q":9,"u":7,"v":5,"w":5,"y":5,"x":11,"s":6,":":4,";":4,",":21,".":21}},"G":{"d":"222,-191v-66,-30,-148,11,-148,88v0,51,45,72,89,57r10,-51r-38,0r8,-41r88,0r-24,127v-18,6,-47,14,-78,14v-65,1,-109,-38,-112,-102v-5,-109,118,-173,221,-135","w":242,"k":{"T":4,"J":-2,"V":5,"W":5,"Y":5,"M":-1,"a":-1,"v":4,"w":4,"y":4}},"H":{"d":"53,-243r52,0r-18,95r88,0r18,-95r52,0r-46,243r-52,0r19,-102r-88,0r-19,102r-52,0","w":239,"k":{"f":-1,"t":-1,"z":-1}},"I":{"d":"52,-243r52,0r-46,243r-52,0","w":98,"k":{"f":-1,"t":-1,"z":-1}},"J":{"d":"70,-89r29,-154r52,0r-31,161v-10,77,-64,97,-133,80r10,-44v37,9,64,5,73,-43","w":143,"k":{"A":4,"v":-4,"w":-4,"y":-4,")":-5,"]":-5,"}":-5}},"K":{"d":"7,0r46,-243r51,0r-19,109v28,-39,59,-72,89,-109r64,0r-98,105r56,138r-56,0r-41,-105r-26,24r-15,81r-51,0","w":212,"k":{"A":5,"J":-4,"C":16,"G":16,"O":16,"Q":16,"U":6,"V":2,"W":2,"Y":-2,"S":3,"Z":-4,"a":8,"g":9,"c":10,"d":10,"e":10,"o":10,"q":10,"u":7,"v":12,"w":12,"y":12,"-":11,")":-5,"]":-5,"}":-5,"\"":-2,"'":-2,",":-3,".":-3}},"L":{"d":"7,0r46,-243r52,0r-38,198r94,0r-9,45r-145,0","w":175,"k":{"T":35,"A":-5,"J":-3,"C":15,"G":15,"O":15,"Q":15,"U":14,"V":23,"W":23,"X":1,"Y":35,"M":-1,"Z":-3,"g":1,"j":-2,"c":5,"d":5,"e":5,"o":5,"q":5,"u":3,"v":16,"w":16,"y":16,"x":-3,"z":-3,"-":8,"\"":48,"'":48}},"M":{"d":"260,0r-50,0r29,-195v-28,69,-59,128,-91,191r-40,0r-15,-191r-44,195r-48,0r61,-243r69,0r12,170r2,0v22,-63,50,-113,77,-170r71,0","w":295,"k":{"C":3,"G":3,"O":3,"Q":3,"j":-3}},"N":{"d":"55,0r-48,0r46,-243r61,0r32,93v11,30,14,58,23,83v2,-52,18,-124,28,-176r48,0r-46,243r-54,0r-33,-97v-12,-32,-16,-56,-25,-84","w":239,"k":{"f":-1,"t":-1,"z":-1}},"O":{"d":"17,-97v0,-79,52,-150,133,-150v64,0,98,44,98,102v1,80,-50,150,-132,149v-63,0,-99,-44,-99,-101xm123,-39v49,0,70,-61,70,-105v0,-30,-11,-59,-49,-59v-49,0,-71,60,-72,104v0,34,16,60,51,60","w":253,"k":{"T":13,"A":5,"V":3,"W":3,"X":4,"Y":16,"a":-3,"f":-5,"g":-3,"b":-1,"h":-1,"k":-1,"l":-1,"j":2,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"t":-4,"u":-1,"v":-2,"w":-2,"y":-2,"x":4,"s":-1,":":1,";":1,"-":-5,",":6,".":6}},"P":{"d":"206,-177v-3,68,-61,97,-132,90r-16,87r-51,0r45,-238v63,-14,157,-10,154,61xm96,-202r-14,72v35,9,72,-11,72,-42v0,-31,-32,-33,-58,-30","w":201,"k":{"T":5,"A":21,"J":27,"X":12,"Z":10,"B":-2,"D":-2,"E":-2,"F":-2,"H":-2,"I":-2,"K":-2,"L":-2,"N":-2,"P":-2,"R":-2,"a":5,"g":7,"i":1,"m":1,"n":1,"p":1,"r":1,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-7,"u":1,"v":-5,"w":-5,"y":-5,"s":1,":":4,";":4,"-":3,")":5,"]":5,"}":5,",":30,".":30}},"Q":{"d":"151,-247v137,0,115,206,21,236v13,7,36,9,56,14r-18,41v-41,-12,-77,-30,-108,-41v-47,-3,-85,-40,-85,-101v0,-77,54,-149,134,-149xm123,-39v49,-1,69,-61,70,-106v0,-27,-10,-58,-48,-58v-51,0,-72,61,-73,105v0,34,16,59,51,59","w":253,"k":{"T":13,"A":5,"V":3,"W":3,"X":4,"Y":16,"a":-3,"f":-5,"g":-3,"b":-1,"h":-1,"k":-1,"l":-1,"j":2,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"t":-4,"u":-1,"v":-2,"w":-2,"y":-2,"x":4,"s":-1,":":1,";":1,"-":-5,",":6,".":6}},"R":{"d":"53,-238v58,-12,155,-13,155,55v0,37,-26,58,-55,70v31,7,23,91,32,113r-53,0v-2,-6,-5,-27,-7,-57v-3,-37,-17,-40,-49,-39r-18,96r-51,0xm97,-202r-13,67v38,3,70,-9,70,-40v0,-27,-33,-33,-57,-27","w":209,"k":{"T":5,"A":-4,"U":3,"V":3,"W":3,"X":-1,"Y":8,"a":6,"g":6,"b":-2,"h":-2,"k":-2,"l":-2,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-3,"u":2,"v":-2,"w":-2,"y":-2}},"S":{"d":"113,-69v-6,-36,-91,-47,-83,-98v-8,-70,101,-95,153,-67r-16,43v-15,-14,-82,-17,-82,15v0,14,14,23,35,34v30,16,48,35,48,64v0,82,-116,99,-168,65r17,-43v23,16,93,28,96,-13","w":183,"k":{"A":2,"J":-2,"C":3,"G":3,"O":3,"Q":3,"X":-1,"a":-4,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"v":8,"w":8,"y":8,"x":3}},"T":{"d":"51,0r37,-197r-64,0r9,-46r180,0r-8,46r-65,0r-37,197r-52,0","w":189,"k":{"i":19,"T":-9,"A":22,"J":17,"C":6,"G":6,"O":6,"Q":6,"V":-13,"W":-13,"X":-10,"Y":-12,"S":-2,"a":29,"g":28,"m":19,"n":19,"p":19,"r":19,"c":26,"d":26,"e":26,"o":26,"q":26,"u":21,"v":15,"w":15,"y":15,"x":15,"z":18,"s":25,":":8,";":8,"-":24,")":-9,"]":-9,"}":-9,"\"":-4,"'":-4,",":25,".":25}},"U":{"d":"52,-243r52,0v-9,57,-29,106,-29,168v0,20,12,35,35,35v27,0,44,-18,53,-63r27,-140r52,0v-23,100,-20,247,-139,247v-63,0,-90,-46,-77,-111","w":235,"k":{"A":6,"S":1,"f":-5,"t":-3,"x":2}},"V":{"d":"119,0r-60,0r-30,-243r53,0r18,190v25,-64,58,-128,86,-190r58,0","w":219,"k":{"T":-8,"A":19,"J":13,"C":5,"G":5,"O":5,"Q":5,"Y":-1,"M":3,"S":1,"a":18,"g":18,"i":8,"m":8,"n":8,"p":8,"r":8,"c":14,"d":14,"e":14,"o":14,"q":14,"u":9,"v":1,"w":1,"y":1,"x":9,"z":9,"s":12,":":8,";":8,"-":13,")":-7,"]":-7,"}":-7,"\"":-3,"'":-3,",":23,".":23}},"W":{"d":"100,0r-58,0r-9,-243r53,0r-1,187r72,-187r57,0r-2,186r26,-78r42,-108r55,0r-107,243r-56,0r-2,-100v-1,-27,2,-56,1,-80v-18,60,-46,124,-71,180","w":311,"k":{"T":-8,"A":19,"J":13,"C":5,"G":5,"O":5,"Q":5,"Y":-1,"M":3,"S":1,"a":18,"g":18,"i":8,"m":8,"n":8,"p":8,"r":8,"c":14,"d":14,"e":14,"o":14,"q":14,"u":9,"v":1,"w":1,"y":1,"x":9,"z":9,"s":12,":":8,";":8,"-":13,")":-7,"]":-7,"}":-7,"\"":-3,"'":-3,",":23,".":23}},"X":{"d":"186,0r-55,0r-30,-90r-53,90r-63,0r91,-124r-43,-119r55,0r27,87v17,-33,33,-57,51,-87r62,0r-88,120","w":204,"k":{"T":-5,"A":6,"J":-2,"C":12,"G":12,"O":12,"Q":12,"V":-7,"W":-7,"X":-6,"Y":-8,"Z":-2,"a":9,"g":9,"c":8,"d":8,"e":8,"o":8,"q":8,"t":-1,"u":6,"v":12,"w":12,"y":12,"s":2,"-":8,")":-6,"]":-6,"}":-6,"\"":-3,"'":-3,",":-1,".":-1}},"Y":{"d":"106,0r-52,0r19,-99r-47,-144r55,0r26,106r61,-106r62,0r-105,143","w":205,"k":{"i":16,"A":29,"J":24,"C":16,"G":16,"O":16,"Q":16,"U":5,"V":1,"W":1,"X":6,"M":7,"S":7,"B":6,"D":6,"E":6,"F":6,"H":6,"I":6,"K":6,"L":6,"N":6,"P":6,"R":6,"a":39,"g":35,"b":5,"h":5,"k":5,"l":5,"j":9,"m":16,"n":16,"p":16,"r":16,"c":32,"d":32,"e":32,"o":32,"q":32,"t":12,"u":26,"v":17,"w":17,"y":17,"x":20,"z":24,"s":30,":":13,";":13,"-":26,")":-8,"]":-8,"}":-8,"\"":-2,"'":-2,",":36,".":36}},"Z":{"d":"-9,0r5,-30r141,-168r-98,0r9,-45r168,0r-6,32r-139,166r109,0r-9,45r-180,0","w":199,"k":{"A":-4,"J":-1,"C":9,"G":9,"O":9,"Q":9,"V":-3,"W":-3,"X":-3,"Y":-2,"a":8,"g":7,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"v":2,"w":2,"y":2,"-":1,")":-2,"]":-2,"}":-2}},"[":{"d":"72,40r-72,0r55,-287r72,0r-6,30r-33,0r-44,227r34,0","w":113,"k":{"T":-8,"A":4,"C":5,"G":5,"O":5,"Q":5,"V":-8,"W":-8,"X":-3,"Y":-6,"j":-10,"c":2,"d":2,"e":2,"o":2,"q":2}},"\\":{"d":"113,14r-36,0r-58,-261r35,0","w":121},"]":{"d":"45,-247r73,0r-55,287r-72,0r5,-30r34,0r43,-227r-33,0","w":113},"^":{"d":"196,-64r-39,0r-53,-128r-53,128r-38,0r75,-170r33,0","w":214},"_":{"d":"-19,27r180,0r-4,18r-180,0","w":180},"a":{"d":"168,0r-48,0v0,-10,1,-22,2,-35v-30,60,-113,50,-113,-22v0,-59,40,-123,126,-123v21,0,43,4,58,9v-9,53,-26,111,-25,171xm84,-38v25,7,48,-62,51,-101v-43,-12,-71,35,-72,72v0,17,7,29,21,29","w":199},"b":{"d":"53,-256r52,0r-20,101v13,-15,32,-25,54,-25v37,0,53,31,53,62v0,57,-37,122,-116,122v-57,0,-68,-34,-59,-81xm115,-138v-28,-1,-49,42,-48,83v0,13,7,20,19,20v30,0,52,-42,52,-73v0,-17,-7,-30,-23,-30","w":201,"k":{"T":22,"g":-2,"j":5,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"v":3,"w":3,"y":3,"x":5,"z":3,"-":-5,"\"":8,"'":8,",":5,".":5}},"c":{"d":"134,-45r1,39v-50,24,-125,4,-125,-62v0,-74,72,-130,151,-106r-13,40v-42,-19,-83,19,-83,60v0,40,44,41,69,29","w":156,"k":{"T":8,"a":4,"f":-3,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-5,"v":-4,"w":-4,"y":-4,"x":-3,"z":-1,"s":-3,",":3,".":3}},"d":{"d":"160,-256r51,0r-35,188v-4,22,-8,47,-9,68r-47,0r2,-28v-34,52,-113,41,-113,-35v0,-68,58,-132,135,-113xm87,-38v30,0,47,-60,50,-97v-38,-22,-75,23,-74,64v0,21,9,33,24,33","w":201,"k":{"v":-1,"w":-1,"y":-1,",":4,".":4}},"e":{"d":"59,-68v1,40,62,37,89,20r4,38v-61,30,-142,13,-142,-61v0,-54,39,-109,103,-109v36,0,61,20,61,53v0,45,-44,61,-115,59xm125,-127v0,-9,-7,-15,-19,-15v-24,0,-38,20,-42,36v41,0,61,-4,61,-21","w":180,"k":{"T":19,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":2,"w":2,"y":2,"x":1,"-":-2,",":4,".":4}},"f":{"d":"62,0r-51,0r26,-137r-23,0r7,-39v11,-1,25,4,25,-9v0,-47,53,-92,107,-70r-9,41v-27,-11,-48,10,-49,38r35,0r-8,39r-34,0","w":118,"k":{"a":3,"t":-4,"v":-2,"w":-2,"y":-2,":":-10,";":-10,")":-20,"]":-20,"}":-20,"\"":-19,"'":-19,",":10,".":10}},"g":{"d":"4,64r12,-40v44,24,103,6,101,-52v-30,49,-107,26,-107,-36v0,-58,41,-116,118,-116v25,0,46,4,65,12v-19,76,-13,177,-63,223v-30,27,-93,24,-126,9xm89,-41v31,2,43,-60,48,-96v-41,-15,-72,26,-72,65v0,18,8,31,24,31","w":200,"k":{"T":17,"a":2,"g":4,",":5,".":5}},"h":{"d":"57,0r-52,0r48,-256r52,0r-19,103v26,-36,103,-40,100,21v-2,47,-15,89,-22,132r-52,0v7,-39,18,-75,21,-118v0,-12,-5,-20,-18,-20v-42,2,-49,92,-58,138","w":202,"k":{"T":25,"u":3,"v":4,"w":4,"y":4,"x":3,"\"":12,"'":12}},"i":{"d":"57,0r-52,0r33,-176r52,0xm102,-227v0,18,-14,29,-32,29v-14,0,-25,-10,-25,-25v-2,-36,57,-40,57,-4","w":95,"k":{")":-1,"]":-1,"}":-1}},"j":{"d":"44,-176r51,0r-32,170v-6,59,-37,91,-97,78r6,-39v24,3,32,1,39,-37xm74,-198v-14,0,-25,-10,-25,-25v-2,-36,57,-41,56,-4v0,18,-14,29,-31,29","w":99,"k":{"a":1,"j":-4,")":-2,"]":-2,"}":-2,",":4,".":4}},"k":{"d":"56,0r-51,0r48,-256r52,0r-29,153r61,-73r64,0r-75,73r49,103r-58,0r-31,-75r-19,18","w":190,"k":{"T":13,"a":10,"g":9,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":9,"d":9,"e":9,"o":9,"q":9,"u":3,"v":1,"w":1,"y":1,":":-1,";":-1,",":-1,".":-1}},"l":{"d":"57,0r-52,0r49,-256r51,0","w":95,"k":{"v":-1,"w":-1,"y":-1,",":4,".":4}},"m":{"d":"55,0r-50,0r31,-176r44,0r-3,28v21,-42,98,-42,103,1v25,-43,103,-49,103,14v0,47,-15,89,-22,133r-50,0r20,-118v0,-12,-5,-21,-17,-21v-39,2,-48,93,-56,139r-50,0r20,-117v0,-12,-3,-22,-16,-22v-41,2,-49,93,-57,139","w":299,"k":{"T":25,"u":3,"v":4,"w":4,"y":4,"x":3,"\"":12,"'":12}},"n":{"d":"56,0r-52,0r32,-176r46,0v0,9,-4,22,-2,29v27,-44,107,-49,106,15v-1,49,-15,88,-22,132r-52,0v6,-39,18,-74,20,-117v0,-13,-4,-21,-17,-21v-39,-1,-51,93,-59,138","w":202,"k":{"T":25,"u":3,"v":4,"w":4,"y":4,"x":3,"\"":12,"'":12}},"o":{"d":"116,-180v47,0,74,32,74,72v0,64,-44,112,-105,112v-45,0,-74,-29,-74,-73v0,-61,42,-111,105,-111xm109,-141v-30,0,-45,44,-45,71v0,21,11,34,29,34v28,0,44,-41,44,-71v0,-16,-7,-34,-28,-34","w":201,"k":{"T":22,"g":-2,"j":5,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"v":3,"w":3,"y":3,"x":5,"z":3,"-":-5,"\"":8,"'":8,",":5,".":5}},"p":{"d":"42,71r-52,0r45,-248r46,0r-3,27v14,-19,36,-30,57,-30v38,0,57,31,57,67v0,72,-61,138,-136,110xm115,-138v-31,0,-47,56,-51,94v37,29,75,-20,74,-65v0,-14,-6,-29,-23,-29","w":202,"k":{"T":22,"g":-2,"j":5,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"v":3,"w":3,"y":3,"x":5,"z":3,"-":-5,"\"":8,"'":8,",":5,".":5}},"q":{"d":"149,71r-51,0r20,-97v-32,51,-109,34,-109,-37v0,-56,39,-117,120,-117v26,0,48,5,65,10xm85,-38v34,0,47,-61,52,-99v-43,-16,-74,28,-74,68v0,21,9,31,22,31","w":201,"k":{"T":16,"a":4,"g":4,"j":-2,"x":3,",":4,".":4}},"r":{"d":"57,0r-52,0r19,-105v5,-27,7,-56,9,-71r45,0v0,11,-4,26,-2,36v16,-26,33,-43,66,-40r-10,51v-64,-9,-63,74,-75,129","w":133,"k":{"T":9,"a":3,"f":-9,"g":1,"t":-9,"v":-8,"w":-8,"y":-8,"x":-4,"z":-3,":":-1,";":-1,"-":1,",":15,".":15}},"s":{"d":"72,-127v9,23,66,32,61,69v7,59,-92,77,-134,48r12,-36v13,8,66,23,68,-4v-4,-25,-66,-34,-59,-70v-7,-53,80,-73,123,-51r-13,36v-11,-6,-59,-15,-58,8","w":149,"k":{"T":15,"-":1,",":4,".":4}},"t":{"d":"51,-210r53,-14r-9,48r38,0r-8,39r-38,0r-14,82v-3,15,15,17,29,14r-6,41v-31,12,-81,-1,-77,-34v4,-33,13,-71,18,-103r-23,0r8,-39r22,0","w":125,"k":{"a":1,"g":3,"c":2,"d":2,"e":2,"o":2,"q":2,"v":-3,"w":-3,"y":-3,",":3,".":3}},"u":{"d":"144,-176r51,0r-31,176r-46,0r3,-29v-30,43,-106,51,-106,-16v0,-46,16,-89,22,-131r52,0r-21,118v0,11,5,20,18,20v42,-1,49,-92,58,-138","w":201,"k":{"T":16,"a":4,"g":4,"j":-2,"x":3,",":4,".":4}},"v":{"d":"17,-176r53,0r14,125v13,-36,38,-88,55,-125r58,0r-98,176r-53,0","w":184,"k":{"T":12,"a":8,"g":8,"j":4,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-1,"v":-6,"w":-6,"y":-6,"s":1,"-":3,",":16,".":16}},"w":{"d":"18,-176r53,0r-1,131v16,-46,37,-88,56,-131r43,0r6,131v14,-46,31,-89,49,-131r52,0r-86,176r-48,0r-7,-118v-17,49,-32,76,-51,118r-49,0","w":263,"k":{"T":12,"a":8,"g":8,"j":4,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-1,"v":-6,"w":-6,"y":-6,"s":1,"-":3,",":16,".":16}},"x":{"d":"18,-176r57,0v8,18,13,39,22,56r38,-56r60,0r-74,86r41,90r-57,0v-9,-19,-14,-42,-24,-60v-9,18,-26,43,-39,60r-59,0r76,-91","w":179,"k":{"T":11,"a":6,"f":-2,"g":6,"c":6,"d":6,"e":6,"o":6,"q":6,"t":-7,"v":-8,"w":-8,"y":-8,"-":2}},"y":{"d":"16,-176r54,0r17,119r48,-119r55,0v-52,90,-86,229,-187,257r-12,-44v23,-9,57,-24,59,-53","w":178,"k":{"T":12,"a":8,"g":8,"j":4,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-1,"v":-6,"w":-6,"y":-6,"s":1,"-":3,",":16,".":16}},"z":{"d":"-9,0r5,-31r58,-62r43,-41r-75,0r8,-42r137,0r-6,33r-56,59r-43,42r83,0r-8,42r-146,0","w":162,"k":{"T":11,"f":-5,"t":-2,"v":-4,"w":-4,"y":-4}},"{":{"d":"18,2v-1,-23,15,-53,16,-74v0,-10,-7,-18,-23,-18r5,-27v48,-3,31,-46,39,-81v9,-38,33,-51,75,-49r-6,30v-60,-5,-15,112,-75,114v44,9,10,67,8,97v0,12,9,17,24,16r-5,30v-33,2,-58,-6,-58,-38","w":113,"k":{"T":-8,"A":4,"C":5,"G":5,"O":5,"Q":5,"V":-8,"W":-8,"X":-3,"Y":-6,"j":-10,"c":2,"d":2,"e":2,"o":2,"q":2}},"|":{"d":"31,-270r36,0r0,360r-36,0r0,-360","w":86},"}":{"d":"100,-209v1,23,-15,53,-16,74v0,10,7,18,23,18r-5,28v-48,2,-31,46,-39,81v-9,38,-33,50,-75,48r6,-30v59,5,15,-112,75,-114v-46,-8,-10,-66,-8,-96v1,-13,-9,-19,-24,-17r5,-30v33,-2,58,6,58,38","w":113},"~":{"d":"152,-67v-27,0,-57,-32,-84,-32v-11,0,-16,13,-17,30r-34,0v0,-48,21,-67,50,-67v25,0,62,30,84,31v9,0,14,-7,15,-29r34,0v2,51,-21,67,-48,67","w":214},"'":{"d":"42,-249r48,0r-26,100r-33,0","w":71,"k":{"A":13,"J":23,"X":-2,"Y":-5,"f":-16,"b":-7,"h":-7,"k":-7,"l":-7,"t":-13,",":48,".":48}},"`":{"d":"43,-252r50,0r27,55r-37,0","w":142},"\u00a0":{"w":66}}});;roundedCorners=function(){var divs=document.getElementsByTagName('div');var rounded_divs=[];for(var i=0;i<divs.length;i++){if(/\brounded\b/.exec(divs[i].className)){rounded_divs[rounded_divs.length]=divs[i];}}
for(var i=0;i<rounded_divs.length;i++){var original=rounded_divs[i];var tr=document.createElement('div');tr.className='r';original.parentNode.replaceChild(tr,original);var tl=document.createElement('div');tl.className='r';var br=document.createElement('div');br.className='r';tr.appendChild(tl);tl.appendChild(br);br.appendChild(original);}};showError=function(msg){$(window).ready(function(){if($('#errorDisplay').length!=0){$('#errorDisplay').html(msg);}else{$('<div id="errorDisplay" class="curved"/>').html(msg).insertBefore($('div.form'));}
$('#errorDisplay').customFadeIn("slow");});}
showSuccess=function(msg){$(window).ready(function(){if($('#successDisplay').length!=0){$('#successDisplay').html(msg);}else{if($('#formTop').length>0){$('<div id="successDisplay" class="curved"/>').html(msg).insertBefore($('#formTop'));}else{$('<div id="successDisplay" class="curved"/>').html(msg).insertBefore($('div.form'));}}
$('#successDisplay').customFadeIn("slow");});}
showMessage=function(msg){$(window).ready(function(){if($('#messageDisplay').length!=0){$('#messageDisplay').html(msg);}else{$('<div id="messageDisplay" class="curved"/>').html(msg).insertBefore($('#aspnetForm'));}
$('#messageDisplay').customFadeIn("slow");});}
/*
 * jQuery Hoverbox 1.0
 * http://koteako.com/hoverbox/
 *
 * Copyright (c) 2009 Eugeniy Kalinin
 * Dual licensed under the MIT and GPL licenses.
 * http://koteako.com/hoverbox/license/
 */
jQuery.fn.hoverbox=function(a){var b=jQuery.extend({id:"tooltip",top:0,left:15},a);var d;function c(e){if(!d){d=$('<div style="position:absolute" id="'+b.id+'"></div>').appendTo(document.body).hide()}if(e){d.css({top:(e.pageY-b.top)+"px",left:(e.pageX+b.left)+"px"})}return d}this.each(function(){$(this).hover(function(f){if(this.title){this.t=this.title;this.title="";this.alt="";c(f).html(this.t).fadeIn("fast")}},function(){if(this.t){this.title=this.t;c().hide()}});$(this).mousemove(c)})};