/* From Cache */
/* Generated on Sun Sep 5 17:08:33 EDT 2010 */

/* scripts/VectorGraphicsSVG.js */

function VectorGraphics(container,width,height){width=width||320;height=height||200;var rootElement=document.createElementNS(VectorGraphics.NAMESPACE,'svg');rootElement.setAttribute('width',width);rootElement.setAttribute('height',height);var group=new vgGroup(0,0,width,height);rootElement.appendChild(group.node);container.appendChild(rootElement);return group;};VectorGraphics.nextID=1;VectorGraphics.TYPE='svg';VectorGraphics.NAMESPACE='http://www.w3.org/2000/svg';VectorGraphics.identityMatrix=function(){return[[1,0,0],[0,1,0],[0,0,1]];};VectorGraphics.dotProduct=function(m1,m2){if(arguments.length<2)var m2=VectorGraphics.identityMatrix();var mResult=[[0,0,0],[0,0,0],[0,0,0]];for(var i=0;i<3;i++)
for(var j=0;j<3;j++)
for(var k=0;k<3;k++)
mResult[i][j]+=m1[i][k]*m2[k][j];return mResult;};function vgShape(){};vgShape.prototype.TYPE='shape';vgShape.prototype._initShape=function(){this.parent=null;this.matrix=VectorGraphics.identityMatrix();};vgShape.prototype.remove=function(){if(!!this.parent)this.parent.removeShape(this);return this;};vgShape.prototype.setAttr=function(attr,val){if(typeof attr=='object'){for(var a in attr)this._setAttribute(a,attr[a]);}else if(arguments.length==2){this._setAttribute(attr,val);}
return this;};vgShape.prototype._setAttribute=function(attr,val){var setter=this._SETTERS[attr.toLowerCase()];if(!!setter){this[setter](val);}else{this.node.setAttribute(attr,val);}};vgShape.prototype.setOpacity=function(opacity){this._setAttribute('opacity',opacity);return this;};vgShape.prototype.setFill=function(fill){if(typeof fill=='object'&&fill.TYPE=='linearGradient'&&fill._id){this.node.setAttribute('fill','url(#'+fill._id+')');}else
this.node.setAttribute('fill',fill);return this;};vgShape.prototype.setStroke=function(stroke){if(typeof stroke=='object'&&stroke.TYPE=='linearGradient'&&stroke._id){this.node.setAttribute('stroke','url(#'+stroke._id+')');}else
this.node.setAttribute('stroke',stroke);return this;};vgShape.prototype.clearTransform=function(){this.node.setAttribute('transform',null);this.matrix=VectorGraphics.identityMatrix();return this;};vgShape.prototype.clearTranslation=function(noUpdate){this.matrix[0][2]=this.matrix[1][2]=0;if(!noUpdate)this.setTransformMatrix(this.matrix);return this;};vgShape.prototype.clearRotationScaleSkew=function(noUpdate){this.matrix[0][0]=this.matrix[1][1]=1;this.matrix[0][1]=this.matrix[1][0]=0;if(!noUpdate)this.setTransformMatrix(this.matrix);return this;};vgShape.prototype.setTransformMatrix=function(matrix){this.node.setAttribute('transform','matrix('+matrix[0][0]+','+matrix[1][0]+','+matrix[0][1]+','+matrix[1][1]+','+matrix[0][2]+','+matrix[1][2]+')');this.matrix=matrix;return this;};vgShape.prototype.appendTransformMatrix=function(matrix,noUpdate){if(noUpdate){this.matrix=VectorGraphics.dotProduct(this.matrix,matrix);}else
this.setTransformMatrix(VectorGraphics.dotProduct(this.matrix,matrix));};vgShape.prototype.rotate=function(radians,cx,cy){var aroundPoint=(arguments.length>1);if(aroundPoint){this.translate(cx,cy);}
var s=Math.sin(radians);var c=Math.cos(radians);this.appendTransformMatrix([[c,-s,0],[s,c,0],[0,0,1]],aroundPoint);if(aroundPoint){this.translate(-cx,-cy);}
return this;};vgShape.prototype.skew=function(radiansX,radiansY){var tx=(!radiansX?0:Math.tan(radiansX));var ty=(!radiansY?0:Math.tan(radiansY));this.appendTransformMatrix([[1,tx,0],[ty,1,0],[0,0,1]]);return this;};vgShape.prototype.scale=function(sx,sy){switch(arguments.length){case 0:return;case 1:var sy=sx;}
this.appendTransformMatrix([[sx,0,0],[0,sy,0],[0,0,1]]);return this;};vgShape.prototype.translate=function(tx,ty){switch(arguments.length){case 0:return;case 1:var ty=tx;}
this.appendTransformMatrix([[1,0,tx],[0,1,ty],[0,0,1]]);return this;};function vgGroup(x,y,width,height){this._initShape();this.node=document.createElementNS(VectorGraphics.NAMESPACE,'g');this.setX(x);this.setY(y);this.setWidth(width);this.setHeight(height);this.shapes=[];this._defs=null;};vgGroup.prototype=new vgShape();vgGroup.prototype.TYPE='group';vgGroup.prototype._SETTERS={'x':'setX','y':'setY','width':'setWidth','height':'setHeight'};vgGroup.prototype.setX=function(x){this.x=parseFloat(x,10);this.node.setAttribute('x',this.x);return this;};vgGroup.prototype.setY=function(y){this.y=parseFloat(y,10);this.node.setAttribute('y',this.y);return this;};vgGroup.prototype.setPosition=function(x,y){this.setX(x);this.setY(y);return this;};vgGroup.prototype.setWidth=function(width){this.width=parseFloat(width,10);this.node.setAttribute('width',this.width);return this;};vgGroup.prototype.setHeight=function(height){this.height=parseFloat(height,10);this.node.setAttribute('height',this.height);return this;};vgGroup.prototype.setSize=function(width,height){this.setWidth(width);this.setHeight(height);return this;};vgGroup.prototype._getDefs=function(){if(!this._defs){this._defs=document.createElementNS(VectorGraphics.NAMESPACE,'defs');this.node.appendChild(this._defs);}
return this._defs;};vgGroup.prototype.appendShape=function(shape){shape.remove();this.node.appendChild(shape.node);shape.parent=this;this.shapes.push(shape);return shape;};vgGroup.prototype.removeShape=function(shape){var shapes=this.shapes;for(var i=shapes.length-1;i>=0;i--){if(shapes[i]==shape){this.node.removeChild(shape.node);shape.parent=null;shapes.splice(i,1);break;}}
return shape;};vgGroup.prototype.circle=function(cx,cy,r,params){if(arguments.length<3)return null;var shape=new vgCircle(cx,cy,r);shape.setAttr('fill','none');if(!!params)shape.setAttr(params);return this.appendShape(shape);};vgGroup.prototype.ellipse=function(cx,cy,rx,ry,params){if(arguments.length<3)return null;var shape=new vgEllipse(cx,cy,rx,ry);shape.setAttr('fill','none');if(!!params)shape.setAttr(params);return this.appendShape(shape);};vgGroup.prototype.g=vgGroup.prototype.group=function(x,y,width,height,params){var shape=new vgGroup(x||0,y||0,width||this.width,height||this.height);shape._defs=this._defs;if(!!params)shape.setAttr(params);return this.appendShape(shape);};vgGroup.prototype.img=vgGroup.prototype.image=function(href,x,y,width,height,params){if(arguments.length<5)return null;var shape=new vgImage(href,x,y,width,height);if(!!params)shape.setAttr(params);return this.appendShape(shape);};vgGroup.prototype.line=function(x1,y1,x2,y2,params){if(arguments.length<4)return null;var shape=new vgLine(x1,y1,x2,y2);shape.setAttr('stroke','#000');if(!!params)shape.setAttr(params);return this.appendShape(shape);};vgGroup.prototype.linearGradient=function(){var shape=new vgLinearGradient();this._getDefs().appendChild(shape.node);return shape;};vgGroup.prototype.path=function(params){var shape=new vgPath();shape.setAttr(params||{stroke:'#000'});return this.appendShape(shape);};vgGroup.prototype.rect=vgGroup.prototype.rectangle=function(x,y,width,height,r,params){if(arguments.length<3)return null;var shape=new vgRectangle(x,y,width,arguments.length<4?width:height,r||0);shape.setAttr('fill','none');if(!!params)shape.setAttr(params);return this.appendShape(shape);};vgGroup.prototype.text=function(text,x,y,params){if(!arguments.length)return null;var shape=new vgText(text,x||0,y||0);shape.setAttr('font-size','10pt');shape.setAttr('font-family','Arial, Helvetica, sans-serif');shape.setAttr('fill','#000');if(!!params)shape.setAttr(params);return this.appendShape(shape);};function vgCircle(cx,cy,r){this._initShape();this.node=document.createElementNS(VectorGraphics.NAMESPACE,'circle');this.setCenterX(cx);this.setCenterY(cy);this.setRadius(r);};vgCircle.prototype=new vgShape();vgCircle.prototype.TYPE='circle';vgCircle.prototype._SETTERS={cx:'setCenterX',cy:'setCenterY',r:'setRadius',fill:'setFill',stroke:'setStroke'};vgCircle.prototype.setCenterX=function(cx){this.cx=parseFloat(cx,10);this.node.setAttribute('cx',this.cx);return this;};vgCircle.prototype.setCenterY=function(cy){this.cy=parseFloat(cy,10);this.node.setAttribute('cy',this.cy);return this;};vgCircle.prototype.setCenter=function(cx,cy){this.setCenterX(cx);this.setCenterY(cy);return this;};vgCircle.prototype.setRadius=function(r){this.r=parseFloat(r,10);this.node.setAttribute('r',this.r);return this;};function vgEllipse(cx,cy,rx,ry){this._initShape();this.node=document.createElementNS(VectorGraphics.NAMESPACE,'ellipse');this.setCenterX(cx);this.setCenterY(cy);this.setRadius(rx,ry);};vgEllipse.prototype=new vgShape();vgEllipse.prototype.TYPE='ellipse';vgEllipse.prototype._SETTERS={cx:'setCenterX',cy:'setCenterY',rx:'setRadiusX',ry:'setRadiusY',fill:'setFill',stroke:'setStroke'};vgEllipse.prototype.setCenterX=function(cx){this.cx=parseFloat(cx,10);this.node.setAttribute('cx',this.cx);return this;};vgEllipse.prototype.setCenterY=function(cy){this.cy=parseFloat(cy,10);this.node.setAttribute('cy',this.cy);return this;};vgEllipse.prototype.setCenter=function(cx,cy){this.setCenterX(cx);this.setCenterY(cy);return this;};vgEllipse.prototype.setRadiusX=function(rx){this.rx=parseFloat(rx,10);this.node.setAttribute('rx',this.rx);return this;};vgEllipse.prototype.setRadiusY=function(ry){this.ry=parseFloat(ry,10);this.node.setAttribute('ry',this.ry);return this;};vgEllipse.prototype.setRadius=function(rx,ry){this.setRadiusX(rx);this.setRadiusY(arguments.length>1?ry:rx);return this;};function vgImage(href,x,y,width,height){this._initShape();this.node=document.createElementNS(VectorGraphics.NAMESPACE,'image');this.node.setAttribute('preserveAspectRatio','none');this.setHref(href);this.setX(x);this.setY(y);this.setWidth(width);this.setHeight(height);};vgImage.prototype=new vgShape();vgImage.prototype.TYPE='image';vgImage.prototype._SETTERS={href:'setHref',src:'setHref',x:'setX',y:'setY',width:'setWidth',height:'setHeight'};vgImage.prototype.setHref=function(href){this.href=href;this.node.setAttributeNS('http://www.w3.org/1999/xlink','href',this.href);return this;};vgImage.prototype.setX=function(x){this.x=parseFloat(x,10);this.node.setAttribute('x',this.x);return this;};vgImage.prototype.setY=function(y){this.y=parseFloat(y,10);this.node.setAttribute('y',this.y);return this;};vgImage.prototype.setPosition=function(x,y){this.setX(x);this.setY(y);return this;};vgImage.prototype.setWidth=function(width){this.width=parseFloat(width,10);this.node.setAttribute('width',this.width);return this;};vgImage.prototype.setHeight=function(height){this.height=parseFloat(height,10);this.node.setAttribute('height',this.height);return this;};vgImage.prototype.setSize=function(width,height){this.setWidth(width);this.setHeight(height);return this;};function vgLine(x1,y1,x2,y2){this._initShape();this.node=document.createElementNS(VectorGraphics.NAMESPACE,'line');this.setX1(x1);this.setY1(y1);this.setX2(x2);this.setY2(y2);};vgLine.prototype=new vgShape();vgLine.prototype.TYPE='line';vgLine.prototype._SETTERS={x1:'setX1',y1:'setY1',x2:'setX2',y2:'setY2',stroke:'setStroke'};vgLine.prototype.setX1=function(x1){this.x1=parseFloat(x1,10);this.node.setAttribute('x1',this.x1);return this;};vgLine.prototype.setY1=function(y1){this.y1=parseFloat(y1,10);this.node.setAttribute('y1',this.y1);return this;};vgLine.prototype.setX2=function(x2){this.x2=parseFloat(x2,10);this.node.setAttribute('x2',this.x2);return this;};vgLine.prototype.setY2=function(y2){this.y2=parseFloat(y2,10);this.node.setAttribute('y2',this.y2);return this;};function vgLinearGradient(){this.node=document.createElementNS(VectorGraphics.NAMESPACE,'linearGradient');this.node.setAttribute('x1','0%');this.node.setAttribute('y1','0%');this.node.setAttribute('x2','0%');this.node.setAttribute('y2','100%');this._id='gradient_'+VectorGraphics.nextID++;this._stops=[];this.node.setAttribute('id',this._id);};vgLinearGradient.prototype.TYPE='linearGradient';vgLinearGradient.prototype.addStop=function(offset,color,opacity){var stop=document.createElementNS(VectorGraphics.NAMESPACE,'stop');stop.setAttribute('offset',Math.max(0,Math.min(1,parseFloat(offset,10))));stop.setAttribute('stop-color',color);var op=arguments.length>2?Math.max(0,Math.min(1,parseFloat(opacity,10))):1;if(op<1)stop.setAttribute('stop-opacity',op);this.node.appendChild(stop);return this;};function vgPath(node){this._initShape();this.node=node||document.createElementNS(VectorGraphics.NAMESPACE,'path');this.isAbsolute=true;this.isUpdating=true;this._ops=[];this.node.setAttribute('fill-rule','evenodd');this.x=0;this.y=0;this.x0=0;this.y0=0;};vgPath.prototype=new vgShape();vgPath.prototype.TYPE='path';vgPath.prototype._SETTERS={path:'setPath',p:'setPath',fill:'setFill',stroke:'setStroke'};vgPath.prototype.clone=function(){var clone=new vgPath(this.node.cloneNode(true));clone.isAbsolute=this.isAbsolute;clone.isUpdating=this.isUpdating;clone._ops=[];for(var i=this._ops.length-1;i>=0;i--)clone._ops[i]=this._ops[i];clone.x=this.x;clone.y=this.y;clone.x0=this.x0;clone.y0=this.y0;clone.appendTransformMatrix(this.matrix,true);return clone;};vgPath.prototype.absolutely=function(){this.isAbsolute=true;return this;};vgPath.prototype.relatively=function(){this.isAbsolute=false;return this;};vgPath.prototype.update=function(){this.setPath(this._ops.join(' '),true);return this;};vgPath.prototype.updating=function(){this.isUpdating=true;return this;};vgPath.prototype.noUpdating=function(){this.isUpdating=false;return this;};vgPath.prototype.setPath=function(path,parsed){if(!parsed)
this._parsePath(path);else
this.node.setAttribute('d',path);return this;};vgPath.prototype.append=function(op){this._ops.push(op);if(this.isUpdating)this.update();return this;};vgPath.prototype.moveTo=function(x,y){this.append((this.isAbsolute?'M':'m')+x+','+y);this.x=this.x0=x;this.y=this.y0=y;return this;};vgPath.prototype.lineTo=function(x,y){this.append((this.isAbsolute?'L':'l')+x+','+y);this.x=x;this.y=y;return this;};vgPath.prototype.curveTo=function(x1,y1,x2,y2,x3,y3){this.append((this.isAbsolute?'C':'c')+x1+','+y1+' '+x2+','+y2+' '+x3+','+y3);this.x=x3;this.y=y3;return this;};vgPath.prototype.arcTo=function(x,y,left,top,width,height,isClockwise){if(!this.isAbsolute){left+=this.x;top+=this.y;}
var rx=width/2;var ry=height/2;var cx=left+rx;var cy=top+ry;var angStart=Math.atan2((this.y-cy)/ry,(this.x-cx)/rx);if(angStart<0)angStart+=2*Math.PI;var angEnd=Math.atan2((y-cy)/ry,(x-cx)/rx);if(angEnd<=0)angEnd+=2*Math.PI;var angSweep=Math.abs(isClockwise?angStart-angEnd:angEnd-angStart);var isLargeAngle=(angSweep>Math.PI);var rotation=0;this.append((this.isAbsolute?'A':'a')+rx+','+ry+' '+rotation+' '+(isLargeAngle?1:0)+','+(isClockwise?1:0)+' '+x+','+y);this.x=x;this.y=y;return this;};vgPath.prototype.close=function(){this.append('z');this.x=this.x0;this.y=this.y0;return this;};vgPath.prototype._parsePath=function(path){var isUpdating=this.isUpdating;this.isUpdating=false;this.ops=[];var tokens=path.replace(/\s*([mclhvz])\s*/gi,',$1,').replace(/\s+/g,',').split(',');var len=tokens.length;var i=0;while(i<len){switch(tokens[i]){case'M':this.absolutely().moveTo(tokens[++i],tokens[++i]);break;case'm':this.relatively().moveTo(tokens[++i],tokens[++i]);break;case'L':this.absolutely().lineTo(tokens[++i],tokens[++i]);break;case'l':this.relatively().lineTo(tokens[++i],tokens[++i]);break;case'C':this.absolutely().curveTo(tokens[++i],tokens[++i],tokens[++i],tokens[++i],tokens[++i],tokens[++i]);break;case'c':this.relatively().curveTo(tokens[++i],tokens[++i],tokens[++i],tokens[++i],tokens[++i],tokens[++i]);break;case'H':this.absolutely().lineTo(tokens[++i],this.y);break;case'h':this.relatively().lineTo(tokens[++i],0);break;case'V':this.absolutely().lineTo(this.x,tokens[++i]);break;case'v':this.relatively().lineTo(0,tokens[++i]);break;case'Z':case'z':this.close();break;}
i++;}
this.update();this.isUpdating=isUpdating;};function vgRectangle(x,y,width,height,r){this._initShape();this.node=document.createElementNS(VectorGraphics.NAMESPACE,'rect');this.setX(x);this.setY(y);this.setWidth(width);this.setHeight(height);this.setRadius(r);};vgRectangle.prototype=new vgShape();vgRectangle.prototype.TYPE='rectangle';vgRectangle.prototype._SETTERS={x:'setX',y:'setY',width:'setWidth',height:'setHeight',r:'setRadius',rx:'setRadius',ry:'setRadius',fill:'setFill',stroke:'setStroke'};vgRectangle.prototype.setX=function(x){this.x=parseFloat(x,10);this.node.setAttribute('x',this.x);return this;};vgRectangle.prototype.setY=function(y){this.y=parseFloat(y,10);this.node.setAttribute('y',this.y);return this;};vgRectangle.prototype.setPosition=function(x,y){this.setX(x);this.setY(y);return this;};vgRectangle.prototype.setWidth=function(width){this.width=parseFloat(width,10);this.node.setAttribute('width',this.width);return this;};vgRectangle.prototype.setHeight=function(height){this.height=parseFloat(height,10);this.node.setAttribute('height',this.height);return this;};vgRectangle.prototype.setSize=function(width,height){this.setWidth(width);this.setHeight(height);return this;};vgRectangle.prototype.setRadius=function(r){this.r=parseFloat(r,10);this.node.setAttribute('rx',this.r);this.node.setAttribute('ry',this.r);return this;};function vgText(text,x,y){this._initShape();this.node=document.createElementNS(VectorGraphics.NAMESPACE,'text');this.node.setAttribute('alignment-baseline','middle');this.setText(text);this.setX(x);this.setY(y);};vgText.prototype=new vgShape();vgText.prototype.TYPE='text';vgText.prototype._SETTERS={text:'setText',x:'setX',y:'setY',fill:'setFill',stroke:'setStroke'};vgText.prototype.setText=function(text){var el=document.createElement('DIV');el.innerHTML=text;var frag=document.createDocumentFragment();for(var i=0,len=el.childNodes.length;i<len;i++){frag.appendChild(el.childNodes[i]);}
while(this.node.firstChild)this.node.removeChild(this.node.firstChild);this.node.appendChild(frag);this.text=text;return this;};vgText.prototype.setX=function(x){this.x=parseFloat(x,10);this.node.setAttribute('x',this.x);return this;};vgText.prototype.setY=function(y){this.y=parseFloat(y,10);this.node.setAttribute('y',this.y);return this;};vgText.prototype.setPosition=function(x,y){this.setX(x);this.setY(y);return this;};

/* /includes/jslib/jquery/13/jquery-1.3.2.min.js */

(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return!!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return!!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return+new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return!o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return-1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return!!T.firstChild},empty:function(T){return!T.firstChild},has:function(V,U,T){return!!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex"in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return!F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();

/* scripts/jquery.pngfix.js */

(function($){jQuery.fn.pngFix=function(settings){settings=jQuery.extend({blankgif:'blank.gif'},settings);var ie55=(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)==4&&navigator.appVersion.indexOf("MSIE 5.5")!=-1);var ie6=(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)==4&&navigator.appVersion.indexOf("MSIE 6.0")!=-1);if(jQuery.browser.msie&&(ie55||ie6)){jQuery(this).find("img[src$=.png]").each(function(){jQuery(this).attr('width',jQuery(this).width());jQuery(this).attr('height',jQuery(this).height());var prevStyle='';var strNewHTML='';var imgId=(jQuery(this).attr('id'))?'id="'+jQuery(this).attr('id')+'" ':'';var imgClass=(jQuery(this).attr('class'))?'class="'+jQuery(this).attr('class')+'" ':'';var imgTitle=(jQuery(this).attr('title'))?'title="'+jQuery(this).attr('title')+'" ':'';var imgAlt=(jQuery(this).attr('alt'))?'alt="'+jQuery(this).attr('alt')+'" ':'';var imgAlign=(jQuery(this).attr('align'))?'float:'+jQuery(this).attr('align')+';':'';var imgHand=(jQuery(this).parent().attr('href'))?'cursor:hand;':'';if(this.style.border){prevStyle+='border:'+this.style.border+';';this.style.border='';}
if(this.style.padding){prevStyle+='padding:'+this.style.padding+';';this.style.padding='';}
if(this.style.margin){prevStyle+='margin:'+this.style.margin+';';this.style.margin='';}
var imgStyle=(this.style.cssText);strNewHTML+='<span '+imgId+imgClass+imgTitle+imgAlt;strNewHTML+='style="position:relative;white-space:pre-line;display:inline-block;background:transparent;'+imgAlign+imgHand;strNewHTML+='width:'+jQuery(this).width()+'px;'+'height:'+jQuery(this).height()+'px;';strNewHTML+='filter:progid:DXImageTransform.Microsoft.AlphaImageLoader'+'(src=\''+jQuery(this).attr('src')+'\', sizingMethod=\'scale\');';strNewHTML+=imgStyle+'"></span>';if(prevStyle!=''){strNewHTML='<span style="position:relative;display:inline-block;'+prevStyle+imgHand+'width:'+jQuery(this).width()+'px;'+'height:'+jQuery(this).height()+'px;'+'">'+strNewHTML+'</span>';}
jQuery(this).hide();jQuery(this).after(strNewHTML);});jQuery(this).find("*").each(function(){var bgIMG=jQuery(this).css('background-image');if(bgIMG.indexOf(".png")!=-1){var iebg=bgIMG.split('url("')[1].split('")')[0];jQuery(this).css('background-image','none');jQuery(this).get(0).runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+iebg+"',sizingMethod='scale')";}});jQuery(this).find("input[src$=.png]").each(function(){var bgIMG=jQuery(this).attr('src');jQuery(this).get(0).runtimeStyle.filter='progid:DXImageTransform.Microsoft.AlphaImageLoader'+'(src=\''+bgIMG+'\', sizingMethod=\'scale\');';jQuery(this).attr('src',settings.blankgif)});}
return jQuery;};})(jQuery);

