(function(){var _typeface_js={yOffset:10,faces:{},loadFace:function(typefaceData){var familyName=typefaceData.familyName.toLowerCase();if(!this.faces[familyName]){this.faces[familyName]={};}if(!this.faces[familyName][typefaceData.cssFontWeight]){this.faces[familyName][typefaceData.cssFontWeight]={};}var face=this.faces[familyName][typefaceData.cssFontWeight][typefaceData.cssFontStyle]=typefaceData;face.loaded=true;},getFace:function(faceName,fontWeight,fontStyle){return this.faces[eval(faceName.toLowerCase())][fontWeight][fontStyle];},log:function(message){if(this.quiet){return;}message="typeface.js: "+message;if(this.customLogFn){this.customLogFn(message);}else{if(window.console&&window.console.log){window.console.log(message);}}},pixelsFromPoints:function(face,style,points,dimension){var pixels=points*parseInt(style.fontSize)*72/(face.resolution*100);if(dimension=="horizontal"&&style.fontStretchPercent){pixels*=style.fontStretchPercent;}return pixels;},pointsFromPixels:function(face,style,pixels,dimension){var points=pixels*face.resolution/(parseInt(style.fontSize)*72/100);if(dimension=="horizontal"&&style.fontStretchPrecent){points*=style.fontStretchPercent;}return points;},cssFontWeightMap:{normal:"normal",bold:"bold",400:"normal",700:"bold"},cssFontStretchMap:{"ultra-condensed":0.55,"extra-condensed":0.77,condensed:0.85,"semi-condensed":0.93,normal:1,"semi-expanded":1.07,expanded:1.15,"extra-expanded":1.23,"ultra-expanded":1.45,"default":1},fallbackCharacter:".",configure:function(args){var configurableOptionNames=["customLogFn","customClassNameRegex","customTypefaceElementsList","quiet","verbose","disableSelection"];for(var i=0;i<configurableOptionNames.length;i++){var optionName=configurableOptionNames[i];if(args[optionName]!=null){if(optionName=="customLogFn"){if(typeof args[optionName]!="function"){throw"customLogFn is not a function";}else{this.customLogFn=args.customLogFn;}}else{this[optionName]=args[optionName];}}}},getTextExtents:function(face,style,text){var extentX=0;var extentY=0;var horizontalAdvance;var textLength=text.length;for(var i=0;i<textLength;i++){var glyph=face.glyphs[text.charAt(i)]?face.glyphs[text.charAt(i)]:face.glyphs[this.fallbackCharacter];var letterSpacingAdjustment=this.pointsFromPixels(face,style,style.letterSpacing);extentX+=i+1==textLength?Math.max(glyph.x_max,glyph.ha):glyph.ha;extentX+=letterSpacingAdjustment;horizontalAdvance+=glyph.ha+letterSpacingAdjustment;}return{x:extentX,y:extentY,ha:horizontalAdvance};},pixelsFromCssAmount:function(cssAmount,defaultValue,element){var matches=undefined;if(cssAmount=="normal"){return defaultValue;}else{if(matches=cssAmount.match(/([\-\d+\.]+)px/)){return matches[1];}else{var pixelAmount;var leftInlineStyle=element.style.left;var leftRuntimeStyle=element.runtimeStyle.left;element.runtimeStyle.left=element.currentStyle.left;if(!cssAmount.match(/\d(px|pt)$/)){element.style.left="1em";}else{element.style.left=cssAmount||0;}pixelAmount=element.style.pixelLeft;element.style.left=leftInlineStyle;element.runtimeStyle.left=leftRuntimeStyle;return pixelAmount||defaultValue;}}},capitalizeText:function(text){return text.replace(/(^|\s)[a-z]/g,function(match){return match.toUpperCase();});},getElementStyle:function(e){if(window.getComputedStyle){return window.getComputedStyle(e,"");}else{if(e.currentStyle){return e.currentStyle;}}},getRenderedText:function(e){var browserStyle=this.getElementStyle(e.parentNode);var inlineStyleAttribute=e.parentNode.getAttribute("style");if(inlineStyleAttribute&&typeof(inlineStyleAttribute)=="object"){inlineStyleAttribute=inlineStyleAttribute.cssText;}if(inlineStyleAttribute){var inlineStyleDeclarations=inlineStyleAttribute.split(/\s*\;\s*/);var inlineStyle={};for(var i=0;i<inlineStyleDeclarations.length;i++){var declaration=inlineStyleDeclarations[i];var declarationOperands=declaration.split(/\s*\:\s*/);inlineStyle[declarationOperands[0]]=declarationOperands[1];}}var style={color:browserStyle.color,fontFamily:browserStyle.fontFamily.split(/\s*,\s*/)[0].replace(/(^"|^'|'$|"$)/g,"").toLowerCase(),fontSize:this.pixelsFromCssAmount(browserStyle.fontSize,12,e.parentNode),fontWeight:this.cssFontWeightMap[browserStyle.fontWeight],fontStyle:browserStyle.fontStyle?browserStyle.fontStyle:"normal",fontStretchPercent:this.cssFontStretchMap[inlineStyle&&inlineStyle["font-stretch"]?inlineStyle["font-stretch"]:"default"],textDecoration:browserStyle.textDecoration,lineHeight:this.pixelsFromCssAmount(browserStyle.lineHeight,"normal",e.parentNode),letterSpacing:this.pixelsFromCssAmount(browserStyle.letterSpacing,0,e.parentNode),textTransform:browserStyle.textTransform};var face;if(this.faces[style.fontFamily]&&this.faces[style.fontFamily][style.fontWeight]){face=this.faces[style.fontFamily][style.fontWeight][style.fontStyle];}var text=e.nodeValue;if(e.previousSibling&&e.previousSibling.nodeType==1&&e.previousSibling.tagName!="BR"&&this.getElementStyle(e.previousSibling).display.match(/inline/)){text=text.replace(/^\s+/," ");}else{text=text.replace(/^\s+/,"");}if(e.nextSibling&&e.nextSibling.nodeType==1&&e.nextSibling.tagName!="BR"&&this.getElementStyle(e.nextSibling).display.match(/inline/)){text=text.replace(/\s+$/," ");}else{text=text.replace(/\s+$/,"");}text=text.replace(/\s+/g," ");if(style.textTransform&&style.textTransform!="none"){switch(style.textTransform){case"capitalize":text=this.capitalizeText(text);break;case"uppercase":text=text.toUpperCase();break;case"lowercase":text=text.toLowerCase();break;}}if(!face){var excerptLength=12;var textExcerpt=text.substring(0,excerptLength);if(text.length>excerptLength){textExcerpt+="...";}var fontDescription=style.fontFamily;if(style.fontWeight!="normal"){fontDescription+=" "+style.fontWeight;}if(style.fontStyle!="normal"){fontDescription+=" "+style.fontStyle;}this.log("couldn't find typeface font: "+fontDescription+' for text "'+textExcerpt+'"');return;}var words=text.split(/\b(?=\w)/);var containerSpan=document.createElement("span");containerSpan.className="typeface-js-vector-container";var wordsLength=words.length;for(var i=0;i<wordsLength;i++){var word=words[i];var vector=this.renderWord(face,style,word);if(vector){containerSpan.appendChild(vector.element);if(!this.disableSelection){var selectableSpan=document.createElement("span");selectableSpan.className="typeface-js-selected-text";var wordNode=vector.element.childNodes[0];selectableSpan.appendChild(wordNode);if(this.vectorBackend!="vml"){selectableSpan.style.marginLeft=-1*(vector.width+1)+"px";}selectableSpan.targetWidth=vector.width;if(this.vectorBackend=="vml"){vector.element.appendChild(selectableSpan);}else{containerSpan.appendChild(selectableSpan);}}}}return containerSpan;},initContainer:function(e){var browserStyle=this.getElementStyle(e.parentNode);var inlineStyleAttribute=e.parentNode.getAttribute("style");if(inlineStyleAttribute&&typeof(inlineStyleAttribute)=="object"){inlineStyleAttribute=inlineStyleAttribute.cssText;}if(inlineStyleAttribute){var inlineStyleDeclarations=inlineStyleAttribute.split(/\s*\;\s*/);var inlineStyle={};for(var i=0;i<inlineStyleDeclarations.length;i++){var declaration=inlineStyleDeclarations[i];var declarationOperands=declaration.split(/\s*\:\s*/);inlineStyle[declarationOperands[0]]=declarationOperands[1];}}var style={color:browserStyle.color,fontFamily:browserStyle.fontFamily.split(/\s*,\s*/)[0].replace(/(^"|^'|'$|"$)/g,"").toLowerCase(),fontSize:this.pixelsFromCssAmount(browserStyle.fontSize,12,e.parentNode),fontWeight:this.cssFontWeightMap[browserStyle.fontWeight],fontStyle:browserStyle.fontStyle?browserStyle.fontStyle:"normal",fontStretchPercent:this.cssFontStretchMap[inlineStyle&&inlineStyle["font-stretch"]?inlineStyle["font-stretch"]:"default"],textDecoration:browserStyle.textDecoration,lineHeight:this.pixelsFromCssAmount(browserStyle.lineHeight,"normal",e.parentNode),letterSpacing:this.pixelsFromCssAmount(browserStyle.letterSpacing,0,e.parentNode),textTransform:browserStyle.textTransform};var face;if(this.faces[style.fontFamily]&&this.faces[style.fontFamily][style.fontWeight]){face=this.faces[style.fontFamily][style.fontWeight][style.fontStyle];}var text=e.nodeValue;if(e.previousSibling&&e.previousSibling.nodeType==1&&e.previousSibling.tagName!="BR"&&this.getElementStyle(e.previousSibling).display.match(/inline/)){text=text.replace(/^\s+/," ");}else{text=text.replace(/^\s+/,"");}if(e.nextSibling&&e.nextSibling.nodeType==1&&e.nextSibling.tagName!="BR"&&this.getElementStyle(e.nextSibling).display.match(/inline/)){text=text.replace(/\s+$/," ");}else{text=text.replace(/\s+$/,"");}text=text.replace(/\s+/g," ");if(style.textTransform&&style.textTransform!="none"){switch(style.textTransform){case"capitalize":text=this.capitalizeText(text);break;case"uppercase":text=text.toUpperCase();break;case"lowercase":text=text.toLowerCase();break;}}if(!face){var excerptLength=12;var textExcerpt=text.substring(0,excerptLength);if(text.length>excerptLength){textExcerpt+="...";}var fontDescription=style.fontFamily;if(style.fontWeight!="normal"){fontDescription+=" "+style.fontWeight;}if(style.fontStyle!="normal"){fontDescription+=" "+style.fontStyle;}this.log("couldn't find typeface font: "+fontDescription+' for text "'+textExcerpt+'"');return;}var words=text.split(/\b(?=\w)/);var containerSpan=document.createElement("span");containerSpan.className="typeface-js-vector-container";var parentNode=e.parentNode;if(parentNode.tagName=="A"&&this.vectorBackend=="vml"&&this.getElementStyle(parentNode).display=="inline"){parentNode.style.display="inline-block";parentNode.style.cursor="pointer";}if(this.getElementStyle(parentNode).display=="inline"){parentNode.style.display="inline-block";}var renderedText=containerSpan;if(renderedText){if(parentNode.replaceChild){parentNode.replaceChild(renderedText,e);}else{parentNode.insertBefore(renderedText,e);parentNode.removeChild(e);}var childNodesLength=renderedText.childNodes.length;for(var i;i<childNodesLength;i++){var e=renderedText.childNodes[i];if(e.hasChildNodes()&&!e.targetWidth){e=e.childNodes[0];}if(e&&e.targetWidth){var letterSpacingCount=e.innerHTML.length;var wordSpaceDelta=e.targetWidth-e.offsetWidth;var letterSpacing=wordSpaceDelta/(letterSpacingCount||1);if(this.vectorBackend=="vml"){letterSpacing=Math.ceil(letterSpacing);}e.style.letterSpacing=letterSpacing+"px";e.style.width=e.targetWidth+"px";}}}return[containerSpan,style];},addRenderedWord:function(containerSpan,vector){if(vector){containerSpan.appendChild(vector.element);if(!this.disableSelection){var selectableSpan=document.createElement("span");selectableSpan.className="typeface-js-selected-text";var wordNode=document.createTextNode(word);selectableSpan.appendChild(wordNode);if(this.vectorBackend!="vml"){selectableSpan.style.marginLeft=-1*(vector.width+1)+"px";}selectableSpan.targetWidth=vector.width;if(this.vectorBackend=="vml"){vector.element.appendChild(selectableSpan);}else{containerSpan.appendChild(selectableSpan);}}}},renderDocument:function(callback){if(!callback){callback=function(e){e.style.visibility="visible";};}var elements=document.getElementsByTagName("*");var elementsLength=elements.length;for(var i=0;i<elements.length;i++){if(elements[i].className.match(/(^|\s)typeface-js(\s|$)/)||elements[i].tagName.match(/^(H1|H2|H3|H4|H5|H6)$/)){this.replaceText(elements[i]);if(typeof callback=="function"){callback(elements[i]);}}}if(this.vectorBackend=="vml"){var dummyShape=document.createElement("v:shape");dummyShape.style.display="none";document.body.appendChild(dummyShape);}},replaceText:function(e){var childNodes=[];var childNodesLength=e.childNodes.length;for(var i=0;i<childNodesLength;i++){this.replaceText(e.childNodes[i]);}if(e.nodeType==3&&e.nodeValue.match(/\S/)){var parentNode=e.parentNode;if(parentNode.className=="typeface-js-selected-text"){return;}var renderedText=this.getRenderedText(e);if(parentNode.tagName=="A"&&this.vectorBackend=="vml"&&this.getElementStyle(parentNode).display=="inline"){parentNode.style.display="inline-block";parentNode.style.cursor="pointer";}if(this.getElementStyle(parentNode).display=="inline"){parentNode.style.display="inline-block";}if(renderedText){if(parentNode.replaceChild){parentNode.replaceChild(renderedText,e);}else{parentNode.insertBefore(renderedText,e);parentNode.removeChild(e);}if(this.vectorBackend=="vml"){renderedText.innerHTML=renderedText.innerHTML;}var childNodesLength=renderedText.childNodes.length;for(var i;i<childNodesLength;i++){var e=renderedText.childNodes[i];if(e.hasChildNodes()&&!e.targetWidth){e=e.childNodes[0];}if(e&&e.targetWidth){var letterSpacingCount=e.innerHTML.length;var wordSpaceDelta=e.targetWidth-e.offsetWidth;var letterSpacing=wordSpaceDelta/(letterSpacingCount||1);if(this.vectorBackend=="vml"){letterSpacing=Math.ceil(letterSpacing);}e.style.letterSpacing=letterSpacing+"px";e.style.width=e.targetWidth+"px";}}}}},applyElementVerticalMetrics:function(face,style,e){if(style.lineHeight=="normal"){style.lineHeight=this.pixelsFromPoints(face,style,face.lineHeight);}var cssLineHeightAdjustment=style.lineHeight-this.pixelsFromPoints(face,style,face.lineHeight);e.style.marginTop=Math.round(cssLineHeightAdjustment/2)+"px";e.style.marginBottom=Math.round(cssLineHeightAdjustment/2)+"px";},vectorBackends:{canvas:{_initializeSurface:function(face,style,text){var extents=this.getTextExtents(face,style,text);var canvas=document.createElement("canvas");if(this.disableSelection){canvas.innerHTML=text;}canvas.height=Math.round(this.pixelsFromPoints(face,style,face.lineHeight));canvas.width=Math.round(this.pixelsFromPoints(face,style,extents.x,"horizontal"));this.applyElementVerticalMetrics(face,style,canvas);if(extents.x>extents.ha){canvas.style.marginRight=Math.round(this.pixelsFromPoints(face,style,extents.x-extents.ha,"horizontal"))+"px";}var ctx=canvas.getContext("2d");var pointScale=this.pixelsFromPoints(face,style,1);ctx.scale(pointScale*style.fontStretchPercent,-1*pointScale);ctx.translate(0,-1*face.ascender);ctx.fillStyle=style.color;return{context:ctx,canvas:canvas};},_renderGlyph:function(ctx,face,charToRender,style){var glyph=face.glyphs[charToRender];if(!glyph){return this.renderGlyph(ctx,face,this.fallbackCharacter,style);}if(glyph.o){var outline;if(glyph.cached_outline){outline=glyph.cached_outline;}else{outline=glyph.o.split(" ");glyph.cached_outline=outline;}var outlineLength=outline.length;for(var i=0;i<outlineLength;){var action=outline[i++];switch(action){case"m":var x=outline[i];var y=eval(outline[i+1]+"+"+_typeface_js.yOffset)+"";ctx.moveTo(x,y);i=i+2;break;case"l":var x=outline[i];var y=eval(outline[i+1]+"+"+_typeface_js.yOffset)+"";ctx.lineTo(x,y);i=i+2;break;case"q":var cpx=outline[i];var cpy=eval(outline[i+1]+"+"+_typeface_js.yOffset)+"";var x1=outline[i+2];var y1=eval(outline[i+3]+"+"+_typeface_js.yOffset)+"";ctx.quadraticCurveTo(x1,y1,cpx,cpy);i=i+4;break;case"b":var x3=outline[i];var y3=eval(outline[i+1]+"+"+_typeface_js.yOffset)+"";var x1=outline[i+2];var y1=eval(outline[i+3]+"+"+_typeface_js.yOffset)+"";var x2=outline[i+4];var y2=eval(outline[i+5]+"+"+_typeface_js.yOffset)+"";ctx.bezierCurveTo(x1,y1,x2,y2,x3,y3);i=i+6;break;}}}if(glyph.ha){var letterSpacingPoints=style.letterSpacing&&style.letterSpacing!="normal"?this.pointsFromPixels(face,style,style.letterSpacing):0;ctx.translate(glyph.ha+letterSpacingPoints,0);}},_renderWord:function(face,style,text){var surface=this.initializeSurface(face,style,text);var ctx=surface.context;var canvas=surface.canvas;ctx.beginPath();ctx.save();var chars=text.split("");var charsLength=chars.length;for(var i=0;i<charsLength;i++){this.renderGlyph(ctx,face,chars[i],style);}ctx.fill();if(style.textDecoration=="underline"){ctx.beginPath();ctx.moveTo(0,face.underlinePosition);ctx.restore();ctx.lineTo(0,face.underlinePosition);ctx.strokeStyle=style.color;ctx.lineWidth=face.underlineThickness;ctx.stroke();}return{element:ctx.canvas,width:Math.floor(canvas.width)};}},vml:{_initializeSurface:function(face,style,text){var shape=document.createElement("v:shape");var extents=this.getTextExtents(face,style,text);shape.style.width=shape.style.height=style.fontSize+"px";shape.style.marginLeft="-1px";if(extents.x>extents.ha){shape.style.marginRight=this.pixelsFromPoints(face,style,extents.x-extents.ha,"horizontal")+"px";}this.applyElementVerticalMetrics(face,style,shape);var resolutionScale=face.resolution*100/72;shape.coordsize=(resolutionScale/style.fontStretchPercent)+","+resolutionScale;shape.coordorigin="0,"+face.ascender;shape.style.flip="y";shape.fillColor=style.color;shape.stroked=false;shape.path="hh m 0,"+face.ascender+" l 0,"+face.descender+" ";return shape;},_renderGlyph:function(shape,face,charToRender,offsetX,style,vmlSegments){var glyph=face.glyphs[charToRender];if(!glyph){this.log("glyph not defined: "+charToRender);this.renderGlyph(shape,face,this.fallbackCharacter,offsetX,style);return;}vmlSegments.push("m");if(glyph.o){var outline,outlineLength;if(glyph.cached_outline){outline=glyph.cached_outline;outlineLength=outline.length;}else{outline=glyph.o.split(" ");outlineLength=outline.length;for(var i=0;i<outlineLength;){switch(outline[i++]){case"q":outline[i]=Math.round(outline[i++]);outline[i]=Math.round(outline[i++]);case"m":case"l":outline[i]=Math.round(outline[i++]);outline[i]=Math.round(outline[i++]);break;}}glyph.cached_outline=outline;}var prevX,prevY;for(var i=0;i<outlineLength;){var action=outline[i++];var x=Math.round(outline[i++])+offsetX;var y=Math.round(outline[i++]);switch(action){case"m":vmlSegments.push("xm ",x,",",y);break;case"l":vmlSegments.push("l ",x,",",y);break;case"q":var cpx=outline[i++]+offsetX;var cpy=outline[i++];var cp1x=Math.round(prevX+2/3*(cpx-prevX));var cp1y=Math.round(prevY+2/3*(cpy-prevY));var cp2x=Math.round(cp1x+(x-prevX)/3);var cp2y=Math.round(cp1y+(y-prevY)/3);vmlSegments.push("c ",cp1x,",",cp1y,",",cp2x,",",cp2y,",",x,",",y);break;case"b":var cp1x=Math.round(outline[i++])+offsetX;var cp1y=outline[i++];var cp2x=Math.round(outline[i++])+offsetX;var cp2y=outline[i++];vmlSegments.push("c ",cp1x,",",cp1y,",",cp2x,",",cp2y,",",x,",",y);break;}prevX=x;prevY=y;}}vmlSegments.push("x e");return vmlSegments;},_renderWord:function(face,style,text){var offsetX=0;var shape=this.initializeSurface(face,style,text);var letterSpacingPoints=style.letterSpacing&&style.letterSpacing!="normal"?this.pointsFromPixels(face,style,style.letterSpacing):0;letterSpacingPoints=Math.round(letterSpacingPoints);var chars=text.split("");var vmlSegments=[];for(var i=0;i<chars.length;i++){var charToRender=chars[i];vmlSegments=this.renderGlyph(shape,face,charToRender,offsetX,style,vmlSegments);offsetX+=face.glyphs[charToRender].ha+letterSpacingPoints;}if(style.textDecoration=="underline"){var posY=face.underlinePosition-(face.underlineThickness/2);vmlSegments.push("xm ",0,",",posY);vmlSegments.push("l ",offsetX,",",posY);vmlSegments.push("l ",offsetX,",",posY+face.underlineThickness);vmlSegments.push("l ",0,",",posY+face.underlineThickness);vmlSegments.push("l ",0,",",posY);vmlSegments.push("x e");}shape.path+=vmlSegments.join("")+"m "+offsetX+" 0 l "+offsetX+" "+face.ascender;return{element:shape,width:Math.floor(this.pixelsFromPoints(face,style,offsetX,"horizontal"))};}}},setVectorBackend:function(backend){this.vectorBackend=backend;var backendFunctions=["renderWord","initializeSurface","renderGlyph"];for(var i=0;i<backendFunctions.length;i++){var backendFunction=backendFunctions[i];this[backendFunction]=this.vectorBackends[backend]["_"+backendFunction];}},initialize:function(){if(arguments.callee.done){return;}arguments.callee.done=true;if(window._typefaceTimer){clearInterval(_typefaceTimer);}}};var typefaceSelectors=[".typeface-js","h1","h2","h3","h4","h5","h6"];if(document.createStyleSheet){var styleSheet=document.createStyleSheet();for(var i=0;i<typefaceSelectors.length;i++){var selector=typefaceSelectors[i];}styleSheet.addRule(".typeface-js-selected-text",'-ms-filter: 			"Chroma(color=black) 			progid:DXImageTransform.Microsoft.MaskFilter(Color=white) 			progid:DXImageTransform.Microsoft.MaskFilter(Color=blue) 			alpha(opacity=30)" !important; 		color: black; 		font-family: Modern; 		position: absolute; 		white-space: pre; 		filter: alpha(opacity=0) !important;');styleSheet.addRule(".typeface-js-vector-container","position: relative");}else{if(document.styleSheets){if(!document.styleSheets.length){(function(){var styleSheet=document.createElement("style");styleSheet.type="text/css";document.getElementsByTagName("head")[0].appendChild(styleSheet);})();}var styleSheet=document.styleSheets[0];document.styleSheets[0].insertRule(".typeface-js-selected-text { 			color: rgba(128, 128, 128, 0); 			opacity: 0.30; 			position: absolute; 			font-family: Arial, sans-serif; 			white-space: pre 		}",styleSheet.cssRules.length);try{document.styleSheets[0].insertRule(".typeface-js-selected-text::-moz-selection { background: blue; }",styleSheet.cssRules.length);}catch(e){}try{document.styleSheets[0].insertRule(".typeface-js-selected-text::selection { background: blue; }",styleSheet.cssRules.length);}catch(e){}if(/WebKit/i.test(navigator.userAgent)){document.styleSheets[0].insertRule(".typeface-js-vector-container { position: relative }",styleSheet.cssRules.length);}}}var backend=!!(window.attachEvent&&!window.opera)?"vml":window.CanvasRenderingContext2D||document.createElement("canvas").getContext?"canvas":null;if(backend=="vml"){document.namespaces.add("v","urn:schemas-microsoft-com:vml","#default#VML");var styleSheet=document.createStyleSheet();styleSheet.addRule("v\\:shape","display: inline-block;");}_typeface_js.setVectorBackend(backend);window._typeface_js=_typeface_js;
/*@cc_on @*/
/*@if (@_win32)

document.write("<script id=__ie_onload_typeface defer src=//:><\/script>");
var script = document.getElementById("__ie_onload_typeface");
script.onreadystatechange = function() {
	if (this.readyState == "complete") {
		_typeface_js.initialize(); 
	}
};

/*@end @*/
})();
if (_typeface_js && _typeface_js.loadFace) _typeface_js.loadFace({"glyphs":{"S":{"x_min":65.28125,"x_max":593.0625,"ha":639,"o":"m 554 900 b 333 960 486 938 411 960 b 65 710 172 960 65 836 b 151 529 65 635 101 572 b 322 447 172 511 197 490 b 516 245 397 422 516 373 b 315 56 516 159 451 56 b 75 157 227 56 156 98 l 75 70 b 318 -12 147 22 230 -12 b 593 248 450 -12 593 82 b 351 518 593 415 463 478 b 140 712 247 554 140 592 b 340 895 140 793 204 895 b 554 819 419 895 477 864 l 554 900 "},"/":{"x_min":11,"x_max":380,"ha":390,"o":"m 11 -12 l 74 -12 l 380 960 l 314 960 l 11 -12 "},"y":{"x_min":0,"x_max":579,"ha":571,"o":"m 579 624 l 510 624 l 295 187 l 68 624 l 0 624 l 262 120 l 44 -319 l 112 -319 l 579 624 "},"≈":{"x_min":140.28125,"x_max":777.78125,"ha":917,"o":"m 777 583 l 733 626 b 597 534 697 572 648 534 b 468 583 552 534 512 555 b 320 629 429 608 377 629 b 140 518 233 629 181 578 l 184 473 b 319 565 219 528 268 565 b 448 518 365 565 409 541 b 595 471 490 491 541 471 b 777 583 681 471 737 525 m 777 294 l 733 339 b 597 247 697 283 648 247 b 468 294 552 247 512 266 b 320 341 429 319 377 341 b 140 230 233 341 181 290 l 184 184 b 319 277 219 240 268 277 b 448 230 365 277 409 254 b 595 183 490 204 541 183 b 777 294 681 183 737 237 "},"g":{"x_min":11.109375,"x_max":565.28125,"ha":579,"o":"m 565 624 l 345 624 b 165 592 284 624 231 624 b 54 398 97 561 54 482 b 216 193 54 251 170 209 b 91 90 145 168 91 148 b 193 0 91 62 106 22 b 11 -152 36 -25 11 -108 b 284 -319 11 -166 11 -319 b 563 -137 466 -319 563 -247 b 486 -5 563 -76 527 -27 b 304 29 431 23 387 26 b 154 94 248 30 154 34 b 176 137 154 111 162 126 b 331 190 195 152 213 158 b 509 398 509 237 509 378 b 423 568 509 489 452 540 l 565 568 l 565 624 m 277 568 b 444 403 368 568 444 494 b 277 236 444 311 369 236 b 112 403 186 236 112 311 b 277 568 112 494 187 568 m 501 -143 b 288 -264 501 -201 441 -264 b 73 -150 251 -264 73 -264 b 137 -61 73 -97 116 -70 b 301 -33 177 -41 213 -33 b 501 -143 354 -33 501 -33 "},"–":{"x_min":-8.328125,"x_max":702.78125,"ha":694,"o":"m 702 369 l -8 369 l -8 325 l 702 325 l 702 369 "},"e":{"x_min":50,"x_max":612.5,"ha":663,"o":"m 612 336 b 586 473 611 380 608 423 b 336 636 554 548 475 636 b 50 319 156 636 50 485 b 361 -12 50 152 156 -12 b 601 70 465 -12 543 25 l 601 145 b 368 50 563 113 487 50 b 123 336 248 50 116 137 l 612 336 m 130 389 b 336 576 154 518 252 576 b 495 489 405 576 463 542 b 533 389 520 450 527 416 l 130 389 "},"J":{"x_min":-62.5,"x_max":188.890625,"ha":289,"o":"m 188 947 l 113 947 l 113 23 b -27 -209 113 -68 112 -209 b -62 -204 -45 -209 -52 -207 l -54 -276 b 61 -261 26 -272 34 -272 b 188 15 181 -209 188 -75 l 188 947 "},"∆":{"x_min":29.171875,"x_max":747.21875,"ha":776,"o":"m 747 0 l 747 41 b 425 972 640 353 533 661 l 355 972 b 29 41 245 661 138 353 l 29 0 l 747 0 m 666 61 l 109 61 b 366 811 195 311 280 561 b 387 885 375 835 381 864 l 390 885 b 409 811 395 863 398 842 b 666 61 495 561 580 311 "},"˘":{"x_min":43,"x_max":421,"ha":463,"o":"m 43 899 b 233 740 62 853 111 740 b 421 899 329 740 387 810 l 368 899 b 232 803 352 871 318 803 b 98 899 184 803 131 828 l 43 899 "},"≥":{"x_min":156.9375,"x_max":761.109375,"ha":917,"o":"m 761 0 l 761 63 l 156 63 l 156 0 l 761 0 m 761 466 l 761 497 l 156 783 l 156 711 l 647 482 l 647 479 l 156 251 l 156 179 l 761 466 "},"^":{"x_min":153.0625,"x_max":760,"ha":911,"o":"m 194 559 l 455 872 l 715 559 l 760 595 l 455 960 l 153 595 l 194 559 "},"D":{"x_min":111.109375,"x_max":959.71875,"ha":1013,"o":"m 111 947 l 111 0 l 398 0 b 737 65 537 0 613 0 b 959 478 895 148 959 332 b 737 883 959 644 884 799 b 398 947 625 947 537 947 l 111 947 m 406 886 b 695 819 529 886 598 882 b 877 476 837 729 877 586 b 695 125 877 332 809 191 b 406 59 587 62 513 59 l 184 59 l 184 886 l 406 886 "},"∙":{"x_min":120.828125,"x_max":269.4375,"ha":390,"o":"m 195 554 b 120 479 152 554 120 519 b 195 405 120 439 154 405 b 269 479 234 405 269 437 b 195 554 269 522 236 554 "},"ˆ":{"x_min":40,"x_max":421.9375,"ha":463,"o":"m 274 939 l 190 939 l 40 711 l 92 711 l 233 863 l 369 711 l 421 711 l 274 939 "},"w":{"x_min":0,"x_max":983,"ha":983,"o":"m 983 624 l 916 624 l 699 115 l 509 624 l 473 624 l 277 115 l 65 624 l 0 624 l 266 -12 l 297 -12 l 490 494 l 681 -12 l 713 -12 l 983 624 "},"$":{"x_min":48.609375,"x_max":672.21875,"ha":724,"o":"m 631 833 b 393 918 548 892 488 910 l 393 960 l 327 960 l 327 918 b 56 687 88 897 56 746 b 327 437 56 518 258 458 l 327 53 b 48 174 248 63 179 81 l 48 98 b 327 -13 108 46 195 -3 l 327 -163 l 393 -163 l 393 -13 b 672 231 609 3 672 145 b 393 490 672 412 463 470 l 393 852 b 631 756 498 840 562 806 l 631 833 m 327 511 b 125 692 236 543 125 582 b 327 852 125 779 218 849 l 327 511 m 393 415 b 601 226 512 379 601 333 b 393 55 601 114 484 57 l 393 415 "},"∫":{"x_min":93.0625,"x_max":547.21875,"ha":642,"o":"m 530 967 b 547 1024 536 985 541 1006 b 470 1039 534 1032 500 1039 b 286 839 355 1039 286 963 l 286 -104 b 169 -244 286 -194 247 -244 b 109 -233 143 -244 126 -239 b 93 -290 104 -252 98 -272 b 172 -304 109 -298 145 -304 b 355 -102 283 -304 355 -230 l 355 838 b 470 979 355 926 394 979 b 530 967 494 979 519 972 "},"\\":{"x_min":10.5625,"x_max":380,"ha":390,"o":"m 314 -12 l 380 -12 l 74 960 l 10 960 l 314 -12 "},"’":{"x_min":77.78125,"x_max":168.0625,"ha":246,"o":"m 168 947 l 77 947 l 77 815 l 106 815 b 77 700 106 751 88 721 l 77 653 b 168 867 168 718 168 829 l 168 947 "},"-":{"x_min":52.78125,"x_max":381.9375,"ha":433,"o":"m 381 346 l 52 346 l 52 280 l 381 280 l 381 346 "},"Q":{"x_min":52.40625,"x_max":1057.96875,"ha":1111,"o":"m 1017 -102 l 1001 -88 b 909 -123 984 -101 953 -123 b 610 -9 891 -123 777 -122 b 821 58 659 -2 735 8 b 1057 475 960 140 1057 294 b 555 960 1057 736 857 960 b 52 472 257 960 52 733 b 503 -9 52 233 231 13 b 691 -130 582 -79 678 -123 b 934 -198 791 -177 870 -190 l 1017 -102 m 976 473 b 552 56 976 222 769 56 b 134 473 306 56 134 255 b 556 893 134 707 323 893 b 976 473 792 893 976 711 "},"M":{"x_min":111.109375,"x_max":977.78125,"ha":1089,"o":"m 977 948 l 904 948 l 544 507 l 183 948 l 111 948 l 111 0 l 183 0 l 183 841 l 544 397 l 904 841 l 904 0 l 977 0 l 977 948 "},"C":{"x_min":52.78125,"x_max":893.0625,"ha":942,"o":"m 883 881 b 547 960 777 929 663 960 b 52 472 327 960 52 796 b 556 -12 52 168 297 -12 b 893 76 606 -12 738 -5 l 893 152 b 556 58 837 125 709 58 b 136 473 313 58 136 227 b 561 890 136 715 308 890 b 883 800 705 890 809 838 l 883 881 "},"!":{"x_min":79.171875,"x_max":168.0625,"ha":246,"o":"m 168 947 l 79 947 l 102 266 l 141 266 l 155 496 l 168 947 m 168 133 l 79 133 l 79 0 l 168 0 l 168 133 "},"{":{"x_min":68.0625,"x_max":397.21875,"ha":463,"o":"m 68 269 b 176 202 102 268 144 268 b 198 -88 198 155 198 122 b 397 -319 198 -237 238 -322 l 397 -244 b 275 2 275 -237 275 -218 b 236 233 275 111 275 162 b 141 314 209 282 172 298 b 261 453 176 330 230 357 b 275 643 272 489 275 518 b 397 871 275 849 288 868 l 397 947 b 237 882 352 949 288 950 b 198 575 198 831 198 782 b 68 358 198 503 195 362 l 68 269 "},"X":{"x_min":0,"x_max":956,"ha":954,"o":"m 932 947 l 842 947 l 478 539 l 113 947 l 22 947 l 432 485 l 0 0 l 93 0 l 478 433 l 861 0 l 956 0 l 525 485 l 932 947 "},"#":{"x_min":107.03125,"x_max":809.984375,"ha":917,"o":"m 107 671 l 107 608 l 291 608 l 234 339 l 107 339 l 107 276 l 225 276 l 163 -5 l 225 -5 l 286 276 l 552 276 l 491 -5 l 552 -5 l 614 276 l 809 276 l 809 339 l 630 339 l 684 608 l 809 608 l 809 671 l 697 671 l 755 954 l 691 954 l 630 671 l 368 671 l 426 954 l 362 954 l 304 671 l 107 671 m 619 608 l 564 339 l 298 339 l 354 608 l 619 608 "},")":{"x_min":11.109375,"x_max":351.390625,"ha":463,"o":"m 11 960 b 281 325 151 832 281 598 b 162 -125 281 166 240 9 b 11 -315 106 -222 52 -273 l 79 -315 b 201 -169 106 -287 152 -241 b 351 323 298 -25 351 151 b 79 960 351 676 150 885 l 11 960 "},"}":{"x_min":66.671875,"x_max":395.828125,"ha":463,"o":"m 395 358 b 273 468 368 359 294 361 b 265 718 265 511 265 518 b 66 947 265 868 220 950 l 66 871 b 187 625 187 865 187 846 b 226 394 187 516 187 465 b 322 314 252 346 290 327 b 202 175 286 297 231 271 b 187 -15 191 138 187 109 b 66 -243 187 -220 173 -240 l 66 -319 b 225 -254 111 -321 173 -322 b 263 52 263 -202 263 -154 b 395 269 263 123 268 265 l 395 358 "},"‰":{"x_min":22.109375,"x_max":1438.671875,"ha":1461,"o":"m 877 960 l 809 960 l 45 -12 l 113 -12 l 877 960 m 245 900 b 409 736 335 900 409 828 b 245 572 409 646 335 572 b 81 736 155 572 81 646 b 245 900 81 828 156 900 m 701 373 b 865 209 791 373 865 301 b 701 45 865 119 791 45 b 537 209 610 45 537 119 b 701 373 537 301 610 373 m 245 960 b 22 737 123 960 22 861 b 245 514 22 612 123 514 b 469 737 369 514 469 614 b 245 960 469 860 369 960 m 701 433 b 479 211 578 433 479 334 b 701 -12 479 86 578 -12 b 924 211 824 -12 924 87 b 701 433 924 333 824 433 m 1215 433 b 991 211 1092 433 991 334 b 1215 -12 991 86 1092 -12 b 1438 211 1338 -12 1438 87 b 1215 433 1438 333 1338 433 m 1215 373 b 1378 209 1305 373 1378 301 b 1215 45 1378 119 1305 45 b 1051 209 1124 45 1051 119 b 1215 373 1051 301 1124 373 "},"a":{"x_min":37.5,"x_max":573.609375,"ha":578,"o":"m 573 108 b 483 52 555 93 502 52 b 470 59 475 52 472 56 b 469 115 469 63 469 97 l 469 435 b 430 580 469 507 466 540 b 273 636 394 621 325 636 b 73 569 180 636 111 592 l 73 501 b 265 576 140 550 190 576 b 402 453 369 576 402 525 l 402 373 b 37 144 316 369 37 348 b 206 -12 37 55 115 -12 b 402 65 302 -12 370 40 b 448 -12 406 18 409 -12 b 573 52 476 -12 515 11 l 573 108 m 402 123 b 229 41 366 90 308 41 b 105 144 180 41 105 70 b 231 293 105 219 169 268 b 402 319 290 316 363 318 l 402 123 "},"—":{"x_min":-8.328125,"x_max":1397.21875,"ha":1389,"o":"m 1397 369 l -8 369 l -8 325 l 1397 325 l 1397 369 "},"=":{"x_min":94.4375,"x_max":822.21875,"ha":917,"o":"m 94 605 l 822 605 l 822 669 l 94 669 l 94 605 m 94 279 l 822 279 l 822 341 l 94 341 l 94 279 "},"N":{"x_min":111.109375,"x_max":965.28125,"ha":1076,"o":"m 965 947 l 891 947 l 891 119 l 179 947 l 111 947 l 111 0 l 184 0 l 184 833 l 904 0 l 965 0 l 965 947 "},"˚":{"x_min":111.109375,"x_max":351.390625,"ha":463,"o":"m 231 943 b 111 822 166 943 111 890 b 231 703 111 757 165 703 b 351 822 298 703 351 757 b 231 943 351 890 297 943 m 231 906 b 312 824 276 906 312 869 b 231 742 312 779 276 742 b 150 824 186 742 150 779 b 231 906 150 869 186 906 "},"⁄":{"x_min":-299,"x_max":486,"ha":188,"o":"m 486 960 l 431 960 l -299 -37 l -244 -37 l 486 960 "},"2":{"x_min":48.609375,"x_max":652.78125,"ha":694,"o":"m 212 66 b 419 330 283 152 356 239 b 561 692 537 505 561 604 b 283 960 561 828 450 960 b 62 874 201 960 125 926 l 62 792 b 277 896 125 847 187 896 b 488 693 376 896 488 822 b 359 361 488 561 404 425 b 48 0 268 230 166 108 l 652 0 l 652 66 l 212 66 "},"Z":{"x_min":12.90625,"x_max":849.015625,"ha":882,"o":"m 843 947 l 44 947 l 44 888 l 724 888 l 12 20 l 12 0 l 849 0 l 849 59 l 133 59 l 843 922 l 843 947 "},"u":{"x_min":80.5625,"x_max":587.5,"ha":681,"o":"m 587 624 l 520 624 l 520 187 b 473 111 505 155 494 133 b 315 45 426 65 368 45 b 172 122 269 45 205 62 b 147 272 150 162 147 204 l 147 624 l 80 624 l 80 272 b 119 86 80 208 83 147 b 308 -12 154 25 233 -12 b 520 102 425 -12 487 61 l 520 0 l 587 0 l 587 624 "},"˜":{"x_min":4.171875,"x_max":458.390625,"ha":463,"o":"m 48 761 b 106 826 52 796 69 826 b 230 790 126 826 137 824 b 345 760 298 765 325 760 b 458 893 352 760 461 767 l 416 893 b 354 828 413 871 406 828 b 248 858 331 828 313 832 b 115 893 179 886 151 893 b 4 761 15 893 6 794 l 48 761 "},"k":{"x_min":81.9375,"x_max":647.21875,"ha":611,"o":"m 148 947 l 81 947 l 81 0 l 148 0 l 148 947 m 590 624 l 502 624 l 158 327 l 551 0 l 647 0 l 251 327 l 590 624 "},"ˇ":{"x_min":40,"x_max":422,"ha":463,"o":"m 274 712 l 422 940 l 369 940 l 233 786 l 92 940 l 40 940 l 190 712 l 274 712 "},"€":{"x_min":21.78125,"x_max":742.609375,"ha":776,"o":"m 734 151 b 489 58 659 101 581 58 b 271 170 371 58 303 129 b 203 361 224 236 210 322 l 641 361 l 653 428 l 196 428 b 196 516 195 453 194 482 l 669 516 l 681 583 l 203 583 b 496 890 230 751 330 890 b 728 819 582 890 650 863 l 742 890 b 494 960 688 918 605 960 b 124 583 281 960 155 790 l 34 583 l 21 516 l 119 516 b 119 428 117 496 116 460 l 34 428 l 21 361 l 124 361 b 487 -12 170 33 392 -12 b 734 75 605 -12 691 45 l 734 151 "},"⅝":{"x_min":33.46875,"x_max":997.359375,"ha":1042,"o":"m 918 257 b 986 367 973 290 986 336 b 829 500 986 439 915 500 b 673 367 737 500 673 431 b 743 257 673 335 686 292 b 662 133 673 220 662 161 b 830 -6 662 54 740 -6 b 997 136 923 -6 997 56 b 918 257 997 214 934 247 m 929 367 b 830 277 929 315 889 277 b 730 364 780 277 730 310 b 827 456 730 414 770 456 b 929 367 877 456 929 424 m 939 139 b 832 39 939 78 893 39 b 720 135 776 39 720 76 b 829 233 720 190 769 233 b 939 139 880 233 939 200 m 901 960 l 847 960 l 115 -37 l 169 -37 l 901 960 m 332 955 l 79 955 l 79 718 b 166 730 107 724 134 730 b 304 613 193 730 304 721 b 176 498 304 536 241 498 b 33 542 119 498 65 525 l 33 489 b 175 454 57 478 107 454 b 364 616 289 454 364 529 b 272 752 364 655 348 720 b 134 769 218 774 166 771 l 134 913 l 332 913 l 332 955 "},"Ω":{"x_min":69.4375,"x_max":855.5625,"ha":931,"o":"m 855 0 l 855 59 l 648 59 b 855 532 744 143 855 307 b 466 989 855 804 709 989 b 69 530 230 989 69 790 b 276 59 69 282 193 132 l 70 59 l 70 0 l 354 0 l 354 59 b 140 526 256 145 140 282 b 466 928 140 757 268 928 b 784 525 673 928 784 754 b 573 59 784 272 661 137 l 573 0 l 855 0 "},"s":{"x_min":48.609375,"x_max":438.890625,"ha":483,"o":"m 420 583 b 254 636 394 598 331 636 b 52 464 118 636 52 540 b 200 296 52 351 159 311 b 372 154 304 255 372 230 b 243 50 372 101 329 50 b 48 109 159 50 91 87 l 48 44 b 236 -12 137 -9 208 -12 b 438 159 366 -12 438 76 b 263 344 438 282 320 323 b 115 469 202 365 115 397 b 250 575 115 521 165 575 b 420 511 325 575 384 536 l 420 583 "},"B":{"x_min":111.109375,"x_max":706.953125,"ha":738,"o":"m 111 947 l 111 0 l 358 0 b 613 63 468 0 527 8 b 706 252 662 95 706 159 b 487 491 706 343 665 454 b 623 703 523 512 623 565 b 484 917 623 797 569 882 b 258 947 425 943 368 947 l 111 947 m 255 885 b 470 846 380 885 433 868 b 544 697 516 818 544 760 b 273 508 544 508 351 508 l 184 508 l 184 885 l 255 885 m 315 447 b 568 387 458 447 519 432 b 626 254 612 348 626 301 b 348 61 626 61 419 61 l 184 61 l 184 447 l 315 447 "},"…":{"x_min":186.109375,"x_max":1202.78125,"ha":1389,"o":"m 276 134 l 186 134 l 186 0 l 276 0 l 276 134 m 740 134 l 648 134 l 648 0 l 740 0 l 740 134 m 1202 134 l 1112 134 l 1112 0 l 1202 0 l 1202 134 "},"?":{"x_min":34.46875,"x_max":334.46875,"ha":390,"o":"m 181 248 b 155 336 165 283 155 301 b 267 561 155 394 173 422 b 334 762 301 610 334 689 b 160 960 334 881 265 960 b 66 935 115 960 88 946 l 34 826 l 48 826 b 159 900 60 846 92 900 b 263 771 221 900 263 836 b 192 567 263 715 245 653 b 102 357 121 454 102 421 b 156 229 102 308 126 265 l 181 248 m 208 136 l 117 136 l 117 0 l 208 0 l 208 136 "},"H":{"x_min":111.109375,"x_max":890.28125,"ha":1001,"o":"m 890 947 l 816 947 l 816 511 l 183 511 l 183 947 l 111 947 l 111 0 l 183 0 l 183 448 l 816 448 l 816 0 l 890 0 l 890 947 "},"c":{"x_min":52.78125,"x_max":531.9375,"ha":568,"o":"m 520 605 b 354 636 481 618 427 636 b 52 302 206 636 52 529 b 354 -12 52 62 233 -12 b 531 19 431 -12 490 5 l 531 88 b 363 50 493 72 440 50 b 123 309 191 50 123 180 b 356 573 123 439 197 573 b 520 532 427 573 476 551 l 520 605 "},"−":{"x_min":94.4375,"x_max":822.21875,"ha":917,"o":"m 94 441 l 822 441 l 822 505 l 94 505 l 94 441 "},"⅜":{"x_min":50,"x_max":1012.5,"ha":1071,"o":"m 931 257 b 1001 366 988 290 1001 336 b 843 500 1001 439 929 500 b 688 366 751 500 688 430 b 758 257 688 334 700 291 b 676 133 688 219 676 161 b 845 -6 676 54 755 -6 b 1012 136 938 -6 1012 55 b 931 257 1012 214 948 247 m 944 366 b 845 276 944 315 902 276 b 744 364 794 276 744 309 b 843 455 744 414 786 455 b 944 366 891 455 944 423 m 954 138 b 847 38 954 77 906 38 b 736 134 790 38 736 76 b 843 233 736 190 783 233 b 954 138 894 233 954 200 m 915 960 l 861 960 l 130 -37 l 184 -37 l 915 960 m 50 480 b 187 454 93 462 140 454 b 361 597 258 454 361 494 b 261 722 361 662 325 703 b 355 833 344 751 355 806 b 180 960 355 903 287 960 b 54 926 108 960 70 936 l 54 879 b 177 918 79 895 119 918 b 298 831 233 918 298 892 b 159 742 298 803 277 742 l 159 699 b 304 596 231 700 304 676 b 181 496 304 532 254 496 b 50 525 115 496 69 516 l 50 480 "},"≠":{"x_min":156.9375,"x_max":761.109375,"ha":917,"o":"m 761 229 l 761 293 l 433 293 l 541 518 l 761 518 l 761 582 l 572 582 l 668 779 l 601 779 l 506 582 l 156 582 l 156 518 l 476 518 l 368 293 l 156 293 l 156 229 l 336 229 l 240 31 l 306 31 l 401 229 l 761 229 "},"•":{"x_min":177.78125,"x_max":516.671875,"ha":694,"o":"m 347 643 b 177 473 255 643 177 569 b 347 304 177 379 255 304 b 516 473 440 304 516 379 b 347 643 516 568 438 643 "},"(":{"x_min":111.109375,"x_max":452.78125,"ha":463,"o":"m 452 -315 b 300 -125 409 -273 356 -223 b 180 325 222 9 180 166 b 452 960 180 600 313 833 l 383 960 b 111 323 315 888 111 676 b 262 -169 111 151 165 -25 b 383 -315 311 -241 356 -287 l 452 -315 "},"U":{"x_min":88.890625,"x_max":880.5625,"ha":969,"o":"m 880 947 l 808 947 l 808 455 b 755 202 808 361 798 286 b 483 55 708 107 594 55 b 212 205 344 55 256 129 b 161 455 183 255 161 325 l 161 947 l 88 947 l 88 469 b 158 155 88 353 90 272 b 488 -12 226 36 368 -12 b 813 158 650 -12 758 70 b 880 469 872 248 880 334 l 880 947 "},"◊":{"x_min":76.390625,"x_max":637.5,"ha":717,"o":"m 637 486 b 377 972 551 649 463 810 l 336 972 b 76 485 250 810 162 647 b 336 0 162 323 250 161 l 377 0 b 637 486 463 162 551 323 m 569 486 b 355 90 497 354 426 222 b 144 486 284 222 215 354 b 356 882 215 618 286 750 b 569 486 426 750 498 618 "},"F":{"x_min":111.109375,"x_max":597.21875,"ha":625,"o":"m 597 947 l 111 947 l 111 0 l 183 0 l 183 465 l 556 465 l 556 526 l 183 526 l 183 886 l 597 886 l 597 947 "},":":{"x_min":77.78125,"x_max":168.0625,"ha":246,"o":"m 168 624 l 77 624 l 77 489 l 168 489 l 168 624 m 168 134 l 77 134 l 77 0 l 168 0 l 168 134 "},"*":{"x_min":44.0625,"x_max":606.0625,"ha":651,"o":"m 547 851 l 500 900 l 341 710 b 332 710 336 711 336 711 l 357 960 l 294 960 l 316 710 b 309 710 313 711 313 711 l 152 900 l 103 851 l 294 695 b 295 692 294 695 295 694 b 294 690 295 691 294 690 l 44 710 l 44 645 l 294 673 b 299 664 295 668 297 667 l 103 505 l 152 458 l 309 652 b 316 652 313 650 313 650 l 294 395 l 357 395 l 332 652 b 341 652 336 650 338 650 l 500 458 l 547 505 l 357 664 b 353 668 356 664 353 667 b 357 673 353 670 356 673 l 606 645 l 606 710 l 357 690 b 354 692 356 690 354 691 b 357 695 354 694 356 695 l 547 851 "},"†":{"x_min":34.71875,"x_max":644.4375,"ha":681,"o":"m 384 960 l 293 960 l 318 567 l 34 585 l 34 508 l 318 526 l 293 -319 l 384 -319 l 359 526 l 644 508 l 644 585 l 359 567 l 384 960 "},"∕":{"x_min":-299,"x_max":486,"ha":188,"o":"m 486 960 l 431 960 l -299 -37 l -244 -37 l 486 960 "},"V":{"x_min":3,"x_max":821,"ha":825,"o":"m 821 947 l 747 947 l 414 145 l 78 947 l 3 947 l 401 -6 l 425 -6 l 821 947 "},"0":{"x_min":44.4375,"x_max":650,"ha":694,"o":"m 650 469 b 347 960 650 808 501 960 b 112 803 234 960 156 881 b 44 457 75 739 44 610 b 350 -12 44 150 188 -12 b 650 469 484 -12 650 126 m 580 478 b 344 55 580 293 515 55 b 115 475 198 55 115 245 b 348 896 115 676 188 896 b 580 478 530 896 580 626 "},"”":{"x_min":77.78125,"x_max":472.21875,"ha":550,"o":"m 168 947 l 77 947 l 77 815 l 106 815 b 77 700 108 751 90 721 l 77 653 b 168 867 168 718 168 829 l 168 947 m 472 947 l 380 947 l 380 815 l 409 815 b 380 700 411 751 393 721 l 380 653 b 472 867 472 718 472 829 l 472 947 "},"@":{"x_min":-1.53125,"x_max":1114.78125,"ha":1114,"o":"m 775 701 l 752 589 b 545 718 734 621 680 718 b 199 301 338 718 199 498 b 434 13 199 140 295 13 b 666 140 492 13 577 34 b 660 84 665 133 660 105 b 742 13 660 23 708 13 b 1092 468 874 13 1092 175 b 588 960 1092 646 991 960 b -1 362 187 960 -1 661 b 588 -220 -1 19 230 -220 b 960 -115 732 -220 863 -180 b 1114 47 1046 -56 1085 2 l 1045 47 b 589 -166 993 -16 877 -166 b 55 361 249 -166 55 68 b 584 906 55 654 251 906 b 1035 466 989 906 1035 576 b 768 76 1035 220 860 76 b 737 102 750 76 737 87 b 745 157 737 109 737 109 l 860 701 l 775 701 m 720 466 b 656 230 720 394 694 297 b 459 77 607 140 537 77 b 285 296 348 77 285 183 b 546 660 285 432 370 660 b 720 466 646 660 720 579 "},"i":{"x_min":97.21875,"x_max":162.5,"ha":260,"o":"m 162 947 l 97 947 l 97 833 l 162 833 l 162 947 m 162 624 l 97 624 l 97 0 l 162 0 l 162 624 "},"≤":{"x_min":156.9375,"x_max":761.109375,"ha":917,"o":"m 761 0 l 761 63 l 156 63 l 156 0 l 761 0 m 761 179 l 761 251 l 270 480 l 270 483 l 761 711 l 761 783 l 156 497 l 156 466 l 761 179 "},"]":{"x_min":9.71875,"x_max":323.609375,"ha":419,"o":"m 9 -307 l 323 -307 l 323 947 l 9 947 l 9 881 l 255 881 l 255 -241 l 9 -241 l 9 -307 "},"⅓":{"x_min":126.390625,"x_max":979.171875,"ha":1071,"o":"m 255 954 l 197 954 l 197 461 l 255 461 l 255 954 m 911 960 l 856 960 l 126 -37 l 180 -37 l 911 960 m 668 20 b 805 -6 711 1 758 -6 b 979 136 876 -6 979 33 b 879 261 979 201 943 241 b 973 372 962 290 973 344 b 798 500 973 441 905 500 b 672 465 726 500 688 475 l 672 418 b 795 457 697 433 737 457 b 916 369 851 457 916 430 b 777 280 916 343 895 280 l 777 237 b 922 134 850 239 922 216 b 800 34 922 72 872 34 b 668 65 733 34 687 55 l 668 20 "},"m":{"x_min":83.328125,"x_max":987.5,"ha":1071,"o":"m 148 624 l 83 624 l 83 0 l 148 0 l 148 437 b 336 572 176 482 230 572 b 465 505 391 572 437 544 b 501 319 486 475 501 441 l 501 0 l 568 0 l 568 425 b 759 572 622 544 715 572 b 891 493 815 572 866 537 b 920 329 913 451 920 405 l 920 0 l 987 0 l 987 334 b 947 540 987 423 986 469 b 770 636 915 598 845 636 b 552 486 690 636 620 600 b 351 636 537 526 494 636 b 148 514 231 636 176 555 l 148 624 "},"8":{"x_min":77.78125,"x_max":618.0625,"ha":694,"o":"m 477 493 b 537 544 495 505 515 519 b 598 708 576 589 598 647 b 345 960 598 846 484 960 b 95 707 197 960 95 831 b 219 493 95 675 100 573 b 150 440 197 480 175 466 b 77 252 105 390 77 323 b 350 -12 77 101 201 -12 b 618 258 501 -12 618 107 b 477 493 618 362 568 439 m 529 710 b 348 525 529 607 455 525 b 163 707 245 525 163 603 b 344 890 163 807 243 890 b 529 710 447 890 529 813 m 545 262 b 350 58 545 145 465 58 b 148 255 240 58 148 143 b 345 455 148 366 236 455 b 545 262 451 455 545 376 "},"R":{"x_min":111.109375,"x_max":829.171875,"ha":815,"o":"m 111 947 l 111 0 l 184 0 l 184 454 l 286 454 b 443 425 355 454 401 454 b 559 286 480 398 530 332 l 741 0 l 829 0 l 784 65 b 487 472 566 400 541 437 b 668 703 601 514 668 587 b 525 920 668 810 600 889 b 298 947 463 943 408 947 l 111 947 m 304 886 b 497 856 422 886 466 871 b 584 703 550 829 584 768 b 498 547 584 637 550 572 b 286 516 447 522 394 516 l 184 516 l 184 886 l 304 886 "},"o":{"x_min":50,"x_max":684.71875,"ha":735,"o":"m 368 636 b 50 311 169 636 50 486 b 368 -12 50 108 205 -12 b 684 311 530 -12 684 108 b 368 636 684 489 562 636 m 368 573 b 613 312 486 573 613 483 b 368 48 613 155 504 48 b 122 312 233 48 122 154 b 368 573 122 487 254 573 "},"5":{"x_min":56.9375,"x_max":591.671875,"ha":694,"o":"m 536 947 l 137 947 l 137 507 b 270 525 172 514 218 525 b 518 289 355 525 518 485 b 286 52 518 133 402 52 b 56 130 190 52 100 105 l 56 50 b 284 -12 93 32 176 -12 b 591 294 470 -12 591 129 b 276 587 591 414 526 587 b 201 582 244 587 222 585 l 201 883 l 536 883 l 536 947 "},"7":{"x_min":39.90625,"x_max":659,"ha":694,"o":"m 659 947 l 39 947 l 39 882 l 556 882 l 164 13 l 225 -12 l 659 947 "},"K":{"x_min":111.109375,"x_max":775,"ha":768,"o":"m 730 947 l 638 947 l 183 475 l 183 947 l 111 947 l 111 0 l 183 0 l 183 475 l 680 0 l 775 0 l 279 475 l 730 947 "},",":{"x_min":77.78125,"x_max":168.0625,"ha":246,"o":"m 168 132 l 77 132 l 77 0 l 106 0 b 77 -115 106 -63 88 -94 l 77 -162 b 168 51 168 -97 168 13 l 168 132 "},"d":{"x_min":50,"x_max":616.671875,"ha":701,"o":"m 616 947 l 550 947 l 550 586 b 365 636 506 608 450 636 b 50 312 190 636 50 505 b 365 -12 50 111 205 -12 b 550 48 459 -12 513 23 l 550 0 l 616 0 l 616 947 m 550 109 b 381 49 515 83 466 49 b 123 316 247 49 123 152 b 368 574 123 455 215 574 b 550 512 458 574 515 535 l 550 109 "},"E":{"x_min":111.109375,"x_max":638.890625,"ha":697,"o":"m 627 947 l 111 947 l 111 0 l 638 0 l 638 59 l 184 59 l 184 447 l 616 447 l 616 508 l 184 508 l 184 886 l 627 886 l 627 947 "},"Y":{"x_min":0,"x_max":811.109375,"ha":811,"o":"m 811 947 l 720 947 l 404 572 l 88 947 l 0 947 l 366 508 l 366 0 l 440 0 l 440 508 l 811 947 "},"\"":{"x_min":54.171875,"x_max":336.109375,"ha":390,"o":"m 73 604 l 134 604 l 154 785 l 154 947 l 54 947 l 54 785 l 73 604 m 255 604 l 316 604 l 336 785 l 336 947 l 236 947 l 236 785 l 255 604 "},"˙":{"x_min":170.828125,"x_max":291.671875,"ha":463,"o":"m 231 883 b 170 824 198 883 170 857 b 231 762 170 790 198 762 b 291 824 265 762 291 790 b 231 883 291 857 263 883 "},"‹":{"x_min":22,"x_max":368,"ha":390,"o":"m 368 9 l 106 321 l 368 632 l 284 632 l 22 321 l 284 9 l 368 9 "},"„":{"x_min":80.5625,"x_max":469.4375,"ha":550,"o":"m 170 132 l 80 132 l 80 0 l 108 0 b 80 -115 109 -63 91 -94 l 80 -162 b 170 51 170 -97 170 13 l 170 132 m 469 132 l 379 132 l 379 0 l 406 0 b 379 -115 408 -63 390 -94 l 379 -162 b 469 51 469 -97 469 13 l 469 132 "},"|":{"x_min":116.671875,"x_max":186.109375,"ha":304,"o":"m 116 -319 l 186 -319 l 186 960 l 116 960 l 116 -319 "},"b":{"x_min":86.109375,"x_max":655.5625,"ha":706,"o":"m 86 34 b 306 -12 127 18 202 -12 b 655 332 520 -12 655 126 b 377 636 655 540 512 636 b 152 535 268 636 201 578 l 152 947 l 86 947 l 86 34 m 152 460 b 369 578 190 501 261 578 b 584 325 508 578 584 448 b 306 51 584 170 472 51 b 152 82 275 51 223 55 l 152 460 "},"q":{"x_min":50,"x_max":619.4375,"ha":707,"o":"m 619 624 l 552 624 l 552 581 b 356 636 512 603 451 636 b 50 299 193 636 50 503 b 345 -13 50 88 201 -13 b 552 35 443 -13 512 17 l 552 -320 l 619 -320 l 619 624 m 552 102 b 362 48 513 81 455 48 b 122 295 166 48 122 208 b 370 574 122 426 205 574 b 552 515 459 574 516 539 l 552 102 "},"z":{"x_min":14.125,"x_max":534.953125,"ha":554,"o":"m 534 624 l 40 624 l 40 560 l 426 560 l 14 20 l 14 0 l 534 0 l 534 62 l 125 62 l 534 598 l 534 624 "},"™":{"x_min":137.5,"x_max":1123.609375,"ha":1303,"o":"m 137 947 l 137 888 l 318 888 l 318 393 l 387 393 l 387 888 l 568 888 l 568 947 l 137 947 m 631 947 l 631 393 l 694 393 l 694 888 l 850 393 l 897 393 l 1061 888 l 1061 393 l 1123 393 l 1123 947 l 1018 947 l 875 504 l 736 947 l 631 947 "},"~":{"x_min":94.4375,"x_max":822.21875,"ha":917,"o":"m 94 404 b 288 495 172 461 222 495 b 461 437 319 495 341 493 b 631 386 516 412 575 386 b 822 468 709 386 783 438 l 822 543 b 629 452 756 497 693 452 b 472 502 604 452 575 455 b 288 561 372 549 325 561 b 94 479 234 561 169 534 l 94 404 "},"[":{"x_min":95.828125,"x_max":409.71875,"ha":419,"o":"m 409 947 l 95 947 l 95 -307 l 409 -307 l 409 -241 l 163 -241 l 163 881 l 409 881 l 409 947 "},"L":{"x_min":111.109375,"x_max":652.78125,"ha":653,"o":"m 183 947 l 111 947 l 111 0 l 652 0 l 652 59 l 183 59 l 183 947 "}," ":{"x_min":0,"x_max":0,"ha":347},"∑":{"x_min":31.9375,"x_max":779.171875,"ha":818,"o":"m 779 -319 l 779 -259 l 133 -259 b 563 333 276 -61 420 136 b 162 913 430 526 295 718 l 743 913 l 743 972 l 66 972 l 66 938 b 487 332 206 736 347 533 b 31 -293 334 123 183 -84 l 31 -319 l 779 -319 "},"%":{"x_min":26.171875,"x_max":942.78125,"ha":969,"o":"m 249 900 b 413 736 338 900 413 828 b 249 572 413 646 340 572 b 85 736 159 572 85 646 b 249 900 85 828 159 900 m 895 960 l 827 960 l 63 -12 l 133 -12 l 895 960 m 719 373 b 883 209 809 373 883 301 b 719 45 883 119 809 45 b 555 209 628 45 555 119 b 719 373 555 301 630 373 m 249 960 b 26 737 127 960 26 861 b 249 514 26 612 127 514 b 471 737 371 514 471 614 b 249 960 471 860 373 960 m 719 433 b 496 211 596 433 496 334 b 719 -12 496 86 598 -12 b 942 211 842 -12 942 87 b 719 433 942 333 842 433 "},"P":{"x_min":111.109375,"x_max":679.171875,"ha":700,"o":"m 111 949 l 111 1 l 183 1 l 183 444 l 312 444 b 556 483 418 444 476 446 b 679 700 627 518 679 601 b 561 908 679 796 633 868 b 302 949 494 946 436 949 l 111 949 m 305 889 b 527 846 438 889 487 874 b 597 697 572 814 597 756 b 529 547 597 639 572 575 b 316 505 472 511 409 505 l 183 505 l 183 889 l 305 889 "},"∏":{"x_min":119.4375,"x_max":808.328125,"ha":926,"o":"m 808 -319 l 808 972 l 119 972 l 119 -319 l 188 -319 l 188 911 l 738 911 l 738 -319 l 808 -319 "},"_":{"x_min":-8.328125,"x_max":702.78125,"ha":694,"o":"m -8 -104 l -8 -173 l 702 -173 l 702 -104 l -8 -104 "},"+":{"x_min":94.4375,"x_max":822.21875,"ha":917,"o":"m 426 109 l 490 109 l 490 441 l 822 441 l 822 505 l 490 505 l 490 838 l 426 838 l 426 505 l 94 505 l 94 441 l 426 441 l 426 109 "},"‚":{"x_min":77.78125,"x_max":168.0625,"ha":246,"o":"m 168 133 l 77 133 l 77 0 l 106 0 b 77 -113 106 -63 88 -94 l 77 -162 b 168 51 168 -97 168 13 l 168 133 "},"⅞":{"x_min":-9.71875,"x_max":998.609375,"ha":1042,"o":"m 919 257 b 987 366 975 290 987 336 b 830 500 987 439 916 500 b 675 366 737 500 675 430 b 744 257 675 334 687 291 b 663 133 675 219 663 161 b 831 -6 663 54 741 -6 b 998 136 925 -6 998 55 b 919 257 998 214 936 247 m 930 366 b 831 276 930 315 888 276 b 731 364 781 276 731 309 b 829 455 731 414 772 455 b 930 366 879 455 930 423 m 940 138 b 833 38 940 77 894 38 b 722 134 776 38 722 76 b 830 233 722 190 770 233 b 940 138 881 233 940 200 m 373 960 l -9 960 l -9 914 l 293 914 l 62 473 l 112 454 l 373 960 m 897 960 l 844 960 l 112 -37 l 166 -37 l 897 960 "},"'":{"x_min":101.390625,"x_max":201.390625,"ha":304,"o":"m 120 604 l 183 604 l 201 785 l 201 947 l 101 947 l 101 785 l 120 604 "},"˛":{"x_min":136.109375,"x_max":322.21875,"ha":463,"o":"m 322 -176 b 206 -99 206 -187 206 -109 b 280 14 206 -57 227 -37 l 237 14 b 136 -121 169 -20 136 -67 b 265 -235 136 -181 180 -235 b 322 -228 288 -235 305 -231 l 322 -176 "},"T":{"x_min":5.5625,"x_max":790.28125,"ha":796,"o":"m 790 947 l 5 947 l 5 886 l 361 886 l 361 0 l 436 0 l 436 886 l 790 886 l 790 947 "},"℮":{"x_min":55.5625,"x_max":834.71875,"ha":885,"o":"m 834 396 b 441 808 826 625 687 808 b 55 396 201 808 55 625 b 440 -16 55 168 204 -16 b 781 184 605 -16 700 61 b 731 215 765 194 748 204 b 440 34 665 101 575 34 b 225 123 355 34 283 65 l 225 396 l 834 396 m 659 447 l 225 447 l 225 668 b 440 757 281 728 355 757 b 659 667 523 757 601 724 l 659 447 "},"j":{"x_min":-41.671875,"x_max":161.109375,"ha":254,"o":"m 161 947 l 94 947 l 94 833 l 161 833 l 161 947 m 161 624 l 94 624 l 94 -20 b -41 -264 94 -148 94 -251 l -22 -319 b 161 -25 145 -307 161 -163 l 161 624 "},"1":{"x_min":311.109375,"x_max":383.328125,"ha":694,"o":"m 383 947 l 311 947 l 311 0 l 383 0 l 383 947 "},"›":{"x_min":22,"x_max":368,"ha":390,"o":"m 22 632 l 283 321 l 22 9 l 105 9 l 368 321 l 105 632 l 22 632 "},"ℓ":{"x_min":90.28125,"x_max":527.78125,"ha":644,"o":"m 527 77 b 493 118 516 91 504 104 b 369 43 459 80 419 43 b 284 165 323 43 284 76 l 284 447 b 326 504 295 461 315 487 b 477 878 412 626 477 746 b 359 1011 477 936 444 1011 b 215 792 270 1011 215 940 l 215 454 b 90 305 173 404 131 355 b 131 266 102 291 118 279 b 215 362 159 298 187 330 l 215 175 b 262 20 215 104 231 52 b 359 -16 284 -2 318 -16 b 527 77 438 -16 494 37 m 411 872 b 309 582 411 779 370 679 b 284 546 302 571 293 557 l 284 786 b 358 951 284 918 316 951 b 411 872 398 951 411 908 "},"<":{"x_min":94.03125,"x_max":821.796875,"ha":917,"o":"m 94 444 l 821 139 l 821 207 l 177 473 l 821 741 l 821 810 l 94 501 l 94 444 "},"t":{"x_min":-34.71875,"x_max":406.9375,"ha":424,"o":"m 200 831 l 179 831 l 133 772 l 133 624 l -34 624 l -34 568 l 133 568 l 133 186 b 147 62 133 119 133 94 b 277 -12 168 16 223 -12 b 406 19 308 -12 350 -6 l 406 83 b 294 54 369 66 338 54 b 212 94 251 54 227 68 b 200 186 200 115 200 127 l 200 568 l 375 568 l 375 624 l 200 624 l 200 831 "},"W":{"x_min":-1,"x_max":1434,"ha":1432,"o":"m 1434 947 l 1360 947 l 1043 161 l 728 947 l 704 947 l 387 161 l 74 947 l -1 947 l 378 -6 l 400 -6 l 715 790 l 1033 -6 l 1056 -6 l 1434 947 "},">":{"x_min":94.203125,"x_max":821.96875,"ha":917,"o":"m 821 502 l 94 810 l 94 740 l 738 475 l 94 207 l 94 139 l 821 447 l 821 502 "},"v":{"x_min":0,"x_max":593,"ha":593,"o":"m 593 624 l 527 624 l 302 98 l 68 624 l 0 624 l 283 -12 l 324 -12 l 593 624 "},"&":{"x_min":36.40625,"x_max":846.125,"ha":854,"o":"m 653 204 b 783 472 711 286 751 378 l 705 472 b 601 258 665 351 622 287 l 386 482 b 585 733 439 508 585 582 b 378 929 585 836 507 929 b 153 722 240 929 153 828 b 271 501 153 635 203 579 b 36 212 65 412 36 280 b 294 -12 36 87 148 -12 b 610 148 464 -12 568 102 l 753 0 l 846 0 l 653 204 m 339 533 b 223 726 241 624 223 687 b 373 863 223 799 285 863 b 516 728 466 863 516 793 b 339 533 516 671 480 592 m 560 200 b 303 54 468 88 380 54 b 116 227 183 54 116 134 b 319 450 116 357 246 418 l 560 200 "},"I":{"x_min":111.109375,"x_max":186.109375,"ha":297,"o":"m 186 947 l 111 947 l 111 0 l 186 0 l 186 947 "},"˝":{"x_min":97,"x_max":546,"ha":463,"o":"m 358 940 l 234 940 l 97 725 l 140 725 l 358 940 m 546 940 l 420 940 l 281 725 l 323 725 l 546 940 "},"G":{"x_min":52.78125,"x_max":904.171875,"ha":974,"o":"m 886 879 b 561 960 809 913 704 960 b 52 476 261 960 52 747 b 547 -12 52 177 302 -12 b 904 68 669 -12 791 16 l 904 432 l 630 432 l 630 369 l 830 369 l 830 113 b 544 54 738 77 643 54 b 134 472 340 54 134 212 b 547 890 134 739 340 890 b 886 796 666 890 784 860 l 886 879 "},"ˉ":{"x_min":45.828125,"x_max":416.671875,"ha":463,"o":"m 416 865 l 45 865 l 45 794 l 416 794 l 416 865 "},"`":{"x_min":-3,"x_max":255,"ha":463,"o":"m -3 940 l 207 724 l 255 724 l 109 940 l -3 940 "},"r":{"x_min":87.5,"x_max":518.0625,"ha":518,"o":"m 518 562 b 376 636 486 590 434 636 b 154 460 272 636 180 500 l 154 624 l 87 624 l 87 0 l 154 0 l 154 391 b 355 568 208 480 283 568 b 479 500 401 568 447 528 l 518 562 "},"x":{"x_min":8,"x_max":669,"ha":665,"o":"m 648 624 l 570 624 l 332 365 l 94 624 l 8 624 l 292 319 l 8 0 l 82 0 l 332 275 l 584 0 l 669 0 l 374 319 l 648 624 "},"∞":{"x_min":73.765625,"x_max":929.3125,"ha":1004,"o":"m 929 408 b 726 608 929 530 841 608 b 502 461 618 608 544 525 l 500 461 b 272 608 462 523 390 608 b 73 401 147 608 73 519 b 277 201 73 290 148 201 b 498 350 369 201 448 271 l 501 350 b 733 201 545 275 623 201 b 929 408 851 201 929 294 m 861 407 b 725 261 861 327 818 261 b 532 405 654 261 584 312 b 726 548 586 491 644 548 b 861 407 816 548 861 485 m 470 405 b 276 261 423 329 358 261 b 141 401 198 261 141 316 b 276 548 141 482 180 548 b 470 405 347 548 425 487 "},"h":{"x_min":87.5,"x_max":593.0625,"ha":681,"o":"m 152 947 l 87 947 l 87 0 l 152 0 l 152 430 b 213 519 170 468 184 494 b 350 571 241 544 288 571 b 498 483 429 571 476 528 b 525 327 520 440 525 401 l 525 0 l 593 0 l 593 322 b 556 530 593 415 593 460 b 359 636 519 604 434 636 b 152 510 230 636 176 548 l 152 947 "},".":{"x_min":77.78125,"x_max":168.0625,"ha":246,"o":"m 168 134 l 77 134 l 77 0 l 168 0 l 168 134 "},";":{"x_min":77.78125,"x_max":168.0625,"ha":246,"o":"m 168 624 l 77 624 l 77 490 l 168 490 l 168 624 m 168 132 l 77 132 l 77 0 l 106 0 b 77 -115 106 -63 88 -94 l 77 -162 b 168 51 168 -97 168 13 l 168 132 "},"f":{"x_min":15.28125,"x_max":461.109375,"ha":406,"o":"m 461 933 b 347 960 430 946 397 960 b 130 701 308 960 130 949 l 130 624 l 15 624 l 15 568 l 130 568 l 130 0 l 197 0 l 197 568 l 318 568 l 318 624 l 197 624 l 197 701 b 350 893 197 796 219 893 b 461 871 391 893 422 883 l 461 933 "},"“":{"x_min":77.78125,"x_max":472.21875,"ha":550,"o":"m 381 652 l 472 652 l 472 785 l 443 785 b 472 899 441 848 459 880 l 472 947 b 381 732 381 883 381 770 l 381 652 m 77 652 l 168 652 l 168 785 l 140 785 b 168 899 138 848 156 880 l 168 947 b 77 732 77 883 77 770 l 77 652 "},"A":{"x_min":6,"x_max":921.078125,"ha":926,"o":"m 483 954 l 440 954 l 6 0 l 82 0 l 232 327 l 694 327 l 844 0 l 921 0 l 483 954 m 665 390 l 258 390 l 462 835 l 665 390 "},"6":{"x_min":84.71875,"x_max":643.0625,"ha":694,"o":"m 479 960 b 252 751 363 876 275 779 b 84 320 148 630 84 479 b 373 -12 84 101 211 -12 b 643 254 527 -12 643 95 b 377 512 643 426 501 512 b 168 438 302 512 229 483 b 520 909 206 672 455 865 l 479 960 m 155 356 b 368 445 190 387 259 445 b 572 244 518 445 572 319 b 369 53 572 145 494 53 b 152 301 190 53 152 226 b 155 356 152 320 155 348 "},"O":{"x_min":52.78125,"x_max":1056.953125,"ha":1110,"o":"m 1056 478 b 555 960 1056 733 856 960 b 52 475 251 960 52 732 b 554 -12 52 202 270 -12 b 1056 478 829 -12 1056 193 m 975 478 b 552 56 975 219 770 56 b 136 472 309 56 136 248 b 556 889 136 704 315 889 b 975 478 804 889 975 694 "},"n":{"x_min":86.109375,"x_max":593.0625,"ha":681,"o":"m 152 624 l 86 624 l 86 0 l 152 0 l 152 437 b 197 504 163 458 175 479 b 348 572 236 543 290 572 b 487 501 406 572 458 543 b 526 332 511 468 526 428 l 526 0 l 593 0 l 593 337 b 543 548 593 418 586 485 b 356 636 504 605 427 636 b 152 515 236 636 181 555 l 152 624 "},"‘":{"x_min":77.78125,"x_max":168.0625,"ha":246,"o":"m 77 652 l 168 652 l 168 785 l 140 785 b 168 899 138 848 156 880 l 168 947 b 77 732 77 883 77 770 l 77 652 "},"3":{"x_min":61.109375,"x_max":562.5,"ha":694,"o":"m 61 34 b 280 -12 141 -4 237 -12 b 562 259 390 -12 562 56 b 380 503 562 441 429 486 b 551 721 423 518 551 567 b 269 960 551 844 452 960 b 69 899 154 960 94 917 l 69 831 b 265 895 127 869 195 895 b 483 717 375 895 483 829 b 247 532 483 637 419 535 l 247 465 b 494 254 450 466 494 336 b 272 51 494 130 402 51 b 61 100 200 51 127 68 l 61 34 "},"9":{"x_min":44.9375,"x_max":603.265625,"ha":694,"o":"m 200 -13 b 603 627 326 80 603 285 b 311 959 603 845 481 959 b 44 695 142 959 44 834 b 308 437 44 522 187 437 b 517 506 404 437 479 484 b 161 38 478 281 282 131 l 200 -13 m 529 591 b 310 503 468 537 392 503 b 117 699 197 503 117 592 b 315 897 117 804 194 897 b 512 761 418 897 486 837 b 529 591 533 697 532 647 "},"l":{"x_min":97.21875,"x_max":163.890625,"ha":261,"o":"m 163 947 l 97 947 l 97 0 l 163 0 l 163 947 "},"⅛":{"x_min":134.71875,"x_max":1012.5,"ha":1071,"o":"m 931 257 b 1001 366 988 290 1001 336 b 843 500 1001 439 929 500 b 688 366 751 500 688 430 b 758 257 688 334 700 291 b 676 133 687 219 676 161 b 845 -6 676 54 755 -6 b 1012 136 938 -6 1012 55 b 931 257 1012 214 948 247 m 944 366 b 845 276 944 315 902 276 b 744 364 794 276 744 309 b 843 455 744 414 786 455 b 944 366 891 455 944 423 m 954 138 b 847 38 954 77 906 38 b 736 134 790 38 736 76 b 843 233 736 190 783 233 b 954 138 894 233 954 200 m 255 954 l 197 954 l 197 461 l 255 461 l 255 954 m 919 960 l 865 960 l 134 -37 l 188 -37 l 919 960 "},"∂":{"x_min":62.0625,"x_max":675.953125,"ha":746,"o":"m 675 701 b 425 1007 675 906 580 1007 b 275 967 373 1007 306 986 b 298 913 284 950 291 931 b 419 947 335 935 381 947 b 606 701 535 947 606 874 b 598 592 606 657 602 622 l 595 592 b 417 696 569 646 512 696 b 62 230 230 696 62 487 b 273 -13 62 82 146 -13 b 639 425 478 -13 592 230 b 675 701 664 528 675 628 m 585 507 b 277 45 528 215 414 45 b 131 229 192 45 131 112 b 414 636 131 444 262 636 b 585 507 509 636 566 582 "},"4":{"x_min":19.4375,"x_max":654.171875,"ha":694,"o":"m 522 960 l 495 960 l 19 389 l 19 365 l 451 365 l 451 0 l 522 0 l 522 365 l 654 365 l 654 422 l 522 422 l 522 960 m 451 422 l 118 422 l 451 822 l 451 422 "},"p":{"x_min":87.5,"x_max":650,"ha":700,"o":"m 154 623 l 87 623 l 87 -319 l 154 -319 l 154 34 b 340 -12 191 16 252 -12 b 650 313 486 -12 650 102 b 344 636 650 502 516 636 b 154 589 252 636 193 607 l 154 623 m 154 525 b 318 572 195 547 243 572 b 576 308 452 572 576 477 b 327 49 576 169 490 49 b 154 99 241 49 188 80 l 154 525 "},"⅔":{"x_min":31.609375,"x_max":989.953125,"ha":1085,"o":"m 937 960 l 883 960 l 152 -37 l 206 -37 l 937 960 m 155 504 b 356 818 253 607 356 712 b 184 960 356 889 288 960 b 45 913 110 960 63 925 l 45 856 b 180 918 92 893 127 918 b 298 819 237 918 298 882 b 31 461 298 687 89 508 l 410 461 l 410 504 l 155 504 m 677 20 b 814 -6 721 1 767 -6 b 989 136 887 -6 989 33 b 889 261 989 201 952 241 b 983 372 971 290 983 344 b 809 500 983 441 916 500 b 683 465 737 500 698 475 l 683 418 b 806 457 708 433 748 457 b 926 369 860 457 926 430 b 787 280 926 343 906 280 l 787 237 b 933 134 860 239 933 216 b 809 34 933 72 881 34 b 677 65 744 34 698 55 l 677 20 "},"‡":{"x_min":36.109375,"x_max":629.171875,"ha":665,"o":"m 377 960 l 288 960 l 315 608 l 36 624 l 36 551 l 315 571 l 295 319 l 315 68 l 36 86 l 36 11 l 315 31 l 288 -319 l 377 -319 l 352 31 l 629 11 l 629 86 l 352 68 l 372 319 l 352 571 l 629 551 l 629 624 l 352 608 l 377 960 "},"√":{"x_min":52.78125,"x_max":656.953125,"ha":640,"o":"m 656 1011 l 593 1011 b 365 98 516 707 441 403 b 188 565 306 254 247 410 b 52 495 144 542 98 518 b 77 443 62 478 69 460 b 150 482 102 457 126 469 b 338 -16 213 317 275 150 l 397 -16 b 656 1011 484 326 569 668 "}},"cssFontWeight":"normal","ascender":948,"underlinePosition":-75,"cssFontStyle":"normal","boundingBox":{"yMin":-320.265625,"xMin":-299,"yMax":1039.546875,"xMax":1438.671875},"resolution":1000,"original_font_information":{"postscript_name":"GillSansMTPro-Light","version_string":"Version 1.038;PS 001.001;Core 1.0.38;makeotf.lib1.6.5960","vendor_url":"http://www.monotypeimaging.com.","full_font_name":"GillSansMTPro-Light","font_family_name":"Gill Sans MT Pro Light","copyright":"Font software Copyright 1990, 1991, 1998 Adobe Systems Incorporated. Typeface designs Copyright The Monotype Corporation. All rights reserved.","description":"","trademark":"\"Gill Sans\" is a registered trademark of The Monotype Corporation in the United States and/or other countries. \"MT\" is a trademark of Monotype Imaging, Inc. Registered in U.S. Patent and Trademark Office and may be registered in certain other jurisdictions.","designer":"","designer_url":"http://www.monotypeimaging.com/html/designer/des_index.html.","unique_font_identifier":"1.038;ADBE;GillSansMTPro-Light","license_url":"http://www.monotypeimaging.com/html/type/license.html.","license_description":"","manufacturer_name":"","font_sub_family_name":"Regular"},"descender":-442,"familyName":"Gill Sans MT Pro","lineHeight":1667,"underlineThickness":50});
(function(E,A){function U(){return false}function ba(){return true}function ja(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function Ga(a){var b,d,e=[],f=[],h,k,l,n,s,v,B,D;k=c.data(this,this.nodeType?"events":"__events__");if(typeof k==="function")k=k.events;if(!(a.liveFired===this||!k||!k.live||a.button&&a.type==="click")){if(a.namespace)D=RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");a.liveFired=this;var H=k.live.slice(0);for(n=0;n<H.length;n++){k=H[n];k.origType.replace(X,
"")===a.type?f.push(k.selector):H.splice(n--,1)}f=c(a.target).closest(f,a.currentTarget);s=0;for(v=f.length;s<v;s++){B=f[s];for(n=0;n<H.length;n++){k=H[n];if(B.selector===k.selector&&(!D||D.test(k.namespace))){l=B.elem;h=null;if(k.preType==="mouseenter"||k.preType==="mouseleave"){a.type=k.preType;h=c(a.relatedTarget).closest(k.selector)[0]}if(!h||h!==l)e.push({elem:l,handleObj:k,level:B.level})}}}s=0;for(v=e.length;s<v;s++){f=e[s];if(d&&f.level>d)break;a.currentTarget=f.elem;a.data=f.handleObj.data;
a.handleObj=f.handleObj;D=f.handleObj.origHandler.apply(f.elem,arguments);if(D===false||a.isPropagationStopped()){d=f.level;if(D===false)b=false}}return b}}function Y(a,b){return(a&&a!=="*"?a+".":"")+b.replace(Ha,"`").replace(Ia,"&")}function ka(a,b,d){if(c.isFunction(b))return c.grep(a,function(f,h){return!!b.call(f,h,f)===d});else if(b.nodeType)return c.grep(a,function(f){return f===b===d});else if(typeof b==="string"){var e=c.grep(a,function(f){return f.nodeType===1});if(Ja.test(b))return c.filter(b,
e,!d);else b=c.filter(b,e)}return c.grep(a,function(f){return c.inArray(f,b)>=0===d})}function la(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var e=c.data(a[d++]),f=c.data(this,e);if(e=e&&e.events){delete f.handle;f.events={};for(var h in e)for(var k in e[h])c.event.add(this,h,e[h][k],e[h][k].data)}}})}function Ka(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}
function ma(a,b,d){var e=b==="width"?a.offsetWidth:a.offsetHeight;if(d==="border")return e;c.each(b==="width"?La:Ma,function(){d||(e-=parseFloat(c.css(a,"padding"+this))||0);if(d==="margin")e+=parseFloat(c.css(a,"margin"+this))||0;else e-=parseFloat(c.css(a,"border"+this+"Width"))||0});return e}function ca(a,b,d,e){if(c.isArray(b)&&b.length)c.each(b,function(f,h){d||Na.test(a)?e(a,h):ca(a+"["+(typeof h==="object"||c.isArray(h)?f:"")+"]",h,d,e)});else if(!d&&b!=null&&typeof b==="object")c.isEmptyObject(b)?
e(a,""):c.each(b,function(f,h){ca(a+"["+f+"]",h,d,e)});else e(a,b)}function S(a,b){var d={};c.each(na.concat.apply([],na.slice(0,b)),function(){d[this]=a});return d}function oa(a){if(!da[a]){var b=c("<"+a+">").appendTo("body"),d=b.css("display");b.remove();if(d==="none"||d==="")d="block";da[a]=d}return da[a]}function ea(a){return c.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var u=E.document,c=function(){function a(){if(!b.isReady){try{u.documentElement.doScroll("left")}catch(i){setTimeout(a,
1);return}b.ready()}}var b=function(i,r){return new b.fn.init(i,r)},d=E.jQuery,e=E.$,f,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,k=/\S/,l=/^\s+/,n=/\s+$/,s=/\W/,v=/\d/,B=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,D=/^[\],:{}\s]*$/,H=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,w=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,G=/(?:^|:|,)(?:\s*\[)+/g,M=/(webkit)[ \/]([\w.]+)/,g=/(opera)(?:.*version)?[ \/]([\w.]+)/,j=/(msie) ([\w.]+)/,o=/(mozilla)(?:.*? rv:([\w.]+))?/,m=navigator.userAgent,p=false,
q=[],t,x=Object.prototype.toString,C=Object.prototype.hasOwnProperty,P=Array.prototype.push,N=Array.prototype.slice,R=String.prototype.trim,Q=Array.prototype.indexOf,L={};b.fn=b.prototype={init:function(i,r){var y,z,F;if(!i)return this;if(i.nodeType){this.context=this[0]=i;this.length=1;return this}if(i==="body"&&!r&&u.body){this.context=u;this[0]=u.body;this.selector="body";this.length=1;return this}if(typeof i==="string")if((y=h.exec(i))&&(y[1]||!r))if(y[1]){F=r?r.ownerDocument||r:u;if(z=B.exec(i))if(b.isPlainObject(r)){i=
[u.createElement(z[1])];b.fn.attr.call(i,r,true)}else i=[F.createElement(z[1])];else{z=b.buildFragment([y[1]],[F]);i=(z.cacheable?z.fragment.cloneNode(true):z.fragment).childNodes}return b.merge(this,i)}else{if((z=u.getElementById(y[2]))&&z.parentNode){if(z.id!==y[2])return f.find(i);this.length=1;this[0]=z}this.context=u;this.selector=i;return this}else if(!r&&!s.test(i)){this.selector=i;this.context=u;i=u.getElementsByTagName(i);return b.merge(this,i)}else return!r||r.jquery?(r||f).find(i):b(r).find(i);
else if(b.isFunction(i))return f.ready(i);if(i.selector!==A){this.selector=i.selector;this.context=i.context}return b.makeArray(i,this)},selector:"",jquery:"1.4.3",length:0,size:function(){return this.length},toArray:function(){return N.call(this,0)},get:function(i){return i==null?this.toArray():i<0?this.slice(i)[0]:this[i]},pushStack:function(i,r,y){var z=b();b.isArray(i)?P.apply(z,i):b.merge(z,i);z.prevObject=this;z.context=this.context;if(r==="find")z.selector=this.selector+(this.selector?" ":
"")+y;else if(r)z.selector=this.selector+"."+r+"("+y+")";return z},each:function(i,r){return b.each(this,i,r)},ready:function(i){b.bindReady();if(b.isReady)i.call(u,b);else q&&q.push(i);return this},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(N.apply(this,arguments),"slice",N.call(arguments).join(","))},map:function(i){return this.pushStack(b.map(this,function(r,y){return i.call(r,
y,r)}))},end:function(){return this.prevObject||b(null)},push:P,sort:[].sort,splice:[].splice};b.fn.init.prototype=b.fn;b.extend=b.fn.extend=function(){var i=arguments[0]||{},r=1,y=arguments.length,z=false,F,I,K,J,fa;if(typeof i==="boolean"){z=i;i=arguments[1]||{};r=2}if(typeof i!=="object"&&!b.isFunction(i))i={};if(y===r){i=this;--r}for(;r<y;r++)if((F=arguments[r])!=null)for(I in F){K=i[I];J=F[I];if(i!==J)if(z&&J&&(b.isPlainObject(J)||(fa=b.isArray(J)))){if(fa){fa=false;clone=K&&b.isArray(K)?K:[]}else clone=
K&&b.isPlainObject(K)?K:{};i[I]=b.extend(z,clone,J)}else if(J!==A)i[I]=J}return i};b.extend({noConflict:function(i){E.$=e;if(i)E.jQuery=d;return b},isReady:false,readyWait:1,ready:function(i){i===true&&b.readyWait--;if(!b.readyWait||i!==true&&!b.isReady){if(!u.body)return setTimeout(b.ready,1);b.isReady=true;if(!(i!==true&&--b.readyWait>0)){if(q){for(var r=0;i=q[r++];)i.call(u,b);q=null}b.fn.triggerHandler&&b(u).triggerHandler("ready")}}},bindReady:function(){if(!p){p=true;if(u.readyState==="complete")return setTimeout(b.ready,
1);if(u.addEventListener){u.addEventListener("DOMContentLoaded",t,false);E.addEventListener("load",b.ready,false)}else if(u.attachEvent){u.attachEvent("onreadystatechange",t);E.attachEvent("onload",b.ready);var i=false;try{i=E.frameElement==null}catch(r){}u.documentElement.doScroll&&i&&a()}}},isFunction:function(i){return b.type(i)==="function"},isArray:Array.isArray||function(i){return b.type(i)==="array"},isWindow:function(i){return i&&typeof i==="object"&&"setInterval"in i},isNaN:function(i){return i==
null||!v.test(i)||isNaN(i)},type:function(i){return i==null?String(i):L[x.call(i)]||"object"},isPlainObject:function(i){if(!i||b.type(i)!=="object"||i.nodeType||b.isWindow(i))return false;if(i.constructor&&!C.call(i,"constructor")&&!C.call(i.constructor.prototype,"isPrototypeOf"))return false;for(var r in i);return r===A||C.call(i,r)},isEmptyObject:function(i){for(var r in i)return false;return true},error:function(i){throw i;},parseJSON:function(i){if(typeof i!=="string"||!i)return null;i=b.trim(i);
if(D.test(i.replace(H,"@").replace(w,"]").replace(G,"")))return E.JSON&&E.JSON.parse?E.JSON.parse(i):(new Function("return "+i))();else b.error("Invalid JSON: "+i)},noop:function(){},globalEval:function(i){if(i&&k.test(i)){var r=u.getElementsByTagName("head")[0]||u.documentElement,y=u.createElement("script");y.type="text/javascript";if(b.support.scriptEval)y.appendChild(u.createTextNode(i));else y.text=i;r.insertBefore(y,r.firstChild);r.removeChild(y)}},nodeName:function(i,r){return i.nodeName&&i.nodeName.toUpperCase()===
r.toUpperCase()},each:function(i,r,y){var z,F=0,I=i.length,K=I===A||b.isFunction(i);if(y)if(K)for(z in i){if(r.apply(i[z],y)===false)break}else for(;F<I;){if(r.apply(i[F++],y)===false)break}else if(K)for(z in i){if(r.call(i[z],z,i[z])===false)break}else for(y=i[0];F<I&&r.call(y,F,y)!==false;y=i[++F]);return i},trim:R?function(i){return i==null?"":R.call(i)}:function(i){return i==null?"":i.toString().replace(l,"").replace(n,"")},makeArray:function(i,r){var y=r||[];if(i!=null){var z=b.type(i);i.length==
null||z==="string"||z==="function"||z==="regexp"||b.isWindow(i)?P.call(y,i):b.merge(y,i)}return y},inArray:function(i,r){if(r.indexOf)return r.indexOf(i);for(var y=0,z=r.length;y<z;y++)if(r[y]===i)return y;return-1},merge:function(i,r){var y=i.length,z=0;if(typeof r.length==="number")for(var F=r.length;z<F;z++)i[y++]=r[z];else for(;r[z]!==A;)i[y++]=r[z++];i.length=y;return i},grep:function(i,r,y){var z=[],F;y=!!y;for(var I=0,K=i.length;I<K;I++){F=!!r(i[I],I);y!==F&&z.push(i[I])}return z},map:function(i,
r,y){for(var z=[],F,I=0,K=i.length;I<K;I++){F=r(i[I],I,y);if(F!=null)z[z.length]=F}return z.concat.apply([],z)},guid:1,proxy:function(i,r,y){if(arguments.length===2)if(typeof r==="string"){y=i;i=y[r];r=A}else if(r&&!b.isFunction(r)){y=r;r=A}if(!r&&i)r=function(){return i.apply(y||this,arguments)};if(i)r.guid=i.guid=i.guid||r.guid||b.guid++;return r},access:function(i,r,y,z,F,I){var K=i.length;if(typeof r==="object"){for(var J in r)b.access(i,J,r[J],z,F,y);return i}if(y!==A){z=!I&&z&&b.isFunction(y);
for(J=0;J<K;J++)F(i[J],r,z?y.call(i[J],J,F(i[J],r)):y,I);return i}return K?F(i[0],r):A},now:function(){return(new Date).getTime()},uaMatch:function(i){i=i.toLowerCase();i=M.exec(i)||g.exec(i)||j.exec(i)||i.indexOf("compatible")<0&&o.exec(i)||[];return{browser:i[1]||"",version:i[2]||"0"}},browser:{}});b.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(i,r){L["[object "+r+"]"]=r.toLowerCase()});m=b.uaMatch(m);if(m.browser){b.browser[m.browser]=true;b.browser.version=
m.version}if(b.browser.webkit)b.browser.safari=true;if(Q)b.inArray=function(i,r){return Q.call(r,i)};if(!/\s/.test("\u00a0")){l=/^[\s\xA0]+/;n=/[\s\xA0]+$/}f=b(u);if(u.addEventListener)t=function(){u.removeEventListener("DOMContentLoaded",t,false);b.ready()};else if(u.attachEvent)t=function(){if(u.readyState==="complete"){u.detachEvent("onreadystatechange",t);b.ready()}};return E.jQuery=E.$=b}();(function(){c.support={};var a=u.documentElement,b=u.createElement("script"),d=u.createElement("div"),
e="script"+c.now();d.style.display="none";d.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var f=d.getElementsByTagName("*"),h=d.getElementsByTagName("a")[0],k=u.createElement("select"),l=k.appendChild(u.createElement("option"));if(!(!f||!f.length||!h)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(h.getAttribute("style")),
hrefNormalized:h.getAttribute("href")==="/a",opacity:/^0.55$/.test(h.style.opacity),cssFloat:!!h.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:l.selected,optDisabled:false,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableHiddenOffsets:true};k.disabled=true;c.support.optDisabled=!l.disabled;b.type="text/javascript";try{b.appendChild(u.createTextNode("window."+e+"=1;"))}catch(n){}a.insertBefore(b,
a.firstChild);if(E[e]){c.support.scriptEval=true;delete E[e]}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function s(){c.support.noCloneEvent=false;d.detachEvent("onclick",s)});d.cloneNode(true).fireEvent("onclick")}d=u.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=u.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var s=u.createElement("div");
s.style.width=s.style.paddingLeft="1px";u.body.appendChild(s);c.boxModel=c.support.boxModel=s.offsetWidth===2;if("zoom"in s.style){s.style.display="inline";s.style.zoom=1;c.support.inlineBlockNeedsLayout=s.offsetWidth===2;s.style.display="";s.innerHTML="<div style='width:4px;'></div>";c.support.shrinkWrapBlocks=s.offsetWidth!==2}s.innerHTML="<table><tr><td style='padding:0;display:none'></td><td>t</td></tr></table>";var v=s.getElementsByTagName("td");c.support.reliableHiddenOffsets=v[0].offsetHeight===
0;v[0].style.display="";v[1].style.display="none";c.support.reliableHiddenOffsets=c.support.reliableHiddenOffsets&&v[0].offsetHeight===0;s.innerHTML="";u.body.removeChild(s).style.display="none"});a=function(s){var v=u.createElement("div");s="on"+s;var B=s in v;if(!B){v.setAttribute(s,"return;");B=typeof v[s]==="function"}return B};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=f=h=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",
cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var pa={},Oa=/^(?:\{.*\}|\[.*\])$/;c.extend({cache:{},uuid:0,expando:"jQuery"+c.now(),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},data:function(a,b,d){if(c.acceptData(a)){a=a==E?pa:a;var e=a.nodeType,f=e?a[c.expando]:null,h=c.cache;if(!(e&&!f&&typeof b==="string"&&d===A)){if(e)f||(a[c.expando]=f=++c.uuid);else h=a;if(typeof b==="object")if(e)h[f]=
c.extend(h[f],b);else c.extend(h,b);else if(e&&!h[f])h[f]={};a=e?h[f]:h;if(d!==A)a[b]=d;return typeof b==="string"?a[b]:a}}},removeData:function(a,b){if(c.acceptData(a)){a=a==E?pa:a;var d=a.nodeType,e=d?a[c.expando]:a,f=c.cache,h=d?f[e]:e;if(b){if(h){delete h[b];d&&c.isEmptyObject(h)&&c.removeData(a)}}else if(d&&c.support.deleteExpando)delete a[c.expando];else if(a.removeAttribute)a.removeAttribute(c.expando);else if(d)delete f[e];else for(var k in a)delete a[k]}},acceptData:function(a){if(a.nodeName){var b=
c.noData[a.nodeName.toLowerCase()];if(b)return!(b===true||a.getAttribute("classid")!==b)}return true}});c.fn.extend({data:function(a,b){if(typeof a==="undefined")return this.length?c.data(this[0]):null;else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===A){var e=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(e===A&&this.length){e=c.data(this[0],a);if(e===A&&this[0].nodeType===1){e=this[0].getAttribute("data-"+a);if(typeof e===
"string")try{e=e==="true"?true:e==="false"?false:e==="null"?null:!c.isNaN(e)?parseFloat(e):Oa.test(e)?c.parseJSON(e):e}catch(f){}else e=A}}return e===A&&d[1]?this.data(d[0]):e}else return this.each(function(){var h=c(this),k=[d[0],b];h.triggerHandler("setData"+d[1]+"!",k);c.data(this,a,b);h.triggerHandler("changeData"+d[1]+"!",k)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var e=c.data(a,b);if(!d)return e||
[];if(!e||c.isArray(d))e=c.data(a,b,c.makeArray(d));else e.push(d);return e}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),e=d.shift();if(e==="inprogress")e=d.shift();if(e){b==="fx"&&d.unshift("inprogress");e.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===A)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,
a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var qa=/[\n\t]/g,ga=/\s+/,Pa=/\r/g,Qa=/^(?:href|src|style)$/,Ra=/^(?:button|input)$/i,Sa=/^(?:button|input|object|select|textarea)$/i,Ta=/^a(?:rea)?$/i,ra=/^(?:radio|checkbox)$/i;c.fn.extend({attr:function(a,b){return c.access(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,
a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(s){var v=c(this);v.addClass(a.call(this,s,v.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ga),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===1)if(f.className){for(var h=" "+f.className+" ",k=f.className,l=0,n=b.length;l<n;l++)if(h.indexOf(" "+b[l]+" ")<0)k+=" "+b[l];f.className=c.trim(k)}else f.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(n){var s=
c(this);s.removeClass(a.call(this,n,s.attr("class")))});if(a&&typeof a==="string"||a===A)for(var b=(a||"").split(ga),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===1&&f.className)if(a){for(var h=(" "+f.className+" ").replace(qa," "),k=0,l=b.length;k<l;k++)h=h.replace(" "+b[k]+" "," ");f.className=c.trim(h)}else f.className=""}return this},toggleClass:function(a,b){var d=typeof a,e=typeof b==="boolean";if(c.isFunction(a))return this.each(function(f){var h=c(this);h.toggleClass(a.call(this,
f,h.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var f,h=0,k=c(this),l=b,n=a.split(ga);f=n[h++];){l=e?l:!k.hasClass(f);k[l?"addClass":"removeClass"](f)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className=this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(qa," ").indexOf(a)>-1)return true;return false},
val:function(a){if(!arguments.length){var b=this[0];if(b){if(c.nodeName(b,"option")){var d=b.attributes.value;return!d||d.specified?b.value:b.text}if(c.nodeName(b,"select")){var e=b.selectedIndex;d=[];var f=b.options;b=b.type==="select-one";if(e<0)return null;var h=b?e:0;for(e=b?e+1:f.length;h<e;h++){var k=f[h];if(k.selected&&(c.support.optDisabled?!k.disabled:k.getAttribute("disabled")===null)&&(!k.parentNode.disabled||!c.nodeName(k.parentNode,"optgroup"))){a=c(k).val();if(b)return a;d.push(a)}}return d}if(ra.test(b.type)&&
!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Pa,"")}return A}var l=c.isFunction(a);return this.each(function(n){var s=c(this),v=a;if(this.nodeType===1){if(l)v=a.call(this,n,s.val());if(v==null)v="";else if(typeof v==="number")v+="";else if(c.isArray(v))v=c.map(v,function(D){return D==null?"":D+""});if(c.isArray(v)&&ra.test(this.type))this.checked=c.inArray(s.val(),v)>=0;else if(c.nodeName(this,"select")){var B=c.makeArray(v);c("option",this).each(function(){this.selected=
c.inArray(c(this).val(),B)>=0});if(!B.length)this.selectedIndex=-1}else this.value=v}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,e){if(!a||a.nodeType===3||a.nodeType===8)return A;if(e&&b in c.attrFn)return c(a)[b](d);e=a.nodeType!==1||!c.isXMLDoc(a);var f=d!==A;b=e&&c.props[b]||b;if(a.nodeType===1){var h=Qa.test(b);if((b in a||a[b]!==A)&&e&&!h){if(f){b==="type"&&Ra.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");
if(d===null)a.nodeType===1&&a.removeAttribute(b);else a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:Sa.test(a.nodeName)||Ta.test(a.nodeName)&&a.href?0:A;return a[b]}if(!c.support.style&&e&&b==="style"){if(f)a.style.cssText=""+d;return a.style.cssText}f&&a.setAttribute(b,""+d);if(!a.attributes[b]&&a.hasAttribute&&!a.hasAttribute(b))return A;a=!c.support.hrefNormalized&&e&&
h?a.getAttribute(b,2):a.getAttribute(b);return a===null?A:a}}});var X=/\.(.*)$/,ha=/^(?:textarea|input|select)$/i,Ha=/\./g,Ia=/ /g,Ua=/[^\w\s.|`]/g,Va=function(a){return a.replace(Ua,"\\$&")},sa={focusin:0,focusout:0};c.event={add:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(c.isWindow(a)&&a!==E&&!a.frameElement)a=E;if(d===false)d=U;var f,h;if(d.handler){f=d;d=f.handler}if(!d.guid)d.guid=c.guid++;if(h=c.data(a)){var k=a.nodeType?"events":"__events__",l=h[k],n=h.handle;if(typeof l===
"function"){n=l.handle;l=l.events}else if(!l){a.nodeType||(h[k]=h=function(){});h.events=l={}}if(!n)h.handle=n=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(n.elem,arguments):A};n.elem=a;b=b.split(" ");for(var s=0,v;k=b[s++];){h=f?c.extend({},f):{handler:d,data:e};if(k.indexOf(".")>-1){v=k.split(".");k=v.shift();h.namespace=v.slice(0).sort().join(".")}else{v=[];h.namespace=""}h.type=k;if(!h.guid)h.guid=d.guid;var B=l[k],D=c.event.special[k]||{};if(!B){B=l[k]=[];
if(!D.setup||D.setup.call(a,e,v,n)===false)if(a.addEventListener)a.addEventListener(k,n,false);else a.attachEvent&&a.attachEvent("on"+k,n)}if(D.add){D.add.call(a,h);if(!h.handler.guid)h.handler.guid=d.guid}B.push(h);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(d===false)d=U;var f,h,k=0,l,n,s,v,B,D,H=a.nodeType?"events":"__events__",w=c.data(a),G=w&&w[H];if(w&&G){if(typeof G==="function"){w=G;G=G.events}if(b&&b.type){d=b.handler;b=b.type}if(!b||
typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(f in G)c.event.remove(a,f+b)}else{for(b=b.split(" ");f=b[k++];){v=f;l=f.indexOf(".")<0;n=[];if(!l){n=f.split(".");f=n.shift();s=RegExp("(^|\\.)"+c.map(n.slice(0).sort(),Va).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(B=G[f])if(d){v=c.event.special[f]||{};for(h=e||0;h<B.length;h++){D=B[h];if(d.guid===D.guid){if(l||s.test(D.namespace)){e==null&&B.splice(h--,1);v.remove&&v.remove.call(a,D)}if(e!=null)break}}if(B.length===0||e!=null&&B.length===1){if(!v.teardown||
v.teardown.call(a,n)===false)c.removeEvent(a,f,w.handle);delete G[f]}}else for(h=0;h<B.length;h++){D=B[h];if(l||s.test(D.namespace)){c.event.remove(a,v,D.handler,h);B.splice(h--,1)}}}if(c.isEmptyObject(G)){if(b=w.handle)b.elem=null;delete w.events;delete w.handle;if(typeof w==="function")c.removeData(a,H);else c.isEmptyObject(w)&&c.removeData(a)}}}}},trigger:function(a,b,d,e){var f=a.type||a;if(!e){a=typeof a==="object"?a[c.expando]?a:c.extend(c.Event(f),a):c.Event(f);if(f.indexOf("!")>=0){a.type=
f=f.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[f]&&c.each(c.cache,function(){this.events&&this.events[f]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return A;a.result=A;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(e=d.nodeType?c.data(d,"handle"):(c.data(d,"__events__")||{}).handle)&&e.apply(d,b);e=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+f]&&d["on"+f].apply(d,b)===
false){a.result=false;a.preventDefault()}}catch(h){}if(!a.isPropagationStopped()&&e)c.event.trigger(a,b,e,true);else if(!a.isDefaultPrevented()){e=a.target;var k,l=f.replace(X,""),n=c.nodeName(e,"a")&&l==="click",s=c.event.special[l]||{};if((!s._default||s._default.call(d,a)===false)&&!n&&!(e&&e.nodeName&&c.noData[e.nodeName.toLowerCase()])){try{if(e[l]){if(k=e["on"+l])e["on"+l]=null;c.event.triggered=true;e[l]()}}catch(v){}if(k)e["on"+l]=k;c.event.triggered=false}}},handle:function(a){var b,d,e;
d=[];var f,h=c.makeArray(arguments);a=h[0]=c.event.fix(a||E.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;if(!b){e=a.type.split(".");a.type=e.shift();d=e.slice(0).sort();e=RegExp("(^|\\.)"+d.join("\\.(?:.*\\.)?")+"(\\.|$)")}a.namespace=a.namespace||d.join(".");f=c.data(this,this.nodeType?"events":"__events__");if(typeof f==="function")f=f.events;d=(f||{})[a.type];if(f&&d){d=d.slice(0);f=0;for(var k=d.length;f<k;f++){var l=d[f];if(b||e.test(l.namespace)){a.handler=l.handler;a.data=
l.data;a.handleObj=l;l=l.handler.apply(this,h);if(l!==A){a.result=l;if(l===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
fix:function(a){if(a[c.expando])return a;var b=a;a=c.Event(b);for(var d=this.props.length,e;d;){e=this.props[--d];a[e]=b[e]}if(!a.target)a.target=a.srcElement||u;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=u.documentElement;d=u.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||
d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(a.which==null&&(a.charCode!=null||a.keyCode!=null))a.which=a.charCode!=null?a.charCode:a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==A)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,Y(a.origType,a.selector),c.extend({},a,{handler:Ga,guid:a.handler.guid}))},remove:function(a){c.event.remove(this,
Y(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,d){if(c.isWindow(this))this.onbeforeunload=d},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};c.removeEvent=u.removeEventListener?function(a,b,d){a.removeEventListener&&a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent&&a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=a;this.type=a.type}else this.type=a;this.timeStamp=
c.now();this[c.expando]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=ba;var a=this.originalEvent;if(a)if(a.preventDefault)a.preventDefault();else a.returnValue=false},stopPropagation:function(){this.isPropagationStopped=ba;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=ba;this.stopPropagation()},isDefaultPrevented:U,isPropagationStopped:U,isImmediatePropagationStopped:U};
var ta=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},ua=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?ua:ta,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?ua:ta)}}});if(!c.support.submitBubbles)c.event.special.submit={setup:function(){if(this.nodeName.toLowerCase()!==
"form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length){a.liveFired=A;return ja("submit",this,arguments)}});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13){a.liveFired=A;return ja("submit",this,arguments)}})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};if(!c.support.changeBubbles){var V,
va=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(e){return e.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},Z=function(a,b){var d=a.target,e,f;if(!(!ha.test(d.nodeName)||d.readOnly)){e=c.data(d,"_change_data");f=va(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",f);if(!(e===A||f===e))if(e!=null||f){a.type="change";a.liveFired=
A;return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:Z,beforedeactivate:Z,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return Z.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return Z.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,"_change_data",va(a))}},setup:function(){if(this.type===
"file")return false;for(var a in V)c.event.add(this,a+".specialChange",V[a]);return ha.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return ha.test(this.nodeName)}};V=c.event.special.change.filters;V.focus=V.beforeactivate}u.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(e){e=c.event.fix(e);e.type=b;return c.event.trigger(e,null,e.target)}c.event.special[b]={setup:function(){sa[b]++===0&&u.addEventListener(a,d,true)},teardown:function(){--sa[b]===
0&&u.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,e,f){if(typeof d==="object"){for(var h in d)this[b](h,e,d[h],f);return this}if(c.isFunction(e)||e===false){f=e;e=A}var k=b==="one"?c.proxy(f,function(n){c(this).unbind(n,k);return f.apply(this,arguments)}):f;if(d==="unload"&&b!=="one")this.one(d,e,f);else{h=0;for(var l=this.length;h<l;h++)c.event.add(this[h],d,k,e)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&!a.preventDefault)for(var d in a)this.unbind(d,
a[d]);else{d=0;for(var e=this.length;d<e;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,e){return this.live(b,d,e,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var d=c.Event(a);d.preventDefault();d.stopPropagation();c.event.trigger(d,b,this[0]);return d.result}},toggle:function(a){for(var b=arguments,d=
1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(e){var f=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,f+1);e.preventDefault();return b[f].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var wa={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,e,f,h){var k,l=0,n,s,v=h||this.selector;h=h?this:c(this.context);if(typeof d===
"object"&&!d.preventDefault){for(k in d)h[b](k,e,d[k],v);return this}if(c.isFunction(e)){f=e;e=A}for(d=(d||"").split(" ");(k=d[l++])!=null;){n=X.exec(k);s="";if(n){s=n[0];k=k.replace(X,"")}if(k==="hover")d.push("mouseenter"+s,"mouseleave"+s);else{n=k;if(k==="focus"||k==="blur"){d.push(wa[k]+s);k+=s}else k=(wa[k]||k)+s;if(b==="live"){s=0;for(var B=h.length;s<B;s++)c.event.add(h[s],"live."+Y(k,v),{data:e,selector:v,handler:f,origType:k,origHandler:f,preType:n})}else h.unbind("live."+Y(k,v),f)}}return this}});
c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){c.fn[b]=function(d,e){if(e==null){e=d;d=null}return arguments.length>0?this.bind(b,d,e):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});E.attachEvent&&!E.addEventListener&&c(E).bind("unload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});
(function(){function a(g,j,o,m,p,q){p=0;for(var t=m.length;p<t;p++){var x=m[p];if(x){x=x[g];for(var C=false;x;){if(x.sizcache===o){C=m[x.sizset];break}if(x.nodeType===1&&!q){x.sizcache=o;x.sizset=p}if(x.nodeName.toLowerCase()===j){C=x;break}x=x[g]}m[p]=C}}}function b(g,j,o,m,p,q){p=0;for(var t=m.length;p<t;p++){var x=m[p];if(x){x=x[g];for(var C=false;x;){if(x.sizcache===o){C=m[x.sizset];break}if(x.nodeType===1){if(!q){x.sizcache=o;x.sizset=p}if(typeof j!=="string"){if(x===j){C=true;break}}else if(l.filter(j,
[x]).length>0){C=x;break}}x=x[g]}m[p]=C}}}var d=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,h=false,k=true;[0,0].sort(function(){k=false;return 0});var l=function(g,j,o,m){o=o||[];var p=j=j||u;if(j.nodeType!==1&&j.nodeType!==9)return[];if(!g||typeof g!=="string")return o;var q=[],t,x,C,P,N=true,R=l.isXML(j),Q=g,L;do{d.exec("");if(t=d.exec(Q)){Q=t[3];q.push(t[1]);if(t[2]){P=t[3];
break}}}while(t);if(q.length>1&&s.exec(g))if(q.length===2&&n.relative[q[0]])x=M(q[0]+q[1],j);else for(x=n.relative[q[0]]?[j]:l(q.shift(),j);q.length;){g=q.shift();if(n.relative[g])g+=q.shift();x=M(g,x)}else{if(!m&&q.length>1&&j.nodeType===9&&!R&&n.match.ID.test(q[0])&&!n.match.ID.test(q[q.length-1])){t=l.find(q.shift(),j,R);j=t.expr?l.filter(t.expr,t.set)[0]:t.set[0]}if(j){t=m?{expr:q.pop(),set:D(m)}:l.find(q.pop(),q.length===1&&(q[0]==="~"||q[0]==="+")&&j.parentNode?j.parentNode:j,R);x=t.expr?l.filter(t.expr,
t.set):t.set;if(q.length>0)C=D(x);else N=false;for(;q.length;){t=L=q.pop();if(n.relative[L])t=q.pop();else L="";if(t==null)t=j;n.relative[L](C,t,R)}}else C=[]}C||(C=x);C||l.error(L||g);if(f.call(C)==="[object Array]")if(N)if(j&&j.nodeType===1)for(g=0;C[g]!=null;g++){if(C[g]&&(C[g]===true||C[g].nodeType===1&&l.contains(j,C[g])))o.push(x[g])}else for(g=0;C[g]!=null;g++)C[g]&&C[g].nodeType===1&&o.push(x[g]);else o.push.apply(o,C);else D(C,o);if(P){l(P,p,o,m);l.uniqueSort(o)}return o};l.uniqueSort=function(g){if(w){h=
k;g.sort(w);if(h)for(var j=1;j<g.length;j++)g[j]===g[j-1]&&g.splice(j--,1)}return g};l.matches=function(g,j){return l(g,null,null,j)};l.matchesSelector=function(g,j){return l(j,null,null,[g]).length>0};l.find=function(g,j,o){var m;if(!g)return[];for(var p=0,q=n.order.length;p<q;p++){var t=n.order[p],x;if(x=n.leftMatch[t].exec(g)){var C=x[1];x.splice(1,1);if(C.substr(C.length-1)!=="\\"){x[1]=(x[1]||"").replace(/\\/g,"");m=n.find[t](x,j,o);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=j.getElementsByTagName("*"));
return{set:m,expr:g}};l.filter=function(g,j,o,m){for(var p=g,q=[],t=j,x,C,P=j&&j[0]&&l.isXML(j[0]);g&&j.length;){for(var N in n.filter)if((x=n.leftMatch[N].exec(g))!=null&&x[2]){var R=n.filter[N],Q,L;L=x[1];C=false;x.splice(1,1);if(L.substr(L.length-1)!=="\\"){if(t===q)q=[];if(n.preFilter[N])if(x=n.preFilter[N](x,t,o,q,m,P)){if(x===true)continue}else C=Q=true;if(x)for(var i=0;(L=t[i])!=null;i++)if(L){Q=R(L,x,i,t);var r=m^!!Q;if(o&&Q!=null)if(r)C=true;else t[i]=false;else if(r){q.push(L);C=true}}if(Q!==
A){o||(t=q);g=g.replace(n.match[N],"");if(!C)return[];break}}}if(g===p)if(C==null)l.error(g);else break;p=g}return t};l.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=l.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\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},relative:{"+":function(g,j){var o=typeof j==="string",m=o&&!/\W/.test(j);o=o&&!m;if(m)j=j.toLowerCase();m=0;for(var p=g.length,q;m<p;m++)if(q=g[m]){for(;(q=q.previousSibling)&&q.nodeType!==1;);g[m]=o||q&&q.nodeName.toLowerCase()===
j?q||false:q===j}o&&l.filter(j,g,true)},">":function(g,j){var o=typeof j==="string",m,p=0,q=g.length;if(o&&!/\W/.test(j))for(j=j.toLowerCase();p<q;p++){if(m=g[p]){o=m.parentNode;g[p]=o.nodeName.toLowerCase()===j?o:false}}else{for(;p<q;p++)if(m=g[p])g[p]=o?m.parentNode:m.parentNode===j;o&&l.filter(j,g,true)}},"":function(g,j,o){var m=e++,p=b,q;if(typeof j==="string"&&!/\W/.test(j)){q=j=j.toLowerCase();p=a}p("parentNode",j,m,g,q,o)},"~":function(g,j,o){var m=e++,p=b,q;if(typeof j==="string"&&!/\W/.test(j)){q=
j=j.toLowerCase();p=a}p("previousSibling",j,m,g,q,o)}},find:{ID:function(g,j,o){if(typeof j.getElementById!=="undefined"&&!o)return(g=j.getElementById(g[1]))&&g.parentNode?[g]:[]},NAME:function(g,j){if(typeof j.getElementsByName!=="undefined"){for(var o=[],m=j.getElementsByName(g[1]),p=0,q=m.length;p<q;p++)m[p].getAttribute("name")===g[1]&&o.push(m[p]);return o.length===0?null:o}},TAG:function(g,j){return j.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,j,o,m,p,q){g=" "+g[1].replace(/\\/g,
"")+" ";if(q)return g;q=0;for(var t;(t=j[q])!=null;q++)if(t)if(p^(t.className&&(" "+t.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))o||m.push(t);else if(o)j[q]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},CHILD:function(g){if(g[1]==="nth"){var j=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=j[1]+(j[2]||1)-0;g[3]=j[3]-0}g[0]=e++;return g},ATTR:function(g,j,o,
m,p,q){j=g[1].replace(/\\/g,"");if(!q&&n.attrMap[j])g[1]=n.attrMap[j];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,j,o,m,p){if(g[1]==="not")if((d.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=l(g[3],null,null,j);else{g=l.filter(g[3],j,o,true^p);o||m.push.apply(m,g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===
true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,j,o){return!!l(o[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===
g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},setFilters:{first:function(g,j){return j===0},last:function(g,j,o,m){return j===m.length-1},even:function(g,j){return j%2===0},odd:function(g,j){return j%2===1},lt:function(g,j,o){return j<o[3]-0},gt:function(g,j,o){return j>o[3]-0},nth:function(g,j,o){return o[3]-
0===j},eq:function(g,j,o){return o[3]-0===j}},filter:{PSEUDO:function(g,j,o,m){var p=j[1],q=n.filters[p];if(q)return q(g,o,j,m);else if(p==="contains")return(g.textContent||g.innerText||l.getText([g])||"").indexOf(j[3])>=0;else if(p==="not"){j=j[3];o=0;for(m=j.length;o<m;o++)if(j[o]===g)return false;return true}else l.error("Syntax error, unrecognized expression: "+p)},CHILD:function(g,j){var o=j[1],m=g;switch(o){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(o===
"first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":o=j[2];var p=j[3];if(o===1&&p===0)return true;var q=j[0],t=g.parentNode;if(t&&(t.sizcache!==q||!g.nodeIndex)){var x=0;for(m=t.firstChild;m;m=m.nextSibling)if(m.nodeType===1)m.nodeIndex=++x;t.sizcache=q}m=g.nodeIndex-p;return o===0?m===0:m%o===0&&m/o>=0}},ID:function(g,j){return g.nodeType===1&&g.getAttribute("id")===j},TAG:function(g,j){return j==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===
j},CLASS:function(g,j){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(j)>-1},ATTR:function(g,j){var o=j[1];o=n.attrHandle[o]?n.attrHandle[o](g):g[o]!=null?g[o]:g.getAttribute(o);var m=o+"",p=j[2],q=j[4];return o==null?p==="!=":p==="="?m===q:p==="*="?m.indexOf(q)>=0:p==="~="?(" "+m+" ").indexOf(q)>=0:!q?m&&o!==false:p==="!="?m!==q:p==="^="?m.indexOf(q)===0:p==="$="?m.substr(m.length-q.length)===q:p==="|="?m===q||m.substr(0,q.length+1)===q+"-":false},POS:function(g,j,o,m){var p=n.setFilters[j[2]];
if(p)return p(g,o,j,m)}}},s=n.match.POS,v=function(g,j){return"\\"+(j-0+1)},B;for(B in n.match){n.match[B]=RegExp(n.match[B].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[B]=RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[B].source.replace(/\\(\d+)/g,v))}var D=function(g,j){g=Array.prototype.slice.call(g,0);if(j){j.push.apply(j,g);return j}return g};try{Array.prototype.slice.call(u.documentElement.childNodes,0)}catch(H){D=function(g,j){var o=j||[],m=0;if(f.call(g)==="[object Array]")Array.prototype.push.apply(o,
g);else if(typeof g.length==="number")for(var p=g.length;m<p;m++)o.push(g[m]);else for(;g[m];m++)o.push(g[m]);return o}}var w,G;if(u.documentElement.compareDocumentPosition)w=function(g,j){if(g===j){h=true;return 0}if(!g.compareDocumentPosition||!j.compareDocumentPosition)return g.compareDocumentPosition?-1:1;return g.compareDocumentPosition(j)&4?-1:1};else{w=function(g,j){var o=[],m=[],p=g.parentNode,q=j.parentNode,t=p;if(g===j){h=true;return 0}else if(p===q)return G(g,j);else if(p){if(!q)return 1}else return-1;
for(;t;){o.unshift(t);t=t.parentNode}for(t=q;t;){m.unshift(t);t=t.parentNode}p=o.length;q=m.length;for(t=0;t<p&&t<q;t++)if(o[t]!==m[t])return G(o[t],m[t]);return t===p?G(g,m[t],-1):G(o[t],j,1)};G=function(g,j,o){if(g===j)return o;for(g=g.nextSibling;g;){if(g===j)return-1;g=g.nextSibling}return 1}}l.getText=function(g){for(var j="",o,m=0;g[m];m++){o=g[m];if(o.nodeType===3||o.nodeType===4)j+=o.nodeValue;else if(o.nodeType!==8)j+=l.getText(o.childNodes)}return j};(function(){var g=u.createElement("div"),
j="script"+(new Date).getTime();g.innerHTML="<a name='"+j+"'/>";var o=u.documentElement;o.insertBefore(g,o.firstChild);if(u.getElementById(j)){n.find.ID=function(m,p,q){if(typeof p.getElementById!=="undefined"&&!q)return(p=p.getElementById(m[1]))?p.id===m[1]||typeof p.getAttributeNode!=="undefined"&&p.getAttributeNode("id").nodeValue===m[1]?[p]:A:[]};n.filter.ID=function(m,p){var q=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&q&&q.nodeValue===p}}o.removeChild(g);
o=g=null})();(function(){var g=u.createElement("div");g.appendChild(u.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(j,o){var m=o.getElementsByTagName(j[1]);if(j[1]==="*"){for(var p=[],q=0;m[q];q++)m[q].nodeType===1&&p.push(m[q]);m=p}return m};g.innerHTML="<a href='#'></a>";if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(j){return j.getAttribute("href",2)};g=null})();u.querySelectorAll&&
function(){var g=l,j=u.createElement("div");j.innerHTML="<p class='TEST'></p>";if(!(j.querySelectorAll&&j.querySelectorAll(".TEST").length===0)){l=function(m,p,q,t){p=p||u;if(!t&&!l.isXML(p))if(p.nodeType===9)try{return D(p.querySelectorAll(m),q)}catch(x){}else if(p.nodeType===1&&p.nodeName.toLowerCase()!=="object"){var C=p.id,P=p.id="__sizzle__";try{return D(p.querySelectorAll("#"+P+" "+m),q)}catch(N){}finally{if(C)p.id=C;else p.removeAttribute("id")}}return g(m,p,q,t)};for(var o in g)l[o]=g[o];
j=null}}();(function(){var g=u.documentElement,j=g.matchesSelector||g.mozMatchesSelector||g.webkitMatchesSelector||g.msMatchesSelector,o=false;try{j.call(u.documentElement,":sizzle")}catch(m){o=true}if(j)l.matchesSelector=function(p,q){try{if(o||!n.match.PSEUDO.test(q))return j.call(p,q)}catch(t){}return l(q,null,null,[p]).length>0}})();(function(){var g=u.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===
0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(j,o,m){if(typeof o.getElementsByClassName!=="undefined"&&!m)return o.getElementsByClassName(j[1])};g=null}}})();l.contains=u.documentElement.contains?function(g,j){return g!==j&&(g.contains?g.contains(j):true)}:function(g,j){return!!(g.compareDocumentPosition(j)&16)};l.isXML=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false};var M=function(g,
j){for(var o=[],m="",p,q=j.nodeType?[j]:j;p=n.match.PSEUDO.exec(g);){m+=p[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;p=0;for(var t=q.length;p<t;p++)l(g,q[p],o);return l.filter(m,o)};c.find=l;c.expr=l.selectors;c.expr[":"]=c.expr.filters;c.unique=l.uniqueSort;c.text=l.getText;c.isXMLDoc=l.isXML;c.contains=l.contains})();var Wa=/Until$/,Xa=/^(?:parents|prevUntil|prevAll)/,Ya=/,/,Ja=/^.[^:#\[\.,]*$/,Za=Array.prototype.slice,$a=c.expr.match.POS;c.fn.extend({find:function(a){for(var b=this.pushStack("",
"find",a),d=0,e=0,f=this.length;e<f;e++){d=b.length;c.find(a,this[e],b);if(e>0)for(var h=d;h<b.length;h++)for(var k=0;k<d;k++)if(b[k]===b[h]){b.splice(h--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,e=b.length;d<e;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(ka(this,a,false),"not",a)},filter:function(a){return this.pushStack(ka(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,
b){var d=[],e,f,h=this[0];if(c.isArray(a)){var k={},l,n=1;if(h&&a.length){e=0;for(f=a.length;e<f;e++){l=a[e];k[l]||(k[l]=c.expr.match.POS.test(l)?c(l,b||this.context):l)}for(;h&&h.ownerDocument&&h!==b;){for(l in k){e=k[l];if(e.jquery?e.index(h)>-1:c(h).is(e))d.push({selector:l,elem:h,level:n})}h=h.parentNode;n++}}return d}k=$a.test(a)?c(a,b||this.context):null;e=0;for(f=this.length;e<f;e++)for(h=this[e];h;)if(k?k.index(h)>-1:c.find.matchesSelector(h,a)){d.push(h);break}else{h=h.parentNode;if(!h||
!h.ownerDocument||h===b)break}d=d.length>1?c.unique(d):d;return this.pushStack(d,"closest",a)},index:function(a){if(!a||typeof a==="string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var d=typeof a==="string"?c(a,b||this.context):c.makeArray(a),e=c.merge(this.get(),d);return this.pushStack(!d[0]||!d[0].parentNode||d[0].parentNode.nodeType===11||!e[0]||!e[0].parentNode||e[0].parentNode.nodeType===11?e:c.unique(e))},andSelf:function(){return this.add(this.prevObject)}});
c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",
d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,e){var f=c.map(this,b,d);Wa.test(a)||(e=d);if(e&&typeof e==="string")f=c.filter(e,f);f=this.length>1?c.unique(f):f;if((this.length>1||Ya.test(e))&&Xa.test(a))f=f.reverse();return this.pushStack(f,a,Za.call(arguments).join(","))}});
c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return b.length===1?c.find.matchesSelector(b[0],a)?[b[0]]:[]:c.find.matches(a,b)},dir:function(a,b,d){var e=[];for(a=a[b];a&&a.nodeType!==9&&(d===A||a.nodeType!==1||!c(a).is(d));){a.nodeType===1&&e.push(a);a=a[b]}return e},nth:function(a,b,d){b=b||1;for(var e=0;a;a=a[d])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var xa=/ jQuery\d+="(?:\d+|null)"/g,
$=/^\s+/,ya=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,za=/<([\w:]+)/,ab=/<tbody/i,bb=/<|&#?\w+;/,Aa=/<(?:script|object|embed|option|style)/i,Ba=/checked\s*(?:[^=]|=\s*.checked.)/i,cb=/\=([^="'>\s]+\/)>/g,O={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],
area:[1,"<map>","</map>"],_default:[0,"",""]};O.optgroup=O.option;O.tbody=O.tfoot=O.colgroup=O.caption=O.thead;O.th=O.td;if(!c.support.htmlSerialize)O._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==A)return this.empty().append((this[0]&&this[0].ownerDocument||u).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,
d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},
unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=
c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,e;(e=this[d])!=null;d++)if(!a||c.filter(a,[e]).length){if(!b&&e.nodeType===1){c.cleanData(e.getElementsByTagName("*"));
c.cleanData([e])}e.parentNode&&e.parentNode.removeChild(e)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,e=this.ownerDocument;if(!d){d=e.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(xa,"").replace(cb,'="$1">').replace($,
"")],e)[0]}else return this.cloneNode(true)});if(a===true){la(this,b);la(this.find("*"),b.find("*"))}return b},html:function(a){if(a===A)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(xa,""):null;else if(typeof a==="string"&&!Aa.test(a)&&(c.support.leadingWhitespace||!$.test(a))&&!O[(za.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ya,"<$1></$2>");try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(e){this.empty().append(a)}}else c.isFunction(a)?
this.each(function(f){var h=c(this);h.html(a.call(this,f,h.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),e=d.html();d.replaceWith(a.call(this,b,e))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,
true)},domManip:function(a,b,d){var e,f,h=a[0],k=[],l;if(!c.support.checkClone&&arguments.length===3&&typeof h==="string"&&Ba.test(h))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(h))return this.each(function(s){var v=c(this);a[0]=h.call(this,s,b?v.html():A);v.domManip(a,b,d)});if(this[0]){e=h&&h.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:c.buildFragment(a,this,k);l=e.fragment;if(f=l.childNodes.length===1?l=l.firstChild:
l.firstChild){b=b&&c.nodeName(f,"tr");f=0;for(var n=this.length;f<n;f++)d.call(b?c.nodeName(this[f],"table")?this[f].getElementsByTagName("tbody")[0]||this[f].appendChild(this[f].ownerDocument.createElement("tbody")):this[f]:this[f],f>0||e.cacheable||this.length>1?l.cloneNode(true):l)}k.length&&c.each(k,Ka)}return this}});c.buildFragment=function(a,b,d){var e,f,h;b=b&&b[0]?b[0].ownerDocument||b[0]:u;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===u&&!Aa.test(a[0])&&(c.support.checkClone||
!Ba.test(a[0]))){f=true;if(h=c.fragments[a[0]])if(h!==1)e=h}if(!e){e=b.createDocumentFragment();c.clean(a,b,e,d)}if(f)c.fragments[a[0]]=h?e:1;return{fragment:e,cacheable:f}};c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var e=[];d=c(d);var f=this.length===1&&this[0].parentNode;if(f&&f.nodeType===11&&f.childNodes.length===1&&d.length===1){d[b](this[0]);return this}else{f=0;for(var h=
d.length;f<h;f++){var k=(f>0?this.clone(true):this).get();c(d[f])[b](k);e=e.concat(k)}return this.pushStack(e,a,d.selector)}}});c.extend({clean:function(a,b,d,e){b=b||u;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||u;for(var f=[],h=0,k;(k=a[h])!=null;h++){if(typeof k==="number")k+="";if(k){if(typeof k==="string"&&!bb.test(k))k=b.createTextNode(k);else if(typeof k==="string"){k=k.replace(ya,"<$1></$2>");var l=(za.exec(k)||["",""])[1].toLowerCase(),n=O[l]||O._default,
s=n[0],v=b.createElement("div");for(v.innerHTML=n[1]+k+n[2];s--;)v=v.lastChild;if(!c.support.tbody){s=ab.test(k);l=l==="table"&&!s?v.firstChild&&v.firstChild.childNodes:n[1]==="<table>"&&!s?v.childNodes:[];for(n=l.length-1;n>=0;--n)c.nodeName(l[n],"tbody")&&!l[n].childNodes.length&&l[n].parentNode.removeChild(l[n])}!c.support.leadingWhitespace&&$.test(k)&&v.insertBefore(b.createTextNode($.exec(k)[0]),v.firstChild);k=v.childNodes}if(k.nodeType)f.push(k);else f=c.merge(f,k)}}if(d)for(h=0;f[h];h++)if(e&&
c.nodeName(f[h],"script")&&(!f[h].type||f[h].type.toLowerCase()==="text/javascript"))e.push(f[h].parentNode?f[h].parentNode.removeChild(f[h]):f[h]);else{f[h].nodeType===1&&f.splice.apply(f,[h+1,0].concat(c.makeArray(f[h].getElementsByTagName("script"))));d.appendChild(f[h])}return f},cleanData:function(a){for(var b,d,e=c.cache,f=c.event.special,h=c.support.deleteExpando,k=0,l;(l=a[k])!=null;k++)if(!(l.nodeName&&c.noData[l.nodeName.toLowerCase()]))if(d=l[c.expando]){if((b=e[d])&&b.events)for(var n in b.events)f[n]?
c.event.remove(l,n):c.removeEvent(l,n,b.handle);if(h)delete l[c.expando];else l.removeAttribute&&l.removeAttribute(c.expando);delete e[d]}}});var Ca=/alpha\([^)]*\)/i,db=/opacity=([^)]*)/,eb=/-([a-z])/ig,fb=/([A-Z])/g,Da=/^-?\d+(?:px)?$/i,gb=/^-?\d/,hb={position:"absolute",visibility:"hidden",display:"block"},La=["Left","Right"],Ma=["Top","Bottom"],W,ib=u.defaultView&&u.defaultView.getComputedStyle,jb=function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){if(arguments.length===2&&b===A)return this;
return c.access(this,a,b,true,function(d,e,f){return f!==A?c.style(d,e,f):c.css(d,e)})};c.extend({cssHooks:{opacity:{get:function(a,b){if(b){var d=W(a,"opacity","opacity");return d===""?"1":d}else return a.style.opacity}}},cssNumber:{zIndex:true,fontWeight:true,opacity:true,zoom:true,lineHeight:true},cssProps:{"float":c.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,d,e){if(!(!a||a.nodeType===3||a.nodeType===8||!a.style)){var f,h=c.camelCase(b),k=a.style,l=c.cssHooks[h];b=c.cssProps[h]||
h;if(d!==A){if(!(typeof d==="number"&&isNaN(d)||d==null)){if(typeof d==="number"&&!c.cssNumber[h])d+="px";if(!l||!("set"in l)||(d=l.set(a,d))!==A)try{k[b]=d}catch(n){}}}else{if(l&&"get"in l&&(f=l.get(a,false,e))!==A)return f;return k[b]}}},css:function(a,b,d){var e,f=c.camelCase(b),h=c.cssHooks[f];b=c.cssProps[f]||f;if(h&&"get"in h&&(e=h.get(a,true,d))!==A)return e;else if(W)return W(a,b,f)},swap:function(a,b,d){var e={},f;for(f in b){e[f]=a.style[f];a.style[f]=b[f]}d.call(a);for(f in b)a.style[f]=
e[f]},camelCase:function(a){return a.replace(eb,jb)}});c.curCSS=c.css;c.each(["height","width"],function(a,b){c.cssHooks[b]={get:function(d,e,f){var h;if(e){if(d.offsetWidth!==0)h=ma(d,b,f);else c.swap(d,hb,function(){h=ma(d,b,f)});return h+"px"}},set:function(d,e){if(Da.test(e)){e=parseFloat(e);if(e>=0)return e+"px"}else return e}}});if(!c.support.opacity)c.cssHooks.opacity={get:function(a,b){return db.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":
b?"1":""},set:function(a,b){var d=a.style;d.zoom=1;var e=c.isNaN(b)?"":"alpha(opacity="+b*100+")",f=d.filter||"";d.filter=Ca.test(f)?f.replace(Ca,e):d.filter+" "+e}};if(ib)W=function(a,b,d){var e;d=d.replace(fb,"-$1").toLowerCase();if(!(b=a.ownerDocument.defaultView))return A;if(b=b.getComputedStyle(a,null)){e=b.getPropertyValue(d);if(e===""&&!c.contains(a.ownerDocument.documentElement,a))e=c.style(a,d)}return e};else if(u.documentElement.currentStyle)W=function(a,b){var d,e,f=a.currentStyle&&a.currentStyle[b],
h=a.style;if(!Da.test(f)&&gb.test(f)){d=h.left;e=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;h.left=b==="fontSize"?"1em":f||0;f=h.pixelLeft+"px";h.left=d;a.runtimeStyle.left=e}return f};if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=a.offsetHeight;return a.offsetWidth===0&&b===0||!c.support.reliableHiddenOffsets&&(a.style.display||c.css(a,"display"))==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var kb=c.now(),lb=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
mb=/^(?:select|textarea)/i,nb=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ob=/^(?:GET|HEAD|DELETE)$/,Na=/\[\]$/,T=/\=\?(&|$)/,ia=/\?/,pb=/([?&])_=[^&]*/,qb=/^(\w+:)?\/\/([^\/?#]+)/,rb=/%20/g,sb=/#.*$/,Ea=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!=="string"&&Ea)return Ea.apply(this,arguments);else if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var f=a.slice(e,a.length);a=a.slice(0,e)}e="GET";if(b)if(c.isFunction(b)){d=
b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);e="POST"}var h=this;c.ajax({url:a,type:e,dataType:"html",data:b,complete:function(k,l){if(l==="success"||l==="notmodified")h.html(f?c("<div>").append(k.responseText.replace(lb,"")).find(f):k.responseText);d&&h.each(d,[k.responseText,l,k])}});return this},serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&
!this.disabled&&(this.checked||mb.test(this.nodeName)||nb.test(this.type))}).map(function(a,b){var d=c(this).val();return d==null?null:c.isArray(d)?c.map(d,function(e){return{name:b.name,value:e}}):{name:b.name,value:d}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:e})},
getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:e})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return new E.XMLHttpRequest},accepts:{xml:"application/xml, text/xml",html:"text/html",
script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},ajax:function(a){var b=c.extend(true,{},c.ajaxSettings,a),d,e,f,h=b.type.toUpperCase(),k=ob.test(h);b.url=b.url.replace(sb,"");b.context=a&&a.context!=null?a.context:b;if(b.data&&b.processData&&typeof b.data!=="string")b.data=c.param(b.data,b.traditional);if(b.dataType==="jsonp"){if(h==="GET")T.test(b.url)||(b.url+=(ia.test(b.url)?"&":"?")+(b.jsonp||"callback")+"=?");else if(!b.data||
!T.test(b.data))b.data=(b.data?b.data+"&":"")+(b.jsonp||"callback")+"=?";b.dataType="json"}if(b.dataType==="json"&&(b.data&&T.test(b.data)||T.test(b.url))){d=b.jsonpCallback||"jsonp"+kb++;if(b.data)b.data=(b.data+"").replace(T,"="+d+"$1");b.url=b.url.replace(T,"="+d+"$1");b.dataType="script";var l=E[d];E[d]=function(m){f=m;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);if(c.isFunction(l))l(m);else{E[d]=A;try{delete E[d]}catch(p){}}v&&v.removeChild(B)}}if(b.dataType==="script"&&b.cache===null)b.cache=
false;if(b.cache===false&&h==="GET"){var n=c.now(),s=b.url.replace(pb,"$1_="+n);b.url=s+(s===b.url?(ia.test(b.url)?"&":"?")+"_="+n:"")}if(b.data&&h==="GET")b.url+=(ia.test(b.url)?"&":"?")+b.data;b.global&&c.active++===0&&c.event.trigger("ajaxStart");n=(n=qb.exec(b.url))&&(n[1]&&n[1]!==location.protocol||n[2]!==location.host);if(b.dataType==="script"&&h==="GET"&&n){var v=u.getElementsByTagName("head")[0]||u.documentElement,B=u.createElement("script");if(b.scriptCharset)B.charset=b.scriptCharset;B.src=
b.url;if(!d){var D=false;B.onload=B.onreadystatechange=function(){if(!D&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){D=true;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);B.onload=B.onreadystatechange=null;v&&B.parentNode&&v.removeChild(B)}}}v.insertBefore(B,v.firstChild);return A}var H=false,w=b.xhr();if(w){b.username?w.open(h,b.url,b.async,b.username,b.password):w.open(h,b.url,b.async);try{if(b.data!=null&&!k||a&&a.contentType)w.setRequestHeader("Content-Type",
b.contentType);if(b.ifModified){c.lastModified[b.url]&&w.setRequestHeader("If-Modified-Since",c.lastModified[b.url]);c.etag[b.url]&&w.setRequestHeader("If-None-Match",c.etag[b.url])}n||w.setRequestHeader("X-Requested-With","XMLHttpRequest");w.setRequestHeader("Accept",b.dataType&&b.accepts[b.dataType]?b.accepts[b.dataType]+", */*; q=0.01":b.accepts._default)}catch(G){}if(b.beforeSend&&b.beforeSend.call(b.context,w,b)===false){b.global&&c.active--===1&&c.event.trigger("ajaxStop");w.abort();return false}b.global&&
c.triggerGlobal(b,"ajaxSend",[w,b]);var M=w.onreadystatechange=function(m){if(!w||w.readyState===0||m==="abort"){H||c.handleComplete(b,w,e,f);H=true;if(w)w.onreadystatechange=c.noop}else if(!H&&w&&(w.readyState===4||m==="timeout")){H=true;w.onreadystatechange=c.noop;e=m==="timeout"?"timeout":!c.httpSuccess(w)?"error":b.ifModified&&c.httpNotModified(w,b.url)?"notmodified":"success";var p;if(e==="success")try{f=c.httpData(w,b.dataType,b)}catch(q){e="parsererror";p=q}if(e==="success"||e==="notmodified")d||
c.handleSuccess(b,w,e,f);else c.handleError(b,w,e,p);d||c.handleComplete(b,w,e,f);m==="timeout"&&w.abort();if(b.async)w=null}};try{var g=w.abort;w.abort=function(){w&&g.call&&g.call(w);M("abort")}}catch(j){}b.async&&b.timeout>0&&setTimeout(function(){w&&!H&&M("timeout")},b.timeout);try{w.send(k||b.data==null?null:b.data)}catch(o){c.handleError(b,w,null,o);c.handleComplete(b,w,e,f)}b.async||M();return w}},param:function(a,b){var d=[],e=function(h,k){k=c.isFunction(k)?k():k;d[d.length]=encodeURIComponent(h)+
"="+encodeURIComponent(k)};if(b===A)b=c.ajaxSettings.traditional;if(c.isArray(a)||a.jquery)c.each(a,function(){e(this.name,this.value)});else for(var f in a)ca(f,a[f],b,e);return d.join("&").replace(rb,"+")}});c.extend({active:0,lastModified:{},etag:{},handleError:function(a,b,d,e){a.error&&a.error.call(a.context,b,d,e);a.global&&c.triggerGlobal(a,"ajaxError",[b,a,e])},handleSuccess:function(a,b,d,e){a.success&&a.success.call(a.context,e,d,b);a.global&&c.triggerGlobal(a,"ajaxSuccess",[b,a])},handleComplete:function(a,
b,d){a.complete&&a.complete.call(a.context,b,d);a.global&&c.triggerGlobal(a,"ajaxComplete",[b,a]);a.global&&c.active--===1&&c.event.trigger("ajaxStop")},triggerGlobal:function(a,b,d){(a.context&&a.context.url==null?c(a.context):c.event).trigger(b,d)},httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===1223}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),e=a.getResponseHeader("Etag");
if(d)c.lastModified[b]=d;if(e)c.etag[b]=e;return a.status===304},httpData:function(a,b,d){var e=a.getResponseHeader("content-type")||"",f=b==="xml"||!b&&e.indexOf("xml")>=0;a=f?a.responseXML:a.responseText;f&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b==="json"||!b&&e.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&e.indexOf("javascript")>=0)c.globalEval(a);return a}});if(E.ActiveXObject)c.ajaxSettings.xhr=
function(){if(E.location.protocol!=="file:")try{return new E.XMLHttpRequest}catch(a){}try{return new E.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}};c.support.ajax=!!c.ajaxSettings.xhr();var da={},tb=/^(?:toggle|show|hide)$/,ub=/^([+\-]=)?([\d+.\-]+)(.*)$/,aa,na=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b,d){if(a||a===0)return this.animate(S("show",3),a,b,d);else{a=
0;for(b=this.length;a<b;a++){if(!c.data(this[a],"olddisplay")&&this[a].style.display==="none")this[a].style.display="";this[a].style.display===""&&c.css(this[a],"display")==="none"&&c.data(this[a],"olddisplay",oa(this[a].nodeName))}for(a=0;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b,d){if(a||a===0)return this.animate(S("hide",3),a,b,d);else{a=0;for(b=this.length;a<b;a++){d=c.css(this[a],"display");d!=="none"&&c.data(this[a],"olddisplay",d)}for(a=
0;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b,d){var e=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||e?this.each(function(){var f=e?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(S("toggle",3),a,b,d);return this},fadeTo:function(a,b,d,e){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d,e)},animate:function(a,b,d,e){var f=c.speed(b,d,e);if(c.isEmptyObject(a))return this.each(f.complete);
return this[f.queue===false?"each":"queue"](function(){var h=c.extend({},f),k,l=this.nodeType===1,n=l&&c(this).is(":hidden"),s=this;for(k in a){var v=c.camelCase(k);if(k!==v){a[v]=a[k];delete a[k];k=v}if(a[k]==="hide"&&n||a[k]==="show"&&!n)return h.complete.call(this);if(l&&(k==="height"||k==="width")){h.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(c.css(this,"display")==="inline"&&c.css(this,"float")==="none")if(c.support.inlineBlockNeedsLayout)if(oa(this.nodeName)===
"inline")this.style.display="inline-block";else{this.style.display="inline";this.style.zoom=1}else this.style.display="inline-block"}if(c.isArray(a[k])){(h.specialEasing=h.specialEasing||{})[k]=a[k][1];a[k]=a[k][0]}}if(h.overflow!=null)this.style.overflow="hidden";h.curAnim=c.extend({},a);c.each(a,function(B,D){var H=new c.fx(s,h,B);if(tb.test(D))H[D==="toggle"?n?"show":"hide":D](a);else{var w=ub.exec(D),G=H.cur(true)||0;if(w){var M=parseFloat(w[2]),g=w[3]||"px";if(g!=="px"){c.style(s,B,(M||1)+g);
G=(M||1)/H.cur(true)*G;c.style(s,B,G+g)}if(w[1])M=(w[1]==="-="?-1:1)*M+G;H.custom(G,M,g)}else H.custom(G,D,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);this.each(function(){for(var e=d.length-1;e>=0;e--)if(d[e].elem===this){b&&d[e](true);d.splice(e,1)}});b||this.dequeue();return this}});c.each({slideDown:S("show",1),slideUp:S("hide",1),slideToggle:S("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,e,f){return this.animate(b,
d,e,f)}});c.extend({speed:function(a,b,d){var e=a&&typeof a==="object"?c.extend({},a):{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};e.duration=c.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in c.fx.speeds?c.fx.speeds[e.duration]:c.fx.speeds._default;e.old=e.complete;e.complete=function(){e.queue!==false&&c(this).dequeue();c.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,d,e){return d+e*a},swing:function(a,b,d,e){return(-Math.cos(a*
Math.PI)/2+0.5)*e+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||c.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a=parseFloat(c.css(this.elem,this.prop));return a&&a>-1E4?a:0},custom:function(a,b,d){function e(h){return f.step(h)}
this.startTime=c.now();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;this.pos=this.state=0;var f=this;a=c.fx;e.elem=this.elem;if(e()&&c.timers.push(e)&&!aa)aa=setInterval(a.tick,a.interval)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;
this.custom(this.cur(),0)},step:function(a){var b=c.now(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var e in this.options.curAnim)if(this.options.curAnim[e]!==true)d=false;if(d){if(this.options.overflow!=null&&!c.support.shrinkWrapBlocks){var f=this.elem,h=this.options;c.each(["","X","Y"],function(l,n){f.style["overflow"+n]=h.overflow[l]})}this.options.hide&&c(this.elem).hide();if(this.options.hide||
this.options.show)for(var k in this.options.curAnim)c.style(this.elem,k,this.options.orig[k]);this.options.complete.call(this.elem)}return false}else{a=b-this.startTime;this.state=a/this.options.duration;b=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||b](this.state,a,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=
c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},interval:13,stop:function(){clearInterval(aa);aa=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===
b.elem}).length};var vb=/^t(?:able|d|h)$/i,Fa=/^(?:body|html)$/i;c.fn.offset="getBoundingClientRect"in u.documentElement?function(a){var b=this[0],d;if(a)return this.each(function(k){c.offset.setOffset(this,a,k)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);try{d=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,h=f.documentElement;if(!d||!c.contains(h,b))return d||{top:0,left:0};b=f.body;f=ea(f);return{top:d.top+(f.pageYOffset||c.support.boxModel&&
h.scrollTop||b.scrollTop)-(h.clientTop||b.clientTop||0),left:d.left+(f.pageXOffset||c.support.boxModel&&h.scrollLeft||b.scrollLeft)-(h.clientLeft||b.clientLeft||0)}}:function(a){var b=this[0];if(a)return this.each(function(s){c.offset.setOffset(this,a,s)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,e=b.ownerDocument,f,h=e.documentElement,k=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;
for(var l=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==k&&b!==h;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;f=e?e.getComputedStyle(b,null):b.currentStyle;l-=b.scrollTop;n-=b.scrollLeft;if(b===d){l+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&vb.test(b.nodeName))){l+=parseFloat(f.borderTopWidth)||0;n+=parseFloat(f.borderLeftWidth)||0}d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&f.overflow!=="visible"){l+=
parseFloat(f.borderTopWidth)||0;n+=parseFloat(f.borderLeftWidth)||0}f=f}if(f.position==="relative"||f.position==="static"){l+=k.offsetTop;n+=k.offsetLeft}if(c.offset.supportsFixedPosition&&f.position==="fixed"){l+=Math.max(h.scrollTop,k.scrollTop);n+=Math.max(h.scrollLeft,k.scrollLeft)}return{top:l,left:n}};c.offset={initialize:function(){var a=u.body,b=u.createElement("div"),d,e,f,h=parseFloat(c.css(a,"marginTop"))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",
height:"1px",visibility:"hidden"});b.innerHTML="<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>";a.insertBefore(b,a.firstChild);d=b.firstChild;e=d.firstChild;f=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=e.offsetTop!==5;this.doesAddBorderForTableAndCells=
f.offsetTop===5;e.style.position="fixed";e.style.top="20px";this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15;e.style.position=e.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==h;a.removeChild(b);c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.css(a,
"marginTop"))||0;d+=parseFloat(c.css(a,"marginLeft"))||0}return{top:b,left:d}},setOffset:function(a,b,d){var e=c.css(a,"position");if(e==="static")a.style.position="relative";var f=c(a),h=f.offset(),k=c.css(a,"top"),l=c.css(a,"left"),n=e==="absolute"&&c.inArray("auto",[k,l])>-1;e={};var s={};if(n)s=f.position();k=n?s.top:parseInt(k,10)||0;l=n?s.left:parseInt(l,10)||0;if(c.isFunction(b))b=b.call(a,d,h);if(b.top!=null)e.top=b.top-h.top+k;if(b.left!=null)e.left=b.left-h.left+l;"using"in b?b.using.call(a,
e):f.css(e)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),e=Fa.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.css(a,"marginTop"))||0;d.left-=parseFloat(c.css(a,"marginLeft"))||0;e.top+=parseFloat(c.css(b[0],"borderTopWidth"))||0;e.left+=parseFloat(c.css(b[0],"borderLeftWidth"))||0;return{top:d.top-e.top,left:d.left-e.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||u.body;a&&!Fa.test(a.nodeName)&&
c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(e){var f=this[0],h;if(!f)return null;if(e!==A)return this.each(function(){if(h=ea(this))h.scrollTo(!a?e:c(h).scrollLeft(),a?e:c(h).scrollTop());else this[d]=e});else return(h=ea(f))?"pageXOffset"in h?h[a?"pageYOffset":"pageXOffset"]:c.support.boxModel&&h.document.documentElement[d]||h.document.body[d]:f[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();
c.fn["inner"+b]=function(){return this[0]?parseFloat(c.css(this[0],d,"padding")):null};c.fn["outer"+b]=function(e){return this[0]?parseFloat(c.css(this[0],d,e?"margin":"border")):null};c.fn[d]=function(e){var f=this[0];if(!f)return e==null?null:this;if(c.isFunction(e))return this.each(function(h){var k=c(this);k[d](e.call(this,h,k[d]()))});return c.isWindow(f)?f.document.compatMode==="CSS1Compat"&&f.document.documentElement["client"+b]||f.document.body["client"+b]:f.nodeType===9?Math.max(f.documentElement["client"+
b],f.body["scroll"+b],f.documentElement["scroll"+b],f.body["offset"+b],f.documentElement["offset"+b]):e===A?parseFloat(c.css(f,d)):this.css(d,typeof e==="string"?e:e+"px")}})})(window);

(function(a){a.each(["touchstart","touchend","touchmove"],function(c,b){if(!document.addEventListener){return;}var d;document.addEventListener(b,function(f){if(f.touches&&f.touches.length>1){d=true;setTimeout(function(){d=false;},9);}},true);a.event.special["simple"+b]={setup:function(){a(this).bind(b,a.event.special["simple"+b].handler);return true;},teardown:function(){a(this).unbind(".touchdrag");return true;},handler:function(f,h){if(d||!f.originalEvent||!f.originalEvent.touches||f.originalEvent.touches.length!==1){return;}var g=f.originalEvent.touches.item(0);g.type="simple"+b;g.preventDefault=function(){f.preventDefault();};return a.event.handle.apply(this,[g,h]);}};});})(jQuery);
(function(b,a,c){b.fn.jScrollPane=function(h,j,e,i,f){function d(G,Q,az,aK,M,ab){var aE,S=this,aa,ao=az,z=aK,aq,V=M,ac=ab,C,v,aF,aM,aA,m,L,l,n,ad,W,au,Z,x,E,av,ak,ar,J,p,ax,aD,B,aB,aQ,k,aL,an=true,R=true,aP=false,o=false,ag=b.fn.mwheelIntent?"mwheelIntent.jsp":"mousewheel.jsp";aQ=G.css("paddingTop")+" "+G.css("paddingRight")+" "+G.css("paddingBottom")+" "+G.css("paddingLeft");k=(parseInt(G.css("paddingLeft"))||0)+(parseInt(G.css("paddingRight"))||0);var aO=0;var ae=20;aw(Q);function aw(aT){var aX,aW,aV,aS,aR,aU;aE=aT;if(aa==c){G.css({overflow:"hidden",padding:0});aa=b('<div class="jspPane" />').wrap(b('<div class="jspContainer" />').css({width:ao+"px",height:z+"px"}));G.wrapInner(aa.parent());aq=G.find(">.jspContainer");aa=aq.find(">.jspPane");aa.css("padding",aQ);}else{}C=V/ao;v=ac/z;aF=v>1;aM=C>1;if(!(aM||aF)){G.removeClass("jspScrollable");aa.css({top:0,width:aq.width()-k});r();H();T();A();ay();am();aq.find(">.jspVerticalBar,>.jspHorizontalBar").remove().end();W=null;au=null;aA=null;ar=null;J=null;l=null;}else{G.addClass("jspScrollable");aV=aE.maintainPosition&&(L||ad);if(aV){aS=aI();aR=aG();}aN();D();I();if(aV){P(aS);O(aR);}N();aj();at();if(aE.enableKeyboardNavigation){U();}if(aE.clickOnTrack){u();}F();if(aE.hijackInternalLinks){q();}}if(aE.autoReinitialise&&!aB){aB=setInterval(function(){aw(aE);},aE.autoReinitialiseDelay);}else{if(!aE.autoReinitialise&&aB){clearInterval(aB);}}G.trigger("jsp-initialised",[aM||aF]);}function aN(){if(aF){if(W==null){aq.append(b('<div class="jspVerticalBar" />').append(b('<div class="jspCap jspCapTop" />'),b('<div class="jspTrack" />').append(b('<div class="jspDrag" />').append(b('<div class="jspDragTop" />'),b('<div class="jspDragBottom" />'))),b('<div class="jspCap jspCapBottom" />')));}if(W==null){W=aq.find(">.jspVerticalBar");}if(au==null){au=W.find(">.jspTrack");}if(aA==null){aA=au.find(">.jspDrag");L=0;}if(aE.showArrows){av=b('<a class="jspArrow jspArrowUp" />').bind("mousedown.jsp",aJ(0,-1)).bind("click.jsp",aH);ak=b('<a class="jspArrow jspArrowDown" />').bind("mousedown.jsp",aJ(0,1)).bind("click.jsp",aH);if(aE.arrowScrollOnHover){av.bind("mouseover.jsp",aJ(0,-1,av));ak.bind("mouseover.jsp",aJ(0,1,ak));}ap(au,aE.verticalArrowPositions,av,ak);}x=z;aq.find(">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow").each(function(){x-=b(this).outerHeight();});aA.hover(function(){aA.addClass("jspHover");},function(){aA.removeClass("jspHover");}).bind("mousedown.jsp",function(aR){b("html").bind("dragstart.jsp selectstart.jsp",function(){return false;});aA.addClass("jspActive");var s=aR.pageY-aA.position().top;b("html").bind("mousemove.jsp",function(aS){if(aO==0||((new Date()).getTime()-aO)>ae){X(aS.pageY-s,false);aO=(new Date()).getTime();}}).bind("mouseup.jsp mouseleave.jsp",aC);return false;});t();}}function t(){au.height(x+"px");Z=aE.verticalGutter+au.outerWidth();aa.width(ao-Z-k);if(W.position().left==0){aa.css("margin-left",Z+"px");}}function D(){if(aM){if(ar==null){aq.append(b('<div class="jspHorizontalBar" />').append(b('<div class="jspCap jspCapLeft" />'),b('<div class="jspTrack" />').append(b('<div class="jspDrag" />').append(b('<div class="jspDragLeft" />'),b('<div class="jspDragRight" />'))),b('<div class="jspCap jspCapRight" />')));}if(ar==null){ar=aq.find(">.jspHorizontalBar");}if(J==null){J=ar.find(">.jspTrack");}if(l==null){l=J.find(">.jspDrag");ad=0;}if(aE.showArrows){aD=b('<a class="jspArrow jspArrowLeft" />').bind("mousedown.jsp",aJ(-1,0)).bind("click.jsp",aH);B=b('<a class="jspArrow jspArrowRight" />').bind("mousedown.jsp",aJ(1,0)).bind("click.jsp",aH);if(aE.arrowScrollOnHover){aD.bind("mouseover.jsp",aJ(-1,0,aD));B.bind("mouseover.jsp",aJ(1,0,B));}ap(J,aE.horizontalArrowPositions,aD,B);}l.hover(function(){l.addClass("jspHover");},function(){l.removeClass("jspHover");}).bind("mousedown.jsp",function(aR){b("html").bind("dragstart.jsp selectstart.jsp",function(){return false;});l.addClass("jspActive");var s=aR.pageX-l.position().left;b("html").bind("mousemove.jsp",function(aS){Y(aS.pageX-s,false);}).bind("mouseup.jsp mouseleave.jsp",aC);return false;});p=aq.innerWidth();al();}else{}}function al(){aq.find(">.jspHorizontalBar>.jspCap:visible,>.jspHorizontalBar>.jspArrow").each(function(){p-=b(this).outerWidth();});J.width(p+"px");}function I(){if(aM&&aF){var aR=J.outerHeight(),s=au.outerWidth();x-=aR;b(ar).find(">.jspCap:visible,>.jspArrow").each(function(){p+=b(this).outerWidth();});p-=s;J.parent().append(b('<div class="jspCorner" />').css("width",aR+"px"));t();al();}if(aM){aa.width((aq.outerWidth()-k)+"px");}v=ac/z;if(aM){ax=1/C*p;if(ax>aE.horizontalDragMaxWidth){ax=aE.horizontalDragMaxWidth;}else{if(ax<aE.horizontalDragMinWidth){ax=aE.horizontalDragMinWidth;}}l.width(ax+"px");n=p-ax;ai(ad);}if(aF){E=1/v*x;if(E>aE.verticalDragMaxHeight){E=aE.verticalDragMaxHeight;}else{if(E<aE.verticalDragMinHeight){E=aE.verticalDragMinHeight;}}aA.height(E+"px");m=x-E;ah(L);}}function ap(aS,aU,aR,s){var aW="before",aT="after",aV;if(aU=="os"){aU=/Mac/.test(navigator.platform)?"after":"split";}if(aU==aW){aT=aU;}else{if(aU==aT){aW=aU;aV=aR;aR=s;s=aV;}}aS[aW](aR)[aT](s);}function aJ(aR,s,aS){return function(){K(aR,s,this,aS);this.blur();return false;};}function K(aT,aR,aW,aV){aW=b(aW).addClass("jspActive");var aU,s=function(){if(aT!=0){Y(ad+aT*aE.arrowButtonSpeed,false);}if(aR!=0){X(L+aR*aE.arrowButtonSpeed,false);}},aS=setInterval(s,aE.arrowRepeatFreq);s();aU=aV==c?"mouseup.jsp":"mouseout.jsp";aV=aV||b("html");aV.bind(aU,function(){aW.removeClass("jspActive");clearInterval(aS);aV.unbind(aU);});}function u(){A();if(aF){au.bind("mousedown.jsp",function(aT){if(aT.originalTarget==c||aT.originalTarget==aT.currentTarget){var aS=b(this),s=setInterval(function(){var aU=aS.offset(),aV=aT.pageY-aU.top;if(L+E<aV){X(L+aE.trackClickSpeed);}else{if(aV<L){X(L-aE.trackClickSpeed);}else{aR();}}},aE.trackClickRepeatFreq),aR=function(){s&&clearInterval(s);s=null;b(document).unbind("mouseup.jsp",aR);};b(document).bind("mouseup.jsp",aR);return false;}});}if(aM){J.bind("mousedown.jsp",function(aT){if(aT.originalTarget==c||aT.originalTarget==aT.currentTarget){var aS=b(this),s=setInterval(function(){var aU=aS.offset(),aV=aT.pageX-aU.left;if(ad+ax<aV){Y(ad+aE.trackClickSpeed);}else{if(aV<ad){Y(ad-aE.trackClickSpeed);}else{aR();}}},aE.trackClickRepeatFreq),aR=function(){s&&clearInterval(s);s=null;b(document).unbind("mouseup.jsp",aR);};b(document).bind("mouseup.jsp",aR);return false;}});}}function A(){J&&J.unbind("mousedown.jsp");au&&au.unbind("mousedown.jsp");}function aC(){b("html").unbind("dragstart.jsp selectstart.jsp mousemove.jsp mouseup.jsp mouseleave.jsp");aA&&aA.removeClass("jspActive");l&&l.removeClass("jspActive");}function X(s,aR){if(!aF){return;}if(s<0){s=0;}else{if(s>m){s=m;}}if(aR==c){aR=aE.animateScroll;}if(aR){S.animate(aA,"top",s,ah);}else{aA.css("top",s);ah(s);}}function ah(aR){if(aR==c){aR=aA.position().top;}aq.scrollTop(0);L=aA.position().top;var aU=L==0,aS=L==m,aT=aR/m,s=-aT*(ac-z);if(an!=aU||aP!=aS){an=aU;aP=aS;G.trigger("jsp-arrow-change",[an,aP,R,o]);}y(aU,aS);aa.css("top",Math.round(s));G.trigger("jsp-scroll-y",[-s,aU,aS]);if(BrowserDetect&&BrowserDetect.browser=="Explorer"){aa.css("display","block");aa.css("display","inline-block");aq.css("display","block");aq.css("display","inline-block");}}function Y(aR,s){if(!aM){return;}if(aR<0){aR=0;}else{if(aR>n){aR=n;}}if(s==c){s=aE.animateScroll;}if(s){S.animate(l,"left",aR,ai);}else{l.css("left",aR);ai(aR);}}function ai(aR){if(aR==c){aR=l.position().left;}aq.scrollTop(0);ad=aR;var aU=ad==0,aT=ad==n,aS=aR/n,s=-aS*(V-ao);if(R!=aU||o!=aT){R=aU;o=aT;G.trigger("jsp-arrow-change",[an,aP,R,o]);}w(aU,aT);aa.css("left",s);G.trigger("jsp-scroll-x",[-s,aU,aT]);}function y(aR,s){if(aE.showArrows){av[aR?"addClass":"removeClass"]("jspDisabled");ak[s?"addClass":"removeClass"]("jspDisabled");}}function w(aR,s){if(aE.showArrows){aD[aR?"addClass":"removeClass"]("jspDisabled");B[s?"addClass":"removeClass"]("jspDisabled");}}function O(s,aR){var aS=s/(ac-z);X(aS*m,aR);}function P(aR,s){var aS=aR/(V-ao);Y(aS*n,s);}function af(a3,aY,aS){var aW,aT,aU,s=0,a2=0,aR,aX,a0,aZ,a1;try{aW=b(a3);}catch(aV){return;}aT=aW.outerHeight();aU=aW.outerWidth();aq.scrollTop(0);aq.scrollLeft(0);while(!aW.is(".jspPane")){s+=aW.position().top;a2+=aW.position().left;aW=aW.offsetParent();if(/^body|html$/i.test(aW[0].nodeName)){return;}}aR=aG();aX=aR+z;if(s<aR||aY){aZ=s-aE.verticalGutter;}else{if(s+aT>aX){aZ=s-z+aT+aE.verticalGutter;}}if(aZ){O(aZ,aS);}viewportLeft=aI();a0=viewportLeft+ao;if(a2<viewportLeft||aY){a1=a2-aE.horizontalGutter;}else{if(a2+aU>a0){a1=a2-ao+aU+aE.horizontalGutter;}}if(a1){P(a1,aS);}}function aI(){return -aa.position().left;}function aG(){return -aa.position().top;}function aj(){aq.unbind(ag).bind(ag,function(a3,a6,a9,a7){var aV=ad,aU=L;var s=1;var aR=((a9>0&&a9>s)||(a7>0&&a7>s)||(a9<0&&a9<(-1*s))||(a7<0&&a7<(-1*s)));var a4=0;var a5=0;if(aR){a4=18*aE.mouseWheelSpeed;a5=18*aE.mouseWheelSpeed;}else{a4=9*aE.mouseWheelSpeed;a5=9*aE.mouseWheelSpeed;}var aY=600;var aX=1800;var a1=0.35;if(ac<aX){if(ac>aY){var a8=1-((aX-ac)/(aX-aY));var aW=a8*(1-a1);a5=a5*(a1+aW);a4=a4*(a1+aW);}else{a5=a5*a1;a4=a4*a1;}}var aT=0;var aS=0;if(aR){aT=a9*(2*aE.mouseWheelSpeed);aS=a7*(2*aE.mouseWheelSpeed);}else{aT=a9*(1*aE.mouseWheelSpeed);aS=a7*(1*aE.mouseWheelSpeed);}if(a9!=0){if(a9<0){Y(ad+(aT-(1*a5)),false);}else{Y(ad+(aT+(1*a5)),false);}}if(a7!=0){var aZ=-aa.position().top;var a0=aZ;if(a7<0){a0-=-(1*a4);}else{a0-=(1*a4);}var a2=a0/(ac-z);var ba=Math.round(a2*m);if(BrowserDetect&&BrowserDetect.browser=="Explorer"){X(ba,false);}else{X(ba,true);}}return aV==ad&&aU==L;});}function r(){aq.unbind(ag);}function at(){ay();var s={x:0,y:0};aq.bind("simpletouchstart.jsp",function(aR){s.x=aR.pageX;s.y=aR.pageY;}).bind("simpletouchmove.jsp",function(aT){var aS=ad,aR=L,aU,aV;if(aA&&aA[0]===aT.target){aU=(s.y-aT.pageY)*-1;}else{if(l&&l[0]===aT.target){aV=(s.x-aT.pageX)*-1;}else{aU=s.y-aT.pageY;aV=s.x-aT.pageX;}}if(aV!==c){Y(ad+aV,false);}if(aU!==c){X(L+aU,false);}s.x=aT.pageX;s.y=aT.pageY;return aS==ad&&aR==L;});}function ay(){aq.unbind("simpletouchstart.jsp simpletouchend.jsp simpletouchmove.jsp");}function aH(){return false;}function N(){aa.unbind("focusin.jsp").bind("focusin.jsp",function(s){if(BrowserDetect&&BrowserDetect.browser=="Explorer"){return;}else{if(s.target===aa[0]){return;}af(s.target,false);}});}function H(){aa.unbind("focusin.jsp");}function U(){var aR,s;G.attr("tabindex",0).unbind("keydown.jsp").bind("keydown.jsp",function(a0){if(a0.target!==G[0]){return;}var aW=ad,aV=L,aT=aR?32:128;switch(a0.keyCode){case 40:var a1=600;var aY=1800;var a4=0.35;if(ac<aY){if(ac>a1){var a2=1-((aY-ac)/(aY-a1));var aZ=a2*(1-a4);aT=aT*(a4+aZ);}else{aT=aT*a4;}}var aU=-aa.position().top;var aX=aU;aX-=-(1*aT);var a3=aX/(ac-z);var aS=Math.round(a3*m);if(aR||(BrowserDetect&&BrowserDetect.browser=="Explorer")){X(aS,false);}else{X(aS,true);}break;case 38:var a1=600;var aY=1800;var a4=0.35;if(ac<aY){if(ac>a1){var a2=1-((aY-ac)/(aY-a1));var aZ=a2*(1-a4);aT=aT*(a4+aZ);}else{aT=aT*a4;}}var aU=-aa.position().top;var aX=aU;aX-=(1*aT);var a3=aX/(ac-z);var aS=Math.round(a3*m);if(aR||(BrowserDetect&&BrowserDetect.browser=="Explorer")){X(aS,false);}else{X(aS,true);}break;case 34:case 32:O(aG()+Math.max(32,z)-16);break;case 33:O(aG()-z+16);break;case 35:O(ac-z);break;case 36:O(0);break;case 39:Y(ad+aT,false);break;case 37:Y(ad-aT,false);break;}if(!(aW==ad&&aV==L)){aR=true;clearTimeout(s);s=setTimeout(function(){aR=false;},260);return false;}});if(aE.hideFocus){G.css("outline","none");if("hideFocus" in aq[0]){G.attr("hideFocus",true);}}else{G.css("outline","");if("hideFocus" in aq[0]){G.attr("hideFocus",false);}}}function T(){G.attr("tabindex","-1").removeAttr("tabindex").unbind("keydown.jsp");}function F(){if(location.hash&&location.hash.length>1){var aS,aR;try{aS=b(location.hash);}catch(s){return;}if(aS.length&&aa.find(aS)){if(aq.scrollTop()==0){aR=setInterval(function(){if(aq.scrollTop()>0){af(location.hash,true);b(document).scrollTop(aq.position().top);clearInterval(aR);}},50);}else{af(location.hash,true);b(document).scrollTop(aq.position().top);}}}}function am(){b("a.jspHijack").unbind("click.jsp-hijack").removeClass("jspHijack");}function q(){am();b("a[href^=#]").addClass("jspHijack").bind("click.jsp-hijack",function(){var s=this.href.split("#"),aR;if(s.length>1){aR=s[1];if(aR.length>0&&aa.find("#"+aR).length>0){af("#"+aR,true);return false;}}});}b.extend(S,{setContentHeight:function(s){ac=s;},setContentWidth:function(s){V=s;},setPaneHeight:function(s){z=s;},setPaneWidth:function(s){ao=s;},reinitialise:function(aR){aR=b.extend({},aR,aE);aw(aR);},scrollToElement:function(aS,aR,s){af(aS,aR,s);},scrollTo:function(aS,s,aR){P(aS,aR);O(s,aR);},scrollToX:function(aR,s){P(aR,s);},scrollToY:function(s,aR){O(s,aR);},scrollBy:function(aR,s,aS){S.scrollByX(aR,aS);S.scrollByY(s,aS);},scrollByX:function(s,aS){var aR=aI()+s,aT=aR/(V-ao);Y(aT*n,aS);},scrollByY:function(s,aS){var aR=aG()+s,aT=aR/(ac-z);X(aT*m,aS);},animate:function(aR,aU,s,aT){var aS={};aS[aU]=s;aR.animate(aS,{duration:aE.animateDuration,ease:aE.animateEase,queue:false,step:aT,complete:aT});},getContentPositionX:function(){return aI();},getContentPositionY:function(){return aG();},getIsScrollableH:function(){return aM;},getIsScrollableV:function(){return aF;},getContentPane:function(){return aa;},scrollToBottom:function(s){X(m,s);},hijackInternalLinks:function(){q();}});}h=b.extend({},b.fn.jScrollPane.defaults,h);var g;this.each(function(){var k=b(this),l=k.data("jsp");if(l){l.reinitialise(h);}else{l=new d(k,h,j,e,i,f);k.data("jsp",l);}g=g?g.add(k):k;});return g;};b.fn.jScrollPane.defaults={showArrows:false,maintainPosition:true,clickOnTrack:true,autoReinitialise:false,autoReinitialiseDelay:500,verticalDragMinHeight:0,verticalDragMaxHeight:99999,horizontalDragMinWidth:0,horizontalDragMaxWidth:99999,animateScroll:false,animateDuration:25,animateEase:"linear",hijackInternalLinks:false,verticalGutter:4,horizontalGutter:4,mouseWheelSpeed:10,arrowButtonSpeed:10,arrowRepeatFreq:100,arrowScrollOnHover:false,trackClickSpeed:30,trackClickRepeatFreq:100,verticalArrowPositions:"split",horizontalArrowPositions:"split",enableKeyboardNavigation:true,hideFocus:false};})(jQuery,this);
(function($){var types=['DOMMouseScroll','mousewheel'];$.event.special.mousewheel={setup:function(){if(this.addEventListener){for(var i=types.length;i;){this.addEventListener(types[--i],handler,false)}}else{this.onmousewheel=handler}},teardown:function(){if(this.removeEventListener){for(var i=types.length;i;){this.removeEventListener(types[--i],handler,false)}}else{this.onmousewheel=null}}};$.fn.extend({mousewheel:function(fn){return fn?this.bind("mousewheel",fn):this.trigger("mousewheel")},unmousewheel:function(fn){return this.unbind("mousewheel",fn)}});function handler(event){var orgEvent=event||window.event,args=[].slice.call(arguments,1),delta=0,returnValue=true,deltaX=0,deltaY=0;event=$.event.fix(orgEvent);event.type="mousewheel";if(event.wheelDelta){delta=event.wheelDelta/120}if(event.detail){delta=-event.detail/3}deltaY=delta;if(orgEvent.axis!==undefined&&orgEvent.axis===orgEvent.HORIZONTAL_AXIS){deltaY=0;deltaX=-1*delta}if(orgEvent.wheelDeltaY!==undefined){deltaY=orgEvent.wheelDeltaY/120}if(orgEvent.wheelDeltaX!==undefined){deltaX=-1*orgEvent.wheelDeltaX/120}args.unshift(event,delta,deltaX,deltaY);return $.event.handle.apply(this,args)}})(jQuery);

(function($){var mwheelI={pos:[-260,-260]},minDif=3,doc=document,root=doc.documentElement,body=doc.body,longDelay,shortDelay;function unsetPos(){if(this===mwheelI.elem){mwheelI.pos=[-260,-260];mwheelI.elem=false;minDif=3}}$.event.special.mwheelIntent={setup:function(){var jElm=$(this).bind('mousewheel',$.event.special.mwheelIntent.handler);if(this!==doc&&this!==root&&this!==body){jElm.bind('mouseleave',unsetPos)}jElm=null;return true},teardown:function(){$(this).unbind('mousewheel',$.event.special.mwheelIntent.handler).unbind('mouseleave',unsetPos);return true},handler:function(e,d){var pos=[e.clientX,e.clientY];if(this===mwheelI.elem||Math.abs(mwheelI.pos[0]-pos[0])>minDif||Math.abs(mwheelI.pos[1]-pos[1])>minDif){mwheelI.elem=this;mwheelI.pos=pos;minDif=250;clearTimeout(shortDelay);shortDelay=setTimeout(function(){minDif=10},200);clearTimeout(longDelay);longDelay=setTimeout(function(){minDif=3},1500);e=$.extend({},e,{type:'mwheelIntent'});return $.event.handle.apply(this,arguments)}}};$.fn.extend({mwheelIntent:function(fn){return fn?this.bind("mwheelIntent",fn):this.trigger("mwheelIntent")},unmwheelIntent:function(fn){return this.unbind("mwheelIntent",fn)}});$(function(){body=doc.body;$(doc).bind('mwheelIntent.mwheelIntentDefault',$.noop)})})(jQuery);

(function(){function g(o){console.log("$f.fireEvent",[].slice.call(o));}function k(q){if(!q||typeof q!="object"){return q;}var o=new q.constructor();for(var p in q){if(q.hasOwnProperty(p)){o[p]=k(q[p]);}}return o;}function m(t,q){if(!t){return;}var o,p=0,r=t.length;if(r===undefined){for(o in t){if(q.call(t[o],o,t[o])===false){break;}}}else{for(var s=t[0];p<r&&q.call(s,p,s)!==false;s=t[++p]){}}return t;}function c(o){return document.getElementById(o);}function i(q,p,o){if(typeof p!="object"){return q;}if(q&&p){m(p,function(r,s){if(!o||typeof s!="function"){q[r]=s;}});}return q;}function n(s){var q=s.indexOf(".");if(q!=-1){var p=s.slice(0,q)||"*";var o=s.slice(q+1,s.length);var r=[];m(document.getElementsByTagName(p),function(){if(this.className&&this.className.indexOf(o)!=-1){r.push(this);}});return r;}}function f(o){o=o||window.event;if(o.preventDefault){o.stopPropagation();o.preventDefault();}else{o.returnValue=false;o.cancelBubble=true;}return false;}function j(q,o,p){q[o]=q[o]||[];q[o].push(p);}function e(){return"_"+(""+Math.random()).slice(2,10);}var h=function(t,r,s){var q=this,p={},u={};q.index=r;if(typeof t=="string"){t={url:t};}i(this,t,true);m(("Begin*,Start,Pause*,Resume*,Seek*,Stop*,Finish*,LastSecond,Update,BufferFull,BufferEmpty,BufferStop").split(","),function(){var v="on"+this;if(v.indexOf("*")!=-1){v=v.slice(0,v.length-1);var w="onBefore"+v.slice(2);q[w]=function(x){j(u,w,x);return q;};}q[v]=function(x){j(u,v,x);return q;};if(r==-1){if(q[w]){s[w]=q[w];}if(q[v]){s[v]=q[v];}}});i(this,{onCuepoint:function(x,w){if(arguments.length==1){p.embedded=[null,x];return q;}if(typeof x=="number"){x=[x];}var v=e();p[v]=[x,w];if(s.isLoaded()){s._api().fp_addCuepoints(x,r,v);}return q;},update:function(w){i(q,w);if(s.isLoaded()){s._api().fp_updateClip(w,r);}var v=s.getConfig();var x=(r==-1)?v.clip:v.playlist[r];i(x,w,true);},_fireEvent:function(v,y,w,A){if(v=="onLoad"){m(p,function(B,C){if(C[0]){s._api().fp_addCuepoints(C[0],r,B);}});return false;}A=A||q;if(v=="onCuepoint"){var z=p[y];if(z){return z[1].call(s,A,w);}}if(y&&"onBeforeBegin,onMetaData,onStart,onUpdate,onResume".indexOf(v)!=-1){i(A,y);if(y.metaData){if(!A.duration){A.duration=y.metaData.duration;}else{A.fullDuration=y.metaData.duration;}}}var x=true;m(u[v],function(){x=this.call(s,A,y,w);});return x;}});if(t.onCuepoint){var o=t.onCuepoint;q.onCuepoint.apply(q,typeof o=="function"?[o]:o);delete t.onCuepoint;}m(t,function(v,w){if(typeof w=="function"){j(u,v,w);delete t[v];}});if(r==-1){s.onCuepoint=this.onCuepoint;}};var l=function(p,r,q,t){var o=this,s={},u=false;if(t){i(s,t);}m(r,function(v,w){if(typeof w=="function"){s[v]=w;delete r[v];}});i(this,{animate:function(y,z,x){if(!y){return o;}if(typeof z=="function"){x=z;z=500;}if(typeof y=="string"){var w=y;y={};y[w]=z;z=500;}if(x){var v=e();s[v]=x;}if(z===undefined){z=500;}r=q._api().fp_animate(p,y,z,v);return o;},css:function(w,x){if(x!==undefined){var v={};v[w]=x;w=v;}r=q._api().fp_css(p,w);i(o,r);return o;},show:function(){this.display="block";q._api().fp_showPlugin(p);return o;},hide:function(){this.display="none";q._api().fp_hidePlugin(p);return o;},toggle:function(){this.display=q._api().fp_togglePlugin(p);return o;},fadeTo:function(y,x,w){if(typeof x=="function"){w=x;x=500;}if(w){var v=e();s[v]=w;}this.display=q._api().fp_fadeTo(p,y,x,v);this.opacity=y;return o;},fadeIn:function(w,v){return o.fadeTo(1,w,v);},fadeOut:function(w,v){return o.fadeTo(0,w,v);},getName:function(){return p;},getPlayer:function(){return q;},_fireEvent:function(w,v,x){if(w=="onUpdate"){var z=q._api().fp_getPlugin(p);if(!z){return;}i(o,z);delete o.methods;if(!u){m(z.methods,function(){var B=""+this;o[B]=function(){var C=[].slice.call(arguments);var D=q._api().fp_invoke(p,B,C);return D==="undefined"||D===undefined?o:D;};});u=true;}}var A=s[w];if(A){var y=A.apply(o,v);if(w.slice(0,1)=="_"){delete s[w];}return y;}return o;}});};function b(q,G,t){var w=this,v=null,D=false,u,s,F=[],y={},x={},E,r,p,C,o,A;i(w,{id:function(){return E;},isLoaded:function(){return(v!==null&&v.fp_play!==undefined&&!D);},getParent:function(){return q;},hide:function(H){if(H){q.style.height="0px";}if(w.isLoaded()){v.style.height="0px";}return w;},show:function(){q.style.height=A+"px";if(w.isLoaded()){v.style.height=o+"px";}return w;},isHidden:function(){return w.isLoaded()&&parseInt(v.style.height,10)===0;},load:function(J){if(!w.isLoaded()&&w._fireEvent("onBeforeLoad")!==false){var H=function(){u=q.innerHTML;if(u&&!flashembed.isSupported(G.version)){q.innerHTML="";}if(J){J.cached=true;j(x,"onLoad",J);}flashembed(q,G,{config:t});};var I=0;m(a,function(){this.unload(function(K){if(++I==a.length){H();}});});}return w;},unload:function(J){if(this.isFullscreen()&&/WebKit/i.test(navigator.userAgent)){if(J){J(false);}return w;}if(u.replace(/\s/g,"")!==""){if(w._fireEvent("onBeforeUnload")===false){if(J){J(false);}return w;}D=true;try{if(v){v.fp_close();w._fireEvent("onUnload");}}catch(H){}var I=function(){v=null;q.innerHTML=u;D=false;if(J){J(true);}};setTimeout(I,50);}else{if(J){J(false);}}return w;},getClip:function(H){if(H===undefined){H=C;}return F[H];},getCommonClip:function(){return s;},getPlaylist:function(){return F;},getPlugin:function(H){var J=y[H];if(!J&&w.isLoaded()){var I=w._api().fp_getPlugin(H);if(I){J=new l(H,I,w);y[H]=J;}}return J;},getScreen:function(){return w.getPlugin("screen");},getControls:function(){return w.getPlugin("controls")._fireEvent("onUpdate");},getLogo:function(){try{return w.getPlugin("logo")._fireEvent("onUpdate");}catch(H){}},getPlay:function(){return w.getPlugin("play")._fireEvent("onUpdate");},getConfig:function(H){return H?k(t):t;},getFlashParams:function(){return G;},loadPlugin:function(K,J,M,L){if(typeof M=="function"){L=M;M={};}var I=L?e():"_";w._api().fp_loadPlugin(K,J,M,I);var H={};H[I]=L;var N=new l(K,null,w,H);y[K]=N;return N;},getState:function(){return w.isLoaded()?v.fp_getState():-1;},play:function(I,H){var J=function(){if(I!==undefined){w._api().fp_play(I,H);}else{w._api().fp_play();}};if(w.isLoaded()){J();}else{if(D){setTimeout(function(){w.play(I,H);},50);}else{w.load(function(){J();});}}return w;},getVersion:function(){var I="flowplayer.js 3.2.6";if(w.isLoaded()){var H=v.fp_getVersion();H.push(I);return H;}return I;},_api:function(){if(!w.isLoaded()){throw"Flowplayer "+w.id()+" not loaded when calling an API method";}return v;},setClip:function(H){w.setPlaylist([H]);return w;},getIndex:function(){return p;},_swfHeight:function(){return v.clientHeight;}});m(("Click*,Load*,Unload*,Keypress*,Volume*,Mute*,Unmute*,PlaylistReplace,ClipAdd,Fullscreen*,FullscreenExit,Error,MouseOver,MouseOut").split(","),function(){var H="on"+this;if(H.indexOf("*")!=-1){H=H.slice(0,H.length-1);var I="onBefore"+H.slice(2);w[I]=function(J){j(x,I,J);return w;};}w[H]=function(J){j(x,H,J);return w;};});m(("pause,resume,mute,unmute,stop,toggle,seek,getStatus,getVolume,setVolume,getTime,isPaused,isPlaying,startBuffering,stopBuffering,isFullscreen,toggleFullscreen,reset,close,setPlaylist,addClip,playFeed,setKeyboardShortcutsEnabled,isKeyboardShortcutsEnabled").split(","),function(){var H=this;w[H]=function(J,I){if(!w.isLoaded()){return w;}var K=null;if(J!==undefined&&I!==undefined){K=v["fp_"+H](J,I);}else{try{K=(J===undefined)?v["fp_"+H]():v["fp_"+H](J);}catch(L){}}return K==="undefined"||K===undefined?w:K;};});w._fireEvent=function(Q){if(typeof Q=="string"){Q=[Q];}var R=Q[0],O=Q[1],M=Q[2],L=Q[3],K=0;if(t.debug){g(Q);}if(!w.isLoaded()&&R=="onLoad"&&O=="player"){v=v||c(r);o=w._swfHeight();m(F,function(){this._fireEvent("onLoad");});m(y,function(S,T){T._fireEvent("onUpdate");});s._fireEvent("onLoad");}if(R=="onLoad"&&O!="player"){return;}if(R=="onError"){if(typeof O=="string"||(typeof O=="number"&&typeof M=="number")){O=M;M=L;}}if(R=="onContextMenu"){m(t.contextMenu[O],function(S,T){T.call(w);});return;}if(R=="onPluginEvent"||R=="onBeforePluginEvent"){var H=O.name||O;var I=y[H];if(I){I._fireEvent("onUpdate",O);return I._fireEvent(M,Q.slice(3));}return;}if(R=="onPlaylistReplace"){F=[];var N=0;m(O,function(){F.push(new h(this,N++,w));});}if(R=="onClipAdd"){if(O.isInStream){return;}O=new h(O,M,w);F.splice(M,0,O);for(K=M+1;K<F.length;K++){F[K].index++;}}var P=true;if(typeof O=="number"&&O<F.length){C=O;var J=F[O];if(J){P=J._fireEvent(R,M,L);}if(!J||P!==false){P=s._fireEvent(R,M,L,J);}}m(x[R],function(){P=this.call(w,O,M);if(this.cached){x[R].splice(K,1);}if(P===false){return false;}K++;});return P;};function B(){if($f(q)){$f(q).getParent().innerHTML="";p=$f(q).getIndex();a[p]=w;}else{a.push(w);p=a.length-1;}A=parseInt(q.style.height,10)||q.clientHeight;E=q.id||"fp"+e();r=G.id||E+"_api";G.id=r;t.playerId=E;if(typeof t=="string"){t={clip:{url:t}};}if(typeof t.clip=="string"){t.clip={url:t.clip};}t.clip=t.clip||{};if(q.getAttribute("href",2)&&!t.clip.url){t.clip.url=q.getAttribute("href",2);}s=new h(t.clip,-1,w);t.playlist=t.playlist||[t.clip];var I=0;m(t.playlist,function(){var K=this;if(typeof K=="object"&&K.length){K={url:""+K};}m(t.clip,function(L,M){if(M!==undefined&&K[L]===undefined&&typeof M!="function"){K[L]=M;}});t.playlist[I]=K;K=new h(K,I,w);F.push(K);I++;});m(t,function(K,L){if(typeof L=="function"){if(s[K]){s[K](L);}else{j(x,K,L);}delete t[K];}});m(t.plugins,function(K,L){if(L){y[K]=new l(K,L,w);}});if(!t.plugins||t.plugins.controls===undefined){y.controls=new l("controls",null,w);}y.canvas=new l("canvas",null,w);u=q.innerHTML;function J(L){var K=w.hasiPadSupport&&w.hasiPadSupport();if(/iPad|iPhone|iPod/i.test(navigator.userAgent)&&!/.flv$/i.test(F[0].url)&&!K){return true;}if(!w.isLoaded()&&w._fireEvent("onBeforeClick")!==false){w.load();}return f(L);}function H(){if(u.replace(/\s/g,"")!==""){if(q.addEventListener){q.addEventListener("click",J,false);}else{if(q.attachEvent){q.attachEvent("onclick",J);}}}else{if(q.addEventListener){q.addEventListener("click",f,false);}w.load();}}setTimeout(H,0);}if(typeof q=="string"){var z=c(q);if(!z){throw"Flowplayer cannot access element: "+q;}q=z;B();}else{B();}}var a=[];function d(o){this.length=o.length;this.each=function(p){m(o,p);};this.size=function(){return o.length;};}window.flowplayer=window.$f=function(){var p=null;var o=arguments[0];if(!arguments.length){m(a,function(){if(this.isLoaded()){p=this;return false;}});return p||a[0];}if(arguments.length==1){if(typeof o=="number"){return a[o];}else{if(o=="*"){return new d(a);}m(a,function(){if(this.id()==o.id||this.id()==o||this.getParent()==o){p=this;return false;}});return p;}}if(arguments.length>1){var t=arguments[1],q=(arguments.length==3)?arguments[2]:{};if(typeof t=="string"){t={src:t};}t=i({bgcolor:"#000000",version:[9,0],expressInstall:"http://static.flowplayer.org/swf/expressinstall.swf",cachebusting:false},t);if(typeof o=="string"){if(o.indexOf(".")!=-1){var s=[];m(n(o),function(){s.push(new b(this,k(t),k(q)));});return new d(s);}else{var r=c(o);return new b(r!==null?r:o,t,q);}}else{if(o){return new b(o,t,q);}}}return null;};i(window.$f,{fireEvent:function(){var o=[].slice.call(arguments);var q=$f(o[0]);return q?q._fireEvent(o.slice(1)):null;},addPlugin:function(o,p){b.prototype[o]=p;return $f;},each:m,extend:i});if(typeof jQuery=="function"){jQuery.fn.flowplayer=function(q,p){if(!arguments.length||typeof arguments[0]=="number"){var o=[];this.each(function(){var r=$f(this);if(r){o.push(r);}});return arguments.length?o[arguments[0]]:new d(o);}return this.each(function(){$f(this,k(q),p?k(p):{});});};}})();(function(){var h=document.all,j="http://www.adobe.com/go/getflashplayer",c=typeof jQuery=="function",e=/(\d+)[^\d]+(\d+)[^\d]*(\d*)/,b={width:"100%",height:"100%",id:"_"+(""+Math.random()).slice(9),allowfullscreen:true,allowscriptaccess:"always",quality:"high",version:[3,0],onFail:null,expressInstall:null,w3c:false,cachebusting:false};if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};});}function i(m,l){if(l){for(var f in l){if(l.hasOwnProperty(f)){m[f]=l[f];}}}return m;}function a(f,n){var m=[];for(var l in f){if(f.hasOwnProperty(l)){m[l]=n(f[l]);}}return m;}window.flashembed=function(f,m,l){if(typeof f=="string"){f=document.getElementById(f.replace("#",""));}if(!f){return;}if(typeof m=="string"){m={src:m};}return new d(f,i(i({},b),m),l);};var g=i(window.flashembed,{conf:b,getVersion:function(){var m,f;try{f=navigator.plugins["Shockwave Flash"].description.slice(16);}catch(o){try{m=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");f=m&&m.GetVariable("$version");}catch(n){try{m=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");f=m&&m.GetVariable("$version");}catch(l){}}}f=e.exec(f);return f?[f[1],f[3]]:[0,0];},asString:function(l){if(l===null||l===undefined){return null;}var f=typeof l;if(f=="object"&&l.push){f="array";}switch(f){case"string":l=l.replace(new RegExp('(["\\\\])',"g"),"\\$1");l=l.replace(/^\s?(\d+\.?\d+)%/,"$1pct");return'"'+l+'"';case"array":return"["+a(l,function(o){return g.asString(o);}).join(",")+"]";case"function":return'"function()"';case"object":var m=[];for(var n in l){if(l.hasOwnProperty(n)){m.push('"'+n+'":'+g.asString(l[n]));}}return"{"+m.join(",")+"}";}return String(l).replace(/\s/g," ").replace(/\'/g,'"');},getHTML:function(o,l){o=i({},o);var n='<object width="'+o.width+'" height="'+o.height+'" id="'+o.id+'" name="'+o.id+'"';if(o.cachebusting){o.src+=((o.src.indexOf("?")!=-1?"&":"?")+Math.random());}if(o.w3c||!h){n+=' data="'+o.src+'" type="application/x-shockwave-flash"';}else{n+=' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';}n+=">";if(o.w3c||h){n+='<param name="movie" value="'+o.src+'" />';}o.width=o.height=o.id=o.w3c=o.src=null;o.onFail=o.version=o.expressInstall=null;for(var m in o){if(o[m]){n+='<param name="'+m+'" value="'+o[m]+'" />';}}var p="";if(l){for(var f in l){if(l[f]){var q=l[f];p+=f+"="+(/function|object/.test(typeof q)?g.asString(q):q)+"&";}}p=p.slice(0,-1);n+='<param name="flashvars" value=\''+p+"' />";}n+="</object>";return n;},isSupported:function(f){return k[0]>f[0]||k[0]==f[0]&&k[1]>=f[1];}});var k=g.getVersion();function d(f,n,m){if(g.isSupported(n.version)){f.innerHTML=g.getHTML(n,m);}else{if(n.expressInstall&&g.isSupported([6,65])){f.innerHTML=g.getHTML(i(n,{src:n.expressInstall}),{MMredirectURL:location.href,MMplayerType:"PlugIn",MMdoctitle:document.title});}else{if(!f.innerHTML.replace(/\s/g,"")){f.innerHTML="<h2>Flash version "+n.version+" or greater is required</h2><h3>"+(k[0]>0?"Your version is "+k:"You have no flash plugin installed")+"</h3>"+(f.tagName=="A"?"<p>Click here to download latest version</p>":"<p>Download latest version from <a href='"+j+"'>here</a></p>");if(f.tagName=="A"){f.onclick=function(){location.href=j;};}}if(n.onFail){var l=n.onFail.call(this);if(typeof l=="string"){f.innerHTML=l;}}}}if(h){window[n.id]=document.getElementById(n.id);}i(this,{getRoot:function(){return f;},getOptions:function(){return n;},getConf:function(){return m;},getApi:function(){return f.firstChild;}});}if(c){jQuery.tools=jQuery.tools||{version:"3.2.6"};jQuery.tools.flashembed={conf:b};jQuery.fn.flashembed=function(l,f){return this.each(function(){jQuery(this).data("flashembed",flashembed(this,l,f));});};}})();
$f.addPlugin("ipad",function(t){var L=-1;var u=0;var v=1;var J=2;var z=3;var F=4;var g=5;var f=this;var N=1;var M=false;var C=false;var q=false;var o=0;var K=[];var c={accelerated:false,autoBuffering:false,autoPlay:true,baseUrl:null,bufferLength:3,connectionProvider:null,cuepointMultiplier:1000,cuepoints:[],controls:{},duration:0,extension:"",fadeInSpeed:1000,fadeOutSpeed:1000,image:false,linkUrl:null,linkWindow:"_self",live:false,metaData:{},originalUrl:null,position:0,playlist:[],provider:"http",scaling:"scale",seekableOnBegin:false,start:0,url:null,urlResolvers:[]};var s=L;var m=L;var p=/iPad|iPhone|iPod/i.test(navigator.userAgent);var b=null;function j(R,Q,O){if(Q){for(key in Q){if(key){if(Q[key]&&typeof Q[key]=="function"&&!O){continue}if(Q[key]&&typeof Q[key]=="object"&&Q[key].length==undefined){var P={};j(P,Q[key]);R[key]=P}else{R[key]=Q[key]}}}}return R}var w={simulateiDevice:false,controlsSizeRatio:1.5,controls:true,debug:false,validExtensions:/mov|m4v|mp4|avi/gi};j(w,t);function e(){if(w.debug){if(p){var O=[].splice.call(arguments,0).join(", ");console.log.apply(console,[O])}else{console.log.apply(console,arguments)}}}function i(O){switch(O){case -1:return"UNLOADED";case 0:return"LOADED";case 1:return"UNSTARTED";case 2:return"BUFFERING";case 3:return"PLAYING";case 4:return"PAUSED";case 5:return"ENDED"}return"UNKOWN"}function D(O){var P=$f.fireEvent(f.id(),"onBefore"+O,o);return P!==false}function H(O){O.stopPropagation();O.preventDefault();return false}function G(P,O){if(s==L&&!O){return}m=s;s=P;y();if(P==z){l()}e(i(P))}function x(){b.fp_stop();M=false;C=false;q=false;G(v);G(v)}var d=null;function l(){if(d){return}console.log("starting tracker");d=setInterval(A,100);A()}function y(){clearInterval(d);d=null}function A(){var P=Math.floor(b.fp_getTime()*10)*100;var Q=Math.floor(b.duration*10)*100;var R=(new Date()).time;function O(U,S){U=U>=0?U:Q-Math.abs(U);for(var T=0;T<S.length;T++){if(S[T].lastTimeFired>R){S[T].lastTimeFired=-1}else{if(S[T].lastTimeFired+500>R){continue}else{if(U==P||(P-500<U&&P>U)){S[T].lastTimeFired=R;$f.fireEvent(f.id(),"onCuepoint",o,S[T].fnId,S[T].parameters)}}}}}$f.each(f.getCommonClip()._cuepoints,O);$f.each(K[o]._cuepoints,O)}function B(){x();q=true;b.fp_seek(0)}function I(O){}function n(){function O(Q){var P={};j(P,c);j(P,f.getCommonClip());j(P,Q);if(P.ipadUrl){url=decodeURIComponent(P.ipadUrl)}else{if(P.url){url=P.url}}if(url&&url.indexOf("://")==-1&&P.baseUrl){url=P.baseUrl+"/"+url}P.originalUrl=P.url;P.completeUrl=url;P.extension=P.completeUrl.substr(P.completeUrl.lastIndexOf("."));P.type="video";delete P.index;e("fixed clip",P);return P}b.fp_play=function(S,Q,U){var P=null;var T=true;var R=true;e("Calling play() "+S,S);if(Q){e("ERROR: inStream clips not yet supported");return}if(S!==undefined){if(typeof S=="number"){if(o>=K.length){return}o=S;S=K[o]}else{if(typeof S=="string"){S={url:S}}b.fp_setPlaylist(S.length!==undefined?S:[S])}if(!w.validExtensions.test(K[o].extension)){if(K.length>1&&o<(K.length-1)){e("Not last clip in the playlist, moving to next one");b.fp_play(++o,false,true)}return}S=K[o];P=S.completeUrl;if(S.autoBuffering!==undefined&&S.autoBuffering===false){T=false}if(S.autoPlay===undefined||S.autoPlay===true||U===true){T=true;R=true}else{R=false}}else{e("clip was not given, simply calling video.play, if not already buffering");if(s!=J){b.play()}return}e("about to play "+P,T,R);x();if(P){e("Changing SRC attribute"+P);b.setAttribute("src",P)}if(T){if(!D("Begin")){return false}$f.fireEvent(f.id(),"onBegin",o);e("calling video.load()");b.load()}if(R){e("calling video.play()");b.play()}};b.fp_pause=function(){e("pause called");if(!D("Pause")){return false}b.pause()};b.fp_resume=function(){e("resume called");if(!D("Resume")){return false}b.play()};b.fp_stop=function(){e("stop called");if(!D("Stop")){return false}C=true;b.pause();try{b.currentTime=0}catch(P){}};b.fp_seek=function(P){e("seek called "+P);if(!D("Seek")){return false}var T=0;var P=P+"";if(P.charAt(P.length-1)=="%"){var Q=parseInt(P.substr(0,P.length-1))/100;var S=b.duration;T=S*Q}else{T=P}try{b.currentTime=T}catch(R){e("Wrong seek time")}};b.fp_getTime=function(){return b.currentTime};b.fp_mute=function(){e("mute called");if(!D("Mute")){return false}N=b.volume;b.volume=0};b.fp_unmute=function(){if(!D("Unmute")){return false}b.volume=N};b.fp_getVolume=function(){return b.volume*100};b.fp_setVolume=function(P){if(!D("Volume")){return false}b.volume=P/100};b.fp_toggle=function(){e("toggle called");if(f.getState()==g){B();return}if(b.paused){b.fp_play()}else{b.fp_pause()}};b.fp_isPaused=function(){return b.paused};b.fp_isPlaying=function(){return !b.paused};b.fp_getPlugin=function(Q){if(Q=="canvas"||Q=="controls"){var P=f.getConfig();return P.plugins&&P.plugins[Q]?P.plugins[Q]:null}e("ERROR: no support for "+Q+" plugin on iDevices");return null};b.fp_close=function(){G(L);b.parentNode.removeChild(b);b=null};b.fp_getStatus=function(){var Q=0;var R=0;try{Q=b.buffered.start();R=b.buffered.end()}catch(P){}return{bufferStart:Q,bufferEnd:R,state:s,time:b.fp_getTime(),muted:b.muted,volume:b.fp_getVolume()}};b.fp_getState=function(){return s};b.fp_startBuffering=function(){if(s==v){b.load()}};b.fp_setPlaylist=function(Q){e("Setting playlist");o=0;for(var P=0;P<Q.length;P++){Q[P]=O(Q[P])}K=Q;$f.fireEvent(f.id(),"onPlaylistReplace",Q)};b.fp_addClip=function(Q,P){Q=O(Q);K.splice(P,0,Q);$f.fireEvent(f.id(),"onClipAdd",Q,P)};b.fp_updateClip=function(Q,P){j(K[P],Q);return K[P]};b.fp_getVersion=function(){return"3.2.3"};b.fp_isFullscreen=function(){return false};b.fp_toggleFullscreen=function(){if(b.fp_isFullscreen()){b.webkitExitFullscreen()}else{b.webkitEnterFullscreen()}};b.fp_addCuepoints=function(S,Q,P){var U=Q==-1?f.getCommonClip():K[Q];U._cuepoints=U._cuepoints||{};S=S instanceof Array?S:[S];for(var R=0;R<S.length;R++){var V=typeof S[R]=="object"?(S[R]["time"]||null):S[R];if(V==null){continue}V=Math.floor(V/100)*100;var T=V;if(typeof S[R]=="object"){T=j({},S[R],false);if(T.time!=undefined){delete T.time}if(T.parameters!=undefined){j(T,T.parameters,false);delete T.parameters}}U._cuepoints[V]=U._cuepoints[V]||[];U._cuepoints[V].push({fnId:P,lastTimeFired:-1,parameters:T})}};$f.each(("toggleFullscreen,stopBuffering,reset,playFeed,setKeyboardShortcutsEnabled,isKeyboardShortcutsEnabled,css,animate,showPlugin,hidePlugin,togglePlugin,fadeTo,invoke,loadPlugin").split(","),function(){var P=this;b["fp_"+P]=function(){e("ERROR: unsupported API on iDevices "+P);return false}})}function E(){var Z=["abort","canplay","canplaythrough","durationchange","emptied","ended","error","loadeddata","loadedmetadata","loadstart","pause","play","playing","progress","ratechange","seeked","seeking","stalled","suspend","volumechange","waiting"];var R=function(ab){e("Got event "+ab.type,ab)};for(var T=0;T<Z.length;T++){b.addEventListener(Z[T],R,false)}var O=function(ab){e("got onBufferEmpty event "+ab.type);G(J);$f.fireEvent(f.id(),"onBufferEmpty",o)};b.addEventListener("emptied",O,false);b.addEventListener("waiting",O,false);var Q=function(ab){if(m==v||m==J){}else{e("Restoring old state "+i(m));G(m)}$f.fireEvent(f.id(),"onBufferFull",o)};b.addEventListener("canplay",Q,false);b.addEventListener("canplaythrough",Q,false);var P=function(ab){b.fp_updateClip({duration:b.duration,metaData:{duration:b.duration}},o);K[o].duration=b.duration;$f.fireEvent(f.id(),"onMetaData",o,K[o])};b.addEventListener("loadedmetadata",P,false);b.addEventListener("durationchange",P,false);var Y=function(ab){if(s==F){if(!D("Resume")){e("Resume disallowed, pausing");b.fp_pause();return H(ab)}$f.fireEvent(f.id(),"onResume",o)}G(z);if(!M){M=true;$f.fireEvent(f.id(),"onStart",o)}};b.addEventListener("playing",Y,false);var V=function(ab){if(!D("Finish")){if(K.length==1){e("Active playlist only has one clip, onBeforeFinish returned false. Replaying");B()}else{if(o!=(K.length-1)){e("Not the last clip in the playlist, but onBeforeFinish returned false. Returning to the beginning of current clip");b.fp_seek(0)}else{e("Last clip in playlist, but onBeforeFinish returned false, start again from the beginning");b.fp_play(0)}}return H(ab)}G(g);$f.fireEvent(f.id(),"onFinish",o);if(K.length>1&&o<(K.length-1)){e("Not last clip in the playlist, moving to next one");b.fp_play(++o,false,true)}};b.addEventListener("ended",V,false);var U=function(ab){G(u,true);$f.fireEvent(f.id(),"onError",o,201);if(w.onFail&&w.onFail instanceof Function){w.onFail.apply(f,[])}};b.addEventListener("error",U,false);var X=function(ab){e("got pause event from player"+f.id());if(C){return}if(s==J&&m==v){e("forcing play");setTimeout(function(){b.play()},0);return}if(!D("Pause")){b.fp_resume();return H(ab)}G(F);$f.fireEvent(f.id(),"onPause",o)};b.addEventListener("pause",X,false);var aa=function(ab){$f.fireEvent(f.id(),"onBeforeSeek",o)};b.addEventListener("seeking",aa,false);var S=function(ab){if(C){C=false;$f.fireEvent(f.id(),"onStop",o)}else{$f.fireEvent(f.id(),"onSeek",o)}e("seek done, currentState",i(s));if(q){q=false;b.fp_play()}else{if(s!=z){b.fp_pause()}}};b.addEventListener("seeked",S,false);var W=function(ab){$f.fireEvent(f.id(),"onVolume",b.fp_getVolume())};b.addEventListener("volumechange",W,false)}function k(){b.fp_play(0)}function r(){}if(p||w.simulateiDevice){if(!window.flashembed.__replaced){var h=window.flashembed;window.flashembed=function(Q,V,R){if(typeof Q=="string"){Q=document.getElementById(Q.replace("#",""))}if(!Q){return}var U=window.getComputedStyle(Q,null);var T=parseInt(U.width);var O=parseInt(U.height);while(Q.firstChild){Q.removeChild(Q.firstChild)}var P=document.createElement("div");var S=document.createElement("video");P.appendChild(S);Q.appendChild(P);P.style.height=O+"px";P.style.width=T+"px";P.style.display="block";P.style.position="relative";P.style.background="-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.7)))";P.style.cursor="default";P.style.webkitUserDrag="none";S.style.height="100%";S.style.width="100%";S.style.display="block";S.id=V.id;S.name=V.id;S.style.cursor="pointer";S.style.webkitUserDrag="none";S.type="video/mp4";S.playerConfig=R.config;$f.fireEvent(R.config.playerId,"onLoad","player")};flashembed.getVersion=h.getVersion;flashembed.asString=h.asString;flashembed.isSupported=function(){return true};flashembed.__replaced=true}var a=f._fireEvent;f._fireEvent=function(O){if(O[0]=="onLoad"&&O[1]=="player"){b=f.getParent().querySelector("video");if(w.controls){b.controls="controls"}n();E();G(u,true);b.fp_setPlaylist(b.playerConfig.playlist);k();a.apply(f,[O])}var P=s!=L;if(s==L&&typeof O=="string"){P=true}if(P){return a.apply(f,[O])}};f._swfHeight=function(){return parseInt(b.style.height)};f.hasiPadSupport=function(){return true}}return f});

