//json_minified.js
window.jsonParse=function(){var r="(?:-?\\b(?:0|[1-9][0-9]*)(?:\\.[0-9]+)?(?:[eE][+-]?[0-9]+)?\\b)",k='(?:[^\\0-\\x08\\x0a-\\x1f"\\\\]|\\\\(?:["/\\\\bfnrt]|u[0-9A-Fa-f]{4}))';k='(?:"'+k+'*")';var s=new RegExp("(?:false|true|null|[\\{\\}\\[\\]]|"+r+"|"+k+")","g"),t=new RegExp("\\\\(?:([^u])|u(.{4}))","g"),u={'"':'"',"/":"/","\\":"\\",b:"\u0008",f:"\u000c",n:"\n",r:"\r",t:"\t"};function v(h,j,e){return j?u[j]:String.fromCharCode(parseInt(e,16))}var w=new String(""),x=Object.hasOwnProperty;return function(h,
j){h=h.match(s);var e,c=h[0],l=false;if("{"===c)e={};else if("["===c)e=[];else{e=[];l=true}for(var b,d=[e],m=1-l,y=h.length;m<y;++m){c=h[m];var a;switch(c.charCodeAt(0)){default:a=d[0];a[b||a.length]=+c;b=void 0;break;case 34:c=c.substring(1,c.length-1);if(c.indexOf("\\")!==-1)c=c.replace(t,v);a=d[0];if(!b)if(a instanceof Array)b=a.length;else{b=c||w;break}a[b]=c;b=void 0;break;case 91:a=d[0];d.unshift(a[b||a.length]=[]);b=void 0;break;case 93:d.shift();break;case 102:a=d[0];a[b||a.length]=false;
b=void 0;break;case 110:a=d[0];a[b||a.length]=null;b=void 0;break;case 116:a=d[0];a[b||a.length]=true;b=void 0;break;case 123:a=d[0];d.unshift(a[b||a.length]={});b=void 0;break;case 125:d.shift();break}}if(l){if(d.length!==1)throw new Error;e=e[0]}else if(d.length)throw new Error;if(j){var p=function(n,o){var f=n[o];if(f&&typeof f==="object"){var i=null;for(var g in f)if(x.call(f,g)&&f!==n){var q=p(f,g);if(q!==void 0)f[g]=q;else{i||(i=[]);i.push(g)}}if(i)for(g=i.length;--g>=0;)delete f[i[g]]}return j.call(n,
o,f)};e=p({"":e},"")}return e}}();

/*
 * jQuery Easing v1.1.1 - http://gsgd.co.uk/sandbox/jquery.easing.php
 *
 * Uses the built in easing capabilities added in jQuery 1.1
 * to offer multiple easing options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

jQuery.extend({
	easing: {
		easein: function(x, t, b, c, d) {
			return c*(t/=d)*t + b; // in
		},
		easeinout: function(x, t, b, c, d) {
			if (t < d/2) return 2*c*t*t/(d*d) + b;
			var ts = t - d/2;
			return -2*c*ts*ts/(d*d) + 2*c*ts/d + c/2 + b;		
		},
		easeout: function(x, t, b, c, d) {
			return -c*t*t/(d*d) + 2*c*t/d + b;
		},
		expoin: function(x, t, b, c, d) {
			var flip = 1;
			if (c < 0) {
				flip *= -1;
				c *= -1;
			}
			return flip * (Math.exp(Math.log(c)/d * t)) + b;		
		},
		expoout: function(x, t, b, c, d) {
			var flip = 1;
			if (c < 0) {
				flip *= -1;
				c *= -1;
			}
			return flip * (-Math.exp(-Math.log(c)/d * (t-d)) + c + 1) + b;
		},
		expoinout: function(x, t, b, c, d) {
			var flip = 1;
			if (c < 0) {
				flip *= -1;
				c *= -1;
			}
			if (t < d/2) return flip * (Math.exp(Math.log(c/2)/(d/2) * t)) + b;
			return flip * (-Math.exp(-2*Math.log(c/2)/d * (t-d)) + c + 1) + b;
		},
		bouncein: function(x, t, b, c, d) {
			return c - jQuery.easing['bounceout'](x, d-t, 0, c, d) + b;
		},
		bounceout: function(x, t, b, c, d) {
			if ((t/=d) < (1/2.75)) {
				return c*(7.5625*t*t) + b;
			} else if (t < (2/2.75)) {
				return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
			} else if (t < (2.5/2.75)) {
				return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
			} else {
				return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
			}
		},
		bounceinout: function(x, t, b, c, d) {
			if (t < d/2) return jQuery.easing['bouncein'] (x, t*2, 0, c, d) * .5 + b;
			return jQuery.easing['bounceout'] (x, t*2-d,0, c, d) * .5 + c*.5 + b;
		},
		elasin: function(x, t, b, c, d) {
			var s=1.70158;var p=0;var a=c;
			if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
			if (a < Math.abs(c)) { a=c; var s=p/4; }
			else var s = p/(2*Math.PI) * Math.asin (c/a);
			return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		},
		elasout: function(x, t, b, c, d) {
			var s=1.70158;var p=0;var a=c;
			if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
			if (a < Math.abs(c)) { a=c; var s=p/4; }
			else var s = p/(2*Math.PI) * Math.asin (c/a);
			return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
		},
		elasinout: function(x, t, b, c, d) {
			var s=1.70158;var p=0;var a=c;
			if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
			if (a < Math.abs(c)) { a=c; var s=p/4; }
			else var s = p/(2*Math.PI) * Math.asin (c/a);
			if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
			return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
		},
		backin: function(x, t, b, c, d) {
			var s=1.70158;
			return c*(t/=d)*t*((s+1)*t - s) + b;
		},
		backout: function(x, t, b, c, d) {
			var s=1.70158;
			return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
		},
		backinout: function(x, t, b, c, d) {
			var s=1.70158;
			if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
			return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
		},
		linear: function(x, t, b, c, d) {
			return c*t/d + b; //linear
		}
	}
});

/*!
 * jQuery UI 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI
 */
(function(c,j){function k(a){return!c(a).parents().andSelf().filter(function(){return c.curCSS(this,"visibility")==="hidden"||c.expr.filters.hidden(this)}).length}c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.11",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,
NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.extend({_focus:c.fn.focus,focus:function(a,b){return typeof a==="number"?this.each(function(){var d=this;setTimeout(function(){c(d).focus();b&&b.call(d)},a)}):this._focus.apply(this,arguments)},scrollParent:function(){var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){return/(relative|absolute|fixed)/.test(c.curCSS(this,
"position",1))&&/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){return/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document):a},zIndex:function(a){if(a!==j)return this.css("zIndex",a);if(this.length){a=c(this[0]);for(var b;a.length&&a[0]!==document;){b=a.css("position");
if(b==="absolute"||b==="relative"||b==="fixed"){b=parseInt(a.css("zIndex"),10);if(!isNaN(b)&&b!==0)return b}a=a.parent()}}return 0},disableSelection:function(){return this.bind((c.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});c.each(["Width","Height"],function(a,b){function d(f,g,l,m){c.each(e,function(){g-=parseFloat(c.curCSS(f,"padding"+this,true))||0;if(l)g-=parseFloat(c.curCSS(f,
"border"+this+"Width",true))||0;if(m)g-=parseFloat(c.curCSS(f,"margin"+this,true))||0});return g}var e=b==="Width"?["Left","Right"]:["Top","Bottom"],h=b.toLowerCase(),i={innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,outerWidth:c.fn.outerWidth,outerHeight:c.fn.outerHeight};c.fn["inner"+b]=function(f){if(f===j)return i["inner"+b].call(this);return this.each(function(){c(this).css(h,d(this,f)+"px")})};c.fn["outer"+b]=function(f,g){if(typeof f!=="number")return i["outer"+b].call(this,f);return this.each(function(){c(this).css(h,
d(this,f,true,g)+"px")})}});c.extend(c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:function(a){var b=a.nodeName.toLowerCase(),d=c.attr(a,"tabindex");if("area"===b){b=a.parentNode;d=b.name;if(!a.href||!d||b.nodeName.toLowerCase()!=="map")return false;a=c("img[usemap=#"+d+"]")[0];return!!a&&k(a)}return(/input|select|textarea|button|object/.test(b)?!a.disabled:"a"==b?a.href||!isNaN(d):!isNaN(d))&&k(a)},tabbable:function(a){var b=c.attr(a,"tabindex");return(isNaN(b)||b>=0)&&c(a).is(":focusable")}});
c(function(){var a=document.body,b=a.appendChild(b=document.createElement("div"));c.extend(b.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});c.support.minHeight=b.offsetHeight===100;c.support.selectstart="onselectstart"in b;a.removeChild(b).style.display="none"});c.extend(c.ui,{plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=0;e<b.length;e++)a.options[b[e][0]]&&
b[e][1].apply(a.element,d)}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(a,b){if(c(a).css("overflow")==="hidden")return false;b=b&&b==="left"?"scrollLeft":"scrollTop";var d=false;if(a[b]>0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a<b+d},isOver:function(a,b,d,e,h,i){return c.ui.isOverAxis(a,d,h)&&c.ui.isOverAxis(b,e,i)}})}})(jQuery);
;/*!
 * jQuery UI Widget 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Widget
 */
(function(b,j){if(b.cleanData){var k=b.cleanData;b.cleanData=function(a){for(var c=0,d;(d=a[c])!=null;c++)b(d).triggerHandler("remove");k(a)}}else{var l=b.fn.remove;b.fn.remove=function(a,c){return this.each(function(){if(!c)if(!a||b.filter(a,[this]).length)b("*",this).add([this]).each(function(){b(this).triggerHandler("remove")});return l.call(b(this),a,c)})}}b.widget=function(a,c,d){var e=a.split(".")[0],f;a=a.split(".")[1];f=e+"-"+a;if(!d){d=c;c=b.Widget}b.expr[":"][f]=function(h){return!!b.data(h,
a)};b[e]=b[e]||{};b[e][a]=function(h,g){arguments.length&&this._createWidget(h,g)};c=new c;c.options=b.extend(true,{},c.options);b[e][a].prototype=b.extend(true,c,{namespace:e,widgetName:a,widgetEventPrefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.widget.bridge(a,b[e][a])};b.widget.bridge=function(a,c){b.fn[a]=function(d){var e=typeof d==="string",f=Array.prototype.slice.call(arguments,1),h=this;d=!e&&f.length?b.extend.apply(null,[true,d].concat(f)):d;if(e&&d.charAt(0)==="_")return h;
e?this.each(function(){var g=b.data(this,a),i=g&&b.isFunction(g[d])?g[d].apply(g,f):g;if(i!==g&&i!==j){h=i;return false}}):this.each(function(){var g=b.data(this,a);g?g.option(d||{})._init():b.data(this,a,new c(d,this))});return h}};b.Widget=function(a,c){arguments.length&&this._createWidget(a,c)};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(a,c){b.data(c,this.widgetName,this);this.element=b(c);this.options=b.extend(true,{},this.options,
this._getCreateOptions(),a);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},
widget:function(){return this.element},option:function(a,c){var d=a;if(arguments.length===0)return b.extend({},this.options);if(typeof a==="string"){if(c===j)return this.options[a];d={};d[a]=c}this._setOptions(d);return this},_setOptions:function(a){var c=this;b.each(a,function(d,e){c._setOption(d,e)});return this},_setOption:function(a,c){this.options[a]=c;if(a==="disabled")this.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",c);return this},
enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(a,c,d){var e=this.options[a];c=b.Event(c);c.type=(a===this.widgetEventPrefix?a:this.widgetEventPrefix+a).toLowerCase();d=d||{};if(c.originalEvent){a=b.event.props.length;for(var f;a;){f=b.event.props[--a];c[f]=c.originalEvent[f]}}this.element.trigger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)===false||c.isDefaultPrevented())}}})(jQuery);
;/*!
 * jQuery UI Mouse 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Mouse
 *
 * Depends:
 *	jquery.ui.widget.js
 */
(function(b){b.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var a=this;this.element.bind("mousedown."+this.widgetName,function(c){return a._mouseDown(c)}).bind("click."+this.widgetName,function(c){if(true===b.data(c.target,a.widgetName+".preventClickEvent")){b.removeData(c.target,a.widgetName+".preventClickEvent");c.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(a){a.originalEvent=
a.originalEvent||{};if(!a.originalEvent.mouseHandled){this._mouseStarted&&this._mouseUp(a);this._mouseDownEvent=a;var c=this,e=a.which==1,f=typeof this.options.cancel=="string"?b(a.target).parents().add(a.target).filter(this.options.cancel).length:false;if(!e||f||!this._mouseCapture(a))return true;this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet)this._mouseDelayTimer=setTimeout(function(){c.mouseDelayMet=true},this.options.delay);if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){this._mouseStarted=
this._mouseStart(a)!==false;if(!this._mouseStarted){a.preventDefault();return true}}true===b.data(a.target,this.widgetName+".preventClickEvent")&&b.removeData(a.target,this.widgetName+".preventClickEvent");this._mouseMoveDelegate=function(d){return c._mouseMove(d)};this._mouseUpDelegate=function(d){return c._mouseUp(d)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);a.preventDefault();return a.originalEvent.mouseHandled=
true}},_mouseMove:function(a){if(b.browser.msie&&!(document.documentMode>=9)&&!a.button)return this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a);return a.preventDefault()}if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);
if(this._mouseStarted){this._mouseStarted=false;a.target==this._mouseDownEvent.target&&b.data(a.target,this.widgetName+".preventClickEvent",true);this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true}})})(jQuery);
;/*
 * jQuery UI Position 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Position
 */
(function(c){c.ui=c.ui||{};var n=/left|center|right/,o=/top|center|bottom/,t=c.fn.position,u=c.fn.offset;c.fn.position=function(b){if(!b||!b.of)return t.apply(this,arguments);b=c.extend({},b);var a=c(b.of),d=a[0],g=(b.collision||"flip").split(" "),e=b.offset?b.offset.split(" "):[0,0],h,k,j;if(d.nodeType===9){h=a.width();k=a.height();j={top:0,left:0}}else if(d.setTimeout){h=a.width();k=a.height();j={top:a.scrollTop(),left:a.scrollLeft()}}else if(d.preventDefault){b.at="left top";h=k=0;j={top:b.of.pageY,
left:b.of.pageX}}else{h=a.outerWidth();k=a.outerHeight();j=a.offset()}c.each(["my","at"],function(){var f=(b[this]||"").split(" ");if(f.length===1)f=n.test(f[0])?f.concat(["center"]):o.test(f[0])?["center"].concat(f):["center","center"];f[0]=n.test(f[0])?f[0]:"center";f[1]=o.test(f[1])?f[1]:"center";b[this]=f});if(g.length===1)g[1]=g[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(b.at[0]==="right")j.left+=h;else if(b.at[0]==="center")j.left+=h/2;if(b.at[1]==="bottom")j.top+=
k;else if(b.at[1]==="center")j.top+=k/2;j.left+=e[0];j.top+=e[1];return this.each(function(){var f=c(this),l=f.outerWidth(),m=f.outerHeight(),p=parseInt(c.curCSS(this,"marginLeft",true))||0,q=parseInt(c.curCSS(this,"marginTop",true))||0,v=l+p+(parseInt(c.curCSS(this,"marginRight",true))||0),w=m+q+(parseInt(c.curCSS(this,"marginBottom",true))||0),i=c.extend({},j),r;if(b.my[0]==="right")i.left-=l;else if(b.my[0]==="center")i.left-=l/2;if(b.my[1]==="bottom")i.top-=m;else if(b.my[1]==="center")i.top-=
m/2;i.left=Math.round(i.left);i.top=Math.round(i.top);r={left:i.left-p,top:i.top-q};c.each(["left","top"],function(s,x){c.ui.position[g[s]]&&c.ui.position[g[s]][x](i,{targetWidth:h,targetHeight:k,elemWidth:l,elemHeight:m,collisionPosition:r,collisionWidth:v,collisionHeight:w,offset:e,my:b.my,at:b.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(i,{using:b.using}))})};c.ui.position={fit:{left:function(b,a){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();b.left=
d>0?b.left-d:Math.max(b.left-a.collisionPosition.left,b.left)},top:function(b,a){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();b.top=d>0?b.top-d:Math.max(b.top-a.collisionPosition.top,b.top)}},flip:{left:function(b,a){if(a.at[0]!=="center"){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();var g=a.my[0]==="left"?-a.elemWidth:a.my[0]==="right"?a.elemWidth:0,e=a.at[0]==="left"?a.targetWidth:-a.targetWidth,h=-2*a.offset[0];b.left+=
a.collisionPosition.left<0?g+e+h:d>0?g+e+h:0}},top:function(b,a){if(a.at[1]!=="center"){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();var g=a.my[1]==="top"?-a.elemHeight:a.my[1]==="bottom"?a.elemHeight:0,e=a.at[1]==="top"?a.targetHeight:-a.targetHeight,h=-2*a.offset[1];b.top+=a.collisionPosition.top<0?g+e+h:d>0?g+e+h:0}}}};if(!c.offset.setOffset){c.offset.setOffset=function(b,a){if(/static/.test(c.curCSS(b,"position")))b.style.position="relative";var d=c(b),
g=d.offset(),e=parseInt(c.curCSS(b,"top",true),10)||0,h=parseInt(c.curCSS(b,"left",true),10)||0;g={top:a.top-g.top+e,left:a.left-g.left+h};"using"in a?a.using.call(b,g):d.css(g)};c.fn.offset=function(b){var a=this[0];if(!a||!a.ownerDocument)return null;if(b)return this.each(function(){c.offset.setOffset(this,b)});return u.call(this)}}})(jQuery);
;/*
 * jQuery UI Draggable 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Draggables
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.mouse.js
 *	jquery.ui.widget.js
 */
(function(d){d.widget("ui.draggable",d.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:true,appendTo:"parent",axis:false,connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false},_create:function(){if(this.options.helper==
"original"&&!/^(?:r|a|f)/.test(this.element.css("position")))this.element[0].style.position="relative";this.options.addClasses&&this.element.addClass("ui-draggable");this.options.disabled&&this.element.addClass("ui-draggable-disabled");this._mouseInit()},destroy:function(){if(this.element.data("draggable")){this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled");this._mouseDestroy();return this}},_mouseCapture:function(a){var b=
this.options;if(this.helper||b.disabled||d(a.target).is(".ui-resizable-handle"))return false;this.handle=this._getHandle(a);if(!this.handle)return false;return true},_mouseStart:function(a){var b=this.options;this.helper=this._createHelper(a);this._cacheHelperProportions();if(d.ui.ddmanager)d.ui.ddmanager.current=this;this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.positionAbs=this.element.offset();this.offset={top:this.offset.top-
this.margins.top,left:this.offset.left-this.margins.left};d.extend(this.offset,{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this.position=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);b.containment&&this._setContainment();if(this._trigger("start",a)===false){this._clear();return false}this._cacheHelperProportions();
d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.helper.addClass("ui-draggable-dragging");this._mouseDrag(a,true);return true},_mouseDrag:function(a,b){this.position=this._generatePosition(a);this.positionAbs=this._convertPositionTo("absolute");if(!b){b=this._uiHash();if(this._trigger("drag",a,b)===false){this._mouseUp({});return false}this.position=b.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||
this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);return false},_mouseStop:function(a){var b=false;if(d.ui.ddmanager&&!this.options.dropBehaviour)b=d.ui.ddmanager.drop(this,a);if(this.dropped){b=this.dropped;this.dropped=false}if((!this.element[0]||!this.element[0].parentNode)&&this.options.helper=="original")return false;if(this.options.revert=="invalid"&&!b||this.options.revert=="valid"&&b||this.options.revert===true||d.isFunction(this.options.revert)&&
this.options.revert.call(this.element,b)){var c=this;d(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){c._trigger("stop",a)!==false&&c._clear()})}else this._trigger("stop",a)!==false&&this._clear();return false},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear();return this},_getHandle:function(a){var b=!this.options.handle||!d(this.options.handle,this.element).length?true:false;d(this.options.handle,this.element).find("*").andSelf().each(function(){if(this==
a.target)b=true});return b},_createHelper:function(a){var b=this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a])):b.helper=="clone"?this.element.clone():this.element;a.parents("body").length||a.appendTo(b.appendTo=="parent"?this.element[0].parentNode:b.appendTo);a[0]!=this.element[0]&&!/(fixed|absolute)/.test(a.css("position"))&&a.css("position","absolute");return a},_adjustOffsetFromHelper:function(a){if(typeof a=="string")a=a.split(" ");if(d.isArray(a))a={left:+a[0],top:+a[1]||
0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],
this.offsetParent[0])){a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a={top:0,left:0};return{top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top-
(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),
height:this.helper.outerHeight()}},_setContainment:function(){var a=this.options;if(a.containment=="parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[(a.containment=="document"?0:d(window).scrollLeft())-this.offset.relative.left-this.offset.parent.left,(a.containment=="document"?0:d(window).scrollTop())-this.offset.relative.top-this.offset.parent.top,(a.containment=="document"?0:d(window).scrollLeft())+d(a.containment=="document"?
document:window).width()-this.helperProportions.width-this.margins.left,(a.containment=="document"?0:d(window).scrollTop())+(d(a.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)&&a.containment.constructor!=Array){var b=d(a.containment)[0];if(b){a=d(a.containment).offset();var c=d(b).css("overflow")!="hidden";this.containment=[a.left+(parseInt(d(b).css("borderLeftWidth"),
10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0),a.top+(parseInt(d(b).css("borderTopWidth"),10)||0)+(parseInt(d(b).css("paddingTop"),10)||0),a.left+(c?Math.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,a.top+(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),
10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom]}}else if(a.containment.constructor==Array)this.containment=a.containment},_convertPositionTo:function(a,b){if(!b)b=this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName);return{top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&
d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():f?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():f?0:c.scrollLeft())*a)}},_generatePosition:function(a){var b=this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],
this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName),e=a.pageX,g=a.pageY;if(this.originalPosition){if(this.containment){if(a.pageX-this.offset.click.left<this.containment[0])e=this.containment[0]+this.offset.click.left;if(a.pageY-this.offset.click.top<this.containment[1])g=this.containment[1]+this.offset.click.top;if(a.pageX-this.offset.click.left>this.containment[2])e=this.containment[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>this.containment[3])g=
this.containment[3]+this.offset.click.top}if(b.grid){g=this.originalPageY+Math.round((g-this.originalPageY)/b.grid[1])*b.grid[1];g=this.containment?!(g-this.offset.click.top<this.containment[1]||g-this.offset.click.top>this.containment[3])?g:!(g-this.offset.click.top<this.containment[1])?g-b.grid[1]:g+b.grid[1]:g;e=this.originalPageX+Math.round((e-this.originalPageX)/b.grid[0])*b.grid[0];e=this.containment?!(e-this.offset.click.left<this.containment[0]||e-this.offset.click.left>this.containment[2])?
e:!(e-this.offset.click.left<this.containment[0])?e-b.grid[0]:e+b.grid[0]:e}}return{top:g-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():f?0:c.scrollTop()),left:e-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():
f?0:c.scrollLeft())}},_clear:function(){this.helper.removeClass("ui-draggable-dragging");this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval&&this.helper.remove();this.helper=null;this.cancelHelperRemoval=false},_trigger:function(a,b,c){c=c||this._uiHash();d.ui.plugin.call(this,a,[b,c]);if(a=="drag")this.positionAbs=this._convertPositionTo("absolute");return d.Widget.prototype._trigger.call(this,a,b,c)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,
offset:this.positionAbs}}});d.extend(d.ui.draggable,{version:"1.8.11"});d.ui.plugin.add("draggable","connectToSortable",{start:function(a,b){var c=d(this).data("draggable"),f=c.options,e=d.extend({},b,{item:c.element});c.sortables=[];d(f.connectToSortable).each(function(){var g=d.data(this,"sortable");if(g&&!g.options.disabled){c.sortables.push({instance:g,shouldRevert:g.options.revert});g.refreshPositions();g._trigger("activate",a,e)}})},stop:function(a,b){var c=d(this).data("draggable"),f=d.extend({},
b,{item:c.element});d.each(c.sortables,function(){if(this.instance.isOver){this.instance.isOver=0;c.cancelHelperRemoval=true;this.instance.cancelHelperRemoval=false;if(this.shouldRevert)this.instance.options.revert=true;this.instance._mouseStop(a);this.instance.options.helper=this.instance.options._helper;c.options.helper=="original"&&this.instance.currentItem.css({top:"auto",left:"auto"})}else{this.instance.cancelHelperRemoval=false;this.instance._trigger("deactivate",a,f)}})},drag:function(a,b){var c=
d(this).data("draggable"),f=this;d.each(c.sortables,function(){this.instance.positionAbs=c.positionAbs;this.instance.helperProportions=c.helperProportions;this.instance.offset.click=c.offset.click;if(this.instance._intersectsWith(this.instance.containerCache)){if(!this.instance.isOver){this.instance.isOver=1;this.instance.currentItem=d(f).clone().appendTo(this.instance.element).data("sortable-item",true);this.instance.options._helper=this.instance.options.helper;this.instance.options.helper=function(){return b.helper[0]};
a.target=this.instance.currentItem[0];this.instance._mouseCapture(a,true);this.instance._mouseStart(a,true,true);this.instance.offset.click.top=c.offset.click.top;this.instance.offset.click.left=c.offset.click.left;this.instance.offset.parent.left-=c.offset.parent.left-this.instance.offset.parent.left;this.instance.offset.parent.top-=c.offset.parent.top-this.instance.offset.parent.top;c._trigger("toSortable",a);c.dropped=this.instance.element;c.currentItem=c.element;this.instance.fromOutside=c}this.instance.currentItem&&
this.instance._mouseDrag(a)}else if(this.instance.isOver){this.instance.isOver=0;this.instance.cancelHelperRemoval=true;this.instance.options.revert=false;this.instance._trigger("out",a,this.instance._uiHash(this.instance));this.instance._mouseStop(a,true);this.instance.options.helper=this.instance.options._helper;this.instance.currentItem.remove();this.instance.placeholder&&this.instance.placeholder.remove();c._trigger("fromSortable",a);c.dropped=false}})}});d.ui.plugin.add("draggable","cursor",
{start:function(){var a=d("body"),b=d(this).data("draggable").options;if(a.css("cursor"))b._cursor=a.css("cursor");a.css("cursor",b.cursor)},stop:function(){var a=d(this).data("draggable").options;a._cursor&&d("body").css("cursor",a._cursor)}});d.ui.plugin.add("draggable","iframeFix",{start:function(){var a=d(this).data("draggable").options;d(a.iframeFix===true?"iframe":a.iframeFix).each(function(){d('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+
"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1E3}).css(d(this).offset()).appendTo("body")})},stop:function(){d("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)})}});d.ui.plugin.add("draggable","opacity",{start:function(a,b){a=d(b.helper);b=d(this).data("draggable").options;if(a.css("opacity"))b._opacity=a.css("opacity");a.css("opacity",b.opacity)},stop:function(a,b){a=d(this).data("draggable").options;a._opacity&&d(b.helper).css("opacity",
a._opacity)}});d.ui.plugin.add("draggable","scroll",{start:function(){var a=d(this).data("draggable");if(a.scrollParent[0]!=document&&a.scrollParent[0].tagName!="HTML")a.overflowOffset=a.scrollParent.offset()},drag:function(a){var b=d(this).data("draggable"),c=b.options,f=false;if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!="HTML"){if(!c.axis||c.axis!="x")if(b.overflowOffset.top+b.scrollParent[0].offsetHeight-a.pageY<c.scrollSensitivity)b.scrollParent[0].scrollTop=f=b.scrollParent[0].scrollTop+
c.scrollSpeed;else if(a.pageY-b.overflowOffset.top<c.scrollSensitivity)b.scrollParent[0].scrollTop=f=b.scrollParent[0].scrollTop-c.scrollSpeed;if(!c.axis||c.axis!="y")if(b.overflowOffset.left+b.scrollParent[0].offsetWidth-a.pageX<c.scrollSensitivity)b.scrollParent[0].scrollLeft=f=b.scrollParent[0].scrollLeft+c.scrollSpeed;else if(a.pageX-b.overflowOffset.left<c.scrollSensitivity)b.scrollParent[0].scrollLeft=f=b.scrollParent[0].scrollLeft-c.scrollSpeed}else{if(!c.axis||c.axis!="x")if(a.pageY-d(document).scrollTop()<
c.scrollSensitivity)f=d(document).scrollTop(d(document).scrollTop()-c.scrollSpeed);else if(d(window).height()-(a.pageY-d(document).scrollTop())<c.scrollSensitivity)f=d(document).scrollTop(d(document).scrollTop()+c.scrollSpeed);if(!c.axis||c.axis!="y")if(a.pageX-d(document).scrollLeft()<c.scrollSensitivity)f=d(document).scrollLeft(d(document).scrollLeft()-c.scrollSpeed);else if(d(window).width()-(a.pageX-d(document).scrollLeft())<c.scrollSensitivity)f=d(document).scrollLeft(d(document).scrollLeft()+
c.scrollSpeed)}f!==false&&d.ui.ddmanager&&!c.dropBehaviour&&d.ui.ddmanager.prepareOffsets(b,a)}});d.ui.plugin.add("draggable","snap",{start:function(){var a=d(this).data("draggable"),b=a.options;a.snapElements=[];d(b.snap.constructor!=String?b.snap.items||":data(draggable)":b.snap).each(function(){var c=d(this),f=c.offset();this!=a.element[0]&&a.snapElements.push({item:this,width:c.outerWidth(),height:c.outerHeight(),top:f.top,left:f.left})})},drag:function(a,b){for(var c=d(this).data("draggable"),
f=c.options,e=f.snapTolerance,g=b.offset.left,n=g+c.helperProportions.width,m=b.offset.top,o=m+c.helperProportions.height,h=c.snapElements.length-1;h>=0;h--){var i=c.snapElements[h].left,k=i+c.snapElements[h].width,j=c.snapElements[h].top,l=j+c.snapElements[h].height;if(i-e<g&&g<k+e&&j-e<m&&m<l+e||i-e<g&&g<k+e&&j-e<o&&o<l+e||i-e<n&&n<k+e&&j-e<m&&m<l+e||i-e<n&&n<k+e&&j-e<o&&o<l+e){if(f.snapMode!="inner"){var p=Math.abs(j-o)<=e,q=Math.abs(l-m)<=e,r=Math.abs(i-n)<=e,s=Math.abs(k-g)<=e;if(p)b.position.top=
c._convertPositionTo("relative",{top:j-c.helperProportions.height,left:0}).top-c.margins.top;if(q)b.position.top=c._convertPositionTo("relative",{top:l,left:0}).top-c.margins.top;if(r)b.position.left=c._convertPositionTo("relative",{top:0,left:i-c.helperProportions.width}).left-c.margins.left;if(s)b.position.left=c._convertPositionTo("relative",{top:0,left:k}).left-c.margins.left}var t=p||q||r||s;if(f.snapMode!="outer"){p=Math.abs(j-m)<=e;q=Math.abs(l-o)<=e;r=Math.abs(i-g)<=e;s=Math.abs(k-n)<=e;if(p)b.position.top=
c._convertPositionTo("relative",{top:j,left:0}).top-c.margins.top;if(q)b.position.top=c._convertPositionTo("relative",{top:l-c.helperProportions.height,left:0}).top-c.margins.top;if(r)b.position.left=c._convertPositionTo("relative",{top:0,left:i}).left-c.margins.left;if(s)b.position.left=c._convertPositionTo("relative",{top:0,left:k-c.helperProportions.width}).left-c.margins.left}if(!c.snapElements[h].snapping&&(p||q||r||s||t))c.options.snap.snap&&c.options.snap.snap.call(c.element,a,d.extend(c._uiHash(),
{snapItem:c.snapElements[h].item}));c.snapElements[h].snapping=p||q||r||s||t}else{c.snapElements[h].snapping&&c.options.snap.release&&c.options.snap.release.call(c.element,a,d.extend(c._uiHash(),{snapItem:c.snapElements[h].item}));c.snapElements[h].snapping=false}}}});d.ui.plugin.add("draggable","stack",{start:function(){var a=d(this).data("draggable").options;a=d.makeArray(d(a.stack)).sort(function(c,f){return(parseInt(d(c).css("zIndex"),10)||0)-(parseInt(d(f).css("zIndex"),10)||0)});if(a.length){var b=
parseInt(a[0].style.zIndex)||0;d(a).each(function(c){this.style.zIndex=b+c});this[0].style.zIndex=b+a.length}}});d.ui.plugin.add("draggable","zIndex",{start:function(a,b){a=d(b.helper);b=d(this).data("draggable").options;if(a.css("zIndex"))b._zIndex=a.css("zIndex");a.css("zIndex",b.zIndex)},stop:function(a,b){a=d(this).data("draggable").options;a._zIndex&&d(b.helper).css("zIndex",a._zIndex)}})})(jQuery);
;/*
 * jQuery UI Droppable 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Droppables
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.widget.js
 *	jquery.ui.mouse.js
 *	jquery.ui.draggable.js
 */
(function(d){d.widget("ui.droppable",{widgetEventPrefix:"drop",options:{accept:"*",activeClass:false,addClasses:true,greedy:false,hoverClass:false,scope:"default",tolerance:"intersect"},_create:function(){var a=this.options,b=a.accept;this.isover=0;this.isout=1;this.accept=d.isFunction(b)?b:function(c){return c.is(b)};this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};d.ui.ddmanager.droppables[a.scope]=d.ui.ddmanager.droppables[a.scope]||[];d.ui.ddmanager.droppables[a.scope].push(this);
a.addClasses&&this.element.addClass("ui-droppable")},destroy:function(){for(var a=d.ui.ddmanager.droppables[this.options.scope],b=0;b<a.length;b++)a[b]==this&&a.splice(b,1);this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable");return this},_setOption:function(a,b){if(a=="accept")this.accept=d.isFunction(b)?b:function(c){return c.is(b)};d.Widget.prototype._setOption.apply(this,arguments)},_activate:function(a){var b=d.ui.ddmanager.current;this.options.activeClass&&
this.element.addClass(this.options.activeClass);b&&this._trigger("activate",a,this.ui(b))},_deactivate:function(a){var b=d.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass);b&&this._trigger("deactivate",a,this.ui(b))},_over:function(a){var b=d.ui.ddmanager.current;if(!(!b||(b.currentItem||b.element)[0]==this.element[0]))if(this.accept.call(this.element[0],b.currentItem||b.element)){this.options.hoverClass&&this.element.addClass(this.options.hoverClass);
this._trigger("over",a,this.ui(b))}},_out:function(a){var b=d.ui.ddmanager.current;if(!(!b||(b.currentItem||b.element)[0]==this.element[0]))if(this.accept.call(this.element[0],b.currentItem||b.element)){this.options.hoverClass&&this.element.removeClass(this.options.hoverClass);this._trigger("out",a,this.ui(b))}},_drop:function(a,b){var c=b||d.ui.ddmanager.current;if(!c||(c.currentItem||c.element)[0]==this.element[0])return false;var e=false;this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var g=
d.data(this,"droppable");if(g.options.greedy&&!g.options.disabled&&g.options.scope==c.options.scope&&g.accept.call(g.element[0],c.currentItem||c.element)&&d.ui.intersect(c,d.extend(g,{offset:g.element.offset()}),g.options.tolerance)){e=true;return false}});if(e)return false;if(this.accept.call(this.element[0],c.currentItem||c.element)){this.options.activeClass&&this.element.removeClass(this.options.activeClass);this.options.hoverClass&&this.element.removeClass(this.options.hoverClass);this._trigger("drop",
a,this.ui(c));return this.element}return false},ui:function(a){return{draggable:a.currentItem||a.element,helper:a.helper,position:a.position,offset:a.positionAbs}}});d.extend(d.ui.droppable,{version:"1.8.11"});d.ui.intersect=function(a,b,c){if(!b.offset)return false;var e=(a.positionAbs||a.position.absolute).left,g=e+a.helperProportions.width,f=(a.positionAbs||a.position.absolute).top,h=f+a.helperProportions.height,i=b.offset.left,k=i+b.proportions.width,j=b.offset.top,l=j+b.proportions.height;
switch(c){case "fit":return i<=e&&g<=k&&j<=f&&h<=l;case "intersect":return i<e+a.helperProportions.width/2&&g-a.helperProportions.width/2<k&&j<f+a.helperProportions.height/2&&h-a.helperProportions.height/2<l;case "pointer":return d.ui.isOver((a.positionAbs||a.position.absolute).top+(a.clickOffset||a.offset.click).top,(a.positionAbs||a.position.absolute).left+(a.clickOffset||a.offset.click).left,j,i,b.proportions.height,b.proportions.width);case "touch":return(f>=j&&f<=l||h>=j&&h<=l||f<j&&h>l)&&(e>=
i&&e<=k||g>=i&&g<=k||e<i&&g>k);default:return false}};d.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(a,b){var c=d.ui.ddmanager.droppables[a.options.scope]||[],e=b?b.type:null,g=(a.currentItem||a.element).find(":data(droppable)").andSelf(),f=0;a:for(;f<c.length;f++)if(!(c[f].options.disabled||a&&!c[f].accept.call(c[f].element[0],a.currentItem||a.element))){for(var h=0;h<g.length;h++)if(g[h]==c[f].element[0]){c[f].proportions.height=0;continue a}c[f].visible=c[f].element.css("display")!=
"none";if(c[f].visible){e=="mousedown"&&c[f]._activate.call(c[f],b);c[f].offset=c[f].element.offset();c[f].proportions={width:c[f].element[0].offsetWidth,height:c[f].element[0].offsetHeight}}}},drop:function(a,b){var c=false;d.each(d.ui.ddmanager.droppables[a.options.scope]||[],function(){if(this.options){if(!this.options.disabled&&this.visible&&d.ui.intersect(a,this,this.options.tolerance))c=c||this._drop.call(this,b);if(!this.options.disabled&&this.visible&&this.accept.call(this.element[0],a.currentItem||
a.element)){this.isout=1;this.isover=0;this._deactivate.call(this,b)}}});return c},drag:function(a,b){a.options.refreshPositions&&d.ui.ddmanager.prepareOffsets(a,b);d.each(d.ui.ddmanager.droppables[a.options.scope]||[],function(){if(!(this.options.disabled||this.greedyChild||!this.visible)){var c=d.ui.intersect(a,this,this.options.tolerance);if(c=!c&&this.isover==1?"isout":c&&this.isover==0?"isover":null){var e;if(this.options.greedy){var g=this.element.parents(":data(droppable):eq(0)");if(g.length){e=
d.data(g[0],"droppable");e.greedyChild=c=="isover"?1:0}}if(e&&c=="isover"){e.isover=0;e.isout=1;e._out.call(e,b)}this[c]=1;this[c=="isout"?"isover":"isout"]=0;this[c=="isover"?"_over":"_out"].call(this,b);if(e&&c=="isout"){e.isout=0;e.isover=1;e._over.call(e,b)}}}})}}})(jQuery);
;/*
 * jQuery UI Resizable 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Resizables
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.mouse.js
 *	jquery.ui.widget.js
 */
(function(e){e.widget("ui.resizable",e.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1E3},_create:function(){var b=this,a=this.options;this.element.addClass("ui-resizable");e.extend(this,{_aspectRatio:!!a.aspectRatio,aspectRatio:a.aspectRatio,originalElement:this.element,
_proportionallyResizeElements:[],_helper:a.helper||a.ghost||a.animate?a.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){/relative/.test(this.element.css("position"))&&e.browser.opera&&this.element.css({position:"relative",top:"auto",left:"auto"});this.element.wrap(e('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),
top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=
this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=a.handles||(!e(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",
nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all")this.handles="n,e,s,w,se,sw,ne,nw";var c=this.handles.split(",");this.handles={};for(var d=0;d<c.length;d++){var f=e.trim(c[d]),g=e('<div class="ui-resizable-handle '+("ui-resizable-"+f)+'"></div>');/sw|se|ne|nw/.test(f)&&g.css({zIndex:++a.zIndex});"se"==f&&g.addClass("ui-icon ui-icon-gripsmall-diagonal-se");this.handles[f]=".ui-resizable-"+f;this.element.append(g)}}this._renderAxis=function(h){h=h||this.element;for(var i in this.handles){if(this.handles[i].constructor==
String)this.handles[i]=e(this.handles[i],this.element).show();if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var j=e(this.handles[i],this.element),k=0;k=/sw|ne|nw|se|n|s/.test(i)?j.outerHeight():j.outerWidth();j=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join("");h.css(j,k);this._proportionallyResize()}e(this.handles[i])}};this._renderAxis(this.element);this._handles=e(".ui-resizable-handle",this.element).disableSelection();
this._handles.mouseover(function(){if(!b.resizing){if(this.className)var h=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=h&&h[1]?h[1]:"se"}});if(a.autoHide){this._handles.hide();e(this.element).addClass("ui-resizable-autohide").hover(function(){e(this).removeClass("ui-resizable-autohide");b._handles.show()},function(){if(!b.resizing){e(this).addClass("ui-resizable-autohide");b._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(c){e(c).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};
if(this.elementIsWrapper){b(this.element);var a=this.element;a.after(this.originalElement.css({position:a.css("position"),width:a.outerWidth(),height:a.outerHeight(),top:a.css("top"),left:a.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);b(this.originalElement);return this},_mouseCapture:function(b){var a=false;for(var c in this.handles)if(e(this.handles[c])[0]==b.target)a=true;return!this.options.disabled&&a},_mouseStart:function(b){var a=this.options,c=this.element.position(),
d=this.element;this.resizing=true;this.documentScroll={top:e(document).scrollTop(),left:e(document).scrollLeft()};if(d.is(".ui-draggable")||/absolute/.test(d.css("position")))d.css({position:"absolute",top:c.top,left:c.left});e.browser.opera&&/relative/.test(d.css("position"))&&d.css({position:"relative",top:"auto",left:"auto"});this._renderProxy();c=m(this.helper.css("left"));var f=m(this.helper.css("top"));if(a.containment){c+=e(a.containment).scrollLeft()||0;f+=e(a.containment).scrollTop()||0}this.offset=
this.helper.offset();this.position={left:c,top:f};this.size=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalSize=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalPosition={left:c,top:f};this.sizeDiff={width:d.outerWidth()-d.width(),height:d.outerHeight()-d.height()};this.originalMousePosition={left:b.pageX,top:b.pageY};this.aspectRatio=typeof a.aspectRatio=="number"?a.aspectRatio:
this.originalSize.width/this.originalSize.height||1;a=e(".ui-resizable-"+this.axis).css("cursor");e("body").css("cursor",a=="auto"?this.axis+"-resize":a);d.addClass("ui-resizable-resizing");this._propagate("start",b);return true},_mouseDrag:function(b){var a=this.helper,c=this.originalMousePosition,d=this._change[this.axis];if(!d)return false;c=d.apply(this,[b,b.pageX-c.left||0,b.pageY-c.top||0]);if(this._aspectRatio||b.shiftKey)c=this._updateRatio(c,b);c=this._respectSize(c,b);this._propagate("resize",
b);a.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize();this._updateCache(c);this._trigger("resize",b,this.ui());return false},_mouseStop:function(b){this.resizing=false;var a=this.options,c=this;if(this._helper){var d=this._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName);d=f&&e.ui.hasScroll(d[0],"left")?0:c.sizeDiff.height;
f=f?0:c.sizeDiff.width;f={width:c.helper.width()-f,height:c.helper.height()-d};d=parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.left)||null;var g=parseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.top)||null;a.animate||this.element.css(e.extend(f,{top:g,left:d}));c.helper.height(c.size.height);c.helper.width(c.size.width);this._helper&&!a.animate&&this._proportionallyResize()}e("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");
this._propagate("stop",b);this._helper&&this.helper.remove();return false},_updateCache:function(b){this.offset=this.helper.offset();if(l(b.left))this.position.left=b.left;if(l(b.top))this.position.top=b.top;if(l(b.height))this.size.height=b.height;if(l(b.width))this.size.width=b.width},_updateRatio:function(b){var a=this.position,c=this.size,d=this.axis;if(b.height)b.width=c.height*this.aspectRatio;else if(b.width)b.height=c.width/this.aspectRatio;if(d=="sw"){b.left=a.left+(c.width-b.width);b.top=
null}if(d=="nw"){b.top=a.top+(c.height-b.height);b.left=a.left+(c.width-b.width)}return b},_respectSize:function(b){var a=this.options,c=this.axis,d=l(b.width)&&a.maxWidth&&a.maxWidth<b.width,f=l(b.height)&&a.maxHeight&&a.maxHeight<b.height,g=l(b.width)&&a.minWidth&&a.minWidth>b.width,h=l(b.height)&&a.minHeight&&a.minHeight>b.height;if(g)b.width=a.minWidth;if(h)b.height=a.minHeight;if(d)b.width=a.maxWidth;if(f)b.height=a.maxHeight;var i=this.originalPosition.left+this.originalSize.width,j=this.position.top+
this.size.height,k=/sw|nw|w/.test(c);c=/nw|ne|n/.test(c);if(g&&k)b.left=i-a.minWidth;if(d&&k)b.left=i-a.maxWidth;if(h&&c)b.top=j-a.minHeight;if(f&&c)b.top=j-a.maxHeight;if((a=!b.width&&!b.height)&&!b.left&&b.top)b.top=null;else if(a&&!b.top&&b.left)b.left=null;return b},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var b=this.helper||this.element,a=0;a<this._proportionallyResizeElements.length;a++){var c=this._proportionallyResizeElements[a];if(!this.borderDif){var d=
[c.css("borderTopWidth"),c.css("borderRightWidth"),c.css("borderBottomWidth"),c.css("borderLeftWidth")],f=[c.css("paddingTop"),c.css("paddingRight"),c.css("paddingBottom"),c.css("paddingLeft")];this.borderDif=e.map(d,function(g,h){g=parseInt(g,10)||0;h=parseInt(f[h],10)||0;return g+h})}e.browser.msie&&(e(b).is(":hidden")||e(b).parents(":hidden").length)||c.css({height:b.height()-this.borderDif[0]-this.borderDif[2]||0,width:b.width()-this.borderDif[1]-this.borderDif[3]||0})}},_renderProxy:function(){var b=
this.options;this.elementOffset=this.element.offset();if(this._helper){this.helper=this.helper||e('<div style="overflow:hidden;"></div>');var a=e.browser.msie&&e.browser.version<7,c=a?1:0;a=a?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+a,height:this.element.outerHeight()+a,position:"absolute",left:this.elementOffset.left-c+"px",top:this.elementOffset.top-c+"px",zIndex:++b.zIndex});this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(b,
a){return{width:this.originalSize.width+a}},w:function(b,a){return{left:this.originalPosition.left+a,width:this.originalSize.width-a}},n:function(b,a,c){return{top:this.originalPosition.top+c,height:this.originalSize.height-c}},s:function(b,a,c){return{height:this.originalSize.height+c}},se:function(b,a,c){return e.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},sw:function(b,a,c){return e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,a,
c]))},ne:function(b,a,c){return e.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},nw:function(b,a,c){return e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,a,c]))}},_propagate:function(b,a){e.ui.plugin.call(this,b,[a,this.ui()]);b!="resize"&&this._trigger(b,a,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,
originalPosition:this.originalPosition}}});e.extend(e.ui.resizable,{version:"1.8.11"});e.ui.plugin.add("resizable","alsoResize",{start:function(){var b=e(this).data("resizable").options,a=function(c){e(c).each(function(){var d=e(this);d.data("resizable-alsoresize",{width:parseInt(d.width(),10),height:parseInt(d.height(),10),left:parseInt(d.css("left"),10),top:parseInt(d.css("top"),10),position:d.css("position")})})};if(typeof b.alsoResize=="object"&&!b.alsoResize.parentNode)if(b.alsoResize.length){b.alsoResize=
b.alsoResize[0];a(b.alsoResize)}else e.each(b.alsoResize,function(c){a(c)});else a(b.alsoResize)},resize:function(b,a){var c=e(this).data("resizable");b=c.options;var d=c.originalSize,f=c.originalPosition,g={height:c.size.height-d.height||0,width:c.size.width-d.width||0,top:c.position.top-f.top||0,left:c.position.left-f.left||0},h=function(i,j){e(i).each(function(){var k=e(this),q=e(this).data("resizable-alsoresize"),p={},r=j&&j.length?j:k.parents(a.originalElement[0]).length?["width","height"]:["width",
"height","top","left"];e.each(r,function(n,o){if((n=(q[o]||0)+(g[o]||0))&&n>=0)p[o]=n||null});if(e.browser.opera&&/relative/.test(k.css("position"))){c._revertToRelativePosition=true;k.css({position:"absolute",top:"auto",left:"auto"})}k.css(p)})};typeof b.alsoResize=="object"&&!b.alsoResize.nodeType?e.each(b.alsoResize,function(i,j){h(i,j)}):h(b.alsoResize)},stop:function(){var b=e(this).data("resizable"),a=b.options,c=function(d){e(d).each(function(){var f=e(this);f.css({position:f.data("resizable-alsoresize").position})})};
if(b._revertToRelativePosition){b._revertToRelativePosition=false;typeof a.alsoResize=="object"&&!a.alsoResize.nodeType?e.each(a.alsoResize,function(d){c(d)}):c(a.alsoResize)}e(this).removeData("resizable-alsoresize")}});e.ui.plugin.add("resizable","animate",{stop:function(b){var a=e(this).data("resizable"),c=a.options,d=a._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName),g=f&&e.ui.hasScroll(d[0],"left")?0:a.sizeDiff.height;f={width:a.size.width-(f?0:a.sizeDiff.width),height:a.size.height-
g};g=parseInt(a.element.css("left"),10)+(a.position.left-a.originalPosition.left)||null;var h=parseInt(a.element.css("top"),10)+(a.position.top-a.originalPosition.top)||null;a.element.animate(e.extend(f,h&&g?{top:h,left:g}:{}),{duration:c.animateDuration,easing:c.animateEasing,step:function(){var i={width:parseInt(a.element.css("width"),10),height:parseInt(a.element.css("height"),10),top:parseInt(a.element.css("top"),10),left:parseInt(a.element.css("left"),10)};d&&d.length&&e(d[0]).css({width:i.width,
height:i.height});a._updateCache(i);a._propagate("resize",b)}})}});e.ui.plugin.add("resizable","containment",{start:function(){var b=e(this).data("resizable"),a=b.element,c=b.options.containment;if(a=c instanceof e?c.get(0):/parent/.test(c)?a.parent().get(0):c){b.containerElement=e(a);if(/document/.test(c)||c==document){b.containerOffset={left:0,top:0};b.containerPosition={left:0,top:0};b.parentData={element:e(document),left:0,top:0,width:e(document).width(),height:e(document).height()||document.body.parentNode.scrollHeight}}else{var d=
e(a),f=[];e(["Top","Right","Left","Bottom"]).each(function(i,j){f[i]=m(d.css("padding"+j))});b.containerOffset=d.offset();b.containerPosition=d.position();b.containerSize={height:d.innerHeight()-f[3],width:d.innerWidth()-f[1]};c=b.containerOffset;var g=b.containerSize.height,h=b.containerSize.width;h=e.ui.hasScroll(a,"left")?a.scrollWidth:h;g=e.ui.hasScroll(a)?a.scrollHeight:g;b.parentData={element:a,left:c.left,top:c.top,width:h,height:g}}}},resize:function(b){var a=e(this).data("resizable"),c=a.options,
d=a.containerOffset,f=a.position;b=a._aspectRatio||b.shiftKey;var g={top:0,left:0},h=a.containerElement;if(h[0]!=document&&/static/.test(h.css("position")))g=d;if(f.left<(a._helper?d.left:0)){a.size.width+=a._helper?a.position.left-d.left:a.position.left-g.left;if(b)a.size.height=a.size.width/c.aspectRatio;a.position.left=c.helper?d.left:0}if(f.top<(a._helper?d.top:0)){a.size.height+=a._helper?a.position.top-d.top:a.position.top;if(b)a.size.width=a.size.height*c.aspectRatio;a.position.top=a._helper?
d.top:0}a.offset.left=a.parentData.left+a.position.left;a.offset.top=a.parentData.top+a.position.top;c=Math.abs((a._helper?a.offset.left-g.left:a.offset.left-g.left)+a.sizeDiff.width);d=Math.abs((a._helper?a.offset.top-g.top:a.offset.top-d.top)+a.sizeDiff.height);f=a.containerElement.get(0)==a.element.parent().get(0);g=/relative|absolute/.test(a.containerElement.css("position"));if(f&&g)c-=a.parentData.left;if(c+a.size.width>=a.parentData.width){a.size.width=a.parentData.width-c;if(b)a.size.height=
a.size.width/a.aspectRatio}if(d+a.size.height>=a.parentData.height){a.size.height=a.parentData.height-d;if(b)a.size.width=a.size.height*a.aspectRatio}},stop:function(){var b=e(this).data("resizable"),a=b.options,c=b.containerOffset,d=b.containerPosition,f=b.containerElement,g=e(b.helper),h=g.offset(),i=g.outerWidth()-b.sizeDiff.width;g=g.outerHeight()-b.sizeDiff.height;b._helper&&!a.animate&&/relative/.test(f.css("position"))&&e(this).css({left:h.left-d.left-c.left,width:i,height:g});b._helper&&!a.animate&&
/static/.test(f.css("position"))&&e(this).css({left:h.left-d.left-c.left,width:i,height:g})}});e.ui.plugin.add("resizable","ghost",{start:function(){var b=e(this).data("resizable"),a=b.options,c=b.size;b.ghost=b.originalElement.clone();b.ghost.css({opacity:0.25,display:"block",position:"relative",height:c.height,width:c.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof a.ghost=="string"?a.ghost:"");b.ghost.appendTo(b.helper)},resize:function(){var b=e(this).data("resizable");
b.ghost&&b.ghost.css({position:"relative",height:b.size.height,width:b.size.width})},stop:function(){var b=e(this).data("resizable");b.ghost&&b.helper&&b.helper.get(0).removeChild(b.ghost.get(0))}});e.ui.plugin.add("resizable","grid",{resize:function(){var b=e(this).data("resizable"),a=b.options,c=b.size,d=b.originalSize,f=b.originalPosition,g=b.axis;a.grid=typeof a.grid=="number"?[a.grid,a.grid]:a.grid;var h=Math.round((c.width-d.width)/(a.grid[0]||1))*(a.grid[0]||1);a=Math.round((c.height-d.height)/
(a.grid[1]||1))*(a.grid[1]||1);if(/^(se|s|e)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a}else if(/^(ne)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}else{if(/^(sw)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a}else{b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}b.position.left=f.left-h}}});var m=function(b){return parseInt(b,10)||0},l=function(b){return!isNaN(parseInt(b,10))}})(jQuery);
;/*
 * jQuery UI Selectable 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Selectables
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.mouse.js
 *	jquery.ui.widget.js
 */
(function(e){e.widget("ui.selectable",e.ui.mouse,{options:{appendTo:"body",autoRefresh:true,distance:0,filter:"*",tolerance:"touch"},_create:function(){var c=this;this.element.addClass("ui-selectable");this.dragged=false;var f;this.refresh=function(){f=e(c.options.filter,c.element[0]);f.each(function(){var d=e(this),b=d.offset();e.data(this,"selectable-item",{element:this,$element:d,left:b.left,top:b.top,right:b.left+d.outerWidth(),bottom:b.top+d.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"),
selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecting")})})};this.refresh();this.selectees=f.addClass("ui-selectee");this._mouseInit();this.helper=e("<div class='ui-selectable-helper'></div>")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item");this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy();return this},_mouseStart:function(c){var f=this;this.opos=[c.pageX,
c.pageY];if(!this.options.disabled){var d=this.options;this.selectees=e(d.filter,this.element[0]);this._trigger("start",c);e(d.appendTo).append(this.helper);this.helper.css({left:c.clientX,top:c.clientY,width:0,height:0});d.autoRefresh&&this.refresh();this.selectees.filter(".ui-selected").each(function(){var b=e.data(this,"selectable-item");b.startselected=true;if(!c.metaKey){b.$element.removeClass("ui-selected");b.selected=false;b.$element.addClass("ui-unselecting");b.unselecting=true;f._trigger("unselecting",
c,{unselecting:b.element})}});e(c.target).parents().andSelf().each(function(){var b=e.data(this,"selectable-item");if(b){var g=!c.metaKey||!b.$element.hasClass("ui-selected");b.$element.removeClass(g?"ui-unselecting":"ui-selected").addClass(g?"ui-selecting":"ui-unselecting");b.unselecting=!g;b.selecting=g;(b.selected=g)?f._trigger("selecting",c,{selecting:b.element}):f._trigger("unselecting",c,{unselecting:b.element});return false}})}},_mouseDrag:function(c){var f=this;this.dragged=true;if(!this.options.disabled){var d=
this.options,b=this.opos[0],g=this.opos[1],h=c.pageX,i=c.pageY;if(b>h){var j=h;h=b;b=j}if(g>i){j=i;i=g;g=j}this.helper.css({left:b,top:g,width:h-b,height:i-g});this.selectees.each(function(){var a=e.data(this,"selectable-item");if(!(!a||a.element==f.element[0])){var k=false;if(d.tolerance=="touch")k=!(a.left>h||a.right<b||a.top>i||a.bottom<g);else if(d.tolerance=="fit")k=a.left>b&&a.right<h&&a.top>g&&a.bottom<i;if(k){if(a.selected){a.$element.removeClass("ui-selected");a.selected=false}if(a.unselecting){a.$element.removeClass("ui-unselecting");
a.unselecting=false}if(!a.selecting){a.$element.addClass("ui-selecting");a.selecting=true;f._trigger("selecting",c,{selecting:a.element})}}else{if(a.selecting)if(c.metaKey&&a.startselected){a.$element.removeClass("ui-selecting");a.selecting=false;a.$element.addClass("ui-selected");a.selected=true}else{a.$element.removeClass("ui-selecting");a.selecting=false;if(a.startselected){a.$element.addClass("ui-unselecting");a.unselecting=true}f._trigger("unselecting",c,{unselecting:a.element})}if(a.selected)if(!c.metaKey&&
!a.startselected){a.$element.removeClass("ui-selected");a.selected=false;a.$element.addClass("ui-unselecting");a.unselecting=true;f._trigger("unselecting",c,{unselecting:a.element})}}}});return false}},_mouseStop:function(c){var f=this;this.dragged=false;e(".ui-unselecting",this.element[0]).each(function(){var d=e.data(this,"selectable-item");d.$element.removeClass("ui-unselecting");d.unselecting=false;d.startselected=false;f._trigger("unselected",c,{unselected:d.element})});e(".ui-selecting",this.element[0]).each(function(){var d=
e.data(this,"selectable-item");d.$element.removeClass("ui-selecting").addClass("ui-selected");d.selecting=false;d.selected=true;d.startselected=true;f._trigger("selected",c,{selected:d.element})});this._trigger("stop",c);this.helper.remove();return false}});e.extend(e.ui.selectable,{version:"1.8.11"})})(jQuery);
;/*
 * jQuery UI Sortable 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Sortables
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.mouse.js
 *	jquery.ui.widget.js
 */
(function(d){d.widget("ui.sortable",d.ui.mouse,{widgetEventPrefix:"sort",options:{appendTo:"parent",axis:false,connectWith:false,containment:false,cursor:"auto",cursorAt:false,dropOnEmpty:true,forcePlaceholderSize:false,forceHelperSize:false,grid:false,handle:false,helper:"original",items:"> *",opacity:false,placeholder:false,revert:false,scroll:true,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1E3},_create:function(){this.containerCache={};this.element.addClass("ui-sortable");
this.refresh();this.floating=this.items.length?/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):false;this.offset=this.element.offset();this._mouseInit()},destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable");this._mouseDestroy();for(var a=this.items.length-1;a>=0;a--)this.items[a].item.removeData("sortable-item");return this},_setOption:function(a,b){if(a==="disabled"){this.options[a]=
b;this.widget()[b?"addClass":"removeClass"]("ui-sortable-disabled")}else d.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(a,b){if(this.reverting)return false;if(this.options.disabled||this.options.type=="static")return false;this._refreshItems(a);var c=null,e=this;d(a.target).parents().each(function(){if(d.data(this,"sortable-item")==e){c=d(this);return false}});if(d.data(a.target,"sortable-item")==e)c=d(a.target);if(!c)return false;if(this.options.handle&&!b){var f=false;
d(this.options.handle,c).find("*").andSelf().each(function(){if(this==a.target)f=true});if(!f)return false}this.currentItem=c;this._removeCurrentsFromItems();return true},_mouseStart:function(a,b,c){b=this.options;var e=this;this.currentContainer=this;this.refreshPositions();this.helper=this._createHelper(a);this._cacheHelperProportions();this._cacheMargins();this.scrollParent=this.helper.scrollParent();this.offset=this.currentItem.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-
this.margins.left};this.helper.css("position","absolute");this.cssPosition=this.helper.css("position");d.extend(this.offset,{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]};
this.helper[0]!=this.currentItem[0]&&this.currentItem.hide();this._createPlaceholder();b.containment&&this._setContainment();if(b.cursor){if(d("body").css("cursor"))this._storedCursor=d("body").css("cursor");d("body").css("cursor",b.cursor)}if(b.opacity){if(this.helper.css("opacity"))this._storedOpacity=this.helper.css("opacity");this.helper.css("opacity",b.opacity)}if(b.zIndex){if(this.helper.css("zIndex"))this._storedZIndex=this.helper.css("zIndex");this.helper.css("zIndex",b.zIndex)}if(this.scrollParent[0]!=
document&&this.scrollParent[0].tagName!="HTML")this.overflowOffset=this.scrollParent.offset();this._trigger("start",a,this._uiHash());this._preserveHelperProportions||this._cacheHelperProportions();if(!c)for(c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("activate",a,e._uiHash(this));if(d.ui.ddmanager)d.ui.ddmanager.current=this;d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.dragging=true;this.helper.addClass("ui-sortable-helper");this._mouseDrag(a);
return true},_mouseDrag:function(a){this.position=this._generatePosition(a);this.positionAbs=this._convertPositionTo("absolute");if(!this.lastPositionAbs)this.lastPositionAbs=this.positionAbs;if(this.options.scroll){var b=this.options,c=false;if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){if(this.overflowOffset.top+this.scrollParent[0].offsetHeight-a.pageY<b.scrollSensitivity)this.scrollParent[0].scrollTop=c=this.scrollParent[0].scrollTop+b.scrollSpeed;else if(a.pageY-this.overflowOffset.top<
b.scrollSensitivity)this.scrollParent[0].scrollTop=c=this.scrollParent[0].scrollTop-b.scrollSpeed;if(this.overflowOffset.left+this.scrollParent[0].offsetWidth-a.pageX<b.scrollSensitivity)this.scrollParent[0].scrollLeft=c=this.scrollParent[0].scrollLeft+b.scrollSpeed;else if(a.pageX-this.overflowOffset.left<b.scrollSensitivity)this.scrollParent[0].scrollLeft=c=this.scrollParent[0].scrollLeft-b.scrollSpeed}else{if(a.pageY-d(document).scrollTop()<b.scrollSensitivity)c=d(document).scrollTop(d(document).scrollTop()-
b.scrollSpeed);else if(d(window).height()-(a.pageY-d(document).scrollTop())<b.scrollSensitivity)c=d(document).scrollTop(d(document).scrollTop()+b.scrollSpeed);if(a.pageX-d(document).scrollLeft()<b.scrollSensitivity)c=d(document).scrollLeft(d(document).scrollLeft()-b.scrollSpeed);else if(d(window).width()-(a.pageX-d(document).scrollLeft())<b.scrollSensitivity)c=d(document).scrollLeft(d(document).scrollLeft()+b.scrollSpeed)}c!==false&&d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,
a)}this.positionAbs=this._convertPositionTo("absolute");if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";for(b=this.items.length-1;b>=0;b--){c=this.items[b];var e=c.item[0],f=this._intersectsWithPointer(c);if(f)if(e!=this.currentItem[0]&&this.placeholder[f==1?"next":"prev"]()[0]!=e&&!d.ui.contains(this.placeholder[0],e)&&(this.options.type=="semi-dynamic"?!d.ui.contains(this.element[0],
e):true)){this.direction=f==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(c))this._rearrange(a,c);else break;this._trigger("change",a,this._uiHash());break}}this._contactContainers(a);d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);this._trigger("sort",a,this._uiHash());this.lastPositionAbs=this.positionAbs;return false},_mouseStop:function(a,b){if(a){d.ui.ddmanager&&!this.options.dropBehaviour&&d.ui.ddmanager.drop(this,a);if(this.options.revert){var c=this;b=c.placeholder.offset();
c.reverting=true;d(this.helper).animate({left:b.left-this.offset.parent.left-c.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:b.top-this.offset.parent.top-c.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){c._clear(a)})}else this._clear(a,b);return false}},cancel:function(){var a=this;if(this.dragging){this._mouseUp({target:null});this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):
this.currentItem.show();for(var b=this.containers.length-1;b>=0;b--){this.containers[b]._trigger("deactivate",null,a._uiHash(this));if(this.containers[b].containerCache.over){this.containers[b]._trigger("out",null,a._uiHash(this));this.containers[b].containerCache.over=0}}}if(this.placeholder){this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]);this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove();d.extend(this,{helper:null,
dragging:false,reverting:false,_noFinalSort:null});this.domPosition.prev?d(this.domPosition.prev).after(this.currentItem):d(this.domPosition.parent).prepend(this.currentItem)}return this},serialize:function(a){var b=this._getItemsAsjQuery(a&&a.connected),c=[];a=a||{};d(b).each(function(){var e=(d(a.item||this).attr(a.attribute||"id")||"").match(a.expression||/(.+)[-=_](.+)/);if(e)c.push((a.key||e[1]+"[]")+"="+(a.key&&a.expression?e[1]:e[2]))});!c.length&&a.key&&c.push(a.key+"=");return c.join("&")},
toArray:function(a){var b=this._getItemsAsjQuery(a&&a.connected),c=[];a=a||{};b.each(function(){c.push(d(a.item||this).attr(a.attribute||"id")||"")});return c},_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,e=this.positionAbs.top,f=e+this.helperProportions.height,g=a.left,h=g+a.width,i=a.top,k=i+a.height,j=this.offset.click.top,l=this.offset.click.left;j=e+j>i&&e+j<k&&b+l>g&&b+l<h;return this.options.tolerance=="pointer"||this.options.forcePointerForContainers||
this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>a[this.floating?"width":"height"]?j:g<b+this.helperProportions.width/2&&c-this.helperProportions.width/2<h&&i<e+this.helperProportions.height/2&&f-this.helperProportions.height/2<k},_intersectsWithPointer:function(a){var b=d.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,a.top,a.height);a=d.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,a.left,a.width);b=b&&a;a=this._getDragVerticalDirection();
var c=this._getDragHorizontalDirection();if(!b)return false;return this.floating?c&&c=="right"||a=="down"?2:1:a&&(a=="down"?2:1)},_intersectsWithSides:function(a){var b=d.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,a.top+a.height/2,a.height);a=d.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,a.left+a.width/2,a.width);var c=this._getDragVerticalDirection(),e=this._getDragHorizontalDirection();return this.floating&&e?e=="right"&&a||e=="left"&&!a:c&&(c=="down"&&b||c=="up"&&!b)},
_getDragVerticalDirection:function(){var a=this.positionAbs.top-this.lastPositionAbs.top;return a!=0&&(a>0?"down":"up")},_getDragHorizontalDirection:function(){var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){this._refreshItems(a);this.refreshPositions();return this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(a){var b=[],c=[],e=this._connectWith();
if(e&&a)for(a=e.length-1;a>=0;a--)for(var f=d(e[a]),g=f.length-1;g>=0;g--){var h=d.data(f[g],"sortable");if(h&&h!=this&&!h.options.disabled)c.push([d.isFunction(h.options.items)?h.options.items.call(h.element):d(h.options.items,h.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),h])}c.push([d.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):d(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),
this]);for(a=c.length-1;a>=0;a--)c[a][0].each(function(){b.push(this)});return d(b)},_removeCurrentsFromItems:function(){for(var a=this.currentItem.find(":data(sortable-item)"),b=0;b<this.items.length;b++)for(var c=0;c<a.length;c++)a[c]==this.items[b].item[0]&&this.items.splice(b,1)},_refreshItems:function(a){this.items=[];this.containers=[this];var b=this.items,c=[[d.isFunction(this.options.items)?this.options.items.call(this.element[0],a,{item:this.currentItem}):d(this.options.items,this.element),
this]],e=this._connectWith();if(e)for(var f=e.length-1;f>=0;f--)for(var g=d(e[f]),h=g.length-1;h>=0;h--){var i=d.data(g[h],"sortable");if(i&&i!=this&&!i.options.disabled){c.push([d.isFunction(i.options.items)?i.options.items.call(i.element[0],a,{item:this.currentItem}):d(i.options.items,i.element),i]);this.containers.push(i)}}for(f=c.length-1;f>=0;f--){a=c[f][1];e=c[f][0];h=0;for(g=e.length;h<g;h++){i=d(e[h]);i.data("sortable-item",a);b.push({item:i,instance:a,width:0,height:0,left:0,top:0})}}},refreshPositions:function(a){if(this.offsetParent&&
this.helper)this.offset.parent=this._getParentOffset();for(var b=this.items.length-1;b>=0;b--){var c=this.items[b],e=this.options.toleranceElement?d(this.options.toleranceElement,c.item):c.item;if(!a){c.width=e.outerWidth();c.height=e.outerHeight()}e=e.offset();c.left=e.left;c.top=e.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(b=this.containers.length-1;b>=0;b--){e=this.containers[b].element.offset();this.containers[b].containerCache.left=
e.left;this.containers[b].containerCache.top=e.top;this.containers[b].containerCache.width=this.containers[b].element.outerWidth();this.containers[b].containerCache.height=this.containers[b].element.outerHeight()}return this},_createPlaceholder:function(a){var b=a||this,c=b.options;if(!c.placeholder||c.placeholder.constructor==String){var e=c.placeholder;c.placeholder={element:function(){var f=d(document.createElement(b.currentItem[0].nodeName)).addClass(e||b.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];
if(!e)f.style.visibility="hidden";return f},update:function(f,g){if(!(e&&!c.forcePlaceholderSize)){g.height()||g.height(b.currentItem.innerHeight()-parseInt(b.currentItem.css("paddingTop")||0,10)-parseInt(b.currentItem.css("paddingBottom")||0,10));g.width()||g.width(b.currentItem.innerWidth()-parseInt(b.currentItem.css("paddingLeft")||0,10)-parseInt(b.currentItem.css("paddingRight")||0,10))}}}}b.placeholder=d(c.placeholder.element.call(b.element,b.currentItem));b.currentItem.after(b.placeholder);
c.placeholder.update(b,b.placeholder)},_contactContainers:function(a){for(var b=null,c=null,e=this.containers.length-1;e>=0;e--)if(!d.ui.contains(this.currentItem[0],this.containers[e].element[0]))if(this._intersectsWith(this.containers[e].containerCache)){if(!(b&&d.ui.contains(this.containers[e].element[0],b.element[0]))){b=this.containers[e];c=e}}else if(this.containers[e].containerCache.over){this.containers[e]._trigger("out",a,this._uiHash(this));this.containers[e].containerCache.over=0}if(b)if(this.containers.length===
1){this.containers[c]._trigger("over",a,this._uiHash(this));this.containers[c].containerCache.over=1}else if(this.currentContainer!=this.containers[c]){b=1E4;e=null;for(var f=this.positionAbs[this.containers[c].floating?"left":"top"],g=this.items.length-1;g>=0;g--)if(d.ui.contains(this.containers[c].element[0],this.items[g].item[0])){var h=this.items[g][this.containers[c].floating?"left":"top"];if(Math.abs(h-f)<b){b=Math.abs(h-f);e=this.items[g]}}if(e||this.options.dropOnEmpty){this.currentContainer=
this.containers[c];e?this._rearrange(a,e,null,true):this._rearrange(a,null,this.containers[c].element,true);this._trigger("change",a,this._uiHash());this.containers[c]._trigger("change",a,this._uiHash(this));this.options.placeholder.update(this.currentContainer,this.placeholder);this.containers[c]._trigger("over",a,this._uiHash(this));this.containers[c].containerCache.over=1}}},_createHelper:function(a){var b=this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a,this.currentItem])):
b.helper=="clone"?this.currentItem.clone():this.currentItem;a.parents("body").length||d(b.appendTo!="parent"?b.appendTo:this.currentItem[0].parentNode)[0].appendChild(a[0]);if(a[0]==this.currentItem[0])this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")};if(a[0].style.width==""||b.forceHelperSize)a.width(this.currentItem.width());if(a[0].style.height==
""||b.forceHelperSize)a.height(this.currentItem.height());return a},_adjustOffsetFromHelper:function(a){if(typeof a=="string")a=a.split(" ");if(d.isArray(a))a={left:+a[0],top:+a[1]||0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){this.offsetParent=
this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0])){a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a={top:0,left:0};return{top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),
10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.currentItem.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions=
{width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var a=this.options;if(a.containment=="parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,d(a.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(d(a.containment=="document"?document:window).height()||
document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)){var b=d(a.containment)[0];a=d(a.containment).offset();var c=d(b).css("overflow")!="hidden";this.containment=[a.left+(parseInt(d(b).css("borderLeftWidth"),10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0)-this.margins.left,a.top+(parseInt(d(b).css("borderTopWidth"),10)||0)+(parseInt(d(b).css("paddingTop"),10)||0)-this.margins.top,a.left+(c?Math.max(b.scrollWidth,
b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,a.top+(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(a,b){if(!b)b=this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=
document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(c[0].tagName);return{top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():
e?0:c.scrollLeft())*a)}},_generatePosition:function(a){var b=this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(c[0].tagName);if(this.cssPosition=="relative"&&!(this.scrollParent[0]!=document&&this.scrollParent[0]!=this.offsetParent[0]))this.offset.relative=this._getRelativeOffset();var f=a.pageX,g=a.pageY;if(this.originalPosition){if(this.containment){if(a.pageX-
this.offset.click.left<this.containment[0])f=this.containment[0]+this.offset.click.left;if(a.pageY-this.offset.click.top<this.containment[1])g=this.containment[1]+this.offset.click.top;if(a.pageX-this.offset.click.left>this.containment[2])f=this.containment[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>this.containment[3])g=this.containment[3]+this.offset.click.top}if(b.grid){g=this.originalPageY+Math.round((g-this.originalPageY)/b.grid[1])*b.grid[1];g=this.containment?!(g-this.offset.click.top<
this.containment[1]||g-this.offset.click.top>this.containment[3])?g:!(g-this.offset.click.top<this.containment[1])?g-b.grid[1]:g+b.grid[1]:g;f=this.originalPageX+Math.round((f-this.originalPageX)/b.grid[0])*b.grid[0];f=this.containment?!(f-this.offset.click.left<this.containment[0]||f-this.offset.click.left>this.containment[2])?f:!(f-this.offset.click.left<this.containment[0])?f-b.grid[0]:f+b.grid[0]:f}}return{top:g-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(d.browser.safari&&
this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:c.scrollTop()),left:f-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(d.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:c.scrollLeft())}},_rearrange:function(a,b,c,e){c?c[0].appendChild(this.placeholder[0]):b.item[0].parentNode.insertBefore(this.placeholder[0],this.direction=="down"?b.item[0]:b.item[0].nextSibling);this.counter=
this.counter?++this.counter:1;var f=this,g=this.counter;window.setTimeout(function(){g==f.counter&&f.refreshPositions(!e)},0)},_clear:function(a,b){this.reverting=false;var c=[];!this._noFinalSort&&this.currentItem[0].parentNode&&this.placeholder.before(this.currentItem);this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){for(var e in this._storedCSS)if(this._storedCSS[e]=="auto"||this._storedCSS[e]=="static")this._storedCSS[e]="";this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();
this.fromOutside&&!b&&c.push(function(f){this._trigger("receive",f,this._uiHash(this.fromOutside))});if((this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!b)c.push(function(f){this._trigger("update",f,this._uiHash())});if(!d.ui.contains(this.element[0],this.currentItem[0])){b||c.push(function(f){this._trigger("remove",f,this._uiHash())});for(e=this.containers.length-1;e>=0;e--)if(d.ui.contains(this.containers[e].element[0],
this.currentItem[0])&&!b){c.push(function(f){return function(g){f._trigger("receive",g,this._uiHash(this))}}.call(this,this.containers[e]));c.push(function(f){return function(g){f._trigger("update",g,this._uiHash(this))}}.call(this,this.containers[e]))}}for(e=this.containers.length-1;e>=0;e--){b||c.push(function(f){return function(g){f._trigger("deactivate",g,this._uiHash(this))}}.call(this,this.containers[e]));if(this.containers[e].containerCache.over){c.push(function(f){return function(g){f._trigger("out",
g,this._uiHash(this))}}.call(this,this.containers[e]));this.containers[e].containerCache.over=0}}this._storedCursor&&d("body").css("cursor",this._storedCursor);this._storedOpacity&&this.helper.css("opacity",this._storedOpacity);if(this._storedZIndex)this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex);this.dragging=false;if(this.cancelHelperRemoval){if(!b){this._trigger("beforeStop",a,this._uiHash());for(e=0;e<c.length;e++)c[e].call(this,a);this._trigger("stop",a,this._uiHash())}return false}b||
this._trigger("beforeStop",a,this._uiHash());this.placeholder[0].parentNode.removeChild(this.placeholder[0]);this.helper[0]!=this.currentItem[0]&&this.helper.remove();this.helper=null;if(!b){for(e=0;e<c.length;e++)c[e].call(this,a);this._trigger("stop",a,this._uiHash())}this.fromOutside=false;return true},_trigger:function(){d.Widget.prototype._trigger.apply(this,arguments)===false&&this.cancel()},_uiHash:function(a){var b=a||this;return{helper:b.helper,placeholder:b.placeholder||d([]),position:b.position,
originalPosition:b.originalPosition,offset:b.positionAbs,item:b.currentItem,sender:a?a.element:null}}});d.extend(d.ui.sortable,{version:"1.8.11"})})(jQuery);
;/*
 * jQuery UI Accordion 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Accordion
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.widget.js
 */
(function(c){c.widget("ui.accordion",{options:{active:0,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){var a=this,b=a.options;a.running=0;a.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix");
a.headers=a.element.find(b.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){b.disabled||c(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){b.disabled||c(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){b.disabled||c(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){b.disabled||c(this).removeClass("ui-state-focus")});a.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");
if(b.navigation){var d=a.element.find("a").filter(b.navigationFilter).eq(0);if(d.length){var h=d.closest(".ui-accordion-header");a.active=h.length?h:d.closest(".ui-accordion-content").prev()}}a.active=a._findActive(a.active||b.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");a.active.next().addClass("ui-accordion-content-active");a._createIcons();a.resize();a.element.attr("role","tablist");a.headers.attr("role","tab").bind("keydown.accordion",
function(f){return a._keydown(f)}).next().attr("role","tabpanel");a.headers.not(a.active||"").attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide();a.active.length?a.active.attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}):a.headers.eq(0).attr("tabIndex",0);c.browser.safari||a.headers.find("a").attr("tabIndex",-1);b.event&&a.headers.bind(b.event.split(" ").join(".accordion ")+".accordion",function(f){a._clickHandler.call(a,f,this);f.preventDefault()})},_createIcons:function(){var a=
this.options;if(a.icons){c("<span></span>").addClass("ui-icon "+a.icons.header).prependTo(this.headers);this.active.children(".ui-icon").toggleClass(a.icons.header).toggleClass(a.icons.headerSelected);this.element.addClass("ui-accordion-icons")}},_destroyIcons:function(){this.headers.children(".ui-icon").remove();this.element.removeClass("ui-accordion-icons")},destroy:function(){var a=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex");
this.headers.find("a").removeAttr("tabIndex");this._destroyIcons();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");if(a.autoHeight||a.fillHeight)b.css("height","");return c.Widget.prototype.destroy.call(this)},_setOption:function(a,b){c.Widget.prototype._setOption.apply(this,arguments);a=="active"&&this.activate(b);if(a=="icons"){this._destroyIcons();
b&&this._createIcons()}if(a=="disabled")this.headers.add(this.headers.next())[b?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(a){if(!(this.options.disabled||a.altKey||a.ctrlKey)){var b=c.ui.keyCode,d=this.headers.length,h=this.headers.index(a.target),f=false;switch(a.keyCode){case b.RIGHT:case b.DOWN:f=this.headers[(h+1)%d];break;case b.LEFT:case b.UP:f=this.headers[(h-1+d)%d];break;case b.SPACE:case b.ENTER:this._clickHandler({target:a.target},a.target);
a.preventDefault()}if(f){c(a.target).attr("tabIndex",-1);c(f).attr("tabIndex",0);f.focus();return false}return true}},resize:function(){var a=this.options,b;if(a.fillSpace){if(c.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}b=this.element.parent().height();c.browser.msie&&this.element.parent().css("overflow",d);this.headers.each(function(){b-=c(this).outerHeight(true)});this.headers.next().each(function(){c(this).height(Math.max(0,b-c(this).innerHeight()+
c(this).height()))}).css("overflow","auto")}else if(a.autoHeight){b=0;this.headers.next().each(function(){b=Math.max(b,c(this).height("").height())}).height(b)}return this},activate:function(a){this.options.active=a;a=this._findActive(a)[0];this._clickHandler({target:a},a);return this},_findActive:function(a){return a?typeof a==="number"?this.headers.filter(":eq("+a+")"):this.headers.not(this.headers.not(a)):a===false?c([]):this.headers.filter(":eq(0)")},_clickHandler:function(a,b){var d=this.options;
if(!d.disabled)if(a.target){a=c(a.currentTarget||b);b=a[0]===this.active[0];d.active=d.collapsible&&b?false:this.headers.index(a);if(!(this.running||!d.collapsible&&b)){var h=this.active;j=a.next();g=this.active.next();e={options:d,newHeader:b&&d.collapsible?c([]):a,oldHeader:this.active,newContent:b&&d.collapsible?c([]):j,oldContent:g};var f=this.headers.index(this.active[0])>this.headers.index(a[0]);this.active=b?c([]):a;this._toggle(j,g,e,b,f);h.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);
if(!b){a.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);a.next().addClass("ui-accordion-content-active")}}}else if(d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var g=this.active.next(),
e={options:d,newHeader:c([]),oldHeader:d.active,newContent:c([]),oldContent:g},j=this.active=c([]);this._toggle(j,g,e)}},_toggle:function(a,b,d,h,f){var g=this,e=g.options;g.toShow=a;g.toHide=b;g.data=d;var j=function(){if(g)return g._completed.apply(g,arguments)};g._trigger("changestart",null,g.data);g.running=b.size()===0?a.size():b.size();if(e.animated){d={};d=e.collapsible&&h?{toShow:c([]),toHide:b,complete:j,down:f,autoHeight:e.autoHeight||e.fillSpace}:{toShow:a,toHide:b,complete:j,down:f,autoHeight:e.autoHeight||
e.fillSpace};if(!e.proxied)e.proxied=e.animated;if(!e.proxiedDuration)e.proxiedDuration=e.duration;e.animated=c.isFunction(e.proxied)?e.proxied(d):e.proxied;e.duration=c.isFunction(e.proxiedDuration)?e.proxiedDuration(d):e.proxiedDuration;h=c.ui.accordion.animations;var i=e.duration,k=e.animated;if(k&&!h[k]&&!c.easing[k])k="slide";h[k]||(h[k]=function(l){this.slide(l,{easing:k,duration:i||700})});h[k](d)}else{if(e.collapsible&&h)a.toggle();else{b.hide();a.show()}j(true)}b.prev().attr({"aria-expanded":"false",
"aria-selected":"false",tabIndex:-1}).blur();a.prev().attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()},_completed:function(a){this.running=a?0:--this.running;if(!this.running){this.options.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""});this.toHide.removeClass("ui-accordion-content-active");if(this.toHide.length)this.toHide.parent()[0].className=this.toHide.parent()[0].className;this._trigger("change",null,this.data)}}});c.extend(c.ui.accordion,{version:"1.8.11",
animations:{slide:function(a,b){a=c.extend({easing:"swing",duration:300},a,b);if(a.toHide.size())if(a.toShow.size()){var d=a.toShow.css("overflow"),h=0,f={},g={},e;b=a.toShow;e=b[0].style.width;b.width(parseInt(b.parent().width(),10)-parseInt(b.css("paddingLeft"),10)-parseInt(b.css("paddingRight"),10)-(parseInt(b.css("borderLeftWidth"),10)||0)-(parseInt(b.css("borderRightWidth"),10)||0));c.each(["height","paddingTop","paddingBottom"],function(j,i){g[i]="hide";j=(""+c.css(a.toShow[0],i)).match(/^([\d+-.]+)(.*)$/);
f[i]={value:j[1],unit:j[2]||"px"}});a.toShow.css({height:0,overflow:"hidden"}).show();a.toHide.filter(":hidden").each(a.complete).end().filter(":visible").animate(g,{step:function(j,i){if(i.prop=="height")h=i.end-i.start===0?0:(i.now-i.start)/(i.end-i.start);a.toShow[0].style[i.prop]=h*f[i.prop].value+f[i.prop].unit},duration:a.duration,easing:a.easing,complete:function(){a.autoHeight||a.toShow.css("height","");a.toShow.css({width:e,overflow:d});a.complete()}})}else a.toHide.animate({height:"hide",
paddingTop:"hide",paddingBottom:"hide"},a);else a.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},a)},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1E3:200})}}})})(jQuery);
;/*
 * jQuery UI Autocomplete 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Autocomplete
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.widget.js
 *	jquery.ui.position.js
 */
(function(d){var e=0;d.widget("ui.autocomplete",{options:{appendTo:"body",autoFocus:false,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null},pending:0,_create:function(){var a=this,b=this.element[0].ownerDocument,g;this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(c){if(!(a.options.disabled||a.element.attr("readonly"))){g=
false;var f=d.ui.keyCode;switch(c.keyCode){case f.PAGE_UP:a._move("previousPage",c);break;case f.PAGE_DOWN:a._move("nextPage",c);break;case f.UP:a._move("previous",c);c.preventDefault();break;case f.DOWN:a._move("next",c);c.preventDefault();break;case f.ENTER:case f.NUMPAD_ENTER:if(a.menu.active){g=true;c.preventDefault()}case f.TAB:if(!a.menu.active)return;a.menu.select(c);break;case f.ESCAPE:a.element.val(a.term);a.close(c);break;default:clearTimeout(a.searching);a.searching=setTimeout(function(){if(a.term!=
a.element.val()){a.selectedItem=null;a.search(null,c)}},a.options.delay);break}}}).bind("keypress.autocomplete",function(c){if(g){g=false;c.preventDefault()}}).bind("focus.autocomplete",function(){if(!a.options.disabled){a.selectedItem=null;a.previous=a.element.val()}}).bind("blur.autocomplete",function(c){if(!a.options.disabled){clearTimeout(a.searching);a.closing=setTimeout(function(){a.close(c);a._change(c)},150)}});this._initSource();this.response=function(){return a._response.apply(a,arguments)};
this.menu=d("<ul></ul>").addClass("ui-autocomplete").appendTo(d(this.options.appendTo||"body",b)[0]).mousedown(function(c){var f=a.menu.element[0];d(c.target).closest(".ui-menu-item").length||setTimeout(function(){d(document).one("mousedown",function(h){h.target!==a.element[0]&&h.target!==f&&!d.ui.contains(f,h.target)&&a.close()})},1);setTimeout(function(){clearTimeout(a.closing)},13)}).menu({focus:function(c,f){f=f.item.data("item.autocomplete");false!==a._trigger("focus",c,{item:f})&&/^key/.test(c.originalEvent.type)&&
a.element.val(f.value)},selected:function(c,f){var h=f.item.data("item.autocomplete"),i=a.previous;if(a.element[0]!==b.activeElement){a.element.focus();a.previous=i;setTimeout(function(){a.previous=i;a.selectedItem=h},1)}false!==a._trigger("select",c,{item:h})&&a.element.val(h.value);a.term=a.element.val();a.close(c);a.selectedItem=h},blur:function(){a.menu.element.is(":visible")&&a.element.val()!==a.term&&a.element.val(a.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu");
d.fn.bgiframe&&this.menu.element.bgiframe()},destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup");this.menu.element.remove();d.Widget.prototype.destroy.call(this)},_setOption:function(a,b){d.Widget.prototype._setOption.apply(this,arguments);a==="source"&&this._initSource();if(a==="appendTo")this.menu.element.appendTo(d(b||"body",this.element[0].ownerDocument)[0]);a==="disabled"&&
b&&this.xhr&&this.xhr.abort()},_initSource:function(){var a=this,b,g;if(d.isArray(this.options.source)){b=this.options.source;this.source=function(c,f){f(d.ui.autocomplete.filter(b,c.term))}}else if(typeof this.options.source==="string"){g=this.options.source;this.source=function(c,f){a.xhr&&a.xhr.abort();a.xhr=d.ajax({url:g,data:c,dataType:"json",autocompleteRequest:++e,success:function(h){this.autocompleteRequest===e&&f(h)},error:function(){this.autocompleteRequest===e&&f([])}})}}else this.source=
this.options.source},search:function(a,b){a=a!=null?a:this.element.val();this.term=this.element.val();if(a.length<this.options.minLength)return this.close(b);clearTimeout(this.closing);if(this._trigger("search",b)!==false)return this._search(a)},_search:function(a){this.pending++;this.element.addClass("ui-autocomplete-loading");this.source({term:a},this.response)},_response:function(a){if(!this.options.disabled&&a&&a.length){a=this._normalize(a);this._suggest(a);this._trigger("open")}else this.close();
this.pending--;this.pending||this.element.removeClass("ui-autocomplete-loading")},close:function(a){clearTimeout(this.closing);if(this.menu.element.is(":visible")){this.menu.element.hide();this.menu.deactivate();this._trigger("close",a)}},_change:function(a){this.previous!==this.element.val()&&this._trigger("change",a,{item:this.selectedItem})},_normalize:function(a){if(a.length&&a[0].label&&a[0].value)return a;return d.map(a,function(b){if(typeof b==="string")return{label:b,value:b};return d.extend({label:b.label||
b.value,value:b.value||b.label},b)})},_suggest:function(a){var b=this.menu.element.empty().zIndex(this.element.zIndex()+1);this._renderMenu(b,a);this.menu.deactivate();this.menu.refresh();b.show();this._resizeMenu();b.position(d.extend({of:this.element},this.options.position));this.options.autoFocus&&this.menu.next(new d.Event("mouseover"))},_resizeMenu:function(){var a=this.menu.element;a.outerWidth(Math.max(a.width("").outerWidth(),this.element.outerWidth()))},_renderMenu:function(a,b){var g=this;
d.each(b,function(c,f){g._renderItem(a,f)})},_renderItem:function(a,b){return d("<li></li>").data("item.autocomplete",b).append(d("<a></a>").text(b.label)).appendTo(a)},_move:function(a,b){if(this.menu.element.is(":visible"))if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term);this.menu.deactivate()}else this.menu[a](b);else this.search(null,b)},widget:function(){return this.menu.element}});d.extend(d.ui.autocomplete,{escapeRegex:function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,
"\\$&")},filter:function(a,b){var g=new RegExp(d.ui.autocomplete.escapeRegex(b),"i");return d.grep(a,function(c){return g.test(c.label||c.value||c)})}})})(jQuery);
(function(d){d.widget("ui.menu",{_create:function(){var e=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(a){if(d(a.target).closest(".ui-menu-item a").length){a.preventDefault();e.select(a)}});this.refresh()},refresh:function(){var e=this;this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-all").attr("tabindex",
-1).mouseenter(function(a){e.activate(a,d(this).parent())}).mouseleave(function(){e.deactivate()})},activate:function(e,a){this.deactivate();if(this.hasScroll()){var b=a.offset().top-this.element.offset().top,g=this.element.attr("scrollTop"),c=this.element.height();if(b<0)this.element.attr("scrollTop",g+b);else b>=c&&this.element.attr("scrollTop",g+b-c+a.height())}this.active=a.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end();this._trigger("focus",e,{item:a})},
deactivate:function(){if(this.active){this.active.children("a").removeClass("ui-state-hover").removeAttr("id");this._trigger("blur");this.active=null}},next:function(e){this.move("next",".ui-menu-item:first",e)},previous:function(e){this.move("prev",".ui-menu-item:last",e)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(e,a,b){if(this.active){e=this.active[e+"All"](".ui-menu-item").eq(0);
e.length?this.activate(b,e):this.activate(b,this.element.children(a))}else this.activate(b,this.element.children(a))},nextPage:function(e){if(this.hasScroll())if(!this.active||this.last())this.activate(e,this.element.children(".ui-menu-item:first"));else{var a=this.active.offset().top,b=this.element.height(),g=this.element.children(".ui-menu-item").filter(function(){var c=d(this).offset().top-a-b+d(this).height();return c<10&&c>-10});g.length||(g=this.element.children(".ui-menu-item:last"));this.activate(e,
g)}else this.activate(e,this.element.children(".ui-menu-item").filter(!this.active||this.last()?":first":":last"))},previousPage:function(e){if(this.hasScroll())if(!this.active||this.first())this.activate(e,this.element.children(".ui-menu-item:last"));else{var a=this.active.offset().top,b=this.element.height();result=this.element.children(".ui-menu-item").filter(function(){var g=d(this).offset().top-a+b-d(this).height();return g<10&&g>-10});result.length||(result=this.element.children(".ui-menu-item:first"));
this.activate(e,result)}else this.activate(e,this.element.children(".ui-menu-item").filter(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()<this.element.attr("scrollHeight")},select:function(e){this._trigger("selected",e,{item:this.active})}})})(jQuery);
;/*
 * jQuery UI Button 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Button
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.widget.js
 */
(function(a){var g,i=function(b){a(":ui-button",b.target.form).each(function(){var c=a(this).data("button");setTimeout(function(){c.refresh()},1)})},h=function(b){var c=b.name,d=b.form,f=a([]);if(c)f=d?a(d).find("[name='"+c+"']"):a("[name='"+c+"']",b.ownerDocument).filter(function(){return!this.form});return f};a.widget("ui.button",{options:{disabled:null,text:true,label:null,icons:{primary:null,secondary:null}},_create:function(){this.element.closest("form").unbind("reset.button").bind("reset.button",
i);if(typeof this.options.disabled!=="boolean")this.options.disabled=this.element.attr("disabled");this._determineButtonType();this.hasTitle=!!this.buttonElement.attr("title");var b=this,c=this.options,d=this.type==="checkbox"||this.type==="radio",f="ui-state-hover"+(!d?" ui-state-active":"");if(c.label===null)c.label=this.buttonElement.html();if(this.element.is(":disabled"))c.disabled=true;this.buttonElement.addClass("ui-button ui-widget ui-state-default ui-corner-all").attr("role","button").bind("mouseenter.button",
function(){if(!c.disabled){a(this).addClass("ui-state-hover");this===g&&a(this).addClass("ui-state-active")}}).bind("mouseleave.button",function(){c.disabled||a(this).removeClass(f)}).bind("focus.button",function(){a(this).addClass("ui-state-focus")}).bind("blur.button",function(){a(this).removeClass("ui-state-focus")});d&&this.element.bind("change.button",function(){b.refresh()});if(this.type==="checkbox")this.buttonElement.bind("click.button",function(){if(c.disabled)return false;a(this).toggleClass("ui-state-active");
b.buttonElement.attr("aria-pressed",b.element[0].checked)});else if(this.type==="radio")this.buttonElement.bind("click.button",function(){if(c.disabled)return false;a(this).addClass("ui-state-active");b.buttonElement.attr("aria-pressed",true);var e=b.element[0];h(e).not(e).map(function(){return a(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-pressed",false)});else{this.buttonElement.bind("mousedown.button",function(){if(c.disabled)return false;a(this).addClass("ui-state-active");
g=this;a(document).one("mouseup",function(){g=null})}).bind("mouseup.button",function(){if(c.disabled)return false;a(this).removeClass("ui-state-active")}).bind("keydown.button",function(e){if(c.disabled)return false;if(e.keyCode==a.ui.keyCode.SPACE||e.keyCode==a.ui.keyCode.ENTER)a(this).addClass("ui-state-active")}).bind("keyup.button",function(){a(this).removeClass("ui-state-active")});this.buttonElement.is("a")&&this.buttonElement.keyup(function(e){e.keyCode===a.ui.keyCode.SPACE&&a(this).click()})}this._setOption("disabled",
c.disabled)},_determineButtonType:function(){this.type=this.element.is(":checkbox")?"checkbox":this.element.is(":radio")?"radio":this.element.is("input")?"input":"button";if(this.type==="checkbox"||this.type==="radio"){var b=this.element.parents().filter(":last"),c="label[for="+this.element.attr("id")+"]";this.buttonElement=b.find(c);if(!this.buttonElement.length){b=b.length?b.siblings():this.element.siblings();this.buttonElement=b.filter(c);if(!this.buttonElement.length)this.buttonElement=b.find(c)}this.element.addClass("ui-helper-hidden-accessible");
(b=this.element.is(":checked"))&&this.buttonElement.addClass("ui-state-active");this.buttonElement.attr("aria-pressed",b)}else this.buttonElement=this.element},widget:function(){return this.buttonElement},destroy:function(){this.element.removeClass("ui-helper-hidden-accessible");this.buttonElement.removeClass("ui-button ui-widget ui-state-default ui-corner-all ui-state-hover ui-state-active  ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only").removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html());
this.hasTitle||this.buttonElement.removeAttr("title");a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments);if(b==="disabled")c?this.element.attr("disabled",true):this.element.removeAttr("disabled");this._resetButton()},refresh:function(){var b=this.element.is(":disabled");b!==this.options.disabled&&this._setOption("disabled",b);if(this.type==="radio")h(this.element[0]).each(function(){a(this).is(":checked")?a(this).button("widget").addClass("ui-state-active").attr("aria-pressed",
true):a(this).button("widget").removeClass("ui-state-active").attr("aria-pressed",false)});else if(this.type==="checkbox")this.element.is(":checked")?this.buttonElement.addClass("ui-state-active").attr("aria-pressed",true):this.buttonElement.removeClass("ui-state-active").attr("aria-pressed",false)},_resetButton:function(){if(this.type==="input")this.options.label&&this.element.val(this.options.label);else{var b=this.buttonElement.removeClass("ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only"),
c=a("<span></span>").addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,f=d.primary&&d.secondary,e=[];if(d.primary||d.secondary){if(this.options.text)e.push("ui-button-text-icon"+(f?"s":d.primary?"-primary":"-secondary"));d.primary&&b.prepend("<span class='ui-button-icon-primary ui-icon "+d.primary+"'></span>");d.secondary&&b.append("<span class='ui-button-icon-secondary ui-icon "+d.secondary+"'></span>");if(!this.options.text){e.push(f?"ui-button-icons-only":
"ui-button-icon-only");this.hasTitle||b.attr("title",c)}}else e.push("ui-button-text-only");b.addClass(e.join(" "))}}});a.widget("ui.buttonset",{options:{items:":button, :submit, :reset, :checkbox, :radio, a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c);a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass("ui-corner-left").end().filter(":last").addClass("ui-corner-right").end().end()},
destroy:function(){this.element.removeClass("ui-buttonset");this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy");a.Widget.prototype.destroy.call(this)}})})(jQuery);
;/*
 * jQuery UI Dialog 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.widget.js
 *  jquery.ui.button.js
 *	jquery.ui.draggable.js
 *	jquery.ui.mouse.js
 *	jquery.ui.position.js
 *	jquery.ui.resizable.js
 */
(function(c,j){var k={buttons:true,height:true,maxHeight:true,maxWidth:true,minHeight:true,minWidth:true,width:true},l={maxHeight:true,maxWidth:true,minHeight:true,minWidth:true};c.widget("ui.dialog",{options:{autoOpen:true,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:{my:"center",at:"center",collision:"fit",using:function(a){var b=c(this).css(a).offset().top;b<0&&
c(this).css("top",a.top-b)}},resizable:true,show:null,stack:true,title:"",width:300,zIndex:1E3},_create:function(){this.originalTitle=this.element.attr("title");if(typeof this.originalTitle!=="string")this.originalTitle="";this.options.title=this.options.title||this.originalTitle;var a=this,b=a.options,d=b.title||"&#160;",e=c.ui.dialog.getTitleId(a.element),g=(a.uiDialog=c("<div></div>")).appendTo(document.body).hide().addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b.dialogClass).css({zIndex:b.zIndex}).attr("tabIndex",
-1).css("outline",0).keydown(function(i){if(b.closeOnEscape&&i.keyCode&&i.keyCode===c.ui.keyCode.ESCAPE){a.close(i);i.preventDefault()}}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(i){a.moveToTop(false,i)});a.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g);var f=(a.uiDialogTitlebar=c("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),h=c('<a href="#"></a>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role",
"button").hover(function(){h.addClass("ui-state-hover")},function(){h.removeClass("ui-state-hover")}).focus(function(){h.addClass("ui-state-focus")}).blur(function(){h.removeClass("ui-state-focus")}).click(function(i){a.close(i);return false}).appendTo(f);(a.uiDialogTitlebarCloseText=c("<span></span>")).addClass("ui-icon ui-icon-closethick").text(b.closeText).appendTo(h);c("<span></span>").addClass("ui-dialog-title").attr("id",e).html(d).prependTo(f);if(c.isFunction(b.beforeclose)&&!c.isFunction(b.beforeClose))b.beforeClose=
b.beforeclose;f.find("*").add(f).disableSelection();b.draggable&&c.fn.draggable&&a._makeDraggable();b.resizable&&c.fn.resizable&&a._makeResizable();a._createButtons(b.buttons);a._isOpen=false;c.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;a.overlay&&a.overlay.destroy();a.uiDialog.hide();a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");a.uiDialog.remove();a.originalTitle&&
a.element.attr("title",a.originalTitle);return a},widget:function(){return this.uiDialog},close:function(a){var b=this,d,e;if(false!==b._trigger("beforeClose",a)){b.overlay&&b.overlay.destroy();b.uiDialog.unbind("keypress.ui-dialog");b._isOpen=false;if(b.options.hide)b.uiDialog.hide(b.options.hide,function(){b._trigger("close",a)});else{b.uiDialog.hide();b._trigger("close",a)}c.ui.dialog.overlay.resize();if(b.options.modal){d=0;c(".ui-dialog").each(function(){if(this!==b.uiDialog[0]){e=c(this).css("z-index");
isNaN(e)||(d=Math.max(d,e))}});c.ui.dialog.maxZ=d}return b}},isOpen:function(){return this._isOpen},moveToTop:function(a,b){var d=this,e=d.options;if(e.modal&&!a||!e.stack&&!e.modal)return d._trigger("focus",b);if(e.zIndex>c.ui.dialog.maxZ)c.ui.dialog.maxZ=e.zIndex;if(d.overlay){c.ui.dialog.maxZ+=1;d.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=c.ui.dialog.maxZ)}a={scrollTop:d.element.attr("scrollTop"),scrollLeft:d.element.attr("scrollLeft")};c.ui.dialog.maxZ+=1;d.uiDialog.css("z-index",c.ui.dialog.maxZ);
d.element.attr(a);d._trigger("focus",b);return d},open:function(){if(!this._isOpen){var a=this,b=a.options,d=a.uiDialog;a.overlay=b.modal?new c.ui.dialog.overlay(a):null;a._size();a._position(b.position);d.show(b.show);a.moveToTop(true);b.modal&&d.bind("keypress.ui-dialog",function(e){if(e.keyCode===c.ui.keyCode.TAB){var g=c(":tabbable",this),f=g.filter(":first");g=g.filter(":last");if(e.target===g[0]&&!e.shiftKey){f.focus(1);return false}else if(e.target===f[0]&&e.shiftKey){g.focus(1);return false}}});
c(a.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus();a._isOpen=true;a._trigger("open");return a}},_createButtons:function(a){var b=this,d=false,e=c("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),g=c("<div></div>").addClass("ui-dialog-buttonset").appendTo(e);b.uiDialog.find(".ui-dialog-buttonpane").remove();typeof a==="object"&&a!==null&&c.each(a,function(){return!(d=true)});if(d){c.each(a,function(f,
h){h=c.isFunction(h)?{click:h,text:f}:h;f=c('<button type="button"></button>').attr(h,true).unbind("click").click(function(){h.click.apply(b.element[0],arguments)}).appendTo(g);c.fn.button&&f.button()});e.appendTo(b.uiDialog)}},_makeDraggable:function(){function a(f){return{position:f.position,offset:f.offset}}var b=this,d=b.options,e=c(document),g;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(f,h){g=
d.height==="auto"?"auto":c(this).height();c(this).height(c(this).height()).addClass("ui-dialog-dragging");b._trigger("dragStart",f,a(h))},drag:function(f,h){b._trigger("drag",f,a(h))},stop:function(f,h){d.position=[h.position.left-e.scrollLeft(),h.position.top-e.scrollTop()];c(this).removeClass("ui-dialog-dragging").height(g);b._trigger("dragStop",f,a(h));c.ui.dialog.overlay.resize()}})},_makeResizable:function(a){function b(f){return{originalPosition:f.originalPosition,originalSize:f.originalSize,
position:f.position,size:f.size}}a=a===j?this.options.resizable:a;var d=this,e=d.options,g=d.uiDialog.css("position");a=typeof a==="string"?a:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:a,start:function(f,h){c(this).addClass("ui-dialog-resizing");d._trigger("resizeStart",f,b(h))},resize:function(f,h){d._trigger("resize",f,b(h))},stop:function(f,
h){c(this).removeClass("ui-dialog-resizing");e.height=c(this).height();e.width=c(this).width();d._trigger("resizeStop",f,b(h));c.ui.dialog.overlay.resize()}}).css("position",g).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(a){var b=[],d=[0,0],e;if(a){if(typeof a==="string"||typeof a==="object"&&"0"in a){b=a.split?a.split(" "):[a[0],a[1]];if(b.length===
1)b[1]=b[0];c.each(["left","top"],function(g,f){if(+b[g]===b[g]){d[g]=b[g];b[g]=f}});a={my:b.join(" "),at:b.join(" "),offset:d.join(" ")}}a=c.extend({},c.ui.dialog.prototype.options.position,a)}else a=c.ui.dialog.prototype.options.position;(e=this.uiDialog.is(":visible"))||this.uiDialog.show();this.uiDialog.css({top:0,left:0}).position(c.extend({of:window},a));e||this.uiDialog.hide()},_setOptions:function(a){var b=this,d={},e=false;c.each(a,function(g,f){b._setOption(g,f);if(g in k)e=true;if(g in
l)d[g]=f});e&&this._size();this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",d)},_setOption:function(a,b){var d=this,e=d.uiDialog;switch(a){case "beforeclose":a="beforeClose";break;case "buttons":d._createButtons(b);break;case "closeText":d.uiDialogTitlebarCloseText.text(""+b);break;case "dialogClass":e.removeClass(d.options.dialogClass).addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b);break;case "disabled":b?e.addClass("ui-dialog-disabled"):e.removeClass("ui-dialog-disabled");
break;case "draggable":var g=e.is(":data(draggable)");g&&!b&&e.draggable("destroy");!g&&b&&d._makeDraggable();break;case "position":d._position(b);break;case "resizable":(g=e.is(":data(resizable)"))&&!b&&e.resizable("destroy");g&&typeof b==="string"&&e.resizable("option","handles",b);!g&&b!==false&&d._makeResizable(b);break;case "title":c(".ui-dialog-title",d.uiDialogTitlebar).html(""+(b||"&#160;"));break}c.Widget.prototype._setOption.apply(d,arguments)},_size:function(){var a=this.options,b,d,e=
this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0});if(a.minWidth>a.width)a.width=a.minWidth;b=this.uiDialog.css({height:"auto",width:a.width}).height();d=Math.max(0,a.minHeight-b);if(a.height==="auto")if(c.support.minHeight)this.element.css({minHeight:d,height:"auto"});else{this.uiDialog.show();a=this.element.css("height","auto").height();e||this.uiDialog.hide();this.element.height(Math.max(a,d))}else this.element.height(Math.max(a.height-b,0));this.uiDialog.is(":data(resizable)")&&
this.uiDialog.resizable("option","minHeight",this._minHeight())}});c.extend(c.ui.dialog,{version:"1.8.11",uuid:0,maxZ:0,getTitleId:function(a){a=a.attr("id");if(!a){this.uuid+=1;a=this.uuid}return"ui-dialog-title-"+a},overlay:function(a){this.$el=c.ui.dialog.overlay.create(a)}});c.extend(c.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(a){if(this.instances.length===
0){setTimeout(function(){c.ui.dialog.overlay.instances.length&&c(document).bind(c.ui.dialog.overlay.events,function(d){if(c(d.target).zIndex()<c.ui.dialog.overlay.maxZ)return false})},1);c(document).bind("keydown.dialog-overlay",function(d){if(a.options.closeOnEscape&&d.keyCode&&d.keyCode===c.ui.keyCode.ESCAPE){a.close(d);d.preventDefault()}});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var b=(this.oldInstances.pop()||c("<div></div>").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),
height:this.height()});c.fn.bgiframe&&b.bgiframe();this.instances.push(b);return b},destroy:function(a){var b=c.inArray(a,this.instances);b!=-1&&this.oldInstances.push(this.instances.splice(b,1)[0]);this.instances.length===0&&c([document,window]).unbind(".dialog-overlay");a.remove();var d=0;c.each(this.instances,function(){d=Math.max(d,this.css("z-index"))});this.maxZ=d},height:function(){var a,b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);
b=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);return a<b?c(window).height()+"px":a+"px"}else return c(document).height()+"px"},width:function(){var a,b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth);b=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);return a<b?c(window).width()+"px":a+"px"}else return c(document).width()+"px"},resize:function(){var a=c([]);c.each(c.ui.dialog.overlay.instances,
function(){a=a.add(this)});a.css({width:0,height:0}).css({width:c.ui.dialog.overlay.width(),height:c.ui.dialog.overlay.height()})}});c.extend(c.ui.dialog.overlay.prototype,{destroy:function(){c.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);
;/*
 * jQuery UI Slider 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.mouse.js
 *	jquery.ui.widget.js
 */
(function(d){d.widget("ui.slider",d.ui.mouse,{widgetEventPrefix:"slide",options:{animate:false,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null},_create:function(){var b=this,a=this.options;this._mouseSliding=this._keySliding=false;this._animateOff=true;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget ui-widget-content ui-corner-all");a.disabled&&this.element.addClass("ui-slider-disabled ui-disabled");
this.range=d([]);if(a.range){if(a.range===true){this.range=d("<div></div>");if(!a.values)a.values=[this._valueMin(),this._valueMin()];if(a.values.length&&a.values.length!==2)a.values=[a.values[0],a.values[0]]}else this.range=d("<div></div>");this.range.appendTo(this.element).addClass("ui-slider-range");if(a.range==="min"||a.range==="max")this.range.addClass("ui-slider-range-"+a.range);this.range.addClass("ui-widget-header")}d(".ui-slider-handle",this.element).length===0&&d("<a href='#'></a>").appendTo(this.element).addClass("ui-slider-handle");
if(a.values&&a.values.length)for(;d(".ui-slider-handle",this.element).length<a.values.length;)d("<a href='#'></a>").appendTo(this.element).addClass("ui-slider-handle");this.handles=d(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(c){c.preventDefault()}).hover(function(){a.disabled||d(this).addClass("ui-state-hover")},function(){d(this).removeClass("ui-state-hover")}).focus(function(){if(a.disabled)d(this).blur();
else{d(".ui-slider .ui-state-focus").removeClass("ui-state-focus");d(this).addClass("ui-state-focus")}}).blur(function(){d(this).removeClass("ui-state-focus")});this.handles.each(function(c){d(this).data("index.ui-slider-handle",c)});this.handles.keydown(function(c){var e=true,f=d(this).data("index.ui-slider-handle"),h,g,i;if(!b.options.disabled){switch(c.keyCode){case d.ui.keyCode.HOME:case d.ui.keyCode.END:case d.ui.keyCode.PAGE_UP:case d.ui.keyCode.PAGE_DOWN:case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:e=
false;if(!b._keySliding){b._keySliding=true;d(this).addClass("ui-state-active");h=b._start(c,f);if(h===false)return}break}i=b.options.step;h=b.options.values&&b.options.values.length?(g=b.values(f)):(g=b.value());switch(c.keyCode){case d.ui.keyCode.HOME:g=b._valueMin();break;case d.ui.keyCode.END:g=b._valueMax();break;case d.ui.keyCode.PAGE_UP:g=b._trimAlignValue(h+(b._valueMax()-b._valueMin())/5);break;case d.ui.keyCode.PAGE_DOWN:g=b._trimAlignValue(h-(b._valueMax()-b._valueMin())/5);break;case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:if(h===
b._valueMax())return;g=b._trimAlignValue(h+i);break;case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:if(h===b._valueMin())return;g=b._trimAlignValue(h-i);break}b._slide(c,f,g);return e}}).keyup(function(c){var e=d(this).data("index.ui-slider-handle");if(b._keySliding){b._keySliding=false;b._stop(c,e);b._change(c,e);d(this).removeClass("ui-state-active")}});this._refreshValue();this._animateOff=false},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");
this._mouseDestroy();return this},_mouseCapture:function(b){var a=this.options,c,e,f,h,g;if(a.disabled)return false;this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();c=this._normValueFromMouse({x:b.pageX,y:b.pageY});e=this._valueMax()-this._valueMin()+1;h=this;this.handles.each(function(i){var j=Math.abs(c-h.values(i));if(e>j){e=j;f=d(this);g=i}});if(a.range===true&&this.values(1)===a.min){g+=1;f=d(this.handles[g])}if(this._start(b,
g)===false)return false;this._mouseSliding=true;h._handleIndex=g;f.addClass("ui-state-active").focus();a=f.offset();this._clickOffset=!d(b.target).parents().andSelf().is(".ui-slider-handle")?{left:0,top:0}:{left:b.pageX-a.left-f.width()/2,top:b.pageY-a.top-f.height()/2-(parseInt(f.css("borderTopWidth"),10)||0)-(parseInt(f.css("borderBottomWidth"),10)||0)+(parseInt(f.css("marginTop"),10)||0)};this.handles.hasClass("ui-state-hover")||this._slide(b,g,c);return this._animateOff=true},_mouseStart:function(){return true},
_mouseDrag:function(b){var a=this._normValueFromMouse({x:b.pageX,y:b.pageY});this._slide(b,this._handleIndex,a);return false},_mouseStop:function(b){this.handles.removeClass("ui-state-active");this._mouseSliding=false;this._stop(b,this._handleIndex);this._change(b,this._handleIndex);this._clickOffset=this._handleIndex=null;return this._animateOff=false},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(b){var a;
if(this.orientation==="horizontal"){a=this.elementSize.width;b=b.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{a=this.elementSize.height;b=b.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}a=b/a;if(a>1)a=1;if(a<0)a=0;if(this.orientation==="vertical")a=1-a;b=this._valueMax()-this._valueMin();return this._trimAlignValue(this._valueMin()+a*b)},_start:function(b,a){var c={handle:this.handles[a],value:this.value()};if(this.options.values&&this.options.values.length){c.value=
this.values(a);c.values=this.values()}return this._trigger("start",b,c)},_slide:function(b,a,c){var e;if(this.options.values&&this.options.values.length){e=this.values(a?0:1);if(this.options.values.length===2&&this.options.range===true&&(a===0&&c>e||a===1&&c<e))c=e;if(c!==this.values(a)){e=this.values();e[a]=c;b=this._trigger("slide",b,{handle:this.handles[a],value:c,values:e});this.values(a?0:1);b!==false&&this.values(a,c,true)}}else if(c!==this.value()){b=this._trigger("slide",b,{handle:this.handles[a],
value:c});b!==false&&this.value(c)}},_stop:function(b,a){var c={handle:this.handles[a],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(a);c.values=this.values()}this._trigger("stop",b,c)},_change:function(b,a){if(!this._keySliding&&!this._mouseSliding){var c={handle:this.handles[a],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(a);c.values=this.values()}this._trigger("change",b,c)}},value:function(b){if(arguments.length){this.options.value=
this._trimAlignValue(b);this._refreshValue();this._change(null,0)}return this._value()},values:function(b,a){var c,e,f;if(arguments.length>1){this.options.values[b]=this._trimAlignValue(a);this._refreshValue();this._change(null,b)}if(arguments.length)if(d.isArray(arguments[0])){c=this.options.values;e=arguments[0];for(f=0;f<c.length;f+=1){c[f]=this._trimAlignValue(e[f]);this._change(null,f)}this._refreshValue()}else return this.options.values&&this.options.values.length?this._values(b):this.value();
else return this._values()},_setOption:function(b,a){var c,e=0;if(d.isArray(this.options.values))e=this.options.values.length;d.Widget.prototype._setOption.apply(this,arguments);switch(b){case "disabled":if(a){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled");this.element.addClass("ui-disabled")}else{this.handles.removeAttr("disabled");this.element.removeClass("ui-disabled")}break;case "orientation":this._detectOrientation();
this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue();break;case "value":this._animateOff=true;this._refreshValue();this._change(null,0);this._animateOff=false;break;case "values":this._animateOff=true;this._refreshValue();for(c=0;c<e;c+=1)this._change(null,c);this._animateOff=false;break}},_value:function(){var b=this.options.value;return b=this._trimAlignValue(b)},_values:function(b){var a,c;if(arguments.length){a=this.options.values[b];
return a=this._trimAlignValue(a)}else{a=this.options.values.slice();for(c=0;c<a.length;c+=1)a[c]=this._trimAlignValue(a[c]);return a}},_trimAlignValue:function(b){if(b<=this._valueMin())return this._valueMin();if(b>=this._valueMax())return this._valueMax();var a=this.options.step>0?this.options.step:1,c=(b-this._valueMin())%a;alignValue=b-c;if(Math.abs(c)*2>=a)alignValue+=c>0?a:-a;return parseFloat(alignValue.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},
_refreshValue:function(){var b=this.options.range,a=this.options,c=this,e=!this._animateOff?a.animate:false,f,h={},g,i,j,l;if(this.options.values&&this.options.values.length)this.handles.each(function(k){f=(c.values(k)-c._valueMin())/(c._valueMax()-c._valueMin())*100;h[c.orientation==="horizontal"?"left":"bottom"]=f+"%";d(this).stop(1,1)[e?"animate":"css"](h,a.animate);if(c.options.range===true)if(c.orientation==="horizontal"){if(k===0)c.range.stop(1,1)[e?"animate":"css"]({left:f+"%"},a.animate);
if(k===1)c.range[e?"animate":"css"]({width:f-g+"%"},{queue:false,duration:a.animate})}else{if(k===0)c.range.stop(1,1)[e?"animate":"css"]({bottom:f+"%"},a.animate);if(k===1)c.range[e?"animate":"css"]({height:f-g+"%"},{queue:false,duration:a.animate})}g=f});else{i=this.value();j=this._valueMin();l=this._valueMax();f=l!==j?(i-j)/(l-j)*100:0;h[c.orientation==="horizontal"?"left":"bottom"]=f+"%";this.handle.stop(1,1)[e?"animate":"css"](h,a.animate);if(b==="min"&&this.orientation==="horizontal")this.range.stop(1,
1)[e?"animate":"css"]({width:f+"%"},a.animate);if(b==="max"&&this.orientation==="horizontal")this.range[e?"animate":"css"]({width:100-f+"%"},{queue:false,duration:a.animate});if(b==="min"&&this.orientation==="vertical")this.range.stop(1,1)[e?"animate":"css"]({height:f+"%"},a.animate);if(b==="max"&&this.orientation==="vertical")this.range[e?"animate":"css"]({height:100-f+"%"},{queue:false,duration:a.animate})}}});d.extend(d.ui.slider,{version:"1.8.11"})})(jQuery);
;/*
 * jQuery UI Tabs 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.widget.js
 */
(function(d,p){function u(){return++v}function w(){return++x}var v=0,x=0;d.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:false,cookie:null,collapsible:false,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"<div></div>",remove:null,select:null,show:null,spinner:"<em>Loading&#8230;</em>",tabTemplate:"<li><a href='#{href}'><span>#{label}</span></a></li>"},_create:function(){this._tabify(true)},_setOption:function(b,e){if(b=="selected")this.options.collapsible&&
e==this.options.selected||this.select(e);else{this.options[b]=e;this._tabify()}},_tabId:function(b){return b.title&&b.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+u()},_sanitizeSelector:function(b){return b.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+w());return d.cookie.apply(null,[b].concat(d.makeArray(arguments)))},_ui:function(b,e){return{tab:b,panel:e,index:this.anchors.index(b)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=
d(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(b){function e(g,f){g.css("display","");!d.support.opacity&&f.opacity&&g[0].style.removeAttribute("filter")}var a=this,c=this.options,h=/^#.+/;this.list=this.element.find("ol,ul").eq(0);this.lis=d(" > li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return d("a",this)[0]});this.panels=d([]);this.anchors.each(function(g,f){var i=d(f).attr("href"),l=i.split("#")[0],q;if(l&&(l===location.toString().split("#")[0]||
(q=d("base")[0])&&l===q.href)){i=f.hash;f.href=i}if(h.test(i))a.panels=a.panels.add(a.element.find(a._sanitizeSelector(i)));else if(i&&i!=="#"){d.data(f,"href.tabs",i);d.data(f,"load.tabs",i.replace(/#.*$/,""));i=a._tabId(f);f.href="#"+i;f=a.element.find("#"+i);if(!f.length){f=d(c.panelTemplate).attr("id",i).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(a.panels[g-1]||a.list);f.data("destroy.tabs",true)}a.panels=a.panels.add(f)}else c.disabled.push(g)});if(b){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");
this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(c.selected===p){location.hash&&this.anchors.each(function(g,f){if(f.hash==location.hash){c.selected=g;return false}});if(typeof c.selected!=="number"&&c.cookie)c.selected=parseInt(a._cookie(),10);if(typeof c.selected!=="number"&&this.lis.filter(".ui-tabs-selected").length)c.selected=
this.lis.index(this.lis.filter(".ui-tabs-selected"));c.selected=c.selected||(this.lis.length?0:-1)}else if(c.selected===null)c.selected=-1;c.selected=c.selected>=0&&this.anchors[c.selected]||c.selected<0?c.selected:0;c.disabled=d.unique(c.disabled.concat(d.map(this.lis.filter(".ui-state-disabled"),function(g){return a.lis.index(g)}))).sort();d.inArray(c.selected,c.disabled)!=-1&&c.disabled.splice(d.inArray(c.selected,c.disabled),1);this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");
if(c.selected>=0&&this.anchors.length){a.element.find(a._sanitizeSelector(a.anchors[c.selected].hash)).removeClass("ui-tabs-hide");this.lis.eq(c.selected).addClass("ui-tabs-selected ui-state-active");a.element.queue("tabs",function(){a._trigger("show",null,a._ui(a.anchors[c.selected],a.element.find(a._sanitizeSelector(a.anchors[c.selected].hash))[0]))});this.load(c.selected)}d(window).bind("unload",function(){a.lis.add(a.anchors).unbind(".tabs");a.lis=a.anchors=a.panels=null})}else c.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"));
this.element[c.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");c.cookie&&this._cookie(c.selected,c.cookie);b=0;for(var j;j=this.lis[b];b++)d(j)[d.inArray(b,c.disabled)!=-1&&!d(j).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");c.cache===false&&this.anchors.removeData("cache.tabs");this.lis.add(this.anchors).unbind(".tabs");if(c.event!=="mouseover"){var k=function(g,f){f.is(":not(.ui-state-disabled)")&&f.addClass("ui-state-"+g)},n=function(g,f){f.removeClass("ui-state-"+
g)};this.lis.bind("mouseover.tabs",function(){k("hover",d(this))});this.lis.bind("mouseout.tabs",function(){n("hover",d(this))});this.anchors.bind("focus.tabs",function(){k("focus",d(this).closest("li"))});this.anchors.bind("blur.tabs",function(){n("focus",d(this).closest("li"))})}var m,o;if(c.fx)if(d.isArray(c.fx)){m=c.fx[0];o=c.fx[1]}else m=o=c.fx;var r=o?function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.hide().removeClass("ui-tabs-hide").animate(o,o.duration||"normal",
function(){e(f,o);a._trigger("show",null,a._ui(g,f[0]))})}:function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");a._trigger("show",null,a._ui(g,f[0]))},s=m?function(g,f){f.animate(m,m.duration||"normal",function(){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");e(f,m);a.element.dequeue("tabs")})}:function(g,f){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");a.element.dequeue("tabs")};
this.anchors.bind(c.event+".tabs",function(){var g=this,f=d(g).closest("li"),i=a.panels.filter(":not(.ui-tabs-hide)"),l=a.element.find(a._sanitizeSelector(g.hash));if(f.hasClass("ui-tabs-selected")&&!c.collapsible||f.hasClass("ui-state-disabled")||f.hasClass("ui-state-processing")||a.panels.filter(":animated").length||a._trigger("select",null,a._ui(this,l[0]))===false){this.blur();return false}c.selected=a.anchors.index(this);a.abort();if(c.collapsible)if(f.hasClass("ui-tabs-selected")){c.selected=
-1;c.cookie&&a._cookie(c.selected,c.cookie);a.element.queue("tabs",function(){s(g,i)}).dequeue("tabs");this.blur();return false}else if(!i.length){c.cookie&&a._cookie(c.selected,c.cookie);a.element.queue("tabs",function(){r(g,l)});a.load(a.anchors.index(this));this.blur();return false}c.cookie&&a._cookie(c.selected,c.cookie);if(l.length){i.length&&a.element.queue("tabs",function(){s(g,i)});a.element.queue("tabs",function(){r(g,l)});a.load(a.anchors.index(this))}else throw"jQuery UI Tabs: Mismatching fragment identifier.";
d.browser.msie&&this.blur()});this.anchors.bind("click.tabs",function(){return false})},_getIndex:function(b){if(typeof b=="string")b=this.anchors.index(this.anchors.filter("[href$="+b+"]"));return b},destroy:function(){var b=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e=
d.data(this,"href.tabs");if(e)this.href=e;var a=d(this).unbind(".tabs");d.each(["href","load","cache"],function(c,h){a.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){d.data(this,"destroy.tabs")?d(this).remove():d(this).removeClass("ui-state-default ui-corner-top ui-tabs-selected ui-state-active ui-state-hover ui-state-focus ui-state-disabled ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide")});b.cookie&&this._cookie(null,b.cookie);return this},add:function(b,
e,a){if(a===p)a=this.anchors.length;var c=this,h=this.options;e=d(h.tabTemplate.replace(/#\{href\}/g,b).replace(/#\{label\}/g,e));b=!b.indexOf("#")?b.replace("#",""):this._tabId(d("a",e)[0]);e.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var j=c.element.find("#"+b);j.length||(j=d(h.panelTemplate).attr("id",b).data("destroy.tabs",true));j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(a>=this.lis.length){e.appendTo(this.list);j.appendTo(this.list[0].parentNode)}else{e.insertBefore(this.lis[a]);
j.insertBefore(this.panels[a])}h.disabled=d.map(h.disabled,function(k){return k>=a?++k:k});this._tabify();if(this.anchors.length==1){h.selected=0;e.addClass("ui-tabs-selected ui-state-active");j.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){c._trigger("show",null,c._ui(c.anchors[0],c.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[a],this.panels[a]));return this},remove:function(b){b=this._getIndex(b);var e=this.options,a=this.lis.eq(b).remove(),c=this.panels.eq(b).remove();
if(a.hasClass("ui-tabs-selected")&&this.anchors.length>1)this.select(b+(b+1<this.anchors.length?1:-1));e.disabled=d.map(d.grep(e.disabled,function(h){return h!=b}),function(h){return h>=b?--h:h});this._tabify();this._trigger("remove",null,this._ui(a.find("a")[0],c[0]));return this},enable:function(b){b=this._getIndex(b);var e=this.options;if(d.inArray(b,e.disabled)!=-1){this.lis.eq(b).removeClass("ui-state-disabled");e.disabled=d.grep(e.disabled,function(a){return a!=b});this._trigger("enable",null,
this._ui(this.anchors[b],this.panels[b]));return this}},disable:function(b){b=this._getIndex(b);var e=this.options;if(b!=e.selected){this.lis.eq(b).addClass("ui-state-disabled");e.disabled.push(b);e.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[b],this.panels[b]))}return this},select:function(b){b=this._getIndex(b);if(b==-1)if(this.options.collapsible&&this.options.selected!=-1)b=this.options.selected;else return this;this.anchors.eq(b).trigger(this.options.event+".tabs");return this},
load:function(b){b=this._getIndex(b);var e=this,a=this.options,c=this.anchors.eq(b)[0],h=d.data(c,"load.tabs");this.abort();if(!h||this.element.queue("tabs").length!==0&&d.data(c,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(b).addClass("ui-state-processing");if(a.spinner){var j=d("span",c);j.data("label.tabs",j.html()).html(a.spinner)}this.xhr=d.ajax(d.extend({},a.ajaxOptions,{url:h,success:function(k,n){e.element.find(e._sanitizeSelector(c.hash)).html(k);e._cleanup();a.cache&&d.data(c,
"cache.tabs",true);e._trigger("load",null,e._ui(e.anchors[b],e.panels[b]));try{a.ajaxOptions.success(k,n)}catch(m){}},error:function(k,n){e._cleanup();e._trigger("load",null,e._ui(e.anchors[b],e.panels[b]));try{a.ajaxOptions.error(k,n,b,c)}catch(m){}}}));e.element.dequeue("tabs");return this}},abort:function(){this.element.queue([]);this.panels.stop(false,true);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup();return this},
url:function(b,e){this.anchors.eq(b).removeData("cache.tabs").data("load.tabs",e);return this},length:function(){return this.anchors.length}});d.extend(d.ui.tabs,{version:"1.8.11"});d.extend(d.ui.tabs.prototype,{rotation:null,rotate:function(b,e){var a=this,c=this.options,h=a._rotate||(a._rotate=function(j){clearTimeout(a.rotation);a.rotation=setTimeout(function(){var k=c.selected;a.select(++k<a.anchors.length?k:0)},b);j&&j.stopPropagation()});e=a._unrotate||(a._unrotate=!e?function(j){j.clientX&&
a.rotate(null)}:function(){t=c.selected;h()});if(b){this.element.bind("tabsshow",h);this.anchors.bind(c.event+".tabs",e);h()}else{clearTimeout(a.rotation);this.element.unbind("tabsshow",h);this.anchors.unbind(c.event+".tabs",e);delete this._rotate;delete this._unrotate}return this}})})(jQuery);
;/*
 * jQuery UI Datepicker 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker
 *
 * Depends:
 *	jquery.ui.core.js
 */
(function(d,A){function K(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._inDialog=this._datepickerShowing=false;this._mainDivId="ui-datepicker-div";this._inlineClass="ui-datepicker-inline";this._appendClass="ui-datepicker-append";this._triggerClass="ui-datepicker-trigger";this._dialogClass="ui-datepicker-dialog";this._disableClass="ui-datepicker-disabled";this._unselectableClass="ui-datepicker-unselectable";this._currentClass="ui-datepicker-current-day";this._dayOverClass=
"ui-datepicker-days-cell-over";this.regional=[];this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su",
"Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:false,showMonthAfterYear:false,yearSuffix:""};this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,yearRange:"c-10:c+10",showOtherMonths:false,selectOtherMonths:false,showWeek:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",
minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false,autoSize:false};d.extend(this._defaults,this.regional[""]);this.dpDiv=d('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')}function F(a,b){d.extend(a,b);for(var c in b)if(b[c]==
null||b[c]==A)a[c]=b[c];return a}d.extend(d.ui,{datepicker:{version:"1.8.11"}});var y=(new Date).getTime();d.extend(K.prototype,{markerClassName:"hasDatepicker",log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){F(this._defaults,a||{});return this},_attachDatepicker:function(a,b){var c=null;for(var e in this._defaults){var f=a.getAttribute("date:"+e);if(f){c=c||{};try{c[e]=eval(f)}catch(h){c[e]=f}}}e=a.nodeName.toLowerCase();
f=e=="div"||e=="span";if(!a.id){this.uuid+=1;a.id="dp"+this.uuid}var i=this._newInst(d(a),f);i.settings=d.extend({},b||{},c||{});if(e=="input")this._connectDatepicker(a,i);else f&&this._inlineDatepicker(a,i)},_newInst:function(a,b){return{id:a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1"),input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:!b?this.dpDiv:d('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')}},
_connectDatepicker:function(a,b){var c=d(a);b.append=d([]);b.trigger=d([]);if(!c.hasClass(this.markerClassName)){this._attachments(c,b);c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});this._autoSize(b);d.data(a,"datepicker",b)}},_attachments:function(a,b){var c=this._get(b,"appendText"),e=this._get(b,"isRTL");b.append&&
b.append.remove();if(c){b.append=d('<span class="'+this._appendClass+'">'+c+"</span>");a[e?"before":"after"](b.append)}a.unbind("focus",this._showDatepicker);b.trigger&&b.trigger.remove();c=this._get(b,"showOn");if(c=="focus"||c=="both")a.focus(this._showDatepicker);if(c=="button"||c=="both"){c=this._get(b,"buttonText");var f=this._get(b,"buttonImage");b.trigger=d(this._get(b,"buttonImageOnly")?d("<img/>").addClass(this._triggerClass).attr({src:f,alt:c,title:c}):d('<button type="button"></button>').addClass(this._triggerClass).html(f==
""?c:d("<img/>").attr({src:f,alt:c,title:c})));a[e?"before":"after"](b.trigger);b.trigger.click(function(){d.datepicker._datepickerShowing&&d.datepicker._lastInput==a[0]?d.datepicker._hideDatepicker():d.datepicker._showDatepicker(a[0]);return false})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var e=function(f){for(var h=0,i=0,g=0;g<f.length;g++)if(f[g].length>h){h=f[g].length;i=g}return i};b.setMonth(e(this._get(a,
c.match(/MM/)?"monthNames":"monthNamesShort")));b.setDate(e(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=d(a);if(!c.hasClass(this.markerClassName)){c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});d.data(a,"datepicker",b);this._setDate(b,this._getDefaultDate(b),
true);this._updateDatepicker(b);this._updateAlternate(b);b.dpDiv.show()}},_dialogDatepicker:function(a,b,c,e,f){a=this._dialogInst;if(!a){this.uuid+=1;this._dialogInput=d('<input type="text" id="'+("dp"+this.uuid)+'" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>');this._dialogInput.keydown(this._doKeyDown);d("body").append(this._dialogInput);a=this._dialogInst=this._newInst(this._dialogInput,false);a.settings={};d.data(this._dialogInput[0],"datepicker",a)}F(a.settings,e||{});
b=b&&b.constructor==Date?this._formatDate(a,b):b;this._dialogInput.val(b);this._pos=f?f.length?f:[f.pageX,f.pageY]:null;if(!this._pos)this._pos=[document.documentElement.clientWidth/2-100+(document.documentElement.scrollLeft||document.body.scrollLeft),document.documentElement.clientHeight/2-150+(document.documentElement.scrollTop||document.body.scrollTop)];this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px");a.settings.onSelect=c;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);
this._showDatepicker(this._dialogInput[0]);d.blockUI&&d.blockUI(this.dpDiv);d.data(this._dialogInput[0],"datepicker",a);return this},_destroyDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();d.removeData(a,"datepicker");if(e=="input"){c.append.remove();c.trigger.remove();b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",
this._doKeyUp)}else if(e=="div"||e=="span")b.removeClass(this.markerClassName).empty()}},_enableDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=false;c.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else if(e=="div"||e=="span")b.children("."+this._inlineClass).children().removeClass("ui-state-disabled");this._disabledInputs=d.map(this._disabledInputs,
function(f){return f==a?null:f})}},_disableDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=true;c.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else if(e=="div"||e=="span")b.children("."+this._inlineClass).children().addClass("ui-state-disabled");this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:
f});this._disabledInputs[this._disabledInputs.length]=a}},_isDisabledDatepicker:function(a){if(!a)return false;for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return true;return false},_getInst:function(a){try{return d.data(a,"datepicker")}catch(b){throw"Missing instance data for this datepicker";}},_optionDatepicker:function(a,b,c){var e=this._getInst(a);if(arguments.length==2&&typeof b=="string")return b=="defaults"?d.extend({},d.datepicker._defaults):e?b=="all"?d.extend({},
e.settings):this._get(e,b):null;var f=b||{};if(typeof b=="string"){f={};f[b]=c}if(e){this._curInst==e&&this._hideDatepicker();var h=this._getDateDatepicker(a,true),i=this._getMinMaxDate(e,"min"),g=this._getMinMaxDate(e,"max");F(e.settings,f);if(i!==null&&f.dateFormat!==A&&f.minDate===A)e.settings.minDate=this._formatDate(e,i);if(g!==null&&f.dateFormat!==A&&f.maxDate===A)e.settings.maxDate=this._formatDate(e,g);this._attachments(d(a),e);this._autoSize(e);this._setDateDatepicker(a,h);this._updateDatepicker(e)}},
_changeDatepicker:function(a,b,c){this._optionDatepicker(a,b,c)},_refreshDatepicker:function(a){(a=this._getInst(a))&&this._updateDatepicker(a)},_setDateDatepicker:function(a,b){if(a=this._getInst(a)){this._setDate(a,b);this._updateDatepicker(a);this._updateAlternate(a)}},_getDateDatepicker:function(a,b){(a=this._getInst(a))&&!a.inline&&this._setDateFromField(a,b);return a?this._getDate(a):null},_doKeyDown:function(a){var b=d.datepicker._getInst(a.target),c=true,e=b.dpDiv.is(".ui-datepicker-rtl");
b._keyEvent=true;if(d.datepicker._datepickerShowing)switch(a.keyCode){case 9:d.datepicker._hideDatepicker();c=false;break;case 13:c=d("td."+d.datepicker._dayOverClass+":not(."+d.datepicker._currentClass+")",b.dpDiv);c[0]?d.datepicker._selectDay(a.target,b.selectedMonth,b.selectedYear,c[0]):d.datepicker._hideDatepicker();return false;case 27:d.datepicker._hideDatepicker();break;case 33:d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),
"M");break;case 34:d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,"stepMonths"),"M");break;case 35:if(a.ctrlKey||a.metaKey)d.datepicker._clearDate(a.target);c=a.ctrlKey||a.metaKey;break;case 36:if(a.ctrlKey||a.metaKey)d.datepicker._gotoToday(a.target);c=a.ctrlKey||a.metaKey;break;case 37:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?+1:-1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?
-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 38:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,-7,"D");c=a.ctrlKey||a.metaKey;break;case 39:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?-1:+1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,"stepMonths"),"M");break;case 40:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,
+7,"D");c=a.ctrlKey||a.metaKey;break;default:c=false}else if(a.keyCode==36&&a.ctrlKey)d.datepicker._showDatepicker(this);else c=false;if(c){a.preventDefault();a.stopPropagation()}},_doKeyPress:function(a){var b=d.datepicker._getInst(a.target);if(d.datepicker._get(b,"constrainInput")){b=d.datepicker._possibleChars(d.datepicker._get(b,"dateFormat"));var c=String.fromCharCode(a.charCode==A?a.keyCode:a.charCode);return a.ctrlKey||a.metaKey||c<" "||!b||b.indexOf(c)>-1}},_doKeyUp:function(a){a=d.datepicker._getInst(a.target);
if(a.input.val()!=a.lastVal)try{if(d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),a.input?a.input.val():null,d.datepicker._getFormatConfig(a))){d.datepicker._setDateFromField(a);d.datepicker._updateAlternate(a);d.datepicker._updateDatepicker(a)}}catch(b){d.datepicker.log(b)}return true},_showDatepicker:function(a){a=a.target||a;if(a.nodeName.toLowerCase()!="input")a=d("input",a.parentNode)[0];if(!(d.datepicker._isDisabledDatepicker(a)||d.datepicker._lastInput==a)){var b=d.datepicker._getInst(a);
d.datepicker._curInst&&d.datepicker._curInst!=b&&d.datepicker._curInst.dpDiv.stop(true,true);var c=d.datepicker._get(b,"beforeShow");F(b.settings,c?c.apply(a,[a,b]):{});b.lastVal=null;d.datepicker._lastInput=a;d.datepicker._setDateFromField(b);if(d.datepicker._inDialog)a.value="";if(!d.datepicker._pos){d.datepicker._pos=d.datepicker._findPos(a);d.datepicker._pos[1]+=a.offsetHeight}var e=false;d(a).parents().each(function(){e|=d(this).css("position")=="fixed";return!e});if(e&&d.browser.opera){d.datepicker._pos[0]-=
document.documentElement.scrollLeft;d.datepicker._pos[1]-=document.documentElement.scrollTop}c={left:d.datepicker._pos[0],top:d.datepicker._pos[1]};d.datepicker._pos=null;b.dpDiv.empty();b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});d.datepicker._updateDatepicker(b);c=d.datepicker._checkOffset(b,c,e);b.dpDiv.css({position:d.datepicker._inDialog&&d.blockUI?"static":e?"fixed":"absolute",display:"none",left:c.left+"px",top:c.top+"px"});if(!b.inline){c=d.datepicker._get(b,"showAnim");
var f=d.datepicker._get(b,"duration"),h=function(){d.datepicker._datepickerShowing=true;var i=b.dpDiv.find("iframe.ui-datepicker-cover");if(i.length){var g=d.datepicker._getBorders(b.dpDiv);i.css({left:-g[0],top:-g[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex(d(a).zIndex()+1);d.effects&&d.effects[c]?b.dpDiv.show(c,d.datepicker._get(b,"showOptions"),f,h):b.dpDiv[c||"show"](c?f:null,h);if(!c||!f)h();b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus();d.datepicker._curInst=
b}}},_updateDatepicker:function(a){var b=this,c=d.datepicker._getBorders(a.dpDiv);a.dpDiv.empty().append(this._generateHTML(a));var e=a.dpDiv.find("iframe.ui-datepicker-cover");e.length&&e.css({left:-c[0],top:-c[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()});a.dpDiv.find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){d(this).removeClass("ui-state-hover");this.className.indexOf("ui-datepicker-prev")!=-1&&d(this).removeClass("ui-datepicker-prev-hover");
this.className.indexOf("ui-datepicker-next")!=-1&&d(this).removeClass("ui-datepicker-next-hover")}).bind("mouseover",function(){if(!b._isDisabledDatepicker(a.inline?a.dpDiv.parent()[0]:a.input[0])){d(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");d(this).addClass("ui-state-hover");this.className.indexOf("ui-datepicker-prev")!=-1&&d(this).addClass("ui-datepicker-prev-hover");this.className.indexOf("ui-datepicker-next")!=-1&&d(this).addClass("ui-datepicker-next-hover")}}).end().find("."+
this._dayOverClass+" a").trigger("mouseover").end();c=this._getNumberOfMonths(a);e=c[1];e>1?a.dpDiv.addClass("ui-datepicker-multi-"+e).css("width",17*e+"em"):a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("");a.dpDiv[(c[0]!=1||c[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");a==d.datepicker._curInst&&d.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&
a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var f=a.yearshtml;setTimeout(function(){f===a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml);f=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(c){return{thin:1,medium:2,thick:3}[c]||c};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var e=a.dpDiv.outerWidth(),f=a.dpDiv.outerHeight(),h=a.input?a.input.outerWidth():
0,i=a.input?a.input.outerHeight():0,g=document.documentElement.clientWidth+d(document).scrollLeft(),j=document.documentElement.clientHeight+d(document).scrollTop();b.left-=this._get(a,"isRTL")?e-h:0;b.left-=c&&b.left==a.input.offset().left?d(document).scrollLeft():0;b.top-=c&&b.top==a.input.offset().top+i?d(document).scrollTop():0;b.left-=Math.min(b.left,b.left+e>g&&g>e?Math.abs(b.left+e-g):0);b.top-=Math.min(b.top,b.top+f>j&&j>f?Math.abs(f+i):0);return b},_findPos:function(a){for(var b=this._get(this._getInst(a),
"isRTL");a&&(a.type=="hidden"||a.nodeType!=1||d.expr.filters.hidden(a));)a=a[b?"previousSibling":"nextSibling"];a=d(a).offset();return[a.left,a.top]},_hideDatepicker:function(a){var b=this._curInst;if(!(!b||a&&b!=d.data(a,"datepicker")))if(this._datepickerShowing){a=this._get(b,"showAnim");var c=this._get(b,"duration"),e=function(){d.datepicker._tidyDialog(b);this._curInst=null};d.effects&&d.effects[a]?b.dpDiv.hide(a,d.datepicker._get(b,"showOptions"),c,e):b.dpDiv[a=="slideDown"?"slideUp":a=="fadeIn"?
"fadeOut":"hide"](a?c:null,e);a||e();if(a=this._get(b,"onClose"))a.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b]);this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if(d.blockUI){d.unblockUI();d("body").append(this.dpDiv)}}this._inDialog=false}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(d.datepicker._curInst){a=
d(a.target);a[0].id!=d.datepicker._mainDivId&&a.parents("#"+d.datepicker._mainDivId).length==0&&!a.hasClass(d.datepicker.markerClassName)&&!a.hasClass(d.datepicker._triggerClass)&&d.datepicker._datepickerShowing&&!(d.datepicker._inDialog&&d.blockUI)&&d.datepicker._hideDatepicker()}},_adjustDate:function(a,b,c){a=d(a);var e=this._getInst(a[0]);if(!this._isDisabledDatepicker(a[0])){this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):0),c);this._updateDatepicker(e)}},_gotoToday:function(a){a=
d(a);var b=this._getInst(a[0]);if(this._get(b,"gotoCurrent")&&b.currentDay){b.selectedDay=b.currentDay;b.drawMonth=b.selectedMonth=b.currentMonth;b.drawYear=b.selectedYear=b.currentYear}else{var c=new Date;b.selectedDay=c.getDate();b.drawMonth=b.selectedMonth=c.getMonth();b.drawYear=b.selectedYear=c.getFullYear()}this._notifyChange(b);this._adjustDate(a)},_selectMonthYear:function(a,b,c){a=d(a);var e=this._getInst(a[0]);e._selectingMonthYear=false;e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c==
"M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10);this._notifyChange(e);this._adjustDate(a)},_clickMonthYear:function(a){var b=this._getInst(d(a)[0]);b.input&&b._selectingMonthYear&&setTimeout(function(){b.input.focus()},0);b._selectingMonthYear=!b._selectingMonthYear},_selectDay:function(a,b,c,e){var f=d(a);if(!(d(e).hasClass(this._unselectableClass)||this._isDisabledDatepicker(f[0]))){f=this._getInst(f[0]);f.selectedDay=f.currentDay=d("a",e).html();f.selectedMonth=f.currentMonth=
b;f.selectedYear=f.currentYear=c;this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))}},_clearDate:function(a){a=d(a);this._getInst(a[0]);this._selectDate(a,"")},_selectDate:function(a,b){a=this._getInst(d(a)[0]);b=b!=null?b:this._formatDate(a);a.input&&a.input.val(b);this._updateAlternate(a);var c=this._get(a,"onSelect");if(c)c.apply(a.input?a.input[0]:null,[b,a]);else a.input&&a.input.trigger("change");if(a.inline)this._updateDatepicker(a);else{this._hideDatepicker();
this._lastInput=a.input[0];typeof a.input[0]!="object"&&a.input.focus();this._lastInput=null}},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),e=this._getDate(a),f=this.formatDate(c,e,this._getFormatConfig(a));d(b).each(function(){d(this).val(f)})}},noWeekends:function(a){a=a.getDay();return[a>0&&a<6,""]},iso8601Week:function(a){a=new Date(a.getTime());a.setDate(a.getDate()+4-(a.getDay()||7));var b=a.getTime();a.setMonth(0);
a.setDate(1);return Math.floor(Math.round((b-a)/864E5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null;var e=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;e=typeof e!="string"?e:(new Date).getFullYear()%100+parseInt(e,10);for(var f=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,h=(c?c.dayNames:null)||this._defaults.dayNames,i=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?
c.monthNames:null)||this._defaults.monthNames,j=c=-1,l=-1,u=-1,k=false,o=function(p){(p=z+1<a.length&&a.charAt(z+1)==p)&&z++;return p},m=function(p){var v=o(p);p=new RegExp("^\\d{1,"+(p=="@"?14:p=="!"?20:p=="y"&&v?4:p=="o"?3:2)+"}");p=b.substring(s).match(p);if(!p)throw"Missing number at position "+s;s+=p[0].length;return parseInt(p[0],10)},n=function(p,v,H){p=o(p)?H:v;for(v=0;v<p.length;v++)if(b.substr(s,p[v].length).toLowerCase()==p[v].toLowerCase()){s+=p[v].length;return v+1}throw"Unknown name at position "+
s;},r=function(){if(b.charAt(s)!=a.charAt(z))throw"Unexpected literal at position "+s;s++},s=0,z=0;z<a.length;z++)if(k)if(a.charAt(z)=="'"&&!o("'"))k=false;else r();else switch(a.charAt(z)){case "d":l=m("d");break;case "D":n("D",f,h);break;case "o":u=m("o");break;case "m":j=m("m");break;case "M":j=n("M",i,g);break;case "y":c=m("y");break;case "@":var w=new Date(m("@"));c=w.getFullYear();j=w.getMonth()+1;l=w.getDate();break;case "!":w=new Date((m("!")-this._ticksTo1970)/1E4);c=w.getFullYear();j=w.getMonth()+
1;l=w.getDate();break;case "'":if(o("'"))r();else k=true;break;default:r()}if(c==-1)c=(new Date).getFullYear();else if(c<100)c+=(new Date).getFullYear()-(new Date).getFullYear()%100+(c<=e?0:-100);if(u>-1){j=1;l=u;do{e=this._getDaysInMonth(c,j-1);if(l<=e)break;j++;l-=e}while(1)}w=this._daylightSavingAdjust(new Date(c,j-1,l));if(w.getFullYear()!=c||w.getMonth()+1!=j||w.getDate()!=l)throw"Invalid date";return w},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",
RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1E7,formatDate:function(a,b,c){if(!b)return"";var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,h=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort;c=(c?c.monthNames:null)||this._defaults.monthNames;var i=function(o){(o=k+1<a.length&&
a.charAt(k+1)==o)&&k++;return o},g=function(o,m,n){m=""+m;if(i(o))for(;m.length<n;)m="0"+m;return m},j=function(o,m,n,r){return i(o)?r[m]:n[m]},l="",u=false;if(b)for(var k=0;k<a.length;k++)if(u)if(a.charAt(k)=="'"&&!i("'"))u=false;else l+=a.charAt(k);else switch(a.charAt(k)){case "d":l+=g("d",b.getDate(),2);break;case "D":l+=j("D",b.getDay(),e,f);break;case "o":l+=g("o",(b.getTime()-(new Date(b.getFullYear(),0,0)).getTime())/864E5,3);break;case "m":l+=g("m",b.getMonth()+1,2);break;case "M":l+=j("M",
b.getMonth(),h,c);break;case "y":l+=i("y")?b.getFullYear():(b.getYear()%100<10?"0":"")+b.getYear()%100;break;case "@":l+=b.getTime();break;case "!":l+=b.getTime()*1E4+this._ticksTo1970;break;case "'":if(i("'"))l+="'";else u=true;break;default:l+=a.charAt(k)}return l},_possibleChars:function(a){for(var b="",c=false,e=function(h){(h=f+1<a.length&&a.charAt(f+1)==h)&&f++;return h},f=0;f<a.length;f++)if(c)if(a.charAt(f)=="'"&&!e("'"))c=false;else b+=a.charAt(f);else switch(a.charAt(f)){case "d":case "m":case "y":case "@":b+=
"0123456789";break;case "D":case "M":return null;case "'":if(e("'"))b+="'";else c=true;break;default:b+=a.charAt(f)}return b},_get:function(a,b){return a.settings[b]!==A?a.settings[b]:this._defaults[b]},_setDateFromField:function(a,b){if(a.input.val()!=a.lastVal){var c=this._get(a,"dateFormat"),e=a.lastVal=a.input?a.input.val():null,f,h;f=h=this._getDefaultDate(a);var i=this._getFormatConfig(a);try{f=this.parseDate(c,e,i)||h}catch(g){this.log(g);e=b?"":e}a.selectedDay=f.getDate();a.drawMonth=a.selectedMonth=
f.getMonth();a.drawYear=a.selectedYear=f.getFullYear();a.currentDay=e?f.getDate():0;a.currentMonth=e?f.getMonth():0;a.currentYear=e?f.getFullYear():0;this._adjustInstDate(a)}},_getDefaultDate:function(a){return this._restrictMinMax(a,this._determineDate(a,this._get(a,"defaultDate"),new Date))},_determineDate:function(a,b,c){var e=function(h){var i=new Date;i.setDate(i.getDate()+h);return i},f=function(h){try{return d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),h,d.datepicker._getFormatConfig(a))}catch(i){}var g=
(h.toLowerCase().match(/^c/)?d.datepicker._getDate(a):null)||new Date,j=g.getFullYear(),l=g.getMonth();g=g.getDate();for(var u=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,k=u.exec(h);k;){switch(k[2]||"d"){case "d":case "D":g+=parseInt(k[1],10);break;case "w":case "W":g+=parseInt(k[1],10)*7;break;case "m":case "M":l+=parseInt(k[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(j,l));break;case "y":case "Y":j+=parseInt(k[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(j,l));break}k=u.exec(h)}return new Date(j,
l,g)};if(b=(b=b==null||b===""?c:typeof b=="string"?f(b):typeof b=="number"?isNaN(b)?c:e(b):new Date(b.getTime()))&&b.toString()=="Invalid Date"?c:b){b.setHours(0);b.setMinutes(0);b.setSeconds(0);b.setMilliseconds(0)}return this._daylightSavingAdjust(b)},_daylightSavingAdjust:function(a){if(!a)return null;a.setHours(a.getHours()>12?a.getHours()+2:0);return a},_setDate:function(a,b,c){var e=!b,f=a.selectedMonth,h=a.selectedYear;b=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=
a.currentDay=b.getDate();a.drawMonth=a.selectedMonth=a.currentMonth=b.getMonth();a.drawYear=a.selectedYear=a.currentYear=b.getFullYear();if((f!=a.selectedMonth||h!=a.selectedYear)&&!c)this._notifyChange(a);this._adjustInstDate(a);if(a.input)a.input.val(e?"":this._formatDate(a))},_getDate:function(a){return!a.currentYear||a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay))},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),
b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),e=this._get(a,"showButtonPanel"),f=this._get(a,"hideIfNoPrevNext"),h=this._get(a,"navigationAsDateFormat"),i=this._getNumberOfMonths(a),g=this._get(a,"showCurrentAtPos"),j=this._get(a,"stepMonths"),l=i[0]!=1||i[1]!=1,u=this._daylightSavingAdjust(!a.currentDay?new Date(9999,9,9):new Date(a.currentYear,a.currentMonth,a.currentDay)),k=this._getMinMaxDate(a,"min"),o=this._getMinMaxDate(a,"max");g=a.drawMonth-g;var m=a.drawYear;if(g<0){g+=12;m--}if(o){var n=
this._daylightSavingAdjust(new Date(o.getFullYear(),o.getMonth()-i[0]*i[1]+1,o.getDate()));for(n=k&&n<k?k:n;this._daylightSavingAdjust(new Date(m,g,1))>n;){g--;if(g<0){g=11;m--}}}a.drawMonth=g;a.drawYear=m;n=this._get(a,"prevText");n=!h?n:this.formatDate(n,this._daylightSavingAdjust(new Date(m,g-j,1)),this._getFormatConfig(a));n=this._canAdjustMonth(a,-1,m,g)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery_'+y+".datepicker._adjustDate('#"+a.id+"', -"+j+", 'M');\" title=\""+n+'"><span class="ui-icon ui-icon-circle-triangle-'+
(c?"e":"w")+'">'+n+"</span></a>":f?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+n+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>";var r=this._get(a,"nextText");r=!h?r:this.formatDate(r,this._daylightSavingAdjust(new Date(m,g+j,1)),this._getFormatConfig(a));f=this._canAdjustMonth(a,+1,m,g)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery_'+y+".datepicker._adjustDate('#"+a.id+"', +"+j+", 'M');\" title=\""+r+'"><span class="ui-icon ui-icon-circle-triangle-'+
(c?"w":"e")+'">'+r+"</span></a>":f?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+r+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+r+"</span></a>";j=this._get(a,"currentText");r=this._get(a,"gotoCurrent")&&a.currentDay?u:b;j=!h?j:this.formatDate(j,r,this._getFormatConfig(a));h=!a.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery_'+y+'.datepicker._hideDatepicker();">'+this._get(a,
"closeText")+"</button>":"";e=e?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(c?h:"")+(this._isInRange(a,r)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_'+y+".datepicker._gotoToday('#"+a.id+"');\">"+j+"</button>":"")+(c?"":h)+"</div>":"";h=parseInt(this._get(a,"firstDay"),10);h=isNaN(h)?0:h;j=this._get(a,"showWeek");r=this._get(a,"dayNames");this._get(a,"dayNamesShort");var s=this._get(a,"dayNamesMin"),z=
this._get(a,"monthNames"),w=this._get(a,"monthNamesShort"),p=this._get(a,"beforeShowDay"),v=this._get(a,"showOtherMonths"),H=this._get(a,"selectOtherMonths");this._get(a,"calculateWeek");for(var L=this._getDefaultDate(a),I="",D=0;D<i[0];D++){for(var M="",E=0;E<i[1];E++){var N=this._daylightSavingAdjust(new Date(m,g,a.selectedDay)),t=" ui-corner-all",x="";if(l){x+='<div class="ui-datepicker-group';if(i[1]>1)switch(E){case 0:x+=" ui-datepicker-group-first";t=" ui-corner-"+(c?"right":"left");break;case i[1]-
1:x+=" ui-datepicker-group-last";t=" ui-corner-"+(c?"left":"right");break;default:x+=" ui-datepicker-group-middle";t="";break}x+='">'}x+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+t+'">'+(/all|left/.test(t)&&D==0?c?f:n:"")+(/all|right/.test(t)&&D==0?c?n:f:"")+this._generateMonthYearHeader(a,g,m,k,o,D>0||E>0,z,w)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var B=j?'<th class="ui-datepicker-week-col">'+this._get(a,"weekHeader")+"</th>":"";for(t=0;t<7;t++){var q=
(t+h)%7;B+="<th"+((t+h+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+r[q]+'">'+s[q]+"</span></th>"}x+=B+"</tr></thead><tbody>";B=this._getDaysInMonth(m,g);if(m==a.selectedYear&&g==a.selectedMonth)a.selectedDay=Math.min(a.selectedDay,B);t=(this._getFirstDayOfMonth(m,g)-h+7)%7;B=l?6:Math.ceil((t+B)/7);q=this._daylightSavingAdjust(new Date(m,g,1-t));for(var O=0;O<B;O++){x+="<tr>";var P=!j?"":'<td class="ui-datepicker-week-col">'+this._get(a,"calculateWeek")(q)+"</td>";for(t=0;t<7;t++){var G=
p?p.apply(a.input?a.input[0]:null,[q]):[true,""],C=q.getMonth()!=g,J=C&&!H||!G[0]||k&&q<k||o&&q>o;P+='<td class="'+((t+h+6)%7>=5?" ui-datepicker-week-end":"")+(C?" ui-datepicker-other-month":"")+(q.getTime()==N.getTime()&&g==a.selectedMonth&&a._keyEvent||L.getTime()==q.getTime()&&L.getTime()==N.getTime()?" "+this._dayOverClass:"")+(J?" "+this._unselectableClass+" ui-state-disabled":"")+(C&&!v?"":" "+G[1]+(q.getTime()==u.getTime()?" "+this._currentClass:"")+(q.getTime()==b.getTime()?" ui-datepicker-today":
""))+'"'+((!C||v)&&G[2]?' title="'+G[2]+'"':"")+(J?"":' onclick="DP_jQuery_'+y+".datepicker._selectDay('#"+a.id+"',"+q.getMonth()+","+q.getFullYear()+', this);return false;"')+">"+(C&&!v?"&#xa0;":J?'<span class="ui-state-default">'+q.getDate()+"</span>":'<a class="ui-state-default'+(q.getTime()==b.getTime()?" ui-state-highlight":"")+(q.getTime()==u.getTime()?" ui-state-active":"")+(C?" ui-priority-secondary":"")+'" href="#">'+q.getDate()+"</a>")+"</td>";q.setDate(q.getDate()+1);q=this._daylightSavingAdjust(q)}x+=
P+"</tr>"}g++;if(g>11){g=0;m++}x+="</tbody></table>"+(l?"</div>"+(i[0]>0&&E==i[1]-1?'<div class="ui-datepicker-row-break"></div>':""):"");M+=x}I+=M}I+=e+(d.browser.msie&&parseInt(d.browser.version,10)<7&&!a.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':"");a._keyEvent=false;return I},_generateMonthYearHeader:function(a,b,c,e,f,h,i,g){var j=this._get(a,"changeMonth"),l=this._get(a,"changeYear"),u=this._get(a,"showMonthAfterYear"),k='<div class="ui-datepicker-title">',
o="";if(h||!j)o+='<span class="ui-datepicker-month">'+i[b]+"</span>";else{i=e&&e.getFullYear()==c;var m=f&&f.getFullYear()==c;o+='<select class="ui-datepicker-month" onchange="DP_jQuery_'+y+".datepicker._selectMonthYear('#"+a.id+"', this, 'M');\" onclick=\"DP_jQuery_"+y+".datepicker._clickMonthYear('#"+a.id+"');\">";for(var n=0;n<12;n++)if((!i||n>=e.getMonth())&&(!m||n<=f.getMonth()))o+='<option value="'+n+'"'+(n==b?' selected="selected"':"")+">"+g[n]+"</option>";o+="</select>"}u||(k+=o+(h||!(j&&
l)?"&#xa0;":""));a.yearshtml="";if(h||!l)k+='<span class="ui-datepicker-year">'+c+"</span>";else{g=this._get(a,"yearRange").split(":");var r=(new Date).getFullYear();i=function(s){s=s.match(/c[+-].*/)?c+parseInt(s.substring(1),10):s.match(/[+-].*/)?r+parseInt(s,10):parseInt(s,10);return isNaN(s)?r:s};b=i(g[0]);g=Math.max(b,i(g[1]||""));b=e?Math.max(b,e.getFullYear()):b;g=f?Math.min(g,f.getFullYear()):g;for(a.yearshtml+='<select class="ui-datepicker-year" onchange="DP_jQuery_'+y+".datepicker._selectMonthYear('#"+
a.id+"', this, 'Y');\" onclick=\"DP_jQuery_"+y+".datepicker._clickMonthYear('#"+a.id+"');\">";b<=g;b++)a.yearshtml+='<option value="'+b+'"'+(b==c?' selected="selected"':"")+">"+b+"</option>";a.yearshtml+="</select>";if(d.browser.mozilla)k+='<select class="ui-datepicker-year"><option value="'+c+'" selected="selected">'+c+"</option></select>";else{k+=a.yearshtml;a.yearshtml=null}}k+=this._get(a,"yearSuffix");if(u)k+=(h||!(j&&l)?"&#xa0;":"")+o;k+="</div>";return k},_adjustInstDate:function(a,b,c){var e=
a.drawYear+(c=="Y"?b:0),f=a.drawMonth+(c=="M"?b:0);b=Math.min(a.selectedDay,this._getDaysInMonth(e,f))+(c=="D"?b:0);e=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(e,f,b)));a.selectedDay=e.getDate();a.drawMonth=a.selectedMonth=e.getMonth();a.drawYear=a.selectedYear=e.getFullYear();if(c=="M"||c=="Y")this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");b=c&&b<c?c:b;return b=a&&b>a?a:b},_notifyChange:function(a){var b=this._get(a,
"onChangeMonthYear");if(b)b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){a=this._get(a,"numberOfMonths");return a==null?[1,1]:typeof a=="number"?[1,a]:a},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,e){var f=this._getNumberOfMonths(a);
c=this._daylightSavingAdjust(new Date(c,e+(b<0?b:f[0]*f[1]),1));b<0&&c.setDate(this._getDaysInMonth(c.getFullYear(),c.getMonth()));return this._isInRange(a,c)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!a||b.getTime()<=a.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10);return{shortYearCutoff:b,dayNamesShort:this._get(a,
"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,e){if(!b){a.currentDay=a.selectedDay;a.currentMonth=a.selectedMonth;a.currentYear=a.selectedYear}b=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(e,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),b,this._getFormatConfig(a))}});d.fn.datepicker=
function(a){if(!this.length)return this;if(!d.datepicker.initialized){d(document).mousedown(d.datepicker._checkExternalClick).find("body").append(d.datepicker.dpDiv);d.datepicker.initialized=true}var b=Array.prototype.slice.call(arguments,1);if(typeof a=="string"&&(a=="isDisabled"||a=="getDate"||a=="widget"))return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));if(a=="option"&&arguments.length==2&&typeof arguments[1]=="string")return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,
[this[0]].concat(b));return this.each(function(){typeof a=="string"?d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this].concat(b)):d.datepicker._attachDatepicker(this,a)})};d.datepicker=new K;d.datepicker.initialized=false;d.datepicker.uuid=(new Date).getTime();d.datepicker.version="1.8.11";window["DP_jQuery_"+y]=d})(jQuery);
;/*
 * jQuery UI Progressbar 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar
 *
 * Depends:
 *   jquery.ui.core.js
 *   jquery.ui.widget.js
 */
(function(b,d){b.widget("ui.progressbar",{options:{value:0,max:100},min:0,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()});this.valueDiv=b("<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>").appendTo(this.element);this.oldValue=this._value();this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow");
this.valueDiv.remove();b.Widget.prototype.destroy.apply(this,arguments)},value:function(a){if(a===d)return this._value();this._setOption("value",a);return this},_setOption:function(a,c){if(a==="value"){this.options.value=c;this._refreshValue();this._value()===this.options.max&&this._trigger("complete")}b.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;if(typeof a!=="number")a=0;return Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){return 100*
this._value()/this.options.max},_refreshValue:function(){var a=this.value(),c=this._percentage();if(this.oldValue!==a){this.oldValue=a;this._trigger("change")}this.valueDiv.toggleClass("ui-corner-right",a===this.options.max).width(c.toFixed(0)+"%");this.element.attr("aria-valuenow",a)}});b.extend(b.ui.progressbar,{version:"1.8.11"})})(jQuery);
;/*
 * jQuery UI Effects 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/
 */
jQuery.effects||function(f,j){function n(c){var a;if(c&&c.constructor==Array&&c.length==3)return c;if(a=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c))return[parseInt(a[1],10),parseInt(a[2],10),parseInt(a[3],10)];if(a=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))return[parseFloat(a[1])*2.55,parseFloat(a[2])*2.55,parseFloat(a[3])*2.55];if(a=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c))return[parseInt(a[1],
16),parseInt(a[2],16),parseInt(a[3],16)];if(a=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c))return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2],16),parseInt(a[3]+a[3],16)];if(/rgba\(0, 0, 0, 0\)/.exec(c))return o.transparent;return o[f.trim(c).toLowerCase()]}function s(c,a){var b;do{b=f.curCSS(c,a);if(b!=""&&b!="transparent"||f.nodeName(c,"body"))break;a="backgroundColor"}while(c=c.parentNode);return n(b)}function p(){var c=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,
a={},b,d;if(c&&c.length&&c[0]&&c[c[0]])for(var e=c.length;e--;){b=c[e];if(typeof c[b]=="string"){d=b.replace(/\-(\w)/g,function(g,h){return h.toUpperCase()});a[d]=c[b]}}else for(b in c)if(typeof c[b]==="string")a[b]=c[b];return a}function q(c){var a,b;for(a in c){b=c[a];if(b==null||f.isFunction(b)||a in t||/scrollbar/.test(a)||!/color/i.test(a)&&isNaN(parseFloat(b)))delete c[a]}return c}function u(c,a){var b={_:0},d;for(d in a)if(c[d]!=a[d])b[d]=a[d];return b}function k(c,a,b,d){if(typeof c=="object"){d=
a;b=null;a=c;c=a.effect}if(f.isFunction(a)){d=a;b=null;a={}}if(typeof a=="number"||f.fx.speeds[a]){d=b;b=a;a={}}if(f.isFunction(b)){d=b;b=null}a=a||{};b=b||a.duration;b=f.fx.off?0:typeof b=="number"?b:b in f.fx.speeds?f.fx.speeds[b]:f.fx.speeds._default;d=d||a.complete;return[c,a,b,d]}function m(c){if(!c||typeof c==="number"||f.fx.speeds[c])return true;if(typeof c==="string"&&!f.effects[c])return true;return false}f.effects={};f.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor",
"borderTopColor","borderColor","color","outlineColor"],function(c,a){f.fx.step[a]=function(b){if(!b.colorInit){b.start=s(b.elem,a);b.end=n(b.end);b.colorInit=true}b.elem.style[a]="rgb("+Math.max(Math.min(parseInt(b.pos*(b.end[0]-b.start[0])+b.start[0],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[1]-b.start[1])+b.start[1],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[2]-b.start[2])+b.start[2],10),255),0)+")"}});var o={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,
0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,
211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},r=["add","remove","toggle"],t={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};f.effects.animateClass=function(c,a,b,
d){if(f.isFunction(b)){d=b;b=null}return this.queue("fx",function(){var e=f(this),g=e.attr("style")||" ",h=q(p.call(this)),l,v=e.attr("className");f.each(r,function(w,i){c[i]&&e[i+"Class"](c[i])});l=q(p.call(this));e.attr("className",v);e.animate(u(h,l),a,b,function(){f.each(r,function(w,i){c[i]&&e[i+"Class"](c[i])});if(typeof e.attr("style")=="object"){e.attr("style").cssText="";e.attr("style").cssText=g}else e.attr("style",g);d&&d.apply(this,arguments)});h=f.queue(this);l=h.splice(h.length-1,1)[0];
h.splice(1,0,l);f.dequeue(this)})};f.fn.extend({_addClass:f.fn.addClass,addClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{add:c},a,b,d]):this._addClass(c)},_removeClass:f.fn.removeClass,removeClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{remove:c},a,b,d]):this._removeClass(c)},_toggleClass:f.fn.toggleClass,toggleClass:function(c,a,b,d,e){return typeof a=="boolean"||a===j?b?f.effects.animateClass.apply(this,[a?{add:c}:{remove:c},b,d,e]):this._toggleClass(c,
a):f.effects.animateClass.apply(this,[{toggle:c},a,b,d])},switchClass:function(c,a,b,d,e){return f.effects.animateClass.apply(this,[{add:a,remove:c},b,d,e])}});f.extend(f.effects,{version:"1.8.11",save:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.data("ec.storage."+a[b],c[0].style[a[b]])},restore:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.css(a[b],c.data("ec.storage."+a[b]))},setMode:function(c,a){if(a=="toggle")a=c.is(":hidden")?"show":"hide";return a},getBaseline:function(c,
a){var b;switch(c[0]){case "top":b=0;break;case "middle":b=0.5;break;case "bottom":b=1;break;default:b=c[0]/a.height}switch(c[1]){case "left":c=0;break;case "center":c=0.5;break;case "right":c=1;break;default:c=c[1]/a.width}return{x:c,y:b}},createWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent();var a={width:c.outerWidth(true),height:c.outerHeight(true),"float":c.css("float")},b=f("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",
border:"none",margin:0,padding:0});c.wrap(b);b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"});c.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})}return b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c);
return c},setTransition:function(c,a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=k.apply(this,arguments),b={options:a[1],duration:a[2],callback:a[3]};a=b.options.mode;var d=f.effects[c];if(f.fx.off||!d)return a?this[a](b.duration,b.callback):this.each(function(){b.callback&&b.callback.call(this)});return d.call(this,b)},_show:f.fn.show,show:function(c){if(m(c))return this._show.apply(this,arguments);
else{var a=k.apply(this,arguments);a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(m(c))return this._hide.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(m(c)||typeof c==="boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),
b=[];f.each(["em","px","%","pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,
a,b,d,e){return d*((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b,d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,
a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==
e)return b+d;if((a/=e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=
g/(2*Math.PI)*Math.asin(d/h);return-(h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g))+b},easeOutElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);return h*Math.pow(2,-10*a)*Math.sin((a*e-c)*2*Math.PI/g)+d+b},easeInOutElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e/2)==2)return b+d;g||(g=e*0.3*1.5);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/
h);if(a<1)return-0.5*h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)+b;return h*Math.pow(2,-10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)*0.5+d+b},easeInBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*(a/=e)*a*((g+1)*a-g)+b},easeOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*((a=a/e-1)*a*((g+1)*a+g)+1)+b},easeInOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;if((a/=e/2)<1)return d/2*a*a*(((g*=1.525)+1)*a-g)+b;return d/2*((a-=2)*a*(((g*=1.525)+1)*a+g)+2)+b},easeInBounce:function(c,
a,b,d,e){return d-f.easing.easeOutBounce(c,e-a,0,d,e)+b},easeOutBounce:function(c,a,b,d,e){return(a/=e)<1/2.75?d*7.5625*a*a+b:a<2/2.75?d*(7.5625*(a-=1.5/2.75)*a+0.75)+b:a<2.5/2.75?d*(7.5625*(a-=2.25/2.75)*a+0.9375)+b:d*(7.5625*(a-=2.625/2.75)*a+0.984375)+b},easeInOutBounce:function(c,a,b,d,e){if(a<e/2)return f.easing.easeInBounce(c,a*2,0,d,e)*0.5+b;return f.easing.easeOutBounce(c,a*2-e,0,d,e)*0.5+d*0.5+b}})}(jQuery);
;/*
 * jQuery UI Effects Blind 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Blind
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(b){b.effects.blind=function(c){return this.queue(function(){var a=b(this),g=["position","top","bottom","left","right"],f=b.effects.setMode(a,c.options.mode||"hide"),d=c.options.direction||"vertical";b.effects.save(a,g);a.show();var e=b.effects.createWrapper(a).css({overflow:"hidden"}),h=d=="vertical"?"height":"width";d=d=="vertical"?e.height():e.width();f=="show"&&e.css(h,0);var i={};i[h]=f=="show"?d:0;e.animate(i,c.duration,c.options.easing,function(){f=="hide"&&a.hide();b.effects.restore(a,
g);b.effects.removeWrapper(a);c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery);
;/*
 * jQuery UI Effects Bounce 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Bounce
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(e){e.effects.bounce=function(b){return this.queue(function(){var a=e(this),l=["position","top","bottom","left","right"],h=e.effects.setMode(a,b.options.mode||"effect"),d=b.options.direction||"up",c=b.options.distance||20,m=b.options.times||5,i=b.duration||250;/show|hide/.test(h)&&l.push("opacity");e.effects.save(a,l);a.show();e.effects.createWrapper(a);var f=d=="up"||d=="down"?"top":"left";d=d=="up"||d=="left"?"pos":"neg";c=b.options.distance||(f=="top"?a.outerHeight({margin:true})/3:a.outerWidth({margin:true})/
3);if(h=="show")a.css("opacity",0).css(f,d=="pos"?-c:c);if(h=="hide")c/=m*2;h!="hide"&&m--;if(h=="show"){var g={opacity:1};g[f]=(d=="pos"?"+=":"-=")+c;a.animate(g,i/2,b.options.easing);c/=2;m--}for(g=0;g<m;g++){var j={},k={};j[f]=(d=="pos"?"-=":"+=")+c;k[f]=(d=="pos"?"+=":"-=")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing);c=h=="hide"?c*2:c/2}if(h=="hide"){g={opacity:0};g[f]=(d=="pos"?"-=":"+=")+c;a.animate(g,i/2,b.options.easing,function(){a.hide();e.effects.restore(a,l);e.effects.removeWrapper(a);
b.callback&&b.callback.apply(this,arguments)})}else{j={};k={};j[f]=(d=="pos"?"-=":"+=")+c;k[f]=(d=="pos"?"+=":"-=")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing,function(){e.effects.restore(a,l);e.effects.removeWrapper(a);b.callback&&b.callback.apply(this,arguments)})}a.queue("fx",function(){a.dequeue()});a.dequeue()})}})(jQuery);
;/*
 * jQuery UI Effects Clip 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Clip
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(b){b.effects.clip=function(e){return this.queue(function(){var a=b(this),i=["position","top","bottom","left","right","height","width"],f=b.effects.setMode(a,e.options.mode||"hide"),c=e.options.direction||"vertical";b.effects.save(a,i);a.show();var d=b.effects.createWrapper(a).css({overflow:"hidden"});d=a[0].tagName=="IMG"?d:a;var g={size:c=="vertical"?"height":"width",position:c=="vertical"?"top":"left"};c=c=="vertical"?d.height():d.width();if(f=="show"){d.css(g.size,0);d.css(g.position,
c/2)}var h={};h[g.size]=f=="show"?c:0;h[g.position]=f=="show"?0:c/2;d.animate(h,{queue:false,duration:e.duration,easing:e.options.easing,complete:function(){f=="hide"&&a.hide();b.effects.restore(a,i);b.effects.removeWrapper(a);e.callback&&e.callback.apply(a[0],arguments);a.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Drop 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Drop
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(c){c.effects.drop=function(d){return this.queue(function(){var a=c(this),h=["position","top","bottom","left","right","opacity"],e=c.effects.setMode(a,d.options.mode||"hide"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a);var f=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var g=d.options.distance||(f=="top"?a.outerHeight({margin:true})/2:a.outerWidth({margin:true})/2);if(e=="show")a.css("opacity",0).css(f,b=="pos"?-g:g);var i={opacity:e==
"show"?1:0};i[f]=(e=="show"?b=="pos"?"+=":"-=":b=="pos"?"-=":"+=")+g;a.animate(i,{queue:false,duration:d.duration,easing:d.options.easing,complete:function(){e=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Explode 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Explode
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(j){j.effects.explode=function(a){return this.queue(function(){var c=a.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3,d=a.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3;a.options.mode=a.options.mode=="toggle"?j(this).is(":visible")?"hide":"show":a.options.mode;var b=j(this).show().css("visibility","hidden"),g=b.offset();g.top-=parseInt(b.css("marginTop"),10)||0;g.left-=parseInt(b.css("marginLeft"),10)||0;for(var h=b.outerWidth(true),i=b.outerHeight(true),e=0;e<c;e++)for(var f=
0;f<d;f++)b.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-f*(h/d),top:-e*(i/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:h/d,height:i/c,left:g.left+f*(h/d)+(a.options.mode=="show"?(f-Math.floor(d/2))*(h/d):0),top:g.top+e*(i/c)+(a.options.mode=="show"?(e-Math.floor(c/2))*(i/c):0),opacity:a.options.mode=="show"?0:1}).animate({left:g.left+f*(h/d)+(a.options.mode=="show"?0:(f-Math.floor(d/2))*(h/d)),top:g.top+
e*(i/c)+(a.options.mode=="show"?0:(e-Math.floor(c/2))*(i/c)),opacity:a.options.mode=="show"?1:0},a.duration||500);setTimeout(function(){a.options.mode=="show"?b.css({visibility:"visible"}):b.css({visibility:"visible"}).hide();a.callback&&a.callback.apply(b[0]);b.dequeue();j("div.ui-effects-explode").remove()},a.duration||500)})}})(jQuery);
;/*
 * jQuery UI Effects Fade 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Fade
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Fold 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Fold
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(c){c.effects.fold=function(a){return this.queue(function(){var b=c(this),j=["position","top","bottom","left","right"],d=c.effects.setMode(b,a.options.mode||"hide"),g=a.options.size||15,h=!!a.options.horizFirst,k=a.duration?a.duration/2:c.fx.speeds._default/2;c.effects.save(b,j);b.show();var e=c.effects.createWrapper(b).css({overflow:"hidden"}),f=d=="show"!=h,l=f?["width","height"]:["height","width"];f=f?[e.width(),e.height()]:[e.height(),e.width()];var i=/([0-9]+)%/.exec(g);if(i)g=parseInt(i[1],
10)/100*f[d=="hide"?0:1];if(d=="show")e.css(h?{height:0,width:g}:{height:g,width:0});h={};i={};h[l[0]]=d=="show"?f[0]:g;i[l[1]]=d=="show"?f[1]:0;e.animate(h,k,a.options.easing).animate(i,k,a.options.easing,function(){d=="hide"&&b.hide();c.effects.restore(b,j);c.effects.removeWrapper(b);a.callback&&a.callback.apply(b[0],arguments);b.dequeue()})})}})(jQuery);
;/*
 * jQuery UI Effects Highlight 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Highlight
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&&
this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Pulsate 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Pulsate
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(d){d.effects.pulsate=function(a){return this.queue(function(){var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c<times;c++){b.animate({opacity:animateTo},duration,a.options.easing);animateTo=(animateTo+1)%2}b.animate({opacity:animateTo},duration,
a.options.easing,function(){animateTo==0&&b.hide();a.callback&&a.callback.apply(this,arguments)});b.queue("fx",function(){b.dequeue()}).dequeue()})}})(jQuery);
;/*
 * jQuery UI Effects Scale 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Scale
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(c){c.effects.puff=function(b){return this.queue(function(){var a=c(this),e=c.effects.setMode(a,b.options.mode||"hide"),g=parseInt(b.options.percent,10)||150,h=g/100,i={height:a.height(),width:a.width()};c.extend(b.options,{fade:true,mode:e,percent:e=="hide"?g:100,from:e=="hide"?i:{height:i.height*h,width:i.width*h}});a.effect("scale",b.options,b.duration,b.callback);a.dequeue()})};c.effects.scale=function(b){return this.queue(function(){var a=c(this),e=c.extend(true,{},b.options),g=c.effects.setMode(a,
b.options.mode||"effect"),h=parseInt(b.options.percent,10)||(parseInt(b.options.percent,10)==0?0:g=="hide"?0:100),i=b.options.direction||"both",f=b.options.origin;if(g!="effect"){e.origin=f||["middle","center"];e.restore=true}f={height:a.height(),width:a.width()};a.from=b.options.from||(g=="show"?{height:0,width:0}:f);h={y:i!="horizontal"?h/100:1,x:i!="vertical"?h/100:1};a.to={height:f.height*h.y,width:f.width*h.x};if(b.options.fade){if(g=="show"){a.from.opacity=0;a.to.opacity=1}if(g=="hide"){a.from.opacity=
1;a.to.opacity=0}}e.from=a.from;e.to=a.to;e.mode=g;a.effect("size",e,b.duration,b.callback);a.dequeue()})};c.effects.size=function(b){return this.queue(function(){var a=c(this),e=["position","top","bottom","left","right","width","height","overflow","opacity"],g=["position","top","bottom","left","right","overflow","opacity"],h=["width","height","overflow"],i=["fontSize"],f=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],k=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],
p=c.effects.setMode(a,b.options.mode||"effect"),n=b.options.restore||false,m=b.options.scale||"both",l=b.options.origin,j={height:a.height(),width:a.width()};a.from=b.options.from||j;a.to=b.options.to||j;if(l){l=c.effects.getBaseline(l,j);a.from.top=(j.height-a.from.height)*l.y;a.from.left=(j.width-a.from.width)*l.x;a.to.top=(j.height-a.to.height)*l.y;a.to.left=(j.width-a.to.width)*l.x}var d={from:{y:a.from.height/j.height,x:a.from.width/j.width},to:{y:a.to.height/j.height,x:a.to.width/j.width}};
if(m=="box"||m=="both"){if(d.from.y!=d.to.y){e=e.concat(f);a.from=c.effects.setTransition(a,f,d.from.y,a.from);a.to=c.effects.setTransition(a,f,d.to.y,a.to)}if(d.from.x!=d.to.x){e=e.concat(k);a.from=c.effects.setTransition(a,k,d.from.x,a.from);a.to=c.effects.setTransition(a,k,d.to.x,a.to)}}if(m=="content"||m=="both")if(d.from.y!=d.to.y){e=e.concat(i);a.from=c.effects.setTransition(a,i,d.from.y,a.from);a.to=c.effects.setTransition(a,i,d.to.y,a.to)}c.effects.save(a,n?e:g);a.show();c.effects.createWrapper(a);
a.css("overflow","hidden").css(a.from);if(m=="content"||m=="both"){f=f.concat(["marginTop","marginBottom"]).concat(i);k=k.concat(["marginLeft","marginRight"]);h=e.concat(f).concat(k);a.find("*[width]").each(function(){child=c(this);n&&c.effects.save(child,h);var o={height:child.height(),width:child.width()};child.from={height:o.height*d.from.y,width:o.width*d.from.x};child.to={height:o.height*d.to.y,width:o.width*d.to.x};if(d.from.y!=d.to.y){child.from=c.effects.setTransition(child,f,d.from.y,child.from);
child.to=c.effects.setTransition(child,f,d.to.y,child.to)}if(d.from.x!=d.to.x){child.from=c.effects.setTransition(child,k,d.from.x,child.from);child.to=c.effects.setTransition(child,k,d.to.x,child.to)}child.css(child.from);child.animate(child.to,b.duration,b.options.easing,function(){n&&c.effects.restore(child,h)})})}a.animate(a.to,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){a.to.opacity===0&&a.css("opacity",a.from.opacity);p=="hide"&&a.hide();c.effects.restore(a,
n?e:g);c.effects.removeWrapper(a);b.callback&&b.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Shake 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Shake
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(d){d.effects.shake=function(a){return this.queue(function(){var b=d(this),j=["position","top","bottom","left","right"];d.effects.setMode(b,a.options.mode||"effect");var c=a.options.direction||"left",e=a.options.distance||20,l=a.options.times||3,f=a.duration||a.options.duration||140;d.effects.save(b,j);b.show();d.effects.createWrapper(b);var g=c=="up"||c=="down"?"top":"left",h=c=="up"||c=="left"?"pos":"neg";c={};var i={},k={};c[g]=(h=="pos"?"-=":"+=")+e;i[g]=(h=="pos"?"+=":"-=")+e*2;k[g]=
(h=="pos"?"-=":"+=")+e*2;b.animate(c,f,a.options.easing);for(e=1;e<l;e++)b.animate(i,f,a.options.easing).animate(k,f,a.options.easing);b.animate(i,f,a.options.easing).animate(c,f/2,a.options.easing,function(){d.effects.restore(b,j);d.effects.removeWrapper(b);a.callback&&a.callback.apply(this,arguments)});b.queue("fx",function(){b.dequeue()});b.dequeue()})}})(jQuery);
;/*
 * jQuery UI Effects Slide 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Slide
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(c){c.effects.slide=function(d){return this.queue(function(){var a=c(this),h=["position","top","bottom","left","right"],f=c.effects.setMode(a,d.options.mode||"show"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a).css({overflow:"hidden"});var g=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var e=d.options.distance||(g=="top"?a.outerHeight({margin:true}):a.outerWidth({margin:true}));if(f=="show")a.css(g,b=="pos"?isNaN(e)?"-"+e:-e:e);
var i={};i[g]=(f=="show"?b=="pos"?"+=":"-=":b=="pos"?"-=":"+=")+e;a.animate(i,{queue:false,duration:d.duration,easing:d.options.easing,complete:function(){f=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Transfer 1.8.11
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Transfer
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(e){e.effects.transfer=function(a){return this.queue(function(){var b=e(this),c=e(a.options.to),d=c.offset();c={top:d.top,left:d.left,height:c.innerHeight(),width:c.innerWidth()};d=b.offset();var f=e('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(a.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments);
b.dequeue()})})}})(jQuery);
;

/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-07-21 18:45:56 -0500 (Sat, 21 Jul 2007) $
 * $Rev: 2447 $
 *
 * Version 2.1.1
 */
(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&/6.0/.test(navigator.userAgent)){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};})(jQuery);

//numberFormat154
// mredkj.com
function NumberFormat(num, inputDecimal)
{
this.VERSION = 'Number Format v1.5.4';
this.COMMA = ',';
this.PERIOD = '.';
this.DASH = '-'; 
this.LEFT_PAREN = '('; 
this.RIGHT_PAREN = ')'; 
this.LEFT_OUTSIDE = 0; 
this.LEFT_INSIDE = 1;  
this.RIGHT_INSIDE = 2;  
this.RIGHT_OUTSIDE = 3;  
this.LEFT_DASH = 0; 
this.RIGHT_DASH = 1; 
this.PARENTHESIS = 2; 
this.NO_ROUNDING = -1 
this.num;
this.numOriginal;
this.hasSeparators = false;  
this.separatorValue;  
this.inputDecimalValue; 
this.decimalValue;  
this.negativeFormat; 
this.negativeRed; 
this.hasCurrency;  
this.currencyPosition;  
this.currencyValue;  
this.places;
this.roundToPlaces; 
this.truncate; 
this.setNumber = setNumberNF;
this.toUnformatted = toUnformattedNF;
this.setInputDecimal = setInputDecimalNF; 
this.setSeparators = setSeparatorsNF; 
this.setCommas = setCommasNF;
this.setNegativeFormat = setNegativeFormatNF; 
this.setNegativeRed = setNegativeRedNF; 
this.setCurrency = setCurrencyNF;
this.setCurrencyPrefix = setCurrencyPrefixNF;
this.setCurrencyValue = setCurrencyValueNF; 
this.setCurrencyPosition = setCurrencyPositionNF; 
this.setPlaces = setPlacesNF;
this.toFormatted = toFormattedNF;
this.toPercentage = toPercentageNF;
this.getOriginal = getOriginalNF;
this.moveDecimalRight = moveDecimalRightNF;
this.moveDecimalLeft = moveDecimalLeftNF;
this.getRounded = getRoundedNF;
this.preserveZeros = preserveZerosNF;
this.justNumber = justNumberNF;
this.expandExponential = expandExponentialNF;
this.getZeros = getZerosNF;
this.moveDecimalAsString = moveDecimalAsStringNF;
this.moveDecimal = moveDecimalNF;
this.addSeparators = addSeparatorsNF;
if (inputDecimal == null) {
this.setNumber(num, this.PERIOD);
} else {
this.setNumber(num, inputDecimal); 
}
this.setCommas(true);
this.setNegativeFormat(this.LEFT_DASH); 
this.setNegativeRed(false); 
this.setCurrency(false); 
this.setCurrencyPrefix('$');
this.setPlaces(2);
}
function setInputDecimalNF(val)
{
this.inputDecimalValue = val;
}
function setNumberNF(num, inputDecimal)
{
if (inputDecimal != null) {
this.setInputDecimal(inputDecimal); 
}
this.numOriginal = num;
this.num = this.justNumber(num);
}
function toUnformattedNF()
{
return (this.num);
}
function getOriginalNF()
{
return (this.numOriginal);
}
function setNegativeFormatNF(format)
{
this.negativeFormat = format;
}
function setNegativeRedNF(isRed)
{
this.negativeRed = isRed;
}
function setSeparatorsNF(isC, separator, decimal)
{
this.hasSeparators = isC;
if (separator == null) separator = this.COMMA;
if (decimal == null) decimal = this.PERIOD;
if (separator == decimal) {
this.decimalValue = (decimal == this.PERIOD) ? this.COMMA : this.PERIOD;
} else {
this.decimalValue = decimal;
}
this.separatorValue = separator;
}
function setCommasNF(isC)
{
this.setSeparators(isC, this.COMMA, this.PERIOD);
}
function setCurrencyNF(isC)
{
this.hasCurrency = isC;
}
function setCurrencyValueNF(val)
{
this.currencyValue = val;
}
function setCurrencyPrefixNF(cp)
{
this.setCurrencyValue(cp);
this.setCurrencyPosition(this.LEFT_OUTSIDE);
}
function setCurrencyPositionNF(cp)
{
this.currencyPosition = cp
}
function setPlacesNF(p, tr)
{
this.roundToPlaces = !(p == this.NO_ROUNDING); 
this.truncate = (tr != null && tr); 
this.places = (p < 0) ? 0 : p; 
}
function addSeparatorsNF(nStr, inD, outD, sep)
{
nStr += '';
var dpos = nStr.indexOf(inD);
var nStrEnd = '';
if (dpos != -1) {
nStrEnd = outD + nStr.substring(dpos + 1, nStr.length);
nStr = nStr.substring(0, dpos);
}
var rgx = /(\d+)(\d{3})/;
while (rgx.test(nStr)) {
nStr = nStr.replace(rgx, '$1' + sep + '$2');
}
return nStr + nStrEnd;
}
function toFormattedNF()
{	
var pos;
var nNum = this.num; 
var nStr;            
var splitString = new Array(2);   
if (this.roundToPlaces) {
nNum = this.getRounded(nNum);
nStr = this.preserveZeros(Math.abs(nNum)); 
} else {
nStr = this.expandExponential(Math.abs(nNum)); 
}
if (this.hasSeparators) {
nStr = this.addSeparators(nStr, this.PERIOD, this.decimalValue, this.separatorValue);
} else {
nStr = nStr.replace(new RegExp('\\' + this.PERIOD), this.decimalValue); 
}
var c0 = '';
var n0 = '';
var c1 = '';
var n1 = '';
var n2 = '';
var c2 = '';
var n3 = '';
var c3 = '';
var negSignL = (this.negativeFormat == this.PARENTHESIS) ? this.LEFT_PAREN : this.DASH;
var negSignR = (this.negativeFormat == this.PARENTHESIS) ? this.RIGHT_PAREN : this.DASH;
if (this.currencyPosition == this.LEFT_OUTSIDE) {
if (nNum < 0) {
if (this.negativeFormat == this.LEFT_DASH || this.negativeFormat == this.PARENTHESIS) n1 = negSignL;
if (this.negativeFormat == this.RIGHT_DASH || this.negativeFormat == this.PARENTHESIS) n2 = negSignR;
}
if (this.hasCurrency) c0 = this.currencyValue;
} else if (this.currencyPosition == this.LEFT_INSIDE) {
if (nNum < 0) {
if (this.negativeFormat == this.LEFT_DASH || this.negativeFormat == this.PARENTHESIS) n0 = negSignL;
if (this.negativeFormat == this.RIGHT_DASH || this.negativeFormat == this.PARENTHESIS) n3 = negSignR;
}
if (this.hasCurrency) c1 = this.currencyValue;
}
else if (this.currencyPosition == this.RIGHT_INSIDE) {
if (nNum < 0) {
if (this.negativeFormat == this.LEFT_DASH || this.negativeFormat == this.PARENTHESIS) n0 = negSignL;
if (this.negativeFormat == this.RIGHT_DASH || this.negativeFormat == this.PARENTHESIS) n3 = negSignR;
}
if (this.hasCurrency) c2 = this.currencyValue;
}
else if (this.currencyPosition == this.RIGHT_OUTSIDE) {
if (nNum < 0) {
if (this.negativeFormat == this.LEFT_DASH || this.negativeFormat == this.PARENTHESIS) n1 = negSignL;
if (this.negativeFormat == this.RIGHT_DASH || this.negativeFormat == this.PARENTHESIS) n2 = negSignR;
}
if (this.hasCurrency) c3 = this.currencyValue;
}
nStr = c0 + n0 + c1 + n1 + nStr + n2 + c2 + n3 + c3;
if (this.negativeRed && nNum < 0) {
nStr = '<font color="red">' + nStr + '</font>';
}
return (nStr);
}
function toPercentageNF()
{
nNum = this.num * 100;
nNum = this.getRounded(nNum);
return nNum + '%';
}
function getZerosNF(places)
{
var extraZ = '';
var i;
for (i=0; i<places; i++) {
extraZ += '0';
}
return extraZ;
}
function expandExponentialNF(origVal)
{
if (isNaN(origVal)) return origVal;
var newVal = parseFloat(origVal) + ''; 
var eLoc = newVal.toLowerCase().indexOf('e');
if (eLoc != -1) {
var plusLoc = newVal.toLowerCase().indexOf('+');
var negLoc = newVal.toLowerCase().indexOf('-', eLoc); 
var justNumber = newVal.substring(0, eLoc);
if (negLoc != -1) {
var places = newVal.substring(negLoc + 1, newVal.length);
justNumber = this.moveDecimalAsString(justNumber, true, parseInt(places));
} else {
if (plusLoc == -1) plusLoc = eLoc;
var places = newVal.substring(plusLoc + 1, newVal.length);
justNumber = this.moveDecimalAsString(justNumber, false, parseInt(places));
}
newVal = justNumber;
}
return newVal;
} 
function moveDecimalRightNF(val, places)
{
var newVal = '';
if (places == null) {
newVal = this.moveDecimal(val, false);
} else {
newVal = this.moveDecimal(val, false, places);
}
return newVal;
}
function moveDecimalLeftNF(val, places)
{
var newVal = '';
if (places == null) {
newVal = this.moveDecimal(val, true);
} else {
newVal = this.moveDecimal(val, true, places);
}
return newVal;
}
function moveDecimalAsStringNF(val, left, places)
{
var spaces = (arguments.length < 3) ? this.places : places;
if (spaces <= 0) return val; 
var newVal = val + '';
var extraZ = this.getZeros(spaces);
var re1 = new RegExp('([0-9.]+)');
if (left) {
newVal = newVal.replace(re1, extraZ + '$1');
var re2 = new RegExp('(-?)([0-9]*)([0-9]{' + spaces + '})(\\.?)');		
newVal = newVal.replace(re2, '$1$2.$3');
} else {
var reArray = re1.exec(newVal); 
if (reArray != null) {
newVal = newVal.substring(0,reArray.index) + reArray[1] + extraZ + newVal.substring(reArray.index + reArray[0].length); 
}
var re2 = new RegExp('(-?)([0-9]*)(\\.?)([0-9]{' + spaces + '})');
newVal = newVal.replace(re2, '$1$2$4.');
}
newVal = newVal.replace(/\.$/, ''); 
return newVal;
}
function moveDecimalNF(val, left, places)
{
var newVal = '';
if (places == null) {
newVal = this.moveDecimalAsString(val, left);
} else {
newVal = this.moveDecimalAsString(val, left, places);
}
return parseFloat(newVal);
}
function getRoundedNF(val)
{
val = this.moveDecimalRight(val);
if (this.truncate) {
val = val >= 0 ? Math.floor(val) : Math.ceil(val); 
} else {
val = Math.round(val);
}
val = this.moveDecimalLeft(val);
return val;
}
function preserveZerosNF(val)
{
var i;
val = this.expandExponential(val);
if (this.places <= 0) return val; 
var decimalPos = val.indexOf('.');
if (decimalPos == -1) {
val += '.';
for (i=0; i<this.places; i++) {
val += '0';
}
} else {
var actualDecimals = (val.length - 1) - decimalPos;
var difference = this.places - actualDecimals;
for (i=0; i<difference; i++) {
val += '0';
}
}
return val;
}
function justNumberNF(val)
{
newVal = val + '';
var isPercentage = false;
if (newVal.indexOf('%') != -1) {
newVal = newVal.replace(/\%/g, '');
isPercentage = true; 
}
var re = new RegExp('[^\\' + this.inputDecimalValue + '\\d\\-\\+\\(\\)eE]', 'g');	
newVal = newVal.replace(re, '');
var tempRe = new RegExp('[' + this.inputDecimalValue + ']', 'g');
var treArray = tempRe.exec(newVal); 
if (treArray != null) {
var tempRight = newVal.substring(treArray.index + treArray[0].length); 
newVal = newVal.substring(0,treArray.index) + this.PERIOD + tempRight.replace(tempRe, ''); 
}
if (newVal.charAt(newVal.length - 1) == this.DASH ) {
newVal = newVal.substring(0, newVal.length - 1);
newVal = '-' + newVal;
}
else if (newVal.charAt(0) == this.LEFT_PAREN
&& newVal.charAt(newVal.length - 1) == this.RIGHT_PAREN) {
newVal = newVal.substring(1, newVal.length - 1);
newVal = '-' + newVal;
}
newVal = parseFloat(newVal);
if (!isFinite(newVal)) {
newVal = 0;
}
if (isPercentage) {
newVal = this.moveDecimalLeft(newVal, 2);
}
return newVal;
}


/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);

/*
 * jQuery.SerialScroll - Animated scrolling of series
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 06/14/2009
 * @author Ariel Flesler
 * @version 1.2.2
 * http://flesler.blogspot.com/2008/02/jqueryserialscroll.html
 */
;(function(a){var b=a.serialScroll=function(c){return a(window).serialScroll(c)};b.defaults={duration:1e3,axis:"x",event:"click",start:0,step:1,lock:!0,cycle:!0,constant:!0};a.fn.serialScroll=function(c){return this.each(function(){var t=a.extend({},b.defaults,c),s=t.event,i=t.step,r=t.lazy,e=t.target?this:document,u=a(t.target||this,e),p=u[0],m=t.items,h=t.start,g=t.interval,k=t.navigation,l;if(!r){m=d()}if(t.force){f({},h)}a(t.prev||[],e).bind(s,-i,q);a(t.next||[],e).bind(s,i,q);if(!p.ssbound){u.bind("prev.serialScroll",-i,q).bind("next.serialScroll",i,q).bind("goto.serialScroll",f)}if(g){u.bind("start.serialScroll",function(v){if(!g){o();g=!0;n()}}).bind("stop.serialScroll",function(){o();g=!1})}u.bind("notify.serialScroll",function(x,w){var v=j(w);if(v>-1){h=v}});p.ssbound=!0;if(t.jump){(r?u:d()).bind(s,function(v){f(v,j(v.target))})}if(k){k=a(k,e).bind(s,function(v){v.data=Math.round(d().length/k.length)*k.index(this);f(v,this)})}function q(v){v.data+=h;f(v,this)}function f(B,z){if(!isNaN(z)){B.data=z;z=p}var C=B.data,v,D=B.type,A=t.exclude?d().slice(0,-t.exclude):d(),y=A.length,w=A[C],x=t.duration;if(D){B.preventDefault()}if(g){o();l=setTimeout(n,t.interval)}if(!w){v=C<0?0:y-1;if(h!=v){C=v}else{if(!t.cycle){return}else{C=y-v-1}}w=A[C]}if(!w||t.lock&&u.is(":animated")||D&&t.onBefore&&t.onBefore(B,w,u,d(),C)===!1){return}if(t.stop){u.queue("fx",[]).stop()}if(t.constant){x=Math.abs(x/i*(h-C))}u.scrollTo(w,x,t).trigger("notify.serialScroll",[C])}function n(){u.trigger("next.serialScroll")}function o(){clearTimeout(l)}function d(){return a(m,p)}function j(w){if(!isNaN(w)){return w}var x=d(),v;while((v=x.index(w))==-1&&w!=p){w=w.parentNode}return v}})}})(jQuery);

/*
 * jQuery Cycle Plugin (core logic only)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.65 (07-APR-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
;(function($){var ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length==0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options,o);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingOp=($.browser.opera&&this.cycleW==42&&this.cycleH==19&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){var tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<a href="#">'+(i+1)+"</a>";if(!a){return;}var $a=$(a);if($a.parents("body").length==0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);

/**
 * jQuery.timers - Timer abstractions for jQuery
 * Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
 * Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
 * Date: 2009/10/16
 *
 * @author Blair Mitchelmore
 * @version 1.2
 *
 **/

jQuery.fn.extend({
	everyTime: function(interval, label, fn, times) {
		return this.each(function() {
			jQuery.timer.add(this, interval, label, fn, times);
		});
	},
	oneTime: function(interval, label, fn) {
		return this.each(function() {
			jQuery.timer.add(this, interval, label, fn, 1);
		});
	},
	stopTime: function(label, fn) {
		return this.each(function() {
			jQuery.timer.remove(this, label, fn);
		});
	}
});

jQuery.extend({
	timer: {
		global: [],
		guid: 1,
		dataKey: "jQuery.timer",
		regex: /^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,
		powers: {
			// Yeah this is major overkill...
			'ms': 1,
			'cs': 10,
			'ds': 100,
			's': 1000,
			'das': 10000,
			'hs': 100000,
			'ks': 1000000
		},
		timeParse: function(value) {
			if (value == undefined || value == null)
				return null;
			var result = this.regex.exec(jQuery.trim(value.toString()));
			if (result[2]) {
				var num = parseFloat(result[1]);
				var mult = this.powers[result[2]] || 1;
				return num * mult;
			} else {
				return value;
			}
		},
		add: function(element, interval, label, fn, times) {
			var counter = 0;
			
			if (jQuery.isFunction(label)) {
				if (!times) 
					times = fn;
				fn = label;
				label = interval;
			}
			
			interval = jQuery.timer.timeParse(interval);

			if (typeof interval != 'number' || isNaN(interval) || interval < 0)
				return;

			if (typeof times != 'number' || isNaN(times) || times < 0) 
				times = 0;
			
			times = times || 0;
			
			var timers = jQuery.data(element, this.dataKey) || jQuery.data(element, this.dataKey, {});
			
			if (!timers[label])
				timers[label] = {};
			
			fn.timerID = fn.timerID || this.guid++;
			
			var handler = function() {
				if ((++counter > times && times !== 0) || fn.call(element, counter) === false)
					jQuery.timer.remove(element, label, fn);
			};
			
			handler.timerID = fn.timerID;
			
			if (!timers[label][fn.timerID])
				timers[label][fn.timerID] = window.setInterval(handler,interval);
			
			this.global.push( element );
			
		},
		remove: function(element, label, fn) {
			var timers = jQuery.data(element, this.dataKey), ret;
			
			if ( timers ) {
				
				if (!label) {
					for ( label in timers )
						this.remove(element, label, fn);
				} else if ( timers[label] ) {
					if ( fn ) {
						if ( fn.timerID ) {
							window.clearInterval(timers[label][fn.timerID]);
							delete timers[label][fn.timerID];
						}
					} else {
						for ( var fn in timers[label] ) {
							window.clearInterval(timers[label][fn]);
							delete timers[label][fn];
						}
					}
					
					for ( ret in timers[label] ) break;
					if ( !ret ) {
						ret = null;
						delete timers[label];
					}
				}
				
				for ( ret in timers ) break;
				if ( !ret ) 
					jQuery.removeData(element, this.dataKey);
			}
		}
	}
});

jQuery(window).bind("unload", function() {
	jQuery.each(jQuery.timer.global, function(index, item) {
		jQuery.timer.remove(item);
	});
});

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.08
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I-1]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * � 1991 Bigelow & Holmes Inc. Pat. Des. 289,421. All Rights Reserved. �
 * 1990-1991 Type Solutions, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Lucida� is a registered trademark of Bigelow & Holmes Inc.
 */
Cufon.registerFont({"w":219,"face":{"font-family":"Lucida Bright","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 4 6 2 5 5 5 2 3 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-13 -282 340 74.1409","underline-thickness":"17.5781","underline-position":"-26.3672","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":109},"!":{"d":"30,0r0,-35r35,0r0,35r-35,0xm42,-69r-12,-139r0,-52r35,0v2,69,-8,128,-12,191r-11,0","w":95},"\"":{"d":"34,-191r-12,-87r34,0r-12,87r-10,0xm94,-191r-12,-87r35,0r-12,87r-11,0","w":138},"#":{"d":"34,0r20,-80r-55,0r3,-18r56,0r16,-65r-59,0r4,-17r60,0r20,-80r18,0r-20,80r50,0r21,-80r17,0r-20,80r55,0r-3,17r-56,0r-16,65r59,0r-3,18r-61,0r-20,80r-18,0r21,-80r-51,0r-20,80r-18,0xm76,-98r51,0r16,-65r-51,0"},"$":{"d":"183,-73v2,42,-29,67,-66,73r0,22r-10,0r0,-22v-25,0,-49,-5,-73,-15r0,-44r19,0v-3,34,20,52,54,47r0,-106v-38,-24,-65,-35,-65,-81v0,-35,22,-55,65,-62r0,-21r10,0r0,21v20,1,42,5,63,13r0,41r-20,0v4,-31,-13,-43,-43,-42r0,102v34,24,64,27,66,74xm117,-14v48,-12,48,-81,0,-98r0,98xm107,-248v-20,3,-35,20,-35,43v0,18,12,35,35,50r0,-93"},"%":{"d":"6,7r209,-274r22,0r-209,274r-22,0xm114,-195v0,36,-21,65,-55,65v-34,0,-55,-29,-55,-65v0,-36,21,-65,55,-65v34,0,55,29,55,65xm30,-195v0,30,5,54,29,54v24,0,29,-24,29,-54v0,-30,-4,-54,-29,-54v-25,0,-29,24,-29,54xm239,-65v0,36,-21,65,-55,65v-34,0,-56,-30,-56,-65v0,-35,22,-65,56,-65v34,0,55,29,55,65xm155,-65v0,30,4,54,29,54v25,0,29,-24,29,-54v0,-30,-4,-54,-29,-54v-25,0,-29,24,-29,54","w":242},"&":{"d":"251,-127v-25,3,-29,-7,-28,17v0,19,-10,42,-32,69v19,15,19,33,58,30r0,11r-66,0r-17,-18v-62,50,-158,19,-159,-59v0,-39,21,-65,65,-79v-38,-48,-19,-110,41,-111v36,-1,62,19,62,52v0,29,-20,51,-59,65r67,100v10,-15,16,-34,16,-56v1,-24,-5,-19,-30,-21r0,-11r82,0r0,11xm77,-147v-63,30,-36,138,34,134v16,0,33,-5,48,-14v-32,-41,-59,-82,-82,-120xm110,-159v21,-15,32,-35,32,-61v0,-24,-9,-36,-27,-36v-47,0,-24,70,-5,97","w":248},"'":{"d":"38,-182r-16,-96r43,0r-16,96r-11,0","w":86},"(":{"d":"99,-267v-65,60,-65,248,0,308r0,11v-72,-38,-108,-171,-59,-262v16,-30,35,-53,59,-68r0,11","w":113},")":{"d":"15,41v65,-60,65,-248,0,-308r0,-11v71,38,108,171,59,262v-16,29,-35,53,-59,68r0,-11","w":113},"*":{"d":"96,-202r50,-23r8,24r-54,11v0,-6,0,-8,-4,-12xm98,-184r37,40r-21,15r-26,-48v5,-1,8,-3,10,-7xm82,-177r-27,48r-21,-15r37,-40v3,4,7,6,11,7xm69,-190r-53,-11r8,-24r49,23v-4,4,-4,6,-4,12xm78,-206r-6,-54r26,0r-7,54v-4,-3,-9,-2,-13,0","w":169},"+":{"d":"100,-9r0,-85r-86,0r0,-20r86,0r0,-86r19,0r0,86r86,0r0,20r-86,0r0,85r-19,0"},",":{"d":"43,0r-17,0r0,-43r43,0v2,48,5,96,-43,99r0,-10v15,1,18,-23,17,-46","w":95},"-":{"d":"17,-94r0,-26r83,0r0,26r-83,0","w":117},".":{"d":"26,0r0,-43r43,0r0,43r-43,0","w":95},"\/":{"d":"1,52r162,-330r21,0r-162,330r-21,0","w":184},"0":{"d":"110,-267v123,0,123,275,0,274v-63,-1,-92,-65,-92,-136v0,-73,28,-138,92,-138xm109,-256v-69,-5,-61,169,-40,220v9,21,24,32,41,32v46,0,54,-58,54,-126v0,-70,-7,-123,-55,-126"},"1":{"d":"92,-211v7,-40,-22,-29,-50,-24r0,-11r85,-16r0,216v-4,45,18,33,50,35r0,11r-135,0r0,-11v33,-2,50,11,50,-35r0,-165"},"2":{"d":"34,-251v62,-32,147,-16,150,54v3,66,-127,101,-127,167r126,0r0,30r-155,0v2,-98,114,-106,119,-197v3,-52,-52,-76,-88,-46v-5,1,-6,23,-8,39r-17,0r0,-47"},"3":{"d":"184,-71v3,73,-86,91,-151,69r0,-46r17,0v-4,33,20,44,47,44v33,0,50,-30,50,-66v1,-49,-36,-68,-91,-63r0,-11v53,1,86,-10,86,-59v0,-34,-14,-55,-47,-53v-25,1,-47,2,-43,39r-18,0r0,-40v53,-20,144,-14,142,50v-1,37,-24,55,-55,66v39,11,62,26,63,70"},"4":{"d":"93,-11v48,7,35,-21,37,-63r-119,0r0,-17r130,-174r19,0r0,165r35,0r0,26r-35,0v2,36,-11,69,33,63r0,11r-100,0r0,-11xm30,-100r100,0r0,-132"},"5":{"d":"182,-74v1,70,-73,94,-141,75r0,-44r18,0v-1,29,6,39,34,39v36,0,54,-32,53,-71v-2,-59,-34,-68,-100,-69r0,-116r131,0r0,30r-121,0r0,73v74,-2,125,16,126,83"},"6":{"d":"166,-214v4,-59,-74,-50,-91,-10v-9,22,-16,52,-16,91v33,-61,139,-33,139,48v0,50,-37,93,-85,92v-65,-2,-91,-59,-91,-133v0,-105,69,-169,162,-129r0,41r-18,0xm116,-155v-34,-1,-56,25,-56,58v0,46,18,92,58,92v34,0,47,-35,46,-76v0,-41,-12,-73,-48,-74"},"7":{"d":"203,-237v-58,82,-101,136,-112,237r-42,0v23,-103,73,-136,134,-228r-147,0r0,-32r167,0r0,23"},"8":{"d":"107,7v-45,0,-85,-27,-85,-70v0,-35,18,-61,53,-77v-69,-36,-40,-127,37,-127v40,0,72,20,73,57v0,27,-18,49,-52,67v41,18,63,43,63,76v1,45,-42,74,-89,74xm109,-256v-37,-1,-59,49,-32,75v8,8,23,19,47,32v42,-24,44,-106,-15,-107xm109,-4v41,0,68,-52,41,-85v-11,-13,-46,-32,-67,-44v-40,31,-37,129,26,129"},"9":{"d":"53,-47v-5,60,73,52,90,10v9,-22,17,-51,17,-90v-34,61,-139,33,-139,-48v0,-50,37,-93,85,-92v65,2,91,59,91,133v0,105,-69,169,-162,129r0,-42r18,0xm103,-105v34,2,56,-25,56,-58v0,-46,-19,-93,-58,-93v-35,0,-46,36,-46,77v0,41,13,72,48,74"},":":{"d":"26,0r0,-43r43,0r0,43r-43,0xm26,-147r0,-44r43,0r0,44r-43,0","w":95},";":{"d":"43,0r-17,0r0,-43r43,0v2,48,5,96,-43,99r0,-10v15,1,18,-23,17,-46xm26,-147r0,-44r43,0r0,44r-43,0","w":95},"<":{"d":"205,-200r0,21r-149,75r149,74r0,21r-191,-95"},"=":{"d":"14,-64r0,-19r191,0r0,19r-191,0xm14,-125r0,-19r191,0r0,19r-191,0"},">":{"d":"14,-9r0,-21r149,-74r-149,-75r0,-21r191,96"},"?":{"d":"54,0r0,-35r35,0r0,35r-35,0xm16,-255v54,-23,136,-15,140,46v2,26,-34,55,-54,72v-13,10,-14,41,-13,68r-35,0v-7,-59,65,-86,65,-139v0,-32,-15,-48,-46,-48v-30,0,-42,8,-40,49r-17,0r0,-48","w":172},"@":{"d":"27,-104v0,79,89,125,163,86r4,10v-80,41,-178,-8,-178,-94v0,-84,80,-165,166,-165v64,0,116,48,116,111v0,51,-40,105,-88,104v-37,0,-31,-26,-23,-60r-3,0v-19,29,-34,57,-68,60v-24,2,-33,-15,-33,-41v1,-61,57,-137,126,-106r17,0r-22,118v0,10,6,16,17,16v35,0,66,-54,66,-93v0,-56,-50,-98,-107,-98v-74,0,-153,77,-153,152xm109,-101v0,34,27,32,45,10v14,-18,39,-52,42,-90v-51,-29,-87,25,-87,80","w":314},"A":{"d":"66,-80v-7,16,-23,47,-24,62v-1,6,12,7,26,7r0,11r-68,0v1,-4,-3,-13,4,-11v30,-2,19,-5,32,-35r92,-217r12,0r92,219v14,25,7,32,36,33r0,11r-97,0v1,-4,-3,-13,4,-11v35,2,26,-14,17,-35r-15,-34r-111,0xm72,-94r99,0r-50,-119","w":267},"B":{"d":"188,-202v-1,37,-27,55,-59,67v39,7,68,29,70,70v2,84,-109,62,-191,65v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169v0,-34,-2,-31,-32,-34r0,-11v75,3,182,-20,180,58xm107,-12v31,2,53,-22,53,-52v0,-43,-28,-65,-84,-65r0,83v0,35,4,33,31,34xm150,-199v1,-44,-28,-49,-74,-49r0,107v48,3,74,-15,74,-58"},"C":{"d":"57,-131v0,102,90,150,173,100r0,17v-24,14,-52,21,-83,21v-81,0,-129,-56,-129,-138v0,-115,95,-162,207,-123r0,50v-11,0,-27,5,-22,-14v0,-26,-30,-38,-60,-37v-58,2,-86,57,-86,124","w":250},"D":{"d":"257,-136v0,82,-45,137,-125,136r-124,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169v0,-34,-2,-31,-32,-34r0,-11r123,-1v81,-1,126,45,126,125xm218,-131v0,-93,-45,-123,-141,-117r0,202v-1,38,8,34,42,34v70,0,99,-45,99,-119","w":276},"E":{"d":"77,-46v-12,50,60,27,93,28v4,0,4,-19,6,-30r19,0r0,48r-187,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169v0,-34,-2,-31,-32,-34r0,-11r177,0r0,45r-19,0v-4,-35,5,-30,-32,-31r-57,0r0,104v31,-5,77,16,72,-22r14,0r0,58v-6,-1,-15,3,-15,-4v4,-32,-45,-13,-71,-18r0,82","w":203},"F":{"d":"125,-140v25,1,19,-3,24,-22r14,0r0,58v-6,-1,-15,3,-15,-4v4,-33,-44,-12,-71,-18r0,80v-1,33,6,35,37,35r0,11r-106,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169v0,-34,-2,-31,-32,-34r0,-11r175,0r0,45r-19,0v-5,-31,6,-31,-32,-31r-55,0r0,106r48,0","w":197},"G":{"d":"262,-100v-53,-9,-27,53,-33,94v-114,40,-211,-10,-211,-125v0,-83,46,-136,128,-136v30,1,59,6,83,14r0,47r-20,0v5,-39,-25,-49,-61,-49v-64,0,-90,55,-90,126v0,84,51,140,135,115v-5,-39,19,-95,-33,-86r0,-11r102,0r0,11","w":263},"H":{"d":"168,-11v31,-3,34,-1,33,-35r0,-82r-124,0r0,82v0,34,2,33,33,35r0,11r-102,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169v0,-34,-2,-31,-32,-34r0,-11r102,0v-1,4,3,13,-4,11v-52,-7,-21,65,-29,106r124,0v-8,-42,24,-115,-33,-106r0,-11r102,0v-1,4,3,12,-3,11v-29,3,-28,1,-29,34r0,169v0,34,1,32,32,35r0,11r-102,0r0,-11","w":277},"I":{"d":"77,-46v0,34,2,33,33,35r0,11r-102,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169v0,-34,-2,-31,-32,-34r0,-11r102,0v-1,4,3,13,-4,11v-29,3,-28,1,-29,34r0,169","w":117},"J":{"d":"113,-215v-7,116,43,298,-111,264r0,-48r21,0v1,19,-1,39,22,38v29,-1,31,-31,31,-65r0,-189v-3,-37,2,-30,-33,-34r0,-11r102,0v-1,4,3,12,-3,11v-29,3,-27,1,-29,34","w":151},"K":{"d":"110,-249v-30,3,-34,0,-33,34r0,82r79,-82v17,-19,26,-29,26,-31r-29,-3r0,-11r80,0v-1,4,3,12,-3,11v-41,3,-25,3,-57,35r-67,67r91,102v29,27,19,32,58,34r0,11r-106,0v1,-4,-3,-11,3,-11v40,0,20,-12,0,-35r-75,-85r0,85v2,32,-1,33,28,35r0,11r-97,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169v0,-34,-2,-31,-32,-34r0,-11r102,0r0,11","w":254},"L":{"d":"134,-15v44,2,37,0,42,-37r18,0r0,52r-186,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169v0,-34,-2,-31,-32,-34r0,-11r102,0v-1,4,3,13,-4,11v-29,3,-28,1,-29,34r0,169v-6,43,19,29,57,31","w":200},"M":{"d":"40,-215v0,-34,-2,-31,-32,-34r0,-11r74,0r78,189r77,-189r65,0v-1,4,3,12,-3,11v-30,4,-29,1,-30,34r0,169v0,34,2,32,33,35r0,11r-99,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-178r-82,203r-13,0r-81,-206r0,181v0,34,2,32,33,35r0,11r-84,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169","w":309},"N":{"d":"263,-249v-30,3,-34,0,-33,34r0,219r-12,0r-161,-218r0,168v-1,35,1,32,32,35r0,11r-81,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169v0,-34,-2,-31,-32,-34r0,-11r58,0r148,202r0,-157v0,-34,-2,-31,-32,-34r0,-11r81,0r0,11","w":270},"O":{"d":"261,-130v0,81,-44,137,-121,137v-77,0,-122,-57,-122,-137v0,-81,45,-137,122,-137v77,0,121,56,121,137xm57,-130v0,68,24,125,83,125v59,0,82,-58,82,-125v0,-67,-23,-125,-82,-125v-59,0,-83,57,-83,125","w":279},"P":{"d":"199,-193v-4,65,-49,87,-122,85v7,42,-23,108,37,97r0,11r-106,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169v0,-34,-2,-31,-32,-34r0,-11v81,2,196,-22,191,67xm160,-192v0,-50,-31,-59,-83,-56r0,128v54,3,83,-20,83,-72","w":206},"Q":{"d":"262,-132v0,71,-27,114,-81,132v28,16,71,27,130,31r-44,21v-30,-9,-64,-25,-102,-48v-90,16,-147,-46,-147,-134v0,-81,45,-137,122,-137v76,0,123,56,122,135xm140,-5v59,0,83,-57,83,-125v0,-68,-24,-125,-83,-125v-59,0,-82,57,-82,125v0,68,22,125,82,125","w":280},"R":{"d":"40,-215v0,-34,-2,-31,-32,-34r0,-11v79,1,189,-19,189,64v0,36,-18,61,-54,73r51,77v21,26,14,34,50,35r0,11r-66,0r-71,-114r-30,0v8,40,-22,110,28,103r0,11r-97,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-169xm159,-192v0,-52,-31,-58,-82,-56r0,122v53,3,82,-18,82,-66","w":244},"S":{"d":"179,-69v0,74,-96,91,-158,64r0,-50v12,-1,23,-2,19,16v0,23,31,32,53,32v44,0,61,-48,41,-81v-27,-29,-119,-63,-111,-109v-2,-68,81,-83,141,-59r0,47v-6,-1,-18,3,-20,-3v3,-32,-12,-43,-44,-43v-36,0,-55,46,-34,74v30,40,113,46,113,112","w":195},"T":{"d":"64,-11v32,-2,37,1,37,-35r0,-200v-38,4,-83,-17,-75,33r-18,0r0,-47r223,0r0,47v-6,-1,-18,3,-19,-3r0,-16v0,-27,-45,-9,-74,-14r0,200v-1,36,4,33,37,35r0,11r-111,0r0,-11","w":238},"U":{"d":"35,-215v0,-34,-2,-31,-32,-34r0,-11r102,0v-1,4,3,12,-3,11v-29,3,-29,1,-29,34v0,87,-29,216,63,210v51,-3,69,-28,69,-91r0,-119v0,-34,-2,-31,-33,-34r0,-11r83,0v-1,4,3,12,-3,11v-29,3,-28,1,-29,34r0,109v4,77,-24,113,-91,113v-64,0,-97,-35,-97,-104r0,-118","w":258},"V":{"d":"123,3r-89,-217v-16,-27,-5,-33,-34,-35r0,-11r94,0v-1,4,3,12,-3,11v-42,1,-30,4,-17,35r67,164r73,-192v0,-5,-9,-7,-26,-7v-7,2,-3,-7,-4,-11r68,0v-1,4,3,13,-4,11v-25,3,-18,6,-29,35r-84,217r-12,0","w":251},"W":{"d":"93,-249v-32,-2,-32,4,-24,35r38,152r60,-195r12,0r60,200r53,-186v0,-4,-9,-6,-27,-6v-7,2,-3,-7,-4,-11r72,0v-1,4,3,12,-3,11v-35,2,-22,0,-32,35r-64,217r-12,0r-61,-200r-60,200r-12,0r-66,-249v-1,-2,-13,-3,-23,-3r0,-11r93,0r0,11","w":332},"X":{"d":"99,-128r-51,-87v-23,-30,-7,-33,-44,-34r0,-11r101,0v-1,4,3,11,-3,11v-43,0,-27,7,-11,34r38,64v17,-27,50,-67,61,-94v0,-3,-7,-4,-20,-4v-6,1,-2,-7,-3,-11r65,0v-1,4,3,13,-4,11v-26,3,-20,6,-39,34r-50,72r76,128v2,2,11,4,21,4r0,11r-97,0v1,-4,-3,-12,3,-11v41,-2,28,-6,11,-35r-43,-73v-20,30,-53,71,-67,102v0,4,8,6,25,6v7,-2,3,7,4,11r-72,0v1,-3,-2,-11,2,-11v34,-3,21,-3,42,-35","w":236},"Y":{"d":"69,-11v57,9,25,-63,33,-104r-80,-131v0,-1,-13,-4,-22,-3r0,-11r101,0v-1,4,3,13,-4,11v-41,1,-27,8,-11,35r49,83v20,-34,52,-77,66,-112v0,-4,-8,-6,-24,-6v-7,2,-3,-7,-4,-11r71,0v-1,4,3,12,-3,11v-34,2,-21,3,-41,35r-61,99v8,41,-23,113,32,104r0,11r-102,0r0,-11","w":243},"Z":{"d":"141,-16v45,1,37,1,42,-34r19,0r0,50r-182,0r0,-14r140,-232r-79,0v-35,-3,-37,5,-35,38r-20,0r0,-52r175,0r0,12r-139,232r79,0","w":227},"[":{"d":"30,52r0,-330r70,0r0,11r-39,0r0,308r39,0r0,11r-70,0","w":113},"\\":{"d":"162,52r-161,-330r21,0r161,330r-21,0","w":184},"]":{"d":"83,-278r0,330r-69,0r0,-11r39,0r0,-308r-39,0r0,-11r69,0","w":113},"^":{"d":"14,-69r96,-191r95,191r-22,0r-73,-146r-74,146r-22,0"},"_":{"d":"17,23r0,-23r146,0r0,23r-146,0","w":180},"`":{"d":"65,-278r40,0r38,52r-17,0","w":216},"a":{"d":"162,-53v0,28,3,47,27,40r1,13v-27,10,-49,3,-55,-26v-38,47,-117,38,-117,-24v0,-51,46,-64,109,-63v2,-36,-2,-71,-34,-69v-22,2,-38,11,-37,38r-24,0r0,-35v51,-26,130,-26,130,41r0,85xm54,-54v0,38,44,50,73,24r0,-72v-41,-1,-73,13,-73,48","w":195},"b":{"d":"120,4v-28,1,-43,-13,-59,-26r-5,24r-28,0r0,-234v1,-35,-4,-30,-32,-35r0,-11r67,0r0,123v16,-22,34,-40,67,-40v48,0,71,43,71,94v0,58,-28,105,-81,105xm117,-173v-25,0,-41,13,-54,30r0,108v15,12,32,20,53,20v38,0,48,-33,48,-77v0,-45,-10,-81,-47,-81","w":220},"c":{"d":"54,-99v0,69,52,104,111,77r0,15v-74,33,-148,-10,-148,-89v0,-80,66,-118,148,-91r0,46r-22,0v1,-27,-11,-43,-35,-43v-39,1,-54,40,-54,85","w":183},"d":{"d":"192,-46v0,34,1,32,32,35r0,11r-67,0r0,-36v-14,23,-34,40,-67,40v-47,0,-70,-42,-70,-94v0,-58,28,-104,80,-105v26,0,44,10,57,26r0,-63v1,-35,-3,-31,-32,-35r0,-11r67,0r0,232xm103,-18v26,0,40,-13,54,-30r0,-108v-15,-12,-31,-20,-53,-20v-38,0,-48,33,-48,77v0,45,9,81,47,81","w":230},"e":{"d":"56,-103v0,53,15,88,61,90v21,0,40,-4,55,-13r0,17v-77,37,-155,-7,-155,-88v0,-54,33,-98,84,-98v51,0,72,37,71,92r-116,0xm136,-114v0,-39,-3,-70,-37,-70v-30,1,-44,35,-43,70r80,0","w":190},"f":{"d":"11,-11v30,-2,32,-1,32,-35r0,-130r-28,0r0,-15r28,0v-1,-55,9,-91,60,-91v16,0,32,4,47,13r0,41r-22,0v0,-23,0,-43,-26,-43v-32,0,-22,45,-24,80r48,0r0,14r-48,0r0,131v-1,36,4,32,37,35r0,11r-104,0r0,-11","w":145},"g":{"d":"11,33v3,-22,18,-31,39,-40v-36,-15,-15,-51,13,-60v-23,-11,-38,-29,-39,-61v-2,-54,58,-81,109,-60r67,-5r-9,21r-46,-7v53,46,5,141,-72,115v-15,8,-22,34,9,34v53,0,107,-8,107,43v0,42,-45,62,-91,61v-40,-1,-83,-10,-87,-41xm96,-184v-29,0,-37,23,-37,55v0,33,8,57,37,57v29,0,37,-24,37,-57v0,-37,-13,-55,-37,-55xm100,63v52,11,83,-70,19,-67r-60,0v-28,26,-8,76,41,67","w":205},"h":{"d":"39,-232v1,-35,-4,-30,-32,-35r0,-11r67,0r0,123v16,-23,35,-40,69,-40v66,-1,50,85,52,149v1,36,-2,32,33,35r0,11r-100,0v1,-4,-3,-12,3,-11v33,-3,25,0,29,-35v-6,-45,20,-127,-29,-127v-23,0,-40,15,-57,30r0,97v0,34,1,32,32,35r0,11r-99,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-186","w":227},"i":{"d":"39,-145v0,-34,-1,-32,-32,-35r0,-11r67,0r0,145v0,34,1,32,32,35r0,11r-99,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-99xm39,-226r0,-34r35,0r0,34r-35,0","w":110},"j":{"d":"55,-145v1,-35,-1,-32,-32,-35r0,-11r67,0r0,189v4,64,-45,90,-103,69r0,-43r20,0v0,23,1,39,22,39v28,0,26,-15,26,-49r0,-159xm55,-226r0,-34r35,0r0,34r-35,0","w":124},"k":{"d":"39,-232v1,-35,-4,-30,-32,-35r0,-11r67,0r0,176r8,0r73,-74v-1,-5,-18,-4,-27,-4r0,-11r74,0v-1,4,3,12,-3,11v-38,4,-26,4,-57,35r-33,33r57,68v26,24,17,30,50,33r0,11r-54,0r-80,-94r-8,0v6,36,-18,91,28,83r0,11r-95,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-186","w":215},"l":{"d":"39,-232v1,-35,-4,-30,-32,-35r0,-11r67,0r0,232v0,34,1,32,32,35r0,11r-99,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-186","w":112},"m":{"d":"39,-145v0,-34,-1,-32,-32,-35r0,-11r67,0r0,36v17,-21,34,-39,66,-40v29,0,45,15,49,40v18,-21,37,-38,68,-40v68,-4,51,86,51,149v0,34,1,32,32,35r0,11r-99,0v1,-4,-3,-12,3,-11v30,-3,29,-2,29,-35v0,-45,20,-127,-27,-127v-23,0,-39,15,-55,30r0,97v0,34,1,32,32,35r0,11r-99,0v1,-4,-3,-12,3,-11v30,-3,29,-2,29,-35v0,-44,19,-127,-26,-127v-25,0,-40,14,-56,30r0,97v0,34,1,32,32,35r0,11r-99,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-99","w":340},"n":{"d":"39,-145v0,-34,-1,-32,-32,-35r0,-11r67,0r0,36v16,-23,35,-40,69,-40v66,-1,50,85,52,149v1,36,-2,32,33,35r0,11r-100,0v1,-4,-3,-12,3,-11v33,-3,25,0,29,-35v-6,-45,20,-127,-29,-127v-23,0,-40,15,-57,30r0,97v0,34,1,32,32,35r0,11r-99,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-99","w":227},"o":{"d":"200,-95v0,59,-34,99,-92,99v-58,0,-91,-41,-91,-99v0,-59,34,-100,91,-100v58,0,92,41,92,100xm108,-184v-71,5,-73,172,0,177v74,-4,74,-173,0,-177","w":216},"p":{"d":"131,4v-26,0,-44,-10,-57,-26r0,46v-1,35,4,30,32,35r0,10r-99,0r0,-10v27,-5,32,0,32,-35r0,-169v0,-34,-1,-32,-32,-35r0,-11r67,0r0,36v15,-23,33,-40,67,-40v47,0,70,42,70,94v0,58,-28,105,-80,105xm128,-173v-25,0,-41,13,-54,30r0,108v15,12,32,20,53,20v38,0,48,-33,48,-77v0,-45,-10,-81,-47,-81","w":230},"q":{"d":"125,59v27,-5,32,0,32,-35r0,-60v-14,23,-34,40,-67,40v-47,0,-70,-42,-70,-94v0,-58,28,-104,80,-105v26,0,44,10,57,26r0,-22r35,0r0,215v-1,35,4,30,32,35r0,10r-99,0r0,-10xm103,-18v25,0,42,-13,54,-30r0,-108v-15,-12,-31,-20,-53,-20v-38,0,-48,33,-48,77v0,45,9,81,47,81","w":222},"r":{"d":"128,-141v-2,-17,1,-26,-12,-26v-17,0,-31,9,-42,28r0,93v-1,36,4,33,37,35r0,11r-104,0v1,-4,-3,-12,3,-11v30,-3,28,-2,29,-35r0,-99v0,-34,-1,-32,-32,-35r0,-11r67,0r0,36v18,-30,40,-45,73,-38r0,52r-19,0","w":158},"s":{"d":"115,-106v78,19,49,110,-26,110v-23,0,-44,-5,-65,-14r0,-48r20,0v-2,44,17,47,48,51v30,3,46,-32,30,-55v-30,-25,-98,-26,-97,-80v2,-54,75,-64,124,-42r0,45r-19,0v1,-32,-10,-44,-36,-46v-28,-2,-48,34,-28,55v6,7,34,17,49,24","w":181},"t":{"d":"78,-55v-3,37,18,54,49,40r0,14v-47,16,-84,-6,-84,-59r0,-117r-28,0r0,-14r28,0r0,-35r35,-8r0,43r53,0r0,14r-53,0r0,122","w":140},"u":{"d":"189,-46v3,36,-3,32,32,35r0,11r-67,0r0,-36v-16,23,-35,40,-69,40v-66,2,-52,-85,-52,-149v0,-34,-2,-32,-33,-35r0,-11r67,0r0,129v-5,62,68,47,87,15r0,-98v-3,-36,2,-32,-33,-35r0,-11r68,0r0,145","w":227},"v":{"d":"90,2r-75,-175v-4,-5,-8,-8,-15,-7r0,-11r83,0v-1,4,3,13,-4,11v-35,3,-24,7,-12,36r43,102r55,-130v1,-6,-12,-9,-25,-8r0,-11r56,0v-1,4,3,12,-3,11v-17,5,-14,9,-26,36r-66,146r-11,0","w":196},"w":{"d":"74,2r-58,-175v-4,-5,-8,-8,-16,-7r0,-11r86,0v-1,4,3,13,-4,11v-37,1,-29,8,-21,35r30,95r55,-140r11,0r56,144r35,-99v11,-30,14,-35,-24,-35r0,-11r62,0v-1,4,3,13,-4,11v-13,1,-17,20,-23,35r-51,147r-10,0r-58,-145r-55,145r-11,0","w":286},"x":{"d":"1,0v1,-4,-3,-12,3,-11v30,-10,53,-57,78,-81r-65,-83v-4,-4,-10,-5,-17,-5r0,-11r86,0v-1,4,3,12,-3,11v-38,2,-18,10,0,35r27,37v12,-17,41,-50,44,-67v0,-4,-5,-5,-16,-5v-7,2,-3,-7,-4,-11r61,0v-1,4,3,13,-4,11v-15,1,-29,25,-37,35r-37,46v23,24,53,83,84,88r0,11r-87,0v1,-4,-3,-12,3,-11v40,-1,20,-9,1,-34r-29,-39r-50,68v0,4,7,5,20,5v7,-2,3,7,4,11r-62,0","w":200},"y":{"d":"29,69r63,-69r-74,-174v-4,-5,-10,-6,-18,-6r0,-11r87,0v-1,4,3,13,-4,11v-37,2,-25,6,-13,35r42,103r56,-130v1,-6,-13,-9,-26,-8r0,-11r56,0v-1,4,3,12,-3,11v-13,2,-17,17,-25,35r-97,214r-44,0","w":198},"z":{"d":"135,-13v36,-1,36,3,36,-31r19,0r0,44r-166,0r0,-11r121,-169r-63,0v-35,-2,-34,1,-35,31r-18,0r0,-42r156,0r0,11r-119,167r69,0","w":214},"{":{"d":"46,-176v-18,-55,2,-105,60,-102v0,5,2,13,-5,11v-54,-1,-25,55,-25,93v0,30,-13,50,-39,61v49,15,41,77,30,125v0,21,14,30,39,29v0,5,2,13,-5,11v-53,2,-73,-48,-55,-101v13,-38,3,-60,-37,-58r0,-11v39,2,50,-20,37,-58","w":123},"|":{"d":"31,52r0,-330r24,0r0,330r-24,0","w":86},"}":{"d":"78,-49v17,56,-2,105,-61,101v0,-5,-2,-13,5,-11v55,2,26,-55,25,-93v0,-30,13,-50,39,-61v-48,-15,-41,-78,-29,-124v0,-21,-15,-31,-40,-30v0,-5,-2,-13,5,-11v53,-1,74,47,56,102v-12,38,-3,60,37,58r0,11v-39,-2,-49,19,-37,58","w":123},"~":{"d":"14,-77v4,-56,40,-74,91,-43v32,19,79,51,89,-9r11,0v-6,106,-109,29,-153,16v-13,0,-22,12,-27,36r-11,0"},"\u00a0":{"w":109}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * � 1991 Bigelow & Holmes Inc. Pat. Des. 289,773. All Rights Reserved. �
 * 1990-1991 Type Solutions, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Lucida� is a registered trademark of Bigelow & Holmes Inc.
 */
Cufon.registerFont({"w":219,"face":{"font-family":"Lucida Bright","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 4 6 2 5 5 5 9 3 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-28 -282 375.769 73.8182","underline-thickness":"17.5781","underline-position":"-26.3672","slope":"-11.25","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":109},"!":{"d":"30,0r7,-35r35,0r-7,35r-35,0xm56,-69r16,-139r10,-52r35,0v-11,69,-33,128,-50,191r-11,0","w":95},"\"":{"d":"83,-191r-13,-87r35,0r-11,87r-11,0xm139,-191r-13,-87r35,0r-11,87r-11,0","w":135},"#":{"d":"30,0r38,-80r-43,0r3,-18r48,0r31,-65r-65,0r2,-17r71,0r38,-80r19,0r-38,80r50,0r37,-80r20,0r-38,80r43,0r-3,17r-48,0r-31,65r65,0r-2,18r-71,0r-38,80r-19,0r38,-80r-50,0r-37,80r-20,0xm96,-98r49,0r30,-65r-49,0"},"$":{"d":"203,-206v1,-16,8,-30,-8,-37v-7,-3,-18,-6,-29,-6r-20,102v23,22,54,32,54,70v0,42,-40,75,-83,77r-5,22r-11,0r5,-22v-22,-1,-41,-5,-56,-10r9,-44r17,0v-4,27,-3,39,32,42r22,-110v-24,-21,-48,-29,-48,-67v0,-40,36,-73,76,-72r4,-21r11,0r-5,22v20,1,41,5,61,12r-9,42r-17,0xm119,-12v41,-4,59,-42,45,-80v-4,-6,-12,-13,-25,-23xm155,-248v-45,6,-62,67,-18,93"},"%":{"d":"163,-214v0,43,-28,85,-69,84v-26,0,-44,-19,-44,-46v0,-42,28,-85,68,-84v28,0,45,18,45,46xm118,-250v-25,1,-42,44,-42,75v0,22,7,34,21,34v25,-1,42,-44,42,-74v0,-23,-7,-35,-21,-35xm276,-84v0,43,-28,85,-69,84v-26,-1,-44,-19,-44,-46v-1,-42,29,-84,68,-84v28,0,45,18,45,46xm231,-120v-25,2,-42,44,-42,76v0,22,8,33,22,33v25,-1,42,-44,42,-74v0,-23,-8,-35,-22,-35xm32,7r239,-274r23,0r-239,274r-23,0","w":273},"&":{"d":"225,-118v0,-13,-13,-7,-31,-10r3,-11r88,0v-1,21,-38,2,-39,36v-8,23,-23,44,-43,63v15,21,15,29,50,29r-2,11r-63,0v-6,-5,-9,-13,-14,-19v-56,46,-146,28,-146,-46v0,-42,28,-73,83,-92v-25,-57,12,-109,66,-110v27,-1,48,18,48,44v0,31,-26,57,-77,74v11,31,27,64,48,99v19,-19,29,-42,29,-68xm114,-146v-66,19,-66,129,6,131v18,0,34,-5,49,-15v-23,-38,-42,-76,-55,-116xm172,-255v-40,3,-43,56,-27,96v33,-16,49,-39,49,-68v0,-16,-6,-29,-22,-28","w":261},"'":{"d":"80,-182r-17,-96r43,0r-15,96r-11,0","w":83},"(":{"d":"86,52v-65,-45,-65,-166,-21,-239v22,-36,50,-67,87,-91r-2,11v-59,41,-87,143,-87,232v0,33,8,59,24,76","w":111},")":{"d":"70,-278v65,44,67,166,22,239v-22,36,-50,67,-87,91r2,-11v58,-45,86,-142,87,-231v0,-34,-8,-60,-24,-77r0,-11","w":111},"*":{"d":"60,-149r47,-40v1,3,4,5,8,7r-34,52xm67,-225r44,20v-3,3,-4,7,-4,13r-53,-7xm145,-260r-18,54v-6,-2,-8,-3,-13,0r4,-54r27,0xm188,-197r-55,6v0,-5,0,-7,-3,-12r54,-20xm131,-131r-12,-50v5,0,9,-1,12,-5r26,40","w":164},"+":{"d":"101,-9r17,-85r-85,0r4,-20r85,0r17,-86r20,0r-17,86r86,0r-4,20r-86,0r-17,85r-20,0"},",":{"d":"42,0r-16,0r9,-43r43,0v-7,44,-21,104,-64,99r3,-10v16,3,23,-25,25,-46","w":95},"-":{"d":"34,-95r8,-26r80,0r-8,26r-80,0","w":112},".":{"d":"26,0r9,-43r43,0r-9,43r-43,0","w":95},"\/":{"d":"-10,52r207,-330r23,0r-207,330r-23,0","w":164},"0":{"d":"232,-180v0,85,-48,187,-122,187v-44,0,-71,-40,-71,-87v0,-85,48,-185,121,-187v46,0,72,39,72,87xm158,-256v-56,0,-83,111,-83,187v0,38,9,63,39,65v54,-7,85,-111,82,-185v0,-38,-6,-67,-38,-67"},"1":{"d":"136,-46v-12,36,8,37,41,35r-2,11r-133,0r2,-11v38,-1,49,5,57,-35r37,-188v-4,-15,-33,-1,-49,-1r2,-11r88,-16"},"2":{"d":"85,-250v48,-26,148,-28,146,40v-1,59,-53,77,-94,105v-41,28,-64,51,-64,75r121,0r-8,30r-155,0v5,-81,159,-133,163,-209v3,-49,-53,-58,-84,-35v-5,2,-12,18,-15,34r-18,0"},"3":{"d":"205,-87v1,76,-88,112,-167,86r9,-45r17,0v-9,28,5,42,35,42v39,0,70,-40,69,-81v0,-42,-33,-54,-80,-52r2,-10v56,4,98,-17,98,-67v1,-25,-18,-42,-44,-42v-31,0,-39,16,-42,39r-17,0r8,-42v52,-14,130,-15,129,43v-1,41,-37,65,-74,75v34,5,56,19,57,54"},"4":{"d":"172,-73v-3,26,-27,70,20,62r-2,11r-98,0v-6,-17,31,-10,34,-17v6,-5,12,-40,15,-56r-117,0r4,-19r164,-171r18,0r-33,164r37,0r-8,26r-34,0xm50,-99r97,0r25,-128"},"5":{"d":"207,-92v1,78,-86,117,-165,91r9,-45r18,0v-9,26,4,41,32,41v41,0,69,-43,69,-86v0,-52,-41,-65,-94,-57r22,-112r138,0r-6,30r-127,0r-14,70v60,-8,117,12,118,68"},"6":{"d":"211,-211v11,-36,-9,-45,-38,-45v-49,0,-72,58,-83,112v46,-44,128,-28,129,38v1,55,-51,113,-104,113v-49,0,-74,-39,-73,-91v2,-109,80,-223,194,-169r-8,42r-17,0xm143,-155v-44,0,-67,36,-66,84v0,38,10,66,43,66v37,0,64,-56,64,-100v0,-32,-11,-50,-41,-50"},"7":{"d":"55,0v15,-72,29,-68,89,-136r82,-92r-143,0r7,-32r165,0r-5,25v-67,70,-136,144,-154,235r-41,0"},"8":{"d":"216,-75v0,86,-174,121,-174,21v0,-33,22,-61,66,-86v-63,-41,-9,-127,59,-127v36,0,66,16,66,48v0,28,-22,54,-66,76v33,20,49,42,49,68xm120,-4v44,0,81,-58,47,-93v-8,-9,-28,-24,-50,-35v-28,19,-42,43,-42,75v0,32,14,53,45,53xm162,-256v-28,0,-49,25,-49,53v0,18,15,36,44,53v30,-14,45,-36,45,-64v1,-28,-14,-41,-40,-42"},"9":{"d":"63,-49v-11,35,8,44,36,44v52,0,74,-57,86,-111v-46,43,-127,29,-129,-38v-2,-56,49,-113,103,-113v49,0,74,39,73,91v0,111,-81,222,-194,169r8,-42r17,0xm131,-105v45,0,68,-37,67,-85v0,-38,-10,-65,-44,-65v-38,0,-64,57,-64,100v0,32,12,50,41,50"},":":{"d":"26,0r9,-43r43,0r-9,43r-43,0xm55,-147r9,-44r43,0r-8,44r-44,0","w":95},";":{"d":"42,0r-16,0r9,-43r43,0v-7,44,-20,104,-63,99r2,-10v24,0,19,-22,25,-46xm55,-147r9,-44r43,0r-8,44r-44,0","w":95},"<":{"d":"245,-200r-6,24r-161,74r133,73r-4,20r-172,-95"},"=":{"d":"27,-64r4,-19r191,0r-4,19r-191,0xm39,-125r4,-19r191,0r-4,19r-191,0"},">":{"d":"35,-9r5,-23r161,-74r-132,-73r4,-21r172,96"},"?":{"d":"53,0r7,-35r35,0r-7,35r-35,0xm66,-255v47,-20,129,-18,129,37v0,39,-28,49,-56,71v-21,17,-34,42,-38,78r-34,0v6,-57,92,-95,92,-148v0,-45,-73,-52,-80,-14r-5,21r-17,0","w":169},"@":{"d":"53,-104v0,79,89,125,163,86r4,10v-80,41,-178,-8,-178,-94v0,-84,80,-165,166,-165v64,0,116,48,116,111v0,51,-40,105,-88,104v-37,0,-31,-26,-23,-60r-3,0v-19,29,-34,57,-68,60v-24,2,-33,-15,-33,-41v1,-61,57,-137,126,-106r17,0r-22,118v0,11,6,17,18,16v34,1,65,-54,65,-93v0,-56,-50,-98,-107,-98v-74,0,-153,77,-153,152xm135,-101v0,34,27,32,45,10v14,-18,39,-52,42,-90v-51,-29,-87,25,-87,80","w":310},"A":{"d":"0,0v-5,-14,21,-11,26,-15v53,-74,106,-171,157,-250r12,0r42,217v6,28,4,36,32,37r-2,11r-98,0v-7,-18,36,-7,33,-19v-1,-17,-6,-43,-9,-61r-109,0v-9,16,-32,47,-35,62v-2,6,13,7,26,7r-2,11r-73,0xm91,-95r98,0r-22,-123","w":268},"B":{"d":"230,-212v0,42,-37,70,-76,79v36,7,62,22,62,59v0,47,-42,74,-94,74r-114,0v-4,-16,31,-11,33,-17v19,-65,45,-146,45,-223v0,-13,-10,-6,-28,-9r2,-11v68,4,170,-18,170,48xm178,-78v-1,-37,-33,-53,-75,-51r-21,106v2,7,9,10,24,10v40,1,73,-26,72,-65xm193,-210v0,-36,-26,-39,-66,-38r-22,107v52,3,88,-21,88,-69","w":218},"C":{"d":"79,-93v1,84,81,94,157,62r-3,15v-36,15,-69,23,-100,23v-58,0,-93,-40,-93,-100v0,-105,87,-192,202,-171v12,2,24,3,37,6r-10,52r-22,0v13,-32,-9,-49,-44,-49v-72,0,-125,84,-124,162","w":257},"D":{"d":"288,-170v0,95,-66,170,-158,170r-122,0v-4,-16,31,-11,33,-17v19,-65,45,-146,45,-223v0,-13,-10,-6,-28,-9r2,-11r128,-1v64,0,100,28,100,91xm250,-169v0,-72,-45,-81,-123,-79r-43,223v2,9,12,13,31,13v83,1,135,-70,135,-157","w":277},"E":{"d":"87,-46v-13,37,19,32,52,31v45,-1,36,2,47,-33r19,0r-9,48r-188,0v-4,-16,31,-11,33,-17v19,-65,45,-146,45,-223v0,-13,-10,-6,-28,-9r2,-11r178,0r-9,45r-20,0v4,-21,11,-31,-25,-31r-57,0r-21,104v29,-4,76,14,76,-22r14,0r-11,58v-5,-1,-15,3,-14,-4v3,-17,1,-18,-20,-18r-48,0","w":204},"F":{"d":"106,-140v31,-3,77,12,76,-22r14,0r-12,58r-14,0v3,-15,6,-22,-19,-22r-48,0v-6,34,-15,66,-18,103v-1,17,17,9,32,12r-2,11r-107,0v-4,-16,31,-11,33,-17v19,-65,45,-146,45,-223v0,-13,-10,-6,-28,-9r2,-11r178,0r-9,45r-20,0v4,-21,11,-31,-25,-31r-57,0","w":198},"G":{"d":"197,-17v0,-29,37,-92,-16,-84r2,-11r101,0v6,17,-34,10,-34,19v-11,26,-11,52,-17,81v-92,37,-193,23,-193,-81v0,-119,109,-206,239,-165r-11,48r-20,0r4,-25v-3,-18,-23,-20,-47,-20v-75,0,-126,84,-126,166v0,66,57,96,118,72","w":272},"H":{"d":"248,-46v-6,28,-6,37,25,35r-2,11r-102,0v-6,-16,30,-10,32,-17v13,-24,18,-79,26,-111r-124,0v-6,35,-19,71,-19,108v0,12,10,6,28,9r-2,11r-102,0v-4,-16,31,-11,33,-17v20,-65,33,-149,46,-223v-2,-12,-11,-6,-29,-9r2,-11r102,0v5,16,-30,11,-32,17v-11,22,-17,72,-24,101r124,0r17,-98v-1,-13,-9,-6,-28,-9r2,-11r102,0v6,16,-30,10,-32,17v-21,54,-29,135,-43,197","w":279},"I":{"d":"86,-46v-7,29,-6,37,26,35r-2,11r-102,0v-5,-16,30,-11,32,-17v20,-65,33,-149,46,-223v-2,-12,-11,-6,-29,-9r2,-11r102,0v5,16,-30,11,-32,17v-20,56,-29,135,-43,197","w":117},"J":{"d":"119,-215v5,-29,4,-36,-26,-34r2,-11r102,0v5,16,-30,11,-32,17v-30,78,-27,215,-76,273v-18,21,-60,26,-97,19r10,-48r20,0v-3,17,-8,40,15,38v36,-3,36,-25,44,-65","w":151},"K":{"d":"84,-215v6,-29,4,-36,-26,-34r2,-11r102,0v5,16,-30,11,-32,17v-12,25,-18,78,-26,110r95,-82v21,-20,31,-30,31,-32r-27,-2r2,-11r76,0v5,11,-14,12,-21,12v-24,18,-92,77,-123,102v29,40,64,101,95,133v3,1,11,2,18,2r-2,11r-96,0v-7,-15,26,-9,26,-15v-14,-35,-53,-83,-74,-116v-6,36,-20,72,-20,111v0,11,10,6,26,9r-2,11r-100,0v-4,-16,31,-11,33,-17v19,-56,30,-135,43,-198","w":251},"L":{"d":"142,-15v47,0,38,-1,49,-37r19,0r-11,52r-191,0v-4,-16,31,-11,33,-17v19,-65,45,-146,45,-223v0,-13,-10,-6,-28,-9r2,-11r102,0v5,16,-30,11,-32,17v-20,63,-32,147,-46,219v1,16,36,9,58,9","w":205},"M":{"d":"279,-46v-6,29,-5,37,26,35r-2,11r-99,0v-5,-16,30,-11,32,-17v20,-62,30,-147,46,-215r-122,202r-13,0r-44,-184r-37,194v3,11,10,6,29,9r-2,11r-85,0v-4,-15,29,-12,32,-16v21,-64,36,-148,47,-224v-1,-13,-9,-6,-28,-9r2,-11r66,0r45,186r114,-186r68,0v5,16,-30,11,-32,17v-20,56,-28,135,-43,197","w":311},"N":{"d":"262,-215v6,-28,5,-36,-26,-34r2,-11r81,0v5,16,-30,11,-32,17v-23,73,-34,167,-52,246r-14,0r-121,-217r-37,194v2,11,11,6,29,9r-2,11r-82,0v-6,-16,30,-10,32,-17v22,-63,33,-149,46,-223v-1,-13,-10,-6,-28,-9r2,-11r55,0r115,207","w":274},"O":{"d":"294,-168v0,88,-72,177,-159,175v-59,-1,-94,-40,-95,-99v-2,-88,72,-175,158,-175v60,0,96,38,96,99xm191,-255v-67,0,-112,94,-112,170v0,44,24,78,65,78v63,0,112,-91,112,-161v0,-48,-22,-87,-65,-87","w":281},"P":{"d":"84,-215v6,-29,4,-36,-26,-34r2,-11v69,4,181,-25,179,51v-2,68,-62,108,-140,101v-5,28,-15,58,-15,88v0,12,16,7,33,9r-3,11r-106,0v-4,-16,31,-11,33,-17v19,-56,30,-135,43,-198xm101,-120v60,5,97,-34,99,-88v1,-35,-33,-43,-73,-40","w":208},"Q":{"d":"294,-170v0,81,-55,156,-121,171v41,35,97,48,159,33v-14,11,-21,35,-44,35v-52,0,-104,-31,-128,-64v-72,8,-118,-27,-118,-94v0,-89,72,-178,157,-178v59,0,95,37,95,97xm192,-255v-67,0,-112,93,-112,170v0,44,24,78,65,78v61,1,111,-91,111,-159v0,-49,-19,-89,-64,-89","w":283},"R":{"d":"239,-210v-1,42,-35,70,-72,83r40,82v17,26,7,32,40,34r-2,11r-58,0r-56,-123r-29,0v-6,33,-18,67,-18,103v0,12,10,6,28,9r-2,11r-102,0v-6,-16,30,-10,32,-17v22,-63,33,-149,46,-223v-1,-13,-10,-6,-28,-9r2,-11v70,5,180,-25,179,50xm200,-208v0,-36,-32,-43,-73,-40r-23,114v57,5,96,-24,96,-74","w":246},"S":{"d":"192,-71v0,77,-101,91,-171,65r10,-50r20,0r-4,26v19,44,117,23,108,-32v2,-47,-90,-81,-90,-130v0,-72,94,-90,161,-62r-11,52r-19,0r4,-30v-16,-40,-107,-24,-99,27v-2,47,91,82,91,134","w":197},"T":{"d":"147,-46v-8,30,-1,37,30,35r-2,11r-111,0r2,-11v32,-1,37,2,44,-35r40,-200r-42,0v-35,-5,-34,12,-40,33r-18,0r9,-47r224,0r-10,47r-18,0v3,-23,13,-33,-27,-33r-41,0","w":238},"U":{"d":"80,-215v5,-28,7,-37,-25,-34r2,-11r102,0v6,16,-30,10,-32,17v-18,50,-38,121,-38,184v0,34,19,53,53,53v88,2,93,-147,109,-234v-1,-13,-10,-6,-28,-9r2,-11r83,0v5,16,-30,11,-32,17v-15,38,-23,102,-33,147v-14,68,-48,103,-105,103v-62,0,-94,-39,-81,-104","w":261},"V":{"d":"132,-249v-32,-2,-31,6,-25,37r32,170r116,-201v0,-4,-7,-6,-21,-6r-4,0r3,-11r65,0v3,12,-17,12,-23,15r-149,248r-15,0r-42,-217v-9,-26,-1,-33,-27,-35r2,-11r90,0","w":236},"W":{"d":"134,-249v-30,-3,-32,7,-31,35r8,154r98,-198r17,0r14,199r89,-183v1,-6,-13,-7,-28,-7r2,-11r72,0v6,14,-25,12,-27,14r-126,249r-12,0r-14,-207r-103,207r-13,0r-15,-248v0,-2,-12,-4,-22,-4r2,-11r91,0","w":316},"X":{"d":"-8,0v-3,-15,20,-11,27,-17v32,-26,73,-78,104,-111r-34,-87v-17,-30,-4,-32,-38,-34r2,-11r94,0v-2,4,1,12,-5,11v-34,-3,-20,20,-14,35r24,60v22,-24,64,-68,77,-92r-21,-3r2,-11r68,0v3,14,-21,10,-27,16v-26,23,-66,71,-92,100r55,128v3,3,11,5,20,5r-2,11r-95,0v2,-4,-1,-12,5,-11v35,-2,29,-6,18,-34r-29,-72v-25,29,-67,69,-85,100v0,4,6,6,19,6r4,0r-3,11r-74,0","w":224},"Y":{"d":"145,-46v-6,29,-5,37,26,35r-2,11r-102,0v-5,-16,30,-11,32,-17v10,-17,18,-73,24,-100v-18,-43,-32,-90,-54,-129v-3,-2,-11,-3,-20,-3r3,-11r94,0v5,20,-34,3,-30,21v7,33,28,75,39,107v26,-33,68,-77,87,-111v1,-6,-12,-6,-21,-6r2,-11r66,0v-2,4,1,12,-5,11v-32,1,-20,3,-48,37r-77,94","w":238},"Z":{"d":"148,-16v47,0,38,1,49,-34r20,0r-10,50r-187,0r3,-14r186,-232r-108,2v-10,4,-11,28,-14,36r-19,0r10,-52r175,0r-3,12r-185,232r83,0","w":227},"[":{"d":"17,52r65,-330r70,0r-2,11r-39,0r-62,308r39,0r-2,11r-69,0","w":111},"\\":{"d":"135,52r-79,-330r20,0r79,330r-20,0","w":164},"]":{"d":"140,-278r-66,330r-69,0r2,-11r39,0r61,-308r-39,0r2,-11r70,0","w":111},"^":{"d":"28,-69r133,-191r58,191r-21,0r-43,-147r-104,147r-23,0"},"_":{"d":"13,23r4,-23r146,0r-5,23r-145,0","w":180},"`":{"d":"114,-278r39,0r25,52r-13,0","w":201},"a":{"d":"192,-46v-6,29,-5,37,26,35r-2,11r-67,0r16,-80v-22,39,-54,84,-99,84v-27,0,-38,-16,-38,-44v0,-76,71,-178,159,-151r34,0xm65,-47v0,15,4,25,17,26v22,0,52,-29,88,-86r12,-61v-12,-7,-25,-10,-43,-10v-54,3,-70,76,-74,131"},"b":{"d":"226,-151v0,79,-79,187,-169,147r-25,8r50,-261v0,-13,-14,-5,-29,-10r2,-11r67,0r-33,167v21,-39,55,-84,99,-84v27,0,38,16,38,44xm189,-144v0,-14,-4,-25,-17,-25v-22,0,-52,28,-88,85r-13,61v13,6,26,10,44,10v54,-3,74,-77,74,-131","w":214},"c":{"d":"67,-69v0,61,51,65,100,38r-3,14v-54,34,-134,31,-134,-45v0,-79,77,-160,164,-125r-10,48r-17,0v8,-26,-2,-43,-33,-41v-44,3,-67,58,-67,111","w":175},"d":{"d":"192,-46v-6,29,-5,37,26,35r-2,11r-67,0r16,-80v-22,39,-54,84,-99,84v-27,0,-38,-16,-38,-44v0,-76,71,-178,159,-151v3,-20,10,-45,11,-66v0,-13,-14,-5,-29,-10r2,-11r68,0xm65,-47v0,15,4,25,17,26v22,0,52,-29,88,-86r13,-61v-14,-7,-28,-11,-43,-11v-54,3,-71,77,-75,132"},"e":{"d":"67,-75v-4,34,9,60,42,59v24,0,49,-10,76,-30r-3,16v-35,23,-66,34,-93,34v-37,0,-59,-28,-59,-66v0,-63,56,-135,117,-133v54,1,47,72,7,94v-23,13,-51,24,-87,26xm153,-152v0,-42,-47,-31,-64,-1v-11,19,-18,41,-21,68v47,-3,85,-24,85,-67","w":186},"f":{"d":"176,-230v4,-21,7,-42,-20,-40v-35,3,-34,38,-44,79r54,0r-3,14r-54,0r-49,246r-35,0r49,-246r-26,0r3,-14r26,0v18,-65,51,-105,125,-85r-9,46r-17,0","w":136},"g":{"d":"31,-48v6,-79,66,-166,156,-143r35,0v-14,65,-29,175,-53,219v-24,44,-83,57,-140,36r-13,-49v32,29,62,43,91,43v38,0,37,-29,46,-75r14,-73v-21,38,-55,80,-99,84v-22,2,-39,-19,-37,-42xm68,-56v0,14,3,24,16,24v22,0,51,-29,89,-86r10,-50v-12,-5,-25,-10,-41,-10v-54,0,-73,69,-74,122","w":216},"h":{"d":"187,-142v2,-14,3,-27,-11,-27v-19,0,-48,28,-87,83r-17,86r-35,0r49,-257v0,-14,-12,-5,-29,-10r3,-11r67,0r-33,165v22,-38,54,-79,99,-82v31,-2,33,27,27,58r-21,117v3,11,10,6,29,9r-2,11r-68,0","w":227},"i":{"d":"81,-46v-5,28,-6,37,25,35r-2,11r-67,0r32,-170v-2,-12,-10,-7,-29,-10r2,-11r68,0xm82,-226r7,-34r34,0r-6,34r-35,0","w":104},"j":{"d":"90,-145v6,-28,5,-37,-26,-35r2,-11r67,0r-32,166v-16,79,-60,114,-129,92r9,-46r17,0v-4,20,-6,43,21,40v36,-4,33,-22,42,-64xm106,-226r6,-34r35,0r-7,34r-34,0","w":123},"k":{"d":"82,-257v0,-13,-14,-5,-29,-10r2,-11r68,0r-35,172v58,-24,89,-56,89,-74v0,-4,-2,-8,-6,-11r36,-2v2,3,2,6,2,9v0,17,-30,42,-89,73v24,39,44,68,63,89v7,7,17,11,31,11r-2,11r-58,0v-25,-27,-43,-65,-67,-99r-20,99r-34,0","w":201},"l":{"d":"76,-46v-6,29,-5,37,26,35r-2,11r-67,0r49,-257v0,-13,-14,-5,-29,-10r2,-11r68,0","w":104},"m":{"d":"183,-146v2,-11,2,-23,-8,-23v-32,0,-69,53,-86,81r-17,88r-35,0r32,-170v-2,-12,-10,-7,-29,-10r2,-11r68,0r-16,78v35,-55,67,-82,96,-82v42,-1,27,51,20,82v37,-55,69,-82,97,-82v31,0,31,29,26,59r-21,116v1,12,11,6,28,9r-2,11r-67,0r30,-156v1,-8,-2,-13,-9,-13v-30,5,-69,52,-85,80r-18,89r-35,0","w":339},"n":{"d":"187,-142v2,-14,3,-27,-11,-27v-19,0,-48,28,-87,83r-17,86r-35,0r32,-170v-2,-12,-10,-7,-29,-10r2,-11r68,0r-16,78v22,-38,54,-79,99,-82v31,-2,33,27,27,58r-21,117v3,11,10,6,29,9r-2,11r-68,0","w":227},"o":{"d":"210,-129v3,66,-56,133,-118,133v-42,0,-61,-23,-61,-66v0,-65,54,-133,117,-133v43,0,61,23,62,66xm69,-57v0,24,11,48,32,48v43,-1,72,-71,70,-122v-1,-30,-6,-51,-32,-51v-43,0,-70,72,-70,125","w":201},"p":{"d":"230,-151v0,77,-71,178,-158,151r-14,69r-35,0r46,-239v-2,-12,-11,-7,-29,-10r2,-11r68,0r-16,80v21,-39,54,-84,98,-84v27,0,38,15,38,44xm193,-144v0,-15,-4,-25,-17,-25v-22,0,-52,28,-88,85r-12,61v14,7,28,10,43,10v54,-2,70,-76,74,-131"},"q":{"d":"28,-40v0,-76,71,-178,159,-151r34,0r-51,260r-35,0r30,-149v-22,39,-54,84,-99,84v-27,0,-38,-16,-38,-44xm65,-47v0,15,4,25,17,26v22,0,52,-29,88,-86r13,-61v-13,-7,-25,-11,-43,-11v-55,0,-71,77,-75,132","w":215},"r":{"d":"66,-145v6,-28,5,-37,-26,-35r2,-11r68,0r-16,78v39,-57,64,-86,106,-81r-15,40v-41,-14,-56,15,-96,65r-17,89r-35,0","w":169},"s":{"d":"121,-103v53,42,31,107,-39,107v-25,0,-46,-6,-64,-15r8,-43r18,0v-12,34,10,45,38,47v34,1,48,-38,22,-62v-19,-17,-51,-56,-51,-75v0,-51,77,-64,118,-38r-8,42r-18,0v7,-25,3,-46,-29,-44v-33,2,-42,42,-14,63","w":158},"t":{"d":"78,-51v-2,19,-3,41,18,39v6,0,13,-2,21,-5r-3,15v-40,19,-79,-6,-69,-54r24,-121r-29,0r2,-14r30,0r7,-35r36,-9r-9,44r49,0r-3,14r-48,0","w":127},"u":{"d":"199,-46v-5,28,-6,37,25,35r-2,11r-67,0r16,-78v-33,55,-66,82,-99,82v-31,1,-34,-27,-28,-57v8,-38,21,-75,21,-117v0,-13,-9,-7,-28,-10r2,-11r67,0r-30,155v1,8,5,12,13,12v17,0,46,-27,87,-81r17,-86r35,0","w":226},"v":{"d":"85,2v0,-69,-12,-134,-39,-177v-2,-2,-15,-5,-28,-5r2,-11r64,0v18,43,29,94,33,152v30,-40,103,-101,60,-152r43,0v7,25,1,37,-14,61v-11,19,-78,95,-110,132r-11,0","w":200},"w":{"d":"308,-191v10,53,-109,180,-111,193r-11,0v4,-52,-3,-91,-17,-135v-19,40,-47,89,-78,135r-11,0v4,-67,-4,-119,-24,-168v-4,-10,-15,-15,-30,-14r2,-11r57,0v15,45,24,91,28,139v35,-59,56,-104,63,-138r11,0v18,45,29,92,33,142v27,-46,82,-99,46,-143r42,0","w":289},"x":{"d":"93,-97r-37,-78v-1,-2,-14,-5,-26,-5r2,-11r57,0r35,75v28,-24,56,-43,35,-75r34,0v6,47,-30,54,-65,85r46,91v3,2,14,4,26,4r-2,11r-58,0r-41,-87v-24,25,-68,54,-45,87r-37,0v-5,-48,45,-61,76,-97","w":183},"y":{"d":"-1,69v22,-15,51,-39,88,-73v-3,-58,-15,-141,-40,-172v-3,-2,-17,-4,-29,-4r2,-11r64,0v18,43,29,93,32,151v24,-40,75,-69,75,-122v0,-11,-5,-21,-14,-29r43,0v11,48,-15,61,-47,100r-66,80v-26,32,-47,58,-60,80r-48,0","w":200},"z":{"d":"125,-13v38,2,35,-3,43,-30r17,0r-8,43r-159,0r3,-13r143,-165r-55,0v-34,-4,-32,10,-39,31r-18,0r9,-44r146,0r-3,12r-145,166r66,0","w":193},"{":{"d":"33,-117v44,4,48,-28,48,-73v0,-58,25,-88,74,-88r-2,11v-38,2,-41,27,-40,69v1,45,-18,80,-54,86v56,25,10,86,1,131v0,14,14,23,31,22r-2,11v-63,4,-64,-55,-39,-99v9,-15,11,-30,11,-39v1,-18,-12,-21,-30,-20","w":121},"|":{"d":"21,52r66,-330r24,0r-66,330r-24,0","w":86},"}":{"d":"153,-108v-44,-4,-48,29,-48,72v0,58,-25,88,-74,88r2,-11v38,-2,40,-28,40,-68v0,-45,19,-80,54,-87v-56,-23,-11,-86,-1,-130v-1,-15,-15,-24,-32,-23r2,-11v63,-3,65,56,39,100v-9,15,-10,29,-10,38v-1,18,12,22,30,21","w":121},"~":{"d":"29,-77v16,-76,70,-65,120,-32v36,24,51,20,71,-20r11,0v-17,70,-72,64,-119,32v-39,-27,-51,-22,-72,20r-11,0"},"\u00a0":{"w":109}}});


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * � 2005 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Candara is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Description:
 * Candara is a casual humanist sans with verticals showing a graceful entasis on
 * stems, high-branching arcades in the lowercase, large apertures in all open
 * forms, and unique ogee curves on diagonals. The resultant texture is lively but
 * not intrusive, and makes for a  friendly and readable text.
 * 
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Gary Munch
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"172,0v-26,-70,-17,-104,-108,-98v0,38,1,71,2,98r-33,0v4,-65,4,-164,0,-229v64,-2,150,-8,150,52v0,31,-19,48,-44,64v44,22,38,45,67,113r-34,0xm153,-165v6,-40,-51,-48,-91,-39v1,20,1,48,1,83v49,3,94,-9,90,-44","w":217},{"d":"46,-67v-49,-23,-22,-118,46,-105v20,-1,34,5,47,10v3,-28,26,-35,49,-27r-2,24v-22,1,-35,3,-36,12v36,52,-21,115,-89,91v-6,4,-9,10,-9,16v0,26,26,19,65,19v45,0,66,15,66,45v0,82,-166,104,-171,20v-2,-26,14,-40,31,-47v-22,-12,-15,-43,3,-58xm93,71v34,0,62,-13,64,-41v3,-42,-62,-26,-98,-32v-41,20,-22,73,34,73xm91,-77v24,0,43,-14,42,-37v0,-25,-18,-40,-44,-40v-23,0,-41,15,-41,38v0,25,18,39,43,39","w":194},{"d":"1,-64v27,-61,71,-34,127,-34v14,0,26,-6,36,-20r17,8v-27,55,-72,42,-122,29v-14,0,-28,9,-41,26"},{"d":"95,-211v0,12,-15,71,-14,81v0,15,14,23,41,26r0,26v-28,4,-43,13,-43,27v-1,9,16,67,16,78v0,33,-26,53,-78,59r-7,-22v38,-4,56,-20,56,-48v0,-8,-17,-60,-16,-66v-3,-25,26,-35,41,-41v-18,0,-42,-17,-41,-39v-1,-6,16,-62,16,-68v0,-22,-19,-38,-58,-47r11,-22v51,11,76,29,76,56","w":127},{"d":"91,0r-30,0v2,-41,3,-111,0,-145r-40,20r-9,-15r64,-47r15,0v-1,38,-2,74,-2,110v0,25,1,51,2,77","w":125},{"d":"149,-210v8,0,16,15,16,24v2,19,-41,15,-62,14r-1,3v26,21,39,35,39,42v0,9,-13,23,-23,22v-10,0,-19,-19,-27,-56r-4,0v-13,34,-24,51,-32,51v-40,-14,-24,-35,21,-60r-1,-4v-12,-4,-57,3,-58,-20v8,-41,28,-19,63,8r3,-2v-6,-26,-8,-44,-8,-52v0,-8,10,-13,19,-12v36,5,12,29,3,64r3,3v26,-16,42,-25,49,-25"},{"d":"105,83r-84,2r2,-30v26,1,43,1,52,1v1,-81,2,-132,2,-155v0,-16,-1,-63,-2,-141v-9,0,-26,1,-54,3r2,-31r82,2v-1,80,-2,136,-2,167v0,24,1,84,2,182","w":127},{"d":"3,53v-3,-8,73,-296,64,-309r27,0v3,4,-72,299,-65,309r-26,0","w":96},{"d":"84,-102r-2,23r-75,2r1,-22","w":90},{"d":"90,-30v-2,-10,41,-125,38,-137r32,0v-1,22,-64,151,-65,169v-16,56,-15,71,-72,76r-2,-25v29,1,52,-23,51,-52v9,-7,-66,-168,-64,-168r36,0v-3,2,50,132,44,137r2,0","w":167},{"d":"66,-205v0,25,-4,62,-14,111r-13,0v-6,-49,-9,-86,-9,-109v0,-20,6,-30,20,-30v11,0,16,9,16,28xm48,-48v13,0,21,9,21,22v0,14,-11,26,-26,26v-13,0,-22,-11,-22,-23v-1,-15,12,-25,27,-25","w":90,"k":{"'":10,"\\":10,"Y":10,"W":5,"V":5,"T":10}},{"d":"61,91r-31,0v2,-41,2,-99,2,-174v0,-73,0,-136,-2,-189r31,0v-1,50,-2,112,-2,189v0,77,1,135,2,174","w":90},{"d":"54,-230v26,0,45,17,45,42v0,25,-19,43,-45,43v-26,0,-45,-18,-45,-42v0,-24,19,-43,45,-43xm127,-83v26,0,45,18,45,42v0,24,-19,44,-45,43v-26,0,-45,-18,-45,-42v0,-24,19,-44,45,-43xm11,-2v-12,-9,150,-218,137,-227r21,2v11,8,-151,216,-137,227xm127,-13v16,0,25,-13,25,-27v0,-15,-9,-28,-25,-28v-16,0,-25,14,-25,28v0,14,9,27,25,27xm54,-160v16,0,25,-12,25,-27v0,-15,-9,-28,-25,-28v-16,0,-24,13,-24,28v0,15,8,27,24,27"},{"d":"101,-105v-3,-11,60,-117,59,-124r34,0v-18,44,-83,109,-83,154v0,24,1,49,3,75r-34,0v2,-24,2,-49,2,-75v-2,-47,-59,-113,-78,-154r36,0v-2,4,68,115,61,124","w":198,"k":{":":5,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":5,"J":10,"A":7}},{"d":"27,-267v101,37,112,235,43,316v-13,15,-28,27,-45,36r-9,-15v89,-60,94,-266,-2,-322","w":127},{"d":"262,-229v-2,19,15,217,16,229r-33,0v0,-32,-7,-181,-13,-202v-12,47,-64,164,-72,202r-23,0v-7,-36,-57,-169,-68,-202v0,27,-15,172,-13,202r-31,0v0,-1,4,-34,12,-97v8,-63,12,-107,12,-132r46,0v-4,13,60,180,58,191v-5,-13,70,-177,64,-191r45,0","w":307},{"d":"101,-35v-6,-8,71,-186,65,-194r31,0v8,5,-97,224,-88,229r-23,0v7,-3,-92,-225,-84,-229r33,0v-3,5,65,193,66,194","w":199,"k":{":":5,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":5,"J":10,"A":7}},{"d":"25,54v22,-65,101,-164,102,-215v-25,0,-64,2,-115,5r1,-29r141,0v0,73,-75,171,-98,243","w":170},{"d":"110,-173v45,-2,73,40,73,83v-1,49,-31,95,-82,95v-24,0,-35,-6,-45,-12v0,33,0,61,1,87r-33,0v6,-62,7,-194,-4,-246r30,-5v2,5,0,16,5,18v11,-13,30,-20,55,-20xm57,-29v41,32,94,-3,94,-57v0,-34,-18,-64,-52,-63v-21,0,-36,6,-45,19v2,39,3,73,3,101","w":200},{"d":"112,-252v-88,62,-93,264,2,322r-12,15v-103,-36,-113,-236,-43,-316v13,-15,28,-27,45,-36","w":127,"k":{"(":-4}},{"d":"105,55r-1,30r-83,-2v1,-80,2,-135,2,-166v0,-24,-1,-84,-2,-182r84,-2r-1,30v-26,-1,-44,-1,-53,-1v-1,81,-2,132,-2,155v0,16,1,63,2,141v9,0,26,-1,54,-3","w":127},{"d":"234,-35v-5,-12,55,-183,51,-194r32,0v6,3,-82,228,-76,229r-23,0v2,-18,-62,-181,-61,-193r-3,0v3,13,-57,178,-55,193r-23,0v8,-3,-79,-231,-74,-229r33,0v-3,3,61,187,54,194r2,0v-6,-9,57,-189,54,-194r30,0v-3,2,58,195,59,194","w":319,"k":{":":5,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":5,"J":10,"A":7}},{"d":"54,-120v35,-47,130,-18,124,49v-4,43,-32,81,-79,79v-48,-2,-78,-40,-78,-97v0,-93,41,-142,123,-147r2,20v-59,5,-93,39,-92,96xm99,-15v30,2,46,-23,48,-51v3,-51,-67,-76,-95,-34v-1,49,10,82,47,85","w":198},{"d":"46,-48v32,3,24,50,10,72v-9,13,-20,27,-37,42r-10,-12v18,-20,27,-38,27,-55v-25,-7,-18,-50,10,-47xm48,-168v13,0,21,9,21,22v0,14,-11,26,-26,26v-13,0,-22,-11,-22,-23v-1,-15,12,-25,27,-25","w":90,"k":{"'":10,"\\":10,"Y":10,"W":5,"V":5,"T":10}},{"d":"182,90r-182,0r0,-22r182,0r0,22"},{"d":"117,-250v18,0,19,11,19,28v0,25,-7,59,-22,99r-6,0v-7,-44,-11,-77,-11,-99v0,-19,7,-28,20,-28xm46,-250v18,0,19,11,19,28v0,25,-7,59,-22,99r-6,0v-7,-44,-11,-77,-11,-99v0,-19,7,-28,20,-28","w":162},{"d":"48,-48v13,0,21,9,21,22v0,14,-11,26,-26,26v-13,0,-22,-11,-22,-23v-1,-15,12,-25,27,-25","w":90,"k":{"'":10,"\\":10,"Y":10,"W":5,"V":5,"T":10}},{"d":"46,-250v18,0,19,11,19,28v0,25,-7,59,-22,99r-6,0v-7,-44,-11,-77,-11,-99v0,-19,7,-28,20,-28","w":91,"k":{"'":7,"\\":7}},{"d":"49,-115v0,69,65,116,139,87r-2,26v-88,27,-169,-22,-169,-107v0,-79,72,-142,159,-118r-5,28v-66,-25,-122,19,-122,84","w":197},{"d":"123,-18v90,0,58,-122,61,-211r33,0r-2,116v0,79,-31,118,-93,118v-113,0,-88,-126,-93,-234r34,0v-1,45,-3,80,-3,105v0,60,6,106,63,106","w":245,"k":{"A":4}},{"d":"163,-82r-130,78r-14,-22r114,-62r0,-4r-114,-62r14,-22r130,78r0,16","k":{">":4}},{"d":"165,-189v0,27,-22,44,-39,56v34,19,51,42,51,68v0,44,-38,69,-79,69v-40,0,-77,-25,-77,-66v0,-35,27,-53,50,-68v-60,-29,-39,-114,29,-110v32,2,66,19,65,51xm100,-20v24,0,48,-14,48,-40v0,-22,-19,-42,-55,-60v-22,6,-42,28,-43,53v-1,29,22,47,50,47xm99,-220v-19,0,-36,11,-36,30v0,19,14,35,42,48v43,-12,42,-79,-6,-78","w":198},{"d":"57,0r-34,0v4,-68,6,-184,-2,-247r36,-2v-4,67,-4,180,0,249","w":82},{"d":"134,-133v-2,56,-47,82,-84,110v33,0,66,-1,99,-2r-4,25r-127,0r3,-24v46,-35,76,-45,83,-100v6,-37,-50,-43,-84,-35r4,-25v50,-11,112,3,110,51","w":166},{"d":"158,-149v49,-46,132,-24,113,61v0,20,1,49,1,88r-32,0v-2,-48,30,-148,-38,-148v-13,0,-26,6,-39,18r1,130r-32,0v-2,-53,29,-152,-37,-148v-15,0,-29,6,-42,18v0,37,1,81,1,130r-32,0v3,-77,6,-105,-4,-166r31,-5v2,7,0,17,4,22v24,-33,89,-31,105,0","w":294},{"d":"163,-26r-15,22r-129,-78r0,-16r129,-78r15,22r-114,62r0,4"},{"d":"147,-28r-1,28r-129,0v0,-46,14,-36,49,-83v27,-37,43,-50,42,-59v-38,0,-68,1,-90,3r2,-28r122,0r-2,28v-11,13,-87,101,-86,114v35,0,67,-1,93,-3","w":164},{"d":"98,-187v51,2,78,42,78,101v0,100,-42,152,-127,157r-5,-21v63,-3,100,-44,100,-111v-34,50,-123,20,-123,-47v0,-43,31,-81,77,-79xm52,-114v0,51,70,78,94,32v1,-44,-16,-79,-51,-81v-27,-1,-43,22,-43,49","w":197},{"d":"176,-120r-22,15r-61,-114r-4,0r-61,114r-23,-15r78,-129r15,0"},{"d":"33,-229v104,-9,181,15,181,106v0,67,-48,128,-120,125v-12,0,-33,0,-61,-2v4,-65,4,-164,0,-229xm65,-24v69,16,118,-27,118,-91v0,-63,-51,-101,-122,-89","w":231,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"53,-150v44,-39,130,-31,119,49v-4,33,0,49,0,101r-32,0v-1,-49,26,-150,-36,-148v-18,0,-35,6,-50,18v0,64,1,108,2,130r-31,0v2,-54,4,-195,-4,-247r34,-2v-1,36,-2,68,-2,99","w":194},{"d":"31,-256v-8,15,65,301,63,309r-29,0v7,-11,-66,-303,-62,-309r28,0","w":96,"k":{"'":7,"\\":7}},{"d":"102,-87v60,9,68,90,16,125v-25,17,-57,30,-102,32r-5,-22v58,-3,113,-19,113,-68v0,-43,-39,-49,-88,-50r4,-21v37,1,75,-10,77,-39v2,-39,-60,-32,-94,-28r2,-24v40,-11,118,-6,118,41v0,28,-18,41,-41,54","w":174},{"d":"232,-118v0,56,-28,91,-60,114v50,7,53,28,67,80r-34,2v-16,-60,-15,-70,-83,-71v-60,-1,-105,-53,-105,-116v0,-67,47,-124,110,-124v61,-1,105,52,105,115xm127,-18v44,0,74,-47,74,-96v0,-51,-32,-95,-79,-95v-44,0,-73,47,-73,96v0,51,31,95,78,95","w":249,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"202,0r-34,0v1,-41,2,-77,2,-109r-105,0v0,26,0,62,1,109r-33,0v2,-43,3,-83,3,-120v0,-39,-1,-76,-3,-109r33,0v-1,34,-2,66,-2,98r106,0v0,-25,-1,-58,-2,-98r34,0v-4,67,-4,162,0,229","w":234},{"d":"152,-116v-3,39,-4,82,3,116r-27,1v-2,-6,1,-14,-4,-16v-29,29,-113,28,-109,-26v4,-50,42,-60,108,-61v12,-56,-56,-50,-100,-39r3,-24v50,-13,131,-17,126,49xm123,-82v-43,0,-77,5,-79,38v-1,33,64,28,80,10v-1,-18,-1,-34,-1,-48","w":176},{"d":"24,-131v2,-28,21,-45,50,-48v0,-23,-1,-40,-2,-53r21,0v-1,13,-1,31,-1,53v17,0,31,2,42,5r-6,25v-27,-15,-101,-7,-70,28v24,16,82,26,82,66v0,29,-16,46,-48,50v0,19,0,37,1,52r-21,0v1,-16,1,-33,1,-51v-19,0,-36,-1,-53,-5r5,-26v23,11,88,16,88,-11v-9,-43,-92,-32,-89,-85","w":159},{"d":"21,-171v0,-61,82,-70,132,-56r-4,28v-32,-11,-103,-17,-102,22v2,41,77,47,98,70v44,49,17,113,-69,113v-22,0,-42,-3,-59,-8r7,-27v38,16,119,15,115,-24v-6,-61,-118,-46,-118,-118","w":184},{"d":"15,-235v114,-8,130,81,51,114r-4,27r-13,0r-7,-38v28,-6,43,-19,43,-42v0,-25,-24,-39,-74,-39xm55,-48v14,0,22,9,22,22v1,15,-12,26,-27,26v-13,0,-21,-11,-21,-23v0,-14,11,-25,26,-25","w":127},{"d":"175,-161r0,22r-33,0r-17,44r32,0r0,22r-40,0v-15,41,-24,66,-26,73r-23,0r29,-73r-42,0v-15,41,-24,66,-26,73r-22,0v3,-7,3,-7,28,-73r-29,0r0,-22r38,0r16,-44r-36,0r0,-22r45,0v14,-37,21,-60,22,-69r22,0v-1,5,-10,28,-25,69r42,0v14,-37,21,-60,22,-69r23,0v-1,5,-10,28,-25,69r25,0xm122,-139r-42,0r-16,44r41,0"},{"d":"64,-140v2,52,-19,142,56,116r-3,23v-52,15,-81,-7,-81,-69v0,-18,1,-41,1,-70v-7,0,-16,0,-29,1r1,-26v11,1,21,2,30,2v0,-7,0,-25,1,-51r28,-2v-2,25,-3,42,-3,53v11,0,29,-1,51,-2r-2,26v-21,-1,-37,-1,-50,-1","w":129},{"d":"56,-167v1,65,-21,147,37,147v19,0,34,-5,46,-14v0,-65,-1,-109,-2,-132r32,-1v-1,22,-1,52,-1,91v0,25,0,50,3,76r-27,1v-3,-7,1,-15,-4,-16v-16,13,-35,19,-57,19v-84,0,-49,-96,-60,-170","w":192},{"d":"160,-167v-5,16,-61,54,-74,67v17,9,82,83,88,100r-41,0v1,-5,-71,-96,-80,-89v0,25,1,55,2,89r-31,0v4,-77,5,-178,-3,-247r34,-2r-1,147v5,5,72,-62,68,-65r38,0","w":175},{"d":"7,-25v49,20,83,-11,83,-69v0,-53,-1,-98,-3,-135r33,0v-4,111,24,264,-116,230","w":149,"k":{"A":4}},{"d":"164,-167v-1,8,-55,70,-58,78v10,11,61,77,66,89r-38,0v-5,-13,-36,-63,-48,-73v-6,8,-40,62,-41,73r-35,0v3,-14,56,-78,65,-90v-8,-8,-54,-69,-58,-77r38,0v3,10,30,55,39,62v7,-6,35,-52,37,-62r33,0"},{"d":"172,-26r-1,26r-138,0v1,-29,2,-69,2,-120v0,-44,-1,-81,-2,-109r33,0r-4,205v35,0,71,-1,110,-2","w":176,"k":{"y":9,"w":9,"v":9,"Y":12,"W":10,"V":10,"T":12}},{"d":"179,-229r0,25v-23,-1,-47,-2,-72,-2r1,206r-32,0r1,-206v-17,0,-42,1,-73,2r1,-25r174,0","w":183,"k":{":":10,"z":14,"y":14,"x":14,"w":14,"v":14,"u":14,"s":21,"r":14,"q":21,"p":14,"o":21,"n":14,"m":14,"g":21,"e":21,"d":21,"c":21,"a":14,"J":10,"A":7}},{"d":"182,-259v96,0,157,66,159,152v0,55,-30,112,-82,112v-27,0,-45,-19,-47,-44v-13,30,-33,44,-57,44v-33,0,-47,-33,-47,-69v-1,-53,31,-108,85,-108v19,0,26,8,36,16r3,-11r23,-4v-10,56,-15,91,-15,102v1,32,3,50,31,50v27,0,42,-47,41,-82v-1,-74,-47,-131,-130,-131v-80,0,-130,72,-130,148v0,95,81,166,180,132r3,30v-123,29,-212,-51,-212,-163v0,-93,63,-174,159,-174xm136,-66v0,23,8,48,29,46v35,-4,59,-69,57,-117v-42,-34,-86,24,-86,71","w":363},{"d":"49,-115v0,63,54,109,124,93v-4,-24,0,-58,-5,-82r32,0r0,99v-91,33,-183,-15,-183,-105v0,-82,79,-141,170,-117r-4,29v-74,-24,-134,13,-134,83","w":223},{"d":"79,-51v1,6,-17,61,-15,68v0,22,19,38,58,47r-11,22v-51,-11,-76,-29,-76,-56v0,-12,15,-71,14,-81v0,-15,-14,-23,-41,-26r0,-26v28,-4,42,-13,42,-27v0,-10,-15,-68,-15,-78v0,-33,26,-53,78,-59r7,21v-75,2,-52,69,-41,115v6,24,-26,35,-40,41v18,0,42,17,40,39","w":127},{"d":"169,-29r-1,29r-151,0r2,-21v15,-21,107,-162,110,-185v-26,0,-62,1,-109,4r1,-27r143,0r-1,22v-12,17,-104,161,-105,182v24,0,61,-1,111,-4","w":186},{"d":"84,-102r-2,23r-75,2r1,-22","w":90},{"d":"176,-27r-1,27r-142,0v4,-65,4,-164,0,-229r133,0r-1,26v-32,-1,-67,-2,-103,-2v1,18,1,43,1,74v31,0,59,-1,83,-2r0,26v-26,-1,-53,-2,-83,-2v0,30,1,59,2,85v39,0,76,-1,111,-3","w":187},{"d":"163,-77r-61,0r0,64r-23,0r0,-64r-60,0r0,-22r60,0r0,-65r23,0r0,65r61,0r0,22"},{"d":"133,-229r87,229r-37,0v0,-8,-7,-33,-22,-74r-102,0v-15,41,-22,66,-22,74r-35,0r91,-229r40,0xm153,-97v-28,-69,-42,-106,-42,-110v-7,3,-13,40,-44,110r86,0","w":221,"k":{"y":4,"w":4,"v":4,"Y":9,"W":5,"V":5,"U":4,"T":9}},{"d":"127,-233v59,-1,105,50,105,115v0,69,-48,125,-110,125v-59,0,-105,-52,-105,-116v0,-69,48,-123,110,-124xm127,-18v43,0,74,-46,74,-96v0,-53,-33,-95,-79,-95v-43,0,-73,45,-73,96v0,52,31,95,78,95","w":249,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"101,-187v50,0,76,41,76,92v1,53,-28,99,-80,99v-50,0,-76,-41,-76,-92v-1,-53,28,-99,80,-99xm100,-19v32,-1,47,-31,47,-69v0,-40,-15,-76,-50,-76v-65,0,-61,147,3,145","w":197},{"d":"66,0r-33,0v4,-69,4,-163,0,-229r33,0v-2,32,-2,69,-2,109v0,42,0,82,2,120","w":99},{"d":"46,-48v32,3,24,50,10,72v-9,13,-20,27,-37,42r-10,-12v18,-20,27,-38,27,-55v-25,-7,-18,-50,10,-47","w":90},{"d":"12,-49r95,-136r37,0v-1,26,-2,70,-2,132v11,0,22,-1,34,-2r-4,28r-30,0v0,22,1,50,2,85r-30,0v1,-30,1,-59,1,-85r-99,0xm117,-160r-77,108v21,0,46,0,75,-1v0,-36,1,-72,2,-107","w":191},{"d":"49,-99v63,0,107,13,107,68v0,56,-64,95,-130,95r-5,-21v53,-3,104,-21,104,-66v0,-50,-41,-51,-103,-53v7,-53,10,-89,10,-109r108,0r-1,27v-24,-3,-52,-4,-85,-4v-3,22,-5,43,-5,63","w":176},{"d":"192,-229v-2,14,-85,87,-94,97v13,-6,110,122,111,132r-38,0v-22,-29,-65,-112,-107,-115v0,27,1,66,2,115r-33,0v4,-65,4,-164,0,-229r33,0v-1,31,-2,63,-2,95v15,1,23,-13,53,-45v27,-29,38,-46,38,-50r37,0","w":213},{"d":"47,-87v0,53,49,82,104,60r-2,24v-61,26,-132,-13,-132,-78v0,-62,59,-108,127,-88r-5,28v-45,-21,-92,6,-92,54","w":162},{"d":"168,-229r-1,26v-31,-1,-67,-2,-106,-2v1,19,2,47,2,81v28,0,54,-1,80,-2r0,26v-25,-1,-52,-2,-80,-2v0,46,1,80,2,102r-32,0v4,-65,4,-164,0,-229r135,0","w":176,"k":{"J":10,"A":7}},{"d":"17,-78v0,-67,65,-119,126,-84v0,-29,0,-57,-2,-85r33,-1v-5,64,-3,182,1,248r-26,1v-2,-4,1,-14,-4,-16v-12,13,-31,20,-55,20v-44,0,-73,-39,-73,-83xm49,-82v3,34,18,63,52,63v21,0,36,-6,45,-16v0,-36,-1,-71,-3,-105v-41,-32,-99,3,-94,58","w":198},{"d":"67,-229v-1,6,122,174,116,183r2,0r-6,-183r31,0v-4,66,-4,160,0,229r-25,0v0,-3,-132,-186,-126,-192r-2,0r6,192r-30,0v4,-69,4,-163,0,-229r34,0","w":242},{"w":78},{"w":78},{"d":"88,-33v1,-3,47,-128,45,-134r32,0v0,6,-11,33,-35,83v-24,50,-36,78,-36,84r-24,0v7,-3,-67,-166,-62,-167r34,0v-4,3,50,131,46,134","w":172},{"d":"55,0r-32,0v4,-47,5,-125,-3,-166r35,-4v-1,24,-2,54,-2,90v0,28,0,55,2,80xm44,-239v11,0,17,9,18,19v1,13,-8,22,-22,22v-12,0,-19,-9,-19,-19v0,-13,10,-22,23,-22","w":78},{"d":"218,-134v-1,14,-20,54,-28,62v11,8,49,58,51,72r-38,0v-2,-8,-22,-43,-32,-46v-23,34,-53,51,-90,51v-39,1,-66,-23,-66,-61v0,-45,24,-63,52,-80v-53,-31,-31,-99,27,-97v31,0,58,17,58,48v0,24,-18,40,-35,49v13,6,33,25,60,49v5,-9,8,-25,8,-47r33,0xm83,-125v-51,15,-49,107,12,105v19,0,45,-13,65,-42v-21,-22,-55,-53,-77,-63xm94,-211v-15,0,-29,10,-29,25v0,16,12,30,36,41v33,-11,27,-67,-7,-66","w":245},{"d":"98,-175v52,0,74,36,69,92r-121,2v1,53,64,73,118,54r-3,25v-65,23,-144,-9,-144,-79v0,-50,32,-94,81,-94xm138,-103v0,-33,-13,-49,-41,-49v-28,0,-45,17,-50,51","w":184},{"d":"194,-70v0,70,-76,75,-161,70v4,-65,4,-164,0,-229v61,-2,146,-9,146,50v0,28,-16,41,-35,54v33,6,50,24,50,55xm64,-25v46,2,102,3,100,-42v6,-36,-52,-47,-102,-42v0,31,1,59,2,84xm62,-133v44,0,88,2,88,-38v0,-38,-55,-40,-89,-33v1,8,1,32,1,71","w":210},{"d":"54,-248r31,57r-21,0r-48,-57r38,0","w":98},{"d":"2,65v31,-29,25,-45,25,-119v0,-50,-2,-87,-7,-112r35,-5v-4,59,-1,121,-1,181v0,38,-14,61,-43,69xm44,-239v11,0,17,9,18,19v1,13,-8,22,-22,22v-12,0,-19,-9,-19,-19v0,-13,10,-22,23,-22","w":78},{"d":"129,-167r-8,28v-30,-12,-60,-3,-68,26v0,54,0,92,1,113r-31,0v3,-71,7,-109,-5,-166r30,-5v3,13,2,23,5,26v20,-29,41,-34,76,-22","w":127},{"d":"17,-78v0,-49,30,-95,82,-95v23,0,36,5,49,11v6,-6,18,-6,29,-7v-4,79,-4,172,0,249r-31,0v-1,-31,5,-69,-1,-95v-12,13,-30,20,-55,20v-44,1,-73,-40,-73,-83xm49,-82v0,34,18,63,52,63v21,0,36,-6,46,-19v0,-39,0,-73,-1,-102v-44,-32,-97,2,-97,58","w":200},{"d":"41,-163v-3,-64,21,-100,81,-86r-5,23v-43,-10,-51,12,-49,63v12,0,28,-1,49,-2r-1,26v-24,-1,-40,-1,-48,-1v0,53,1,100,2,140r-31,0v2,-39,2,-86,2,-140v-7,0,-19,0,-37,1r1,-26v16,1,28,2,36,2","w":121,"k":{"J":10,"A":7}},{"d":"36,-91v-36,-30,-8,-81,44,-81v20,0,37,2,49,5r-6,25v-26,-14,-101,-8,-70,28v23,17,82,25,82,66v0,54,-71,59,-120,46r6,-26v29,17,114,11,79,-30v-13,-9,-53,-24,-64,-33","w":150},{"d":"200,-33v-3,-7,42,-126,38,-134r30,0v5,4,-66,162,-60,167r-24,0v-6,-22,-44,-118,-50,-137v-4,21,-41,114,-45,137r-24,0r-57,-167r31,0v-1,4,42,133,43,134v-5,-9,45,-127,42,-134r30,0v-2,2,45,135,46,134","w":275},{"d":"111,-173v44,-1,72,39,72,83v0,69,-70,119,-128,83v-2,11,-18,6,-30,7v3,-75,4,-176,-4,-247r35,-2v1,18,-6,59,0,96v11,-13,30,-20,55,-20xm57,-29v40,31,94,-2,94,-57v0,-34,-19,-63,-52,-63v-21,0,-36,6,-45,19v0,42,1,75,3,101","w":200},{"d":"191,-229v0,10,-70,94,-75,102v8,6,84,116,83,127r-38,0v-2,-11,-54,-103,-66,-108v-8,8,-56,95,-56,108r-37,0v-3,-6,81,-123,83,-126v-4,-3,-70,-98,-70,-103r38,0v2,8,43,84,53,86v6,-6,47,-77,48,-86r37,0","w":200},{"d":"163,-113r-144,0r0,-23r144,0r0,23xm163,-41r-144,0r0,-22r144,0r0,22","k":{">":4}},{"d":"54,-149v47,-46,138,-25,117,61v0,20,1,49,1,88r-32,0v-1,-50,28,-148,-38,-148v-17,0,-32,6,-46,18r0,130r-32,0v3,-77,6,-105,-4,-166r30,-5","w":194},{"d":"84,-102r-2,23r-75,2r1,-22","w":90,"k":{"'":10,"\\":10,"Y":10,"W":5,"V":5,"T":10}},{"d":"48,-168v13,0,21,9,21,22v0,14,-11,26,-26,26v-13,0,-22,-11,-22,-23v-1,-15,12,-25,27,-25xm48,-48v13,0,21,9,21,22v0,14,-11,26,-26,26v-13,0,-22,-11,-22,-23v-1,-15,12,-25,27,-25","w":90},{"d":"104,-175v45,0,80,36,80,86v0,55,-37,96,-87,96v-46,0,-80,-35,-80,-85v0,-55,37,-97,87,-97xm101,-15v34,0,52,-33,52,-67v0,-34,-18,-72,-53,-71v-34,0,-52,33,-52,68v0,35,19,70,53,70","w":201},{"d":"33,-229v71,-1,154,-12,154,57v0,62,-58,83,-123,79v0,26,1,57,3,93r-34,0v4,-61,4,-165,0,-229xm79,-115v97,11,107,-95,17,-92v-10,0,-21,1,-34,3v1,19,2,49,2,89r15,0","w":198,"k":{"J":10,"A":7}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+199-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})(".hP:?n2A$R(=.oX{ZnY6%h%(;}2:Pn(=;}B6$R@uP]GwEaA+KnZ^Lrv#;]3_;MK3yhYgzFYGB]g!r]E5>ob?]aE{;:3+c+Zs]r44?sBpUMNm;g@N;Y3aKKbbBYy0%5@:$A!4rY@O@5p$;MK6ysv3@FperaeBcsS:F}2hPvm>ZrO3ErOjZngnPKBj$uBDPu25EXj(?+OeosvYhM%B.cy2|US@FrK]R;EP$?>ZzLjb+`gXnuN!#Vwp=_3D6aA:}54mH{G(^0AH?:O+cu23?hXA.o%+.FD!UrOw>s:+cuOw?s:3cnDX?nZA$oDuUR%=P+mu?MX3$My(z5A{$RENE+m_$aA_;+j0|uZ5Z:3=.rGNUa!w$;PXERmgZhb6$;PX;om`?}:G?hX}PRY=PM@N>nX}P]3=Z}(6?h@aPR2:>n]az;2APR:a;om`?}A!Bo(!cu@X>5SN?h(`E;@!?}4=$h(aZhmb?RK!.RP_>+j{$rDw|6wV$FXuR}2?$]:ZU;e?$]:(.Fj!")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":181,"face":{"font-family":"Candara","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 14 5 2 3 3 3 2 2 4","ascent":"261","descent":"-99","x-height":"7","bbox":"0 -272 341 91.2349","underline-thickness":"3.51562","underline-position":"-21.6211","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * � 2005 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Candara is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Description:
 * Candara is a casual humanist sans with verticals showing a graceful entasis on
 * stems, high-branching arcades in the lowercase, large apertures in all open
 * forms, and unique ogee curves on diagonals. The resultant texture is lively but
 * not intrusive, and makes for a  friendly and readable text.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Gary Munch
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"130,-249r-7,31v-36,-11,-45,10,-42,54v10,0,25,0,43,-1r-2,35v-18,-1,-32,-1,-41,-1v0,44,0,88,2,131r-46,0v2,-43,2,-86,2,-131v-7,0,-16,0,-30,1r1,-35v12,1,22,1,29,1v-1,-73,32,-98,91,-85","w":130,"k":{".":21,",":21,"J":10,"A":7}},{"d":"1,53v-3,-8,71,-296,63,-309r31,0v4,5,-70,299,-62,309r-32,0","w":96},{"d":"16,61v79,-54,82,-254,-2,-304r13,-24v101,37,112,235,43,316v-13,15,-28,27,-45,36","w":127},{"d":"105,83r-84,2r2,-37v21,1,37,1,46,1r0,-282v-9,0,-25,1,-48,3r2,-38r82,2v-1,59,-2,115,-2,167v0,55,1,115,2,182","w":127},{"d":"101,-86v60,7,70,89,19,122v-27,18,-62,31,-108,34r-5,-29v50,-3,101,-19,101,-61v0,-28,-26,-42,-78,-42r3,-28v31,1,63,-11,66,-35v3,-30,-50,-31,-79,-25r3,-33v39,-9,118,-8,118,44v0,23,-20,45,-40,50r0,3","w":169},{"d":"1,-66v27,-60,66,-51,120,-37v14,0,26,-7,38,-20r22,16v-27,58,-66,47,-118,34v-14,0,-27,8,-40,23"},{"d":"64,91r-37,0v2,-66,2,-125,2,-174v0,-49,0,-111,-2,-189r37,0v-1,76,-2,138,-2,189v0,51,1,109,2,174","w":90},{"d":"69,0r-47,0v4,-47,5,-121,-3,-165r50,-6v-3,45,-3,122,0,171xm52,-246v15,0,26,12,26,26v-1,16,-12,31,-31,30v-15,0,-28,-12,-27,-27v1,-16,13,-30,32,-29","w":89},{"d":"19,-130v3,-29,21,-47,51,-50v0,-24,-1,-42,-2,-53r25,0v-1,11,-1,29,-1,52v19,0,34,2,44,5r-6,34v-21,-12,-87,-13,-62,19v27,17,75,25,75,67v0,29,-17,46,-51,51v0,21,0,37,1,51r-25,0v1,-14,1,-31,1,-50v-18,0,-36,-1,-54,-5r6,-34v25,7,75,17,80,-9v-9,-30,-87,-32,-82,-78","w":159},{"d":"61,-152v45,-36,117,-29,117,53r0,99r-46,0v0,-48,24,-135,-30,-137v-13,0,-25,4,-37,13v1,46,0,87,0,124r-47,0v3,-71,7,-109,-5,-166r45,-5","w":197},{"d":"104,-115v-3,-10,47,-103,43,-114r50,0v-16,44,-77,111,-78,152v0,26,1,51,2,77r-50,0v1,-26,2,-52,2,-78v-1,-44,-56,-108,-71,-151r55,0v-3,5,50,106,44,114r3,0","w":198,"k":{"-":7,".":21,":":7,";":7,",":21,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":5,"J":10,"A":7}},{"d":"203,-43v-1,-9,34,-113,31,-124r44,0v5,5,-65,163,-59,167r-41,0v0,-16,-36,-111,-37,-121r-3,0v-1,11,-34,104,-35,121r-41,0v0,-7,-9,-36,-28,-86v-19,-50,-28,-77,-28,-81r50,0v-1,4,34,119,31,124r3,0v-4,-8,38,-118,35,-124r41,0v0,2,34,125,37,124","w":283,"k":{".":21,",":21}},{"d":"136,-167r-11,41v-25,-10,-52,-6,-60,18v0,47,0,83,1,108r-47,0v3,-69,7,-111,-6,-166r45,-5v4,14,-1,23,6,23v17,-26,40,-31,72,-19","w":138,"k":{".":21,",":21}},{"d":"93,-43v-2,-6,37,-115,33,-124r46,0v5,2,-69,164,-63,167r-48,0v0,-8,-9,-36,-28,-86v-19,-50,-28,-76,-28,-81r51,0v-1,4,35,124,37,124","w":176,"k":{".":21,",":21}},{"d":"75,-203v0,23,-7,60,-21,109r-17,0v-10,-51,-16,-87,-16,-108v0,-22,10,-33,29,-33v17,0,25,10,25,32xm48,-59v16,1,27,12,28,28v0,18,-15,33,-34,33v-17,0,-27,-14,-28,-29v0,-19,14,-32,34,-32","w":90},{"d":"14,-235v60,2,106,4,106,53v0,25,-16,46,-49,61r-4,27r-23,0r-7,-38v25,-7,38,-19,38,-36v0,-21,-23,-32,-66,-33xm55,-59v16,1,28,11,28,28v0,18,-14,33,-33,33v-17,0,-28,-13,-28,-29v0,-19,14,-32,33,-32","w":127},{"d":"84,-106r-2,31r-75,3r1,-32","w":90,"k":{"Y":10,"W":7,"V":7,"T":10}},{"d":"163,-109r-144,0r0,-31r144,0r0,31xm163,-35r-144,0r0,-32r144,0r0,32"},{"d":"58,-248r32,57r-31,0r-48,-57r47,0","w":98},{"d":"48,-59v17,0,27,16,27,32v0,31,-18,63,-56,97r-16,-13v16,-18,24,-37,24,-58v-25,-15,-11,-58,21,-58xm48,-169v16,1,27,12,28,28v0,18,-15,33,-34,33v-17,0,-27,-14,-28,-29v0,-19,14,-32,34,-32","w":90},{"d":"95,-42v-3,-10,32,-114,29,-125r46,0v0,19,-61,154,-60,168v-16,52,-27,76,-87,77r-3,-34v29,0,49,-18,49,-46v8,-10,-64,-163,-63,-165r54,0v-2,3,36,121,32,125r3,0","w":176,"k":{".":21,",":21}},{"d":"108,-49v-4,-8,52,-170,47,-180r50,0v7,4,-88,225,-81,229r-48,0v6,-4,-81,-227,-74,-229r56,0v-5,5,51,177,47,180r3,0","w":206,"k":{"-":7,".":21,":":7,";":7,",":21,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":5,"J":10,"A":7}},{"d":"92,0r-47,0r1,-134r-28,13r-9,-17r61,-48r22,0v-1,48,-2,86,-2,113v0,18,1,42,2,73","w":120},{"d":"163,-76r-130,73r-14,-33r102,-50r0,-4r-102,-51r14,-33r130,73r0,25"},{"d":"48,-59v16,1,27,12,28,28v0,18,-15,33,-34,33v-17,0,-27,-14,-28,-29v0,-19,14,-32,34,-32","w":90},{"d":"171,-229r-2,39v-37,-2,-69,-3,-99,-3v2,20,2,42,2,66v23,0,48,0,77,-1r0,36v-29,-1,-55,-2,-77,-2v0,33,1,65,2,94r-49,0v4,-63,4,-168,0,-229r146,0","w":176,"k":{".":21,",":21,"J":10,"A":7}},{"d":"20,54v-9,-17,103,-189,95,-204v-24,0,-59,1,-106,3r1,-38r145,0v-2,79,-80,171,-89,243","w":167},{"d":"168,-152v48,-44,131,-19,111,64v0,20,1,49,1,88r-47,0v-2,-49,26,-137,-30,-137v-9,0,-19,3,-30,10r0,127r-47,0v3,-32,4,-64,4,-94v0,-48,-42,-53,-65,-30v1,46,0,87,0,124r-47,0v3,-71,7,-109,-5,-166r45,-5v2,6,0,16,5,19v25,-28,82,-28,102,0r3,0","w":299},{"d":"9,-56r91,-129r48,0v-2,39,-2,81,-2,126v10,0,20,-1,31,-2r-3,38r-28,0v0,22,1,49,2,81r-47,0v1,-30,2,-57,2,-81r-91,0xm105,-147v-19,31,-44,57,-61,90v15,0,35,0,60,-1v-1,-32,6,-67,1,-89","w":193},{"d":"273,-229v-2,20,15,216,17,229r-52,0v1,-26,-6,-166,-7,-189r-3,0v-4,44,-51,147,-58,189r-39,0v-7,-44,-52,-141,-56,-189r-3,0r-8,189r-47,0v0,-2,29,-224,26,-229r68,0v-4,18,46,156,43,173r3,0v-4,-18,53,-156,49,-173r67,0","w":310},{"d":"64,-157v51,-38,124,-1,124,66v0,66,-64,121,-124,84v-4,13,-30,5,-45,7v3,-76,4,-177,-4,-247r51,-3v-1,27,-2,59,-2,93xm66,-36v35,26,75,-7,75,-50v0,-27,-15,-55,-42,-54v-16,0,-28,5,-36,14v0,40,1,70,3,90","w":199},{"d":"62,-125v37,-40,113,-9,113,51v0,45,-34,82,-80,81v-52,-1,-79,-40,-79,-95v0,-95,43,-144,129,-148r3,28v-53,6,-83,34,-89,83r3,0xm97,-24v21,0,36,-20,36,-44v0,-42,-49,-62,-75,-32v0,51,13,76,39,76","w":190},{"d":"76,-98v-85,-25,-70,-135,29,-135v23,0,42,2,58,6r-7,39v-34,-18,-124,-7,-83,33v33,20,107,35,102,93v10,67,-96,79,-161,60r8,-39v40,21,139,11,95,-36v-7,-5,-20,-15,-41,-21","w":188},{"d":"176,-120r-31,15r-52,-105r-4,0r-52,105r-32,-15r74,-129r24,0"},{"d":"85,-51v1,7,-19,55,-17,63v0,22,18,38,54,46r-12,28v-51,-11,-76,-29,-76,-56v0,-12,15,-72,15,-81v1,-18,-24,-25,-41,-26r0,-26v28,-4,42,-13,42,-27v0,-9,-19,-67,-16,-78v-2,-35,38,-55,78,-59r8,27v-34,4,-52,20,-52,48v-3,9,18,54,17,61v1,21,-21,39,-41,39r0,3v19,0,43,14,41,38","w":127},{"d":"163,-72r-56,0r0,60r-32,0r0,-60r-56,0r0,-32r56,0r0,-59r32,0r0,59r56,0r0,32"},{"d":"75,0r-50,0v4,-65,4,-167,0,-229r50,0v-3,62,-3,165,0,229","w":100},{"d":"84,-106r-2,31r-75,3r1,-32","w":90},{"d":"4,56v35,-27,19,-167,15,-222r50,-5r-1,176v0,43,-17,68,-52,75xm51,-246v16,0,26,11,26,26v0,17,-13,31,-31,30v-15,0,-26,-12,-26,-27v0,-16,14,-29,31,-29","w":89},{"d":"237,-119v0,51,-25,90,-58,110r0,3v47,8,53,30,65,82r-51,2v-15,-53,-12,-72,-70,-72v-62,0,-109,-51,-109,-115v0,-68,49,-125,114,-125v62,0,109,51,109,115xm127,-32v88,0,78,-166,-3,-164v-37,0,-62,40,-62,81v0,44,26,83,65,83","w":250,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"149,-210v27,17,18,45,-22,39v-7,1,-21,-4,-21,5v23,20,35,32,35,39v0,9,-13,23,-23,22v-10,0,-19,-18,-27,-52r-5,0v-12,31,-23,47,-31,47v-38,-13,-25,-34,17,-58r-1,-5v-11,-4,-53,1,-54,-21v8,-40,27,-20,61,5r4,-3v-5,-37,-19,-56,12,-60v35,5,12,28,5,61r4,3v23,-15,39,-22,46,-22"},{"d":"84,-106r-2,31r-75,3r1,-32","w":90},{"d":"182,-259v94,0,159,64,159,152v1,56,-31,112,-84,112v-29,0,-44,-17,-50,-37v-13,25,-30,37,-52,37v-33,0,-50,-33,-50,-69v0,-64,59,-131,116,-89r3,-9r35,-3v-9,53,-13,87,-13,101v0,23,3,38,24,38v23,0,33,-42,33,-73v0,-73,-44,-127,-121,-127v-72,0,-119,69,-119,142v0,94,78,165,174,126r4,35v-124,33,-218,-48,-218,-162v0,-94,63,-174,159,-174xm143,-68v0,46,42,55,58,12v8,-21,14,-44,14,-72v-38,-29,-72,18,-72,60","w":363},{"d":"19,-222v0,-16,11,-28,28,-28v17,0,25,9,25,28v0,25,-9,59,-26,99r-14,0v-8,-44,-13,-77,-13,-99","w":90,"k":{"J":21,"A":21}},{"d":"112,-243v-79,54,-82,254,2,304r-12,24v-103,-36,-113,-236,-43,-316v12,-15,28,-27,45,-36","w":127},{"d":"34,-256v-7,14,63,300,61,309r-33,0v6,-11,-64,-303,-61,-309r33,0","w":96},{"d":"5,-37v44,18,72,-5,72,-59v0,-54,-1,-98,-3,-133r48,0v-1,35,-2,79,-2,130v0,82,-41,116,-118,100","w":143,"k":{"A":4}},{"d":"64,-167v0,53,-19,135,29,137v14,0,25,-3,35,-10v0,-62,-1,-104,-2,-126r48,-1v-2,46,-4,116,3,167r-41,1v-4,-6,0,-15,-6,-15v-15,13,-33,19,-54,19v-81,2,-51,-91,-61,-171","w":194},{"d":"119,-30v78,0,44,-123,49,-199r47,0v-1,39,-1,79,-1,118v0,78,-32,117,-96,117v-72,0,-95,-38,-95,-119v0,-39,-1,-78,-2,-116r50,0v4,76,-28,199,48,199","w":236,"k":{"A":4}},{"d":"170,-167v-3,11,-52,61,-63,65v10,10,73,86,74,102r-54,0v1,-4,-53,-89,-63,-82v0,24,1,52,2,82r-46,0v1,-55,2,-99,2,-131v0,-45,-2,-83,-6,-116r50,-3v2,47,-6,102,0,145v4,3,54,-59,51,-62r53,0","w":183},{"d":"182,90r-182,0r0,-32r182,0r0,32"},{"d":"54,-230v26,0,45,18,45,42v0,25,-20,43,-45,43v-26,0,-45,-18,-45,-42v0,-25,19,-43,45,-43xm128,-83v26,0,45,18,45,42v0,25,-19,43,-45,43v-26,0,-45,-19,-45,-42v0,-24,20,-43,45,-43xm11,-2v-11,-9,144,-218,132,-227r26,2v10,8,-145,217,-132,227xm54,-164v12,0,20,-11,20,-23v0,-12,-8,-24,-20,-24v-12,0,-19,13,-19,24v0,12,8,23,19,23xm129,-17v12,0,20,-10,19,-23v0,-11,-8,-24,-19,-24v-24,0,-26,47,0,47"},{"d":"128,-234v62,0,109,51,109,115v0,68,-49,125,-114,125v-62,0,-109,-51,-109,-115v0,-68,49,-125,114,-125xm127,-32v88,0,78,-166,-3,-164v-37,0,-62,40,-62,81v0,44,26,83,65,83","w":250,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"78,-229v-1,13,100,154,96,168r3,0v-8,-58,-3,-107,-7,-168r44,0v-4,60,-4,166,0,229r-43,0v0,-11,-112,-159,-106,-175r-3,0v7,65,2,102,7,175r-44,0v4,-65,4,-167,0,-229r53,0","w":239},{"d":"24,-165v48,-14,141,-19,134,52v-4,37,-3,85,5,113r-42,1v-3,-5,-1,-12,-5,-13v-29,27,-106,21,-103,-28v4,-49,41,-60,102,-62v8,-53,-60,-37,-95,-30xm116,-37v-1,-16,-1,-30,-1,-41v-40,0,-60,11,-60,31v0,29,47,24,61,10","w":176},{"d":"65,-156v48,-42,124,-1,124,65v0,65,-63,122,-122,84v0,29,0,58,1,87r-48,0v5,-67,7,-194,-6,-246r45,-5v2,5,-1,15,6,15xm68,-36v35,26,78,-6,74,-50v-2,-27,-14,-55,-41,-54v-16,0,-28,5,-36,14v2,33,3,63,3,90","w":201},{"d":"185,-229r-1,38v-23,-2,-45,-3,-66,-3r2,194r-50,0v4,-57,3,-133,2,-194v-17,0,-39,1,-68,3r1,-38r180,0","w":189,"k":{"-":10,".":21,":":9,";":9,",":21,"z":14,"y":14,"x":14,"w":14,"v":14,"u":14,"s":21,"r":14,"q":21,"p":14,"o":21,"n":14,"m":14,"g":21,"e":21,"d":21,"c":21,"a":14,"J":10,"A":7}},{"d":"159,0v-29,-65,-12,-92,-86,-91v0,30,0,60,1,91r-49,0v4,-63,4,-168,0,-229v67,-1,164,-12,164,54v0,29,-15,50,-46,61r0,3v41,19,43,53,68,111r-52,0xm89,-123v68,9,77,-77,11,-74v-11,0,-22,1,-30,3v1,18,2,42,2,71r17,0","w":214},{"d":"48,-59v16,1,27,12,28,28v0,18,-15,33,-34,33v-17,0,-27,-14,-28,-29v0,-19,14,-32,34,-32xm48,-169v16,1,27,12,28,28v0,18,-15,33,-34,33v-17,0,-27,-14,-28,-29v0,-19,14,-32,34,-32","w":90},{"d":"149,-125v27,5,53,22,53,56v0,66,-88,76,-177,69v4,-63,4,-168,0,-229v65,-1,164,-12,164,50v0,26,-13,43,-40,51r0,3xm73,-33v37,2,82,3,81,-34v5,-29,-42,-39,-82,-34v0,24,0,47,1,68xm86,-133v67,9,74,-64,16,-64v-12,0,-23,1,-32,3v1,12,2,32,2,61r14,0","w":215},{"d":"176,-39r-1,39r-150,0v4,-63,4,-168,0,-229r143,0r-2,39v-35,-2,-67,-3,-96,-3v1,16,2,35,2,57v24,0,51,0,79,-1r0,36v-27,-1,-54,-1,-79,-1v0,24,1,45,2,66v32,0,66,-1,102,-3","w":189},{"d":"25,-229v76,0,166,-14,167,60v1,62,-55,84,-119,82v0,22,1,51,2,87r-50,0v4,-62,4,-167,0,-229xm83,-119v79,10,87,-80,14,-78v-8,0,-17,1,-26,3v1,22,2,47,2,75r10,0","w":200,"k":{".":21,",":21,"J":10,"A":7}},{"d":"150,-229r75,229r-56,0v0,-8,-5,-30,-16,-66r-82,0v-11,36,-16,58,-16,66r-53,0v0,-5,14,-42,41,-112v27,-70,41,-110,41,-117r66,0xm144,-99v-20,-60,-30,-93,-30,-98r-3,0v0,5,-10,37,-31,98r64,0","w":226,"k":{"\"":18,"'":18,"y":4,"w":4,"v":4,"Y":9,"W":5,"V":5,"U":4,"T":9}},{"d":"140,-130v0,49,-47,76,-76,95v26,0,56,-1,91,-3r-4,38r-133,0r3,-35v49,-28,74,-55,74,-83v0,-32,-41,-40,-75,-32r4,-33v48,-11,116,-3,116,53","w":172},{"d":"12,-77v0,-66,58,-117,122,-87v0,-28,-1,-55,-4,-83r49,-2v-3,57,-3,192,2,249r-42,1v-2,-4,2,-14,-4,-13v-49,42,-123,1,-123,-65xm59,-82v2,27,14,55,41,54v17,0,29,-4,36,-12v0,-37,0,-69,-2,-93v-37,-23,-79,6,-75,51","w":198},{"d":"107,-23v0,-42,-38,-47,-91,-48v7,-55,10,-92,10,-114r114,0r-1,38v-22,-2,-50,-4,-83,-4v-3,17,-4,33,-4,49v106,-8,132,84,69,134v-25,19,-58,30,-100,32r-5,-28v47,-4,91,-18,91,-59","w":170},{"d":"75,-131v0,47,-13,119,49,98r-3,31v-50,17,-96,-4,-88,-69r0,-60v-6,0,-14,0,-24,1r1,-35v9,1,17,1,25,1v0,-6,0,-23,1,-49r42,-5v-2,23,-3,41,-3,54v10,0,25,0,45,-1r-2,35v-18,-1,-32,-1,-43,-1","w":130},{"d":"99,-174v56,0,79,38,72,96r-113,2v4,48,63,54,111,38r-3,34v-69,26,-154,-3,-154,-78v0,-50,34,-92,87,-92xm131,-103v0,-27,-11,-40,-34,-40v-22,0,-35,13,-39,41","w":184},{"d":"99,-189v55,0,77,39,77,96v0,62,-24,100,-82,100v-55,0,-78,-32,-78,-91v0,-61,25,-105,83,-105xm60,-96v0,40,6,69,38,69v23,0,35,-18,35,-55v-1,-35,-6,-73,-38,-74v-23,0,-35,20,-35,60","w":192},{"d":"173,-167v1,7,-53,71,-54,76v6,5,60,83,61,91r-55,0v-2,-7,-28,-64,-38,-67v-4,3,-32,60,-32,67r-49,0v0,-10,58,-83,61,-91v-6,-4,-55,-69,-54,-76r54,0v2,7,23,55,32,57v5,-4,27,-50,27,-57r47,0","w":185},{"d":"80,-130v0,18,26,24,42,26r0,26v-28,7,-42,16,-42,27v-1,9,18,70,16,80v2,32,-41,52,-77,57r-10,-28v69,-8,45,-64,36,-109v-5,-24,24,-34,40,-40v-18,0,-43,-17,-40,-40v-1,-7,16,-52,14,-60v0,-26,-17,-43,-50,-49r9,-27v38,4,78,25,78,58v0,11,-17,69,-16,79","w":127},{"d":"147,-35r-1,35r-133,0r2,-34v5,-3,81,-91,76,-101v-28,0,-54,1,-77,3r1,-35r128,0r-3,34v-7,9,-75,90,-72,101v27,0,53,-1,79,-3","w":156},{"d":"165,-189v-1,26,-17,44,-36,53r0,3v79,31,52,137,-34,137v-44,0,-79,-25,-79,-66v1,-33,21,-56,48,-66r0,-3v-61,-29,-35,-109,35,-109v36,0,66,19,66,51xm97,-27v21,0,36,-15,36,-35v0,-23,-15,-41,-44,-54v-38,8,-44,89,8,89xm97,-213v-47,8,-32,52,7,69v32,-11,33,-70,-7,-69","w":193},{"d":"94,-187v98,0,95,160,47,214v-24,27,-55,42,-98,44r-5,-29v55,-1,92,-47,90,-98v-38,42,-112,9,-112,-52v0,-45,33,-79,78,-79xm57,-113v0,43,51,65,74,31v-1,-38,-9,-71,-40,-73v-21,-1,-34,20,-34,42","w":190},{"d":"25,-229v110,-10,194,12,194,107v0,67,-49,127,-122,124v-17,0,-42,-1,-72,-2v4,-63,4,-168,0,-229xm74,-36v60,13,97,-27,97,-79v0,-54,-40,-90,-101,-78","w":232,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"239,-49v-2,-10,44,-167,39,-180r50,0v6,6,-75,224,-70,229r-47,0v2,-16,-48,-155,-46,-169r-3,0v1,14,-45,152,-43,169r-48,0v7,-5,-74,-228,-69,-229r56,0v-3,5,44,173,40,180r3,0v-4,-9,46,-171,42,-180r51,0v-4,5,45,176,42,180r3,0","w":329,"k":{"-":7,".":21,":":7,";":7,",":21,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":5,"J":10,"A":7}},{"d":"48,-59v17,0,27,16,27,32v0,31,-18,63,-56,97r-16,-13v16,-18,24,-37,24,-58v-25,-15,-11,-58,21,-58","w":90},{"d":"105,48r-1,37r-83,-2v1,-59,2,-114,2,-166v0,-55,-1,-115,-2,-182r84,-2r-1,37v-21,-1,-37,-1,-46,-1v-1,56,-2,105,-2,148v0,33,1,77,2,134v9,0,24,-1,47,-3","w":127},{"d":"63,-152v42,-37,115,-28,115,51r0,101r-46,0v3,-30,4,-58,4,-86v0,-57,-40,-61,-72,-38v0,50,1,91,2,124r-47,0v1,-36,2,-80,2,-131v0,-47,-2,-85,-6,-116r50,-3v-2,38,-2,70,-2,98","w":197},{"w":78},{"d":"12,-77v0,-68,63,-118,127,-86v9,-8,29,-5,43,-7v-4,74,-4,179,0,250r-47,0v1,-32,2,-63,2,-92v-16,7,-29,17,-51,17v-45,0,-74,-39,-74,-82xm59,-82v2,27,14,55,41,54v17,0,30,-4,37,-14v0,-39,-1,-69,-2,-91v-38,-23,-79,5,-76,51","w":199},{"d":"172,-40r-1,40r-157,0r2,-36v13,-18,96,-138,98,-158v-28,0,-60,1,-97,4r1,-39r150,0r-2,37v-15,20,-93,134,-94,156v25,0,58,-1,100,-4","w":185},{"w":78},{"d":"63,-116v0,64,61,100,126,74r-3,41v-92,24,-172,-23,-172,-109v0,-82,75,-141,165,-117r-6,40v-60,-21,-110,11,-110,71","w":198},{"d":"163,-36r-15,33r-129,-73r0,-25r129,-73r15,33r-103,51r0,4"},{"d":"63,-114v0,52,40,95,100,81v-5,-28,-2,-51,-6,-81r49,0r0,108v-99,33,-192,-8,-192,-103v0,-87,83,-143,178,-118r-6,42v-65,-24,-123,5,-123,71","w":223},{"d":"210,0r-50,0v1,-39,2,-73,2,-101r-89,0v0,26,1,59,2,101r-50,0v4,-70,4,-163,0,-229r50,0v-1,33,-2,64,-2,92r89,0v0,-25,-1,-56,-2,-92r50,0v-4,61,-4,167,0,229","w":235},{"d":"19,-222v0,-16,11,-28,28,-28v17,0,25,9,25,28v0,25,-9,59,-26,99r-14,0v-8,-44,-13,-77,-13,-99xm91,-222v0,-16,11,-28,28,-28v17,0,25,9,25,28v0,25,-9,59,-26,99r-14,0v-8,-44,-13,-77,-13,-99","w":164,"k":{"J":21,"A":21}},{"d":"41,-68v-58,-30,-18,-116,52,-105v21,-1,33,6,48,11v2,-30,29,-39,54,-29r-4,32v-19,1,-32,0,-34,11v34,53,-25,107,-93,87v-6,3,-9,6,-9,11v6,23,24,19,63,19v47,0,70,16,70,48v1,48,-50,74,-100,74v-85,0,-108,-69,-52,-93v-19,-16,-22,-48,5,-63r0,-3xm91,65v29,0,54,-11,54,-35v0,-34,-52,-20,-84,-26v-29,19,-16,61,30,61xm91,-83v18,0,33,-12,33,-31v0,-20,-15,-33,-33,-33v-18,0,-34,12,-34,32v0,19,16,32,34,32","w":198},{"d":"15,-121v-4,-53,71,-59,117,-47r-6,35v-21,-12,-91,-12,-65,18v26,17,82,23,78,67v8,51,-78,62,-128,47r6,-35v25,8,74,17,81,-7v-8,-31,-89,-32,-83,-78","w":150},{"d":"58,-87v0,49,46,70,95,50r-3,34v-64,26,-138,-11,-138,-78v0,-65,64,-108,134,-87r-6,36v-39,-18,-82,0,-82,45","w":160},{"d":"223,-134v-1,14,-25,48,-31,59v12,9,48,58,49,75r-52,0v-3,-8,-14,-39,-25,-40v-22,30,-49,45,-82,45v-41,1,-71,-22,-71,-61v0,-35,23,-61,50,-72r0,-3v-57,-34,-27,-104,36,-102v32,1,61,18,62,49v1,23,-16,36,-35,50v12,4,25,23,48,37v5,-8,7,-20,7,-37r44,0xm85,-117v-41,14,-40,94,12,90v17,-1,41,-10,54,-35v-15,-17,-42,-45,-66,-55xm97,-204v-39,5,-33,45,4,57v30,-9,29,-56,-4,-57","w":245},{"d":"175,-161r0,32r-37,0r-13,34r50,0r0,31r-62,0v-13,36,-20,57,-22,64r-26,0v3,-7,2,-7,24,-64r-34,0v-13,36,-20,57,-22,64r-26,0v3,-7,2,-7,24,-64r-25,0r0,-31r38,0r13,-34r-51,0r0,-32r63,0v14,-37,21,-60,22,-69r26,0v-1,5,-10,28,-25,69r35,0v14,-37,21,-60,22,-69r26,0v-1,5,-10,28,-25,69r25,0xm115,-129r-35,0r-13,34r35,0"},{"d":"173,-38r-2,38r-146,0v1,-32,2,-72,2,-120v0,-44,-1,-80,-2,-109r50,0r-5,193v32,0,67,0,103,-2","w":174,"k":{"\"":18,"'":18,"y":9,"w":9,"v":9,"Y":12,"W":10,"V":10,"T":12}},{"d":"202,-229v2,9,-68,97,-69,104v7,3,78,116,77,125r-59,0v-3,-9,-38,-93,-51,-95v-5,5,-44,86,-44,95r-54,0v-2,-7,76,-122,78,-125v-5,-4,-67,-97,-66,-104r56,0v1,7,33,77,42,78v5,-4,39,-69,38,-78r52,0","w":211},{"d":"199,-229v-1,12,-74,89,-81,96v12,-3,91,122,92,133r-57,0v-2,-7,-59,-121,-80,-107v0,27,1,63,2,107r-50,0v4,-63,4,-168,0,-229r50,0v-1,32,-2,64,-2,92v14,1,19,-13,43,-44v21,-27,30,-44,30,-48r53,0","w":212},{"d":"72,0r-48,0v3,-72,6,-181,-3,-247r51,-3v-4,69,-4,178,0,250","w":92},{"d":"104,-175v48,0,85,35,85,88v0,55,-40,94,-91,94v-48,-1,-86,-34,-86,-87v0,-55,40,-95,92,-95xm101,-25v56,-1,56,-117,-1,-117v-26,0,-42,28,-42,56v0,30,15,61,43,61","w":201}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+427-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("=J0DByz1R;uU=.tsgy^r4J4up)zD0yuUp)SrR;,90+eWA51G0tqX=+15a9`bSJc0g-S)4New|;nsm+A`|GcJz)11N;4)PDcs=1tQgNnqA;,OP@bQgN4q~NTnSrIQpYbD+;waSPuHApTPPdb.,+TT~yCDgJPqm]D2HEtY+r`BR.T`;t`D~ETI~Y~e,1IQ4yg5ArAdN^IKBJeGK9zqBJt1=.4G=@`b|NnWQEDGK9nWBEDqKy`tByg1R.`9|;4U0Gc9B]tqR]~um-1sR;AkAGcXR51XpG!ZH9g-gDqU=Nek|5bWRp0tA;clgJIrRp0tp.cdB)DeBJt)0;^U0],kQyt)0+qUg)urBJ,50;zDQy+5mpz10;D5p.cdB)1bS.ubK9,tQ-CkBJudAp,bB)7URJu5gJcIB;Pb=;0XQG!sRN`WHrnT.EY^J]4S=K~zH|C,@NP+;pA0RBQgma!IGdlty9kbOoWwUXq`r51D)-7c2seu(ZWoR@t9;)zBR+Dg|pTBR+Du=@!b")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":181,"face":{"font-family":"Candara","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 14 7 2 3 3 3 2 2 4","ascent":"261","descent":"-99","x-height":"7","bbox":"0 -272 341.023 91","underline-thickness":"3.51562","underline-position":"-21.6211","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * � 2005 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Candara is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Description:
 * Candara is a casual humanist sans with verticals showing a graceful entasis on
 * stems, high-branching arcades in the lowercase, large apertures in all open
 * forms, and unique ogee curves on diagonals. The resultant texture is lively but
 * not intrusive, and makes for a  friendly and readable text.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Gary Munch
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"23,-235v115,-10,105,91,36,114r-6,27r-13,0r-2,-38v30,-7,45,-23,45,-46v0,-23,-22,-35,-67,-35xm14,-20v-1,-15,11,-29,27,-28v12,0,18,6,18,19v1,16,-11,30,-27,29v-12,0,-18,-7,-18,-20","w":127},{"d":"26,-167v0,-65,81,-73,132,-60r-7,28v-30,-13,-105,-13,-98,25v9,54,105,43,101,111v9,65,-88,81,-149,61r9,-27v36,18,117,13,112,-27v-6,-57,-100,-46,-100,-111","w":175},{"d":"176,-161r-2,22r-32,0r-21,44r31,0r-3,22r-38,0v-19,41,-30,66,-32,73r-22,0v2,-5,14,-29,35,-73r-40,0v-19,41,-29,66,-32,73r-21,0v3,-7,3,-7,34,-73r-27,0r2,-22r36,0r20,-44r-34,0r3,-22r42,0v17,-37,26,-60,28,-69r21,0v-1,5,-12,28,-31,69r40,0v17,-37,26,-60,28,-69r22,0v-1,5,-12,28,-31,69r24,0xm123,-139r-40,0r-20,44r39,0"},{"d":"17,2v5,-37,17,-115,14,-168r32,-4r-16,170xm36,-215v-3,-23,40,-36,40,-7v3,23,-40,36,-40,7","w":81},{"d":"86,85v-122,-59,-59,-323,39,-352r7,15v-86,55,-126,246,-33,322","w":127},{"d":"60,91r-29,0v1,-77,2,-135,2,-174v0,-38,-1,-100,-2,-189r28,0v-1,87,-2,150,-2,189v0,39,1,97,3,174","w":90},{"d":"101,-265v-11,89,-18,144,-20,166v-2,24,-8,84,-17,182r-80,2r5,-30v25,1,41,1,50,1r31,-296v-8,0,-25,1,-52,3r5,-30","w":127},{"d":"184,-33v-2,-8,53,-123,48,-134r30,-2v8,9,-78,164,-74,169r-23,0v-3,-19,-22,-119,-30,-137v-7,24,-55,117,-60,137r-23,0v2,-3,-41,-162,-37,-167r31,-2v-1,9,24,131,25,136v-4,-9,59,-126,55,-134r28,0v0,2,26,136,30,134","w":266,"k":{".":21,",":21}},{"d":"227,-35v-4,-10,80,-183,74,-194r32,0v0,9,-17,48,-51,116v-34,68,-51,106,-52,113r-22,0v-1,-14,-40,-179,-43,-193v0,16,-77,178,-76,193r-22,0v6,-3,-57,-230,-54,-229r32,0v2,4,38,188,39,194v-6,-10,79,-188,75,-194r29,0v-1,5,41,185,37,194r2,0","w":323,"k":{"-":7,".":14,":":7,";":7,",":14,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":10,"J":9,"A":7}},{"d":"94,-105v9,-5,38,-52,40,-62r34,-2v-2,17,-55,66,-63,80v8,11,49,77,53,89r-37,2v-3,-12,-28,-66,-37,-75v-8,8,-44,60,-45,73r-35,2v5,-22,57,-73,72,-92v-6,-7,-46,-68,-48,-77r37,-2v1,9,23,57,29,64","w":178},{"d":"132,-267r-5,30v-24,-1,-41,-1,-49,-1v-9,73,-16,125,-19,155v-2,16,-6,64,-13,141v8,0,26,-2,52,-4r-5,31r-79,-2v9,-72,16,-127,20,-166v2,-24,8,-84,17,-182","w":127},{"d":"83,-102r-4,23r-72,2r4,-22","w":90},{"d":"7,-50r104,-135r36,0v-4,25,-9,69,-16,132v10,0,22,-1,33,-2r-7,28r-28,0v-2,22,-5,50,-7,85r-30,0v4,-30,7,-59,10,-85r-94,0xm117,-160r-82,108v19,0,42,0,70,-1v5,-36,8,-72,12,-107","w":179},{"d":"10,-20v-4,-26,45,-43,46,-9v5,27,-46,44,-46,9xm23,-140v-4,-26,45,-43,46,-9v5,27,-46,44,-46,9","w":90},{"d":"134,-38v-5,-14,81,-179,77,-191r43,0v-7,53,-6,171,-2,229r-34,0v-2,-60,8,-136,7,-204v-8,39,-80,165,-88,204r-23,0v-1,-27,-38,-182,-43,-204r-34,204r-29,0v-1,-7,49,-218,46,-229r43,0v-2,27,34,169,37,191","w":280},{"d":"79,-30v0,-10,55,-122,50,-137r30,-2v6,22,-76,157,-78,171v-21,52,-24,71,-81,76r1,-25v28,1,59,-27,58,-56v5,-25,-47,-144,-44,-164r35,-2v-1,20,24,126,29,139","w":163,"k":{".":21,",":21}},{"d":"39,-48v12,0,19,10,18,23v0,28,-19,58,-57,90r-8,-11v17,-20,24,-27,28,-56v-19,-12,-5,-46,19,-46","w":90},{"d":"10,-103v90,-6,-3,-109,62,-146v16,-9,33,-16,55,-18r4,21v-69,6,-60,59,-51,112v4,23,-26,40,-42,44v17,0,35,16,34,34v3,14,-22,63,-22,77v0,20,16,35,50,43r-13,22v-44,-10,-66,-27,-66,-52v0,-17,22,-71,22,-87v0,-16,-20,-22,-36,-24","w":127},{"d":"73,-213v0,23,-9,63,-27,119r-11,0v0,-53,-10,-139,24,-139v9,0,14,7,14,20xm10,-20v-4,-26,45,-43,46,-9v5,27,-46,44,-46,9","w":90},{"d":"142,-167v-5,45,-24,40,-58,87v-25,34,-40,49,-40,56v34,0,63,-1,87,-3r-3,27r-122,0v4,-44,18,-35,57,-85v28,-36,43,-51,43,-58v-36,0,-64,1,-84,2r3,-26r117,0","w":150},{"d":"15,-73v0,-66,58,-112,130,-95r-7,27v-51,-19,-94,14,-94,64v0,56,53,72,93,40r-4,26v-46,37,-118,6,-118,-62","w":151},{"d":"36,-123v0,-47,-15,-127,22,-127v10,0,15,6,15,19v-1,33,-18,82,-30,108r-7,0","w":86,"k":{"J":21,"A":21}},{"d":"101,-18v88,0,69,-109,78,-211r33,0r-13,116v-8,79,-42,118,-102,118v-52,0,-76,-28,-75,-87v1,-52,7,-74,11,-147r33,0r-15,143v1,45,10,68,50,68","w":225,"k":{"A":4}},{"d":"85,-188v-2,-34,-15,-63,17,-64v10,0,15,4,15,12v0,9,-7,27,-20,52r3,3v35,-17,44,-38,59,-16v14,32,-22,33,-57,29r-2,3v21,21,32,35,32,42v0,10,-15,22,-24,22v-9,0,-15,-19,-19,-56r-4,0v-16,34,-28,51,-36,51v-37,-18,-17,-35,27,-60r-1,-4v-12,-5,-53,4,-53,-20v11,-39,27,-22,59,8"},{"d":"131,-233v50,0,88,46,88,102v0,68,-50,138,-118,138v-51,0,-89,-47,-89,-103v0,-70,51,-137,119,-137xm108,-18v89,5,118,-188,16,-191v-89,-5,-118,188,-16,191","w":231,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"108,-187v45,0,62,36,63,76v1,56,-33,115,-87,115v-44,0,-63,-35,-63,-76v-1,-57,33,-115,87,-115xm90,-19v35,0,53,-45,52,-86v0,-29,-10,-58,-40,-58v-58,0,-78,144,-12,144","w":192},{"d":"107,-50v-2,-32,-76,-35,-76,-78v0,-31,24,-49,52,-52v2,-22,5,-40,5,-53r20,0v-1,6,-3,23,-7,53v17,0,29,2,39,5r-8,25v-26,-17,-98,-6,-68,29v20,14,78,35,70,62v0,31,-18,48,-52,53v-2,20,-3,37,-4,52r-19,0v1,-7,3,-24,6,-51v-18,0,-35,-1,-50,-5r7,-26v24,12,86,16,85,-14","w":159},{"d":"79,0r-31,0r14,-141r-40,20r-6,-16r65,-46r17,0v-5,38,-10,73,-13,106v-3,25,-4,51,-6,77","w":122},{"d":"39,-48v12,0,19,10,18,23v0,28,-19,58,-57,90r-8,-11v17,-20,24,-27,28,-56v-19,-12,-5,-46,19,-46xm22,-140v-4,-26,45,-43,46,-9v5,27,-46,44,-46,9","w":90},{"d":"83,-102r-4,23r-72,2r4,-22","w":90,"k":{"Y":10,"W":7,"V":7,"T":10}},{"d":"153,90r-182,0r0,-22r182,0r0,22","w":175},{"d":"112,-31v0,-43,-36,-44,-92,-45v6,-25,13,-61,21,-109r103,0r-4,27v-22,-3,-49,-4,-80,-4v-2,9,-5,29,-10,62v112,-9,117,94,52,135v-28,18,-58,28,-92,29r-3,-21v49,-4,105,-25,105,-74","w":165},{"d":"12,-100v0,-83,75,-151,164,-127r-7,28v-70,-28,-126,29,-126,96v0,64,58,101,124,75r-5,26v-85,26,-150,-20,-150,-98","w":177},{"d":"83,-102r-4,23r-72,2r4,-22","w":90},{"d":"74,-128v0,16,20,22,37,24r-3,26v-90,5,2,109,-62,145v-15,8,-32,16,-54,19r-6,-22v66,-8,59,-55,51,-111v-3,-22,24,-41,43,-43v-17,-1,-36,-17,-34,-36v-2,-12,20,-63,20,-75v0,-22,-15,-36,-47,-44r11,-22v45,8,67,25,67,52v3,11,-25,76,-23,87","w":127},{"d":"-1,-64v32,-58,69,-47,124,-34v13,0,25,-6,36,-20r15,8v-30,53,-69,43,-119,29v-13,0,-27,9,-41,26","w":172},{"d":"106,-143v11,-3,55,-77,58,-86r35,0v1,9,-77,96,-81,102v8,6,68,114,67,127r-36,0v-1,-12,-45,-104,-55,-108v-8,9,-63,95,-64,108r-39,0v-3,-5,93,-123,93,-126v-4,-3,-57,-97,-57,-103r36,0v-1,9,38,81,43,86","w":203},{"d":"44,-181v0,-69,122,-82,124,-11v1,31,-25,46,-43,59v75,36,39,137,-41,137v-35,0,-66,-23,-66,-60v0,-34,22,-54,55,-74v-19,-13,-29,-30,-29,-51xm88,-20v27,1,52,-18,51,-45v0,-20,-16,-38,-46,-55v-47,5,-71,100,-5,100xm109,-220v-20,0,-39,13,-38,34v0,17,12,32,35,44v41,-11,50,-75,3,-78","w":188},{"d":"109,-143v35,0,57,31,57,66v1,47,-38,85,-84,85v-87,-1,-72,-145,-31,-195v24,-29,56,-46,100,-49r1,21v-62,7,-86,37,-100,95v16,-12,30,-23,57,-23xm86,-16v30,2,49,-28,49,-57v0,-27,-19,-48,-47,-47v-24,0,-39,9,-39,41v0,36,9,62,37,63","w":186},{"d":"36,-123v0,-47,-15,-127,22,-127v10,0,15,6,15,19v-1,33,-18,82,-30,108r-7,0xm102,-123v0,-47,-15,-127,22,-127v10,0,15,6,15,19v-1,33,-18,82,-30,108r-7,0","w":156,"k":{"J":21,"A":21}},{"d":"60,-56v0,44,33,40,59,24r-4,23v-32,24,-81,17,-81,-37v0,-15,3,-46,10,-94v-6,0,-16,0,-29,1r4,-26v11,1,21,2,29,2v1,-7,0,-8,7,-51r27,-2v-2,12,-6,30,-9,53v11,0,27,-1,47,-2r-3,26v-19,-1,-36,-1,-48,-1v-6,39,-9,67,-9,84","w":133},{"d":"38,-229v68,-2,142,-8,143,54v1,63,-60,87,-126,82v-3,28,-5,59,-6,93r-34,0v4,-25,24,-174,23,-229xm152,-168v0,-36,-46,-45,-86,-36r-9,89v56,3,95,-14,95,-53","w":188,"k":{".":21,",":21,"J":10,"A":7}},{"d":"127,-229v-8,21,-10,197,-49,215v-17,19,-56,23,-86,15r5,-26v53,19,82,-13,86,-69v3,-53,9,-98,10,-135r34,0","w":138,"k":{"A":4}},{"d":"165,-38v-2,-63,8,-128,10,-191r30,0v-2,14,-8,51,-14,109v-5,42,-8,82,-10,120r-23,0v3,-5,-109,-193,-102,-199r-2,0v4,66,-10,135,-13,199r-27,0v3,-17,8,-57,15,-120v5,-41,7,-78,7,-109r34,0v-1,12,95,183,95,191","w":218},{"d":"139,-161v4,-25,23,-37,48,-28r-5,24v-19,1,-32,3,-35,12v28,58,-31,112,-94,91v-7,5,-11,12,-11,21v-3,35,119,-14,119,51v0,48,-49,81,-98,81v-74,0,-91,-77,-33,-99v-20,-17,-9,-41,9,-59v-10,-4,-20,-25,-20,-41v0,-60,73,-78,120,-53xm134,22v0,-35,-53,-16,-90,-24v-38,16,-31,73,22,73v34,0,68,-18,68,-49xm83,-77v25,0,44,-18,44,-43v-1,-21,-16,-34,-38,-34v-26,0,-44,19,-44,44v0,22,15,33,38,33","w":182},{"d":"59,-171v6,36,-42,155,20,152v51,-3,65,-93,62,-148r30,-4v-10,94,-16,108,-9,170r-30,4v-2,-9,1,-27,-2,-41v-20,53,-109,65,-109,-9v0,-18,9,-100,8,-120","w":188},{"d":"138,-125v23,4,43,23,41,51v-5,74,-77,79,-164,74v2,-17,8,-56,15,-120v4,-41,7,-78,8,-109v60,0,138,-12,139,47v1,28,-21,48,-39,57xm48,-25v45,3,106,2,102,-47v5,-32,-50,-42,-95,-37v-3,31,-6,59,-7,84xm57,-133v47,1,91,-1,91,-42v0,-36,-52,-35,-84,-29v0,3,-3,26,-7,71","w":196},{"d":"15,0v5,-27,25,-175,23,-229r130,0r-4,26v-29,-1,-62,-2,-100,-2v-1,14,-3,42,-7,81v26,0,52,-1,77,-2r-3,26v-24,-1,-49,-2,-76,-2v-5,46,-8,80,-9,102r-31,0","w":163,"k":{".":21,",":21,"u":5,"s":5,"q":5,"o":5,"g":5,"e":5,"a":10,"J":10,"A":7}},{"d":"163,-98r-2,16r-131,78r-11,-22r115,-62r0,-4r-102,-62r16,-22"},{"d":"168,-229r-3,22v-15,16,-115,163,-120,183v23,0,59,-2,107,-5r-4,29r-143,0r4,-21v15,-20,120,-161,124,-186v-24,0,-59,1,-104,4r3,-26r136,0","w":175},{"d":"15,0v5,-28,25,-174,23,-229r33,0v-2,14,-9,51,-13,109r-9,120r-34,0","w":86},{"d":"20,-120v-3,-51,64,-59,110,-48r-8,25v-28,-14,-98,-5,-68,31v21,13,77,34,69,62v6,55,-68,61,-119,49r8,-26v24,11,86,14,85,-15v-1,-28,-88,-45,-77,-78","w":141},{"d":"12,-100v0,-86,81,-152,175,-127r-7,29v-78,-27,-137,23,-137,94v-1,58,45,97,109,82r4,-82r30,0v-3,22,-8,56,-9,99v-82,31,-165,-11,-165,-95","w":204},{"d":"160,-99r-2,22r-58,0r-6,64r-22,0r7,-64r-58,0r3,-22r57,0r7,-65r21,0r-6,65r57,0"},{"d":"9,-57v0,-63,50,-113,120,-110v6,-6,18,-6,28,-8v-14,87,-20,107,-13,173r-29,5v-3,-8,3,-30,-3,-40v-15,27,-35,41,-59,41v-31,-1,-43,-29,-44,-61xm125,-147v-57,0,-85,32,-85,87v0,53,43,49,61,13v18,-35,22,-53,24,-100","w":172},{"d":"15,0v3,-17,24,-185,23,-229r33,0v-4,14,-20,169,-25,205v27,0,62,-1,105,-2r-4,26r-132,0","w":163,"k":{"\"":18,"'":18,"y":9,"w":9,"v":9,"Y":18,"W":10,"V":10,"T":18}},{"d":"10,-20v-4,-26,45,-43,46,-9v5,27,-46,44,-46,9","w":90},{"d":"52,-58v1,-18,83,-96,84,-111r36,1v-4,17,-51,55,-63,68v19,19,44,71,47,100r-31,2v-1,-22,-22,-68,-35,-83v-20,19,-43,54,-44,81r-29,2v2,-14,26,-198,23,-249r32,-2v2,27,-24,164,-20,191","w":175},{"w":74},{"d":"15,0v6,-35,24,-169,23,-229r33,0r-12,98r101,0v3,-25,5,-58,6,-98r34,0v-2,15,-8,51,-14,109v-5,41,-8,81,-9,120r-33,0v3,-19,7,-55,13,-109r-100,0v-3,26,-5,62,-8,109r-34,0","w":215},{"d":"44,-256v-3,14,29,299,28,309r-27,0v3,-10,-29,-301,-27,-309r26,0","w":86},{"d":"108,-175v40,0,68,35,68,77v0,54,-37,105,-93,105v-39,0,-68,-37,-68,-80v0,-54,38,-102,93,-102xm89,-15v35,0,57,-43,57,-78v0,-30,-14,-60,-44,-60v-35,0,-57,42,-57,78v0,30,15,60,44,60","w":190},{"d":"15,-64v-4,-76,64,-134,132,-98v6,-6,18,-6,29,-7v-2,11,-7,51,-15,119v-3,29,-7,71,-11,128r-29,2r14,-119v-15,28,-37,43,-64,43v-36,0,-54,-30,-56,-68xm145,-140v-47,-31,-100,8,-100,66v0,60,47,69,75,30v18,-26,23,-57,25,-96","w":191},{"d":"38,-229v96,-10,163,15,163,99v0,72,-55,135,-128,132v-12,0,-31,0,-58,-2v2,-17,8,-56,15,-120v4,-41,7,-78,8,-109xm48,-24v72,16,123,-37,123,-103v0,-56,-44,-88,-107,-77","w":212,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"9,54v-6,-15,124,-198,115,-215v-24,0,-59,2,-106,5r4,-29r135,0v11,34,-119,222,-118,243","w":162},{"d":"166,-229r-4,26v-30,-1,-63,-2,-97,-2r-7,74v30,0,56,-1,79,-2r-3,26v-24,-1,-50,-2,-78,-2v-3,30,-6,59,-8,85v37,0,72,-1,106,-3r-4,27r-135,0v2,-17,8,-56,15,-120v5,-41,7,-78,8,-109r128,0","w":173},{"d":"142,-229v-5,7,63,223,58,229r-35,0v0,-11,-4,-36,-13,-74r-97,0v-10,21,-25,58,-28,74r-34,0v1,-3,19,-40,55,-112v36,-71,54,-110,55,-117r39,0xm146,-97r-29,-110v0,4,-17,41,-52,110r81,0","w":216,"k":{"\"":18,"'":18,"y":4,"w":4,"v":4,"Y":9,"W":5,"V":5,"U":4,"T":9}},{"d":"38,-182v40,-10,108,-10,108,38v0,27,-20,42,-48,56v63,10,58,104,3,129v-31,14,-63,27,-99,29r-2,-21v46,-5,112,-27,113,-75v0,-28,-26,-43,-77,-43r6,-22v31,1,77,-12,76,-42v5,-30,-55,-33,-85,-25","w":166},{"d":"131,-233v51,0,88,46,88,102v0,60,-33,102,-70,127v47,6,47,27,55,80r-32,2v-10,-61,-7,-70,-71,-71v-51,0,-89,-47,-89,-103v0,-69,50,-137,119,-137xm108,-18v89,5,118,-188,16,-191v-89,-5,-118,188,-16,191","w":231,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"72,-249r-13,119v20,-52,109,-63,109,10v0,18,-9,100,-8,120r-30,2r11,-114v2,-47,-50,-45,-68,-11v-24,29,-23,82,-27,123r-29,2v1,-11,7,-55,15,-133v5,-47,7,-85,7,-116","w":188},{"d":"176,-177v0,34,-27,51,-48,64v39,19,37,51,56,113r-32,0v-17,-66,-13,-106,-97,-98v-4,38,-7,71,-7,98r-33,0v2,-17,8,-56,15,-120v4,-41,7,-78,8,-109v62,-2,138,-9,138,52xm146,-171v6,-35,-48,-41,-81,-33v-1,13,-4,41,-8,83v51,3,92,-11,89,-50","w":199},{"d":"60,-130v26,-63,119,-53,119,25v0,77,-64,136,-133,98v-2,11,-18,7,-29,9v2,-11,6,-55,15,-133v5,-47,8,-85,8,-116r33,-2v-3,38,-15,84,-13,119xm49,-28v49,30,100,-9,100,-66v0,-60,-47,-69,-75,-30v-18,26,-22,58,-25,96","w":194},{"d":"94,-35v-5,-7,95,-183,86,-194r32,0v10,7,-123,225,-115,229r-22,0v5,-20,-68,-208,-62,-229r32,0v-3,19,47,181,49,194","w":202,"k":{"-":7,".":14,":":7,";":7,",":14,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":10,"J":9,"A":7}},{"d":"15,-71v0,-72,70,-129,132,-93v11,6,15,17,15,30v0,50,-53,49,-118,53v-6,68,59,73,104,43r-4,26v-50,36,-129,14,-129,-59xm46,-101v50,-4,80,0,88,-32v-5,-26,-49,-22,-67,-7v-10,9,-18,22,-21,39","w":171},{"d":"187,-229r-4,25v-22,-1,-45,-2,-68,-2r-18,206r-33,0v4,-23,20,-159,23,-206v-17,0,-40,1,-70,2r4,-25r166,0","k":{"-":10,".":21,":":9,";":9,",":21,"z":14,"y":14,"x":14,"w":14,"v":14,"u":5,"s":5,"r":14,"q":5,"p":14,"o":5,"n":14,"m":14,"g":5,"e":5,"d":21,"c":21,"a":10,"J":10,"A":7}},{"d":"-10,65v43,-29,39,-163,41,-231r32,-4r-18,180v-4,38,-20,61,-48,69xm36,-215v-3,-23,39,-36,40,-7v4,23,-40,36,-40,7","w":81},{"d":"77,-33v1,-4,62,-122,56,-134r32,-2v9,10,-89,165,-85,169r-23,0v5,-21,-45,-149,-42,-167r32,-2v-3,14,32,123,30,136","w":168,"k":{".":21,",":21}},{"d":"207,-134v-1,13,-25,54,-33,62v7,6,41,59,40,72r-36,0v-2,-9,-16,-44,-25,-46v-26,34,-56,51,-91,51v-33,1,-57,-25,-57,-58v0,-44,31,-66,59,-83v-50,-33,-19,-98,35,-97v27,0,50,15,50,43v0,27,-20,45,-38,54v13,6,29,25,52,49v6,-9,10,-24,12,-47r32,0xm78,-125v-49,14,-62,103,0,105v18,0,44,-14,67,-42v-15,-18,-43,-52,-67,-63xm97,-211v-39,4,-39,53,0,66v31,-8,36,-65,0,-66","w":233},{"d":"49,-163v5,-59,23,-97,84,-87r-5,22v-45,-7,-48,18,-53,65v11,0,26,-1,46,-2r-3,26v-22,-1,-37,-1,-46,-1v-13,80,9,203,-62,219r-7,-14v46,-36,32,-127,44,-205v-7,0,-19,0,-36,1r4,-26v15,1,26,2,34,2","w":119,"k":{".":21,",":21,"u":5,"s":5,"q":5,"o":5,"g":5,"e":5,"a":10,"J":10,"A":7}},{"d":"100,-187v90,3,69,152,29,204v-25,32,-57,51,-103,54r-3,-21v59,-3,98,-44,106,-110v-13,16,-31,24,-55,24v-35,1,-56,-29,-56,-64v0,-47,34,-89,82,-87xm92,-59v21,0,42,-10,42,-39v0,-34,-12,-64,-39,-65v-29,-1,-47,28,-47,56v-1,27,17,49,44,48","w":185},{"d":"163,-154r-115,62r0,4r101,62r-16,22r-114,-78r1,-16r131,-78"},{"d":"164,-136r-2,23r-137,0r3,-23r136,0xm157,-63r-3,22r-137,0r3,-22r137,0"},{"d":"31,-267v120,60,58,322,-39,352r-8,-15v85,-56,126,-246,33,-322","w":127},{"d":"59,-130v26,-63,119,-53,119,25v0,76,-65,137,-132,98v-3,33,-6,62,-8,86r-31,1v17,-141,27,-170,19,-246r30,-5v3,8,-3,29,3,41xm48,-28v49,29,100,-8,100,-66v0,-60,-47,-69,-75,-30v-18,26,-22,58,-25,96","w":193},{"d":"65,-230v23,0,39,16,39,38v0,51,-86,67,-86,9v0,-26,22,-47,47,-47xm71,-36v-4,-51,87,-66,87,-9v4,51,-87,66,-87,9xm3,-2v-10,-9,165,-218,154,-227r20,2v9,8,-167,217,-155,227xm111,-13v16,0,28,-15,27,-31v0,-14,-8,-24,-21,-24v-28,-3,-40,55,-6,55xm58,-160v15,1,28,-15,27,-31v-1,-13,-8,-24,-21,-24v-16,-1,-28,16,-27,32v0,14,8,23,21,23"},{"w":74},{"d":"190,-259v85,0,136,59,137,137v2,59,-35,127,-91,127v-29,0,-37,-21,-41,-44v-16,30,-35,44,-58,44v-27,0,-38,-28,-38,-59v0,-55,37,-118,93,-118v18,0,24,8,33,16r4,-11r21,-4v-8,32,-26,75,-26,121v0,21,8,31,25,31v31,1,50,-67,49,-101v-1,-65,-39,-112,-110,-112v-83,0,-141,85,-141,167v0,86,72,144,158,113r1,30v-109,27,-186,-41,-186,-144v0,-98,70,-193,170,-193xm216,-137v-44,-37,-93,35,-90,81v4,55,42,39,63,2v13,-23,24,-51,27,-83","w":344},{"d":"134,-138v-5,62,-52,81,-94,115v32,0,63,-1,94,-2r-6,25r-121,0r6,-27v28,-16,91,-56,91,-102v0,-33,-40,-38,-78,-30r6,-25v46,-10,105,1,102,46","w":155},{"d":"148,0v-19,-31,-45,-113,-91,-115v-3,27,-6,66,-9,115r-33,0v2,-17,8,-56,15,-120v4,-41,7,-78,8,-109r33,0v-2,14,-6,46,-12,95v15,1,22,-13,55,-45v29,-29,42,-47,42,-50r34,0v-2,14,-89,90,-98,100v14,-5,90,118,91,129r-35,0","w":198},{"d":"130,2v-4,-36,39,-155,-21,-150v-52,4,-62,92,-63,148r-29,2v10,-92,16,-102,9,-168r30,-5v3,8,-3,30,3,41v20,-53,108,-63,108,10v0,18,-9,100,-8,120","w":188},{"d":"168,-120r-23,15r-46,-114r-4,0r-70,114r-20,-15r88,-129r14,0","w":172},{"d":"-18,53v-2,-7,101,-295,93,-309r25,0v3,5,-100,299,-93,309r-25,0","w":96},{"d":"73,-249r-14,118v-6,55,-9,98,-10,130r-32,4r17,-134v5,-48,7,-86,7,-116","w":82},{"d":"15,-64v-4,-76,64,-134,132,-98v2,-24,4,-52,6,-85r33,-1v-11,64,-27,166,-20,248r-27,2v-3,-9,-1,-26,-4,-41v-15,28,-37,43,-64,43v-36,0,-54,-30,-56,-68xm145,-140v-47,-31,-100,7,-100,66v0,60,48,69,76,30v18,-26,22,-57,24,-96","w":193},{"d":"134,-169r-11,28v-35,-9,-65,1,-68,38v-3,40,-7,74,-9,103r-29,2v10,-92,16,-102,9,-168r30,-5v3,9,-2,22,3,26v22,-28,38,-33,75,-24","w":130,"k":{".":21,",":21}},{"d":"59,-130v16,-51,98,-60,101,0v21,-51,108,-64,108,10v0,22,-9,98,-8,120r-30,2r10,-112v0,-24,-4,-38,-25,-38v-56,0,-61,93,-61,148r-30,2r10,-112v4,-49,-42,-44,-63,-14v-19,28,-21,88,-25,124r-29,2v10,-92,16,-102,9,-168r30,-5v3,10,-3,30,3,41","w":288},{"d":"94,-105v-6,-12,70,-116,66,-124r34,0v-15,38,-90,105,-95,154v-2,23,-4,49,-4,75r-34,0v7,-44,10,-71,10,-81v0,-50,-47,-110,-58,-148r34,0v0,7,47,117,47,124","w":184,"k":{"-":7,".":14,":":7,";":7,",":14,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":10,"J":9,"A":7}},{"d":"59,-248r25,57r-20,0r-39,-57r34,0","w":98}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+384-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("I)W0;c4!jki3I2[LecR`T)TiSt40Wci3Stb`jkoJWUPX-1!7%0a$jMuPSSeS:Rmse.T,a.&!>Q0^DYXu:caJUMg%a2@~>`0|4]4se.&,-koi|[{p4[,7eRAI.ce0@Q-EkQ[1o`mu.2^CSY],a)z,MR~s;dRz4!UAa0R5]cbkWUoye7Wc>.,iIS&[Tz&`Mt^:S2iXWYbmkk&7DJ4,;)[!I2T7IM~g%.&Xsv07DJ&X;v0,Dc~[;ce!j2~J%kT3W7^J;Y[,jYai:d!Ljk-5-7^6j1!6S7{F>Jede0,3I.P5%1gXjSW[-k^Qe)u`jSW[S2^$;t0P;)[tWkR3WYo5sc[tWU,3eti`;)o1Wk40scU1:S4!Wk01S2^$;t!gb2igDJo&A2vzR)YTbIDa4>%@oM.]UkS-Wj;se:|{u7$Q[cJ5gyCXm36,~`1!0tdp^rLPiEF[sd@5;)i$-Sog;tp3j)i1e)^u;k]gIkW6s7{Lj.~X>`XCjM[Jkt4;jU0e%SA;jU0iIM{g")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":181,"face":{"font-family":"Candara","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 14 5 2 3 3 3 9 2 4","ascent":"261","descent":"-99","x-height":"7","bbox":"-29 -272 333 91","underline-thickness":"3.51562","underline-position":"-21.6211","slope":"-6","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * � 2005 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Candara is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Description:
 * Candara is a casual humanist sans with verticals showing a graceful entasis on
 * stems, high-branching arcades in the lowercase, large apertures in all open
 * forms, and unique ogee curves on diagonals. The resultant texture is lively but
 * not intrusive, and makes for a  friendly and readable text.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Gary Munch
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"84,85v-121,-61,-61,-322,39,-352r6,24v-75,49,-113,238,-31,304","w":127},{"d":"9,-23v-4,-33,59,-55,59,-11v4,35,-58,52,-59,11xm20,-133v-4,-33,59,-55,59,-11v4,35,-58,52,-59,11","w":90},{"d":"86,-42v1,-11,43,-105,37,-124r45,-3v6,23,-73,157,-75,170v-19,50,-34,74,-92,77r0,-34v110,-4,13,-158,12,-211r50,-2v-3,24,21,105,20,127r3,0","w":169,"k":{".":21,",":21}},{"d":"39,-181v0,-70,129,-82,131,-11v0,27,-18,48,-40,56r-1,3v26,15,40,36,40,63v1,45,-41,74,-86,74v-39,0,-69,-25,-69,-61v0,-36,25,-60,53,-71r0,-3v-19,-12,-28,-29,-28,-50xm87,-27v23,1,39,-18,39,-40v0,-21,-12,-37,-36,-49v-34,7,-56,87,-3,89xm107,-144v26,-8,43,-69,0,-69v-42,2,-37,55,0,69","w":191},{"d":"25,-235v53,1,96,6,96,48v0,33,-27,56,-54,66r-6,27r-22,0r-3,-38v27,-9,40,-21,40,-39v0,-19,-19,-29,-58,-30xm11,-23v-5,-34,59,-54,59,-11v5,35,-59,53,-59,11","w":127},{"d":"189,-43v-2,-8,46,-113,41,-124r44,-2v6,7,-78,163,-73,169r-39,0v0,-15,-20,-106,-21,-121r-3,0v-2,14,-47,107,-48,121r-39,0v3,-9,-39,-157,-35,-167r47,-2v1,14,13,116,18,126v-2,-8,50,-116,47,-124r39,0v0,9,18,118,22,124","w":274,"k":{".":21,",":21}},{"d":"104,-30v76,-3,56,-125,66,-199r46,0v-2,16,-6,56,-13,118v-8,78,-43,117,-103,117v-57,0,-85,-26,-80,-89r11,-146r49,0v3,25,-54,202,24,199","w":228,"k":{"A":4}},{"d":"74,-171v0,13,-10,74,-11,88v-3,24,-4,52,-6,83r-45,2v2,-15,6,-43,11,-85v3,-29,5,-56,3,-82xm32,-213v-5,-31,55,-50,55,-10v4,32,-53,49,-55,10","w":85},{"d":"216,-134v-1,15,-29,48,-36,59v8,6,39,61,39,75r-49,0v-2,-9,-10,-39,-20,-40v-24,30,-52,45,-83,45v-36,0,-62,-23,-61,-58v0,-34,19,-59,56,-75r0,-3v-52,-36,-15,-102,44,-102v28,0,54,17,54,45v0,24,-16,40,-38,54v10,5,22,22,41,37v5,-7,9,-19,11,-37r42,0xm83,-117v-34,10,-52,90,2,90v16,0,40,-12,55,-35v-13,-17,-35,-45,-57,-55xm104,-204v-36,1,-36,46,-2,57v26,-6,35,-56,2,-57","w":239},{"d":"130,-267r-6,37v-20,-1,-34,-1,-43,-1r-30,282v8,0,24,-1,46,-3r-6,37r-78,-2r36,-348","w":127},{"d":"84,-106r-5,31r-72,3r5,-32","w":90},{"d":"105,-265r-36,348r-81,2r6,-37v20,1,35,1,44,1r29,-283v-8,0,-24,2,-46,4r6,-37","w":127},{"d":"189,-178v0,33,-23,55,-50,64r0,3v34,19,36,55,53,111r-49,0v-18,-65,-7,-92,-74,-91v-3,32,-5,63,-6,91r-48,0v2,-16,7,-56,14,-120v4,-43,7,-79,8,-109v65,0,152,-14,152,51xm88,-123v62,10,82,-75,18,-74v-10,0,-19,1,-27,3v-1,10,-3,34,-6,71r15,0","w":209},{"d":"97,-110v9,-2,29,-50,31,-57r47,-2v0,10,-58,70,-61,78v5,6,49,82,50,91r-51,2v-3,-13,-20,-56,-32,-69v-4,4,-33,61,-33,67r-49,2v0,-13,62,-82,67,-93v-5,-4,-43,-69,-43,-76r51,-2v0,7,19,55,23,59","w":180},{"d":"84,-106r-5,31r-72,3r5,-32","w":90},{"d":"12,-22v0,-37,59,-53,58,-9v0,29,-21,63,-63,100r-14,-12v17,-18,27,-37,29,-58v-7,-5,-10,-11,-10,-21xm20,-133v-4,-33,59,-55,59,-11v4,35,-58,52,-59,11","w":90},{"d":"42,-256v-3,14,29,299,28,309r-27,0v3,-10,-29,-301,-27,-309r26,0","w":88},{"d":"62,-248r24,57r-31,0r-38,-57r45,0","w":98},{"d":"140,0v-4,-9,-42,-121,-69,-107v-3,27,-6,63,-8,107r-48,0v2,-16,7,-56,14,-120v4,-43,7,-79,8,-109r49,0v-2,15,-6,46,-11,92v12,1,18,-12,43,-43v23,-28,33,-45,33,-49r53,0v-1,10,-78,92,-88,94v7,14,25,25,46,67v19,38,30,60,30,68r-52,0","w":207},{"d":"9,-23v-4,-33,59,-55,59,-11v4,35,-58,52,-59,11","w":90},{"d":"1,-66v31,-58,65,-52,118,-37v13,0,27,-7,39,-20r18,16v-31,55,-64,48,-115,34v-13,0,-27,8,-41,23","w":177},{"d":"147,-167v-6,46,-17,40,-51,85v-24,31,-36,40,-35,51v25,0,50,-1,75,-3r-5,34r-126,0r6,-33v4,-3,87,-93,83,-103v-26,0,-51,1,-73,3r4,-34r122,0","w":150},{"d":"161,-104r-3,32r-54,0r-6,60r-30,0r6,-60r-53,0r3,-32r54,0r6,-59r30,0r-6,59r53,0"},{"d":"-20,53v-1,-8,99,-296,92,-309r30,0v3,5,-98,299,-92,309r-30,0","w":96},{"d":"78,-128v1,14,20,24,37,24r-2,26v-91,3,4,111,-62,145v-15,8,-32,16,-53,19r-7,-28v61,-11,54,-52,46,-105v-4,-24,26,-39,42,-44v-17,-1,-35,-17,-34,-35v-2,-14,20,-57,20,-71v0,-23,-14,-37,-42,-43r12,-27v34,4,68,23,67,53v3,15,-25,73,-24,86","w":127},{"d":"7,-56r100,-129r46,0v-3,18,-7,60,-15,126v10,0,20,-1,30,-2r-8,39r-26,0v-2,22,-4,48,-6,80r-45,0v2,-14,5,-40,10,-80r-85,0xm107,-147r-66,89v14,0,33,0,57,-1v3,-16,6,-45,12,-88r-3,0","w":183},{"d":"54,5v-63,0,-51,-101,-16,-137v20,-21,49,-34,90,-35v9,-8,27,-6,42,-8v-11,92,-18,109,-11,173r-44,5v-3,-9,2,-26,-3,-34v-13,24,-32,36,-58,36xm125,-139v-49,-1,-70,30,-71,78v-1,45,33,39,49,10v15,-28,19,-52,22,-88"},{"d":"101,-87v27,4,46,27,46,57v0,66,-79,96,-144,100r-3,-29v42,-4,101,-23,102,-65v0,-24,-24,-37,-70,-37r6,-29v30,1,66,-13,66,-39v0,-27,-46,-27,-71,-21r6,-33v36,-9,113,-8,108,41v-3,25,-22,46,-45,52","w":168},{"d":"100,-53v-7,-27,-70,-33,-70,-72v0,-31,25,-52,54,-55v3,-28,4,-45,4,-53r24,0v-1,5,-3,22,-7,52v18,0,32,2,41,5r-9,34v-18,-9,-65,-16,-66,9v9,26,70,29,70,71v0,32,-19,51,-55,57v-2,22,-4,38,-4,51r-23,0v1,-6,3,-23,6,-50v-17,0,-34,-1,-51,-5r9,-34v21,9,77,13,77,-10","w":159},{"d":"-11,56v38,-31,34,-154,38,-222r48,-5r-19,176v-5,43,-23,68,-57,75xm32,-213v-5,-31,55,-50,55,-10v4,32,-53,49,-55,10","w":85},{"d":"176,-161r-3,32r-36,0r-16,34r48,0r-3,31r-59,0v-16,36,-26,57,-28,64r-25,0v2,-4,12,-26,30,-64r-32,0v-16,36,-26,57,-28,64r-25,0v3,-7,3,-7,30,-64r-24,0r3,-31r36,0r16,-34r-48,0r3,-32r60,0v17,-37,25,-60,27,-69r25,0v-1,5,-11,28,-30,69r33,0v17,-37,26,-60,28,-69r25,0v-1,5,-12,28,-31,69r24,0xm115,-129r-33,0r-16,34r33,0"},{"d":"162,-101r-2,25r-131,73r-10,-33r103,-50r0,-4r-92,-51r17,-33"},{"d":"195,-259v84,0,134,56,136,136v2,73,-51,155,-123,119v-8,-7,-13,-17,-10,-28r-3,0v-15,25,-33,37,-54,37v-28,0,-41,-28,-40,-58v0,-51,36,-113,89,-113v16,0,23,7,31,13v2,-15,24,-9,37,-12v-7,28,-24,69,-24,114v0,17,7,25,20,25v30,0,40,-54,40,-92v0,-63,-36,-108,-102,-108v-77,0,-129,86,-129,162v0,86,70,140,153,106r0,35v-16,5,-35,6,-57,6v-86,4,-134,-65,-134,-147v0,-99,71,-195,170,-195xm213,-128v-39,-33,-77,29,-75,69v2,48,38,36,54,3v10,-20,18,-44,21,-72","w":354},{"d":"165,-140r-4,31r-136,0r3,-31r137,0xm157,-67r-4,32r-136,0r3,-32r137,0"},{"d":"30,-123v-1,-48,-19,-124,28,-127v14,0,21,7,21,21v0,30,-22,81,-35,106r-14,0","w":88,"k":{"J":21,"A":21}},{"d":"174,-229r-6,39v-33,-2,-63,-3,-90,-3v-1,13,-2,31,-4,57v23,0,47,0,74,-1r-4,36v-26,-1,-50,-1,-74,-1v-2,24,-4,45,-6,66v30,0,63,-1,98,-3r-5,39r-142,0v2,-16,7,-56,14,-120v4,-43,7,-79,8,-109r137,0"},{"d":"17,-183v-5,-50,86,-67,86,-10v6,53,-85,67,-86,10xm74,-36v0,-51,86,-67,86,-10v0,26,-21,48,-47,48v-22,0,-39,-16,-39,-38xm3,-2v-10,-9,159,-218,149,-227r25,2v8,8,-161,217,-150,227xm115,-17v12,0,21,-12,21,-26v0,-14,-5,-21,-16,-21v-21,0,-32,47,-5,47xm58,-164v12,0,21,-13,21,-27v0,-14,-5,-20,-16,-20v-21,-2,-32,47,-5,47"},{"d":"136,-250r-8,30v-39,-7,-43,15,-46,56v10,0,24,0,41,-1r-5,35v-17,-1,-30,-1,-39,-1v-10,70,4,204,-70,211r-10,-24v38,-31,31,-124,41,-187v-7,0,-17,0,-30,1r5,-35v12,1,21,1,28,1v8,-71,33,-97,93,-86","w":121,"k":{".":21,",":21,"u":5,"s":5,"q":5,"o":5,"g":5,"e":5,"a":10,"J":10,"A":7}},{"d":"112,-189v48,0,65,34,65,81v0,67,-26,115,-90,115v-45,0,-66,-29,-66,-76v0,-67,24,-120,91,-120xm94,-27v35,0,41,-40,41,-76v0,-27,-6,-51,-31,-53v-33,5,-39,45,-40,83v0,27,5,46,30,46","w":197},{"d":"11,-103v93,-3,-5,-111,61,-146v16,-8,34,-16,55,-18r5,27v-63,6,-59,58,-45,106v1,21,-22,43,-43,42r0,3v17,0,36,15,35,33v2,13,-23,57,-23,72v0,20,15,34,46,42r-14,28v-44,-10,-67,-27,-67,-52v0,-16,23,-71,23,-87v0,-16,-20,-22,-36,-24","w":127},{"d":"170,90r-181,0r0,-32r181,0r0,32","w":177},{"d":"145,-33v-2,-25,2,-55,2,-81r47,0v-3,19,-10,70,-9,108v-92,31,-175,-3,-175,-93v0,-90,84,-153,182,-128r-10,42v-68,-27,-126,14,-125,82v1,48,34,82,88,70","w":211},{"d":"82,-208v0,21,-11,59,-32,114r-17,0v-1,-59,-18,-141,27,-141v14,0,22,9,22,27xm5,-23v-5,-34,59,-54,59,-11v5,35,-59,53,-59,11","w":90},{"d":"32,-183v54,-16,123,7,100,72v-13,38,-50,53,-77,76v25,0,53,-1,86,-3r-7,38r-127,0r7,-35v35,-23,71,-40,78,-88v4,-28,-36,-35,-67,-27","w":162},{"d":"149,-210v9,0,13,14,13,23v-1,22,-32,17,-56,16r-2,5v19,19,29,32,29,39v1,9,-17,22,-25,22v-9,0,-15,-18,-19,-52r-5,0v-15,31,-27,47,-35,47v-36,-15,-19,-35,23,-58r-1,-5v-10,-4,-47,1,-49,-19v8,-39,27,-26,58,3r4,-3v-1,-35,-14,-57,18,-60v31,8,9,25,-2,61r3,3v24,-15,39,-22,46,-22"},{"d":"168,-55v-7,-53,9,-121,7,-174r43,0v-5,29,-23,177,-24,229r-41,0v1,-11,-90,-168,-85,-181r-3,0v5,60,-7,121,-9,181r-41,0v2,-17,8,-57,15,-120v4,-43,7,-79,7,-109r51,0v-2,14,81,160,77,174r3,0","w":232},{"d":"98,-123v-1,-48,-19,-124,28,-127v14,0,21,7,21,21v0,30,-22,81,-35,106r-14,0xm30,-123v-1,-48,-19,-124,28,-127v14,0,21,7,21,21v0,30,-22,81,-35,106r-14,0","w":162,"k":{"J":21,"A":21}},{"d":"82,-28v47,0,52,-98,52,-139r45,-4v-10,94,-18,108,-10,170r-43,5v-1,-9,-1,-21,-1,-35r-3,0v-19,47,-105,55,-105,-16v0,-18,10,-100,9,-120r46,-4v0,11,-13,97,-12,110v1,21,3,33,22,33","w":190},{"d":"15,0v4,-27,23,-177,22,-229r49,0v-2,13,-6,49,-13,109v-4,41,-8,81,-9,120r-49,0","w":100},{"d":"84,-43v-1,-7,49,-113,44,-124r45,-2v7,8,-81,165,-78,169r-45,0v4,-26,-39,-143,-36,-167r48,-2v0,16,18,114,22,126","w":172,"k":{".":21,",":21}},{"d":"83,-250v2,8,-19,109,-14,114v21,-48,107,-56,107,16v0,18,-11,101,-10,120r-45,2v-4,-30,37,-139,-11,-142v-46,7,-52,87,-53,140r-45,2v2,-15,7,-60,15,-133v5,-45,7,-83,7,-116","w":192},{"d":"65,-126v38,-36,104,-10,104,47v0,47,-38,87,-85,86v-90,-1,-73,-145,-31,-195v24,-29,57,-46,102,-48r2,29v-49,6,-80,32,-92,81xm89,-25v46,1,55,-90,3,-89v-13,0,-23,4,-31,12v-4,34,2,82,28,77","w":189},{"d":"15,0v5,-30,21,-176,22,-229r49,0r-12,92r85,0v3,-27,5,-58,6,-92r49,0v-5,28,-24,178,-23,229r-48,0v2,-18,6,-52,12,-101r-84,0v-3,26,-5,59,-7,101r-49,0","w":228},{"d":"101,-187v91,3,75,152,30,206v-26,32,-58,50,-104,52r-4,-29v56,-2,90,-48,96,-98v-35,40,-101,12,-101,-46v0,-48,37,-87,83,-85xm58,-106v0,38,44,53,66,26v6,-34,0,-74,-29,-75v-22,-1,-37,26,-37,49","w":188},{"d":"98,-49v-2,-6,75,-168,67,-180r49,0v9,6,-110,226,-104,229r-46,0v4,-26,-55,-202,-50,-229r52,0v-1,22,28,162,32,180","w":206,"k":{"-":7,".":14,":":7,";":7,",":14,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":10,"J":9,"A":7}},{"d":"117,2v-5,-30,37,-137,-8,-142v-47,6,-50,90,-53,140r-44,2v10,-92,15,-101,10,-168r43,-5v1,9,1,21,1,35r3,0v15,-43,95,-54,100,0r3,0v14,-24,34,-37,60,-37v77,3,32,113,35,173r-45,2v-5,-31,37,-135,-8,-142v-48,5,-50,89,-52,140","w":293},{"d":"26,-163v-3,-68,83,-79,144,-64r-10,39v-33,-19,-119,-5,-81,35v28,16,96,43,86,85v9,68,-92,87,-160,66r12,-39v39,22,132,9,93,-38v-24,-17,-93,-43,-84,-84"},{"d":"192,-229r-5,38v-22,-2,-43,-3,-63,-3v-1,11,-4,35,-8,74v-5,45,-8,86,-9,120r-49,0r22,-194v-16,0,-37,1,-65,3r6,-38r171,0","w":186,"k":{"-":10,".":21,":":9,";":9,",":21,"z":14,"y":14,"x":14,"w":14,"v":14,"u":5,"s":5,"r":14,"q":5,"p":14,"o":5,"n":14,"m":14,"g":5,"e":5,"d":21,"c":21,"a":10,"J":10,"A":7}},{"d":"64,-72v0,-9,65,-83,64,-97r50,2v-4,14,-47,60,-58,70v18,16,44,70,46,97r-48,2v-1,-18,-18,-58,-29,-70v-15,16,-32,44,-33,68r-44,2v2,-15,8,-60,16,-133v5,-43,7,-82,7,-116r48,-3r-22,178r3,0","w":178},{"d":"17,-70v8,-33,20,-92,23,-115r108,0r-5,38v-21,-2,-47,-3,-78,-3v-2,7,-5,23,-9,48v106,-9,112,97,49,137v-27,17,-58,27,-94,29r-4,-29v43,-4,92,-20,92,-64v0,-39,-35,-40,-82,-41","w":169},{"d":"84,-106r-5,31r-72,3r5,-32","w":90,"k":{"Y":10,"W":7,"V":7,"T":10}},{"d":"162,-141r-102,51r-1,4r92,50r-17,33r-115,-73r3,-25r130,-73"},{"d":"133,-234v56,0,92,48,92,104v0,69,-53,136,-123,136v-56,0,-92,-48,-92,-104v0,-70,53,-136,123,-136xm110,-32v74,2,99,-161,14,-164v-74,-3,-97,160,-14,164","w":234,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"70,-136v25,-58,114,-45,114,31v0,72,-63,137,-129,98r-3,7r-40,2v2,-15,8,-60,16,-133v5,-45,7,-83,7,-116r48,-3v2,10,-18,108,-13,114xm58,-35v42,25,81,-12,81,-60v0,-53,-38,-56,-60,-22v-15,24,-19,49,-21,82","w":195},{"d":"163,-185v-12,79,-93,168,-110,243r-44,-4v-6,-18,115,-187,110,-203v-23,0,-56,2,-99,4r5,-40r138,0","w":168},{"d":"37,-229v100,-9,175,8,175,97v0,72,-55,136,-128,134v-18,0,-40,-1,-69,-2v4,-25,23,-178,22,-229xm64,-36v63,14,102,-33,102,-90v0,-48,-35,-78,-88,-67","w":221,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"15,0v4,-25,24,-178,22,-229r140,0r-6,39v-34,-2,-65,-3,-93,-3v-1,13,-2,34,-5,66v22,0,46,0,73,-1r-4,36v-28,-1,-52,-2,-73,-2v-4,33,-5,65,-7,94r-47,0","w":172,"k":{".":21,",":21,"u":5,"s":5,"q":5,"o":5,"g":5,"e":5,"a":10,"J":10,"A":7}},{"w":76},{"d":"159,-38r-6,38r-138,0v2,-14,7,-54,15,-120v5,-44,7,-80,7,-109r49,0v-3,13,-19,157,-24,193v28,0,60,0,97,-2","w":168,"k":{"\"":18,"'":18,"y":9,"w":9,"v":9,"Y":18,"W":10,"V":10,"T":18}},{"d":"133,-234v82,0,114,104,74,174v-12,22,-29,39,-50,51r-1,3v42,6,50,32,54,82r-49,2v-8,-54,-6,-72,-59,-72v-56,0,-92,-48,-92,-104v0,-71,52,-136,123,-136xm110,-32v74,3,99,-161,14,-164v-74,-2,-98,159,-14,164","w":234,"k":{"Q":-4,"O":-4,"G":-4,"C":-4}},{"d":"167,-120r-31,15r-39,-105r-4,0r-60,105r-29,-15r84,-129r23,0","w":177},{"d":"10,-100v0,-86,78,-152,171,-127r-10,40v-64,-24,-113,21,-113,82v0,59,54,86,112,63r-7,41v-85,24,-153,-20,-153,-99","w":184},{"d":"12,-22v0,-37,59,-53,58,-9v0,29,-21,63,-63,100r-14,-12v17,-18,27,-37,29,-58v-7,-5,-10,-11,-10,-21","w":90},{"d":"111,-151v13,-1,45,-70,48,-78r49,0v2,8,-75,98,-76,104v6,3,62,115,60,125r-56,0v-3,-8,-29,-94,-40,-95v-6,5,-51,86,-52,95r-53,0v-2,-6,86,-122,88,-125v-4,-4,-54,-97,-53,-104r54,0v-2,7,28,75,31,78","w":208},{"d":"11,-74v0,-67,62,-113,137,-95r-10,36v-43,-17,-82,10,-82,54v0,58,47,57,84,34r-6,34v-50,37,-123,7,-123,-63","w":152},{"d":"12,-63v0,-72,61,-135,130,-100v9,-8,28,-5,42,-7v-2,11,-7,52,-15,120v-3,29,-7,71,-11,128r-44,2v3,-12,7,-83,15,-112r-2,0v-26,57,-115,46,-115,-31xm139,-133v-43,-25,-82,11,-82,60v0,52,38,57,60,22v15,-24,18,-50,22,-82","w":195},{"d":"16,-109v0,-60,79,-78,127,-52v7,-30,27,-41,52,-30r-7,32v-18,1,-31,1,-33,11v30,56,-33,105,-97,87v-6,5,-9,10,-9,16v6,23,20,14,66,14v36,0,53,13,53,40v1,51,-52,83,-105,82v-41,0,-67,-9,-69,-45v-2,-22,16,-35,34,-50v-21,-17,-10,-45,12,-61r0,-3v-12,-6,-24,-23,-24,-41xm109,55v26,-17,24,-60,-25,-50v-12,0,-22,-1,-32,-2v-28,14,-27,62,14,62v17,0,32,-3,43,-10xm87,-83v18,-1,34,-15,34,-36v0,-17,-14,-27,-28,-28v-18,0,-34,16,-34,36v0,16,13,28,28,28","w":189},{"d":"155,-229v-5,14,51,215,46,229r-53,0v0,-13,-3,-35,-9,-66r-77,0v-7,19,-22,53,-22,66r-51,0r103,-229r63,0xm134,-99v-14,-61,-14,-95,-20,-98v0,4,-14,37,-40,98r60,0","w":213,"k":{"\"":18,"'":18,"y":4,"w":4,"v":4,"Y":9,"W":5,"V":5,"U":4,"T":9}},{"d":"63,91r-35,0r-1,-363r36,0v-1,91,-2,148,-2,173v0,24,1,87,2,190","w":90},{"d":"109,-175v42,0,72,34,72,79v0,56,-40,103,-97,103v-42,0,-73,-36,-73,-80v0,-55,41,-102,98,-102xm91,-25v50,2,68,-113,11,-117v-51,-2,-69,112,-11,117","w":192},{"d":"227,-49v-1,-8,65,-166,58,-180r50,0v8,5,-100,227,-95,229r-44,0v2,-22,-29,-148,-28,-169r-3,0v0,15,-60,155,-60,169r-45,0v4,-18,-49,-214,-46,-229r53,0v-2,18,25,161,22,180r3,0v-3,-8,66,-171,61,-180r48,0v-2,18,26,160,23,180r3,0","w":327,"k":{"-":7,".":14,":":7,";":7,",":14,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":10,"J":9,"A":7}},{"d":"37,-229v72,-1,154,-11,155,57v0,63,-55,87,-123,85v-2,22,-5,51,-6,87r-48,0v2,-15,8,-55,15,-120v5,-42,6,-78,7,-109xm147,-164v0,-31,-37,-38,-68,-30v-1,10,-3,35,-7,75v46,2,75,-12,75,-45","w":199,"k":{".":21,",":21,"J":10,"A":7}},{"d":"139,-169r-14,41v-30,-8,-58,-1,-60,32v-2,35,-7,67,-9,96r-44,2v10,-92,15,-101,10,-168r43,-5v1,8,1,16,1,24r3,0v18,-25,38,-31,70,-22","w":133,"k":{".":21,",":21}},{"d":"17,-118v-5,-55,67,-60,116,-52r-9,35v-19,-7,-68,-13,-68,11v0,7,9,14,26,21v30,12,46,30,46,51v0,54,-75,67,-127,51r9,-34v21,10,81,11,78,-10v-4,-29,-76,-32,-71,-73","w":142},{"d":"83,-250v-1,25,-12,89,-14,119v-6,54,-9,98,-11,130r-46,3r16,-133v5,-46,8,-84,8,-116","w":91},{"d":"12,-63v0,-71,61,-136,128,-99v2,-25,4,-53,6,-85r46,-2v-10,65,-27,169,-19,249r-41,2v-3,-9,1,-26,-4,-34v-27,57,-116,46,-116,-31xm138,-133v-42,-25,-81,12,-81,60v0,51,38,57,60,22v15,-24,19,-49,21,-82","w":195},{"d":"108,-175v33,0,59,14,59,44v0,35,-38,54,-113,55v-4,60,61,52,99,28r-5,35v-17,12,-40,18,-67,18v-49,1,-69,-31,-70,-78v-2,-58,43,-101,97,-102xm128,-127v0,-21,-42,-21,-55,-6v-9,7,-14,17,-17,31v48,-1,72,-9,72,-25","w":173},{"d":"133,-229v-7,19,-10,194,-47,213v-18,20,-58,26,-91,17r7,-38v45,19,71,-11,74,-59v3,-54,9,-98,10,-133r47,0","w":143,"k":{"A":4}},{"d":"39,-267v120,60,61,323,-39,352r-6,-24v74,-51,112,-237,30,-304","w":127},{"d":"144,-56v-2,-12,64,-161,61,-173r64,0v-7,61,-6,155,-3,229r-50,0v0,-49,4,-112,11,-190r-3,0v-7,41,-64,151,-73,190r-38,0v-2,-42,-33,-145,-34,-190r-3,0r-26,190r-46,0v-2,0,50,-229,48,-229r64,0v0,24,25,153,28,173","w":291},{"w":76},{"d":"106,-185r-19,185r-46,0r15,-133r-33,11r-7,-18r69,-45r21,0","w":130},{"d":"97,-115v-3,-10,56,-104,52,-114r47,0v-11,36,-85,109,-89,152v-3,26,-4,51,-4,77r-50,0v7,-45,11,-72,11,-82v7,-17,-52,-139,-52,-147r52,0v-2,11,33,101,30,114r3,0","w":187,"k":{"-":7,".":14,":":7,";":7,",":14,"z":5,"y":5,"x":5,"w":5,"v":5,"u":5,"s":10,"r":5,"q":10,"p":5,"o":10,"n":5,"m":5,"g":10,"e":10,"d":10,"c":10,"a":10,"J":9,"A":7}},{"d":"68,-136v26,-57,115,-46,115,31v0,72,-63,137,-128,98v-3,29,-5,57,-7,86r-46,1v17,-141,27,-170,19,-246r44,-5v3,8,-2,26,3,35xm57,-35v43,26,82,-14,82,-60v0,-53,-39,-57,-61,-22v-15,24,-17,50,-21,82","w":194},{"d":"113,-9v-32,24,-85,16,-85,-41v0,-14,3,-41,9,-81v-6,0,-15,0,-25,1r5,-35v9,1,18,1,25,1v1,-8,3,-25,7,-49r39,-5v-2,11,-4,29,-8,54v9,0,23,0,41,-1r-4,35v-17,-1,-30,-1,-41,-1v-5,32,-7,56,-7,71v0,41,28,33,50,19","w":131},{"d":"175,-229r-6,37v-16,18,-99,133,-105,156v23,0,55,-1,94,-4r-5,40r-149,0r6,-36v13,-16,106,-137,109,-158v-27,0,-57,1,-92,4r5,-39r143,0","w":179},{"d":"147,-125v23,4,44,22,44,51v0,69,-84,81,-176,74v2,-16,7,-56,14,-120v4,-43,7,-79,8,-109v63,1,152,-16,154,46v1,28,-20,50,-44,55r0,3xm64,-33v40,3,84,1,82,-38v5,-26,-40,-35,-76,-30v-3,24,-5,47,-6,68xm144,-170v3,-30,-39,-30,-66,-24v0,5,-2,25,-5,61v40,2,74,-7,71,-37","w":205},{"d":"120,2v-5,-31,39,-142,-11,-142v-47,0,-51,88,-53,140r-44,2v10,-92,15,-101,10,-168r43,-5v1,10,1,22,1,35r3,0v21,-47,106,-56,106,16v0,19,-10,101,-9,120","w":192}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+415-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("304jSKect)+Q3[_XJKf6g0g+%xej4K+Q%x!6t)PZ4H]T52cb3~R@(~+lH)CK)j&j?^y&?fjwif&j?~zB4~F,%0z::Z@W3j.pakPB?6Pdg2@yDwJf!)5.ij+8gkgdk_.bJM_xt~4g(H4FMjPvewc]kxglP94,Jky.5kz?MH@~:fB^,)Jza0+%M8!2S0P_wb_eg~f4,8PtuKnb:Ze.S0_c3[gb3w&RDkyT,~jb:ZyTS~j.:K&_SKJct[&ZD)gQ4b@ZS8_.t8?+ilcXt)5Y5b@pt2cp%boA(ZJlJj.Q3k]YD2RTt%4_5)@CJ0B6t%4_%[@^Sxj]S0_x4)fQ48PY,K_x4H.QJx+6S0P24)ej,KH2i%ec4)j2%[@^SxcR![+R:ZP_,luYS0+^5%PRSxnQt0+2J0@BS)MR3)yz[~9f08g!3:?e(DuPwkMH)%54tS,JiaoBb^C_KZYRdvTFQp.&62cjxln@WX]+*A4p,boXtk&T(6Tvtw_Z)xeStHjJD%zStHj+3woR")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":181,"face":{"font-family":"Candara","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 14 7 2 3 3 3 9 2 4","ascent":"261","descent":"-99","x-height":"7","bbox":"-20.0075 -272 335.424 91.0228","underline-thickness":"3.51562","underline-position":"-21.6211","slope":"-6","unicode-range":"U+0020-U+007E"}}));

if(!$.browser.msie){
Cufon.replace('h1.welcomeHeadline, .cufon-serif', { fontFamily: 'Lucida Bright' });//, .slider_home_main .desc
//Cufon.replace('.welcomeParagraph', { fontFamily: 'Candara' });
}
Cufon.replace('.cufon-sans, #pageHeaderContainer h1.headerTitle, #loginBox h3, #sideBarRight h2:not(h2:has(a)), #sideBarRight h3:not(h3:has(a)), #sideBarRight h4:not(h4:has(a)), #sideBarRight h5:not(h5:has(a))', { fontFamily: 'Candara' });//#pageMainContainer h1:not(h1:has(a)), 
/*, '*/