/* /includes/jslib/jquery/13/plugins/jquery-color.js */
;(function(jQuery){jQuery.each(['backgroundColor','borderBottomColor','borderLeftColor','borderRightColor','borderTopColor','color','outlineColor'],function(i,attr){jQuery.fx.step[attr]=function(fx){if(fx.state==0){fx.start=getColor(fx.elem,attr);fx.end=getRGB(fx.end);}
if("undefined"===typeof fx.end||"undefined"===typeof fx.start){return;}
fx.elem.style[attr]="rgb("+[Math.max(Math.min(parseInt((fx.pos*(fx.end[0]-fx.start[0]))+fx.start[0]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[1]-fx.start[1]))+fx.start[1]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[2]-fx.start[2]))+fx.start[2]),255),0)].join(",")+")";}});function getRGB(color){var result;if(color&&color.constructor==Array&&color.length==3)
return color;if(result=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
return[parseInt(result[1]),parseInt(result[2]),parseInt(result[3])];if(result=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
return[parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55];if(result=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
return[parseInt(result[1],16),parseInt(result[2],16),parseInt(result[3],16)];if(result=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
return[parseInt(result[1]+result[1],16),parseInt(result[2]+result[2],16),parseInt(result[3]+result[3],16)];return colors[jQuery.trim(color).toLowerCase()];}
function getColor(elem,attr){var color;do{color=jQuery.curCSS(elem,attr);if(color!=''&&color!='transparent'||jQuery.nodeName(elem,"body"))
break;attr="backgroundColor";}while(elem=elem.parentNode);return getRGB(color);};var colors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]};})(jQuery);

/* /includes/jslib/jquery/13/plugins/jquery-corner-1.96.js */
;(function($){var expr=(function(){var div=document.createElement('div');try{div.style.setExpression('width','0+0');}
catch(e){return false;}
return true;})();function sz(el,p){return parseInt($.css(el,p))||0;};function hex2(s){var s=parseInt(s).toString(16);return(s.length<2)?'0'+s:s;};function gpc(node){for(;node&&node.nodeName.toLowerCase()!='html';node=node.parentNode){var v=$.css(node,'backgroundColor');if(v.indexOf('rgb')>=0){if($.browser.safari&&v=='rgba(0, 0, 0, 0)')
continue;var rgb=v.match(/\d+/g);return'#'+hex2(rgb[0])+hex2(rgb[1])+hex2(rgb[2]);}
if(v&&v!='transparent')
return v;}
return'#ffffff';};function getWidth(fx,i,width){switch(fx){case'round':return Math.round(width*(1-Math.cos(Math.asin(i/width))));case'cool':return Math.round(width*(1+Math.cos(Math.asin(i/width))));case'sharp':return Math.round(width*(1-Math.cos(Math.acos(i/width))));case'bite':return Math.round(width*(Math.cos(Math.asin((width-i-1)/width))));case'slide':return Math.round(width*(Math.atan2(i,width/i)));case'jut':return Math.round(width*(Math.atan2(width,(width-i-1))));case'curl':return Math.round(width*(Math.atan(i)));case'tear':return Math.round(width*(Math.cos(i)));case'wicked':return Math.round(width*(Math.tan(i)));case'long':return Math.round(width*(Math.sqrt(i)));case'sculpt':return Math.round(width*(Math.log((width-i-1),width)));case'dog':return(i&1)?(i+1):width;case'dog2':return(i&2)?(i+1):width;case'dog3':return(i&3)?(i+1):width;case'fray':return(i%2)*width;case'notch':return width;case'bevel':return i+1;}};$.fn.corner=function(o){if(this.length==0){if(!$.isReady&&this.selector){var s=this.selector,c=this.context;$(function(){$(s,c).corner(o);});}
return this;}
o=(o||"").toLowerCase();var keep=/keep/.test(o);var cc=((o.match(/cc:(#[0-9a-f]+)/)||[])[1]);var sc=((o.match(/sc:(#[0-9a-f]+)/)||[])[1]);var width=parseInt((o.match(/(\d+)px/)||[])[1])||10;var re=/round|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dog/;var fx=((o.match(re)||['round'])[0]);var edges={T:0,B:1};var opts={TL:/top|tl/.test(o),TR:/top|tr/.test(o),BL:/bottom|bl/.test(o),BR:/bottom|br/.test(o)};if(!opts.TL&&!opts.TR&&!opts.BL&&!opts.BR)
opts={TL:1,TR:1,BL:1,BR:1};var strip=document.createElement('div');strip.style.overflow='hidden';strip.style.height='1px';strip.style.backgroundColor=sc||'transparent';strip.style.borderStyle='solid';return this.each(function(index){var pad={T:parseInt($.css(this,'paddingTop'))||0,R:parseInt($.css(this,'paddingRight'))||0,B:parseInt($.css(this,'paddingBottom'))||0,L:parseInt($.css(this,'paddingLeft'))||0};if(typeof this.style.zoom!=undefined)this.style.zoom=1;if(!keep)this.style.border='none';strip.style.borderColor=cc||gpc(this.parentNode);var cssHeight=$.curCSS(this,'height');for(var j in edges){var bot=edges[j];if((bot&&(opts.BL||opts.BR))||(!bot&&(opts.TL||opts.TR))){strip.style.borderStyle='none '+(opts[j+'R']?'solid':'none')+' none '+(opts[j+'L']?'solid':'none');var d=document.createElement('div');$(d).addClass('jquery-corner');var ds=d.style;bot?this.appendChild(d):this.insertBefore(d,this.firstChild);if(bot&&cssHeight!='auto'){if($.css(this,'position')=='static')
this.style.position='relative';ds.position='absolute';ds.bottom=ds.left=ds.padding=ds.margin='0';if(expr)
ds.setExpression('width','this.parentNode.offsetWidth');else
ds.width='100%';}
else if(!bot&&$.browser.msie){if($.css(this,'position')=='static')
this.style.position='relative';ds.position='absolute';ds.top=ds.left=ds.right=ds.padding=ds.margin='0';if(expr){var bw=sz(this,'borderLeftWidth')+sz(this,'borderRightWidth');ds.setExpression('width','this.parentNode.offsetWidth - '+bw+'+ "px"');}
else
ds.width='100%';}
else{ds.margin=!bot?'-'+pad.T+'px -'+pad.R+'px '+(pad.T-width)+'px -'+pad.L+'px':(pad.B-width)+'px -'+pad.R+'px -'+pad.B+'px -'+pad.L+'px';}
for(var i=0;i<width;i++){var w=Math.max(0,getWidth(fx,i,width));var e=strip.cloneNode(false);e.style.borderWidth='0 '+(opts[j+'R']?w:0)+'px 0 '+(opts[j+'L']?w:0)+'px';bot?d.appendChild(e):d.insertBefore(e,d.firstChild);}}}});};$.fn.uncorner=function(){$('div.jquery-corner',this).remove();return this;};})(jQuery);

/* /includes/jslib/jquery/13/plugins/jquery-query-2.1.4.js */

﻿
new function(settings){var $separator=settings.separator||'&';var $spaces=settings.spaces===false?false:true;var $suffix=settings.suffix===false?'':'[]';var $prefix=settings.prefix===false?false:true;var $hash=$prefix?settings.hash===true?"#":"?":"";var $numbers=settings.numbers===false?false:true;jQuery.query=new function(){var is=function(o,t){return o!=undefined&&o!==null&&(!!t?o.constructor==t:true);};var parse=function(path){var m,rx=/\[([^[]*)\]/g,match=/^(\S+?)(\[\S*\])?$/.exec(path),base=match[1],tokens=[];while(m=rx.exec(match[2]))tokens.push(m[1]);return[base,tokens];};var set=function(target,tokens,value){var o,token=tokens.shift();if(typeof target!='object')target=null;if(token===""){if(!target)target=[];if(is(target,Array)){target.push(tokens.length==0?value:set(null,tokens.slice(0),value));}else if(is(target,Object)){var i=0;while(target[i++]!=null);target[--i]=tokens.length==0?value:set(target[i],tokens.slice(0),value);}else{target=[];target.push(tokens.length==0?value:set(null,tokens.slice(0),value));}}else if(token&&token.match(/^\s*[0-9]+\s*$/)){var index=parseInt(token,10);if(!target)target=[];target[index]=tokens.length==0?value:set(target[index],tokens.slice(0),value);}else if(token){var index=token.replace(/^\s*|\s*$/g,"");if(!target)target={};if(is(target,Array)){var temp={};for(var i=0;i<target.length;++i){temp[i]=target[i];}
target=temp;}
target[index]=tokens.length==0?value:set(target[index],tokens.slice(0),value);}else{return value;}
return target;};var queryObject=function(a){var self=this;self.keys={};if(a.queryObject){jQuery.each(a.get(),function(key,val){self.SET(key,val);});}else{jQuery.each(arguments,function(){var q=""+this;q=decodeURIComponent(q);q=q.replace(/^[?#]/,'');q=q.replace(/[;&]$/,'');if($spaces)q=q.replace(/[+]/g,' ');jQuery.each(q.split(/[&;]/),function(){var key=decodeURIComponent(this.split('=')[0]);var val=decodeURIComponent(this.split('=')[1]);if(!key)return;if($numbers){if(/^[+-]?[0-9]+\.[0-9]*$/.test(val))
val=parseFloat(val);else if(/^[+-]?[0-9]+$/.test(val))
val=parseInt(val,10);}
val=(!val&&val!==0)?true:val;if(val!==false&&val!==true&&typeof val!='number')
val=val;self.SET(key,val);});});}
return self;};queryObject.prototype={queryObject:true,has:function(key,type){var value=this.get(key);return is(value,type);},GET:function(key){if(!is(key))return this.keys;var parsed=parse(key),base=parsed[0],tokens=parsed[1];var target=this.keys[base];while(target!=null&&tokens.length!=0){target=target[tokens.shift()];}
return typeof target=='number'?target:target||"";},get:function(key){var target=this.GET(key);if(is(target,Object))
return jQuery.extend(true,{},target);else if(is(target,Array))
return target.slice(0);return target;},SET:function(key,val){var value=!is(val)?null:val;var parsed=parse(key),base=parsed[0],tokens=parsed[1];var target=this.keys[base];this.keys[base]=set(target,tokens.slice(0),value);return this;},set:function(key,val){return this.copy().SET(key,val);},REMOVE:function(key){return this.SET(key,null).COMPACT();},remove:function(key){return this.copy().REMOVE(key);},EMPTY:function(){var self=this;jQuery.each(self.keys,function(key,value){delete self.keys[key];});return self;},load:function(url){var hash=url.replace(/^.*?[#](.+?)(?:\?.+)?$/,"$1");var search=url.replace(/^.*?[?](.+?)(?:#.+)?$/,"$1");return new queryObject(url.length==search.length?'':search,url.length==hash.length?'':hash);},empty:function(){return this.copy().EMPTY();},copy:function(){return new queryObject(this);},COMPACT:function(){function build(orig){var obj=typeof orig=="object"?is(orig,Array)?[]:{}:orig;if(typeof orig=='object'){function add(o,key,value){if(is(o,Array))
o.push(value);else
o[key]=value;}
jQuery.each(orig,function(key,value){if(!is(value))return true;add(obj,key,build(value));});}
return obj;}
this.keys=build(this.keys);return this;},compact:function(){return this.copy().COMPACT();},toString:function(){var i=0,queryString=[],chunks=[],self=this;var addFields=function(arr,key,value){if(!is(value)||value===false)return;var o=[encodeURIComponent(key)];if(value!==true){o.push("=");o.push(encodeURIComponent(value));}
arr.push(o.join(""));};var build=function(obj,base){var newKey=function(key){return!base||base==""?[key].join(""):[base,"[",key,"]"].join("");};jQuery.each(obj,function(key,value){if(typeof value=='object')
build(value,newKey(key));else
addFields(chunks,newKey(key),value);});};build(this.keys);if(chunks.length>0)queryString.push($hash);queryString.push(chunks.join($separator));return queryString.join("");}};return new queryObject(location.search,location.hash);};}(jQuery.query||{});

/* /includes/jslib/jquery/13/plugins/jquery-myPass-1.0.js */

(function($){$.fn.myPass=function(options){var defaults={charReplace:'%u25CF',charDuration:1000}
var opts=$.extend(defaults,options);var aktiv=null;$(this).each(function(){tempField=$(this).attr('name');$(this).attr('name','tmp_'+tempField);$(this).parent().append('<input name="'+tempField+'" id="'+tempField+'" type="hidden" value="" />');});$(this).bind("keypress",function(evt){clearTimeout(aktiv);var hiddenPass='';if($(this).val().length>0){if(evt.which==8){deleteLast(this);}else{currentValue=currentValue+$(this).val().slice($(this).val().length-1);for(i=0;i<=$(this).val().length-1;++i){hiddenPass=hiddenPass+unescape(opts.charReplace);}
lastLetter=$(this).val().charAt($(this).val().length-1);if(lastLetter!=unescape(opts.charReplace)){saveString(lastLetter,this);}
$(this).val(hiddenPass);aktiv=setTimeout("hideAll('"+$(this).attr('name')+"')",opts.charDuration);}}else{currentValue=$(this).val();var tempField=$(this).attr('name');var hiddenID=tempField.substr(tempField.indexOf('_')+1);$('#'+hiddenID).val('');}});hideAll=function(el){lastLetter=$('input[name='+el+']').val().charAt($('input[name='+el+']').val().length-1);var hiddenID=el.substr(el.indexOf('_')+1);var tmpstr=$('#'+hiddenID).val();$('#'+hiddenID).val(tmpstr+lastLetter);var hiddenPass='';for(i=0;i<=$('input[name='+el+']').val().length-1;++i){hiddenPass=hiddenPass+unescape(opts.charReplace);}
$('input[name='+el+']').val(hiddenPass);}
saveString=function(str,el){var tempField=$(el).attr('name');var hiddenID=tempField.substr(tempField.indexOf('_')+1);var tmpstr=$('#'+hiddenID).val();$('#'+hiddenID).val(tmpstr+str);}
deleteLast=function(el){var tempField=$(el).attr('name');var hiddenID=tempField.substr(tempField.indexOf('_')+1);var tmpstr=$('#'+hiddenID).val();var length=$('#'+hiddenID).val().length;$('#'+hiddenID).val(tmpstr.substring(0,length-1));}};})(jQuery);

/* /includes/jslib/cufon/cufon-yui.js */

var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var V=L.DOM={ready:(function(){var a=false,c={loaded:1,complete:1};var Z=[],b=function(){if(a){return}a=true;for(var d;d=Z.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){c[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(d){setTimeout(arguments.callee,1)}})()}P(window,"load",b);return function(d){if(!arguments.length){b()}else{a?d():Z.push(d)}}})()};var M=L.CSS={Size:function(a,Z){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/Z*this.value};this.convertFrom=function(b){return b/this.value*Z};this.toString=function(){return this.value+this.unit}},color:I(function(a){var Z={};Z.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,b,d){Z.opacity=parseFloat(d);return"rgb("+b+")"});return Z}),getStyle:function(a){var Z=document.defaultView;if(Z&&Z.getComputedStyle){return new A(Z.getComputedStyle(a,null))}if(a.currentStyle){return new A(a.currentStyle)}return new A(a.style)},gradient:I(function(d){var e={id:d,type:d.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},a=d.substr(d.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var c=0,Z=a.length,b;c<Z;++c){b=a[c].split("=",2).reverse();e.stops.push([b[1]||c/(Z-1),b[0]])}return e}),quotedList:I(function(c){var b=[],a=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Z;while(Z=a.exec(c)){b.push(Z[3]||Z[1])}return b}),recognizesMedia:I(function(c){var b=document.createElement("style"),a,Z;b.type="text/css";b.media=c;a=F("head")[0];a.insertBefore(b,a.firstChild);Z=!!(b.sheet||b.styleSheet);a.removeChild(b);return Z}),supports:function(b,a){var Z=document.createElement("span").style;if(Z[b]===undefined){return false}Z[b]=a;return Z[b]===a},textAlign:function(c,b,Z,a){if(b.get("textAlign")=="right"){if(Z>0){c=" "+c}}else{if(Z<a-1){c+=" "}}return c},textDecoration:function(e,d){if(!d){d=this.getStyle(e)}var a={underline:null,overline:null,"line-through":null};for(var Z=e;Z.parentNode&&Z.parentNode.nodeType==1;){var c=true;for(var b in a){if(!J(a,b)||a[b]){continue}if(d.get("textDecoration").indexOf(b)!=-1){a[b]=d.get("color")}c=false}if(c){break}d=this.getStyle(Z=Z.parentNode)}return a},textShadow:I(function(d){if(d=="none"){return null}var c=[],e={},Z,a=0;var b=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Z=b.exec(d)){if(Z[0]==","){c.push(e);e={},a=0}else{if(Z[1]){e.color=Z[1]}else{e[["offX","offY","blur"][a++]]=Z[2]}}}c.push(e);return c}),textTransform:function(a,Z){return a[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Z.get("textTransform")]||"toString"]()},whiteSpace:(function(){var Z={inline:1,"inline-block":1,"run-in":1};return function(c,a,b){if(Z[a.get("display")]){return c}if(!b.previousSibling){c=c.replace(/^\s+/,"")}if(!b.nextSibling){c=c.replace(/\s+$/,"")}return c}})()};M.ready=(function(){var b=!M.recognizesMedia("all"),a=false;var Z=[],d=function(){b=true;for(var g;g=Z.shift();g()){}};var e=F("link"),f={stylesheet:1};function c(){var h,g,j;for(g=0;j=e[g];++g){if(j.disabled||!f[j.rel.toLowerCase()]||!M.recognizesMedia(j.media||"screen")){continue}h=j.sheet||j.styleSheet;if(!h||h.disabled){return false}}return true}V.ready(function(){if(!a){a=M.getStyle(document.body).isUsable()}if(b||(a&&c())){d()}else{setTimeout(arguments.callee,10)}});return function(g){if(b){g()}else{Z.push(g)}}})();function R(a){var Z=this.face=a.face;this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(Z["units-per-em"],10);this.family=Z["font-family"].toLowerCase();this.weight=Z["font-weight"];this.style=Z["font-style"]||"normal";this.viewBox=(function(){var c=Z.bbox.split(/\s+/);var b={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};b.width=b.maxX-b.minX,b.height=b.maxY-b.minY;b.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return b})();this.ascent=-parseInt(Z.ascent,10);this.descent=-parseInt(Z.descent,10);this.height=-this.ascent+this.descent}function E(){var a={},Z={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(f,g){var e=a[f]||a[Z[f]]||a.normal||a.italic||a.oblique;if(!e){return null}g={normal:400,bold:700}[g]||parseInt(g,10);if(e[g]){return e[g]}var c={1:1,99:0}[g%100],i=[],d,b;if(c===undefined){c=g>400}if(g==500){g=400}for(var h in e){if(!J(e,h)){continue}h=parseInt(h,10);if(!d||h<d){d=h}if(!b||h>b){b=h}i.push(h)}if(g<d){g=d}if(g>b){g=b}i.sort(function(k,j){return(c?(k>g&&j>g)?k<j:k>j:(k<g&&j<g)?k>j:k<j)?-1:1});return e[i[0]]}}function Q(){function b(d,e){if(d.contains){return d.contains(e)}return d.compareDocumentPosition(e)&16}function Z(f){var d=f.relatedTarget;if(!d||b(this,d)){return}a(this)}function c(d){a(this)}function a(d){setTimeout(function(){L.replace(d,D.get(d).options,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){P(d,"mouseover",Z);P(d,"mouseout",Z)}else{P(d,"mouseenter",c);P(d,"mouseleave",c)}}}function Y(){var b={},Z=0;function a(c){return c.cufid||(c.cufid=++Z)}this.get=function(c){var d=a(c);return b[d]||(b[d]={})}}function A(Z){var b={},a={};this.extend=function(c){for(var d in c){if(J(c,d)){b[d]=c[d]}}return this};this.get=function(c){return b[c]!=undefined?b[c]:Z[c]};this.getSize=function(d,c){return a[d]||(a[d]=new M.Size(this.get(d),c))};this.isUsable=function(){return!!Z}}function P(a,Z,b){if(a.addEventListener){a.addEventListener(Z,b,false)}else{if(a.attachEvent){a.attachEvent("on"+Z,function(){return b.call(a,window.event)})}}}function T(a,Z){var b=D.get(a);if(b.options){return a}if(Z.hover&&Z.hoverables[a.nodeName.toLowerCase()]){B.attach(a)}b.options=Z;return a}function I(Z){var a={};return function(b){if(!J(a,b)){a[b]=Z.apply(null,arguments)}return a[b]}}function C(e,d){if(!d){d=M.getStyle(e)}var a=M.quotedList(d.get("fontFamily").toLowerCase()),c;for(var b=0,Z=a.length;b<Z;++b){c=a[b];if(H[c]){return H[c].get(d.get("fontStyle"),d.get("fontWeight"))}}return null}function F(Z){return document.getElementsByTagName(Z)}function J(a,Z){return a.hasOwnProperty(Z)}function G(){var Z={},b,d;for(var c=0,a=arguments.length;b=arguments[c],c<a;++c){for(d in b){if(J(b,d)){Z[d]=b[d]}}}return Z}function N(c,m,a,n,d,b){var k=n.separate;if(k=="none"){return X[n.engine].apply(null,arguments)}var j=document.createDocumentFragment(),f;var g=m.split(O[k]),Z=(k=="words");if(Z&&S){if(/^\s/.test(m)){g.unshift("")}if(/\s$/.test(m)){g.push("")}}for(var h=0,e=g.length;h<e;++h){f=X[n.engine](c,Z?M.textAlign(g[h],a,h,e):g[h],a,n,d,b,h<e-1);if(f){j.appendChild(f)}}return j}function K(a,i){var b,Z,c,f,e,h;for(c=T(a,i).firstChild;c;c=e){f=c.nodeType;e=c.nextSibling;h=false;if(f==1){if(!c.firstChild){continue}if(!/cufon/.test(c.className)){arguments.callee(c,i);continue}else{h=true}}else{if(f!=3){continue}}if(!Z){Z=M.getStyle(a).extend(i)}if(!b){b=C(a,Z)}if(!b){continue}if(h){X[i.engine](b,null,Z,i,c,a);continue}var g=M.whiteSpace(c.data,Z,c);if(g===""){continue}var d=N(b,g,Z,i,c,a);if(d){c.parentNode.replaceChild(d,c)}else{c.parentNode.removeChild(c)}}}var S=" ".split(/\s+/).length==0;var D=new Y();var B=new Q();var W=[];var X={},H={},U={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Z){return jQuery(Z)})||(window.dojo&&dojo.query)||(window.$$&&function(Z){return $$(Z)})||(window.$&&function(Z){return $(Z)})||(document.querySelectorAll&&function(Z){return document.querySelectorAll(Z)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){V.ready();return L};L.refresh=function(){var b=W.splice(0,W.length);for(var a=0,Z=b.length;a<Z;++a){L.replace.apply(null,b[a])}return L};L.registerEngine=function(a,Z){if(!Z){return L}X[a]=Z;return L.set("engine",a)};L.registerFont=function(b){var Z=new R(b),a=Z.family;if(!H[a]){H[a]=new E()}H[a].add(Z);return L.set("fontFamily",'"'+a+'"')};L.replace=function(b,a,Z){a=G(U,a);if(!a.engine){return L}if(typeof a.textShadow=="string"){a.textShadow=M.textShadow(a.textShadow)}if(typeof a.color=="string"&&/^-/.test(a.color)){a.textGradient=M.gradient(a.color)}if(!Z){W.push(arguments)}if(b.nodeType||typeof b=="string"){b=[b]}M.ready(function(){for(var d=0,c=b.length;d<c;++d){var e=b[d];if(typeof e=="string"){L.replace(a.selector(e),a,true)}else{K(e,a)}}});return L};L.set=function(Z,a){U[Z]=a;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode(".cufon-canvas{text-indent:0}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(t,W,o,R,a,u){var I=(W===null);var Y=t.viewBox;var J=o.getSize("fontSize",t.baseSize);var m=o.get("letterSpacing");m=(m=="normal")?0:J.convertFrom(parseInt(m,10));var Z=0,n=0,k=0,T=0;var X=R.textShadow,h=[];if(X){for(var s=X.length;s--;){var c=X[s];var f=J.convertFrom(parseFloat(c.offX));var e=J.convertFrom(parseFloat(c.offY));h[s]=[f,e];if(e<Z){Z=e}if(f>n){n=f}if(e>k){k=e}if(f<T){T=f}}}var z=Cufon.CSS.textTransform(I?a.alt:W,o).split("");var G=0,U=null;for(var s=0,p=z.length;s<p;++s){var S=t.glyphs[z[s]]||t.missingGlyph;if(!S){continue}G+=U=Number(S.w||t.w)+m}if(U===null){return null}n+=(Y.width-U);T+=Y.minX;var Q,K;if(I){Q=a;K=a.firstChild}else{Q=document.createElement("span");Q.className="cufon cufon-canvas";Q.alt=W;K=document.createElement("canvas");Q.appendChild(K);if(R.printable){var q=document.createElement("span");q.className="cufon-alt";q.appendChild(document.createTextNode(W));Q.appendChild(q)}}var AA=Q.style;var d=K.style;var H=J.convert(Y.height);var w=Math.ceil(H);var j=w/H;K.width=Math.ceil(J.convert(G*j+n-T));K.height=Math.ceil(J.convert(Y.height-Z+k));Z+=Y.minY;d.top=Math.round(J.convert(Z-t.ascent))+"px";d.left=Math.round(J.convert(T))+"px";var P=Math.ceil(J.convert(G*j))+"px";if(A){AA.width=P;AA.height=J.convert(t.height)+"px"}else{AA.paddingLeft=P;AA.paddingBottom=(J.convert(t.height)-1)+"px"}var v=K.getContext("2d"),b=H/Y.height;v.scale(b,b*j);v.translate(-T,-Z);v.lineWidth=t.face["underline-thickness"];v.save();function L(i,g){v.strokeStyle=g;v.beginPath();v.moveTo(0,i);v.lineTo(G,i);v.stroke()}var M=R.enableTextDecoration?Cufon.CSS.textDecoration(u,o):{};if(M.underline){L(-t.face["underline-position"],M.underline)}if(M.overline){L(t.ascent,M.overline)}function r(){v.scale(j,1);for(var x=0,g=z.length;x<g;++x){var y=t.glyphs[z[x]]||t.missingGlyph;if(!y){continue}if(y.d){v.beginPath();if(y.code){C(y.code,v)}else{y.code=D("m"+y.d,v)}v.fill()}v.translate(Number(y.w||t.w)+m,0)}v.restore()}if(X){for(var s=X.length;s--;){var c=X[s];v.save();v.fillStyle=c.color;v.translate.apply(v,h[s]);r()}}var O=R.textGradient;if(O){var V=O.stops,N=v.createLinearGradient(0,Y.minY,0,Y.maxY);for(var s=0,p=V.length;s<p;++s){N.addColorStop.apply(N,V[s])}v.fillStyle=N}else{v.fillStyle=o.get("color")}r();if(M["line-through"]){L(-t.descent,M["line-through"])}return Q}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>');function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(v,Y,q,V,c,w,o){var I=(Y===null);if(I){Y=c.alt}var a=v.viewBox;var J=q.computedFontSize||(q.computedFontSize=new Cufon.CSS.Size(C(w,q.get("fontSize"))+"px",v.baseSize));var n=q.computedLSpacing;if(n==undefined){n=q.get("letterSpacing");q.computedLSpacing=n=(n=="normal")?0:~~J.convertFrom(A(w,n))}var S,K;if(I){S=c;K=c.firstChild}else{S=document.createElement("span");S.className="cufon cufon-vml";S.alt=Y;K=document.createElement("span");K.className="cufon-vml-canvas";S.appendChild(K);if(V.printable){var t=document.createElement("span");t.className="cufon-alt";t.appendChild(document.createTextNode(Y));S.appendChild(t)}if(!o){S.appendChild(document.createElement("cvml:shape"))}}var AB=S.style;var f=K.style;var G=J.convert(a.height),y=Math.ceil(G);var m=y/G;var j=a.minX,h=a.minY;f.height=y;f.top=Math.round(J.convert(h-v.ascent));f.left=Math.round(J.convert(j));AB.height=J.convert(v.height)+"px";var N=V.enableTextDecoration?Cufon.CSS.textDecoration(w,q):{};var X=q.get("color");var z=Cufon.CSS.textTransform(Y,q).split("");var F=0,g=0,O=null;var W,Q,Z=V.textShadow;for(var u=0,s=0,r=z.length;u<r;++u){W=v.glyphs[z[u]]||v.missingGlyph;if(W){F+=O=~~(W.w||v.w)+n}}if(O===null){return null}var R=-j+F+(a.width-O);var AA=J.convert(R*m),p=Math.round(AA);var e=R+","+a.height,H;var b="r"+e+"ns";var P=V.textGradient&&D(V.textGradient);for(u=0;u<r;++u){W=v.glyphs[z[u]]||v.missingGlyph;if(!W){continue}if(I){Q=K.childNodes[s];if(Q.firstChild){Q.removeChild(Q.firstChild)}}else{Q=document.createElement("cvml:shape");K.appendChild(Q)}Q.stroked="f";Q.coordsize=e;Q.coordorigin=H=(j-g)+","+h;Q.path=(W.d?"m"+W.d+"xe":"")+"m"+H+b;Q.fillcolor=X;if(P){Q.appendChild(P.cloneNode(false))}var x=Q.style;x.width=p;x.height=y;if(Z){var M=Z[0],L=Z[1];var U=Cufon.CSS.color(M.color),T;var d=document.createElement("cvml:shadow");d.on="t";d.color=U.color;d.offset=M.offX+","+M.offY;if(L){T=Cufon.CSS.color(L.color);d.type="double";d.color2=T.color;d.offset2=L.offX+","+L.offY}d.opacity=U.opacity||(T&&T.opacity)||1;Q.appendChild(d)}g+=~~(W.w||v.w)+n;++s}AB.width=Math.max(Math.ceil(J.convert(F*m)),0);return S}})());

/* /includes/jslib/cufon/Univers_200.font.js */

Cufon.registerFont({"w":200,"face":{"font-family":"Univers200","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-54 -345 360 90","underline-thickness":"18","underline-position":"-36","stemh":"22","stemv":"23","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"!":{"d":"80,-62r-20,0r-5,-198r30,0xm56,-31r29,0r0,31r-29,0r0,-31","w":140},"\"":{"d":"21,-179r0,-81r19,0r0,81r-19,0xm60,-179r0,-81r19,0r0,81r-19,0","w":100},"#":{"d":"130,-152r-49,0r-8,49r50,0xm190,-174r0,22r-39,0r-7,49r36,0r0,22r-39,0r-11,81r-22,0r12,-81r-49,0r-13,81r-21,0r13,-81r-40,0r0,-22r43,0r7,-49r-40,0r0,-22r43,0r12,-75r21,0r-11,75r48,0r11,-75r21,0r-11,75r36,0"},"$":{"d":"108,-111r0,95v25,-2,52,-18,52,-47v0,-32,-29,-40,-52,-48xm108,5r0,19r-18,0r0,-19v-37,-1,-77,-21,-75,-68r25,0v-2,32,23,45,50,47r0,-99v-18,-8,-70,-17,-70,-70v0,-39,37,-70,70,-70r0,-17r18,0r0,17v36,0,71,23,73,63r-25,0v0,-30,-26,-41,-48,-42r0,99v38,12,77,23,77,72v0,47,-39,68,-77,68xm90,-140r0,-93v-23,0,-45,18,-45,47v0,28,23,39,45,46"},"%":{"d":"100,-238v-52,2,-52,100,0,103v52,-2,50,-101,0,-103xm235,-255r21,0r-140,255r-21,0xm100,-255v36,0,57,33,57,69v0,35,-21,68,-57,68v-37,0,-58,-33,-58,-68v0,-36,21,-69,58,-69xm260,-131v37,0,58,33,58,68v0,36,-21,68,-58,68v-36,0,-57,-32,-57,-68v0,-35,21,-68,57,-68xm260,-114v-52,2,-50,101,0,103v52,-2,52,-100,0,-103","w":360},"&":{"d":"180,-50r-81,-87v-17,11,-54,38,-54,61v2,70,103,77,135,26xm103,-166v15,-14,37,-29,37,-52v0,-17,-16,-26,-32,-26v-51,-1,-30,60,-5,78xm19,-71v0,-41,36,-61,65,-82v-16,-19,-34,-39,-34,-65v0,-63,114,-63,115,-1v0,31,-25,51,-48,68r76,81v12,-27,18,-67,17,-96r25,0v-4,38,-6,79,-26,112r49,54r-33,0r-31,-35v-41,66,-176,46,-175,-36","w":259},"\u2019":{"d":"45,-260r29,0r-26,74r-19,0","w":100},"(":{"d":"84,35r-18,0v-18,-48,-39,-96,-39,-148v0,-50,21,-100,39,-147r18,0v-42,97,-38,202,0,295","w":100},")":{"d":"34,35r-18,0v38,-92,44,-198,0,-295r18,0v18,47,39,97,39,147v0,52,-21,100,-39,148","w":100},"*":{"d":"76,-260r24,49r25,-49r18,10r-32,46r52,-4r0,20r-51,-4r31,47r-19,10r-24,-50r-24,50r-18,-10r31,-46r-52,3r0,-20r53,4r-33,-45"},"+":{"d":"108,-101r0,-80r22,0r0,80r79,0r0,21r-79,0r0,80r-22,0r0,-80r-79,0r0,-21r79,0","w":237},",":{"d":"37,-29r29,0r-26,74r-19,0","w":100},"-":{"d":"5,-85r0,-22r90,0r0,22r-90,0","w":100},".":{"d":"64,0r-28,0r0,-31r28,0r0,31","w":100},"\/":{"d":"-8,35r93,-295r23,0r-94,295r-22,0","w":100},"0":{"d":"100,-233v-53,0,-58,71,-58,108v0,38,5,109,58,109v53,0,58,-71,58,-109v0,-37,-5,-108,-58,-108xm100,-255v68,0,83,67,83,130v0,64,-15,130,-83,130v-68,0,-83,-66,-83,-130v0,-63,15,-130,83,-130"},"1":{"d":"42,-186r0,-24v21,-9,41,-23,57,-39r22,0r0,249r-23,0r0,-224v-17,16,-36,28,-56,38"},"2":{"d":"175,0r-157,0r0,-24v32,-30,128,-120,128,-165v0,-29,-23,-44,-50,-44v-30,0,-50,21,-50,50r-25,0v0,-44,33,-72,76,-72v40,0,74,22,74,65v0,58,-86,131,-125,168r129,0r0,22"},"3":{"d":"81,-118r0,-23v32,3,69,-9,69,-47v0,-29,-26,-45,-55,-45v-32,0,-51,17,-55,45r-25,0v0,-42,38,-67,76,-67v43,0,84,20,84,69v0,30,-23,50,-51,56v32,7,55,30,55,63v-1,93,-168,98,-167,1r25,0v0,31,27,50,56,50v33,0,61,-18,61,-53v0,-40,-39,-54,-73,-49"},"4":{"d":"125,0r0,-58r-117,0r0,-23r109,-168r31,0r0,172r40,0r0,19r-40,0r0,58r-23,0xm125,-77r-1,-149r-96,149r97,0"},"5":{"d":"27,-105r6,-144r137,0r0,21r-115,0r-3,90v42,-54,131,-15,131,57v0,48,-31,86,-80,86v-42,0,-79,-19,-81,-66r26,0v1,30,24,45,52,45v39,0,58,-30,58,-66v0,-68,-93,-82,-107,-23r-24,0"},"6":{"d":"107,-142v-40,0,-61,29,-61,66v0,31,23,60,56,60v37,0,57,-26,57,-62v0,-33,-15,-64,-52,-64xm107,-255v41,0,73,21,74,64r-25,0v-2,-26,-22,-42,-48,-42v-59,-1,-69,67,-66,112v11,-27,36,-41,66,-41v49,0,76,35,76,83v0,47,-30,84,-79,84v-69,0,-89,-57,-89,-117v0,-64,10,-143,91,-143"},"7":{"d":"177,-249r0,21r-97,228r-27,0r100,-228r-135,0r0,-21r159,0"},"8":{"d":"15,-68v-1,-33,24,-53,55,-62v-29,-3,-51,-28,-51,-58v1,-90,161,-90,162,0v0,31,-22,52,-50,58v33,9,54,29,54,62v-1,99,-169,98,-170,0xm42,-188v0,31,25,47,58,47v33,0,58,-16,58,-47v-1,-64,-115,-63,-116,0xm41,-68v0,36,28,52,59,52v31,0,59,-16,59,-52v0,-35,-28,-51,-59,-51v-31,0,-59,16,-59,51"},"9":{"d":"96,-233v-37,0,-55,27,-55,62v0,32,21,55,54,55v34,0,60,-24,60,-59v0,-34,-25,-58,-59,-58xm17,-61r25,0v1,33,24,45,54,45v56,1,65,-82,62,-118v-30,65,-142,39,-142,-39v0,-48,32,-82,80,-82v72,0,88,62,88,124v0,67,-15,136,-94,136v-45,0,-70,-27,-73,-66"},":":{"d":"36,-181r28,0r0,31r-28,0r0,-31xm36,-31r28,0r0,31r-28,0r0,-31","w":100},";":{"d":"44,-29r29,0r-26,74r-19,0xm39,-181r28,0r0,31r-28,0r0,-31","w":100},"<":{"d":"57,-90r152,71r0,23r-180,-85r0,-19r180,-80r0,23","w":237},"=":{"d":"209,-136r0,22r-180,0r0,-22r180,0xm209,-66r0,21r-180,0r0,-21r180,0","w":237},">":{"d":"180,-90r-151,-71r0,-23r180,84r0,19r-180,81r0,-23","w":237},"?":{"d":"153,-201v0,50,-75,79,-69,115r0,25r-21,0r0,-39v1,-34,67,-55,67,-100v0,-46,-55,-51,-93,-38r0,-22v54,-15,116,1,116,59xm59,-31r29,0r0,31r-29,0r0,-31","w":180},"@":{"d":"93,-104v0,17,9,33,27,33v33,0,59,-60,59,-92v0,-14,-10,-26,-24,-26v-38,0,-62,52,-62,85xm194,-187r5,-17r24,0r-36,108v-5,16,-8,28,6,28v30,0,57,-48,57,-86v0,-58,-47,-93,-101,-93v-66,0,-113,54,-113,118v0,65,49,116,114,116v36,0,73,-17,94,-48r21,0v-22,41,-68,66,-115,66v-77,0,-136,-61,-136,-136v0,-74,62,-134,134,-134v69,0,123,47,123,112v0,57,-45,105,-83,105v-12,0,-26,-6,-30,-19v-31,34,-92,16,-92,-36v0,-47,35,-108,88,-108v17,0,33,8,40,24","w":288},"A":{"d":"62,-92r114,0r-56,-146xm27,0r-24,0r103,-260r28,0r103,260r-25,0r-28,-70r-129,0","w":240},"B":{"d":"59,-124r0,102v60,-1,128,10,128,-51v0,-59,-68,-50,-128,-51xm59,-145v55,0,117,9,117,-48v0,-57,-64,-43,-117,-45r0,93xm135,0r-99,0r0,-260v77,-1,165,-11,166,65v1,30,-23,51,-49,60v36,5,59,28,59,66v0,34,-20,69,-77,69","w":240},"C":{"d":"220,-199r-25,0v-4,-32,-32,-45,-61,-45v-67,0,-87,61,-87,114v0,53,20,114,87,114v29,0,58,-15,64,-47r25,0v-7,44,-47,68,-89,68v-79,0,-112,-63,-112,-135v0,-71,33,-135,112,-135v42,0,83,19,86,66","w":240},"D":{"d":"56,-22r53,0v73,0,103,-42,103,-108v1,-92,-62,-115,-156,-108r0,216xm33,-260v119,-9,204,16,204,130v0,113,-85,140,-204,130r0,-260","w":259},"E":{"d":"197,0r-160,0r0,-260r154,0r0,22r-131,0r0,93r126,0r0,22r-126,0r0,101r137,0r0,22","w":219},"F":{"d":"58,0r-24,0r0,-260r147,0r0,22r-123,0r0,91r119,0r0,22r-119,0r0,125"},"G":{"d":"139,-132r88,0r0,121v-31,12,-60,16,-93,16v-71,0,-111,-55,-111,-135v0,-67,36,-135,111,-135v43,0,87,23,91,69r-26,0v-5,-33,-34,-48,-65,-48v-62,0,-86,60,-86,114v0,66,28,114,98,114v20,0,39,-6,58,-11r0,-84r-65,0r0,-21","w":259},"H":{"d":"59,0r-23,0r0,-260r23,0r0,114r142,0r0,-114r23,0r0,260r-23,0r0,-124r-142,0r0,124","w":259},"I":{"d":"62,0r-23,0r0,-261r23,0r0,261","w":100},"J":{"d":"148,-85v6,41,-29,90,-76,90v-42,0,-62,-31,-67,-69r25,0v2,28,21,48,49,48v33,0,46,-34,46,-65r0,-179r23,0r0,175","w":180},"K":{"d":"61,0r-23,0r0,-260r23,0r1,115r116,-115r29,0r-120,117r131,143r-32,0r-124,-136","w":219},"L":{"d":"190,0r-154,0r0,-260r23,0r0,238r131,0r0,22"},"M":{"d":"58,0r-23,0r0,-260r37,0r98,227r100,-227r35,0r0,260r-23,0r-1,-240r-99,240r-24,0r-100,-239r0,239","w":339},"N":{"d":"33,0r0,-260r27,0r144,229r0,-229r23,0r0,260r-29,0r-141,-225r0,225r-24,0","w":259},"O":{"d":"49,-130v0,57,26,114,91,114v121,0,125,-228,0,-228v-65,0,-91,57,-91,114xm256,-130v0,81,-41,135,-116,135v-74,0,-116,-54,-116,-135v0,-81,42,-135,116,-135v75,0,116,54,116,135","w":280},"P":{"d":"59,-238r0,103v58,-1,123,10,123,-51v0,-62,-65,-51,-123,-52xm59,0r-23,0r0,-260v81,0,171,-12,171,74v0,77,-76,74,-148,73r0,113","w":219},"Q":{"d":"266,0v-45,1,-89,-4,-126,5v-74,0,-116,-54,-116,-135v0,-81,42,-135,116,-135v123,0,153,181,68,245v16,1,39,-2,58,-2r0,22xm49,-130v0,57,26,114,91,114v121,0,125,-228,0,-228v-65,0,-91,57,-91,114","w":280},"R":{"d":"60,-145v56,-3,120,15,125,-47v-9,-69,-68,-40,-125,-46r0,93xm37,-260v81,0,173,-12,173,68v0,29,-22,47,-50,57v61,0,35,108,57,135r-27,0v-6,-17,-7,-36,-9,-54v-5,-59,-9,-70,-56,-70r-65,0r0,124r-23,0r0,-260","w":240},"S":{"d":"199,-68v0,56,-49,73,-101,73v-41,0,-76,-30,-77,-73r25,0v-1,74,128,67,128,2v0,-26,-19,-38,-41,-46v-42,-14,-106,-27,-106,-83v0,-45,42,-70,83,-70v34,0,79,12,84,62r-25,0v-5,-62,-117,-52,-117,5v0,73,147,40,147,130","w":219},"T":{"d":"89,0r0,-238r-84,0r0,-22r190,0r0,22r-82,0r-1,238r-23,0"},"U":{"d":"35,-260r23,0r0,168v2,47,29,76,72,76v43,0,72,-29,72,-76r0,-168r23,0v-5,117,32,267,-95,265v-63,0,-95,-41,-95,-96r0,-169","w":259},"V":{"d":"28,-260r84,237r82,-237r24,0r-94,260r-27,0r-95,-260r26,0","w":219},"W":{"d":"180,-236r-76,236r-33,0r-67,-260r24,0r62,237r76,-237r28,0r80,237r60,-237r23,0r-69,260r-32,0","w":360},"X":{"d":"108,-116r-78,116r-27,0r92,-134r-87,-126r30,0r74,110r76,-110r26,0r-90,126r93,134r-30,0","w":219},"Y":{"d":"99,0r0,-112r-96,-148r30,0r79,126r80,-126r25,0r-95,147r0,113r-23,0","w":219},"Z":{"d":"186,0r-172,0r0,-22r144,-216r-144,0r0,-22r172,0r0,22r-145,216r145,0r0,22"},"[":{"d":"80,35r-49,0r0,-295r49,0r0,18r-26,0r0,259r26,0r0,18","w":100},"\\":{"d":"93,0r-109,-260r24,0r108,260r-23,0","w":100},"]":{"d":"20,-260r49,0r0,295r-49,0r0,-18r26,0r0,-259r-26,0r0,-18","w":100},"^":{"d":"48,-86r-21,0r82,-163r19,0r83,163r-20,0r-73,-141","w":237},"_":{"d":"180,45r-180,0r0,-21r180,0r0,21","w":180},"\u2018":{"d":"55,-186r-29,0r26,-74r19,0","w":100},"a":{"d":"36,-50v0,24,19,36,41,36v47,0,56,-39,54,-77v-31,1,-95,-5,-95,41xm13,-50v-1,-56,65,-64,118,-61v3,-37,-11,-55,-43,-55v-22,0,-41,7,-44,31r-23,0v5,-37,33,-51,68,-51v40,0,64,18,64,60r1,126r-22,0r-1,-27v-7,18,-32,31,-58,32v-33,0,-60,-20,-60,-55","w":180},"b":{"d":"105,-166v-42,0,-58,35,-58,72v0,41,14,80,61,80v42,0,52,-45,52,-79v0,-34,-14,-73,-55,-73xm48,-28v-3,7,-1,19,-2,28r-23,0r2,-260r22,0r1,107v12,-22,37,-33,61,-33v54,0,75,48,75,95v0,45,-21,96,-73,96v-27,0,-49,-11,-63,-33"},"c":{"d":"166,-125r-23,0v-2,-28,-20,-41,-49,-41v-34,0,-54,34,-54,75v0,42,20,77,54,77v28,0,47,-18,49,-43r23,0v-5,42,-29,62,-70,62v-54,0,-79,-46,-79,-95v0,-49,27,-96,80,-96v37,0,68,22,69,61","w":180},"d":{"d":"91,-14v83,1,86,-152,3,-152v-41,0,-54,38,-54,72v0,34,10,80,51,80xm154,0r-1,-28v-15,22,-37,33,-62,33v-101,-2,-101,-188,0,-191v24,-1,50,15,62,32r0,-106r22,0r2,260r-23,0"},"e":{"d":"181,-85r-140,0v1,38,19,71,63,71v26,0,47,-19,52,-44r23,0v-11,44,-38,63,-82,63v-54,0,-79,-46,-79,-95v0,-49,27,-96,81,-96v60,0,82,44,82,101xm42,-105r116,0v-3,-35,-22,-61,-59,-61v-35,0,-54,29,-57,61"},"f":{"d":"66,0r-22,0r0,-161r-36,0r0,-20r36,0v-1,-44,-3,-87,44,-83v7,0,14,2,20,4r0,17v-43,-9,-46,20,-42,62r41,0r0,20r-41,0r0,161","w":119},"g":{"d":"96,-21v80,-2,75,-144,-1,-145v-76,3,-73,143,1,145xm153,-153r1,-28r23,0v-4,46,-1,99,-2,149v0,36,2,75,-38,93v-41,18,-111,10,-113,-40r24,0v2,21,28,28,51,28v41,1,61,-35,54,-84v-11,22,-36,34,-59,34v-54,0,-78,-41,-78,-91v0,-49,22,-94,77,-94v27,0,45,12,60,33"},"h":{"d":"50,-260r1,107v13,-23,33,-33,57,-33v59,0,63,52,63,73r0,113r-21,0v-6,-65,24,-168,-48,-166v-71,2,-48,97,-52,166r-21,0r0,-260r21,0"},"i":{"d":"29,-181r22,0r0,181r-22,0r0,-181xm53,-260r0,27r-26,0r0,-27r26,0","w":79},"j":{"d":"1,69r0,-20v32,1,28,-8,28,-55r0,-175r22,0r0,189v0,46,-1,63,-50,61xm53,-260r0,27r-26,0r0,-27r26,0","w":79},"k":{"d":"53,-260r0,153r87,-74r28,0r-92,78r99,103r-27,0r-95,-98r0,98r-22,0r0,-260r22,0","w":180},"l":{"d":"51,-260r0,260r-22,0r0,-260r22,0","w":79},"m":{"d":"49,-181v1,9,-1,21,2,28v22,-49,101,-40,115,6v13,-21,34,-39,62,-39v59,0,64,52,64,73r0,113r-22,0v-6,-64,23,-168,-47,-166v-72,2,-48,97,-52,166r-22,0v-6,-64,23,-168,-47,-166v-72,2,-48,97,-52,166r-22,0r-1,-181r22,0","w":320},"n":{"d":"102,-166v-71,2,-48,97,-52,166r-21,0r-2,-181r22,0v1,9,-1,21,2,28v13,-23,33,-33,57,-33v59,0,63,52,63,73r0,113r-21,0v-6,-65,24,-168,-48,-166"},"o":{"d":"161,-90v0,-34,-17,-76,-61,-76v-43,0,-61,42,-61,76v0,33,18,76,61,76v44,0,61,-43,61,-76xm100,-186v113,0,113,191,0,191v-114,0,-112,-191,0,-191"},"p":{"d":"47,-95v0,41,14,81,61,81v42,0,52,-46,52,-80v0,-34,-14,-72,-55,-72v-42,0,-58,35,-58,71xm48,-28v-4,29,0,66,-1,97r-22,0r-2,-250r23,0v1,9,-1,21,2,28v12,-22,37,-33,61,-33v54,0,75,48,75,95v0,45,-21,96,-73,96v-27,0,-49,-11,-63,-33"},"q":{"d":"92,-14v82,1,85,-152,3,-152v-41,0,-55,38,-55,72v0,34,10,80,52,80xm153,-153r1,-28r23,0r-2,250r-22,0r0,-97v-15,22,-37,33,-63,33v-100,-3,-100,-190,1,-191v24,0,50,11,62,33"},"r":{"d":"113,-165v-85,-13,-59,94,-63,165r-21,0r-2,-181r22,0v1,8,-1,20,2,27v10,-24,29,-35,62,-32r0,21","w":119},"s":{"d":"137,-50v0,-54,-117,-20,-114,-86v3,-68,130,-69,132,0r-24,0v-2,-41,-79,-40,-85,-1v-5,38,115,23,115,83v0,41,-38,59,-76,59v-32,0,-68,-14,-68,-54r23,0v3,49,97,47,97,-1","w":180},"t":{"d":"44,-48r0,-113r-36,0r0,-20r36,0r0,-38r22,-10r0,48r41,0r0,20r-41,0r0,121v-2,25,23,30,43,23r0,19v-6,2,-14,3,-22,3v-45,0,-43,-29,-43,-53","w":119},"u":{"d":"98,-14v72,-2,48,-98,52,-167r21,0r2,181r-22,0v-1,-8,1,-20,-2,-27v-13,22,-33,32,-56,32v-60,0,-64,-52,-64,-73r0,-113r21,0v6,65,-24,169,48,167"},"v":{"d":"5,-181r24,0r62,151r60,-151r24,0r-72,181r-24,0","w":180},"w":{"d":"30,-181r54,153r55,-153r26,0r54,151r52,-151r23,0r-67,181r-20,0r-57,-156r-56,156r-22,0r-66,-181r24,0","w":299},"x":{"d":"91,-108r54,-73r23,0r-65,88r71,93r-29,0r-58,-78r-56,78r-25,0r70,-93r-67,-88r29,0","w":180},"y":{"d":"3,-181r26,0r61,151r60,-151r24,0r-100,250r-24,0r28,-69","w":180},"z":{"d":"14,0r0,-20r106,-141r-106,0r0,-20r131,0r0,20r-104,141r104,0r0,20r-131,0","w":159},"{":{"d":"89,17r0,18v-50,9,-49,-41,-49,-91v0,-26,-4,-44,-26,-46r0,-20v61,-5,-18,-149,75,-138r0,18v-38,-7,-26,47,-26,79v0,34,-21,48,-23,51v2,2,23,16,23,50v0,31,-14,84,26,79","w":100},"|":{"d":"29,90r0,-360r22,0r0,360r-22,0","w":79},"}":{"d":"11,-242r0,-18v50,-9,49,41,49,91v0,26,4,44,26,46r0,20v-61,5,18,149,-75,138r0,-18v38,6,26,-47,26,-79v0,-34,21,-49,23,-51v-2,-2,-23,-17,-23,-51v0,-30,14,-85,-26,-78","w":100},"~":{"d":"158,-69v-26,0,-54,-26,-78,-26v-20,0,-31,20,-39,34r-12,-17v10,-15,25,-37,51,-37v24,0,57,25,79,26v16,0,29,-18,35,-31r15,12v-10,19,-26,39,-51,39","w":237},"\u00a1":{"d":"56,-195r29,0r0,31r-29,0r0,-31xm60,-134r20,0r5,199r-30,0","w":140},"\u00a2":{"d":"73,-26r40,-140v-70,-13,-81,105,-40,140xm118,-185r13,-45r16,0r-14,48v24,8,41,28,42,57r-23,0v-2,-19,-10,-31,-25,-37r-40,145v32,11,64,-11,65,-40r23,0v-6,49,-43,70,-93,59r-13,46r-16,0r14,-52v-71,-40,-51,-197,51,-181"},"\u00a3":{"d":"182,0r-160,0r0,-22r21,0r0,-112r-26,0r0,-22r27,0v-3,-52,9,-99,78,-99v37,0,67,19,68,52r-25,0v-1,-19,-20,-30,-45,-30v-43,0,-56,33,-53,77r58,0r0,22r-58,0r0,112r115,0r0,22"},"\u2044":{"d":"115,-255r-150,255r-19,0r150,-255r19,0","w":60},"\u00a5":{"d":"112,0r-23,0r0,-49r-73,0r0,-22r73,0r0,-21r-73,0r0,-22r72,0r-88,-135r30,0r73,115r72,-115r25,0r-87,135r71,0r0,22r-72,0r0,21r72,0r0,22r-72,0r0,49"},"\u0192":{"d":"84,-147r-34,0r3,-21r34,0v7,-44,14,-102,80,-84r-3,21v-45,-13,-48,29,-53,63r38,0r-3,21r-38,0r-26,131v-5,38,-14,98,-70,83r3,-19v31,7,35,-20,39,-39"},"\u00a7":{"d":"94,-166v-15,9,-31,15,-31,35v0,17,24,24,37,29v14,-7,34,-15,34,-33v0,-19,-27,-23,-40,-31xm146,-258r0,19v-27,-9,-78,-15,-78,22v0,37,90,32,90,77v0,22,-21,36,-38,44v21,9,40,21,40,46v-1,56,-69,64,-116,47r0,-20v34,14,92,17,92,-27v0,-39,-96,-23,-96,-79v0,-21,21,-36,38,-44v-18,-10,-33,-21,-33,-43v1,-51,60,-56,101,-42"},"\u00a4":{"d":"12,-40r15,-15v-23,-31,-23,-76,0,-107r-15,-16r18,-19r16,16v31,-24,77,-24,108,0r16,-16r19,19r-16,16v22,31,23,77,0,107r16,15r-19,19r-16,-15v-31,24,-78,24,-108,0r-16,15xm99,-43v36,0,66,-29,66,-66v0,-34,-29,-65,-63,-65v-38,0,-67,29,-67,66v0,35,30,65,64,65"},"'":{"d":"41,-179r0,-81r18,0r0,81r-18,0","w":100},"\u201c":{"d":"138,-186r-29,0r26,-74r19,0xm72,-186r-29,0r26,-74r18,0"},"\u00ab":{"d":"140,-166r18,0r-33,70r33,70r-18,0r-38,-70xm75,-166r18,0r-33,70r33,70r-18,0r-38,-70"},"\u2039":{"d":"59,-166r18,0r-33,70r33,70r-18,0r-38,-70","w":100},"\u203a":{"d":"41,-26r-18,0r33,-70r-33,-70r18,0r38,70","w":100},"\ufb01":{"d":"146,-181r22,0r0,181r-22,0r0,-181xm170,-260r0,27r-26,0r0,-27r26,0xm66,0r-22,0r0,-161r-36,0r0,-20r36,0v-1,-44,-3,-87,44,-83v7,0,14,2,20,4r0,17v-43,-9,-46,20,-42,62r41,0r0,20r-41,0r0,161"},"\ufb02":{"d":"67,0r-22,0r0,-161r-36,0r0,-20r36,0v-1,-44,-3,-87,44,-83v6,0,14,2,20,4r0,17v-44,-9,-46,20,-42,62r41,0r0,20r-41,0r0,161xm169,-260r0,260r-21,0r0,-260r21,0"},"\u2013":{"d":"180,-85r-180,0r0,-22r180,0r0,22","w":180},"\u2020":{"d":"89,-175r-62,0r0,-20r62,0r0,-65r22,0r0,65r62,0r0,20r-62,0r0,175r-22,0r0,-175"},"\u2021":{"d":"89,-175r-62,0r0,-20r62,0r0,-65r22,0r0,65r62,0r0,20r-62,0r0,91r62,0r0,20r-62,0r0,64r-22,0r0,-64r-62,0r0,-20r62,0r0,-91"},"\u00b7":{"d":"64,-106r0,31r-28,0r0,-31r28,0","w":100},"\u00b6":{"d":"93,53r0,-174v-37,0,-69,-31,-69,-68v0,-76,81,-74,158,-71r0,313r-23,0r0,-291r-43,0r0,291r-23,0","w":234},"\u2022":{"d":"155,-130v0,35,-29,65,-65,65v-36,0,-65,-30,-65,-65v0,-36,29,-65,65,-65v36,0,65,29,65,65","w":180},"\u201a":{"d":"45,-29r29,0r-26,74r-19,0","w":100},"\u201e":{"d":"127,-29r30,0r-26,74r-19,0xm61,-29r29,0r-26,74r-18,0"},"\u201d":{"d":"128,-260r29,0r-26,74r-18,0xm62,-260r29,0r-26,74r-19,0"},"\u00bb":{"d":"60,-26r-18,0r34,-70r-34,-70r18,0r39,70xm125,-26r-18,0r33,-70r-33,-70r18,0r38,70"},"\u2026":{"d":"46,-31r29,0r0,31r-29,0r0,-31xm166,-31r28,0r0,31r-28,0r0,-31xm285,-31r29,0r0,31r-29,0r0,-31","w":360},"\u2030":{"d":"33,5r150,-260r19,0r-149,260r-20,0xm63,-238v-44,1,-43,83,0,84v44,-1,43,-83,0,-84xm172,-95v-44,1,-43,83,0,84v44,-1,43,-83,0,-84xm172,5v-34,0,-52,-24,-52,-58v0,-34,18,-58,52,-58v35,0,52,24,52,58v0,34,-17,58,-52,58xm63,-138v-35,0,-52,-24,-52,-58v0,-34,17,-59,52,-59v35,0,52,25,52,59v0,34,-17,58,-52,58xm297,5v-35,0,-52,-24,-52,-58v0,-34,17,-58,52,-58v35,0,52,24,52,58v0,34,-17,58,-52,58xm297,-95v-44,1,-43,83,0,84v44,-1,43,-83,0,-84","w":360},"\u00bf":{"d":"27,5v0,-51,74,-78,68,-115r0,-25r22,0r0,39v-1,34,-67,55,-67,100v0,47,55,50,92,38r0,22v-54,15,-115,-1,-115,-59xm92,-195r29,0r0,31r-29,0r0,-31","w":180},"`":{"d":"7,-255r29,0r33,52r-16,0","w":100},"\u00b4":{"d":"64,-255r29,0r-46,52r-16,0","w":100},"\u02c6":{"d":"1,-202r36,-53r26,0r36,53r-17,0r-32,-38r-32,38r-17,0","w":100},"\u02dc":{"d":"100,-250v-6,33,-38,31,-69,23v-12,-3,-14,14,-30,10v5,-32,40,-33,67,-21v8,0,15,-5,18,-12r14,0","w":100},"\u00af":{"d":"94,-233r-88,0r0,-22r88,0r0,22","w":100},"\u02d8":{"d":"87,-255r7,0v-2,29,-19,36,-45,36v-23,0,-43,-9,-43,-36r7,0v10,28,63,26,74,0","w":100},"\u02d9":{"d":"63,-223r-26,0r0,-32r26,0r0,32","w":100},"\u00a8":{"d":"95,-223r-27,0r0,-32r27,0r0,32xm32,-223r-27,0r0,-32r27,0r0,32","w":100},"\u02da":{"d":"18,-234v0,-17,15,-31,32,-31v17,0,32,14,32,31v0,17,-15,32,-32,32v-17,0,-32,-15,-32,-32xm50,-214v29,0,23,-39,0,-39v-10,0,-20,9,-20,19v0,10,10,20,20,20","w":100},"\u00b8":{"d":"13,48v16,7,51,18,51,-7v-1,-15,-17,-15,-29,-11r10,-32r8,0r-5,20v18,0,36,3,36,24v0,33,-49,26,-74,16","w":100},"\u02dd":{"d":"45,-204r34,-51r29,0r-46,51r-17,0xm92,-204r34,-51r30,0r-47,51r-17,0"},"\u02db":{"d":"89,45r0,16v-31,10,-82,18,-82,-26v0,-20,33,-41,62,-34v-23,8,-42,20,-42,31v0,28,43,23,62,13","w":100},"\u02c7":{"d":"99,-255r-36,53r-26,0r-36,-53r17,0r32,39r32,-39r17,0","w":100},"\u2014":{"d":"360,-85r-360,0r0,-22r360,0r0,22","w":360},"\u00c6":{"d":"153,-260r180,0r0,22r-140,0r15,93r119,0r0,22r-115,0r17,101r107,0r0,22r-128,0r-12,-71r-126,0r-41,71r-26,0xm168,-238v-31,47,-57,98,-86,146r111,0","w":360},"\u00aa":{"d":"84,-206v-19,1,-58,-3,-58,22v0,15,10,19,24,19v29,0,35,-20,34,-41xm8,-184v0,-34,45,-37,76,-36v1,-23,-6,-31,-27,-31v-13,0,-25,2,-27,16r-16,0v3,-22,21,-30,44,-30v59,0,35,63,43,111r-17,0v-1,-4,1,-11,-2,-14v-13,27,-74,22,-74,-16","w":108},"\u0141":{"d":"190,0r-154,0r0,-144r-34,14r0,-15r34,-13r0,-102r23,0r0,93r34,-14r0,15r-34,13r0,131r131,0r0,22"},"\u00d8":{"d":"67,-58r139,-155v-15,-19,-37,-31,-66,-31v-92,0,-110,118,-73,186xm59,-27r-29,32r-11,-9r31,-34v-17,-23,-26,-55,-26,-92v0,-81,42,-135,116,-135v35,0,63,12,82,33r30,-33r9,9r-30,35v16,23,25,54,25,91v0,81,-41,135,-116,135v-34,0,-62,-11,-81,-32xm213,-202r-138,156v15,18,36,30,65,30v92,0,110,-117,73,-186","w":280},"\u0152":{"d":"131,-244v-113,0,-113,228,0,228v42,0,68,-24,68,-64r0,-91v0,-52,-24,-73,-68,-73xm200,0v-1,-8,3,-21,-2,-25v-70,72,-176,7,-176,-105v0,-112,101,-176,178,-107r0,-23r135,0r0,22r-112,0r0,93r107,0r0,22r-107,0r0,101r118,0r0,22r-141,0","w":360},"\u00ba":{"d":"60,-251v-50,2,-49,84,0,86v50,-2,49,-84,0,-86xm60,-265v38,0,55,28,55,57v0,29,-17,58,-55,58v-73,0,-74,-115,0,-115","w":120},"\u00e6":{"d":"154,-108r103,0v0,-31,-15,-58,-53,-58v-32,0,-51,32,-50,58xm13,-50v0,-54,66,-61,118,-58v3,-38,-10,-58,-43,-58v-22,0,-41,7,-44,31r-23,0v4,-64,109,-67,124,-13v13,-24,34,-38,56,-38v57,0,79,44,79,98r-126,0v-1,37,11,74,49,74v26,0,47,-19,52,-44r23,0v-13,75,-108,84,-135,21v-16,55,-130,59,-130,-13xm131,-87v-44,-1,-94,-9,-95,42v0,21,24,31,42,31v46,0,54,-36,53,-73","w":299},"\u0131":{"d":"51,0r-22,0r0,-181r22,0r0,181","w":79},"\u0142":{"d":"29,-260r22,0r0,90r27,-11r0,13r-27,11r0,157r-22,0r0,-149r-27,11r0,-12r27,-11r0,-99","w":79},"\u00f8":{"d":"50,-46r92,-101v-10,-11,-23,-19,-42,-19v-59,0,-75,73,-50,120xm149,-136r-92,101v10,12,24,21,43,21v61,0,74,-76,49,-122xm12,-4r22,-24v-38,-59,-17,-158,66,-158v25,0,44,9,57,23r22,-23r8,9r-21,24v37,58,17,158,-66,158v-25,0,-45,-9,-58,-23r-21,23"},"\u0153":{"d":"153,-92v0,-34,-13,-74,-56,-74v-40,0,-58,42,-58,76v0,33,18,76,58,76v44,0,56,-42,56,-78xm176,-105r103,0v0,-34,-14,-61,-53,-61v-32,0,-51,32,-50,61xm302,-85r-126,0v0,34,12,71,49,71v26,0,47,-19,53,-44r22,0v-12,75,-113,87,-135,18v-13,28,-37,45,-65,45v-113,-1,-112,-191,0,-191v29,0,53,17,64,45v10,-30,36,-45,60,-45v56,0,78,44,78,101","w":320},"\u00df":{"d":"53,-176r0,176r-22,0r0,-183v1,-49,23,-82,74,-82v34,0,65,19,65,55v0,29,-43,48,-43,65v0,36,78,34,78,90v0,38,-28,60,-62,60v-34,0,-57,-21,-58,-56r23,0v0,22,14,37,35,37v23,0,39,-13,39,-40v0,-42,-78,-41,-78,-88v0,-31,43,-43,43,-68v0,-24,-23,-36,-44,-36v-40,0,-50,39,-50,70","w":219},"\u00b9":{"d":"82,-102r-19,0r0,-130v-10,10,-23,17,-36,22r0,-16v21,-4,26,-26,55,-23r0,147","w":119},"\u2212":{"d":"29,-80r0,-21r180,0r0,21r-180,0","w":237},"\u00b0":{"d":"126,-201v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-29,24,-54,54,-54v30,0,54,25,54,54xm34,-201v0,22,16,38,38,38v22,0,38,-16,38,-38v0,-21,-16,-37,-38,-37v-22,0,-38,16,-38,37","w":144},"\u00f3":{"d":"161,-90v0,-34,-17,-76,-61,-76v-43,0,-61,42,-61,76v0,33,18,76,61,76v44,0,61,-43,61,-76xm100,-186v113,0,113,191,0,191v-114,0,-112,-191,0,-191xm114,-255r29,0r-46,52r-16,0"},"\u00d6":{"d":"49,-130v0,57,26,114,91,114v121,0,125,-228,0,-228v-65,0,-91,57,-91,114xm256,-130v0,81,-41,135,-116,135v-74,0,-116,-54,-116,-135v0,-81,42,-135,116,-135v75,0,116,54,116,135xm185,-302r-27,0r0,-32r27,0r0,32xm122,-302r-27,0r0,-32r27,0r0,32","w":280},"\u00f6":{"d":"161,-90v0,-34,-17,-76,-61,-76v-43,0,-61,42,-61,76v0,33,18,76,61,76v44,0,61,-43,61,-76xm100,-186v113,0,113,191,0,191v-114,0,-112,-191,0,-191xm145,-223r-27,0r0,-32r27,0r0,32xm82,-223r-27,0r0,-32r27,0r0,32"},"\u00ca":{"d":"197,0r-160,0r0,-260r154,0r0,22r-131,0r0,93r126,0r0,22r-126,0r0,101r137,0r0,22xm61,-282r36,-52r26,0r36,52r-17,0r-32,-38r-32,38r-17,0","w":219},"\u00fb":{"d":"98,-14v72,-2,48,-98,52,-167r21,0r2,181r-22,0v-1,-8,1,-20,-2,-27v-13,22,-33,32,-56,32v-60,0,-64,-52,-64,-73r0,-113r21,0v6,65,-24,169,48,167xm51,-202r36,-53r26,0r36,53r-17,0r-32,-38r-32,38r-17,0"},"\u00bc":{"d":"225,0r0,-35r-76,0r0,-11r72,-103r23,0r0,97r22,0r0,17r-22,0r0,35r-19,0xm235,-255r-150,255r-19,0r150,-255r19,0xm225,-52r0,-77r-51,77r51,0xm93,-102r-18,0r0,-130v-11,10,-24,17,-37,22r0,-16v20,-4,27,-25,55,-23r0,147","w":300},"\u00ac":{"d":"187,-40r0,-74r-158,0r0,-22r180,0r0,96r-22,0","w":237},"\u00cb":{"d":"197,0r-160,0r0,-260r154,0r0,22r-131,0r0,93r126,0r0,22r-126,0r0,101r137,0r0,22xm155,-302r-27,0r0,-32r27,0r0,32xm92,-302r-26,0r0,-32r26,0r0,32","w":219},"\u00bd":{"d":"235,-255r-150,255r-19,0r150,-255r19,0xm93,-102r-18,0r0,-130v-11,10,-24,17,-37,22r0,-16v20,-4,27,-25,55,-23r0,147xm283,0r-102,0r0,-15v21,-17,80,-71,80,-98v0,-13,-12,-22,-29,-22v-20,0,-32,12,-32,25r-17,0v0,-26,21,-43,49,-43v26,0,48,13,48,39v0,35,-54,79,-70,97r73,0r0,17","w":300},"\u00d5":{"d":"49,-130v0,57,26,114,91,114v121,0,125,-228,0,-228v-65,0,-91,57,-91,114xm256,-130v0,81,-41,135,-116,135v-74,0,-116,-54,-116,-135v0,-81,42,-135,116,-135v75,0,116,54,116,135xm190,-329v-6,34,-38,30,-69,23v-12,-3,-14,14,-30,10v5,-32,39,-33,67,-22v8,0,15,-4,18,-11r14,0","w":280},"\u00fa":{"d":"98,-14v72,-2,48,-98,52,-167r21,0r2,181r-22,0v-1,-8,1,-20,-2,-27v-13,22,-33,32,-56,32v-60,0,-64,-52,-64,-73r0,-113r21,0v6,65,-24,169,48,167xm114,-255r29,0r-46,52r-16,0"},"\u00e9":{"d":"181,-85r-140,0v1,38,19,71,63,71v26,0,47,-19,52,-44r23,0v-11,44,-38,63,-82,63v-54,0,-79,-46,-79,-95v0,-49,27,-96,81,-96v60,0,82,44,82,101xm42,-105r116,0v-3,-35,-22,-61,-59,-61v-35,0,-54,29,-57,61xm114,-255r29,0r-46,52r-16,0"},"\u00ed":{"d":"51,0r-22,0r0,-181r22,0r0,181xm54,-255r29,0r-46,52r-16,0","w":79},"\u00d0":{"d":"56,-238r0,87r78,0r0,16r-78,0r0,113r53,0v73,0,103,-42,103,-108v1,-92,-62,-115,-156,-108xm33,0r0,-135r-25,0r0,-16r25,0r0,-109v119,-9,204,16,204,130v0,113,-85,140,-204,130","w":259},"\u00ee":{"d":"51,0r-22,0r0,-181r22,0r0,181xm-9,-202r36,-53r26,0r36,53r-17,0r-32,-38r-32,38r-17,0","w":79},"\u00ae":{"d":"144,5v-75,0,-135,-60,-135,-135v0,-74,60,-135,135,-135v75,0,135,61,135,135v0,75,-60,135,-135,135xm144,-16v66,0,114,-48,114,-114v0,-66,-48,-114,-114,-114v-66,0,-114,48,-114,114v0,66,48,114,114,114xm113,-122r0,68r-19,0r0,-154v50,0,120,-9,120,42v0,30,-21,41,-48,44r46,68r-22,0r-43,-68r-34,0xm113,-140v34,-3,80,12,80,-26v0,-36,-48,-21,-80,-24r0,50","w":288},"\u00a6":{"d":"29,63r0,-126r22,0r0,126r-22,0xm29,-117r0,-126r22,0r0,126r-22,0","w":79},"\u00fe":{"d":"47,-95v0,41,14,81,61,81v42,0,52,-46,52,-80v0,-34,-14,-72,-55,-72v-42,0,-58,35,-58,71xm48,-28v-4,29,0,66,-1,97r-22,0r0,-329r22,0r1,107v12,-22,37,-33,61,-33v54,0,75,48,75,95v0,45,-21,96,-73,96v-27,0,-49,-11,-63,-33"},"\u00c3":{"d":"62,-92r114,0r-56,-146xm27,0r-24,0r103,-260r28,0r103,260r-25,0r-28,-70r-129,0xm170,-329v-5,33,-38,32,-68,23v-8,0,-16,3,-17,10r-14,0v5,-32,39,-33,67,-22v8,0,15,-4,18,-11r14,0","w":240},"\u00fd":{"d":"3,-181r26,0r61,151r60,-151r24,0r-100,250r-24,0r28,-69xm104,-255r29,0r-46,52r-16,0","w":180},"\u00c1":{"d":"62,-92r114,0r-56,-146xm27,0r-24,0r103,-260r28,0r103,260r-25,0r-28,-70r-129,0xm134,-334r29,0r-46,52r-15,0","w":240},"\u00c7":{"d":"92,48v16,7,51,18,51,-7v-1,-15,-17,-15,-29,-11r8,-26v-70,-5,-100,-66,-100,-134v0,-71,33,-135,112,-135v42,0,83,19,86,66r-25,0v-4,-32,-32,-45,-61,-45v-67,0,-87,61,-87,114v0,53,20,114,87,114v29,0,58,-15,64,-47r25,0v-8,45,-47,69,-92,68r-4,13v18,0,36,3,36,24v0,33,-49,26,-74,16","w":240},"\u00f1":{"d":"102,-166v-71,2,-48,97,-52,166r-21,0r-2,-181r22,0v1,9,-1,21,2,28v13,-23,33,-33,57,-33v59,0,63,52,63,73r0,113r-21,0v-6,-65,24,-168,-48,-166xm150,-250v-6,33,-38,31,-69,23v-12,-3,-14,14,-30,10v5,-32,40,-33,67,-21v8,0,15,-5,18,-12r14,0"},"\u00f0":{"d":"56,-251r6,-14v22,5,29,8,46,16r33,-21r11,10r-31,19v23,16,63,51,63,145v0,63,-29,101,-84,101v-113,1,-111,-180,-3,-181v42,0,58,31,64,46v1,-31,-18,-75,-57,-100r-33,20r-11,-10r30,-18v-12,-6,-16,-8,-34,-13xm39,-85v0,31,18,72,61,72v44,0,61,-41,61,-72v0,-32,-17,-73,-61,-73v-43,0,-61,41,-61,73"},"\u00c5":{"d":"62,-92r114,0r-56,-146xm27,0r-24,0r103,-260r28,0r103,260r-25,0r-28,-70r-129,0xm89,-313v0,-17,14,-32,31,-32v18,0,32,15,32,32v0,17,-14,32,-32,32v-17,0,-31,-15,-31,-32xm120,-293v27,0,24,-40,0,-40v-10,0,-20,10,-20,20v0,10,10,20,20,20","w":240},"\u03bc":{"d":"98,-14v72,-2,48,-98,52,-167r21,0r2,181r-22,0v-1,-8,1,-20,-2,-27v-20,35,-61,39,-99,23r0,73r-21,0r0,-250r21,0v6,65,-24,169,48,167"},"\u00d9":{"d":"35,-260r23,0r0,168v2,47,29,76,72,76v43,0,72,-29,72,-76r0,-168r23,0v-5,117,32,267,-95,265v-63,0,-95,-41,-95,-96r0,-169xm87,-334r29,0r33,52r-16,0","w":259},"\u00c8":{"d":"197,0r-160,0r0,-260r154,0r0,22r-131,0r0,93r126,0r0,22r-126,0r0,101r137,0r0,22xm67,-334r29,0r33,52r-16,0","w":219},"\u0160":{"d":"199,-68v0,56,-49,73,-101,73v-41,0,-76,-30,-77,-73r25,0v-1,74,128,67,128,2v0,-26,-19,-38,-41,-46v-42,-14,-106,-27,-106,-83v0,-45,42,-70,83,-70v34,0,79,12,84,62r-25,0v-5,-62,-117,-52,-117,5v0,73,147,40,147,130xm159,-334r-36,52r-26,0r-36,-52r17,0r32,38r33,-38r16,0","w":219},"\u00f5":{"d":"161,-90v0,-34,-17,-76,-61,-76v-43,0,-61,42,-61,76v0,33,18,76,61,76v44,0,61,-43,61,-76xm100,-186v113,0,113,191,0,191v-114,0,-112,-191,0,-191xm150,-250v-6,33,-38,31,-69,23v-12,-3,-14,14,-30,10v5,-32,40,-33,67,-21v8,0,15,-5,18,-12r14,0"},"\u00d1":{"d":"33,0r0,-260r27,0r144,229r0,-229r23,0r0,260r-29,0r-141,-225r0,225r-24,0xm180,-329v-6,34,-38,30,-69,23v-12,-3,-14,14,-30,10v5,-32,39,-33,67,-22v8,0,15,-4,18,-11r14,0","w":259},"\u00da":{"d":"35,-260r23,0r0,168v2,47,29,76,72,76v43,0,72,-29,72,-76r0,-168r23,0v-5,117,32,267,-95,265v-63,0,-95,-41,-95,-96r0,-169xm144,-334r29,0r-46,52r-16,0","w":259},"\u00c2":{"d":"62,-92r114,0r-56,-146xm27,0r-24,0r103,-260r28,0r103,260r-25,0r-28,-70r-129,0xm71,-282r36,-52r27,0r35,52r-17,0r-32,-38r-32,38r-17,0","w":240},"\u00f4":{"d":"161,-90v0,-34,-17,-76,-61,-76v-43,0,-61,42,-61,76v0,33,18,76,61,76v44,0,61,-43,61,-76xm100,-186v113,0,113,191,0,191v-114,0,-112,-191,0,-191xm51,-202r36,-53r26,0r36,53r-17,0r-32,-38r-32,38r-17,0"},"\u00ff":{"d":"3,-181r26,0r61,151r60,-151r24,0r-100,250r-24,0r28,-69xm135,-223r-27,0r0,-32r27,0r0,32xm72,-223r-27,0r0,-32r27,0r0,32","w":180},"\u00c9":{"d":"197,0r-160,0r0,-260r154,0r0,22r-131,0r0,93r126,0r0,22r-126,0r0,101r137,0r0,22xm124,-334r29,0r-46,52r-16,0","w":219},"\u00d2":{"d":"49,-130v0,57,26,114,91,114v121,0,125,-228,0,-228v-65,0,-91,57,-91,114xm256,-130v0,81,-41,135,-116,135v-74,0,-116,-54,-116,-135v0,-81,42,-135,116,-135v75,0,116,54,116,135xm97,-334r29,0r33,52r-16,0","w":280},"\u00e2":{"d":"36,-50v0,24,19,36,41,36v47,0,56,-39,54,-77v-31,1,-95,-5,-95,41xm13,-50v-1,-56,65,-64,118,-61v3,-37,-11,-55,-43,-55v-22,0,-41,7,-44,31r-23,0v5,-37,33,-51,68,-51v40,0,64,18,64,60r1,126r-22,0r-1,-27v-7,18,-32,31,-58,32v-33,0,-60,-20,-60,-55xm41,-202r36,-53r26,0r36,53r-17,0r-32,-38r-32,38r-17,0","w":180},"\u00d7":{"d":"119,-78r-77,76r-13,-13r77,-76r-77,-76r13,-14r77,77r76,-77r14,14r-77,76r77,76r-14,13","w":237},"\u00f7":{"d":"29,-80r0,-21r180,0r0,21r-180,0xm132,0r-27,0r0,-32r27,0r0,32xm132,-149r-27,0r0,-32r27,0r0,32","w":237},"\u00e7":{"d":"59,48v17,7,52,18,52,-7v0,-15,-17,-15,-29,-11r8,-25v-101,-6,-96,-193,7,-191v37,0,68,22,69,61r-23,0v-2,-28,-20,-41,-49,-41v-34,0,-54,34,-54,75v0,42,20,77,54,77v28,0,47,-18,49,-43r23,0v-5,41,-28,62,-68,62r-3,13v18,0,36,3,36,24v0,33,-49,26,-74,16","w":180},"\u00b2":{"d":"113,-102r-101,0r0,-15v21,-17,80,-71,80,-98v0,-13,-12,-22,-29,-22v-20,0,-32,12,-32,25r-18,0v0,-26,22,-43,50,-43v26,0,48,13,48,39v0,35,-54,79,-70,97r72,0r0,17","w":119},"\u00f9":{"d":"98,-14v72,-2,48,-98,52,-167r21,0r2,181r-22,0v-1,-8,1,-20,-2,-27v-13,22,-33,32,-56,32v-60,0,-64,-52,-64,-73r0,-113r21,0v6,65,-24,169,48,167xm57,-255r29,0r33,52r-16,0"},"\u00c0":{"d":"62,-92r114,0r-56,-146xm27,0r-24,0r103,-260r28,0r103,260r-25,0r-28,-70r-129,0xm77,-334r29,0r33,52r-16,0","w":240},"\u00db":{"d":"35,-260r23,0r0,168v2,47,29,76,72,76v43,0,72,-29,72,-76r0,-168r23,0v-5,117,32,267,-95,265v-63,0,-95,-41,-95,-96r0,-169xm81,-282r36,-52r26,0r36,52r-17,0r-32,-38r-32,38r-17,0","w":259},"\u017e":{"d":"14,0r0,-20r106,-141r-106,0r0,-20r131,0r0,20r-104,141r104,0r0,20r-131,0xm129,-255r-36,53r-26,0r-36,-53r17,0r32,39r32,-39r17,0","w":159},"\u0178":{"d":"99,0r0,-112r-96,-148r30,0r79,126r80,-126r25,0r-95,147r0,113r-23,0xm155,-302r-27,0r0,-32r27,0r0,32xm92,-302r-26,0r0,-32r26,0r0,32","w":219},"\u00c4":{"d":"62,-92r114,0r-56,-146xm27,0r-24,0r103,-260r28,0r103,260r-25,0r-28,-70r-129,0xm165,-302r-27,0r0,-32r27,0r0,32xm102,-302r-26,0r0,-32r26,0r0,32","w":240},"\u00ce":{"d":"62,0r-23,0r0,-261r23,0r0,261xm1,-282r36,-52r26,0r36,52r-17,0r-32,-38r-32,38r-17,0","w":100},"\u00ef":{"d":"51,0r-22,0r0,-181r22,0r0,181xm85,-223r-27,0r0,-32r27,0r0,32xm22,-223r-27,0r0,-32r27,0r0,32","w":79},"\u00d3":{"d":"49,-130v0,57,26,114,91,114v121,0,125,-228,0,-228v-65,0,-91,57,-91,114xm256,-130v0,81,-41,135,-116,135v-74,0,-116,-54,-116,-135v0,-81,42,-135,116,-135v75,0,116,54,116,135xm154,-334r29,0r-46,52r-16,0","w":280},"\u00e5":{"d":"36,-50v0,24,19,36,41,36v47,0,56,-39,54,-77v-31,1,-95,-5,-95,41xm13,-50v-1,-56,65,-64,118,-61v3,-37,-11,-55,-43,-55v-22,0,-41,7,-44,31r-23,0v5,-37,33,-51,68,-51v40,0,64,18,64,60r1,126r-22,0r-1,-27v-7,18,-32,31,-58,32v-33,0,-60,-20,-60,-55xm58,-234v0,-17,15,-31,32,-31v17,0,32,14,32,31v0,17,-15,32,-32,32v-17,0,-32,-15,-32,-32xm90,-214v29,0,23,-39,0,-39v-10,0,-20,9,-20,19v0,10,10,20,20,20","w":180},"\u00dd":{"d":"99,0r0,-112r-96,-148r30,0r79,126r80,-126r25,0r-95,147r0,113r-23,0xm124,-334r29,0r-46,52r-16,0","w":219},"\u2122":{"d":"126,-260r0,14r-48,0r0,138r-20,0r0,-138r-48,0r0,-14r116,0xm188,-260r44,112r43,-112r35,0r0,152r-19,0r-1,-136r-52,136r-13,0r-53,-136r0,136r-19,0r0,-152r35,0","w":338},"\u00b3":{"d":"53,-171r0,-18v20,3,41,-5,41,-26v0,-13,-13,-22,-32,-22v-21,0,-31,9,-33,22r-19,0v0,-25,24,-40,49,-40v28,0,55,12,55,41v0,18,-15,30,-33,34v20,4,35,18,35,38v0,28,-28,42,-55,42v-29,0,-53,-13,-53,-42r19,0v0,15,15,25,33,25v22,0,37,-10,37,-27v0,-23,-22,-31,-44,-27","w":119},"\u017d":{"d":"186,0r-172,0r0,-22r144,-216r-144,0r0,-22r172,0r0,22r-145,216r145,0r0,22xm149,-334r-36,52r-26,0r-36,-52r17,0r32,38r32,-38r17,0"},"\u00be":{"d":"225,0r0,-35r-76,0r0,-11r72,-103r23,0r0,97r22,0r0,17r-22,0r0,35r-19,0xm235,-255r-150,255r-19,0r150,-255r19,0xm225,-52r0,-77r-51,77r51,0xm53,-171r0,-18v20,3,41,-5,41,-26v0,-13,-13,-22,-32,-22v-21,0,-31,9,-33,22r-19,0v0,-25,24,-40,49,-40v28,0,55,12,55,41v0,18,-15,30,-33,34v20,4,35,18,35,38v0,28,-28,42,-55,42v-29,0,-53,-13,-53,-42r19,0v0,15,15,25,33,25v22,0,37,-10,37,-27v0,-23,-22,-31,-44,-27","w":300},"\u20ac":{"d":"16,-119v6,-1,19,4,16,-6r0,-12r-22,0r7,-20r17,0v7,-53,36,-98,92,-98v27,0,48,9,64,31r-10,31v-9,-27,-31,-40,-54,-40v-42,0,-61,37,-67,76r111,0r-7,20r-106,0r0,18r101,0r-6,20r-94,0v5,42,23,83,68,83v23,0,40,-12,55,-31r0,30v-15,15,-34,22,-55,22v-59,0,-87,-47,-93,-104r-23,0"},"\u00f2":{"d":"161,-90v0,-34,-17,-76,-61,-76v-43,0,-61,42,-61,76v0,33,18,76,61,76v44,0,61,-43,61,-76xm100,-186v113,0,113,191,0,191v-114,0,-112,-191,0,-191xm57,-255r29,0r33,52r-16,0"},"\u00fc":{"d":"98,-14v72,-2,48,-98,52,-167r21,0r2,181r-22,0v-1,-8,1,-20,-2,-27v-13,22,-33,32,-56,32v-60,0,-64,-52,-64,-73r0,-113r21,0v6,65,-24,169,48,167xm145,-223r-27,0r0,-32r27,0r0,32xm82,-223r-27,0r0,-32r27,0r0,32"},"\u00eb":{"d":"181,-85r-140,0v1,38,19,71,63,71v26,0,47,-19,52,-44r23,0v-11,44,-38,63,-82,63v-54,0,-79,-46,-79,-95v0,-49,27,-96,81,-96v60,0,82,44,82,101xm42,-105r116,0v-3,-35,-22,-61,-59,-61v-35,0,-54,29,-57,61xm145,-223r-27,0r0,-32r27,0r0,32xm82,-223r-27,0r0,-32r27,0r0,32"},"\u00b1":{"d":"108,-119r0,-62r22,0r0,62r79,0r0,22r-79,0r0,61r-22,0r0,-61r-79,0r0,-22r79,0xm29,0r0,-22r180,0r0,22r-180,0","w":237},"\u00e1":{"d":"36,-50v0,24,19,36,41,36v47,0,56,-39,54,-77v-31,1,-95,-5,-95,41xm13,-50v-1,-56,65,-64,118,-61v3,-37,-11,-55,-43,-55v-22,0,-41,7,-44,31r-23,0v5,-37,33,-51,68,-51v40,0,64,18,64,60r1,126r-22,0r-1,-27v-7,18,-32,31,-58,32v-33,0,-60,-20,-60,-55xm104,-255r29,0r-46,52r-16,0","w":180},"\u00cf":{"d":"62,0r-23,0r0,-261r23,0r0,261xm95,-302r-27,0r0,-32r27,0r0,32xm32,-302r-27,0r0,-32r27,0r0,32","w":100},"\u00ec":{"d":"51,0r-22,0r0,-181r22,0r0,181xm-3,-255r29,0r33,52r-16,0","w":79},"\u00cd":{"d":"62,0r-23,0r0,-261r23,0r0,261xm64,-334r29,0r-46,52r-16,0","w":100},"\u00a9":{"d":"144,5v-75,0,-135,-60,-135,-135v0,-74,60,-135,135,-135v75,0,135,61,135,135v0,75,-60,135,-135,135xm30,-130v0,66,48,114,114,114v66,0,114,-48,114,-114v0,-66,-48,-114,-114,-114v-66,0,-114,48,-114,114xm193,-106r20,0v-16,89,-144,55,-137,-25v-11,-84,125,-108,137,-27r-20,0v-19,-61,-96,-29,-96,26v0,30,19,61,53,61v21,0,40,-15,43,-35","w":288},"\u00e4":{"d":"36,-50v0,24,19,36,41,36v47,0,56,-39,54,-77v-31,1,-95,-5,-95,41xm13,-50v-1,-56,65,-64,118,-61v3,-37,-11,-55,-43,-55v-22,0,-41,7,-44,31r-23,0v5,-37,33,-51,68,-51v40,0,64,18,64,60r1,126r-22,0r-1,-27v-7,18,-32,31,-58,32v-33,0,-60,-20,-60,-55xm135,-223r-27,0r0,-32r27,0r0,32xm72,-223r-27,0r0,-32r27,0r0,32","w":180},"\u00e0":{"d":"36,-50v0,24,19,36,41,36v47,0,56,-39,54,-77v-31,1,-95,-5,-95,41xm13,-50v-1,-56,65,-64,118,-61v3,-37,-11,-55,-43,-55v-22,0,-41,7,-44,31r-23,0v5,-37,33,-51,68,-51v40,0,64,18,64,60r1,126r-22,0r-1,-27v-7,18,-32,31,-58,32v-33,0,-60,-20,-60,-55xm47,-255r29,0r33,52r-16,0","w":180},"\u0161":{"d":"137,-50v0,-54,-117,-20,-114,-86v3,-68,130,-69,132,0r-24,0v-2,-41,-79,-40,-85,-1v-5,38,115,23,115,83v0,41,-38,59,-76,59v-32,0,-68,-14,-68,-54r23,0v3,49,97,47,97,-1xm139,-255r-36,53r-26,0r-36,-53r17,0r32,39r32,-39r17,0","w":180},"\u00cc":{"d":"62,0r-23,0r0,-261r23,0r0,261xm7,-334r29,0r33,52r-16,0","w":100},"\u00d4":{"d":"49,-130v0,57,26,114,91,114v121,0,125,-228,0,-228v-65,0,-91,57,-91,114xm256,-130v0,81,-41,135,-116,135v-74,0,-116,-54,-116,-135v0,-81,42,-135,116,-135v75,0,116,54,116,135xm91,-282r36,-52r26,0r36,52r-17,0r-32,-38r-32,38r-17,0","w":280},"\u00de":{"d":"59,-183r0,104v58,-1,123,10,123,-52v0,-61,-65,-52,-123,-52xm36,0r0,-260r23,0r0,56v74,0,148,-9,148,73v0,82,-74,74,-148,74r0,57r-23,0","w":219},"\u00e8":{"d":"181,-85r-140,0v1,38,19,71,63,71v26,0,47,-19,52,-44r23,0v-11,44,-38,63,-82,63v-54,0,-79,-46,-79,-95v0,-49,27,-96,81,-96v60,0,82,44,82,101xm42,-105r116,0v-3,-35,-22,-61,-59,-61v-35,0,-54,29,-57,61xm57,-255r29,0r33,52r-16,0"},"\u00e3":{"d":"36,-50v0,24,19,36,41,36v47,0,56,-39,54,-77v-31,1,-95,-5,-95,41xm13,-50v-1,-56,65,-64,118,-61v3,-37,-11,-55,-43,-55v-22,0,-41,7,-44,31r-23,0v5,-37,33,-51,68,-51v40,0,64,18,64,60r1,126r-22,0r-1,-27v-7,18,-32,31,-58,32v-33,0,-60,-20,-60,-55xm140,-250v-6,33,-38,31,-69,23v-12,-3,-14,14,-30,10v5,-32,40,-33,67,-21v8,0,15,-5,18,-12r14,0","w":180},"\u00dc":{"d":"35,-260r23,0r0,168v2,47,29,76,72,76v43,0,72,-29,72,-76r0,-168r23,0v-5,117,32,267,-95,265v-63,0,-95,-41,-95,-96r0,-169xm175,-302r-27,0r0,-32r27,0r0,32xm112,-302r-27,0r0,-32r27,0r0,32","w":259},"\u00ea":{"d":"181,-85r-140,0v1,38,19,71,63,71v26,0,47,-19,52,-44r23,0v-11,44,-38,63,-82,63v-54,0,-79,-46,-79,-95v0,-49,27,-96,81,-96v60,0,82,44,82,101xm42,-105r116,0v-3,-35,-22,-61,-59,-61v-35,0,-54,29,-57,61xm51,-202r36,-53r26,0r36,53r-17,0r-32,-38r-32,38r-17,0"},"\u00a0":{"w":100}}});

/* /includes/jslib/cufon/Univers_400.font.js */

Cufon.registerFont({"w":200,"face":{"font-family":"Univers400","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"6","bbox":"-60 -341 357 90","underline-thickness":"18","underline-position":"-36","stemh":"31","stemv":"36","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"!":{"d":"94,-260r-8,201r-25,0r-7,-201r40,0xm54,0r0,-36r38,0r0,36r-38,0","w":140},"\"":{"d":"27,-249r30,0r-5,88r-19,0xm87,-249r30,0r-6,88r-19,0","w":144},"#":{"d":"2,-71r0,-25r40,0r11,-53r-36,0r0,-25r40,0r14,-75r29,0r-14,75r44,0r14,-75r29,0r-14,75r36,0r0,25r-41,0r-10,53r36,0r0,25r-40,0r-14,71r-28,0r13,-71r-44,0r-13,71r-29,0r13,-71r-36,0xm72,-96r43,0r10,-53r-44,0"},"$":{"d":"15,-184v0,-49,41,-64,76,-65r0,-30r18,0r0,29v17,1,77,3,78,59r-38,0v0,-23,-19,-29,-40,-30r0,76v37,10,82,23,82,74v0,58,-42,68,-83,73r0,35r-18,0r0,-35v-16,-1,-38,-1,-60,-20v-18,-17,-20,-35,-20,-50r37,0v-1,15,8,38,43,39r0,-84v-59,-18,-75,-33,-75,-71xm91,-151r0,-70v-72,13,-39,65,0,70xm109,-108r0,79v31,0,44,-20,44,-38v0,-27,-26,-36,-44,-41"},"%":{"d":"80,-256v41,0,56,31,56,64v0,44,-27,65,-59,65v-32,0,-58,-19,-58,-63v0,-38,20,-66,61,-66xm77,-148v30,0,30,-36,30,-43v0,-17,-4,-43,-30,-43v-31,0,-31,35,-31,44v0,8,0,42,31,42xm243,-125v26,0,58,16,58,63v0,40,-19,66,-58,66v-46,0,-59,-34,-59,-64v0,-43,27,-65,59,-65xm243,-17v28,0,31,-31,31,-44v0,-11,-3,-43,-31,-43v-31,0,-31,37,-31,48v0,12,3,39,31,39xm90,14r-23,0r158,-277r24,0","w":320},"&":{"d":"112,-269v53,0,62,17,70,52v0,38,-35,61,-51,72r64,63v13,-23,19,-42,19,-86r35,0v0,50,-7,76,-32,108r62,60r-50,0r-34,-32v-24,24,-54,38,-90,38v-56,0,-87,-33,-87,-75v0,-40,27,-62,54,-83v-10,-10,-30,-28,-30,-59v0,-34,25,-58,70,-58xm108,-169v9,-6,35,-24,35,-46v0,-11,-8,-25,-30,-25v-47,0,-34,49,-5,71xm172,-54r-77,-75v-29,22,-40,40,-40,59v4,69,101,46,117,16","w":280},"\u2019":{"d":"40,-260r42,0r-41,89r-24,0","w":100},"(":{"d":"90,-271v-9,28,-31,113,-31,154v0,51,13,93,34,161r-24,0v-19,-48,-43,-107,-43,-160v0,-51,27,-123,41,-155r23,0","w":119},")":{"d":"30,44v9,-29,31,-113,31,-154v0,-51,-13,-92,-34,-161r24,0v19,48,43,108,43,160v1,53,-28,123,-41,155r-23,0","w":119},"*":{"d":"173,-203r0,27r-62,-7r37,50r-24,15r-24,-57r-26,56r-24,-13r38,-51r-60,6r0,-27r61,8r-37,-50r24,-13r24,56r25,-57r24,14r-38,50"},"+":{"d":"90,0r0,-77r-77,0r0,-27r77,0r0,-77r30,0r0,77r77,0r0,27r-77,0r0,77r-30,0","w":210},",":{"d":"41,-43r41,0r-40,88r-24,0","w":100},"-":{"d":"15,-81r0,-27r90,0r0,27r-90,0","w":119},".":{"d":"29,0r0,-43r40,0r0,43r-40,0","w":100},"\/":{"d":"-3,6r84,-263r23,0r-83,263r-24,0","w":100},"0":{"d":"99,5v-67,-10,-83,-44,-83,-127v0,-37,4,-132,83,-132v75,0,84,80,84,127v0,81,-27,127,-84,132xm50,-123v0,55,11,98,49,98v42,0,49,-55,49,-99v0,-60,-10,-101,-48,-101v-44,0,-50,57,-50,102"},"1":{"d":"98,0r0,-210v-16,13,-41,28,-58,36r0,-36v23,-12,46,-27,60,-39r32,0r0,249r-34,0"},"2":{"d":"19,0r0,-33v34,-36,74,-68,104,-107v14,-19,18,-31,18,-44v0,-12,-4,-41,-40,-41v-40,0,-41,35,-41,44r-37,0v0,-12,0,-37,23,-55v50,-38,131,-20,131,55v0,53,-81,116,-118,153r118,0r0,28r-158,0"},"3":{"d":"147,-68v-1,-38,-32,-49,-70,-45r0,-30v25,3,66,-2,66,-43v0,-52,-83,-55,-89,0r-36,0v2,-62,60,-68,80,-68v55,0,82,33,82,68v0,20,-12,50,-50,58v53,8,53,56,53,61v0,35,-28,73,-86,73v-26,0,-53,-7,-69,-26v-14,-16,-14,-34,-14,-44r38,0v-1,24,15,41,46,41v34,0,49,-23,49,-45"},"4":{"d":"122,0r0,-54r-112,0r0,-43r108,-155r39,0r0,169r36,0r0,29r-36,0r0,54r-35,0xm37,-83r86,0r0,-132"},"5":{"d":"148,-81v0,-65,-83,-67,-92,-20r-33,0r7,-148r140,0r0,29r-109,0r-5,81v8,-8,24,-23,53,-23v50,0,74,39,74,82v0,49,-34,86,-89,86v-40,0,-72,-23,-74,-65r38,0v0,25,22,35,41,35v44,0,49,-41,49,-57"},"6":{"d":"103,5v-62,0,-85,-61,-85,-118v0,-55,14,-141,93,-141v51,0,71,29,73,64r-37,0v-1,-29,-22,-37,-38,-37v-36,0,-52,31,-55,97v8,-11,21,-32,58,-32v40,0,75,27,75,80v0,58,-42,87,-84,87xm104,-22v22,0,48,-16,48,-56v0,-18,-5,-56,-46,-56v-34,0,-50,27,-50,56v0,32,20,56,48,56"},"7":{"d":"13,-219r0,-30r164,0r0,30r-91,219r-41,0r96,-219r-128,0"},"8":{"d":"13,-67v0,-30,30,-61,55,-64v-33,-8,-50,-31,-50,-56v0,-22,15,-68,81,-68v90,0,116,104,32,123v15,4,54,15,54,63v0,34,-23,73,-85,73v-42,0,-87,-27,-87,-71xm147,-188v0,-22,-17,-40,-47,-40v-26,0,-47,16,-47,40v0,25,20,41,46,41v28,0,48,-16,48,-41xm50,-70v0,20,13,46,50,46v74,0,59,-93,0,-93v-30,0,-50,21,-50,47"},"9":{"d":"17,-59r37,0v0,21,12,36,40,36v55,0,55,-64,54,-103v-39,60,-133,31,-132,-48v0,-57,41,-80,80,-80v26,0,66,11,80,61v4,16,7,34,7,67v0,37,0,132,-92,132v-33,0,-73,-14,-74,-65xm144,-173v0,-36,-24,-54,-48,-54v-29,0,-45,24,-45,54v0,32,20,51,47,51v28,0,46,-21,46,-51"},":":{"d":"30,-140r0,-43r40,0r0,43r-40,0xm30,0r0,-42r40,0r0,42r-40,0","w":100},";":{"d":"34,-139r0,-44r42,0r0,44r-42,0xm41,-43r41,0r-40,88r-24,0","w":100},"<":{"d":"13,-76r0,-29r184,-72r0,31r-146,56r146,55r0,31","w":210},"=":{"d":"13,-113r0,-28r184,0r0,28r-184,0xm13,-40r0,-28r184,0r0,28r-184,0","w":210},">":{"d":"197,-76r-184,72r0,-31r146,-55r-146,-56r0,-31r184,72r0,29","w":210},"?":{"d":"64,-97v-4,-33,72,-76,60,-101v0,-36,-39,-37,-49,-37v-5,0,-24,0,-48,10r0,-32v8,-3,25,-8,51,-8v49,-1,79,21,83,64v3,34,-41,64,-63,93v-8,10,-1,33,-3,49r-31,0r0,-38xm62,0r0,-37r37,0r0,37r-37,0","w":180},"@":{"d":"187,-203v18,0,39,14,42,28r6,-23r25,0v-9,34,-28,66,-28,102v0,13,11,15,16,15v23,0,50,-32,50,-79v0,-62,-49,-91,-103,-91v-68,0,-128,45,-128,125v0,116,151,146,222,82r9,12v-32,23,-64,38,-109,38v-81,0,-138,-53,-138,-133v0,-91,72,-140,144,-140v61,0,120,36,120,109v0,58,-39,95,-73,95v-18,1,-34,-15,-28,-36v-4,9,-17,36,-50,36v-28,0,-48,-21,-48,-55v0,-39,28,-85,71,-85xm171,-81v45,0,70,-104,22,-104v-29,0,-48,42,-48,69v0,19,8,35,26,35","w":365},"A":{"d":"3,0r110,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0xm130,-224r-50,127r98,0","w":259},"B":{"d":"219,-71v0,96,-98,65,-185,71r0,-260v81,2,177,-17,177,66v0,42,-31,54,-44,58v15,5,52,15,52,65xm69,-230r0,80r51,0v12,0,54,0,54,-41v0,-59,-58,-33,-105,-39xm69,-119r0,90v52,0,111,9,113,-45v2,-50,-61,-47,-113,-45","w":240},"C":{"d":"132,-26v26,0,54,-21,54,-42r40,0v-5,51,-52,72,-97,72v-92,0,-109,-81,-109,-131v0,-55,21,-137,114,-137v36,0,88,15,93,74r-39,0v-1,-9,-6,-45,-56,-45v-63,0,-74,64,-74,108v0,49,14,101,74,101","w":240},"D":{"d":"244,-128v-1,129,-87,134,-212,128r0,-260v75,4,133,-17,180,34v24,26,32,63,32,98xm68,-230r0,200v39,-1,78,4,103,-14v33,-25,34,-67,34,-82v0,-10,-2,-53,-25,-81v-23,-27,-65,-22,-112,-23","w":259},"E":{"d":"27,0r0,-260r163,0r0,31r-127,0r0,81r121,0r0,30r-121,0r0,86r130,0r0,32r-166,0","w":219},"F":{"d":"34,0r0,-260r155,0r0,31r-118,0r0,81r111,0r0,30r-111,0r0,118r-37,0"},"G":{"d":"156,6v-93,2,-131,-56,-131,-132v0,-26,6,-87,56,-120v25,-17,59,-18,72,-18v21,0,52,2,77,27v15,17,16,32,17,42r-39,0v-4,-24,-24,-41,-59,-41v-90,1,-110,117,-63,187v22,34,96,27,126,18r0,-77r-59,0r0,-30r95,0r0,128v-15,5,-48,16,-92,16","w":280},"H":{"d":"32,-260r36,0r0,112r123,0r0,-112r36,0r0,260r-36,0r0,-117r-123,0r0,117r-36,0r0,-260","w":259},"I":{"d":"32,0r0,-260r36,0r0,260r-36,0","w":100},"J":{"d":"85,-26v27,2,42,-27,42,-54r0,-180r36,0r0,190v-3,73,-92,102,-142,47v-14,-16,-13,-37,-13,-48r38,0v-1,27,9,43,39,45"},"K":{"d":"33,0r0,-260r36,0r0,114r108,-114r50,0r-116,116r128,144r-50,0r-120,-138r0,138r-36,0","w":240},"L":{"d":"33,0r0,-260r36,0r0,228r121,0r0,32r-157,0"},"M":{"d":"32,0r0,-260r64,0r74,214r75,-214r59,0r0,260r-35,0r0,-234r-85,234r-35,0r-82,-233r0,233r-35,0","w":339},"N":{"d":"34,0r0,-260r50,0r128,215r0,-215r33,0r0,260r-46,0r-132,-221r0,221r-33,0","w":280},"O":{"d":"21,-128v0,-30,3,-75,34,-104v83,-78,204,-28,204,100v0,69,-28,138,-120,138v-89,0,-118,-63,-118,-134xm59,-130v0,50,27,106,81,106v21,0,42,-6,57,-24v22,-26,24,-67,24,-85v0,-59,-20,-104,-79,-104v-66,0,-83,53,-83,107","w":280},"P":{"d":"209,-189v0,65,-59,78,-141,73r0,116r-36,0r0,-260r87,0v52,-5,90,24,90,71xm68,-231r0,85v48,-3,96,14,103,-44v-7,-60,-55,-36,-103,-41","w":219},"Q":{"d":"271,0v-42,-2,-99,5,-138,5v-62,0,-112,-41,-112,-133v0,-31,5,-73,32,-103v22,-24,55,-35,87,-35v87,0,113,69,113,131v0,25,-3,77,-47,112v10,-3,42,-6,65,-5r0,28xm59,-127v0,42,16,104,77,104v75,0,80,-79,80,-106v0,-67,-28,-107,-79,-107v-72,0,-78,80,-78,109","w":280},"R":{"d":"181,0v-19,-45,7,-128,-69,-117r-45,0r0,117r-36,0r0,-260v58,4,107,-12,153,12v51,27,26,111,-21,116v54,8,35,87,56,132r-38,0xm66,-148v49,-4,105,17,109,-40v-11,-64,-58,-36,-109,-42r0,82","w":240},"S":{"d":"20,-76r38,0v0,18,2,52,62,52v54,0,61,-34,61,-47v0,-50,-113,-46,-130,-67v-21,-14,-27,-34,-27,-51v0,-80,114,-102,172,-50v15,14,15,33,16,44r-38,0v-2,-33,-29,-40,-54,-40v-36,0,-58,16,-58,42v0,23,15,31,47,39v62,16,70,15,84,27v64,56,13,133,-77,133v-20,0,-60,-3,-81,-29v-14,-19,-15,-40,-15,-53","w":240},"T":{"d":"130,0r-35,0r0,-229r-87,0r0,-31r209,0r0,31r-87,0r0,229","w":219},"U":{"d":"140,5v-45,-1,-107,-24,-107,-107r0,-158r36,0r0,161v-3,57,36,72,71,72v71,0,71,-55,71,-73r0,-160r35,0r0,160v0,14,-1,43,-22,69v-25,32,-65,36,-84,36","w":280},"V":{"d":"233,-260r-96,260r-39,0r-93,-260r40,0r74,222r78,-222r36,0","w":240},"W":{"d":"3,-260r38,0r57,214r61,-214r45,0r59,216r59,-216r35,0r-77,260r-40,0r-60,-222r-64,222r-39,0","w":360},"X":{"d":"18,-260r46,0r70,100r70,-100r44,0r-93,125r97,135r-45,0r-77,-112r-80,112r-43,0r101,-136","w":259},"Y":{"d":"104,0r0,-102r-101,-158r44,0r77,128r78,-128r40,0r-102,160r0,100r-36,0","w":240},"Z":{"d":"13,0r0,-36r150,-192r-146,0r0,-32r189,0r0,36r-152,192r154,0r0,32r-195,0","w":219},"[":{"d":"37,45r0,-315r62,0r0,19r-34,0r0,277r34,0r0,19r-62,0","w":119},"\\":{"d":"104,6r-23,0r-84,-263r24,0","w":100},"]":{"d":"22,45r0,-19r34,0r0,-277r-34,0r0,-19r62,0r0,315r-62,0","w":119},"^":{"d":"30,-98r61,-151r28,0r62,151r-31,0r-46,-114r-44,114r-30,0","w":210},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"58,-171r-41,0r41,-89r24,0","w":100},"a":{"d":"42,-167v40,-34,129,-25,129,35r1,132r-30,0v-3,-9,-3,-18,-3,-27v-33,62,-121,31,-120,-21v0,-14,4,-38,32,-52v30,-15,55,-13,87,-11v4,-40,-10,-52,-38,-52v-34,0,-36,23,-36,31r-34,0v1,-10,2,-22,12,-35xm138,-88v-29,-1,-85,-8,-85,36v0,11,7,31,38,31v36,0,48,-24,47,-67"},"b":{"d":"203,-94v0,98,-95,122,-139,67r0,27r-33,0r1,-260r34,0r0,106v4,-9,18,-31,59,-31v45,0,78,22,78,91xm167,-92v0,-18,-3,-70,-50,-70v-52,0,-52,60,-52,72v0,12,0,68,50,68v42,0,52,-41,52,-70","w":219},"c":{"d":"97,5v-37,0,-81,-28,-81,-93v0,-75,46,-97,82,-97v12,0,39,2,56,22v13,15,14,30,15,40r-34,0v-1,-8,-4,-38,-36,-38v-47,0,-47,55,-47,68v0,38,9,72,45,72v29,0,38,-21,39,-39r34,0v-2,35,-28,65,-73,65","w":180},"d":{"d":"158,-29v-5,16,-42,33,-61,33v-24,0,-78,-13,-78,-92v0,-69,39,-99,82,-99v39,0,52,23,56,31r0,-104r34,0r1,260r-34,0r0,-29xm158,-93v-2,-47,-13,-69,-53,-69v-50,0,-50,60,-50,73v0,32,8,69,50,69v53,0,53,-59,53,-73","w":219},"e":{"d":"180,-57v-5,33,-22,59,-77,62v-94,6,-110,-133,-49,-177v18,-13,39,-13,50,-13v81,0,79,71,78,101r-130,0v-13,64,84,93,95,27r33,0xm54,-108r94,0v0,-17,-3,-53,-45,-53v-22,0,-49,13,-49,53"},"f":{"d":"41,-181v-8,-67,20,-91,81,-81r0,27v-27,-3,-54,5,-47,26r0,28r42,0r0,25r-42,0r0,156r-34,0r0,-156r-35,0r0,-25r35,0","w":119},"g":{"d":"188,-35v9,87,-28,107,-84,107v-72,0,-74,-33,-76,-58r36,0v2,20,10,35,42,35v47,0,48,-34,48,-83v-14,30,-49,31,-59,31v-17,0,-41,-4,-56,-23v-15,-18,-20,-42,-20,-66v0,-61,36,-91,80,-91v36,0,50,18,57,27r0,-25r33,0xm155,-98v1,-42,-18,-61,-53,-61v-43,0,-48,43,-48,66v0,28,8,65,49,65v42,0,51,-17,52,-70","w":219},"h":{"d":"114,-158v-75,0,-40,93,-48,158r-34,0r0,-260r34,0r0,106v30,-47,122,-44,122,41r0,113r-35,0r0,-107v0,-16,0,-51,-39,-51","w":219},"i":{"d":"28,-222r0,-37r41,0r0,37r-41,0xm32,0r0,-181r34,0r0,181r-34,0","w":100},"j":{"d":"30,-222r0,-37r41,0r0,37r-41,0xm0,69r0,-24v26,1,33,-3,33,-32r0,-194r34,0r0,198v0,17,-1,54,-46,54v-5,0,-12,0,-21,-2","w":100},"k":{"d":"29,0r0,-262r34,0r0,155r67,-74r45,0r-77,77r81,104r-44,0r-72,-98r0,98r-34,0","w":180},"l":{"d":"32,0r0,-260r34,0r0,260r-34,0","w":100},"m":{"d":"113,-159v-75,0,-39,94,-47,159r-35,0r0,-181r34,0r0,27v28,-55,107,-28,116,2v6,-10,21,-33,61,-33v26,0,66,10,66,64r0,121r-34,0r0,-116v-1,-35,-11,-38,-41,-43v-73,5,-38,95,-46,159r-34,0r0,-120v0,-22,-13,-39,-40,-39","w":339},"n":{"d":"156,-115v3,-26,-20,-43,-42,-43v-25,0,-47,18,-47,54r0,104r-34,0r-1,-181r34,0r1,29v4,-7,17,-32,58,-32v16,0,65,6,65,61r0,123r-34,0r0,-115","w":219},"o":{"d":"18,-88v0,-45,21,-97,92,-97v73,0,89,56,89,94v0,53,-30,97,-92,97v-59,0,-89,-41,-89,-94xm54,-90v0,37,15,71,54,71v26,0,55,-18,55,-73v0,-45,-21,-69,-53,-69v-21,0,-56,14,-56,71","w":219},"p":{"d":"31,69r-1,-250r34,0r0,30v17,-28,47,-33,62,-33v39,0,76,27,76,94v0,96,-94,123,-138,70r0,89r-33,0xm63,-85v0,22,3,67,51,67v8,0,28,-1,38,-18v28,-45,25,-122,-35,-122v-54,0,-54,57,-54,73","w":219},"q":{"d":"156,-20v-45,53,-138,27,-138,-71v0,-105,106,-112,137,-60r1,-30r34,0r0,250r-34,0r0,-89xm53,-93v-2,27,14,75,54,75v41,0,50,-33,50,-69v0,-15,0,-71,-55,-71v-48,0,-49,51,-49,65","w":219},"r":{"d":"33,0r-1,-181r34,0r1,35v10,-33,36,-37,66,-36r0,33v-42,-9,-65,16,-65,53r0,96r-35,0","w":140},"s":{"d":"150,-86v40,43,-9,91,-64,91v-37,0,-71,-15,-71,-59r36,0v0,14,7,33,40,33v21,0,36,-9,37,-28v0,-18,-12,-21,-39,-27v-38,-9,-70,-17,-70,-54v0,-59,107,-76,136,-27v5,9,4,19,4,26r-34,0v1,-27,-23,-29,-35,-29v-5,0,-37,0,-37,26v0,16,16,20,26,23v50,12,61,15,71,25","w":180},"t":{"d":"4,-157r0,-24r32,0r0,-38r33,-11r0,49r41,0r0,24r-41,0r0,109v-7,14,20,30,41,22r0,26v-32,6,-74,6,-74,-36r0,-121r-32,0","w":119},"u":{"d":"101,-24v28,0,50,-23,50,-54r0,-103r35,0r1,181r-35,0r-1,-31v-6,13,-19,33,-57,33v-93,2,-60,-102,-66,-183r35,0r0,117v0,17,4,40,38,40","w":219},"v":{"d":"80,0r-76,-181r38,0r58,144r56,-144r37,0r-79,181r-34,0"},"w":{"d":"4,-181r37,0r44,144r46,-144r44,0r41,143r45,-143r35,0r-63,181r-39,0r-43,-149r-47,149r-40,0","w":299},"x":{"d":"121,-93r70,93r-44,0r-52,-72r-51,72r-40,0r72,-95r-68,-86r45,0r48,68r50,-68r40,0"},"y":{"d":"193,-181r-80,182r-26,67r-35,0r28,-69r-76,-180r38,0r57,143r58,-143r36,0"},"z":{"d":"11,0r0,-35r96,-120r-91,0r0,-26r130,0r0,29r-100,126r100,0r0,26r-135,0","w":159},"{":{"d":"0,-103r0,-19v5,0,21,-2,33,-11v16,-13,14,-29,14,-52v0,-39,0,-81,74,-85r0,18v-95,12,5,122,-93,139v96,13,-2,124,93,140r0,18v-76,-6,-74,-43,-74,-95v0,-23,0,-48,-47,-53","w":120},"|":{"d":"32,-270r30,0r0,360r-30,0r0,-360","w":93},"}":{"d":"121,-122r0,19v-5,0,-22,2,-34,11v-16,13,-14,29,-14,52v0,39,0,81,-73,85r0,-18v93,-13,-5,-122,92,-140v-96,-11,2,-123,-92,-139r0,-18v75,6,73,43,73,95v0,23,0,48,48,53","w":120},"~":{"d":"153,-64v-43,0,-110,-62,-123,1r-20,0v0,-26,21,-56,47,-54v6,-6,91,30,98,25v11,0,22,-6,26,-26r20,0v-6,47,-34,54,-48,54","w":210},"\u00a1":{"d":"48,-145r0,-36r38,0r0,36r-38,0xm53,-121r27,0r6,200r-40,0","w":140},"\u00a2":{"d":"26,-88v-2,-57,35,-106,101,-96r12,-43r18,0r-14,49v14,6,34,21,36,55r-34,0v-1,-6,-2,-16,-10,-26r-36,127v26,5,46,-9,47,-38r34,0v-1,39,-36,72,-88,64r-14,49r-18,0r15,-54v-42,-15,-49,-59,-49,-87xm120,-158v-37,-8,-59,14,-58,64v0,22,3,53,21,66"},"\u00a3":{"d":"120,-235v-37,-1,-54,32,-47,86r51,0r0,24r-51,0r0,101r115,0r0,24r-174,0r0,-24r24,0r0,-101r-26,0r0,-24r27,0v-1,-17,-2,-38,3,-56v2,-9,16,-53,77,-53v20,0,46,4,64,23v11,13,11,27,11,35r-35,0v0,-20,-15,-35,-39,-35"},"\u2044":{"d":"-60,10r154,-267r23,0r-154,267r-23,0","w":60},"\u00a5":{"d":"16,-59r0,-22r66,0r0,-20r-66,0r0,-22r55,0r-71,-137r45,0r57,128r57,-128r41,0r-70,137r54,0r0,22r-66,0r0,20r66,0r0,22r-66,0r0,59r-36,0r0,-59r-66,0"},"\u0192":{"d":"49,-150r33,0v7,-30,8,-64,27,-83v20,-14,37,-15,61,-11r-4,25v-46,-9,-44,36,-53,69r38,0r-5,24r-37,0r-22,117v-10,54,-16,83,-75,80r5,-26v11,3,24,-4,26,-10v11,-27,26,-119,34,-161r-32,0"},"\u00a7":{"d":"40,0r0,-31v6,3,23,12,48,12v57,0,40,-49,7,-54v-27,-11,-61,-7,-61,-50v0,-31,29,-43,39,-47v-58,-20,-33,-97,31,-91v10,0,26,1,43,6r0,28v-24,-9,-65,-23,-72,14v10,46,81,11,81,74v0,25,-13,39,-36,46v12,4,39,12,39,46v0,46,-71,68,-119,47xm96,-102v9,-3,30,-11,30,-31v0,-18,-16,-23,-31,-28v-11,4,-29,12,-29,31v0,20,19,26,30,28"},"\u00a4":{"d":"14,-57r24,-23v-15,-13,-23,-69,0,-90r-24,-23r18,-18r23,24v12,-17,77,-16,90,0r23,-23r18,17r-24,24v23,20,14,75,0,89r24,23r-18,18r-23,-23v-27,18,-63,19,-89,0r-24,23xm100,-175v-27,0,-50,22,-50,50v0,28,22,50,50,50v28,0,50,-22,50,-50v0,-28,-23,-50,-50,-50"},"'":{"d":"35,-249r30,0r-5,88r-20,0","w":100},"\u201c":{"d":"73,-171r-42,0r42,-89r24,0xm140,-171r-41,0r41,-89r24,0"},"\u00ab":{"d":"99,-19r-29,0r-40,-71r40,-69r28,0r-35,69xm169,-19r-29,0r-40,-71r40,-69r29,0r-35,69"},"\u2039":{"d":"86,-19r-28,0r-40,-71r40,-69r28,0r-35,69","w":100},"\u203a":{"d":"10,-159r29,0r40,70r-40,70r-28,0r35,-70","w":100},"\ufb01":{"d":"148,-222r0,-37r40,0r0,37r-40,0xm185,0r-33,0r0,-181r33,0r0,181xm41,-181v-8,-67,21,-91,81,-81r0,27v-27,-3,-54,5,-47,26r0,28r42,0r0,25r-42,0r0,156r-34,0r0,-156r-35,0r0,-25r35,0","w":219},"\ufb02":{"d":"151,0r0,-260r34,0r0,260r-34,0xm41,-181v-8,-67,21,-91,81,-81r0,27v-27,-3,-54,5,-47,26r0,28r42,0r0,25r-42,0r0,156r-34,0r0,-156r-35,0r0,-25r35,0","w":219},"\u2013":{"d":"0,-83r0,-26r180,0r0,26r-180,0","w":180},"\u2020":{"d":"173,-199r0,27r-60,0r0,172r-29,0r0,-172r-61,0r0,-27r61,0r0,-61r29,0r0,61r60,0"},"\u2021":{"d":"85,-200r0,-60r28,0r0,60r62,0r0,27r-62,0r0,86r62,0r0,26r-62,0r0,61r-28,0r0,-61r-62,0r0,-26r62,0r0,-86r-62,0r0,-27r62,0"},"\u00b7":{"d":"29,-83r0,-44r40,0r0,44r-40,0","w":100},"\u00b6":{"d":"189,-237r-19,0r0,297r-28,0r0,-297r-42,0r0,297r-29,0r0,-155v-56,-4,-73,-45,-73,-80v0,-35,20,-85,93,-85r98,0r0,23","w":193},"\u2022":{"d":"64,-195v36,0,65,29,65,65v0,36,-29,65,-65,65v-36,0,-65,-29,-65,-65v0,-36,29,-65,65,-65","w":126},"\u201a":{"d":"40,-36r41,0r-39,85r-24,0","w":100},"\u201e":{"d":"59,-36r41,0r-39,85r-24,0xm126,-36r41,0r-39,85r-24,0"},"\u201d":{"d":"59,-260r41,0r-41,89r-24,0xm127,-260r41,0r-41,89r-24,0"},"\u00bb":{"d":"29,-159r29,0r40,70r-40,70r-28,0r34,-70xm100,-159r28,0r40,70r-40,70r-28,0r35,-70"},"\u2026":{"d":"45,0r0,-43r40,0r0,43r-40,0xm160,0r0,-43r40,0r0,43r-40,0xm275,0r0,-43r40,0r0,43r-40,0","w":360},"\u2030":{"d":"108,-196v0,32,-12,63,-53,63v-36,0,-52,-24,-52,-59v0,-11,0,-64,53,-64v37,0,52,24,52,60xm56,-154v37,0,36,-81,0,-82v-24,0,-26,26,-26,42v0,15,2,40,26,40xm230,-59v0,33,-13,63,-54,63v-36,0,-51,-23,-51,-59v0,-11,0,-64,52,-64v36,0,53,25,53,60xm177,-16v39,0,35,-83,0,-83v-24,0,-27,27,-27,43v0,15,3,40,27,40xm355,-59v0,33,-13,63,-54,63v-36,0,-52,-23,-52,-59v0,-11,0,-64,53,-64v37,0,53,25,53,60xm302,-16v39,0,35,-83,0,-83v-24,0,-26,27,-26,43v0,15,2,40,26,40xm187,-263r23,0r-170,276r-23,0","w":360},"\u00bf":{"d":"120,-84v3,33,-72,76,-60,101v0,37,40,37,49,37v5,0,24,0,49,-10r0,33v-9,2,-26,7,-51,7v-48,1,-80,-21,-84,-64v-3,-32,38,-66,64,-92v6,-12,2,-33,3,-50r30,0r0,38xm122,-181r0,37r-37,0r0,-37r37,0","w":180},"`":{"d":"1,-266r40,0r31,51r-23,0","w":100},"\u00b4":{"d":"58,-266r38,0r-44,51r-23,0","w":100},"\u02c6":{"d":"23,-215r-28,0r38,-52r33,0r37,52r-31,0r-23,-34","w":100},"\u02dc":{"d":"-1,-220v4,-41,34,-40,72,-27v9,0,13,-5,13,-13r15,0v-1,49,-41,35,-71,27v-5,0,-10,2,-14,13r-15,0","w":100},"\u00af":{"d":"0,-231r0,-19r99,0r0,19r-99,0","w":100},"\u02d8":{"d":"1,-270r17,0v0,20,10,33,31,33v31,0,33,-27,33,-33r17,0v1,36,-16,56,-50,56v-48,0,-48,-43,-48,-56","w":100},"\u02d9":{"d":"33,-222r0,-37r34,0r0,37r-34,0","w":100},"\u00a8":{"d":"-1,-222r0,-37r33,0r0,37r-33,0xm67,-222r0,-37r33,0r0,37r-33,0","w":100},"\u02da":{"d":"15,-241v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,20,-16,35,-35,35v-19,0,-35,-15,-35,-35xm29,-241v0,12,10,21,21,21v12,0,21,-9,21,-21v0,-11,-9,-21,-21,-21v-11,0,-21,10,-21,21","w":100},"\u00b8":{"d":"8,70r7,-13v7,6,46,10,43,-10v-3,-25,-29,-4,-36,-17r22,-32r15,0r-16,23v20,-8,47,8,43,24v0,3,-1,32,-44,32v-18,0,-26,-4,-34,-7","w":100},"\u02dd":{"d":"69,-266r-43,51r-24,0r30,-51r37,0xm126,-266r-43,51r-24,0r30,-51r37,0","w":144},"\u02db":{"d":"84,48r0,14v-16,16,-75,8,-68,-17v1,-22,24,-45,58,-45v-14,9,-29,19,-29,34v0,25,27,19,39,14","w":100},"\u02c7":{"d":"32,-215r-37,-51r31,0r24,35r25,-35r28,0r-37,51r-34,0","w":100},"\u2014":{"d":"47,-83r0,-26r266,0r0,26r-266,0","w":360},"\u00c6":{"d":"197,-72r-115,0r-42,72r-39,0r151,-260r187,0r0,31r-133,0r14,80r114,0r0,31r-109,0r15,87r103,0r0,31r-134,0xm98,-102r94,0r-21,-131","w":360},"\u00aa":{"d":"61,-267v25,0,46,9,46,33v0,31,-3,45,1,79r-20,0v-1,-3,-2,-8,-2,-16v-4,6,-12,19,-37,19v-22,0,-41,-10,-41,-32v0,-37,41,-39,77,-38v0,-18,0,-31,-24,-31v-23,0,-24,14,-24,18r-22,0v0,-14,17,-32,46,-32xm85,-208v-9,-1,-55,-4,-55,22v0,6,5,18,25,18v32,0,28,-13,30,-40","w":120},"\u0141":{"d":"33,0r0,-109r-26,16r0,-27r26,-16r0,-124r36,0r0,102r70,-43r0,26r-70,43r0,100r121,0r0,32r-157,0"},"\u00d8":{"d":"230,-288r22,0r-31,49v30,28,38,70,38,108v0,59,-22,137,-119,137v-36,0,-54,-9,-66,-16r-27,42r-23,0r35,-53v-12,-12,-38,-38,-38,-108v0,-30,6,-75,36,-105v27,-41,119,-39,149,-16xm79,-53r109,-170v-6,-5,-18,-14,-47,-14v-94,2,-98,120,-62,184xm201,-208r-109,169v13,11,31,15,48,15v94,-3,97,-121,61,-184","w":280},"\u0152":{"d":"16,-131v0,-77,54,-129,158,-129r166,0r0,30r-123,0r0,82r117,0r0,30r-117,0r0,87r124,0r0,31r-209,0v-61,0,-116,-42,-116,-131xm53,-131v0,52,24,107,94,101v10,0,16,0,34,-1r0,-200v-18,-1,-27,-2,-40,-2v-68,-3,-88,54,-88,102","w":360},"\u00ba":{"d":"75,-266v89,0,70,116,0,115v-43,0,-59,-28,-59,-57v0,-30,17,-58,59,-58xm74,-167v17,0,36,-11,36,-43v0,-18,-6,-41,-35,-41v-49,1,-50,81,-1,84","w":132},"\u00e6":{"d":"175,-85v-3,28,21,66,49,66v30,0,40,-22,40,-37r35,0v-7,53,-50,61,-71,61v-8,0,-51,0,-68,-42v-5,11,-18,42,-70,42v-54,0,-72,-31,-72,-57v0,-47,65,-66,126,-59v0,-19,-2,-50,-44,-50v-16,0,-37,5,-38,28r-34,0v1,-25,25,-52,71,-52v46,0,59,22,64,37v17,-37,57,-37,62,-37v19,0,51,7,66,38v9,17,9,40,9,62r-125,0xm265,-109v-2,-27,-3,-47,-41,-51v-28,-3,-50,25,-48,51r89,0xm144,-87v-35,4,-84,-12,-93,36v1,45,75,35,84,9v9,-15,9,-32,9,-45","w":320},"\u0131":{"d":"33,0r0,-181r33,0r0,181r-33,0","w":100},"\u0142":{"d":"32,0r0,-108r-23,15r0,-26r23,-15r0,-126r34,0r0,106r24,-15r0,26r-24,14r0,129r-34,0","w":100},"\u00f8":{"d":"172,-215r21,0r-27,47v64,56,36,175,-59,174v-16,0,-30,-3,-40,-8r-24,39r-21,0r29,-48v-9,-8,-33,-27,-33,-78v0,-68,60,-115,132,-89xm67,-39r69,-115v-66,-32,-106,56,-69,115xm149,-141r-68,115v38,18,83,-2,82,-64v0,-18,-3,-37,-14,-51","w":219},"\u0153":{"d":"178,-37v-8,20,-38,43,-70,42v-127,-6,-113,-190,1,-189v48,0,63,31,70,44v14,-43,57,-45,68,-45v60,1,79,47,75,101r-126,0v0,8,1,28,8,42v19,35,80,29,82,-14r33,0v-17,91,-119,70,-141,19xm287,-109v1,-22,-10,-52,-41,-52v-32,0,-48,26,-49,52r90,0xm55,-91v1,21,11,76,55,72v74,-6,72,-138,0,-140v-43,0,-55,38,-55,68","w":339},"\u00df":{"d":"112,-141v-4,-32,46,-37,46,-67v0,-18,-13,-34,-45,-34v-33,0,-47,15,-47,53r0,189r-34,0r0,-190v0,-30,6,-75,83,-75v34,0,76,12,76,54v0,40,-72,51,-35,81v22,18,64,36,64,70v0,64,-96,88,-125,34v-5,-10,-5,-19,-5,-26r33,0v0,20,12,30,30,30v49,0,36,-58,8,-67v-18,-13,-52,-28,-49,-52","w":240},"\u00b9":{"d":"81,-102r-22,0r0,-126v-18,13,-32,19,-38,22r0,-22v12,-6,24,-12,39,-24r21,0r0,150","w":119},"\u2212":{"d":"13,-76r0,-28r184,0r0,28r-184,0","w":210},"\u00b0":{"d":"72,-254v31,0,56,25,56,56v0,31,-25,56,-56,56v-31,0,-56,-25,-56,-56v0,-31,25,-56,56,-56xm72,-229v-17,0,-31,13,-31,31v0,17,14,31,31,31v18,0,31,-14,31,-31v0,-17,-14,-31,-31,-31","w":144},"\u00f3":{"d":"18,-88v0,-45,21,-97,92,-97v73,0,89,56,89,94v0,53,-30,97,-92,97v-59,0,-89,-41,-89,-94xm54,-90v0,37,15,71,54,71v26,0,55,-18,55,-73v0,-45,-21,-69,-53,-69v-21,0,-56,14,-56,71xm118,-266r38,0r-44,51r-23,0","w":219},"\u00d6":{"d":"21,-128v0,-30,3,-75,34,-104v83,-78,204,-28,204,100v0,69,-28,138,-120,138v-89,0,-118,-63,-118,-134xm59,-130v0,50,27,106,81,106v21,0,42,-6,57,-24v22,-26,24,-67,24,-85v0,-59,-20,-104,-79,-104v-66,0,-83,53,-83,107xm89,-287r0,-37r33,0r0,37r-33,0xm157,-287r0,-37r33,0r0,37r-33,0","w":280},"\u00f6":{"d":"18,-88v0,-45,21,-97,92,-97v73,0,89,56,89,94v0,53,-30,97,-92,97v-59,0,-89,-41,-89,-94xm54,-90v0,37,15,71,54,71v26,0,55,-18,55,-73v0,-45,-21,-69,-53,-69v-21,0,-56,14,-56,71xm59,-222r0,-37r33,0r0,37r-33,0xm127,-222r0,-37r34,0r0,37r-34,0","w":219},"\u00ca":{"d":"27,0r0,-260r163,0r0,31r-127,0r0,81r121,0r0,30r-121,0r0,86r130,0r0,32r-166,0xm83,-283r-28,0r39,-52r32,0r37,52r-31,0r-23,-35","w":219},"\u00fb":{"d":"101,-24v28,0,50,-23,50,-54r0,-103r35,0r1,181r-35,0r-1,-31v-6,13,-19,33,-57,33v-93,2,-60,-102,-66,-183r35,0r0,117v0,17,4,40,38,40xm83,-215r-28,0r39,-52r32,0r37,52r-31,0r-23,-34","w":219},"\u00bc":{"d":"265,0r-22,0r0,-32r-73,0r0,-26r70,-94r25,0r0,102r24,0r0,18r-24,0r0,32xm187,-50r56,0r0,-79xm53,10r154,-267r23,0r-154,267r-23,0xm69,-102r-23,0r0,-126v-17,13,-31,19,-37,22r0,-22v12,-6,24,-12,39,-24r21,0r0,150","w":300},"\u00ac":{"d":"13,-113r0,-28r184,0r0,101r-29,0r0,-73r-155,0","w":210},"\u00cb":{"d":"27,0r0,-260r163,0r0,31r-127,0r0,81r121,0r0,30r-121,0r0,86r130,0r0,32r-166,0xm59,-287r0,-37r33,0r0,37r-33,0xm127,-287r0,-37r34,0r0,37r-34,0","w":219},"\u00bd":{"d":"53,10r154,-267r23,0r-154,267r-23,0xm69,-102r-23,0r0,-126v-17,13,-31,19,-37,22r0,-22v12,-6,24,-12,39,-24r21,0r0,150xm189,0r0,-20v21,-20,84,-69,79,-91v0,-15,-11,-24,-26,-24v-26,0,-26,21,-26,26r-25,0v2,-38,35,-43,50,-43v47,0,70,43,33,80v-18,18,-40,38,-59,55r77,0r0,17r-103,0","w":300},"\u00d5":{"d":"21,-128v0,-30,3,-75,34,-104v83,-78,204,-28,204,100v0,69,-28,138,-120,138v-89,0,-118,-63,-118,-134xm59,-130v0,50,27,106,81,106v21,0,42,-6,57,-24v22,-26,24,-67,24,-85v0,-59,-20,-104,-79,-104v-66,0,-83,53,-83,107xm89,-289v3,-41,36,-39,72,-26v9,0,13,-6,13,-14r15,0v-1,51,-42,36,-71,27v-5,0,-10,3,-14,13r-15,0","w":280},"\u00fa":{"d":"101,-24v28,0,50,-23,50,-54r0,-103r35,0r1,181r-35,0r-1,-31v-6,13,-19,33,-57,33v-93,2,-60,-102,-66,-183r35,0r0,117v0,17,4,40,38,40xm118,-266r38,0r-44,51r-23,0","w":219},"\u00e9":{"d":"180,-57v-5,33,-22,59,-77,62v-94,6,-110,-133,-49,-177v18,-13,39,-13,50,-13v81,0,79,71,78,101r-130,0v-13,64,84,93,95,27r33,0xm54,-108r94,0v0,-17,-3,-53,-45,-53v-22,0,-49,13,-49,53xm108,-266r38,0r-44,51r-23,0"},"\u00ed":{"d":"33,0r0,-181r33,0r0,181r-33,0xm58,-266r38,0r-44,51r-23,0","w":100},"\u00d0":{"d":"244,-128v-1,129,-87,134,-212,128r0,-133r-26,0r0,-22r26,0r0,-105v75,4,133,-17,180,34v24,26,32,63,32,98xm68,-133r0,103v39,-1,78,4,103,-14v33,-25,34,-67,34,-82v0,-10,-2,-53,-25,-81v-23,-27,-65,-22,-112,-23r0,75r69,0r0,22r-69,0","w":259},"\u00ee":{"d":"33,0r0,-181r33,0r0,181r-33,0xm23,-215r-28,0r38,-52r33,0r37,52r-31,0r-23,-34","w":100},"\u00ae":{"d":"183,-59v-10,-15,1,-76,-39,-66r-26,0r0,66r-20,0r0,-146r52,0v11,0,50,0,50,37v0,4,0,27,-28,35v33,3,20,50,31,74r-20,0xm118,-188r0,46v28,-3,56,12,61,-23v-4,-35,-33,-19,-61,-23xm148,-267v75,0,136,61,136,136v0,77,-62,137,-136,137v-73,0,-136,-60,-136,-137v0,-76,63,-136,136,-136xm148,-251v-66,0,-120,54,-120,120v0,68,54,121,120,121v66,0,120,-54,120,-121v0,-64,-52,-120,-120,-120","w":288},"\u00a6":{"d":"32,-243r30,0r0,126r-30,0r0,-126xm32,-63r30,0r0,126r-30,0r0,-126","w":93},"\u00fe":{"d":"31,69r0,-329r33,0r0,109v17,-28,47,-33,62,-33v39,0,76,27,76,94v0,96,-94,123,-138,70r0,89r-33,0xm63,-85v0,22,3,67,51,67v8,0,28,-1,38,-18v28,-45,25,-122,-35,-122v-54,0,-54,57,-54,73","w":219},"\u00c3":{"d":"3,0r110,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0xm130,-224r-50,127r98,0xm79,-289v3,-41,36,-39,72,-26v8,0,13,-6,13,-14r15,0v-1,51,-42,36,-71,27v-5,0,-10,3,-14,13r-15,0","w":259},"\u00fd":{"d":"193,-181r-80,182r-26,67r-35,0r28,-69r-76,-180r38,0r57,143r58,-143r36,0xm108,-266r38,0r-44,51r-23,0"},"\u00c1":{"d":"3,0r110,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0xm130,-224r-50,127r98,0xm138,-335r38,0r-44,52r-23,0","w":259},"\u00c7":{"d":"132,-26v26,0,54,-21,54,-42r40,0v-5,49,-48,69,-89,72r-12,17v20,-8,46,8,42,24v0,3,0,32,-44,32v-17,0,-25,-4,-34,-7r7,-13v7,5,47,10,44,-10v-4,-25,-30,-4,-37,-17r19,-26v-79,-4,-102,-73,-102,-131v0,-54,21,-137,114,-137v36,0,88,15,93,74r-39,0v-1,-9,-6,-45,-56,-45v-63,0,-74,64,-74,108v0,49,14,101,74,101","w":240},"\u00f1":{"d":"156,-115v3,-26,-20,-43,-42,-43v-25,0,-47,18,-47,54r0,104r-34,0r-1,-181r34,0r1,29v4,-7,17,-32,58,-32v16,0,65,6,65,61r0,123r-34,0r0,-115xm59,-220v4,-41,34,-40,72,-27v9,0,13,-5,13,-13r15,0v-1,49,-41,35,-71,27v-5,0,-10,2,-13,13r-16,0","w":219},"\u00f0":{"d":"45,-215r31,-19v-17,-10,-23,-14,-31,-18r23,-21v12,7,18,10,36,22r36,-21r13,13r-33,19v29,22,81,62,81,142v0,63,-33,104,-92,104v-51,0,-90,-30,-90,-94v0,-98,101,-114,139,-69v-13,-23,-35,-44,-66,-66r-34,20xm111,-19v22,0,54,-16,54,-71v0,-45,-21,-69,-53,-69v-32,0,-56,23,-56,69v0,38,17,71,55,71","w":219},"\u00c5":{"d":"3,0r110,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0xm130,-224r-50,127r98,0xm95,-306v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,20,-16,36,-35,36v-19,0,-35,-16,-35,-36xm109,-306v0,12,9,21,21,21v11,0,21,-9,21,-21v0,-11,-10,-21,-21,-21v-12,0,-21,10,-21,21","w":259},"\u03bc":{"d":"69,-41v38,48,85,6,85,-53r0,-87r29,0r0,181r-27,0r0,-25v-6,9,-20,29,-51,29v-28,0,-38,-15,-44,-23r0,94r-29,0r0,-256r29,0v3,49,-7,102,8,140","w":219},"\u00d9":{"d":"140,5v-45,-1,-107,-24,-107,-107r0,-158r36,0r0,161v-3,57,36,72,71,72v71,0,71,-55,71,-73r0,-160r35,0r0,160v0,14,-1,43,-22,69v-25,32,-65,36,-84,36xm91,-335r40,0r31,52r-23,0","w":280},"\u00c8":{"d":"27,0r0,-260r163,0r0,31r-127,0r0,81r121,0r0,30r-121,0r0,86r130,0r0,32r-166,0xm61,-335r41,0r30,52r-23,0","w":219},"\u0160":{"d":"20,-76r38,0v0,18,2,52,62,52v54,0,61,-34,61,-47v0,-50,-113,-46,-130,-67v-21,-14,-27,-34,-27,-51v0,-80,114,-102,172,-50v15,14,15,33,16,44r-38,0v-2,-33,-29,-40,-54,-40v-36,0,-58,16,-58,42v0,23,15,31,47,39v62,16,70,15,84,27v64,56,13,133,-77,133v-20,0,-60,-3,-81,-29v-14,-19,-15,-40,-15,-53xm103,-283r-38,-51r31,0r24,34r25,-34r29,0r-38,51r-33,0","w":240},"\u00f5":{"d":"18,-88v0,-45,21,-97,92,-97v73,0,89,56,89,94v0,53,-30,97,-92,97v-59,0,-89,-41,-89,-94xm54,-90v0,37,15,71,54,71v26,0,55,-18,55,-73v0,-45,-21,-69,-53,-69v-21,0,-56,14,-56,71xm59,-220v4,-41,34,-40,72,-27v9,0,13,-5,13,-13r15,0v-1,49,-41,35,-71,27v-5,0,-10,2,-13,13r-16,0","w":219},"\u00d1":{"d":"34,0r0,-260r50,0r128,215r0,-215r33,0r0,260r-46,0r-132,-221r0,221r-33,0xm89,-289v3,-41,36,-39,72,-26v9,0,13,-6,13,-14r15,0v-1,51,-42,36,-71,27v-5,0,-10,3,-14,13r-15,0","w":280},"\u00da":{"d":"140,5v-45,-1,-107,-24,-107,-107r0,-158r36,0r0,161v-3,57,36,72,71,72v71,0,71,-55,71,-73r0,-160r35,0r0,160v0,14,-1,43,-22,69v-25,32,-65,36,-84,36xm148,-335r38,0r-44,52r-23,0","w":280},"\u00c2":{"d":"3,0r110,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0xm130,-224r-50,127r98,0xm103,-283r-28,0r38,-52r33,0r37,52r-31,0r-23,-35","w":259},"\u00f4":{"d":"18,-88v0,-45,21,-97,92,-97v73,0,89,56,89,94v0,53,-30,97,-92,97v-59,0,-89,-41,-89,-94xm54,-90v0,37,15,71,54,71v26,0,55,-18,55,-73v0,-45,-21,-69,-53,-69v-21,0,-56,14,-56,71xm83,-215r-28,0r39,-52r32,0r37,52r-31,0r-23,-34","w":219},"\u00ff":{"d":"193,-181r-80,182r-26,67r-35,0r28,-69r-76,-180r38,0r57,143r58,-143r36,0xm49,-222r0,-37r33,0r0,37r-33,0xm117,-222r0,-37r33,0r0,37r-33,0"},"\u00c9":{"d":"27,0r0,-260r163,0r0,31r-127,0r0,81r121,0r0,30r-121,0r0,86r130,0r0,32r-166,0xm118,-335r38,0r-44,52r-23,0","w":219},"\u00d2":{"d":"21,-128v0,-30,3,-75,34,-104v83,-78,204,-28,204,100v0,69,-28,138,-120,138v-89,0,-118,-63,-118,-134xm59,-130v0,50,27,106,81,106v21,0,42,-6,57,-24v22,-26,24,-67,24,-85v0,-59,-20,-104,-79,-104v-66,0,-83,53,-83,107xm91,-335r40,0r31,52r-23,0","w":280},"\u00e2":{"d":"42,-167v40,-34,129,-25,129,35r1,132r-30,0v-3,-9,-3,-18,-3,-27v-33,62,-121,31,-120,-21v0,-14,4,-38,32,-52v30,-15,55,-13,87,-11v4,-40,-10,-52,-38,-52v-34,0,-36,23,-36,31r-34,0v1,-10,2,-22,12,-35xm138,-88v-29,-1,-85,-8,-85,36v0,11,7,31,38,31v36,0,48,-24,47,-67xm73,-215r-28,0r39,-52r32,0r37,52r-31,0r-23,-34"},"\u00d7":{"d":"17,-23r67,-67r-67,-67r20,-21r67,67r67,-67r21,21r-67,67r67,67r-21,20r-67,-67r-67,67","w":210},"\u00f7":{"d":"13,-76r0,-28r184,0r0,28r-184,0xm87,-4r0,-42r36,0r0,42r-36,0xm87,-134r0,-43r36,0r0,43r-36,0","w":210},"\u00e7":{"d":"136,-60r34,0v-2,34,-26,62,-67,64r-12,17v21,-8,47,8,43,24v0,3,-1,32,-45,32v-17,0,-25,-4,-33,-7r7,-13v7,6,46,10,43,-10v-4,-25,-30,-4,-37,-17r19,-26v-56,-6,-72,-48,-72,-90v0,-81,49,-99,82,-99v12,0,39,2,56,22v13,15,14,30,15,40r-34,0v-1,-8,-4,-38,-36,-38v-47,0,-47,55,-47,68v0,38,9,72,45,72v29,0,38,-21,39,-39","w":180},"\u00b2":{"d":"9,-102r0,-20v21,-20,84,-69,79,-91v0,-15,-11,-24,-26,-24v-26,0,-26,21,-27,26r-24,0v8,-67,100,-53,100,0v0,33,-52,69,-76,92r77,0r0,17r-103,0","w":119},"\u00f9":{"d":"101,-24v28,0,50,-23,50,-54r0,-103r35,0r1,181r-35,0r-1,-31v-6,13,-19,33,-57,33v-93,2,-60,-102,-66,-183r35,0r0,117v0,17,4,40,38,40xm61,-266r41,0r30,51r-23,0","w":219},"\u00c0":{"d":"3,0r110,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0xm130,-224r-50,127r98,0xm81,-335r40,0r31,52r-23,0","w":259},"\u00db":{"d":"140,5v-45,-1,-107,-24,-107,-107r0,-158r36,0r0,161v-3,57,36,72,71,72v71,0,71,-55,71,-73r0,-160r35,0r0,160v0,14,-1,43,-22,69v-25,32,-65,36,-84,36xm113,-283r-28,0r38,-52r33,0r37,52r-31,0r-23,-35","w":280},"\u017e":{"d":"11,0r0,-35r96,-120r-91,0r0,-26r130,0r0,29r-100,126r100,0r0,26r-135,0xm62,-215r-37,-51r31,0r24,35r25,-35r28,0r-37,51r-34,0","w":159},"\u0178":{"d":"104,0r0,-102r-101,-158r44,0r77,128r78,-128r40,0r-102,160r0,100r-36,0xm69,-287r0,-37r33,0r0,37r-33,0xm137,-287r0,-37r34,0r0,37r-34,0","w":240},"\u00c4":{"d":"3,0r110,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0xm130,-224r-50,127r98,0xm79,-287r0,-37r33,0r0,37r-33,0xm147,-287r0,-37r33,0r0,37r-33,0","w":259},"\u00ce":{"d":"32,0r0,-260r36,0r0,260r-36,0xm23,-283r-28,0r38,-52r33,0r37,52r-31,0r-23,-35","w":100},"\u00ef":{"d":"33,0r0,-181r33,0r0,181r-33,0xm-1,-222r0,-37r33,0r0,37r-33,0xm67,-222r0,-37r33,0r0,37r-33,0","w":100},"\u00d3":{"d":"21,-128v0,-30,3,-75,34,-104v83,-78,204,-28,204,100v0,69,-28,138,-120,138v-89,0,-118,-63,-118,-134xm59,-130v0,50,27,106,81,106v21,0,42,-6,57,-24v22,-26,24,-67,24,-85v0,-59,-20,-104,-79,-104v-66,0,-83,53,-83,107xm148,-335r38,0r-44,52r-23,0","w":280},"\u00e5":{"d":"42,-167v40,-34,129,-25,129,35r1,132r-30,0v-3,-9,-3,-18,-3,-27v-33,62,-121,31,-120,-21v0,-14,4,-38,32,-52v30,-15,55,-13,87,-11v4,-40,-10,-52,-38,-52v-34,0,-36,23,-36,31r-34,0v1,-10,2,-22,12,-35xm138,-88v-29,-1,-85,-8,-85,36v0,11,7,31,38,31v36,0,48,-24,47,-67xm65,-241v0,-19,16,-35,35,-35v20,0,35,16,35,35v0,20,-15,35,-35,35v-19,0,-35,-15,-35,-35xm79,-241v0,12,10,21,21,21v12,0,21,-9,21,-21v0,-11,-9,-21,-21,-21v-11,0,-21,10,-21,21"},"\u00dd":{"d":"104,0r0,-102r-101,-158r44,0r77,128r78,-128r40,0r-102,160r0,100r-36,0xm129,-335r37,0r-44,52r-23,0","w":240},"\u2122":{"d":"147,-130r0,-130r30,0r35,107r36,-107r28,0r0,130r-17,0r0,-117r-40,117r-16,0r-39,-117r0,117r-17,0xm86,-130r-16,0r0,-114r-37,0r0,-16r91,0r0,16r-38,0r0,114","w":360},"\u00b3":{"d":"4,-140r25,0v0,15,12,24,30,24v22,0,32,-14,32,-27v0,-29,-34,-28,-46,-27r0,-18v7,1,44,2,44,-25v0,-37,-59,-29,-58,0r-24,0v1,-33,32,-41,52,-41v59,0,75,59,21,75v34,5,34,34,34,36v4,40,-69,63,-100,29v-9,-10,-9,-20,-10,-26","w":119},"\u017d":{"d":"13,0r0,-36r150,-192r-146,0r0,-32r189,0r0,36r-152,192r154,0r0,32r-195,0xm93,-283r-38,-51r31,0r24,34r25,-34r28,0r-37,51r-33,0","w":219},"\u00be":{"d":"269,0r-22,0r0,-32r-73,0r0,-26r70,-94r25,0r0,102r24,0r0,18r-24,0r0,32xm192,-50r55,0r0,-79xm63,10r155,-267r23,0r-154,267r-24,0xm4,-140r25,0v0,15,12,24,30,24v22,0,32,-14,32,-27v0,-29,-34,-28,-46,-27r0,-18v7,1,44,2,44,-25v0,-37,-59,-29,-58,0r-24,0v1,-33,32,-41,52,-41v59,0,75,59,21,75v34,5,34,34,34,36v3,40,-68,63,-100,29v-9,-10,-9,-20,-10,-26","w":300},"\u20ac":{"d":"2,-84r7,-24r18,0v0,-9,-2,-17,0,-25r-25,0r7,-24r21,0v8,-56,41,-95,92,-95v40,0,74,23,75,73r-32,0v-2,-43,-36,-46,-43,-46v-29,0,-52,29,-59,68r84,0r-8,24r-78,0v-2,8,0,17,0,25r74,0r-7,24r-64,0v6,34,23,61,56,61v26,0,44,-16,45,-43v10,1,25,-2,33,1v0,21,-14,70,-77,70v-54,0,-83,-35,-91,-89r-28,0"},"\u00f2":{"d":"18,-88v0,-45,21,-97,92,-97v73,0,89,56,89,94v0,53,-30,97,-92,97v-59,0,-89,-41,-89,-94xm54,-90v0,37,15,71,54,71v26,0,55,-18,55,-73v0,-45,-21,-69,-53,-69v-21,0,-56,14,-56,71xm61,-266r41,0r30,51r-23,0","w":219},"\u00fc":{"d":"101,-24v28,0,50,-23,50,-54r0,-103r35,0r1,181r-35,0r-1,-31v-6,13,-19,33,-57,33v-93,2,-60,-102,-66,-183r35,0r0,117v0,17,4,40,38,40xm59,-222r0,-37r33,0r0,37r-33,0xm127,-222r0,-37r34,0r0,37r-34,0","w":219},"\u00eb":{"d":"180,-57v-5,33,-22,59,-77,62v-94,6,-110,-133,-49,-177v18,-13,39,-13,50,-13v81,0,79,71,78,101r-130,0v-13,64,84,93,95,27r33,0xm54,-108r94,0v0,-17,-3,-53,-45,-53v-22,0,-49,13,-49,53xm49,-222r0,-37r33,0r0,37r-33,0xm117,-222r0,-37r33,0r0,37r-33,0"},"\u00b1":{"d":"90,-37r0,-60r-77,0r0,-28r77,0r0,-60r30,0r0,60r77,0r0,28r-77,0r0,60r-30,0xm13,5r0,-28r184,0r0,28r-184,0","w":210},"\u00e1":{"d":"42,-167v40,-34,129,-25,129,35r1,132r-30,0v-3,-9,-3,-18,-3,-27v-33,62,-121,31,-120,-21v0,-14,4,-38,32,-52v30,-15,55,-13,87,-11v4,-40,-10,-52,-38,-52v-34,0,-36,23,-36,31r-34,0v1,-10,2,-22,12,-35xm138,-88v-29,-1,-85,-8,-85,36v0,11,7,31,38,31v36,0,48,-24,47,-67xm108,-266r38,0r-44,51r-23,0"},"\u00cf":{"d":"32,0r0,-260r36,0r0,260r-36,0xm-1,-287r0,-37r33,0r0,37r-33,0xm67,-287r0,-37r33,0r0,37r-33,0","w":100},"\u00ec":{"d":"33,0r0,-181r33,0r0,181r-33,0xm1,-266r40,0r31,51r-23,0","w":100},"\u00cd":{"d":"32,0r0,-260r36,0r0,260r-36,0xm58,-335r38,0r-44,52r-23,0","w":100},"\u00a9":{"d":"12,-130v0,-75,60,-137,137,-137v75,0,136,61,136,137v0,75,-61,136,-136,136v-77,0,-137,-62,-137,-136xm28,-130v0,66,53,120,121,120v66,0,120,-54,120,-120v0,-66,-54,-121,-120,-121v-68,0,-121,55,-121,121xm200,-167r-21,0v0,-5,-3,-27,-31,-27v-34,0,-40,40,-40,65v0,28,7,61,40,61v26,0,29,-21,30,-26r22,0v-3,30,-28,43,-53,43v-50,0,-60,-49,-60,-78v0,-32,11,-82,62,-82v21,0,49,9,51,44","w":288},"\u00e4":{"d":"42,-167v40,-34,129,-25,129,35r1,132r-30,0v-3,-9,-3,-18,-3,-27v-33,62,-121,31,-120,-21v0,-14,4,-38,32,-52v30,-15,55,-13,87,-11v4,-40,-10,-52,-38,-52v-34,0,-36,23,-36,31r-34,0v1,-10,2,-22,12,-35xm138,-88v-29,-1,-85,-8,-85,36v0,11,7,31,38,31v36,0,48,-24,47,-67xm49,-222r0,-37r33,0r0,37r-33,0xm117,-222r0,-37r33,0r0,37r-33,0"},"\u00e0":{"d":"42,-167v40,-34,129,-25,129,35r1,132r-30,0v-3,-9,-3,-18,-3,-27v-33,62,-121,31,-120,-21v0,-14,4,-38,32,-52v30,-15,55,-13,87,-11v4,-40,-10,-52,-38,-52v-34,0,-36,23,-36,31r-34,0v1,-10,2,-22,12,-35xm138,-88v-29,-1,-85,-8,-85,36v0,11,7,31,38,31v36,0,48,-24,47,-67xm51,-266r40,0r31,51r-23,0"},"\u0161":{"d":"150,-86v40,43,-9,91,-64,91v-37,0,-71,-15,-71,-59r36,0v0,14,7,33,40,33v21,0,36,-9,37,-28v0,-18,-12,-21,-39,-27v-38,-9,-70,-17,-70,-54v0,-59,107,-76,136,-27v5,9,4,19,4,26r-34,0v1,-27,-23,-29,-35,-29v-5,0,-37,0,-37,26v0,16,16,20,26,23v50,12,61,15,71,25xm72,-215r-37,-51r31,0r24,35r25,-35r28,0r-37,51r-34,0","w":180},"\u00cc":{"d":"32,0r0,-260r36,0r0,260r-36,0xm1,-335r40,0r31,52r-23,0","w":100},"\u00d4":{"d":"21,-128v0,-30,3,-75,34,-104v83,-78,204,-28,204,100v0,69,-28,138,-120,138v-89,0,-118,-63,-118,-134xm59,-130v0,50,27,106,81,106v21,0,42,-6,57,-24v22,-26,24,-67,24,-85v0,-59,-20,-104,-79,-104v-66,0,-83,53,-83,107xm113,-283r-28,0r38,-52r33,0r37,52r-31,0r-23,-35","w":280},"\u00de":{"d":"209,-145v2,65,-59,77,-141,73r0,72r-36,0r0,-259r36,0r0,43r51,0v61,-3,88,22,90,71xm68,-187r0,85v49,-3,96,15,103,-45v-7,-59,-56,-35,-103,-40","w":219},"\u00e8":{"d":"180,-57v-5,33,-22,59,-77,62v-94,6,-110,-133,-49,-177v18,-13,39,-13,50,-13v81,0,79,71,78,101r-130,0v-13,64,84,93,95,27r33,0xm54,-108r94,0v0,-17,-3,-53,-45,-53v-22,0,-49,13,-49,53xm51,-266r40,0r31,51r-23,0"},"\u00e3":{"d":"42,-167v40,-34,129,-25,129,35r1,132r-30,0v-3,-9,-3,-18,-3,-27v-33,62,-121,31,-120,-21v0,-14,4,-38,32,-52v30,-15,55,-13,87,-11v4,-40,-10,-52,-38,-52v-34,0,-36,23,-36,31r-34,0v1,-10,2,-22,12,-35xm138,-88v-29,-1,-85,-8,-85,36v0,11,7,31,38,31v36,0,48,-24,47,-67xm49,-220v4,-41,34,-40,72,-27v9,0,13,-5,13,-13r15,0v-1,49,-41,35,-71,27v-5,0,-10,2,-14,13r-15,0"},"\u00dc":{"d":"140,5v-45,-1,-107,-24,-107,-107r0,-158r36,0r0,161v-3,57,36,72,71,72v71,0,71,-55,71,-73r0,-160r35,0r0,160v0,14,-1,43,-22,69v-25,32,-65,36,-84,36xm89,-287r0,-37r33,0r0,37r-33,0xm157,-287r0,-37r33,0r0,37r-33,0","w":280},"\u00ea":{"d":"180,-57v-5,33,-22,59,-77,62v-94,6,-110,-133,-49,-177v18,-13,39,-13,50,-13v81,0,79,71,78,101r-130,0v-13,64,84,93,95,27r33,0xm54,-108r94,0v0,-17,-3,-53,-45,-53v-22,0,-49,13,-49,53xm73,-215r-28,0r39,-52r32,0r37,52r-31,0r-23,-34"},"\u00a0":{"w":100}}});

/* scripts/pyramid.js */

(function($){var bind=$.fn.bind;$.fn.bind=function(type,data,fn){var _f=null,f=fn||data;var d=fn&&data||null;if(d&&(d.keyCode||d.context))
{var keyCode=d.keyCode;var context=d.context||this;_f=function(e){if(null==keyCode||e.which==keyCode)
{f.apply(context,[e,e.currentTarget,e.data]);}};_f._original_=f;}
return bind.call(this,type,d,_f||f);};})(jQuery);function infographic(args)
{this.caretH=10;this.caretW=20;this.fillet=1;this.vgContainer=$("#"+args.vg)[0];this.infoGraphicContainer=this.vgContainer.parentNode;this.vg=VectorGraphics(this.vgContainer,args.w,args.h);this.levels=[];this.titlesY=[24,36];this.gradients={};this.filletills={};this.activeEl=false;};infographic.prototype.addLevel=function(objIn)
{var o=jQuery.extend(true,{},objIn);this.gradients[o.id]=this.vg.linearGradient().addStop((1-1/o.l),"#C75278").addStop(1,"#AD033B");this.filletills[o.id]=o.fill;this.levels.push(o);};infographic.prototype.drawLevel=function(i)
{var o=this.levels[i];var h=o.h,w=o.w,w2=o.w/2,x=o.x,y=o.y,id=o.id,hasCaret=o.c,fill=o.fill;var attr={stroke:0,"stroke-opacity":0,"fill":this.gradients[o.id]};if(id=="empty")
{attr["stroke-opacity"]=0
attr["fill-opacity"]=0;}
var gradFill=this.vg.path(attr).moveTo(x+this.fillet,y-this.fillet).lineTo(x+w2-this.fillet,y-h+this.fillet).lineTo(x+w2+this.fillet,y-h+this.fillet).lineTo(x+w-this.fillet,y-this.fillet).lineTo(x+w-this.fillet,y)
if(hasCaret)
{gradFill.lineTo(x+w2+(this.caretW/2),y).lineTo(x+w2+this.fillet,y-this.caretH+this.fillet).lineTo(x+w2-this.fillet,y-this.caretH+this.fillet).lineTo(x+w2-(this.caretW/2),y)}
gradFill.lineTo(x+this.fillet,y).close();if(this.levels[i].text)
{this.addText(i);}
var solidFill=gradFill.clone();solidFill.setAttr({"fill":fill,"pathid":id,"opacity":1,"stroke":fill,"stroke-opacity":0});solidFill.node.instance=solidFill;solidFill.vgContainerId=this.vgContainer.id;this.vg.appendShape(solidFill);$(solidFill.node).bind('click',{context:this,pathid:id},this.activate).hover(function()
{$("#"+this.instance.vgContainerId+" h4[levelid='"+this.getAttribute('pathid')+"']").addClass('hover')},function(){$("#"+this.instance.vgContainerId+" h4[levelid='"+this.getAttribute('pathid')+"']").removeClass('hover')});};infographic.prototype.addText=function(i)
{var focus=this.levels[i].text,id=this.levels[i].id,x=this.levels[i].x,w=this.levels[i].w,levels=this.levels[i].l,h=this.levels[i].h
var cssObj={"top":(2*levels-1)/(2*levels)*h-((focus.indexOf('<br />')<0)?6:14)+'px',"left":x+'px',"width":w+'px',"height":(focus.indexOf('<br />')<0?1.1:2.5)+'em'};var el=jQuery("<h4>"+focus+"</h4>").css(cssObj).attr({"levelid":i}).appendTo(this.vgContainer).bind('click',{context:this,pathid:id},this.activate).hover(function(){$(this).addClass('hover')},function(){$(this).removeClass('hover')})};infographic.prototype.drawLevels=function()
{var levels={};this.levels=this.levels.sort(function(a,b){return b.l-a.l;});for(var i=0;i<this.levels.length;i++)
{levels[this.levels[i].id]=this.levels[i];};this.levels=levels;for(var i in this.levels)
{this.drawLevel(i);};};infographic.prototype.activate=function(e,el,data)
{var id=data.pathid;var path=$("#"+this.vgContainer.id+" path[pathid='"+id+"']");var shape=$("#"+this.vgContainer.id+" shape[pathid='"+id+"']");var title=$("#"+this.vgContainer.id+" h4[levelid='"+id+"']");var div=$(this.infoGraphicContainer).find("div[levelid='"+id+"']");if(shape.length)path=shape;if(this.activeEl[0]==path[0])
{return;}
else if(this.activeEl[0])
{var activeElid=this.activeEl.attr('pathid');this.activeEl[0].instance.setAttr({"opacity":1});$("#"+this.vgContainer.id+" .highlight").removeClass('highlight');$(this.infoGraphicContainer).find('.active').removeClass('active');}
if(this.timerQueue[id])
{window.clearInterval(this.timerQueue[id]);}
var start=1,end=0,speed=28;var that=this;this.timerQueue[id]=window.setInterval(function(){if(start>end){path[0].instance.setAttr('opacity',start.toFixed(2));start-=0.10;return;}
window.clearInterval(that.timerQueue[id]);},speed);title.addClass('highlight');div.addClass('active');this.activeEl=path;this.Q();};infographic.prototype.Q=function()
{setTimeout("$('#VMLRepaint').toggleClass('none')",28);};infographic.prototype.timerQueue={};

/* scripts/script.js */

var Framework=function(){this.stdFillet="3px";};Framework.prototype.doMenuSystem=function()
{$(function(){$("div.hoverBtn:not(.edge)").show("fast",function(){$(this).append("<div></div>");var wid=$(this).children("a").outerWidth();var hei=$(this).children("a").height();$(this).height(hei);$(this).children("div").width(wid);$(this).children("div").height(hei);$(this).children("a").hover(function(){if($(this).attr("rel")==""){$(this).attr("rel",$(this).css("color"));}
$(this).parent().children("div").stop().css({"display":"none","opacity":"1"}).fadeIn("fast");$(this).stop()},function(){$(this).parent().children("div").stop().fadeOut("slow");$(this).stop().animate({"color":$(this).attr("rel")},250);});});});};Framework.prototype.main=function()
{if($("div#submenupad"))
{var w=$(".hoverBtn.active span.pad").offset().left-$("#btnBar").position().left-($(".hoverBtn.active span.pad").position().left/2);$("div#submenupad").width(w);$("div.submenu div.hidden").removeClass("hidden");}
$("div.fillet3").corner(this.stdFillet);$("a[s]").click(function(){var s=$(this).attr("s")
$("div.fullBodyContent.active").toggleClass("active");$("div.leftBodyContent.active, div.rightBodyContent.active").toggleClass("active");$("div."+s).toggleClass("active");$("#header a[s]").removeClass("active");$("#header a[s="+s+"]").addClass("active");});$("a[d]").click(function(){window.location.href=$(this).attr("d");})
$("#submitbtn").click(function(){document.forms["loginform"].submit()});$("input[type='password']").keydown(function(e)
{if(e.keyCode==13)
{document.forms["loginform"].submit();return false;}});$("#marketingLogo").click(function(){window.location.href='home.asp'});var s=$.query.get('s');if(s)
{$("a[s='"+s+"']").trigger("click");}
else
{$("#header a[s=0]").addClass("active");}};$(window).load(function(){if($('body').attr('class').indexOf("msie v6")>-1)
{$('.pngie').pngFix();}
$('.button').width($('.button span').attr('w')*1);$("#user_id").focus();if(window.Cufon)
{Cufon.replace('.univers200',{"fontFamily":"univers200"});Cufon.replace('.univers400',{"fontFamily":"univers400"});$("h1,h3,h4").removeClass("hidden");}});var framework=new Framework();framework.doMenuSystem();framework.main();
/* 211k to 189k (10%) */
/* Minimize time taken: 5.938 seconds */
/* Server Time taken: 0 seconds */
/* Cached for: 10080 minutes */