/*
 * jQuery JavaScript Library v1.4.2
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Sat Feb 13 22:33:48 2010 -0500
 */
(function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context)
},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,userAgent=navigator.userAgent,browserMatch,readyBound=false,readyList=[],DOMContentLoaded,toString=Object.prototype.toString,hasOwnProperty=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,indexOf=Array.prototype.indexOf;
jQuery.fn=jQuery.prototype={init:function(selector,context){var match,elem,ret,doc;
if(!selector){return this
}if(selector.nodeType){this.context=this[0]=selector;
this.length=1;
return this
}if(selector==="body"&&!context){this.context=document;
this[0]=document.body;
this.selector="body";
this.length=1;
return this
}if(typeof selector==="string"){match=quickExpr.exec(selector);
if(match&&(match[1]||!context)){if(match[1]){doc=(context?context.ownerDocument||context:document);
ret=rsingleTag.exec(selector);
if(ret){if(jQuery.isPlainObject(context)){selector=[document.createElement(ret[1])];
jQuery.fn.attr.call(selector,context,true)
}else{selector=[doc.createElement(ret[1])]
}}else{ret=buildFragment([match[1]],[doc]);
selector=(ret.cacheable?ret.fragment.cloneNode(true):ret.fragment).childNodes
}return jQuery.merge(this,selector)
}else{elem=document.getElementById(match[2]);
if(elem){if(elem.id!==match[2]){return rootjQuery.find(selector)
}this.length=1;
this[0]=elem
}this.context=document;
this.selector=selector;
return this
}}else{if(!context&&/^\w+$/.test(selector)){this.selector=selector;
this.context=document;
selector=document.getElementsByTagName(selector);
return jQuery.merge(this,selector)
}else{if(!context||context.jquery){return(context||rootjQuery).find(selector)
}else{return jQuery(context).find(selector)
}}}}else{if(jQuery.isFunction(selector)){return rootjQuery.ready(selector)
}}if(selector.selector!==undefined){this.selector=selector.selector;
this.context=selector.context
}return jQuery.makeArray(selector,this)
},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length
},toArray:function(){return slice.call(this,0)
},get:function(num){return num==null?this.toArray():(num<0?this.slice(num)[0]:this[num])
},pushStack:function(elems,name,selector){var ret=jQuery();
if(jQuery.isArray(elems)){push.apply(ret,elems)
}else{jQuery.merge(ret,elems)
}ret.prevObject=this;
ret.context=this.context;
if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector
}else{if(name){ret.selector=this.selector+"."+name+"("+selector+")"
}}return ret
},each:function(callback,args){return jQuery.each(this,callback,args)
},ready:function(fn){jQuery.bindReady();
if(jQuery.isReady){fn.call(document,jQuery)
}else{if(readyList){readyList.push(fn)
}}return this
},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1)
},first:function(){return this.eq(0)
},last:function(){return this.eq(-1)
},slice:function(){return this.pushStack(slice.apply(this,arguments),"slice",slice.call(arguments).join(","))
},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem)
}))
},end:function(){return this.prevObject||jQuery(null)
},push:push,sort:[].sort,splice:[].splice};
jQuery.fn.init.prototype=jQuery.fn;
jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options,name,src,copy;
if(typeof target==="boolean"){deep=target;
target=arguments[1]||{};
i=2
}if(typeof target!=="object"&&!jQuery.isFunction(target)){target={}
}if(length===i){target=this;
--i
}for(;
i<length;
i++){if((options=arguments[i])!=null){for(name in options){src=target[name];
copy=options[name];
if(target===copy){continue
}if(deep&&copy&&(jQuery.isPlainObject(copy)||jQuery.isArray(copy))){var clone=src&&(jQuery.isPlainObject(src)||jQuery.isArray(src))?src:jQuery.isArray(copy)?[]:{};
target[name]=jQuery.extend(deep,clone,copy)
}else{if(copy!==undefined){target[name]=copy
}}}}}return target
};
jQuery.extend({noConflict:function(deep){window.$=_$;
if(deep){window.jQuery=_jQuery
}return jQuery
},isReady:false,ready:function(){if(!jQuery.isReady){if(!document.body){return setTimeout(jQuery.ready,13)
}jQuery.isReady=true;
if(readyList){var fn,i=0;
while((fn=readyList[i++])){fn.call(document,jQuery)
}readyList=null
}if(jQuery.fn.triggerHandler){jQuery(document).triggerHandler("ready")
}}},bindReady:function(){if(readyBound){return 
}readyBound=true;
if(document.readyState==="complete"){return jQuery.ready()
}if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);
window.addEventListener("load",jQuery.ready,false)
}else{if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);
window.attachEvent("onload",jQuery.ready);
var toplevel=false;
try{toplevel=window.frameElement==null
}catch(e){}if(document.documentElement.doScroll&&toplevel){doScrollCheck()
}}}},isFunction:function(obj){return toString.call(obj)==="[object Function]"
},isArray:function(obj){return toString.call(obj)==="[object Array]"
},isPlainObject:function(obj){if(!obj||toString.call(obj)!=="[object Object]"||obj.nodeType||obj.setInterval){return false
}if(obj.constructor&&!hasOwnProperty.call(obj,"constructor")&&!hasOwnProperty.call(obj.constructor.prototype,"isPrototypeOf")){return false
}var key;
for(key in obj){}return key===undefined||hasOwnProperty.call(obj,key)
},isEmptyObject:function(obj){for(var name in obj){return false
}return true
},error:function(msg){throw msg
},parseJSON:function(data){if(typeof data!=="string"||!data){return null
}data=jQuery.trim(data);
if(/^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){return window.JSON&&window.JSON.parse?window.JSON.parse(data):(new Function("return "+data))()
}else{jQuery.error("Invalid JSON: "+data)
}},noop:function(){},globalEval:function(data){if(data&&rnotwhite.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");
script.type="text/javascript";
if(jQuery.support.scriptEval){script.appendChild(document.createTextNode(data))
}else{script.text=data
}head.insertBefore(script,head.firstChild);
head.removeChild(script)
}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()===name.toUpperCase()
},each:function(object,callback,args){var name,i=0,length=object.length,isObj=length===undefined||jQuery.isFunction(object);
if(args){if(isObj){for(name in object){if(callback.apply(object[name],args)===false){break
}}}else{for(;
i<length;
){if(callback.apply(object[i++],args)===false){break
}}}}else{if(isObj){for(name in object){if(callback.call(object[name],name,object[name])===false){break
}}}else{for(var value=object[0];
i<length&&callback.call(value,i,value)!==false;
value=object[++i]){}}}return object
},trim:function(text){return(text||"").replace(rtrim,"")
},makeArray:function(array,results){var ret=results||[];
if(array!=null){if(array.length==null||typeof array==="string"||jQuery.isFunction(array)||(typeof array!=="function"&&array.setInterval)){push.call(ret,array)
}else{jQuery.merge(ret,array)
}}return ret
},inArray:function(elem,array){if(array.indexOf){return array.indexOf(elem)
}for(var i=0,length=array.length;
i<length;
i++){if(array[i]===elem){return i
}}return -1
},merge:function(first,second){var i=first.length,j=0;
if(typeof second.length==="number"){for(var l=second.length;
j<l;
j++){first[i++]=second[j]
}}else{while(second[j]!==undefined){first[i++]=second[j++]
}}first.length=i;
return first
},grep:function(elems,callback,inv){var ret=[];
for(var i=0,length=elems.length;
i<length;
i++){if(!inv!==!callback(elems[i],i)){ret.push(elems[i])
}}return ret
},map:function(elems,callback,arg){var ret=[],value;
for(var i=0,length=elems.length;
i<length;
i++){value=callback(elems[i],i,arg);
if(value!=null){ret[ret.length]=value
}}return ret.concat.apply([],ret)
},guid:1,proxy:function(fn,proxy,thisObject){if(arguments.length===2){if(typeof proxy==="string"){thisObject=fn;
fn=thisObject[proxy];
proxy=undefined
}else{if(proxy&&!jQuery.isFunction(proxy)){thisObject=proxy;
proxy=undefined
}}}if(!proxy&&fn){proxy=function(){return fn.apply(thisObject||this,arguments)
}
}if(fn){proxy.guid=fn.guid=fn.guid||proxy.guid||jQuery.guid++
}return proxy
},uaMatch:function(ua){ua=ua.toLowerCase();
var match=/(webkit)[ \/]([\w.]+)/.exec(ua)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(ua)||/(msie) ([\w.]+)/.exec(ua)||!/compatible/.test(ua)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(ua)||[];
return{browser:match[1]||"",version:match[2]||"0"}
},browser:{}});
browserMatch=jQuery.uaMatch(userAgent);
if(browserMatch.browser){jQuery.browser[browserMatch.browser]=true;
jQuery.browser.version=browserMatch.version
}if(jQuery.browser.webkit){jQuery.browser.safari=true
}if(indexOf){jQuery.inArray=function(elem,array){return indexOf.call(array,elem)
}
}rootjQuery=jQuery(document);
if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);
jQuery.ready()
}
}else{if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);
jQuery.ready()
}}
}}function doScrollCheck(){if(jQuery.isReady){return 
}try{document.documentElement.doScroll("left")
}catch(error){setTimeout(doScrollCheck,1);
return 
}jQuery.ready()
}function evalScript(i,elem){if(elem.src){jQuery.ajax({url:elem.src,async:false,dataType:"script"})
}else{jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"")
}if(elem.parentNode){elem.parentNode.removeChild(elem)
}}function access(elems,key,value,exec,fn,pass){var length=elems.length;
if(typeof key==="object"){for(var k in key){access(elems,k,key[k],exec,fn,value)
}return elems
}if(value!==undefined){exec=!pass&&exec&&jQuery.isFunction(value);
for(var i=0;
i<length;
i++){fn(elems[i],key,exec?value.call(elems[i],i,fn(elems[i],key)):value,pass)
}return elems
}return length?fn(elems[0],key):undefined
}function now(){return(new Date).getTime()
}(function(){jQuery.support={};
var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+now();
div.style.display="none";
div.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];
if(!all||!all.length||!a){return 
}jQuery.support={leadingWhitespace:div.firstChild.nodeType===3,tbody:!div.getElementsByTagName("tbody").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:/^0.55$/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:div.getElementsByTagName("input")[0].value==="on",optSelected:document.createElement("select").appendChild(document.createElement("option")).selected,parentNode:div.removeChild(div.appendChild(document.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};
script.type="text/javascript";
try{script.appendChild(document.createTextNode("window."+id+"=1;"))
}catch(e){}root.insertBefore(script,root.firstChild);
if(window[id]){jQuery.support.scriptEval=true;
delete window[id]
}try{delete script.test
}catch(e){jQuery.support.deleteExpando=false
}root.removeChild(script);
if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function click(){jQuery.support.noCloneEvent=false;
div.detachEvent("onclick",click)
});
div.cloneNode(true).fireEvent("onclick")
}div=document.createElement("div");
div.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";
var fragment=document.createDocumentFragment();
fragment.appendChild(div.firstChild);
jQuery.support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;
jQuery(function(){var div=document.createElement("div");
div.style.width=div.style.paddingLeft="1px";
document.body.appendChild(div);
jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;
document.body.removeChild(div).style.display="none";
div=null
});
var eventSupported=function(eventName){var el=document.createElement("div");
eventName="on"+eventName;
var isSupported=(eventName in el);
if(!isSupported){el.setAttribute(eventName,"return;");
isSupported=typeof el[eventName]==="function"
}el=null;
return isSupported
};
jQuery.support.submitBubbles=eventSupported("submit");
jQuery.support.changeBubbles=eventSupported("change");
root=script=div=all=a=null
})();
jQuery.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};
var expando="jQuery"+now(),uuid=0,windowData={};
jQuery.extend({cache:{},expando:expando,noData:{embed:true,object:true,applet:true},data:function(elem,name,data){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return 
}elem=elem==window?windowData:elem;
var id=elem[expando],cache=jQuery.cache,thisCache;
if(!id&&typeof name==="string"&&data===undefined){return null
}if(!id){id=++uuid
}if(typeof name==="object"){elem[expando]=id;
thisCache=cache[id]=jQuery.extend(true,{},name)
}else{if(!cache[id]){elem[expando]=id;
cache[id]={}
}}thisCache=cache[id];
if(data!==undefined){thisCache[name]=data
}return typeof name==="string"?thisCache[name]:thisCache
},removeData:function(elem,name){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return 
}elem=elem==window?windowData:elem;
var id=elem[expando],cache=jQuery.cache,thisCache=cache[id];
if(name){if(thisCache){delete thisCache[name];
if(jQuery.isEmptyObject(thisCache)){jQuery.removeData(elem)
}}}else{if(jQuery.support.deleteExpando){delete elem[jQuery.expando]
}else{if(elem.removeAttribute){elem.removeAttribute(jQuery.expando)
}}delete cache[id]
}}});
jQuery.fn.extend({data:function(key,value){if(typeof key==="undefined"&&this.length){return jQuery.data(this[0])
}else{if(typeof key==="object"){return this.each(function(){jQuery.data(this,key)
})
}}var parts=key.split(".");
parts[1]=parts[1]?"."+parts[1]:"";
if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);
if(data===undefined&&this.length){data=jQuery.data(this[0],key)
}return data===undefined&&parts[1]?this.data(parts[0]):data
}else{return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value)
})
}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key)
})
}});
jQuery.extend({queue:function(elem,type,data){if(!elem){return 
}type=(type||"fx")+"queue";
var q=jQuery.data(elem,type);
if(!data){return q||[]
}if(!q||jQuery.isArray(data)){q=jQuery.data(elem,type,jQuery.makeArray(data))
}else{q.push(data)
}return q
},dequeue:function(elem,type){type=type||"fx";
var queue=jQuery.queue(elem,type),fn=queue.shift();
if(fn==="inprogress"){fn=queue.shift()
}if(fn){if(type==="fx"){queue.unshift("inprogress")
}fn.call(elem,function(){jQuery.dequeue(elem,type)
})
}}});
jQuery.fn.extend({queue:function(type,data){if(typeof type!=="string"){data=type;
type="fx"
}if(data===undefined){return jQuery.queue(this[0],type)
}return this.each(function(i,elem){var queue=jQuery.queue(this,type,data);
if(type==="fx"&&queue[0]!=="inprogress"){jQuery.dequeue(this,type)
}})
},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type)
})
},delay:function(time,type){time=jQuery.fx?jQuery.fx.speeds[time]||time:time;
type=type||"fx";
return this.queue(type,function(){var elem=this;
setTimeout(function(){jQuery.dequeue(elem,type)
},time)
})
},clearQueue:function(type){return this.queue(type||"fx",[])
}});
var rclass=/[\n\t]/g,rspace=/\s+/,rreturn=/\r/g,rspecialurl=/href|src|style/,rtype=/(button|input)/i,rfocusable=/(button|input|object|select|textarea)/i,rclickable=/^(a|area)$/i,rradiocheck=/radio|checkbox/;
jQuery.fn.extend({attr:function(name,value){return access(this,name,value,true,jQuery.attr)
},removeAttr:function(name,fn){return this.each(function(){jQuery.attr(this,name,"");
if(this.nodeType===1){this.removeAttribute(name)
}})
},addClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);
self.addClass(value.call(this,i,self.attr("class")))
})
}if(value&&typeof value==="string"){var classNames=(value||"").split(rspace);
for(var i=0,l=this.length;
i<l;
i++){var elem=this[i];
if(elem.nodeType===1){if(!elem.className){elem.className=value
}else{var className=" "+elem.className+" ",setClass=elem.className;
for(var c=0,cl=classNames.length;
c<cl;
c++){if(className.indexOf(" "+classNames[c]+" ")<0){setClass+=" "+classNames[c]
}}elem.className=jQuery.trim(setClass)
}}}}return this
},removeClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);
self.removeClass(value.call(this,i,self.attr("class")))
})
}if((value&&typeof value==="string")||value===undefined){var classNames=(value||"").split(rspace);
for(var i=0,l=this.length;
i<l;
i++){var elem=this[i];
if(elem.nodeType===1&&elem.className){if(value){var className=(" "+elem.className+" ").replace(rclass," ");
for(var c=0,cl=classNames.length;
c<cl;
c++){className=className.replace(" "+classNames[c]+" "," ")
}elem.className=jQuery.trim(className)
}else{elem.className=""
}}}}return this
},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";
if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);
self.toggleClass(value.call(this,i,self.attr("class"),stateVal),stateVal)
})
}return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(rspace);
while((className=classNames[i++])){state=isBool?state:!self.hasClass(className);
self[state?"addClass":"removeClass"](className)
}}else{if(type==="undefined"||type==="boolean"){if(this.className){jQuery.data(this,"__className__",this.className)
}this.className=this.className||value===false?"":jQuery.data(this,"__className__")||""
}}})
},hasClass:function(selector){var className=" "+selector+" ";
for(var i=0,l=this.length;
i<l;
i++){if((" "+this[i].className+" ").replace(rclass," ").indexOf(className)>-1){return true
}}return false
},val:function(value){if(value===undefined){var elem=this[0];
if(elem){if(jQuery.nodeName(elem,"option")){return(elem.attributes.value||{}).specified?elem.value:elem.text
}if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type==="select-one";
if(index<0){return null
}for(var i=one?index:0,max=one?index+1:options.length;
i<max;
i++){var option=options[i];
if(option.selected){value=jQuery(option).val();
if(one){return value
}values.push(value)
}}return values
}if(rradiocheck.test(elem.type)&&!jQuery.support.checkOn){return elem.getAttribute("value")===null?"on":elem.value
}return(elem.value||"").replace(rreturn,"")
}return undefined
}var isFunction=jQuery.isFunction(value);
return this.each(function(i){var self=jQuery(this),val=value;
if(this.nodeType!==1){return 
}if(isFunction){val=value.call(this,i,self.val())
}if(typeof val==="number"){val+=""
}if(jQuery.isArray(val)&&rradiocheck.test(this.type)){this.checked=jQuery.inArray(self.val(),val)>=0
}else{if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(val);
jQuery("option",this).each(function(){this.selected=jQuery.inArray(jQuery(this).val(),values)>=0
});
if(!values.length){this.selectedIndex=-1
}}else{this.value=val
}}})
}});
jQuery.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(elem,name,value,pass){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined
}if(pass&&name in jQuery.attrFn){return jQuery(elem)[name](value)
}var notxml=elem.nodeType!==1||!jQuery.isXMLDoc(elem),set=value!==undefined;
name=notxml&&jQuery.props[name]||name;
if(elem.nodeType===1){var special=rspecialurl.test(name);
if(name==="selected"&&!jQuery.support.optSelected){var parent=elem.parentNode;
if(parent){parent.selectedIndex;
if(parent.parentNode){parent.parentNode.selectedIndex
}}}if(name in elem&&notxml&&!special){if(set){if(name==="type"&&rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("type property can't be changed")
}elem[name]=value
}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name)){return elem.getAttributeNode(name).nodeValue
}if(name==="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");
return attributeNode&&attributeNode.specified?attributeNode.value:rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:undefined
}return elem[name]
}if(!jQuery.support.style&&notxml&&name==="style"){if(set){elem.style.cssText=""+value
}return elem.style.cssText
}if(set){elem.setAttribute(name,""+value)
}var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);
return attr===null?undefined:attr
}return jQuery.style(elem,name,value)
}});
var rnamespaces=/\.(.*)$/,fcleanup=function(nm){return nm.replace(/[^\w\s\.\|`]/g,function(ch){return"\\"+ch
})
};
jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return 
}if(elem.setInterval&&(elem!==window&&!elem.frameElement)){elem=window
}var handleObjIn,handleObj;
if(handler.handler){handleObjIn=handler;
handler=handleObjIn.handler
}if(!handler.guid){handler.guid=jQuery.guid++
}var elemData=jQuery.data(elem);
if(!elemData){return 
}var events=elemData.events=elemData.events||{},eventHandle=elemData.handle,eventHandle;
if(!eventHandle){elemData.handle=eventHandle=function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined
}
}eventHandle.elem=elem;
types=types.split(" ");
var type,i=0,namespaces;
while((type=types[i++])){handleObj=handleObjIn?jQuery.extend({},handleObjIn):{handler:handler,data:data};
if(type.indexOf(".")>-1){namespaces=type.split(".");
type=namespaces.shift();
handleObj.namespace=namespaces.slice(0).sort().join(".")
}else{namespaces=[];
handleObj.namespace=""
}handleObj.type=type;
handleObj.guid=handler.guid;
var handlers=events[type],special=jQuery.event.special[type]||{};
if(!handlers){handlers=events[type]=[];
if(!special.setup||special.setup.call(elem,data,namespaces,eventHandle)===false){if(elem.addEventListener){elem.addEventListener(type,eventHandle,false)
}else{if(elem.attachEvent){elem.attachEvent("on"+type,eventHandle)
}}}}if(special.add){special.add.call(elem,handleObj);
if(!handleObj.handler.guid){handleObj.handler.guid=handler.guid
}}handlers.push(handleObj);
jQuery.event.global[type]=true
}elem=null
},global:{},remove:function(elem,types,handler,pos){if(elem.nodeType===3||elem.nodeType===8){return 
}var ret,type,fn,i=0,all,namespaces,namespace,special,eventType,handleObj,origType,elemData=jQuery.data(elem),events=elemData&&elemData.events;
if(!elemData||!events){return 
}if(types&&types.type){handler=types.handler;
types=types.type
}if(!types||typeof types==="string"&&types.charAt(0)==="."){types=types||"";
for(type in events){jQuery.event.remove(elem,type+types)
}return 
}types=types.split(" ");
while((type=types[i++])){origType=type;
handleObj=null;
all=type.indexOf(".")<0;
namespaces=[];
if(!all){namespaces=type.split(".");
type=namespaces.shift();
namespace=new RegExp("(^|\\.)"+jQuery.map(namespaces.slice(0).sort(),fcleanup).join("\\.(?:.*\\.)?")+"(\\.|$)")
}eventType=events[type];
if(!eventType){continue
}if(!handler){for(var j=0;
j<eventType.length;
j++){handleObj=eventType[j];
if(all||namespace.test(handleObj.namespace)){jQuery.event.remove(elem,origType,handleObj.handler,j);
eventType.splice(j--,1)
}}continue
}special=jQuery.event.special[type]||{};
for(var j=pos||0;
j<eventType.length;
j++){handleObj=eventType[j];
if(handler.guid===handleObj.guid){if(all||namespace.test(handleObj.namespace)){if(pos==null){eventType.splice(j--,1)
}if(special.remove){special.remove.call(elem,handleObj)
}}if(pos!=null){break
}}}if(eventType.length===0||pos!=null&&eventType.length===1){if(!special.teardown||special.teardown.call(elem,namespaces)===false){removeEvent(elem,type,elemData.handle)
}ret=null;
delete events[type]
}}if(jQuery.isEmptyObject(events)){var handle=elemData.handle;
if(handle){handle.elem=null
}delete elemData.events;
delete elemData.handle;
if(jQuery.isEmptyObject(elemData)){jQuery.removeData(elem)
}}},trigger:function(event,data,elem){var type=event.type||event,bubbling=arguments[3];
if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);
if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);
event.exclusive=true
}if(!elem){event.stopPropagation();
if(jQuery.event.global[type]){jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type]){jQuery.event.trigger(event,data,this.handle.elem)
}})
}}if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined
}event.result=undefined;
event.target=elem;
data=jQuery.makeArray(data);
data.unshift(event)
}event.currentTarget=elem;
var handle=jQuery.data(elem,"handle");
if(handle){handle.apply(elem,data)
}var parent=elem.parentNode||elem.ownerDocument;
try{if(!(elem&&elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()])){if(elem["on"+type]&&elem["on"+type].apply(elem,data)===false){event.result=false
}}}catch(e){}if(!event.isPropagationStopped()&&parent){jQuery.event.trigger(event,data,parent,true)
}else{if(!event.isDefaultPrevented()){var target=event.target,old,isClick=jQuery.nodeName(target,"a")&&type==="click",special=jQuery.event.special[type]||{};
if((!special._default||special._default.call(elem,event)===false)&&!isClick&&!(target&&target.nodeName&&jQuery.noData[target.nodeName.toLowerCase()])){try{if(target[type]){old=target["on"+type];
if(old){target["on"+type]=null
}jQuery.event.triggered=true;
target[type]()
}}catch(e){}if(old){target["on"+type]=old
}jQuery.event.triggered=false
}}}},handle:function(event){var all,handlers,namespaces,namespace,events;
event=arguments[0]=jQuery.event.fix(event||window.event);
event.currentTarget=this;
all=event.type.indexOf(".")<0&&!event.exclusive;
if(!all){namespaces=event.type.split(".");
event.type=namespaces.shift();
namespace=new RegExp("(^|\\.)"+namespaces.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")
}var events=jQuery.data(this,"events"),handlers=events[event.type];
if(events&&handlers){handlers=handlers.slice(0);
for(var j=0,l=handlers.length;
j<l;
j++){var handleObj=handlers[j];
if(all||namespace.test(handleObj.namespace)){event.handler=handleObj.handler;
event.data=handleObj.data;
event.handleObj=handleObj;
var ret=handleObj.handler.apply(this,arguments);
if(ret!==undefined){event.result=ret;
if(ret===false){event.preventDefault();
event.stopPropagation()
}}if(event.isImmediatePropagationStopped()){break
}}}}return event.result
},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando]){return event
}var originalEvent=event;
event=jQuery.Event(originalEvent);
for(var i=this.props.length,prop;
i;
){prop=this.props[--i];
event[prop]=originalEvent[prop]
}if(!event.target){event.target=event.srcElement||document
}if(event.target.nodeType===3){event.target=event.target.parentNode
}if(!event.relatedTarget&&event.fromElement){event.relatedTarget=event.fromElement===event.target?event.toElement:event.fromElement
}if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;
event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc&&doc.clientLeft||body&&body.clientLeft||0);
event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.clientTop||0)
}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode)){event.which=event.charCode||event.keyCode
}if(!event.metaKey&&event.ctrlKey){event.metaKey=event.ctrlKey
}if(!event.which&&event.button!==undefined){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)))
}return event
},guid:100000000,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(handleObj){jQuery.event.add(this,handleObj.origType,jQuery.extend({},handleObj,{handler:liveHandler}))
},remove:function(handleObj){var remove=true,type=handleObj.origType.replace(rnamespaces,"");
jQuery.each(jQuery.data(this,"events").live||[],function(){if(type===this.origType.replace(rnamespaces,"")){remove=false;
return false
}});
if(remove){jQuery.event.remove(this,handleObj.origType,liveHandler)
}}},beforeunload:{setup:function(data,namespaces,eventHandle){if(this.setInterval){this.onbeforeunload=eventHandle
}return false
},teardown:function(namespaces,eventHandle){if(this.onbeforeunload===eventHandle){this.onbeforeunload=null
}}}}};
var removeEvent=document.removeEventListener?function(elem,type,handle){elem.removeEventListener(type,handle,false)
}:function(elem,type,handle){elem.detachEvent("on"+type,handle)
};
jQuery.Event=function(src){if(!this.preventDefault){return new jQuery.Event(src)
}if(src&&src.type){this.originalEvent=src;
this.type=src.type
}else{this.type=src
}this.timeStamp=now();
this[expando]=true
};
function returnFalse(){return false
}function returnTrue(){return true
}jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;
var e=this.originalEvent;
if(!e){return 
}if(e.preventDefault){e.preventDefault()
}e.returnValue=false
},stopPropagation:function(){this.isPropagationStopped=returnTrue;
var e=this.originalEvent;
if(!e){return 
}if(e.stopPropagation){e.stopPropagation()
}e.cancelBubble=true
},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;
this.stopPropagation()
},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};
var withinElement=function(event){var parent=event.relatedTarget;
try{while(parent&&parent!==this){parent=parent.parentNode
}if(parent!==this){event.type=event.data;
jQuery.event.handle.apply(this,arguments)
}}catch(e){}},delegate=function(event){event.type=event.data;
jQuery.event.handle.apply(this,arguments)
};
jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={setup:function(data){jQuery.event.add(this,fix,data&&data.selector?delegate:withinElement,orig)
},teardown:function(data){jQuery.event.remove(this,fix,data&&data.selector?delegate:withinElement)
}}
});
if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(data,namespaces){if(this.nodeName.toLowerCase()!=="form"){jQuery.event.add(this,"click.specialSubmit",function(e){var elem=e.target,type=jQuery.elemGetType(elem);
if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){return trigger("submit",this,arguments)
}});
jQuery.event.add(this,"keypress.specialSubmit",function(e){var elem=e.target,type=jQuery.elemGetType(elem);
if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){return trigger("submit",this,arguments)
}})
}else{return false
}},teardown:function(namespaces){jQuery.event.remove(this,".specialSubmit")
}}
}if(!jQuery.support.changeBubbles){var formElems=/textarea|input|select/i,changeFilters,getVal=function(elem){var type=jQuery.elemGetType(elem),val=elem.value;
if(type==="radio"||type==="checkbox"){val=elem.checked
}else{if(type==="select-multiple"){val=elem.selectedIndex>-1?jQuery.map(elem.options,function(elem){return elem.selected
}).join("-"):""
}else{if(elem.nodeName.toLowerCase()==="select"){val=elem.selectedIndex
}}}return val
},testChange=function testChange(e){var elem=e.target,data,val;
if(!formElems.test(elem.nodeName)||elem.readOnly){return 
}data=jQuery.data(elem,"_change_data");
val=getVal(elem);
if(e.type!=="focusout"||elem.type!=="radio"){jQuery.data(elem,"_change_data",val)
}if(data===undefined||val===data){return 
}if(data!=null||val){e.type="change";
return jQuery.event.trigger(e,arguments[1],elem)
}};
jQuery.event.special.change={filters:{focusout:testChange,click:function(e){var elem=e.target,type=jQuery.elemGetType(elem);
if(type==="radio"||type==="checkbox"||elem.nodeName.toLowerCase()==="select"){return testChange.call(this,e)
}},keydown:function(e){var elem=e.target,type=jQuery.elemGetType(elem);
if((e.keyCode===13&&elem.nodeName.toLowerCase()!=="textarea")||(e.keyCode===32&&(type==="checkbox"||type==="radio"))||type==="select-multiple"){return testChange.call(this,e)
}},beforeactivate:function(e){var elem=e.target;
jQuery.data(elem,"_change_data",getVal(elem))
}},setup:function(data,namespaces){if(this.type==="file"){return false
}for(var type in changeFilters){jQuery.event.add(this,type+".specialChange",changeFilters[type])
}return formElems.test(this.nodeName)
},teardown:function(namespaces){jQuery.event.remove(this,".specialChange");
return formElems.test(this.nodeName)
}};
changeFilters=jQuery.event.special.change.filters
}function trigger(type,elem,args){args[0].type=type;
return jQuery.event.handle.apply(elem,args)
}if(document.addEventListener){jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){jQuery.event.special[fix]={setup:function(){this.addEventListener(orig,handler,true)
},teardown:function(){this.removeEventListener(orig,handler,true)
}};
function handler(e){e=jQuery.event.fix(e);
e.type=fix;
return jQuery.event.handle.call(this,e)
}})
}jQuery.each(["bind","one"],function(i,name){jQuery.fn[name]=function(type,data,fn){if(typeof type==="object"){for(var key in type){this[name](key,data,type[key],fn)
}return this
}if(jQuery.isFunction(data)){fn=data;
data=undefined
}var handler=name==="one"?jQuery.proxy(fn,function(event){jQuery(this).unbind(event,handler);
return fn.apply(this,arguments)
}):fn;
if(type==="unload"&&name!=="one"){this.one(type,data,fn)
}else{for(var i=0,l=this.length;
i<l;
i++){jQuery.event.add(this[i],type,handler,data)
}}return this
}
});
jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key])
}}else{for(var i=0,l=this.length;
i<l;
i++){jQuery.event.remove(this[i],type,fn)
}}return this
},delegate:function(selector,types,data,fn){return this.live(types,data,fn,selector)
},undelegate:function(selector,types,fn){if(arguments.length===0){return this.unbind("live")
}else{return this.die(types,null,fn,selector)
}},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this)
})
},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);
event.preventDefault();
event.stopPropagation();
jQuery.event.trigger(event,data,this[0]);
return event.result
}},toggle:function(fn){var args=arguments,i=1;
while(i<args.length){jQuery.proxy(fn,args[i++])
}return this.click(jQuery.proxy(fn,function(event){var lastToggle=(jQuery.data(this,"lastToggle"+fn.guid)||0)%i;
jQuery.data(this,"lastToggle"+fn.guid,lastToggle+1);
event.preventDefault();
return args[lastToggle].apply(this,arguments)||false
}))
},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver)
}});
var liveMap={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};
jQuery.each(["live","die"],function(i,name){jQuery.fn[name]=function(types,data,fn,origSelector){var type,i=0,match,namespaces,preType,selector=origSelector||this.selector,context=origSelector?this:jQuery(this.context);
if(jQuery.isFunction(data)){fn=data;
data=undefined
}types=(types||"").split(" ");
while((type=types[i++])!=null){match=rnamespaces.exec(type);
namespaces="";
if(match){namespaces=match[0];
type=type.replace(rnamespaces,"")
}if(type==="hover"){types.push("mouseenter"+namespaces,"mouseleave"+namespaces);
continue
}preType=type;
if(type==="focus"||type==="blur"){types.push(liveMap[type]+namespaces);
type=type+namespaces
}else{type=(liveMap[type]||type)+namespaces
}if(name==="live"){context.each(function(){jQuery.event.add(this,liveConvert(type,selector),{data:data,selector:selector,handler:fn,origType:type,origHandler:fn,preType:preType})
})
}else{context.unbind(liveConvert(type,selector),fn)
}}return this
}
});
function liveHandler(event){var stop,elems=[],selectors=[],args=arguments,related,match,handleObj,elem,j,i,l,data,events=jQuery.data(this,"events");
if(event.liveFired===this||!events||!events.live||event.button&&event.type==="click"){return 
}event.liveFired=this;
var live=events.live.slice(0);
for(j=0;
j<live.length;
j++){handleObj=live[j];
if(handleObj.origType.replace(rnamespaces,"")===event.type){selectors.push(handleObj.selector)
}else{live.splice(j--,1)
}}match=jQuery(event.target).closest(selectors,event.currentTarget);
for(i=0,l=match.length;
i<l;
i++){for(j=0;
j<live.length;
j++){handleObj=live[j];
if(match[i].selector===handleObj.selector){elem=match[i].elem;
related=null;
if(handleObj.preType==="mouseenter"||handleObj.preType==="mouseleave"){related=jQuery(event.relatedTarget).closest(handleObj.selector)[0]
}if(!related||related!==elem){elems.push({elem:elem,handleObj:handleObj})
}}}}for(i=0,l=elems.length;
i<l;
i++){match=elems[i];
event.currentTarget=match.elem;
event.data=match.handleObj.data;
event.handleObj=match.handleObj;
if(match.handleObj.origHandler.apply(match.elem,args)===false){stop=false;
break
}}return stop
}function liveConvert(type,selector){return"live."+(type&&type!=="*"?type+".":"")+selector.replace(/\./g,"`").replace(/ /g,"&")
}jQuery.each(("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error").split(" "),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name)
};
if(jQuery.attrFn){jQuery.attrFn[name]=true
}});
if(window.attachEvent&&!window.addEventListener){window.attachEvent("onunload",function(){for(var id in jQuery.cache){if(jQuery.cache[id].handle){try{jQuery.event.remove(jQuery.cache[id].handle.elem)
}catch(e){}}}});
/*
 * Sizzle CSS Selector Engine - v1.0
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
}(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;
[0,0].sort(function(){baseHasDuplicate=false;
return 0
});
var Sizzle=function(selector,context,results,seed){results=results||[];
var origContext=context=context||document;
if(context.nodeType!==1&&context.nodeType!==9){return[]
}if(!selector||typeof selector!=="string"){return results
}var parts=[],m,set,checkSet,extra,prune=true,contextXML=isXML(context),soFar=selector;
while((chunker.exec(""),m=chunker.exec(soFar))!==null){soFar=m[3];
parts.push(m[1]);
if(m[2]){extra=m[3];
break
}}if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context)
}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);
while(parts.length){selector=parts.shift();
if(Expr.relative[selector]){selector+=parts.shift()
}set=posProcess(selector,set)
}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);
context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0]
}if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);
set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;
if(parts.length>0){checkSet=makeArray(set)
}else{prune=false
}while(parts.length){var cur=parts.pop(),pop=cur;
if(!Expr.relative[cur]){cur=""
}else{pop=parts.pop()
}if(pop==null){pop=context
}Expr.relative[cur](checkSet,pop,contextXML)
}}else{checkSet=parts=[]
}}if(!checkSet){checkSet=set
}if(!checkSet){Sizzle.error(cur||selector)
}if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet)
}else{if(context&&context.nodeType===1){for(var i=0;
checkSet[i]!=null;
i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i])
}}}else{for(var i=0;
checkSet[i]!=null;
i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i])
}}}}}else{makeArray(checkSet,results)
}if(extra){Sizzle(extra,origContext,results,seed);
Sizzle.uniqueSort(results)
}return results
};
Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;
results.sort(sortOrder);
if(hasDuplicate){for(var i=1;
i<results.length;
i++){if(results[i]===results[i-1]){results.splice(i--,1)
}}}}return results
};
Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set)
};
Sizzle.find=function(expr,context,isXML){var set,match;
if(!expr){return[]
}for(var i=0,l=Expr.order.length;
i<l;
i++){var type=Expr.order[i],match;
if((match=Expr.leftMatch[type].exec(expr))){var left=match[1];
match.splice(1,1);
if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");
set=Expr.find[type](match,context,isXML);
if(set!=null){expr=expr.replace(Expr.match[type],"");
break
}}}}if(!set){set=context.getElementsByTagName("*")
}return{set:set,expr:expr}
};
Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);
while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.leftMatch[type].exec(expr))!=null&&match[2]){var filter=Expr.filter[type],found,item,left=match[1];
anyFound=false;
match.splice(1,1);
if(left.substr(left.length-1)==="\\"){continue
}if(curLoop===result){result=[]
}if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);
if(!match){anyFound=found=true
}else{if(match===true){continue
}}}if(match){for(var i=0;
(item=curLoop[i])!=null;
i++){if(item){found=filter(item,match,i,curLoop);
var pass=not^!!found;
if(inplace&&found!=null){if(pass){anyFound=true
}else{curLoop[i]=false
}}else{if(pass){result.push(item);
anyFound=true
}}}}}if(found!==undefined){if(!inplace){curLoop=result
}expr=expr.replace(Expr.match[type],"");
if(!anyFound){return[]
}break
}}}if(expr===old){if(anyFound==null){Sizzle.error(expr)
}else{break
}}old=expr
}return curLoop
};
Sizzle.error=function(msg){throw"Syntax error, unrecognized expression: "+msg
};
var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href")
}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;
if(isTag){part=part.toLowerCase()
}for(var i=0,l=checkSet.length,elem;
i<l;
i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}checkSet[i]=isPartStrNotTag||elem&&elem.nodeName.toLowerCase()===part?elem||false:elem===part
}}if(isPartStrNotTag){Sizzle.filter(part,checkSet,true)
}},">":function(checkSet,part){var isPartStr=typeof part==="string";
if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();
for(var i=0,l=checkSet.length;
i<l;
i++){var elem=checkSet[i];
if(elem){var parent=elem.parentNode;
checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false
}}}else{for(var i=0,l=checkSet.length;
i<l;
i++){var elem=checkSet[i];
if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part
}}if(isPartStr){Sizzle.filter(part,checkSet,true)
}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;
if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();
checkFn=dirNodeCheck
}checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML)
},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;
if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();
checkFn=dirNodeCheck
}checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML)
}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);
return m?[m]:[]
}},NAME:function(match,context){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);
for(var i=0,l=results.length;
i<l;
i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i])
}}return ret.length===0?null:ret
}},TAG:function(match,context){return context.getElementsByTagName(match[1])
}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";
if(isXML){return match
}for(var i=0,elem;
(elem=curLoop[i])!=null;
i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").replace(/[\t\n]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem)
}}else{if(inplace){curLoop[i]=false
}}}}return false
},ID:function(match){return match[1].replace(/\\/g,"")
},TAG:function(match,curLoop){return match[1].toLowerCase()
},CHILD:function(match){if(match[1]==="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]==="even"&&"2n"||match[2]==="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);
match[2]=(test[1]+(test[2]||1))-0;
match[3]=test[3]-0
}match[0]=done++;
return match
},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");
if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name]
}if(match[2]==="~="){match[4]=" "+match[4]+" "
}return match
},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if((chunker.exec(match[3])||"").length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop)
}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);
if(!inplace){result.push.apply(result,ret)
}return false
}}else{if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true
}}return match
},POS:function(match){match.unshift(true);
return match
}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden"
},disabled:function(elem){return elem.disabled===true
},checked:function(elem){return elem.checked===true
},selected:function(elem){elem.parentNode.selectedIndex;
return elem.selected===true
},parent:function(elem){return !!elem.firstChild
},empty:function(elem){return !elem.firstChild
},has:function(elem,i,match){return !!Sizzle(match[3],elem).length
},header:function(elem){return/h\d/i.test(elem.nodeName)
},text:function(elem){return"text"===elem.type
},radio:function(elem){return"radio"===elem.type
},checkbox:function(elem){return"checkbox"===elem.type
},file:function(elem){return"file"===elem.type
},password:function(elem){return"password"===elem.type
},submit:function(elem){return"submit"===elem.type
},image:function(elem){return"image"===elem.type
},reset:function(elem){return"reset"===elem.type
},button:function(elem){return"button"===elem.type||elem.nodeName.toLowerCase()==="button"
},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName)
}},setFilters:{first:function(elem,i){return i===0
},last:function(elem,i,match,array){return i===array.length-1
},even:function(elem,i){return i%2===0
},odd:function(elem,i){return i%2===1
},lt:function(elem,i,match){return i<match[3]-0
},gt:function(elem,i,match){return i>match[3]-0
},nth:function(elem,i,match){return match[3]-0===i
},eq:function(elem,i,match){return match[3]-0===i
}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];
if(filter){return filter(elem,i,match,array)
}else{if(name==="contains"){return(elem.textContent||elem.innerText||getText([elem])||"").indexOf(match[3])>=0
}else{if(name==="not"){var not=match[3];
for(var i=0,l=not.length;
i<l;
i++){if(not[i]===elem){return false
}}return true
}else{Sizzle.error("Syntax error, unrecognized expression: "+name)
}}}},CHILD:function(elem,match){var type=match[1],node=elem;
switch(type){case"only":case"first":while((node=node.previousSibling)){if(node.nodeType===1){return false
}}if(type==="first"){return true
}node=elem;
case"last":while((node=node.nextSibling)){if(node.nodeType===1){return false
}}return true;
case"nth":var first=match[2],last=match[3];
if(first===1&&last===0){return true
}var doneName=match[0],parent=elem.parentNode;
if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;
for(node=parent.firstChild;
node;
node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count
}}parent.sizcache=doneName
}var diff=elem.nodeIndex-last;
if(first===0){return diff===0
}else{return(diff%first===0&&diff/first>=0)
}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match
},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match
},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1
},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];
return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false
},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];
if(filter){return filter(elem,i,match,array)
}}}};
var origPOS=Expr.match.POS;
for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);
Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source.replace(/\\(\d+)/g,function(all,num){return"\\"+(num-0+1)
}))
}var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);
if(results){results.push.apply(results,array);
return results
}return array
};
try{Array.prototype.slice.call(document.documentElement.childNodes,0)[0].nodeType
}catch(e){makeArray=function(array,results){var ret=results||[];
if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array)
}else{if(typeof array.length==="number"){for(var i=0,l=array.length;
i<l;
i++){ret.push(array[i])
}}else{for(var i=0;
array[i];
i++){ret.push(array[i])
}}}return ret
}
}var sortOrder;
if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true
}return a.compareDocumentPosition?-1:1
}var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;
if(ret===0){hasDuplicate=true
}return ret
}
}else{if("sourceIndex" in document.documentElement){sortOrder=function(a,b){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true
}return a.sourceIndex?-1:1
}var ret=a.sourceIndex-b.sourceIndex;
if(ret===0){hasDuplicate=true
}return ret
}
}else{if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true
}return a.ownerDocument?-1:1
}var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();
aRange.setStart(a,0);
aRange.setEnd(a,0);
bRange.setStart(b,0);
bRange.setEnd(b,0);
var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);
if(ret===0){hasDuplicate=true
}return ret
}
}}}function getText(elems){var ret="",elem;
for(var i=0;
elems[i];
i++){elem=elems[i];
if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue
}else{if(elem.nodeType!==8){ret+=getText(elem.childNodes)
}}}return ret
}(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();
form.innerHTML="<a name='"+id+"'/>";
var root=document.documentElement;
root.insertBefore(form,root.firstChild);
if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);
return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[]
}};
Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");
return elem.nodeType===1&&node&&node.nodeValue===match
}
}root.removeChild(form);
root=form=null
})();
(function(){var div=document.createElement("div");
div.appendChild(document.createComment(""));
if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);
if(match[1]==="*"){var tmp=[];
for(var i=0;
results[i];
i++){if(results[i].nodeType===1){tmp.push(results[i])
}}results=tmp
}return results
}
}div.innerHTML="<a href='#'></a>";
if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2)
}
}div=null
})();
if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");
div.innerHTML="<p class='TEST'></p>";
if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return 
}Sizzle=function(query,context,extra,seed){context=context||document;
if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra)
}catch(e){}}return oldSizzle(query,context,extra,seed)
};
for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop]
}div=null
})()
}(function(){var div=document.createElement("div");
div.innerHTML="<div class='test e'></div><div class='test'></div>";
if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return 
}div.lastChild.className="e";
if(div.getElementsByClassName("e").length===1){return 
}Expr.order.splice(1,0,"CLASS");
Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1])
}};
div=null
})();
function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;
i<l;
i++){var elem=checkSet[i];
if(elem){elem=elem[dir];
var match=false;
while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];
break
}if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;
elem.sizset=i
}if(elem.nodeName.toLowerCase()===cur){match=elem;
break
}elem=elem[dir]
}checkSet[i]=match
}}}function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;
i<l;
i++){var elem=checkSet[i];
if(elem){elem=elem[dir];
var match=false;
while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];
break
}if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;
elem.sizset=i
}if(typeof cur!=="string"){if(elem===cur){match=true;
break
}}else{if(Sizzle.filter(cur,[elem]).length>0){match=elem;
break
}}}elem=elem[dir]
}checkSet[i]=match
}}}var contains=document.compareDocumentPosition?function(a,b){return !!(a.compareDocumentPosition(b)&16)
}:function(a,b){return a!==b&&(a.contains?a.contains(b):true)
};
var isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;
return documentElement?documentElement.nodeName!=="HTML":false
};
var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;
while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];
selector=selector.replace(Expr.match.PSEUDO,"")
}selector=Expr.relative[selector]?selector+"*":selector;
for(var i=0,l=root.length;
i<l;
i++){Sizzle(selector,root[i],tmpSet)
}return Sizzle.filter(later,tmpSet)
};
jQuery.find=Sizzle;
jQuery.expr=Sizzle.selectors;
jQuery.expr[":"]=jQuery.expr.filters;
jQuery.unique=Sizzle.uniqueSort;
jQuery.text=getText;
jQuery.isXMLDoc=isXML;
jQuery.contains=contains;
return ;
window.Sizzle=Sizzle
})();
var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,slice=Array.prototype.slice;
var winnow=function(elements,qualifier,keep){if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){return !!qualifier.call(elem,i,elem)===keep
})
}else{if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return(elem===qualifier)===keep
})
}else{if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1
});
if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep)
}else{qualifier=jQuery.filter(qualifier,filtered)
}}}}return jQuery.grep(elements,function(elem,i){return(jQuery.inArray(elem,qualifier)>=0)===keep
})
};
jQuery.fn.extend({find:function(selector){var ret=this.pushStack("","find",selector),length=0;
for(var i=0,l=this.length;
i<l;
i++){length=ret.length;
jQuery.find(selector,this[i],ret);
if(i>0){for(var n=length;
n<ret.length;
n++){for(var r=0;
r<length;
r++){if(ret[r]===ret[n]){ret.splice(n--,1);
break
}}}}}return ret
},has:function(target){var targets=jQuery(target);
return this.filter(function(){for(var i=0,l=targets.length;
i<l;
i++){if(jQuery.contains(this,targets[i])){return true
}}})
},not:function(selector){return this.pushStack(winnow(this,selector,false),"not",selector)
},filter:function(selector){return this.pushStack(winnow(this,selector,true),"filter",selector)
},is:function(selector){return !!selector&&jQuery.filter(selector,this).length>0
},closest:function(selectors,context){if(jQuery.isArray(selectors)){var ret=[],cur=this[0],match,matches={},selector;
if(cur&&selectors.length){for(var i=0,l=selectors.length;
i<l;
i++){selector=selectors[i];
if(!matches[selector]){matches[selector]=jQuery.expr.match.POS.test(selector)?jQuery(selector,context||this.context):selector
}}while(cur&&cur.ownerDocument&&cur!==context){for(selector in matches){match=matches[selector];
if(match.jquery?match.index(cur)>-1:jQuery(cur).is(match)){ret.push({selector:selector,elem:cur});
delete matches[selector]
}}cur=cur.parentNode
}}return ret
}var pos=jQuery.expr.match.POS.test(selectors)?jQuery(selectors,context||this.context):null;
return this.map(function(i,cur){while(cur&&cur.ownerDocument&&cur!==context){if(pos?pos.index(cur)>-1:jQuery(cur).is(selectors)){return cur
}cur=cur.parentNode
}return null
})
},index:function(elem){if(!elem||typeof elem==="string"){return jQuery.inArray(this[0],elem?jQuery(elem):this.parent().children())
}return jQuery.inArray(elem.jquery?elem[0]:elem,this)
},add:function(selector,context){var set=typeof selector==="string"?jQuery(selector,context||this.context):jQuery.makeArray(selector),all=jQuery.merge(this.get(),set);
return this.pushStack(isDisconnected(set[0])||isDisconnected(all[0])?all:jQuery.unique(all))
},andSelf:function(){return this.add(this.prevObject)
}});
function isDisconnected(node){return !node||!node.parentNode||node.parentNode.nodeType===11
}jQuery.each({parent:function(elem){var parent=elem.parentNode;
return parent&&parent.nodeType!==11?parent:null
},parents:function(elem){return jQuery.dir(elem,"parentNode")
},parentsUntil:function(elem,i,until){return jQuery.dir(elem,"parentNode",until)
},next:function(elem){return jQuery.nth(elem,2,"nextSibling")
},prev:function(elem){return jQuery.nth(elem,2,"previousSibling")
},nextAll:function(elem){return jQuery.dir(elem,"nextSibling")
},prevAll:function(elem){return jQuery.dir(elem,"previousSibling")
},nextUntil:function(elem,i,until){return jQuery.dir(elem,"nextSibling",until)
},prevUntil:function(elem,i,until){return jQuery.dir(elem,"previousSibling",until)
},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem)
},children:function(elem){return jQuery.sibling(elem.firstChild)
},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes)
}},function(name,fn){jQuery.fn[name]=function(until,selector){var ret=jQuery.map(this,fn,until);
if(!runtil.test(name)){selector=until
}if(selector&&typeof selector==="string"){ret=jQuery.filter(selector,ret)
}ret=this.length>1?jQuery.unique(ret):ret;
if((this.length>1||rmultiselector.test(selector))&&rparentsprev.test(name)){ret=ret.reverse()
}return this.pushStack(ret,name,slice.call(arguments).join(","))
}
});
jQuery.extend({filter:function(expr,elems,not){if(not){expr=":not("+expr+")"
}return jQuery.find.matches(expr,elems)
},dir:function(elem,dir,until){var matched=[],cur=elem[dir];
while(cur&&cur.nodeType!==9&&(until===undefined||cur.nodeType!==1||!jQuery(cur).is(until))){if(cur.nodeType===1){matched.push(cur)
}cur=cur[dir]
}return matched
},nth:function(cur,result,dir,elem){result=result||1;
var num=0;
for(;
cur;
cur=cur[dir]){if(cur.nodeType===1&&++num===result){break
}}return cur
},sibling:function(n,elem){var r=[];
for(;
n;
n=n.nextSibling){if(n.nodeType===1&&n!==elem){r.push(n)
}}return r
}});
var rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/(<([\w:]+)[^>]*?)\/>/g,rselfClosing=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&#?\w+;/,rnocache=/<script|<object|<embed|<option|<style/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,fcloseTag=function(all,front,tag){return rselfClosing.test(tag)?all:front+"></"+tag+">"
},wrapMap={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};
wrapMap.optgroup=wrapMap.option;
wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead;
wrapMap.th=wrapMap.td;
if(!jQuery.support.htmlSerialize){wrapMap._default=[1,"div<div>","</div>"]
}jQuery.fn.extend({text:function(text){if(jQuery.isFunction(text)){return this.each(function(i){var self=jQuery(this);
self.text(text.call(this,i,self.text()))
})
}if(typeof text!=="object"&&text!==undefined){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text))
}return jQuery.text(this)
},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i))
})
}if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);
if(this[0].parentNode){wrap.insertBefore(this[0])
}wrap.map(function(){var elem=this;
while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild
}return elem
}).append(this)
}return this
},wrapInner:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapInner(html.call(this,i))
})
}return this.each(function(){var self=jQuery(this),contents=self.contents();
if(contents.length){contents.wrapAll(html)
}else{self.append(html)
}})
},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html)
})
},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes)
}}).end()
},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.appendChild(elem)
}})
},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.insertBefore(elem,this.firstChild)
}})
},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this)
})
}else{if(arguments.length){var set=jQuery(arguments[0]);
set.push.apply(set,this.toArray());
return this.pushStack(set,"before",arguments)
}}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling)
})
}else{if(arguments.length){var set=this.pushStack(this,"after",arguments);
set.push.apply(set,jQuery(arguments[0]).toArray());
return set
}}},remove:function(selector,keepData){for(var i=0,elem;
(elem=this[i])!=null;
i++){if(!selector||jQuery.filter(selector,[elem]).length){if(!keepData&&elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));
jQuery.cleanData([elem])
}if(elem.parentNode){elem.parentNode.removeChild(elem)
}}}return this
},empty:function(){for(var i=0,elem;
(elem=this[i])!=null;
i++){if(elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"))
}while(elem.firstChild){elem.removeChild(elem.firstChild)
}}return this
},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML,ownerDocument=this.ownerDocument;
if(!html){var div=ownerDocument.createElement("div");
div.appendChild(this.cloneNode(true));
html=div.innerHTML
}return jQuery.clean([html.replace(rinlinejQuery,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(rleadingWhitespace,"")],ownerDocument)[0]
}else{return this.cloneNode(true)
}});
if(events===true){cloneCopyEvent(this,ret);
cloneCopyEvent(this.find("*"),ret.find("*"))
}return ret
},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null
}else{if(typeof value==="string"&&!rnocache.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,fcloseTag);
try{for(var i=0,l=this.length;
i<l;
i++){if(this[i].nodeType===1){jQuery.cleanData(this[i].getElementsByTagName("*"));
this[i].innerHTML=value
}}}catch(e){this.empty().append(value)
}}else{if(jQuery.isFunction(value)){this.each(function(i){var self=jQuery(this),old=self.html();
self.empty().append(function(){return value.call(this,i,old)
})
})
}else{this.empty().append(value)
}}}return this
},replaceWith:function(value){if(this[0]&&this[0].parentNode){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this),old=self.html();
self.replaceWith(value.call(this,i,old))
})
}if(typeof value!=="string"){value=jQuery(value).detach()
}return this.each(function(){var next=this.nextSibling,parent=this.parentNode;
jQuery(this).remove();
if(next){jQuery(next).before(value)
}else{jQuery(parent).append(value)
}})
}else{return this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value)
}},detach:function(selector){return this.remove(selector,true)
},domManip:function(args,table,callback){var results,first,value=args[0],scripts=[],fragment,parent;
if(!jQuery.support.checkClone&&arguments.length===3&&typeof value==="string"&&rchecked.test(value)){return this.each(function(){jQuery(this).domManip(args,table,callback,true)
})
}if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);
args[0]=value.call(this,i,table?self.html():undefined);
self.domManip(args,table,callback)
})
}if(this[0]){parent=value&&value.parentNode;
if(jQuery.support.parentNode&&parent&&parent.nodeType===11&&parent.childNodes.length===this.length){results={fragment:parent}
}else{results=buildFragment(args,this,scripts)
}fragment=results.fragment;
if(fragment.childNodes.length===1){first=fragment=fragment.firstChild
}else{first=fragment.firstChild
}if(first){table=table&&jQuery.nodeName(first,"tr");
for(var i=0,l=this.length;
i<l;
i++){callback.call(table?root(this[i],first):this[i],i>0||results.cacheable||this.length>1?fragment.cloneNode(true):fragment)
}}if(scripts.length){jQuery.each(scripts,evalScript)
}}return this;
function root(elem,cur){return jQuery.nodeName(elem,"table")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem
}}});
function cloneCopyEvent(orig,ret){var i=0;
ret.each(function(){if(this.nodeName!==(orig[i]&&orig[i].nodeName)){return 
}var oldData=jQuery.data(orig[i++]),curData=jQuery.data(this,oldData),events=oldData&&oldData.events;
if(events){delete curData.handle;
curData.events={};
for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data)
}}}})
}function buildFragment(args,nodes,scripts){var fragment,cacheable,cacheresults,doc=(nodes&&nodes[0]?nodes[0].ownerDocument||nodes[0]:document);
if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&doc===document&&!rnocache.test(args[0])&&(jQuery.support.checkClone||!rchecked.test(args[0]))){cacheable=true;
cacheresults=jQuery.fragments[args[0]];
if(cacheresults){if(cacheresults!==1){fragment=cacheresults
}}}if(!fragment){fragment=doc.createDocumentFragment();
jQuery.clean(args,doc,fragment,scripts)
}if(cacheable){jQuery.fragments[args[0]]=cacheresults?fragment:1
}return{fragment:fragment,cacheable:cacheable}
}jQuery.fragments={};
jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector),parent=this.length===1&&this[0].parentNode;
if(parent&&parent.nodeType===11&&parent.childNodes.length===1&&insert.length===1){insert[original](this[0]);
return this
}else{for(var i=0,l=insert.length;
i<l;
i++){var elems=(i>0?this.clone(true):this).get();
jQuery.fn[original].apply(jQuery(insert[i]),elems);
ret=ret.concat(elems)
}return this.pushStack(ret,name,insert.selector)
}}
});
jQuery.extend({clean:function(elems,context,fragment,scripts){context=context||document;
if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document
}var ret=[];
for(var i=0,elem;
(elem=elems[i])!=null;
i++){if(typeof elem==="number"){elem+=""
}if(!elem){continue
}if(typeof elem==="string"&&!rhtml.test(elem)){elem=context.createTextNode(elem)
}else{if(typeof elem==="string"){elem=elem.replace(rxhtmlTag,fcloseTag);
var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");
div.innerHTML=wrap[1]+elem+wrap[2];
while(depth--){div=div.lastChild
}if(!jQuery.support.tbody){var hasBody=rtbody.test(elem),tbody=tag==="table"&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]==="<table>"&&!hasBody?div.childNodes:[];
for(var j=tbody.length-1;
j>=0;
--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j])
}}}if(!jQuery.support.leadingWhitespace&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild)
}elem=div.childNodes
}}if(elem.nodeType){ret.push(elem)
}else{ret=jQuery.merge(ret,elem)
}}if(fragment){for(var i=0;
ret[i];
i++){if(scripts&&jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i])
}else{if(ret[i].nodeType===1){ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))))
}fragment.appendChild(ret[i])
}}}return ret
},cleanData:function(elems){var data,id,cache=jQuery.cache,special=jQuery.event.special,deleteExpando=jQuery.support.deleteExpando;
for(var i=0,elem;
(elem=elems[i])!=null;
i++){id=elem[jQuery.expando];
if(id){data=cache[id];
if(data.events){for(var type in data.events){if(special[type]){jQuery.event.remove(elem,type)
}else{removeEvent(elem,type,data.handle)
}}}if(deleteExpando){delete elem[jQuery.expando]
}else{if(elem.removeAttribute){elem.removeAttribute(jQuery.expando)
}}delete cache[id]
}}}});
var rexclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,ralpha=/alpha\([^)]*\)/,ropacity=/opacity=([^)]*)/,rfloat=/float/i,rdashAlpha=/-([a-z])/ig,rupper=/([A-Z])/g,rnumpx=/^-?\d+(?:px)?$/i,rnum=/^-?\d/,cssShow={position:"absolute",visibility:"hidden",display:"block"},cssWidth=["Left","Right"],cssHeight=["Top","Bottom"],getComputedStyle=document.defaultView&&document.defaultView.getComputedStyle,styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat",fcamelCase=function(all,letter){return letter.toUpperCase()
};
jQuery.fn.css=function(name,value){return access(this,name,value,true,function(elem,name,value){if(value===undefined){return jQuery.curCSS(elem,name)
}if(typeof value==="number"&&!rexclude.test(name)){value+="px"
}jQuery.style(elem,name,value)
})
};
jQuery.extend({style:function(elem,name,value){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined
}if((name==="width"||name==="height")&&parseFloat(value)<0){value=undefined
}var style=elem.style||elem,set=value!==undefined;
if(!jQuery.support.opacity&&name==="opacity"){if(set){style.zoom=1;
var opacity=parseInt(value,10)+""==="NaN"?"":"alpha(opacity="+value*100+")";
var filter=style.filter||jQuery.curCSS(elem,"filter")||"";
style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):opacity
}return style.filter&&style.filter.indexOf("opacity=")>=0?(parseFloat(ropacity.exec(style.filter)[1])/100)+"":""
}if(rfloat.test(name)){name=styleFloat
}name=name.replace(rdashAlpha,fcamelCase);
if(set){style[name]=value
}return style[name]
},css:function(elem,name,force,extra){if(name==="width"||name==="height"){var val,props=cssShow,which=name==="width"?cssWidth:cssHeight;
function getWH(){val=name==="width"?elem.offsetWidth:elem.offsetHeight;
if(extra==="border"){return 
}jQuery.each(which,function(){if(!extra){val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0
}if(extra==="margin"){val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0
}else{val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0
}})
}if(elem.offsetWidth!==0){getWH()
}else{jQuery.swap(elem,props,getWH)
}return Math.max(0,Math.round(val))
}return jQuery.curCSS(elem,name,force)
},curCSS:function(elem,name,force){var ret,style=elem.style,filter;
if(!jQuery.support.opacity&&name==="opacity"&&elem.currentStyle){ret=ropacity.test(elem.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";
return ret===""?"1":ret
}if(rfloat.test(name)){name=styleFloat
}if(!force&&style&&style[name]){ret=style[name]
}else{if(getComputedStyle){if(rfloat.test(name)){name="float"
}name=name.replace(rupper,"-$1").toLowerCase();
var defaultView=elem.ownerDocument.defaultView;
if(!defaultView){return null
}var computedStyle=defaultView.getComputedStyle(elem,null);
if(computedStyle){ret=computedStyle.getPropertyValue(name)
}if(name==="opacity"&&ret===""){ret="1"
}}else{if(elem.currentStyle){var camelCase=name.replace(rdashAlpha,fcamelCase);
ret=elem.currentStyle[name]||elem.currentStyle[camelCase];
if(!rnumpx.test(ret)&&rnum.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;
elem.runtimeStyle.left=elem.currentStyle.left;
style.left=camelCase==="fontSize"?"1em":(ret||0);
ret=style.pixelLeft+"px";
style.left=left;
elem.runtimeStyle.left=rsLeft
}}}}return ret
},swap:function(elem,options,callback){var old={};
for(var name in options){old[name]=elem.style[name];
elem.style[name]=options[name]
}callback.call(elem);
for(var name in options){elem.style[name]=old[name]
}}});
if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight,skip=elem.nodeName.toLowerCase()==="tr";
return width===0&&height===0&&!skip?true:width>0&&height>0&&!skip?false:jQuery.curCSS(elem,"display")==="none"
};
jQuery.expr.filters.visible=function(elem){return !jQuery.expr.filters.hidden(elem)
}
}var jsc=now(),rscript=/<script(.|\s)*?\/script>/gi,rselectTextarea=/select|textarea/i,rinput=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,jsre=/=\?(&|$)/,rquery=/\?/,rts=/(\?|&)_=.*?(&|$)/,rurl=/^(\w+:)?\/\/([^\/?#]+)/,r20=/%20/g,_load=jQuery.fn.load;
jQuery.fn.extend({load:function(url,params,callback){if(typeof url!=="string"){return _load.call(this,url)
}else{if(!this.length){return this
}}var off=url.indexOf(" ");
if(off>=0){var selector=url.slice(off,url.length);
url=url.slice(0,off)
}var type="GET";
if(params){if(jQuery.isFunction(params)){callback=params;
params=null
}else{if(typeof params==="object"){params=jQuery.param(params,jQuery.ajaxSettings.traditional);
type="POST"
}}}var self=this;
jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status==="success"||status==="notmodified"){self.html(selector?jQuery("<div />").append(res.responseText.replace(rscript,"")).find(selector):res.responseText)
}if(callback){self.each(callback,[res.responseText,status,res])
}}});
return this
},serialize:function(){return jQuery.param(this.serializeArray())
},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this
}).filter(function(){return this.name&&!this.disabled&&(this.checked||rselectTextarea.test(this.nodeName)||rinput.test(this.type))
}).map(function(i,elem){var val=jQuery(this).val();
return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val}
}):{name:elem.name,value:val}
}).get()
}});
jQuery.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f)
}
});
jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;
callback=data;
data=null
}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type})
},getScript:function(url,callback){return jQuery.get(url,null,callback,"script")
},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json")
},post:function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;
callback=data;
data={}
}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type})
},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings)
},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:window.XMLHttpRequest&&(window.location.protocol!=="file:"||!window.ActiveXObject)?function(){return new window.XMLHttpRequest()
}:function(){try{return new window.ActiveXObject("Microsoft.XMLHTTP")
}catch(e){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(origSettings){var s=jQuery.extend(true,{},jQuery.ajaxSettings,origSettings);
var jsonp,status,data,callbackContext=origSettings&&origSettings.context||s,type=s.type.toUpperCase();
if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional)
}if(s.dataType==="jsonp"){if(type==="GET"){if(!jsre.test(s.url)){s.url+=(rquery.test(s.url)?"&":"?")+(s.jsonp||"callback")+"=?"
}}else{if(!s.data||!jsre.test(s.data)){s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?"
}}s.dataType="json"
}if(s.dataType==="json"&&(s.data&&jsre.test(s.data)||jsre.test(s.url))){jsonp=s.jsonpCallback||("jsonp"+jsc++);
if(s.data){s.data=(s.data+"").replace(jsre,"="+jsonp+"$1")
}s.url=s.url.replace(jsre,"="+jsonp+"$1");
s.dataType="script";
window[jsonp]=window[jsonp]||function(tmp){data=tmp;
success();
complete();
window[jsonp]=undefined;
try{delete window[jsonp]
}catch(e){}if(head){head.removeChild(script)
}}
}if(s.dataType==="script"&&s.cache===null){s.cache=false
}if(s.cache===false&&type==="GET"){var ts=now();
var ret=s.url.replace(rts,"$1_="+ts+"$2");
s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"")
}if(s.data&&type==="GET"){s.url+=(rquery.test(s.url)?"&":"?")+s.data
}if(s.global&&!jQuery.active++){jQuery.event.trigger("ajaxStart")
}var parts=rurl.exec(s.url),remote=parts&&(parts[1]&&parts[1]!==location.protocol||parts[2]!==location.host);
if(s.dataType==="script"&&type==="GET"&&remote){var head=document.getElementsByTagName("head")[0]||document.documentElement;
var script=document.createElement("script");
script.src=s.url;
if(s.scriptCharset){script.charset=s.scriptCharset
}if(!jsonp){var done=false;
script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){done=true;
success();
complete();
script.onload=script.onreadystatechange=null;
if(head&&script.parentNode){head.removeChild(script)
}}}
}head.insertBefore(script,head.firstChild);
return undefined
}var requestDone=false;
var xhr=s.xhr();
if(!xhr){return 
}if(s.username){xhr.open(type,s.url,s.async,s.username,s.password)
}else{xhr.open(type,s.url,s.async)
}try{if(s.data||origSettings&&origSettings.contentType){xhr.setRequestHeader("Content-Type",s.contentType)
}if(s.ifModified){if(jQuery.lastModified[s.url]){xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url])
}if(jQuery.etag[s.url]){xhr.setRequestHeader("If-None-Match",jQuery.etag[s.url])
}}if(!remote){xhr.setRequestHeader("X-Requested-With","XMLHttpRequest")
}xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default)
}catch(e){}if(s.beforeSend&&s.beforeSend.call(callbackContext,xhr,s)===false){if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")
}xhr.abort();
return false
}if(s.global){trigger("ajaxSend",[xhr,s])
}var onreadystatechange=xhr.onreadystatechange=function(isTimeout){if(!xhr||xhr.readyState===0||isTimeout==="abort"){if(!requestDone){complete()
}requestDone=true;
if(xhr){xhr.onreadystatechange=jQuery.noop
}}else{if(!requestDone&&xhr&&(xhr.readyState===4||isTimeout==="timeout")){requestDone=true;
xhr.onreadystatechange=jQuery.noop;
status=isTimeout==="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";
var errMsg;
if(status==="success"){try{data=jQuery.httpData(xhr,s.dataType,s)
}catch(err){status="parsererror";
errMsg=err
}}if(status==="success"||status==="notmodified"){if(!jsonp){success()
}}else{jQuery.handleError(s,xhr,status,errMsg)
}complete();
if(isTimeout==="timeout"){xhr.abort()
}if(s.async){xhr=null
}}}};
try{var oldAbort=xhr.abort;
xhr.abort=function(){if(xhr){oldAbort.call(xhr)
}onreadystatechange("abort")
}
}catch(e){}if(s.async&&s.timeout>0){setTimeout(function(){if(xhr&&!requestDone){onreadystatechange("timeout")
}},s.timeout)
}try{xhr.send(type==="POST"||type==="PUT"||type==="DELETE"?s.data:null)
}catch(e){jQuery.handleError(s,xhr,null,e);
complete()
}if(!s.async){onreadystatechange()
}function success(){if(s.success){s.success.call(callbackContext,data,status,xhr)
}if(s.global){trigger("ajaxSuccess",[xhr,s])
}}function complete(){if(s.complete){s.complete.call(callbackContext,xhr,status)
}if(s.global){trigger("ajaxComplete",[xhr,s])
}if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")
}}function trigger(type,args){(s.context?jQuery(s.context):jQuery.event).trigger(type,args)
}return xhr
},handleError:function(s,xhr,status,e){if(s.error){s.error.call(s.context||s,xhr,status,e)
}if(s.global){(s.context?jQuery(s.context):jQuery.event).trigger("ajaxError",[xhr,s,e])
}},active:0,httpSuccess:function(xhr){try{return !xhr.status&&location.protocol==="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status===304||xhr.status===1223||xhr.status===0
}catch(e){}return false
},httpNotModified:function(xhr,url){var lastModified=xhr.getResponseHeader("Last-Modified"),etag=xhr.getResponseHeader("Etag");
if(lastModified){jQuery.lastModified[url]=lastModified
}if(etag){jQuery.etag[url]=etag
}return xhr.status===304||xhr.status===0
},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type")||"",xml=type==="xml"||!type&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;
if(xml&&data.documentElement.nodeName==="parsererror"){jQuery.error("parsererror")
}if(s&&s.dataFilter){data=s.dataFilter(data,type)
}if(typeof data==="string"){if(type==="json"||!type&&ct.indexOf("json")>=0){data=jQuery.parseJSON(data)
}else{if(type==="script"||!type&&ct.indexOf("javascript")>=0){jQuery.globalEval(data)
}}}return data
},param:function(a,traditional){var s=[];
if(traditional===undefined){traditional=jQuery.ajaxSettings.traditional
}if(jQuery.isArray(a)||a.jquery){jQuery.each(a,function(){add(this.name,this.value)
})
}else{for(var prefix in a){buildParams(prefix,a[prefix])
}}return s.join("&").replace(r20,"+");
function buildParams(prefix,obj){if(jQuery.isArray(obj)){jQuery.each(obj,function(i,v){if(traditional||/\[\]$/.test(prefix)){add(prefix,v)
}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v)
}})
}else{if(!traditional&&obj!=null&&typeof obj==="object"){jQuery.each(obj,function(k,v){buildParams(prefix+"["+k+"]",v)
})
}else{add(prefix,obj)
}}}function add(key,value){value=jQuery.isFunction(value)?value():value;
s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value)
}}});
var elemdisplay={},rfxtypes=/toggle|show|hide/,rfxnum=/^([+-]=)?([\d+-.]+)(.*)$/,timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];
jQuery.fn.extend({show:function(speed,callback){if(speed||speed===0){return this.animate(genFx("show",3),speed,callback)
}else{for(var i=0,l=this.length;
i<l;
i++){var old=jQuery.data(this[i],"olddisplay");
this[i].style.display=old||"";
if(jQuery.css(this[i],"display")==="none"){var nodeName=this[i].nodeName,display;
if(elemdisplay[nodeName]){display=elemdisplay[nodeName]
}else{var elem=jQuery("<"+nodeName+" />").appendTo("body");
display=elem.css("display");
if(display==="none"){display="block"
}elem.remove();
elemdisplay[nodeName]=display
}jQuery.data(this[i],"olddisplay",display)
}}for(var j=0,k=this.length;
j<k;
j++){this[j].style.display=jQuery.data(this[j],"olddisplay")||""
}return this
}},hide:function(speed,callback){if(speed||speed===0){return this.animate(genFx("hide",3),speed,callback)
}else{for(var i=0,l=this.length;
i<l;
i++){var old=jQuery.data(this[i],"olddisplay");
if(!old&&old!=="none"){jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"))
}}for(var j=0,k=this.length;
j<k;
j++){this[j].style.display="none"
}return this
}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";
if(jQuery.isFunction(fn)&&jQuery.isFunction(fn2)){this._toggle.apply(this,arguments)
}else{if(fn==null||bool){this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");
jQuery(this)[state?"show":"hide"]()
})
}else{this.animate(genFx("toggle",3),fn,fn2)
}}return this
},fadeTo:function(speed,to,callback){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:to},speed,callback)
},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);
if(jQuery.isEmptyObject(prop)){return this.each(optall.complete)
}return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType===1&&jQuery(this).is(":hidden"),self=this;
for(p in prop){var name=p.replace(rdashAlpha,fcamelCase);
if(p!==name){prop[name]=prop[p];
delete prop[p];
p=name
}if(prop[p]==="hide"&&hidden||prop[p]==="show"&&!hidden){return opt.complete.call(this)
}if((p==="height"||p==="width")&&this.style){opt.display=jQuery.css(this,"display");
opt.overflow=this.style.overflow
}if(jQuery.isArray(prop[p])){(opt.specialEasing=opt.specialEasing||{})[p]=prop[p][1];
prop[p]=prop[p][0]
}}if(opt.overflow!=null){this.style.overflow="hidden"
}opt.curAnim=jQuery.extend({},prop);
jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);
if(rfxtypes.test(val)){e[val==="toggle"?hidden?"show":"hide":val](prop)
}else{var parts=rfxnum.exec(val),start=e.cur(true)||0;
if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";
if(unit!=="px"){self.style[name]=(end||1)+unit;
start=((end||1)/e.cur(true))*start;
self.style[name]=start+unit
}if(parts[1]){end=((parts[1]==="-="?-1:1)*end)+start
}e.custom(start,end,unit)
}else{e.custom(start,val,"")
}}});
return true
})
},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;
if(clearQueue){this.queue([])
}this.each(function(){for(var i=timers.length-1;
i>=0;
i--){if(timers[i].elem===this){if(gotoEnd){timers[i](true)
}timers.splice(i,1)
}}});
if(!gotoEnd){this.dequeue()
}return this
}});
jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback)
}
});
jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};
opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;
opt.old=opt.complete;
opt.complete=function(){if(opt.queue!==false){jQuery(this).dequeue()
}if(jQuery.isFunction(opt.old)){opt.old.call(this)
}};
return opt
},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p
},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum
}},timers:[],fx:function(elem,options,prop){this.options=options;
this.elem=elem;
this.prop=prop;
if(!options.orig){options.orig={}
}}});
jQuery.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)
}(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);
if((this.prop==="height"||this.prop==="width")&&this.elem.style){this.elem.style.display="block"
}},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]
}var r=parseFloat(jQuery.css(this.elem,this.prop,force));
return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0
},custom:function(from,to,unit){this.startTime=now();
this.start=from;
this.end=to;
this.unit=unit||this.unit||"px";
this.now=this.start;
this.pos=this.state=0;
var self=this;
function t(gotoEnd){return self.step(gotoEnd)
}t.elem=this.elem;
if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(jQuery.fx.tick,13)
}},show:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);
this.options.show=true;
this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());
jQuery(this.elem).show()
},hide:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);
this.options.hide=true;
this.custom(this.cur(),0)
},step:function(gotoEnd){var t=now(),done=true;
if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;
this.pos=this.state=1;
this.update();
this.options.curAnim[this.prop]=true;
for(var i in this.options.curAnim){if(this.options.curAnim[i]!==true){done=false
}}if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;
var old=jQuery.data(this.elem,"olddisplay");
this.elem.style.display=old?old:this.options.display;
if(jQuery.css(this.elem,"display")==="none"){this.elem.style.display="block"
}}if(this.options.hide){jQuery(this.elem).hide()
}if(this.options.hide||this.options.show){for(var p in this.options.curAnim){jQuery.style(this.elem,p,this.options.orig[p])
}}this.options.complete.call(this.elem)
}return false
}else{var n=t-this.startTime;
this.state=n/this.options.duration;
var specialEasing=this.options.specialEasing&&this.options.specialEasing[this.prop];
var defaultEasing=this.options.easing||(jQuery.easing.swing?"swing":"linear");
this.pos=jQuery.easing[specialEasing||defaultEasing](this.state,n,0,1,this.options.duration);
this.now=this.start+((this.end-this.start)*this.pos);
this.update()
}return true
}};
jQuery.extend(jQuery.fx,{tick:function(){var timers=jQuery.timers;
for(var i=0;
i<timers.length;
i++){if(!timers[i]()){timers.splice(i--,1)
}}if(!timers.length){jQuery.fx.stop()
}},stop:function(){clearInterval(timerId);
timerId=null
},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.style(fx.elem,"opacity",fx.now)
},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null){fx.elem.style[fx.prop]=(fx.prop==="width"||fx.prop==="height"?Math.max(0,fx.now):fx.now)+fx.unit
}else{fx.elem[fx.prop]=fx.now
}}}});
if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem
}).length
}
}function genFx(type,num){var obj={};
jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type
});
return obj
}if("getBoundingClientRect" in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0];
if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i)
})
}if(!elem||!elem.ownerDocument){return null
}if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem)
}var box=elem.getBoundingClientRect(),doc=elem.ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.support.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;
return{top:top,left:left}
}
}else{jQuery.fn.offset=function(options){var elem=this[0];
if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i)
})
}if(!elem||!elem.ownerDocument){return null
}if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem)
}jQuery.offset.initialize();
var offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle,top=elem.offsetTop,left=elem.offsetLeft;
while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){break
}computedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle;
top-=elem.scrollTop;
left-=elem.scrollLeft;
if(elem===offsetParent){top+=elem.offsetTop;
left+=elem.offsetLeft;
if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.nodeName))){top+=parseFloat(computedStyle.borderTopWidth)||0;
left+=parseFloat(computedStyle.borderLeftWidth)||0
}prevOffsetParent=offsetParent,offsetParent=elem.offsetParent
}if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible"){top+=parseFloat(computedStyle.borderTopWidth)||0;
left+=parseFloat(computedStyle.borderLeftWidth)||0
}prevComputedStyle=computedStyle
}if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static"){top+=body.offsetTop;
left+=body.offsetLeft
}if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){top+=Math.max(docElem.scrollTop,body.scrollTop);
left+=Math.max(docElem.scrollLeft,body.scrollLeft)
}return{top:top,left:left}
}
}jQuery.offset={initialize:function(){var body=document.body,container=document.createElement("div"),innerDiv,checkDiv,table,td,bodyMarginTop=parseFloat(jQuery.curCSS(body,"marginTop",true))||0,html="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";
jQuery.extend(container.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});
container.innerHTML=html;
body.insertBefore(container,body.firstChild);
innerDiv=container.firstChild;
checkDiv=innerDiv.firstChild;
td=innerDiv.nextSibling.firstChild.firstChild;
this.doesNotAddBorder=(checkDiv.offsetTop!==5);
this.doesAddBorderForTableAndCells=(td.offsetTop===5);
checkDiv.style.position="fixed",checkDiv.style.top="20px";
this.supportsFixedPosition=(checkDiv.offsetTop===20||checkDiv.offsetTop===15);
checkDiv.style.position=checkDiv.style.top="";
innerDiv.style.overflow="hidden",innerDiv.style.position="relative";
this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);
this.doesNotIncludeMarginInBodyOffset=(body.offsetTop!==bodyMarginTop);
body.removeChild(container);
body=container=innerDiv=checkDiv=table=td=null;
jQuery.offset.initialize=jQuery.noop
},bodyOffset:function(body){var top=body.offsetTop,left=body.offsetLeft;
jQuery.offset.initialize();
if(jQuery.offset.doesNotIncludeMarginInBodyOffset){top+=parseFloat(jQuery.curCSS(body,"marginTop",true))||0;
left+=parseFloat(jQuery.curCSS(body,"marginLeft",true))||0
}return{top:top,left:left}
},setOffset:function(elem,options,i){if(/static/.test(jQuery.curCSS(elem,"position"))){elem.style.position="relative"
}var curElem=jQuery(elem),curOffset=curElem.offset(),curTop=parseInt(jQuery.curCSS(elem,"top",true),10)||0,curLeft=parseInt(jQuery.curCSS(elem,"left",true),10)||0;
if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset)
}var props={top:(options.top-curOffset.top)+curTop,left:(options.left-curOffset.left)+curLeft};
if("using" in options){options.using.call(elem,props)
}else{curElem.css(props)
}}};
jQuery.fn.extend({position:function(){if(!this[0]){return null
}var elem=this[0],offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();
offset.top-=parseFloat(jQuery.curCSS(elem,"marginTop",true))||0;
offset.left-=parseFloat(jQuery.curCSS(elem,"marginLeft",true))||0;
parentOffset.top+=parseFloat(jQuery.curCSS(offsetParent[0],"borderTopWidth",true))||0;
parentOffset.left+=parseFloat(jQuery.curCSS(offsetParent[0],"borderLeftWidth",true))||0;
return{top:offset.top-parentOffset.top,left:offset.left-parentOffset.left}
},offsetParent:function(){return this.map(function(){var offsetParent=this.offsetParent||document.body;
while(offsetParent&&(!/^body|html$/i.test(offsetParent.nodeName)&&jQuery.css(offsetParent,"position")==="static")){offsetParent=offsetParent.offsetParent
}return offsetParent
})
}});
jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;
jQuery.fn[method]=function(val){var elem=this[0],win;
if(!elem){return null
}if(val!==undefined){return this.each(function(){win=getWindow(this);
if(win){win.scrollTo(!i?val:jQuery(win).scrollLeft(),i?val:jQuery(win).scrollTop())
}else{this[method]=val
}})
}else{win=getWindow(elem);
return win?("pageXOffset" in win)?win[i?"pageYOffset":"pageXOffset"]:jQuery.support.boxModel&&win.document.documentElement[method]||win.document.body[method]:elem[method]
}}
});
function getWindow(elem){return("scrollTo" in elem&&elem.document)?elem:elem.nodeType===9?elem.defaultView||elem.parentWindow:false
}jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();
jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],type,false,"padding"):null
};
jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],type,false,margin?"margin":"border"):null
};
jQuery.fn[type]=function(size){var elem=this[0];
if(!elem){return size==null?null:this
}if(jQuery.isFunction(size)){return this.each(function(i){var self=jQuery(this);
self[type](size.call(this,i,self[type]()))
})
}return("scrollTo" in elem&&elem.document)?elem.document.compatMode==="CSS1Compat"&&elem.document.documentElement["client"+name]||elem.document.body["client"+name]:(elem.nodeType===9)?Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]):size===undefined?jQuery.css(elem,type):this.css(type,typeof size==="string"?size:size+"px")
}
});
window.jQuery=window.$=jQuery
})(window);
jQuery.extend({elemGetType:function(A){if(A&&jQuery.browser.msie&&A.scopeName&&A.scopeName!="HTML"&&document.namespaces.item(A.scopeName).urn.toLowerCase()=="urn:schemas-microsoft-com:vml"){return"vml"
}return A.type
}});
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var d="undefined",R="object",s="Shockwave Flash",x="ShockwaveFlash.ShockwaveFlash",Q="application/x-shockwave-flash",r="SWFObjectExprInst",X="onreadystatechange",o=window,J=document,T=navigator,u=false,v=[H],O=[],n=[],i=[],L,q,e,b,j=false,A=false,N,g,M=true,m=function(){var AB=typeof J.getElementById!=d&&typeof J.getElementsByTagName!=d&&typeof J.createElement!=d,AI=T.userAgent.toLowerCase(),z=T.platform.toLowerCase(),AF=z?/win/.test(z):/win/.test(AI),AD=z?/mac/.test(z):/mac/.test(AI),AG=/webkit/.test(AI)?parseFloat(AI.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,y=!+"\v1",AH=[0,0,0],AC=null;
if(typeof T.plugins!=d&&typeof T.plugins[s]==R){AC=T.plugins[s].description;
if(AC&&!(typeof T.mimeTypes!=d&&T.mimeTypes[Q]&&!T.mimeTypes[Q].enabledPlugin)){u=true;
y=false;
AC=AC.replace(/^.*\s+(\S+\s+\S+$)/,"$1");
AH[0]=parseInt(AC.replace(/^(.*)\..*$/,"$1"),10);
AH[1]=parseInt(AC.replace(/^.*\.(.*)\s.*$/,"$1"),10);
AH[2]=/[a-zA-Z]/.test(AC)?parseInt(AC.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0
}}else{if(typeof o.ActiveXObject!=d){try{var AE=new ActiveXObject(x);
if(AE){AC=AE.GetVariable("$version");
if(AC){y=true;
AC=AC.split(" ")[1].split(",");
AH=[parseInt(AC[0],10),parseInt(AC[1],10),parseInt(AC[2],10)]
}}}catch(AA){}}}return{w3:AB,pv:AH,wk:AG,ie:y,win:AF,mac:AD}
}(),K=function(){if(!m.w3){return 
}if((typeof J.readyState!=d&&J.readyState=="complete")||(typeof J.readyState==d&&(J.getElementsByTagName("body")[0]||J.body))){F()
}if(!j){if(typeof J.addEventListener!=d){J.addEventListener("DOMContentLoaded",F,false)
}if(m.ie&&m.win){J.attachEvent(X,function(){if(J.readyState=="complete"){J.detachEvent(X,arguments.callee);
F()
}});
if(o==top){(function(){if(j){return 
}try{J.documentElement.doScroll("left")
}catch(y){setTimeout(arguments.callee,0);
return 
}F()
})()
}}if(m.wk){(function(){if(j){return 
}if(!/loaded|complete/.test(J.readyState)){setTimeout(arguments.callee,0);
return 
}F()
})()
}S(F)
}}();
function F(){if(j){return 
}try{var AA=J.getElementsByTagName("body")[0].appendChild(c("span"));
AA.parentNode.removeChild(AA)
}catch(AB){return 
}j=true;
var y=v.length;
for(var z=0;
z<y;
z++){v[z]()
}}function k(y){if(j){y()
}else{v[v.length]=y
}}function S(z){if(typeof o.addEventListener!=d){o.addEventListener("load",z,false)
}else{if(typeof J.addEventListener!=d){J.addEventListener("load",z,false)
}else{if(typeof o.attachEvent!=d){I(o,"onload",z)
}else{if(typeof o.onload=="function"){var y=o.onload;
o.onload=function(){y();
z()
}
}else{o.onload=z
}}}}}function H(){if(u){w()
}else{h()
}}function w(){var y=J.getElementsByTagName("body")[0];
var AB=c(R);
AB.setAttribute("type",Q);
var AA=y.appendChild(AB);
if(AA){var z=0;
(function(){if(typeof AA.GetVariable!=d){var AC=AA.GetVariable("$version");
if(AC){AC=AC.split(" ")[1].split(",");
m.pv=[parseInt(AC[0],10),parseInt(AC[1],10),parseInt(AC[2],10)]
}}else{if(z<10){z++;
setTimeout(arguments.callee,10);
return 
}}y.removeChild(AB);
AA=null;
h()
})()
}else{h()
}}function h(){var AH=O.length;
if(AH>0){for(var AG=0;
AG<AH;
AG++){var z=O[AG].id;
var AC=O[AG].callbackFn;
var AB={success:false,id:z};
if(m.pv[0]>0){var AF=C(z);
if(AF){if(f(O[AG].swfVersion)&&!(m.wk&&m.wk<312)){W(z,true);
if(AC){AB.success=true;
AB.ref=Z(z);
AC(AB)
}}else{if(O[AG].expressInstall&&a()){var AJ={};
AJ.data=O[AG].expressInstall;
AJ.width=AF.getAttribute("width")||"0";
AJ.height=AF.getAttribute("height")||"0";
if(AF.getAttribute("class")){AJ.styleclass=AF.getAttribute("class")
}if(AF.getAttribute("align")){AJ.align=AF.getAttribute("align")
}var AI={};
var y=AF.getElementsByTagName("param");
var AD=y.length;
for(var AE=0;
AE<AD;
AE++){if(y[AE].getAttribute("name").toLowerCase()!="movie"){AI[y[AE].getAttribute("name")]=y[AE].getAttribute("value")
}}p(AJ,AI,z,AC)
}else{P(AF);
if(AC){AC(AB)
}}}}}else{W(z,true);
if(AC){var AA=Z(z);
if(AA&&typeof AA.SetVariable!=d){AB.success=true;
AB.ref=AA
}AC(AB)
}}}}}function Z(AB){var y=null;
var z=C(AB);
if(z&&z.nodeName=="OBJECT"){if(typeof z.SetVariable!=d){y=z
}else{var AA=z.getElementsByTagName(R)[0];
if(AA){y=AA
}}}return y
}function a(){return !A&&f("6.0.65")&&(m.win||m.mac)&&!(m.wk&&m.wk<312)
}function p(AB,AC,y,AA){A=true;
e=AA||null;
b={success:false,id:y};
var AF=C(y);
if(AF){if(AF.nodeName=="OBJECT"){L=G(AF);
q=null
}else{L=AF;
q=y
}AB.id=r;
if(typeof AB.width==d||(!/%$/.test(AB.width)&&parseInt(AB.width,10)<310)){AB.width="310"
}if(typeof AB.height==d||(!/%$/.test(AB.height)&&parseInt(AB.height,10)<137)){AB.height="137"
}J.title=J.title.slice(0,47)+" - Flash Player Installation";
var AE=m.ie&&m.win?"ActiveX":"PlugIn",AD="MMredirectURL="+o.location.toString().replace(/&/g,"%26")+"&MMplayerType="+AE+"&MMdoctitle="+J.title;
if(typeof AC.flashvars!=d){AC.flashvars+="&"+AD
}else{AC.flashvars=AD
}if(m.ie&&m.win&&AF.readyState!=4){var z=c("div");
y+="SWFObjectNew";
z.setAttribute("id",y);
AF.parentNode.insertBefore(z,AF);
AF.style.display="none";
(function(){if(AF.readyState==4){AF.parentNode.removeChild(AF)
}else{setTimeout(arguments.callee,10)
}})()
}U(AB,AC,y)
}}function P(z){if(m.ie&&m.win&&z.readyState!=4){var y=c("div");
z.parentNode.insertBefore(y,z);
y.parentNode.replaceChild(G(z),y);
z.style.display="none";
(function(){if(z.readyState==4){z.parentNode.removeChild(z)
}else{setTimeout(arguments.callee,10)
}})()
}else{z.parentNode.replaceChild(G(z),z)
}}function G(AC){var AB=c("div");
if(m.win&&m.ie){AB.innerHTML=AC.innerHTML
}else{var z=AC.getElementsByTagName(R)[0];
if(z){var AD=z.childNodes;
if(AD){var y=AD.length;
for(var AA=0;
AA<y;
AA++){if(!(AD[AA].nodeType==1&&AD[AA].nodeName=="PARAM")&&!(AD[AA].nodeType==8)){AB.appendChild(AD[AA].cloneNode(true))
}}}}}return AB
}function U(AJ,AH,z){var y,AB=C(z);
if(m.wk&&m.wk<312){return y
}if(AB){if(typeof AJ.id==d){AJ.id=z
}if(m.ie&&m.win){var AI="";
for(var AF in AJ){if(AJ[AF]!=Object.prototype[AF]){if(AF.toLowerCase()=="data"){AH.movie=AJ[AF]
}else{if(AF.toLowerCase()=="styleclass"){AI+=' class="'+AJ[AF]+'"'
}else{if(AF.toLowerCase()!="classid"){AI+=" "+AF+'="'+AJ[AF]+'"'
}}}}}var AG="";
for(var AE in AH){if(AH[AE]!=Object.prototype[AE]){AG+='<param name="'+AE+'" value="'+AH[AE]+'" />'
}}AB.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AI+">"+AG+"</object>";
n[n.length]=AJ.id;
y=C(AJ.id)
}else{var AA=c(R);
AA.setAttribute("type",Q);
for(var AD in AJ){if(AJ[AD]!=Object.prototype[AD]){if(AD.toLowerCase()=="styleclass"){AA.setAttribute("class",AJ[AD])
}else{if(AD.toLowerCase()!="classid"){AA.setAttribute(AD,AJ[AD])
}}}}for(var AC in AH){if(AH[AC]!=Object.prototype[AC]&&AC.toLowerCase()!="movie"){E(AA,AC,AH[AC])
}}AB.parentNode.replaceChild(AA,AB);
y=AA
}}return y
}function E(AA,y,z){var AB=c("param");
AB.setAttribute("name",y);
AB.setAttribute("value",z);
AA.appendChild(AB)
}function Y(z){var y=C(z);
if(y&&y.nodeName=="OBJECT"){if(m.ie&&m.win){y.style.display="none";
(function(){if(y.readyState==4){B(z)
}else{setTimeout(arguments.callee,10)
}})()
}else{y.parentNode.removeChild(y)
}}}function B(AA){var z=C(AA);
if(z){for(var y in z){if(typeof z[y]=="function"){z[y]=null
}}z.parentNode.removeChild(z)
}}function C(AA){var y=null;
try{y=J.getElementById(AA)
}catch(z){}return y
}function c(y){return J.createElement(y)
}function I(AA,y,z){AA.attachEvent(y,z);
i[i.length]=[AA,y,z]
}function f(AA){var z=m.pv,y=AA.split(".");
y[0]=parseInt(y[0],10);
y[1]=parseInt(y[1],10)||0;
y[2]=parseInt(y[2],10)||0;
return(z[0]>y[0]||(z[0]==y[0]&&z[1]>y[1])||(z[0]==y[0]&&z[1]==y[1]&&z[2]>=y[2]))?true:false
}function V(AD,z,AE,AC){if(m.ie&&m.mac){return 
}var AB=J.getElementsByTagName("head")[0];
if(!AB){return 
}var y=(AE&&typeof AE=="string")?AE:"screen";
if(AC){N=null;
g=null
}if(!N||g!=y){var AA=c("style");
AA.setAttribute("type","text/css");
AA.setAttribute("media",y);
N=AB.appendChild(AA);
if(m.ie&&m.win&&typeof J.styleSheets!=d&&J.styleSheets.length>0){N=J.styleSheets[J.styleSheets.length-1]
}g=y
}if(m.ie&&m.win){if(N&&typeof N.addRule==R){N.addRule(AD,z)
}}else{if(N&&typeof J.createTextNode!=d){N.appendChild(J.createTextNode(AD+" {"+z+"}"))
}}}function W(AA,y){if(!M){return 
}var z=y?"visible":"hidden";
if(j&&C(AA)){C(AA).style.visibility=z
}else{V("#"+AA,"visibility:"+z)
}}function l(z){var AA=/[\\\"<>\.;]/;
var y=AA.exec(z)!=null;
return y&&typeof encodeURIComponent!=d?encodeURIComponent(z):z
}var D=function(){if(m.ie&&m.win){window.attachEvent("onunload",function(){var AD=i.length;
for(var AC=0;
AC<AD;
AC++){i[AC][0].detachEvent(i[AC][1],i[AC][2])
}var AA=n.length;
for(var AB=0;
AB<AA;
AB++){Y(n[AB])
}for(var z in m){m[z]=null
}m=null;
for(var y in swfobject){swfobject[y]=null
}swfobject=null
})
}}();
return{registerObject:function(AC,y,AB,AA){if(m.w3&&AC&&y){var z={};
z.id=AC;
z.swfVersion=y;
z.expressInstall=AB;
z.callbackFn=AA;
O[O.length]=z;
W(AC,false)
}else{if(AA){AA({success:false,id:AC})
}}},getObjectById:function(y){if(m.w3){return Z(y)
}},embedSWF:function(AC,AI,AF,AH,z,AB,AA,AE,AG,AD){var y={success:false,id:AI};
if(m.w3&&!(m.wk&&m.wk<312)&&AC&&AI&&AF&&AH&&z){W(AI,false);
k(function(){AF+="";
AH+="";
var AK={};
if(AG&&typeof AG===R){for(var AM in AG){AK[AM]=AG[AM]
}}AK.data=AC;
AK.width=AF;
AK.height=AH;
var AN={};
if(AE&&typeof AE===R){for(var AL in AE){AN[AL]=AE[AL]
}}if(AA&&typeof AA===R){for(var AJ in AA){if(typeof AN.flashvars!=d){AN.flashvars+="&"+AJ+"="+AA[AJ]
}else{AN.flashvars=AJ+"="+AA[AJ]
}}}if(f(z)){var AO=U(AK,AN,AI);
if(AK.id==AI){W(AI,true)
}y.success=true;
y.ref=AO
}else{if(AB&&a()){AK.data=AB;
p(AK,AN,AI,AD);
return 
}else{W(AI,true)
}}if(AD){AD(y)
}})
}else{if(AD){AD(y)
}}},switchOffAutoHideShow:function(){M=false
},ua:m,getFlashPlayerVersion:function(){return{major:m.pv[0],minor:m.pv[1],release:m.pv[2]}
},hasFlashPlayerVersion:f,createSWF:function(AA,z,y){if(m.w3){return U(AA,z,y)
}else{return undefined
}},showExpressInstall:function(AA,AB,y,z){if(m.w3&&a()){p(AA,AB,y,z)
}},removeSWF:function(y){if(m.w3){Y(y)
}},createCSS:function(AB,AA,z,y){if(m.w3){V(AB,AA,z,y)
}},addDomLoadEvent:k,addLoadEvent:S,getQueryParamValue:function(AB){var AA=J.location.search||J.location.hash;
if(AA){if(/\?/.test(AA)){AA=AA.split("?")[1]
}if(AB==null){return l(AA)
}var z=AA.split("&");
for(var y=0;
y<z.length;
y++){if(z[y].substring(0,z[y].indexOf("="))==AB){return l(z[y].substring((z[y].indexOf("=")+1)))
}}}return""
},expressInstallCallback:function(){if(A){var y=C(r);
if(y&&L){y.parentNode.replaceChild(L,y);
if(q){W(q,true);
if(m.ie&&m.win){L.style.display="block"
}}if(e){e(b)
}}A=false
}}}
}();
var Cufon=(function(){var P=function(){return P.replace.apply(null,arguments)
};
var D=P.DOM={ready:(function(){var b=false,A={loaded:1,complete:1};
var c=[],a=function(){if(b){return 
}b=true;
for(var d;
d=c.shift();
d()){}};
if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);
window.addEventListener("pageshow",a,false)
}if(!window.opera&&document.readyState){(function(){A[document.readyState]?a():setTimeout(arguments.callee,10)
})()
}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");
a()
}catch(d){setTimeout(arguments.callee,1)
}})()
}K(window,"load",a);
return function(d){if(!arguments.length){a()
}else{b?d():c.push(d)
}}
})(),root:function(){return document.documentElement||document.body
}};
var O=P.CSS={Size:function(A,a){this.value=parseFloat(A);
this.unit=String(A).match(/[a-z%]*$/)[0]||"px";
this.convert=function(b){return b/a*this.value
};
this.convertFrom=function(b){return b/this.value*a
};
this.toString=function(){return this.value+this.unit
}
},addClass:function(a,b){var A=a.className;
a.className=A+(A&&" ")+b;
return a
},color:S(function(A){var a={};
a.color=A.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,d,b){a.opacity=parseFloat(b);
return"rgb("+d+")"
});
return a
}),fontStretch:S(function(A){if(typeof A=="number"){return A
}if(/%$/.test(A)){return parseFloat(A)/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}[A]||1
}),getStyle:function(A){var a=document.defaultView;
if(a&&a.getComputedStyle){return new AB(a.getComputedStyle(A,null))
}if(A.currentStyle){return new AB(A.currentStyle)
}return new AB(A.style)
},gradient:S(function(a){var A={id:a,type:a.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},d=a.substr(a.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
for(var b=0,e=d.length,c;
b<e;
++b){c=d[b].split("=",2).reverse();
A.stops.push([c[1]||b/(e-1),c[0]])
}return A
}),quotedList:S(function(A){var a=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,c;
while(c=b.exec(A)){a.push(c[3]||c[1])
}return a
}),recognizesMedia:S(function(A){var b=document.createElement("style"),c,d,e;
b.type="text/css";
b.media=A;
try{b.appendChild(document.createTextNode("/**/"))
}catch(a){}d=V("head")[0];
d.insertBefore(b,d.firstChild);
c=(b.sheet||b.styleSheet);
e=c&&!c.disabled;
d.removeChild(b);
return e
}),removeClass:function(A,a){var b=RegExp("(?:^|\\s+)"+a+"(?=\\s|$)","g");
A.className=A.className.replace(b,"");
return A
},supports:function(A,a){var b=document.createElement("span").style;
if(b[A]===undefined){return false
}b[A]=a;
return b[A]===a
},textAlign:function(A,a,c,b){if(a.get("textAlign")=="right"){if(c>0){A=" "+A
}}else{if(c<b-1){A+=" "
}}return A
},textShadow:S(function(a){if(a=="none"){return null
}var b=[],A={},e,d=0;
var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
while(e=c.exec(a)){if(e[0]==","){b.push(A);
A={};
d=0
}else{if(e[1]){A.color=e[1]
}else{A[["offX","offY","blur"][d++]]=e[2]
}}}b.push(A);
return b
}),textTransform:(function(){var A={uppercase:function(a){return a.toUpperCase()
},lowercase:function(a){return a.toLowerCase()
},capitalize:function(a){return a.replace(/\b./g,function(b){return b.toUpperCase()
})
}};
return function(a,b){var c=A[b.get("textTransform")];
return c?c(a):a
}
})(),whiteSpace:(function(){var A={inline:1,"inline-block":1,"run-in":1};
var a=/^\s+/,b=/\s+$/;
return function(c,e,d,f){if(f){if(f.nodeName.toLowerCase()=="br"){c=c.replace(a,"")
}}if(A[e.get("display")]){return c
}if(!d.previousSibling){c=c.replace(a,"")
}if(!d.nextSibling){c=c.replace(b,"")
}return c
}
})()};
O.ready=(function(){var b=!O.recognizesMedia("all"),h=false;
var A=[],e=function(){b=true;
for(var i;
i=A.shift();
i()){}};
var d=V("link"),c=V("style");
function a(i){return i.disabled||f(i.sheet,i.media||"screen")
}function f(o,l){if(!O.recognizesMedia(l||"all")){return true
}if(!o||o.disabled){return false
}try{var k=o.cssRules,m;
if(k){search:for(var i=0,j=k.length;
m=k[i],i<j;
++i){switch(m.type){case 2:break;
case 3:if(!f(m.styleSheet,m.media.mediaText)){return false
}break;
default:break search
}}}}catch(n){}return true
}function g(){if(document.createStyleSheet){return true
}var i,j;
for(j=0;
i=d[j];
++j){if(i.rel.toLowerCase()=="stylesheet"&&!a(i)){return false
}}for(j=0;
i=c[j];
++j){if(!a(i)){return false
}}return true
}D.ready(function(){if(!h){h=O.getStyle(document.body).isUsable()
}if(b||(h&&g())){e()
}else{setTimeout(arguments.callee,10)
}});
return function(i){if(b){i()
}else{A.push(i)
}}
})();
function I(A){var a=this.face=A.face,b={"\u0020":1,"\u00a0":1,"\u3000":1};
this.glyphs=A.glyphs;
this.w=A.w;
this.baseSize=parseInt(a["units-per-em"],10);
this.family=a["font-family"].toLowerCase();
this.weight=a["font-weight"];
this.style=a["font-style"]||"normal";
this.viewBox=(function(){var c=a.bbox.split(/\s+/);
var d={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};
d.width=d.maxX-d.minX;
d.height=d.maxY-d.minY;
d.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")
};
return d
})();
this.ascent=-parseInt(a.ascent,10);
this.descent=-parseInt(a.descent,10);
this.height=-this.ascent+this.descent;
this.spacing=function(g,e,n){var d=this.glyphs,f,h,l,c=[],m=0,i=-1,j=-1,k;
while(k=g[++i]){f=d[k]||this.missingGlyph;
if(!f){continue
}if(h){m-=l=h[k]||0;
c[j]-=l
}m+=c[++j]=~~(f.w||this.w)+e+(b[k]?n:0);
h=f.k
}c.total=m;
return c
}
}function W(){var A={},a={oblique:"italic",italic:"oblique"};
this.add=function(b){(A[b.style]||(A[b.style]={}))[b.weight]=b
};
this.get=function(e,d){var f=A[e]||A[a[e]]||A.normal||A.italic||A.oblique;
if(!f){return null
}d={normal:400,bold:700}[d]||parseInt(d,10);
if(f[d]){return f[d]
}var h={1:1,99:0}[d%100],b=[],g,i;
if(h===undefined){h=d>400
}if(d==500){d=400
}for(var c in f){if(!R(f,c)){continue
}c=parseInt(c,10);
if(!g||c<g){g=c
}if(!i||c>i){i=c
}b.push(c)
}if(d<g){d=g
}if(d>i){d=i
}b.sort(function(k,j){return(h?(k>=d&&j>=d)?k<j:k>j:(k<=d&&j<=d)?k>j:k<j)?-1:1
});
return f[b[0]]
}
}function J(){function a(e,d){if(e.contains){return e.contains(d)
}return e.compareDocumentPosition(d)&16
}function c(d){var e=d.relatedTarget;
if(!e||a(this,e)){return 
}b(this,d.type=="mouseover")
}function A(d){b(this,d.type=="mouseenter")
}function b(e,d){setTimeout(function(){var f=Y.get(e).options;
P.replace(e,d?U(f,f.hover):f,true)
},10)
}this.attach=function(d){if(d.onmouseenter===undefined){K(d,"mouseover",c);
K(d,"mouseout",c)
}else{K(d,"mouseenter",A);
K(d,"mouseleave",A)
}}
}function G(){var a=[],A={};
function b(c){var f=[],d;
for(var e=0;
d=c[e];
++e){f[e]=a[A[d]]
}return f
}this.add=function(c,d){A[c]=a.push(d)-1
};
this.repeat=function(){var e=arguments.length?b(arguments):a,d;
for(var c=0;
d=e[c++];
){P.replace(d[0],d[1],true)
}}
}function M(){var A={},b=0;
function a(c){return c.cufid||(c.cufid=++b)
}this.get=function(d){var c=a(d);
return A[c]||(A[c]={})
}
}function AB(b){var A={},a={};
this.extend=function(d){for(var c in d){if(R(d,c)){A[c]=d[c]
}}return this
};
this.get=function(c){return A[c]!=undefined?A[c]:b[c]
};
this.getSize=function(c,d){return a[c]||(a[c]=new O.Size(this.get(c),d))
};
this.isUsable=function(){return !!b
}
}function K(a,b,A){if(a.addEventListener){a.addEventListener(b,A,false)
}else{if(a.attachEvent){a.attachEvent("on"+b,function(){return A.call(a,window.event)
})
}}}function F(a,b){var A=Y.get(a);
if(A.options){return a
}if(b.hover&&b.hoverables[a.nodeName.toLowerCase()]){AA.attach(a)
}A.options=b;
return a
}function S(a){var A={};
return function(b){if(!R(A,b)){A[b]=a.apply(null,arguments)
}return A[b]
}
}function Z(A,a){var d=O.quotedList(a.get("fontFamily").toLowerCase()),b;
for(var c=0;
b=d[c];
++c){if(T[b]){return T[b].get(a.get("fontStyle"),a.get("fontWeight"))
}}return null
}function V(A){return document.getElementsByTagName(A)
}function R(A,a){return A.hasOwnProperty(a)
}function U(){var c={},d,A;
for(var a=0,b=arguments.length;
d=arguments[a],a<b;
++a){for(A in d){if(R(d,A)){c[A]=d[A]
}}}return c
}function N(l,d,a,c,k,A){var f=document.createDocumentFragment(),i;
if(d===""){return f
}var e=c.separate;
var h=d.split(L[e]),b=(e=="words");
if(b&&H){if(/^\s/.test(d)){h.unshift("")
}if(/\s$/.test(d)){h.push("")
}}for(var g=0,j=h.length;
g<j;
++g){i=B[c.engine](l,b?O.textAlign(h[g],a,g,j):h[g],a,c,k,A,g<j-1);
if(i){f.appendChild(i)
}}return f
}function Q(A,c){var a=A.nodeName.toLowerCase();
if(c.ignore[a]){return 
}var k=!c.textless[a];
var b=O.getStyle(F(A,c)).extend(c);
var j=Z(A,b),i,e,g,h,d,f;
if(!j){return 
}for(i=A.firstChild;
i;
i=g){e=i.nodeType;
g=i.nextSibling;
if(k&&e==3){if(h){h.appendData(i.data);
A.removeChild(i)
}else{h=i
}if(g){continue
}}if(h){A.replaceChild(N(j,O.whiteSpace(h.data,b,h,f),b,c,i,A),h);
h=null
}if(e==1){if(i.firstChild){if(i.nodeName.toLowerCase()=="cufon"){B[c.engine](j,null,b,c,i,A)
}else{arguments.callee(i,c)
}}f=i
}}}var H=" ".split(/\s+/).length==0;
var Y=new M();
var AA=new J();
var C=new G();
var X=false;
var B={},T={},E={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(A){return jQuery(A)
})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(A){return $$(A)
})||(window.$&&function(A){return $(A)
})||(document.querySelectorAll&&function(A){return document.querySelectorAll(A)
})||V),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};
var L={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};
P.now=function(){D.ready();
return P
};
P.refresh=function(){C.repeat.apply(C,arguments);
return P
};
P.registerEngine=function(A,a){if(!a){return P
}B[A]=a;
return P.set("engine",A)
};
P.registerFont=function(A){if(!A){return P
}var b=new I(A),a=b.family;
if(!T[a]){T[a]=new W()
}T[a].add(b);
return P.set("fontFamily",'"'+a+'"')
};
P.replace=function(A,a,b){a=U(E,a);
if(!a.engine){return P
}if(!X){O.addClass(D.root(),"cufon-active cufon-loading");
O.ready(function(){O.addClass(O.removeClass(D.root(),"cufon-loading"),"cufon-ready")
});
X=true
}if(a.hover){a.forceHitArea=true
}if(a.autoDetect){delete a.fontFamily
}if(typeof a.textShadow=="string"){a.textShadow=O.textShadow(a.textShadow)
}if(typeof a.color=="string"&&/^-/.test(a.color)){a.textGradient=O.gradient(a.color)
}else{delete a.textGradient
}if(!b){C.add(A,arguments)
}if(A.nodeType||typeof A=="string"){A=[A]
}O.ready(function(){for(var d=0,e=A.length;
d<e;
++d){var c=A[d];
if(typeof c=="string"){P.replace(a.selector(c),a,true)
}else{Q(c,a)
}}});
return P
};
P.set=function(a,A){E[a]=A;
return P
};
return P
})();
Cufon.registerEngine("vml",(function(){var F=document.namespaces;
if(!F){return 
}F.add("cvml","urn:schemas-microsoft-com:vml");
F=null;
var A=document.createElement("cvml:shape");
A.style.behavior="url(#default#VML)";
if(!A.coordsize){return 
}A=null;
var C=(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:'+(C?"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 H(J,I){return B(J,/(?:em|ex|%)$|^[a-z-]+$/i.test(I)?"1em":I)
}function B(J,I){if(I==="0"){return 0
}if(/px$/i.test(I)){return parseFloat(I)
}var K=J.style.left,L=J.runtimeStyle.left;
J.runtimeStyle.left=J.currentStyle.left;
J.style.left=I.replace("%","em");
var M=J.style.pixelLeft;
J.style.left=K;
J.runtimeStyle.left=L;
return M
}function E(J,K,L,N){var M="computed"+N,I=K[M];
if(isNaN(I)){I=K.get(N);
K[M]=I=(I=="normal")?0:~~L.convertFrom(B(J,I))
}return I
}var D={};
function G(M){var L=M.id;
if(!D[L]){var O=M.stops,N=document.createElement("cvml:fill"),K=[];
N.type="gradient";
N.angle=180;
N.focus="0";
N.method="sigma";
N.color=O[0][1];
for(var I=1,J=O.length-1;
I<J;
++I){K.push(O[I][0]*100+"% "+O[I][1])
}N.colors=K.join(",");
N.color2=O[J][1];
D[L]=N
}return D[L]
}return function(AV,AL,b,AT,AF,AS,d){var Al=(AL===null);
if(Al){AL=AF.alt
}var AH=AV.viewBox;
var Aj=b.computedFontSize||(b.computedFontSize=new Cufon.CSS.Size(H(AS,b.get("fontSize"))+"px",AV.baseSize));
var Aa,Ai;
if(Al){Aa=AF;
Ai=AF.firstChild
}else{Aa=document.createElement("cufon");
Aa.className="cufon cufon-vml";
Aa.alt=AL;
Ai=document.createElement("cufoncanvas");
Aa.appendChild(Ai);
if(AT.printable){var a=document.createElement("cufontext");
a.appendChild(document.createTextNode(AL));
Aa.appendChild(a)
}if(!d){Aa.appendChild(document.createElement("cvml:shape"))
}}var AI=Aa.style;
var i=Ai.style;
var An=Aj.convert(AH.height),AP=Math.ceil(An);
var e=AP/An;
var AA=e*Cufon.CSS.fontStretch(b.get("fontStretch"));
var f=AH.minX,g=AH.minY;
i.height=AP;
i.top=Math.round(Aj.convert(g-AV.ascent));
i.left=Math.round(Aj.convert(f));
AI.height=Aj.convert(AV.height)+"px";
var AN=b.get("color");
var AM=Cufon.CSS.textTransform(AL,b).split("");
var AE=AV.spacing(AM,E(AS,b,Aj,"letterSpacing"),E(AS,b,Aj,"wordSpacing"));
if(!AE.length){return null
}var Ao=AE.total;
var Ab=-f+Ao+(AH.width-AE[AE.length-1]);
var AK=Aj.convert(Ab*AA),c=Math.round(AK);
var AB=Ab+","+AH.height,Am;
var AG="r"+AB+"ns";
var Ae=AT.textGradient&&G(AT.textGradient);
var Ak=AV.glyphs,h=0;
var AJ=AT.textShadow;
var AX=-1,AY=0,Ac;
while(Ac=AM[++AX]){var AR=Ak[AM[AX]]||AV.missingGlyph,Ad;
if(!AR){continue
}if(Al){Ad=Ai.childNodes[AY];
while(Ad.firstChild){Ad.removeChild(Ad.firstChild)
}}else{Ad=document.createElement("cvml:shape");
Ai.appendChild(Ad)
}Ad.stroked="f";
Ad.coordsize=AB;
Ad.coordorigin=Am=(f-h)+","+g;
Ad.path=(AR.d?"m"+AR.d+"xe":"")+"m"+Am+AG;
Ad.fillcolor=AN;
if(Ae){Ad.appendChild(Ae.cloneNode(false))
}var AQ=Ad.style;
AQ.width=c;
AQ.height=AP;
if(AJ){var Ag=AJ[0],Ah=AJ[1];
var AU=Cufon.CSS.color(Ag.color),AZ;
var AC=document.createElement("cvml:shadow");
AC.on="t";
AC.color=AU.color;
AC.offset=Ag.offX+","+Ag.offY;
if(Ah){AZ=Cufon.CSS.color(Ah.color);
AC.type="double";
AC.color2=AZ.color;
AC.offset2=Ah.offX+","+Ah.offY
}AC.opacity=AU.opacity||(AZ&&AZ.opacity)||1;
Ad.appendChild(AC)
}h+=AE[AY++]
}var AD=Ad.nextSibling,Af,AW;
if(AT.forceHitArea){if(!AD){AD=document.createElement("cvml:rect");
AD.stroked="f";
AD.className="cufon-vml-cover";
Af=document.createElement("cvml:fill");
Af.opacity=0;
AD.appendChild(Af);
Ai.appendChild(AD)
}AW=AD.style;
AW.width=c;
AW.height=AP
}else{if(AD){Ai.removeChild(AD)
}}AI.width=Math.max(Math.ceil(Aj.convert(Ao*AA)),0);
if(C){var j=b.computedYAdjust;
if(j===undefined){var AO=b.get("lineHeight");
if(AO=="normal"){AO="1em"
}else{if(!isNaN(AO)){AO+="em"
}}b.computedYAdjust=j=0.5*(B(AS,AO)-parseFloat(AI.height))
}if(j){AI.marginTop=Math.ceil(j)+"px";
AI.marginBottom=j+"px"
}}return Aa
}
})());
Cufon.registerEngine("canvas",(function(){var A=document.createElement("canvas");
if(!A||!A.getContext||!A.getContext.apply){return 
}A=null;
var B=Cufon.CSS.supports("display","inline-block");
var D=!B&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));
var C=document.createElement("style");
C.type="text/css";
C.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(D?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(B?"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(C);
function E(G,N){var I=0,J=0;
var O=[],H=/([mrvxe])([^a-z]*)/g,L;
generate:for(var M=0;
L=H.exec(G);
++M){var K=L[2].split(",");
switch(L[1]){case"v":O[M]={m:"bezierCurveTo",a:[I+~~K[0],J+~~K[1],I+~~K[2],J+~~K[3],I+=~~K[4],J+=~~K[5]]};
break;
case"r":O[M]={m:"lineTo",a:[I+=~~K[0],J+=~~K[1]]};
break;
case"m":O[M]={m:"moveTo",a:[I=~~K[0],J=~~K[1]]};
break;
case"x":O[M]={m:"closePath"};
break;
case"e":break generate
}N[O[M].m].apply(N,O[M].a)
}return O
}function F(G,H){for(var I=0,J=G.length;
I<J;
++I){var K=G[I];
H[K.m].apply(H,K.a)
}}return function(e,AR,y,AU,AM,d){var Ac=(AR===null);
if(Ac){AR=AM.getAttribute("alt")
}var AO=e.viewBox;
var Ab=y.getSize("fontSize",e.baseSize);
var AN=0,AA=0,AB=0,AT=0;
var AQ=AU.textShadow,AD=[];
if(AQ){for(var f=AQ.length;
f--;
){var AJ=AQ[f];
var AE=Ab.convertFrom(parseFloat(AJ.offX));
var AG=Ab.convertFrom(parseFloat(AJ.offY));
AD[f]=[AE,AG];
if(AG<AN){AN=AG
}if(AE>AA){AA=AE
}if(AG>AB){AB=AG
}if(AE<AT){AT=AE
}}}var a=Cufon.CSS.textTransform(AR,y).split("");
var AK=e.spacing(a,~~Ab.convertFrom(parseFloat(y.get("letterSpacing"))||0),~~Ab.convertFrom(parseFloat(y.get("wordSpacing"))||0));
if(!AK.length){return null
}var Ae=AK.total;
AA+=AO.width-AK[AK.length-1];
AT+=AO.minX;
var AV,Aa;
if(Ac){AV=AM;
Aa=AM.firstChild
}else{AV=document.createElement("cufon");
AV.className="cufon cufon-canvas";
AV.setAttribute("alt",AR);
Aa=document.createElement("canvas");
AV.appendChild(Aa);
if(AU.printable){var i=document.createElement("cufontext");
i.appendChild(document.createTextNode(AR));
AV.appendChild(i)
}}var AP=AV.style;
var AH=Aa.style;
var Ad=Ab.convert(AO.height);
var b=Math.ceil(Ad);
var AC=b/Ad;
var AI=AC*Cufon.CSS.fontStretch(y.get("fontStretch"));
var AF=Ae*AI;
var x=Math.ceil(Ab.convert(AF+AA-AT));
var AZ=Math.ceil(Ab.convert(AO.height-AN+AB));
Aa.width=x;
Aa.height=AZ;
AH.width=x+"px";
AH.height=AZ+"px";
AN+=AO.minY;
AH.top=Math.round(Ab.convert(AN-e.ascent))+"px";
AH.left=Math.round(Ab.convert(AT))+"px";
var AW=Math.max(Math.ceil(Ab.convert(AF)),0)+"px";
if(B){AP.width=AW;
AP.height=Ab.convert(e.height)+"px"
}else{AP.paddingLeft=AW;
AP.paddingBottom=(Ab.convert(e.height)-1)+"px"
}var c=Aa.getContext("2d"),AL=Ad/AO.height;
c.scale(AL,AL*AC);
c.translate(-AT,-AN);
c.save();
function g(){var G=e.glyphs,J,H=-1,I=-1,K;
c.scale(AI,1);
while(K=a[++H]){var J=G[a[H]]||e.missingGlyph;
if(!J){continue
}if(J.d){c.beginPath();
if(J.code){F(J.code,c)
}else{J.code=E("m"+J.d,c)
}c.fill()
}c.translate(AK[++I],0)
}c.restore()
}if(AQ){for(var f=AQ.length;
f--;
){var AJ=AQ[f];
c.save();
c.fillStyle=AJ.color;
c.translate.apply(c,AD[f]);
g()
}}var AX=AU.textGradient;
if(AX){var AS=AX.stops,AY=c.createLinearGradient(0,AO.minY,0,AO.maxY);
for(var f=0,l=AS.length;
f<l;
++f){AY.addColorStop.apply(AY,AS[f])
}c.fillStyle=AY
}else{c.fillStyle=y.get("color")
}g();
return AV
}
})());
/*
 * 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,B){function A(D){return !C(D).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(E,D){return typeof E==="number"?this.each(function(){var F=this;
setTimeout(function(){C(F).focus();
D&&D.call(F)
},E)
}):this._focus.apply(this,arguments)
},scrollParent:function(){var D;
D=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"))||!D.length?C(document):D
},zIndex:function(E){if(E!==B){return this.css("zIndex",E)
}if(this.length){E=C(this[0]);
for(var D;
E.length&&E[0]!==document;
){D=E.css("position");
if(D==="absolute"||D==="relative"||D==="fixed"){D=parseInt(E.css("zIndex"),10);
if(!isNaN(D)&&D!==0){return D
}}E=E.parent()
}}return 0
},disableSelection:function(){return this.bind((C.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(D){D.preventDefault()
})
},enableSelection:function(){return this.unbind(".ui-disableSelection")
}});
C.each(["Width","Height"],function(E,D){function I(M,L,K,J){C.each(H,function(){L-=parseFloat(C.curCSS(M,"padding"+this,true))||0;
if(K){L-=parseFloat(C.curCSS(M,"border"+this+"Width",true))||0
}if(J){L-=parseFloat(C.curCSS(M,"margin"+this,true))||0
}});
return L
}var H=D==="Width"?["Left","Right"]:["Top","Bottom"],G=D.toLowerCase(),F={innerWidth:C.fn.innerWidth,innerHeight:C.fn.innerHeight,outerWidth:C.fn.outerWidth,outerHeight:C.fn.outerHeight};
C.fn["inner"+D]=function(J){if(J===B){return F["inner"+D].call(this)
}return this.each(function(){C(this).css(G,I(this,J)+"px")
})
};
C.fn["outer"+D]=function(K,J){if(typeof K!=="number"){return F["outer"+D].call(this,K)
}return this.each(function(){C(this).css(G,I(this,K,true,J)+"px")
})
}
});
C.extend(C.expr[":"],{data:function(E,D,F){return !!C.data(E,F[3])
},focusable:function(E){var D=E.nodeName.toLowerCase(),F=C.attr(E,"tabindex");
if("area"===D){D=E.parentNode;
F=D.name;
if(!E.href||!F||D.nodeName.toLowerCase()!=="map"){return false
}E=C("img[usemap=#"+F+"]")[0];
return !!E&&A(E)
}return(/input|select|textarea|button|object/.test(D)?!E.disabled:"a"==D?E.href||!isNaN(F):!isNaN(F))&&A(E)
},tabbable:function(E){var D=C.attr(E,"tabindex");
return(isNaN(D)||D>=0)&&C(E).is(":focusable")
}});
C(function(){var E=document.body,D=E.appendChild(D=document.createElement("div"));
C.extend(D.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});
C.support.minHeight=D.offsetHeight===100;
C.support.selectstart="onselectstart" in D;
E.removeChild(D).style.display="none"
});
C.extend(C.ui,{plugin:{add:function(E,D,G){E=C.ui[E].prototype;
for(var F in G){E.plugins[F]=E.plugins[F]||[];
E.plugins[F].push([D,G[F]])
}},call:function(E,D,G){if((D=E.plugins[D])&&E.element[0].parentNode){for(var F=0;
F<D.length;
F++){E.options[D[F][0]]&&D[F][1].apply(E.element,G)
}}}},contains:function(E,D){return document.compareDocumentPosition?E.compareDocumentPosition(D)&16:E!==D&&E.contains(D)
},hasScroll:function(E,D){if(C(E).css("overflow")==="hidden"){return false
}D=D&&D==="left"?"scrollLeft":"scrollTop";
var F=false;
if(E[D]>0){return true
}E[D]=1;
F=E[D]>0;
E[D]=0;
return F
},isOverAxis:function(E,D,F){return E>D&&E<D+F
},isOver:function(E,D,I,H,G,F){return C.ui.isOverAxis(E,I,G)&&C.ui.isOverAxis(D,H,F)
}})
}})(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(A,D){if(A.cleanData){var C=A.cleanData;
A.cleanData=function(E){for(var G=0,F;
(F=E[G])!=null;
G++){A(F).triggerHandler("remove")
}C(E)
}
}else{var B=A.fn.remove;
A.fn.remove=function(E,F){return this.each(function(){if(!F){if(!E||A.filter(E,[this]).length){A("*",this).add([this]).each(function(){A(this).triggerHandler("remove")
})
}}return B.call(A(this),E,F)
})
}
}A.widget=function(E,I,H){var G=E.split(".")[0],F;
E=E.split(".")[1];
F=G+"-"+E;
if(!H){H=I;
I=A.Widget
}A.expr[":"][F]=function(J){return !!A.data(J,E)
};
A[G]=A[G]||{};
A[G][E]=function(J,K){arguments.length&&this._createWidget(J,K)
};
I=new I;
I.options=A.extend(true,{},I.options);
A[G][E].prototype=A.extend(true,I,{namespace:G,widgetName:E,widgetEventPrefix:A[G][E].prototype.widgetEventPrefix||E,widgetBaseClass:F},H);
A.widget.bridge(E,A[G][E])
};
A.widget.bridge=function(E,F){A.fn[E]=function(J){var I=typeof J==="string",H=Array.prototype.slice.call(arguments,1),G=this;
J=!I&&H.length?A.extend.apply(null,[true,J].concat(H)):J;
if(I&&J.charAt(0)==="_"){return G
}I?this.each(function(){var L=A.data(this,E),K=L&&A.isFunction(L[J])?L[J].apply(L,H):L;
if(K!==L&&K!==D){G=K;
return false
}}):this.each(function(){var K=A.data(this,E);
K?K.option(J||{})._init():A.data(this,E,new F(J,this))
});
return G
}
};
A.Widget=function(E,F){arguments.length&&this._createWidget(E,F)
};
A.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(E,G){A.data(G,this.widgetName,this);
this.element=A(G);
this.options=A.extend(true,{},this.options,this._getCreateOptions(),E);
var F=this;
this.element.bind("remove."+this.widgetName,function(){F.destroy()
});
this._create();
this._trigger("create");
this._init()
},_getCreateOptions:function(){return A.metadata&&A.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(E,G){var F=E;
if(arguments.length===0){return A.extend({},this.options)
}if(typeof E==="string"){if(G===D){return this.options[E]
}F={};
F[E]=G
}this._setOptions(F);
return this
},_setOptions:function(E){var F=this;
A.each(E,function(H,G){F._setOption(H,G)
});
return this
},_setOption:function(E,F){this.options[E]=F;
if(E==="disabled"){this.widget()[F?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",F)
}return this
},enable:function(){return this._setOption("disabled",false)
},disable:function(){return this._setOption("disabled",true)
},_trigger:function(E,I,H){var G=this.options[E];
I=A.Event(I);
I.type=(E===this.widgetEventPrefix?E:this.widgetEventPrefix+E).toLowerCase();
H=H||{};
if(I.originalEvent){E=A.event.props.length;
for(var F;
E;
){F=A.event.props[--E];
I[F]=I.originalEvent[F]
}}this.element.trigger(I,H);
return !(A.isFunction(G)&&G.call(this.element[0],I,H)===false||I.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(A){A.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var B=this;
this.element.bind("mousedown."+this.widgetName,function(C){return B._mouseDown(C)
}).bind("click."+this.widgetName,function(C){if(true===A.data(C.target,B.widgetName+".preventClickEvent")){A.removeData(C.target,B.widgetName+".preventClickEvent");
C.stopImmediatePropagation();
return false
}});
this.started=false
},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)
},_mouseDown:function(B){B.originalEvent=B.originalEvent||{};
if(!B.originalEvent.mouseHandled){this._mouseStarted&&this._mouseUp(B);
this._mouseDownEvent=B;
var E=this,D=B.which==1,C=typeof this.options.cancel=="string"?A(B.target).parents().add(B.target).filter(this.options.cancel).length:false;
if(!D||C||!this._mouseCapture(B)){return true
}this.mouseDelayMet=!this.options.delay;
if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){E.mouseDelayMet=true
},this.options.delay)
}if(this._mouseDistanceMet(B)&&this._mouseDelayMet(B)){this._mouseStarted=this._mouseStart(B)!==false;
if(!this._mouseStarted){B.preventDefault();
return true
}}true===A.data(B.target,this.widgetName+".preventClickEvent")&&A.removeData(B.target,this.widgetName+".preventClickEvent");
this._mouseMoveDelegate=function(F){return E._mouseMove(F)
};
this._mouseUpDelegate=function(F){return E._mouseUp(F)
};
A(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);
B.preventDefault();
return B.originalEvent.mouseHandled=true
}},_mouseMove:function(B){if(A.browser.msie&&!(document.documentMode>=9)&&!B.button){return this._mouseUp(B)
}if(this._mouseStarted){this._mouseDrag(B);
return B.preventDefault()
}if(this._mouseDistanceMet(B)&&this._mouseDelayMet(B)){(this._mouseStarted=this._mouseStart(this._mouseDownEvent,B)!==false)?this._mouseDrag(B):this._mouseUp(B)
}return !this._mouseStarted
},_mouseUp:function(B){A(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);
if(this._mouseStarted){this._mouseStarted=false;
B.target==this._mouseDownEvent.target&&A.data(B.target,this.widgetName+".preventClickEvent",true);
this._mouseStop(B)
}return false
},_mouseDistanceMet:function(B){return Math.max(Math.abs(this._mouseDownEvent.pageX-B.pageX),Math.abs(this._mouseDownEvent.pageY-B.pageY))>=this.options.distance
},_mouseDelayMet:function(){return this.mouseDelayMet
},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true
}})
})(jQuery);
(function(E){E.ui=E.ui||{};
var D=/left|center|right/,C=/top|center|bottom/,B=E.fn.position,A=E.fn.offset;
E.fn.position=function(F){if(!F||!F.of){return B.apply(this,arguments)
}F=E.extend({},F);
var G=E(F.of),M=G[0],K=(F.collision||"flip").split(" "),L=F.offset?F.offset.split(" "):[0,0],J,H,I;
if(M.nodeType===9){J=G.width();
H=G.height();
I={top:0,left:0}
}else{if(M.setTimeout){J=G.width();
H=G.height();
I={top:G.scrollTop(),left:G.scrollLeft()}
}else{if(M.preventDefault){F.at="left top";
J=H=0;
I={top:F.of.pageY,left:F.of.pageX}
}else{J=G.outerWidth();
H=G.outerHeight();
I=G.offset()
}}}E.each(["my","at"],function(){var N=(F[this]||"").split(" ");
if(N.length===1){N=D.test(N[0])?N.concat(["center"]):C.test(N[0])?["center"].concat(N):["center","center"]
}N[0]=D.test(N[0])?N[0]:"center";
N[1]=C.test(N[1])?N[1]:"center";
F[this]=N
});
if(K.length===1){K[1]=K[0]
}L[0]=parseInt(L[0],10)||0;
if(L.length===1){L[1]=L[0]
}L[1]=parseInt(L[1],10)||0;
if(F.at[0]==="right"){I.left+=J
}else{if(F.at[0]==="center"){I.left+=J/2
}}if(F.at[1]==="bottom"){I.top+=H
}else{if(F.at[1]==="center"){I.top+=H/2
}}I.left+=L[0];
I.top+=L[1];
return this.each(function(){var T=E(this),R=T.outerWidth(),Q=T.outerHeight(),P=parseInt(E.curCSS(this,"marginLeft",true))||0,O=parseInt(E.curCSS(this,"marginTop",true))||0,V=R+P+(parseInt(E.curCSS(this,"marginRight",true))||0),U=Q+O+(parseInt(E.curCSS(this,"marginBottom",true))||0),S=E.extend({},I),N;
if(F.my[0]==="right"){S.left-=R
}else{if(F.my[0]==="center"){S.left-=R/2
}}if(F.my[1]==="bottom"){S.top-=Q
}else{if(F.my[1]==="center"){S.top-=Q/2
}}S.left=Math.round(S.left);
S.top=Math.round(S.top);
N={left:S.left-P,top:S.top-O};
E.each(["left","top"],function(X,W){E.ui.position[K[X]]&&E.ui.position[K[X]][W](S,{targetWidth:J,targetHeight:H,elemWidth:R,elemHeight:Q,collisionPosition:N,collisionWidth:V,collisionHeight:U,offset:L,my:F.my,at:F.at})
});
E.fn.bgiframe&&T.bgiframe();
T.offset(E.extend(S,{using:F.using}))
})
};
E.ui.position={fit:{left:function(F,G){var H=E(window);
H=G.collisionPosition.left+G.collisionWidth-H.width()-H.scrollLeft();
F.left=H>0?F.left-H:Math.max(F.left-G.collisionPosition.left,F.left)
},top:function(F,G){var H=E(window);
H=G.collisionPosition.top+G.collisionHeight-H.height()-H.scrollTop();
F.top=H>0?F.top-H:Math.max(F.top-G.collisionPosition.top,F.top)
}},flip:{left:function(F,G){if(G.at[0]!=="center"){var K=E(window);
K=G.collisionPosition.left+G.collisionWidth-K.width()-K.scrollLeft();
var I=G.my[0]==="left"?-G.elemWidth:G.my[0]==="right"?G.elemWidth:0,J=G.at[0]==="left"?G.targetWidth:-G.targetWidth,H=-2*G.offset[0];
F.left+=G.collisionPosition.left<0?I+J+H:K>0?I+J+H:0
}},top:function(F,G){if(G.at[1]!=="center"){var K=E(window);
K=G.collisionPosition.top+G.collisionHeight-K.height()-K.scrollTop();
var I=G.my[1]==="top"?-G.elemHeight:G.my[1]==="bottom"?G.elemHeight:0,J=G.at[1]==="top"?G.targetHeight:-G.targetHeight,H=-2*G.offset[1];
F.top+=G.collisionPosition.top<0?I+J+H:K>0?I+J+H:0
}}}};
if(!E.offset.setOffset){E.offset.setOffset=function(F,G){if(/static/.test(E.curCSS(F,"position"))){F.style.position="relative"
}var K=E(F),I=K.offset(),J=parseInt(E.curCSS(F,"top",true),10)||0,H=parseInt(E.curCSS(F,"left",true),10)||0;
I={top:G.top-I.top+J,left:G.left-I.left+H};
"using" in G?G.using.call(F,I):K.css(I)
};
E.fn.offset=function(F){var G=this[0];
if(!G||!G.ownerDocument){return null
}if(F){return this.each(function(){E.offset.setOffset(this,F)
})
}return A.call(this)
}
}})(jQuery);
(function(A){A.widget("ui.draggable",A.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(C){var B=this.options;
if(this.helper||B.disabled||A(C.target).is(".ui-resizable-handle")){return false
}this.handle=this._getHandle(C);
if(!this.handle){return false
}return true
},_mouseStart:function(C){var B=this.options;
this.helper=this._createHelper(C);
this._cacheHelperProportions();
if(A.ui.ddmanager){A.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};
A.extend(this.offset,{click:{left:C.pageX-this.offset.left,top:C.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});
this.originalPosition=this.position=this._generatePosition(C);
this.originalPageX=C.pageX;
this.originalPageY=C.pageY;
B.cursorAt&&this._adjustOffsetFromHelper(B.cursorAt);
B.containment&&this._setContainment();
if(this._trigger("start",C)===false){this._clear();
return false
}this._cacheHelperProportions();
A.ui.ddmanager&&!B.dropBehaviour&&A.ui.ddmanager.prepareOffsets(this,C);
this.helper.addClass("ui-draggable-dragging");
this._mouseDrag(C,true);
return true
},_mouseDrag:function(C,B){this.position=this._generatePosition(C);
this.positionAbs=this._convertPositionTo("absolute");
if(!B){B=this._uiHash();
if(this._trigger("drag",C,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"
}A.ui.ddmanager&&A.ui.ddmanager.drag(this,C);
return false
},_mouseStop:function(C){var B=false;
if(A.ui.ddmanager&&!this.options.dropBehaviour){B=A.ui.ddmanager.drop(this,C)
}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||A.isFunction(this.options.revert)&&this.options.revert.call(this.element,B)){var D=this;
A(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){D._trigger("stop",C)!==false&&D._clear()
})
}else{this._trigger("stop",C)!==false&&this._clear()
}return false
},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear();
return this
},_getHandle:function(C){var B=!this.options.handle||!A(this.options.handle,this.element).length?true:false;
A(this.options.handle,this.element).find("*").andSelf().each(function(){if(this==C.target){B=true
}});
return B
},_createHelper:function(C){var B=this.options;
C=A.isFunction(B.helper)?A(B.helper.apply(this.element[0],[C])):B.helper=="clone"?this.element.clone():this.element;
C.parents("body").length||C.appendTo(B.appendTo=="parent"?this.element[0].parentNode:B.appendTo);
C[0]!=this.element[0]&&!/(fixed|absolute)/.test(C.css("position"))&&C.css("position","absolute");
return C
},_adjustOffsetFromHelper:function(B){if(typeof B=="string"){B=B.split(" ")
}if(A.isArray(B)){B={left:+B[0],top:+B[1]||0}
}if("left" in B){this.offset.click.left=B.left+this.margins.left
}if("right" in B){this.offset.click.left=this.helperProportions.width-B.right+this.margins.left
}if("top" in B){this.offset.click.top=B.top+this.margins.top
}if("bottom" in B){this.offset.click.top=this.helperProportions.height-B.bottom+this.margins.top
}},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();
var B=this.offsetParent.offset();
if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&A.ui.contains(this.scrollParent[0],this.offsetParent[0])){B.left+=this.scrollParent.scrollLeft();
B.top+=this.scrollParent.scrollTop()
}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&A.browser.msie){B={top:0,left:0}
}return{top:B.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:B.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}
},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var B=this.element.position();
return{top:B.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:B.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 C=this.options;
if(C.containment=="parent"){C.containment=this.helper[0].parentNode
}if(C.containment=="document"||C.containment=="window"){this.containment=[(C.containment=="document"?0:A(window).scrollLeft())-this.offset.relative.left-this.offset.parent.left,(C.containment=="document"?0:A(window).scrollTop())-this.offset.relative.top-this.offset.parent.top,(C.containment=="document"?0:A(window).scrollLeft())+A(C.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(C.containment=="document"?0:A(window).scrollTop())+(A(C.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]
}if(!/^(document|window|parent)$/.test(C.containment)&&C.containment.constructor!=Array){var B=A(C.containment)[0];
if(B){C=A(C.containment).offset();
var D=A(B).css("overflow")!="hidden";
this.containment=[C.left+(parseInt(A(B).css("borderLeftWidth"),10)||0)+(parseInt(A(B).css("paddingLeft"),10)||0),C.top+(parseInt(A(B).css("borderTopWidth"),10)||0)+(parseInt(A(B).css("paddingTop"),10)||0),C.left+(D?Math.max(B.scrollWidth,B.offsetWidth):B.offsetWidth)-(parseInt(A(B).css("borderLeftWidth"),10)||0)-(parseInt(A(B).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,C.top+(D?Math.max(B.scrollHeight,B.offsetHeight):B.offsetHeight)-(parseInt(A(B).css("borderTopWidth"),10)||0)-(parseInt(A(B).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom]
}}else{if(C.containment.constructor==Array){this.containment=C.containment
}}},_convertPositionTo:function(C,B){if(!B){B=this.position
}C=C=="absolute"?1:-1;
var E=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&A.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,D=/(html|body)/i.test(E[0].tagName);
return{top:B.top+this.offset.relative.top*C+this.offset.parent.top*C-(A.browser.safari&&A.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():D?0:E.scrollTop())*C),left:B.left+this.offset.relative.left*C+this.offset.parent.left*C-(A.browser.safari&&A.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():D?0:E.scrollLeft())*C)}
},_generatePosition:function(C){var B=this.options,G=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&A.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,E=/(html|body)/i.test(G[0].tagName),F=C.pageX,D=C.pageY;
if(this.originalPosition){if(this.containment){if(C.pageX-this.offset.click.left<this.containment[0]){F=this.containment[0]+this.offset.click.left
}if(C.pageY-this.offset.click.top<this.containment[1]){D=this.containment[1]+this.offset.click.top
}if(C.pageX-this.offset.click.left>this.containment[2]){F=this.containment[2]+this.offset.click.left
}if(C.pageY-this.offset.click.top>this.containment[3]){D=this.containment[3]+this.offset.click.top
}}if(B.grid){D=this.originalPageY+Math.round((D-this.originalPageY)/B.grid[1])*B.grid[1];
D=this.containment?!(D-this.offset.click.top<this.containment[1]||D-this.offset.click.top>this.containment[3])?D:!(D-this.offset.click.top<this.containment[1])?D-B.grid[1]:D+B.grid[1]:D;
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:D-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(A.browser.safari&&A.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():E?0:G.scrollTop()),left:F-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(A.browser.safari&&A.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():E?0:G.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(C,B,D){D=D||this._uiHash();
A.ui.plugin.call(this,C,[B,D]);
if(C=="drag"){this.positionAbs=this._convertPositionTo("absolute")
}return A.Widget.prototype._trigger.call(this,C,B,D)
},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}
}});
A.extend(A.ui.draggable,{version:"1.8.11"});
A.ui.plugin.add("draggable","connectToSortable",{start:function(C,B){var F=A(this).data("draggable"),D=F.options,E=A.extend({},B,{item:F.element});
F.sortables=[];
A(D.connectToSortable).each(function(){var G=A.data(this,"sortable");
if(G&&!G.options.disabled){F.sortables.push({instance:G,shouldRevert:G.options.revert});
G.refreshPositions();
G._trigger("activate",C,E)
}})
},stop:function(C,B){var E=A(this).data("draggable"),D=A.extend({},B,{item:E.element});
A.each(E.sortables,function(){if(this.instance.isOver){this.instance.isOver=0;
E.cancelHelperRemoval=true;
this.instance.cancelHelperRemoval=false;
if(this.shouldRevert){this.instance.options.revert=true
}this.instance._mouseStop(C);
this.instance.options.helper=this.instance.options._helper;
E.options.helper=="original"&&this.instance.currentItem.css({top:"auto",left:"auto"})
}else{this.instance.cancelHelperRemoval=false;
this.instance._trigger("deactivate",C,D)
}})
},drag:function(C,B){var E=A(this).data("draggable"),D=this;
A.each(E.sortables,function(){this.instance.positionAbs=E.positionAbs;
this.instance.helperProportions=E.helperProportions;
this.instance.offset.click=E.offset.click;
if(this.instance._intersectsWith(this.instance.containerCache)){if(!this.instance.isOver){this.instance.isOver=1;
this.instance.currentItem=A(D).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]
};
C.target=this.instance.currentItem[0];
this.instance._mouseCapture(C,true);
this.instance._mouseStart(C,true,true);
this.instance.offset.click.top=E.offset.click.top;
this.instance.offset.click.left=E.offset.click.left;
this.instance.offset.parent.left-=E.offset.parent.left-this.instance.offset.parent.left;
this.instance.offset.parent.top-=E.offset.parent.top-this.instance.offset.parent.top;
E._trigger("toSortable",C);
E.dropped=this.instance.element;
E.currentItem=E.element;
this.instance.fromOutside=E
}this.instance.currentItem&&this.instance._mouseDrag(C)
}else{if(this.instance.isOver){this.instance.isOver=0;
this.instance.cancelHelperRemoval=true;
this.instance.options.revert=false;
this.instance._trigger("out",C,this.instance._uiHash(this.instance));
this.instance._mouseStop(C,true);
this.instance.options.helper=this.instance.options._helper;
this.instance.currentItem.remove();
this.instance.placeholder&&this.instance.placeholder.remove();
E._trigger("fromSortable",C);
E.dropped=false
}}})
}});
A.ui.plugin.add("draggable","cursor",{start:function(){var C=A("body"),B=A(this).data("draggable").options;
if(C.css("cursor")){B._cursor=C.css("cursor")
}C.css("cursor",B.cursor)
},stop:function(){var B=A(this).data("draggable").options;
B._cursor&&A("body").css("cursor",B._cursor)
}});
A.ui.plugin.add("draggable","iframeFix",{start:function(){var B=A(this).data("draggable").options;
A(B.iframeFix===true?"iframe":B.iframeFix).each(function(){A('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1000}).css(A(this).offset()).appendTo("body")
})
},stop:function(){A("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)
})
}});
A.ui.plugin.add("draggable","opacity",{start:function(C,B){C=A(B.helper);
B=A(this).data("draggable").options;
if(C.css("opacity")){B._opacity=C.css("opacity")
}C.css("opacity",B.opacity)
},stop:function(C,B){C=A(this).data("draggable").options;
C._opacity&&A(B.helper).css("opacity",C._opacity)
}});
A.ui.plugin.add("draggable","scroll",{start:function(){var B=A(this).data("draggable");
if(B.scrollParent[0]!=document&&B.scrollParent[0].tagName!="HTML"){B.overflowOffset=B.scrollParent.offset()
}},drag:function(C){var B=A(this).data("draggable"),E=B.options,D=false;
if(B.scrollParent[0]!=document&&B.scrollParent[0].tagName!="HTML"){if(!E.axis||E.axis!="x"){if(B.overflowOffset.top+B.scrollParent[0].offsetHeight-C.pageY<E.scrollSensitivity){B.scrollParent[0].scrollTop=D=B.scrollParent[0].scrollTop+E.scrollSpeed
}else{if(C.pageY-B.overflowOffset.top<E.scrollSensitivity){B.scrollParent[0].scrollTop=D=B.scrollParent[0].scrollTop-E.scrollSpeed
}}}if(!E.axis||E.axis!="y"){if(B.overflowOffset.left+B.scrollParent[0].offsetWidth-C.pageX<E.scrollSensitivity){B.scrollParent[0].scrollLeft=D=B.scrollParent[0].scrollLeft+E.scrollSpeed
}else{if(C.pageX-B.overflowOffset.left<E.scrollSensitivity){B.scrollParent[0].scrollLeft=D=B.scrollParent[0].scrollLeft-E.scrollSpeed
}}}}else{if(!E.axis||E.axis!="x"){if(C.pageY-A(document).scrollTop()<E.scrollSensitivity){D=A(document).scrollTop(A(document).scrollTop()-E.scrollSpeed)
}else{if(A(window).height()-(C.pageY-A(document).scrollTop())<E.scrollSensitivity){D=A(document).scrollTop(A(document).scrollTop()+E.scrollSpeed)
}}}if(!E.axis||E.axis!="y"){if(C.pageX-A(document).scrollLeft()<E.scrollSensitivity){D=A(document).scrollLeft(A(document).scrollLeft()-E.scrollSpeed)
}else{if(A(window).width()-(C.pageX-A(document).scrollLeft())<E.scrollSensitivity){D=A(document).scrollLeft(A(document).scrollLeft()+E.scrollSpeed)
}}}}D!==false&&A.ui.ddmanager&&!E.dropBehaviour&&A.ui.ddmanager.prepareOffsets(B,C)
}});
A.ui.plugin.add("draggable","snap",{start:function(){var C=A(this).data("draggable"),B=C.options;
C.snapElements=[];
A(B.snap.constructor!=String?B.snap.items||":data(draggable)":B.snap).each(function(){var E=A(this),D=E.offset();
this!=C.element[0]&&C.snapElements.push({item:this,width:E.outerWidth(),height:E.outerHeight(),top:D.top,left:D.left})
})
},drag:function(T,S){for(var R=A(this).data("draggable"),P=R.options,Q=P.snapTolerance,O=S.offset.left,H=O+R.helperProportions.width,I=S.offset.top,G=I+R.helperProportions.height,N=R.snapElements.length-1;
N>=0;
N--){var M=R.snapElements[N].left,K=M+R.snapElements[N].width,L=R.snapElements[N].top,J=L+R.snapElements[N].height;
if(M-Q<O&&O<K+Q&&L-Q<I&&I<J+Q||M-Q<O&&O<K+Q&&L-Q<G&&G<J+Q||M-Q<H&&H<K+Q&&L-Q<I&&I<J+Q||M-Q<H&&H<K+Q&&L-Q<G&&G<J+Q){if(P.snapMode!="inner"){var F=Math.abs(L-G)<=Q,E=Math.abs(J-I)<=Q,D=Math.abs(M-H)<=Q,C=Math.abs(K-O)<=Q;
if(F){S.position.top=R._convertPositionTo("relative",{top:L-R.helperProportions.height,left:0}).top-R.margins.top
}if(E){S.position.top=R._convertPositionTo("relative",{top:J,left:0}).top-R.margins.top
}if(D){S.position.left=R._convertPositionTo("relative",{top:0,left:M-R.helperProportions.width}).left-R.margins.left
}if(C){S.position.left=R._convertPositionTo("relative",{top:0,left:K}).left-R.margins.left
}}var B=F||E||D||C;
if(P.snapMode!="outer"){F=Math.abs(L-I)<=Q;
E=Math.abs(J-G)<=Q;
D=Math.abs(M-O)<=Q;
C=Math.abs(K-H)<=Q;
if(F){S.position.top=R._convertPositionTo("relative",{top:L,left:0}).top-R.margins.top
}if(E){S.position.top=R._convertPositionTo("relative",{top:J-R.helperProportions.height,left:0}).top-R.margins.top
}if(D){S.position.left=R._convertPositionTo("relative",{top:0,left:M}).left-R.margins.left
}if(C){S.position.left=R._convertPositionTo("relative",{top:0,left:K-R.helperProportions.width}).left-R.margins.left
}}if(!R.snapElements[N].snapping&&(F||E||D||C||B)){R.options.snap.snap&&R.options.snap.snap.call(R.element,T,A.extend(R._uiHash(),{snapItem:R.snapElements[N].item}))
}R.snapElements[N].snapping=F||E||D||C||B
}else{R.snapElements[N].snapping&&R.options.snap.release&&R.options.snap.release.call(R.element,T,A.extend(R._uiHash(),{snapItem:R.snapElements[N].item}));
R.snapElements[N].snapping=false
}}}});
A.ui.plugin.add("draggable","stack",{start:function(){var C=A(this).data("draggable").options;
C=A.makeArray(A(C.stack)).sort(function(E,D){return(parseInt(A(E).css("zIndex"),10)||0)-(parseInt(A(D).css("zIndex"),10)||0)
});
if(C.length){var B=parseInt(C[0].style.zIndex)||0;
A(C).each(function(D){this.style.zIndex=B+D
});
this[0].style.zIndex=B+C.length
}}});
A.ui.plugin.add("draggable","zIndex",{start:function(C,B){C=A(B.helper);
B=A(this).data("draggable").options;
if(C.css("zIndex")){B._zIndex=C.css("zIndex")
}C.css("zIndex",B.zIndex)
},stop:function(C,B){C=A(this).data("draggable").options;
C._zIndex&&A(B.helper).css("zIndex",C._zIndex)
}})
})(jQuery);
(function(A){A.widget("ui.droppable",{widgetEventPrefix:"drop",options:{accept:"*",activeClass:false,addClasses:true,greedy:false,hoverClass:false,scope:"default",tolerance:"intersect"},_create:function(){var C=this.options,B=C.accept;
this.isover=0;
this.isout=1;
this.accept=A.isFunction(B)?B:function(D){return D.is(B)
};
this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};
A.ui.ddmanager.droppables[C.scope]=A.ui.ddmanager.droppables[C.scope]||[];
A.ui.ddmanager.droppables[C.scope].push(this);
C.addClasses&&this.element.addClass("ui-droppable")
},destroy:function(){for(var C=A.ui.ddmanager.droppables[this.options.scope],B=0;
B<C.length;
B++){C[B]==this&&C.splice(B,1)
}this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable");
return this
},_setOption:function(C,B){if(C=="accept"){this.accept=A.isFunction(B)?B:function(D){return D.is(B)
}
}A.Widget.prototype._setOption.apply(this,arguments)
},_activate:function(C){var B=A.ui.ddmanager.current;
this.options.activeClass&&this.element.addClass(this.options.activeClass);
B&&this._trigger("activate",C,this.ui(B))
},_deactivate:function(C){var B=A.ui.ddmanager.current;
this.options.activeClass&&this.element.removeClass(this.options.activeClass);
B&&this._trigger("deactivate",C,this.ui(B))
},_over:function(C){var B=A.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",C,this.ui(B))
}}},_out:function(C){var B=A.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",C,this.ui(B))
}}},_drop:function(C,B){var E=B||A.ui.ddmanager.current;
if(!E||(E.currentItem||E.element)[0]==this.element[0]){return false
}var D=false;
this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var F=A.data(this,"droppable");
if(F.options.greedy&&!F.options.disabled&&F.options.scope==E.options.scope&&F.accept.call(F.element[0],E.currentItem||E.element)&&A.ui.intersect(E,A.extend(F,{offset:F.element.offset()}),F.options.tolerance)){D=true;
return false
}});
if(D){return false
}if(this.accept.call(this.element[0],E.currentItem||E.element)){this.options.activeClass&&this.element.removeClass(this.options.activeClass);
this.options.hoverClass&&this.element.removeClass(this.options.hoverClass);
this._trigger("drop",C,this.ui(E));
return this.element
}return false
},ui:function(B){return{draggable:B.currentItem||B.element,helper:B.helper,position:B.position,offset:B.positionAbs}
}});
A.extend(A.ui.droppable,{version:"1.8.11"});
A.ui.intersect=function(L,K,J){if(!K.offset){return false
}var I=(L.positionAbs||L.position.absolute).left,G=I+L.helperProportions.width,H=(L.positionAbs||L.position.absolute).top,F=H+L.helperProportions.height,E=K.offset.left,C=E+K.proportions.width,D=K.offset.top,B=D+K.proportions.height;
switch(J){case"fit":return E<=I&&G<=C&&D<=H&&F<=B;
case"intersect":return E<I+L.helperProportions.width/2&&G-L.helperProportions.width/2<C&&D<H+L.helperProportions.height/2&&F-L.helperProportions.height/2<B;
case"pointer":return A.ui.isOver((L.positionAbs||L.position.absolute).top+(L.clickOffset||L.offset.click).top,(L.positionAbs||L.position.absolute).left+(L.clickOffset||L.offset.click).left,D,E,K.proportions.height,K.proportions.width);
case"touch":return(H>=D&&H<=B||F>=D&&F<=B||H<D&&F>B)&&(I>=E&&I<=C||G>=E&&G<=C||I<E&&G>C);
default:return false
}};
A.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(C,B){var H=A.ui.ddmanager.droppables[C.options.scope]||[],G=B?B.type:null,E=(C.currentItem||C.element).find(":data(droppable)").andSelf(),F=0;
C:for(;
F<H.length;
F++){if(!(H[F].options.disabled||C&&!H[F].accept.call(H[F].element[0],C.currentItem||C.element))){for(var D=0;
D<E.length;
D++){if(E[D]==H[F].element[0]){H[F].proportions.height=0;
continue C
}}H[F].visible=H[F].element.css("display")!="none";
if(H[F].visible){G=="mousedown"&&H[F]._activate.call(H[F],B);
H[F].offset=H[F].element.offset();
H[F].proportions={width:H[F].element[0].offsetWidth,height:H[F].element[0].offsetHeight}
}}}},drop:function(C,B){var D=false;
A.each(A.ui.ddmanager.droppables[C.options.scope]||[],function(){if(this.options){if(!this.options.disabled&&this.visible&&A.ui.intersect(C,this,this.options.tolerance)){D=D||this._drop.call(this,B)
}if(!this.options.disabled&&this.visible&&this.accept.call(this.element[0],C.currentItem||C.element)){this.isout=1;
this.isover=0;
this._deactivate.call(this,B)
}}});
return D
},drag:function(C,B){C.options.refreshPositions&&A.ui.ddmanager.prepareOffsets(C,B);
A.each(A.ui.ddmanager.droppables[C.options.scope]||[],function(){if(!(this.options.disabled||this.greedyChild||!this.visible)){var F=A.ui.intersect(C,this,this.options.tolerance);
if(F=!F&&this.isover==1?"isout":F&&this.isover==0?"isover":null){var E;
if(this.options.greedy){var D=this.element.parents(":data(droppable):eq(0)");
if(D.length){E=A.data(D[0],"droppable");
E.greedyChild=F=="isover"?1:0
}}if(E&&F=="isover"){E.isover=0;
E.isout=1;
E._out.call(E,B)
}this[F]=1;
this[F=="isout"?"isover":"isout"]=0;
this[F=="isover"?"_over":"_out"].call(this,B);
if(E&&F=="isout"){E.isout=0;
E.isover=1;
E._over.call(E,B)
}}}})
}}
})(jQuery);
(function(C){C.widget("ui.resizable",C.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:1000},_create:function(){var D=this,E=this.options;
this.element.addClass("ui-resizable");
C.extend(this,{_aspectRatio:!!E.aspectRatio,aspectRatio:E.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:E.helper||E.ghost||E.animate?E.helper||"ui-resizable-helper":null});
if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){/relative/.test(this.element.css("position"))&&C.browser.opera&&this.element.css({position:"relative",top:"auto",left:"auto"});
this.element.wrap(C('<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=E.handles||(!C(".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 I=this.handles.split(",");
this.handles={};
for(var H=0;
H<I.length;
H++){var G=C.trim(I[H]),F=C('<div class="ui-resizable-handle '+("ui-resizable-"+G)+'"></div>');
/sw|se|ne|nw/.test(G)&&F.css({zIndex:++E.zIndex});
"se"==G&&F.addClass("ui-icon ui-icon-gripsmall-diagonal-se");
this.handles[G]=".ui-resizable-"+G;
this.element.append(F)
}}this._renderAxis=function(M){M=M||this.element;
for(var L in this.handles){if(this.handles[L].constructor==String){this.handles[L]=C(this.handles[L],this.element).show()
}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var K=C(this.handles[L],this.element),J=0;
J=/sw|ne|nw|se|n|s/.test(L)?K.outerHeight():K.outerWidth();
K=["padding",/ne|nw|n/.test(L)?"Top":/se|sw|s/.test(L)?"Bottom":/^e$/.test(L)?"Right":"Left"].join("");
M.css(K,J);
this._proportionallyResize()
}C(this.handles[L])
}};
this._renderAxis(this.element);
this._handles=C(".ui-resizable-handle",this.element).disableSelection();
this._handles.mouseover(function(){if(!D.resizing){if(this.className){var J=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)
}D.axis=J&&J[1]?J[1]:"se"
}});
if(E.autoHide){this._handles.hide();
C(this.element).addClass("ui-resizable-autohide").hover(function(){C(this).removeClass("ui-resizable-autohide");
D._handles.show()
},function(){if(!D.resizing){C(this).addClass("ui-resizable-autohide");
D._handles.hide()
}})
}this._mouseInit()
},destroy:function(){this._mouseDestroy();
var D=function(F){C(F).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()
};
if(this.elementIsWrapper){D(this.element);
var E=this.element;
E.after(this.originalElement.css({position:E.css("position"),width:E.outerWidth(),height:E.outerHeight(),top:E.css("top"),left:E.css("left")})).remove()
}this.originalElement.css("resize",this.originalResizeStyle);
D(this.originalElement);
return this
},_mouseCapture:function(D){var E=false;
for(var F in this.handles){if(C(this.handles[F])[0]==D.target){E=true
}}return !this.options.disabled&&E
},_mouseStart:function(D){var E=this.options,H=this.element.position(),G=this.element;
this.resizing=true;
this.documentScroll={top:C(document).scrollTop(),left:C(document).scrollLeft()};
if(G.is(".ui-draggable")||/absolute/.test(G.css("position"))){G.css({position:"absolute",top:H.top,left:H.left})
}C.browser.opera&&/relative/.test(G.css("position"))&&G.css({position:"relative",top:"auto",left:"auto"});
this._renderProxy();
H=A(this.helper.css("left"));
var F=A(this.helper.css("top"));
if(E.containment){H+=C(E.containment).scrollLeft()||0;
F+=C(E.containment).scrollTop()||0
}this.offset=this.helper.offset();
this.position={left:H,top:F};
this.size=this._helper?{width:G.outerWidth(),height:G.outerHeight()}:{width:G.width(),height:G.height()};
this.originalSize=this._helper?{width:G.outerWidth(),height:G.outerHeight()}:{width:G.width(),height:G.height()};
this.originalPosition={left:H,top:F};
this.sizeDiff={width:G.outerWidth()-G.width(),height:G.outerHeight()-G.height()};
this.originalMousePosition={left:D.pageX,top:D.pageY};
this.aspectRatio=typeof E.aspectRatio=="number"?E.aspectRatio:this.originalSize.width/this.originalSize.height||1;
E=C(".ui-resizable-"+this.axis).css("cursor");
C("body").css("cursor",E=="auto"?this.axis+"-resize":E);
G.addClass("ui-resizable-resizing");
this._propagate("start",D);
return true
},_mouseDrag:function(D){var E=this.helper,G=this.originalMousePosition,F=this._change[this.axis];
if(!F){return false
}G=F.apply(this,[D,D.pageX-G.left||0,D.pageY-G.top||0]);
if(this._aspectRatio||D.shiftKey){G=this._updateRatio(G,D)
}G=this._respectSize(G,D);
this._propagate("resize",D);
E.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(G);
this._trigger("resize",D,this.ui());
return false
},_mouseStop:function(D){this.resizing=false;
var E=this.options,I=this;
if(this._helper){var H=this._proportionallyResizeElements,G=H.length&&/textarea/i.test(H[0].nodeName);
H=G&&C.ui.hasScroll(H[0],"left")?0:I.sizeDiff.height;
G=G?0:I.sizeDiff.width;
G={width:I.helper.width()-G,height:I.helper.height()-H};
H=parseInt(I.element.css("left"),10)+(I.position.left-I.originalPosition.left)||null;
var F=parseInt(I.element.css("top"),10)+(I.position.top-I.originalPosition.top)||null;
E.animate||this.element.css(C.extend(G,{top:F,left:H}));
I.helper.height(I.size.height);
I.helper.width(I.size.width);
this._helper&&!E.animate&&this._proportionallyResize()
}C("body").css("cursor","auto");
this.element.removeClass("ui-resizable-resizing");
this._propagate("stop",D);
this._helper&&this.helper.remove();
return false
},_updateCache:function(D){this.offset=this.helper.offset();
if(B(D.left)){this.position.left=D.left
}if(B(D.top)){this.position.top=D.top
}if(B(D.height)){this.size.height=D.height
}if(B(D.width)){this.size.width=D.width
}},_updateRatio:function(D){var E=this.position,G=this.size,F=this.axis;
if(D.height){D.width=G.height*this.aspectRatio
}else{if(D.width){D.height=G.width/this.aspectRatio
}}if(F=="sw"){D.left=E.left+(G.width-D.width);
D.top=null
}if(F=="nw"){D.top=E.top+(G.height-D.height);
D.left=E.left+(G.width-D.width)
}return D
},_respectSize:function(L){var M=this.options,K=this.axis,J=B(L.width)&&M.maxWidth&&M.maxWidth<L.width,I=B(L.height)&&M.maxHeight&&M.maxHeight<L.height,H=B(L.width)&&M.minWidth&&M.minWidth>L.width,G=B(L.height)&&M.minHeight&&M.minHeight>L.height;
if(H){L.width=M.minWidth
}if(G){L.height=M.minHeight
}if(J){L.width=M.maxWidth
}if(I){L.height=M.maxHeight
}var F=this.originalPosition.left+this.originalSize.width,E=this.position.top+this.size.height,D=/sw|nw|w/.test(K);
K=/nw|ne|n/.test(K);
if(H&&D){L.left=F-M.minWidth
}if(J&&D){L.left=F-M.maxWidth
}if(G&&K){L.top=E-M.minHeight
}if(I&&K){L.top=E-M.maxHeight
}if((M=!L.width&&!L.height)&&!L.left&&L.top){L.top=null
}else{if(M&&!L.top&&L.left){L.left=null
}}return L
},_proportionallyResize:function(){if(this._proportionallyResizeElements.length){for(var D=this.helper||this.element,E=0;
E<this._proportionallyResizeElements.length;
E++){var H=this._proportionallyResizeElements[E];
if(!this.borderDif){var G=[H.css("borderTopWidth"),H.css("borderRightWidth"),H.css("borderBottomWidth"),H.css("borderLeftWidth")],F=[H.css("paddingTop"),H.css("paddingRight"),H.css("paddingBottom"),H.css("paddingLeft")];
this.borderDif=C.map(G,function(J,I){J=parseInt(J,10)||0;
I=parseInt(F[I],10)||0;
return J+I
})
}C.browser.msie&&(C(D).is(":hidden")||C(D).parents(":hidden").length)||H.css({height:D.height()-this.borderDif[0]-this.borderDif[2]||0,width:D.width()-this.borderDif[1]-this.borderDif[3]||0})
}}},_renderProxy:function(){var D=this.options;
this.elementOffset=this.element.offset();
if(this._helper){this.helper=this.helper||C('<div style="overflow:hidden;"></div>');
var E=C.browser.msie&&C.browser.version<7,F=E?1:0;
E=E?2:-1;
this.helper.addClass(this._helper).css({width:this.element.outerWidth()+E,height:this.element.outerHeight()+E,position:"absolute",left:this.elementOffset.left-F+"px",top:this.elementOffset.top-F+"px",zIndex:++D.zIndex});
this.helper.appendTo("body").disableSelection()
}else{this.helper=this.element
}},_change:{e:function(D,E){return{width:this.originalSize.width+E}
},w:function(D,E){return{left:this.originalPosition.left+E,width:this.originalSize.width-E}
},n:function(D,E,F){return{top:this.originalPosition.top+F,height:this.originalSize.height-F}
},s:function(D,E,F){return{height:this.originalSize.height+F}
},se:function(D,E,F){return C.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[D,E,F]))
},sw:function(D,E,F){return C.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[D,E,F]))
},ne:function(D,E,F){return C.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[D,E,F]))
},nw:function(D,E,F){return C.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[D,E,F]))
}},_propagate:function(D,E){C.ui.plugin.call(this,D,[E,this.ui()]);
D!="resize"&&this._trigger(D,E,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}
}});
C.extend(C.ui.resizable,{version:"1.8.11"});
C.ui.plugin.add("resizable","alsoResize",{start:function(){var D=C(this).data("resizable").options,E=function(F){C(F).each(function(){var G=C(this);
G.data("resizable-alsoresize",{width:parseInt(G.width(),10),height:parseInt(G.height(),10),left:parseInt(G.css("left"),10),top:parseInt(G.css("top"),10),position:G.css("position")})
})
};
if(typeof D.alsoResize=="object"&&!D.alsoResize.parentNode){if(D.alsoResize.length){D.alsoResize=D.alsoResize[0];
E(D.alsoResize)
}else{C.each(D.alsoResize,function(F){E(F)
})
}}else{E(D.alsoResize)
}},resize:function(D,E){var J=C(this).data("resizable");
D=J.options;
var I=J.originalSize,H=J.originalPosition,G={height:J.size.height-I.height||0,width:J.size.width-I.width||0,top:J.position.top-H.top||0,left:J.position.left-H.left||0},F=function(L,K){C(L).each(function(){var M=C(this),O=C(this).data("resizable-alsoresize"),P={},N=K&&K.length?K:M.parents(E.originalElement[0]).length?["width","height"]:["width","height","top","left"];
C.each(N,function(R,Q){if((R=(O[Q]||0)+(G[Q]||0))&&R>=0){P[Q]=R||null
}});
if(C.browser.opera&&/relative/.test(M.css("position"))){J._revertToRelativePosition=true;
M.css({position:"absolute",top:"auto",left:"auto"})
}M.css(P)
})
};
typeof D.alsoResize=="object"&&!D.alsoResize.nodeType?C.each(D.alsoResize,function(L,K){F(L,K)
}):F(D.alsoResize)
},stop:function(){var D=C(this).data("resizable"),E=D.options,F=function(G){C(G).each(function(){var H=C(this);
H.css({position:H.data("resizable-alsoresize").position})
})
};
if(D._revertToRelativePosition){D._revertToRelativePosition=false;
typeof E.alsoResize=="object"&&!E.alsoResize.nodeType?C.each(E.alsoResize,function(G){F(G)
}):F(E.alsoResize)
}C(this).removeData("resizable-alsoresize")
}});
C.ui.plugin.add("resizable","animate",{stop:function(D){var E=C(this).data("resizable"),J=E.options,I=E._proportionallyResizeElements,H=I.length&&/textarea/i.test(I[0].nodeName),G=H&&C.ui.hasScroll(I[0],"left")?0:E.sizeDiff.height;
H={width:E.size.width-(H?0:E.sizeDiff.width),height:E.size.height-G};
G=parseInt(E.element.css("left"),10)+(E.position.left-E.originalPosition.left)||null;
var F=parseInt(E.element.css("top"),10)+(E.position.top-E.originalPosition.top)||null;
E.element.animate(C.extend(H,F&&G?{top:F,left:G}:{}),{duration:J.animateDuration,easing:J.animateEasing,step:function(){var K={width:parseInt(E.element.css("width"),10),height:parseInt(E.element.css("height"),10),top:parseInt(E.element.css("top"),10),left:parseInt(E.element.css("left"),10)};
I&&I.length&&C(I[0]).css({width:K.width,height:K.height});
E._updateCache(K);
E._propagate("resize",D)
}})
}});
C.ui.plugin.add("resizable","containment",{start:function(){var D=C(this).data("resizable"),E=D.element,J=D.options.containment;
if(E=J instanceof C?J.get(0):/parent/.test(J)?E.parent().get(0):J){D.containerElement=C(E);
if(/document/.test(J)||J==document){D.containerOffset={left:0,top:0};
D.containerPosition={left:0,top:0};
D.parentData={element:C(document),left:0,top:0,width:C(document).width(),height:C(document).height()||document.body.parentNode.scrollHeight}
}else{var I=C(E),H=[];
C(["Top","Right","Left","Bottom"]).each(function(L,K){H[L]=A(I.css("padding"+K))
});
D.containerOffset=I.offset();
D.containerPosition=I.position();
D.containerSize={height:I.innerHeight()-H[3],width:I.innerWidth()-H[1]};
J=D.containerOffset;
var G=D.containerSize.height,F=D.containerSize.width;
F=C.ui.hasScroll(E,"left")?E.scrollWidth:F;
G=C.ui.hasScroll(E)?E.scrollHeight:G;
D.parentData={element:E,left:J.left,top:J.top,width:F,height:G}
}}},resize:function(D){var E=C(this).data("resizable"),J=E.options,I=E.containerOffset,H=E.position;
D=E._aspectRatio||D.shiftKey;
var G={top:0,left:0},F=E.containerElement;
if(F[0]!=document&&/static/.test(F.css("position"))){G=I
}if(H.left<(E._helper?I.left:0)){E.size.width+=E._helper?E.position.left-I.left:E.position.left-G.left;
if(D){E.size.height=E.size.width/J.aspectRatio
}E.position.left=J.helper?I.left:0
}if(H.top<(E._helper?I.top:0)){E.size.height+=E._helper?E.position.top-I.top:E.position.top;
if(D){E.size.width=E.size.height*J.aspectRatio
}E.position.top=E._helper?I.top:0
}E.offset.left=E.parentData.left+E.position.left;
E.offset.top=E.parentData.top+E.position.top;
J=Math.abs((E._helper?E.offset.left-G.left:E.offset.left-G.left)+E.sizeDiff.width);
I=Math.abs((E._helper?E.offset.top-G.top:E.offset.top-I.top)+E.sizeDiff.height);
H=E.containerElement.get(0)==E.element.parent().get(0);
G=/relative|absolute/.test(E.containerElement.css("position"));
if(H&&G){J-=E.parentData.left
}if(J+E.size.width>=E.parentData.width){E.size.width=E.parentData.width-J;
if(D){E.size.height=E.size.width/E.aspectRatio
}}if(I+E.size.height>=E.parentData.height){E.size.height=E.parentData.height-I;
if(D){E.size.width=E.size.height*E.aspectRatio
}}},stop:function(){var D=C(this).data("resizable"),E=D.options,K=D.containerOffset,J=D.containerPosition,I=D.containerElement,H=C(D.helper),G=H.offset(),F=H.outerWidth()-D.sizeDiff.width;
H=H.outerHeight()-D.sizeDiff.height;
D._helper&&!E.animate&&/relative/.test(I.css("position"))&&C(this).css({left:G.left-J.left-K.left,width:F,height:H});
D._helper&&!E.animate&&/static/.test(I.css("position"))&&C(this).css({left:G.left-J.left-K.left,width:F,height:H})
}});
C.ui.plugin.add("resizable","ghost",{start:function(){var D=C(this).data("resizable"),E=D.options,F=D.size;
D.ghost=D.originalElement.clone();
D.ghost.css({opacity:0.25,display:"block",position:"relative",height:F.height,width:F.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof E.ghost=="string"?E.ghost:"");
D.ghost.appendTo(D.helper)
},resize:function(){var D=C(this).data("resizable");
D.ghost&&D.ghost.css({position:"relative",height:D.size.height,width:D.size.width})
},stop:function(){var D=C(this).data("resizable");
D.ghost&&D.helper&&D.helper.get(0).removeChild(D.ghost.get(0))
}});
C.ui.plugin.add("resizable","grid",{resize:function(){var D=C(this).data("resizable"),E=D.options,J=D.size,I=D.originalSize,H=D.originalPosition,G=D.axis;
E.grid=typeof E.grid=="number"?[E.grid,E.grid]:E.grid;
var F=Math.round((J.width-I.width)/(E.grid[0]||1))*(E.grid[0]||1);
E=Math.round((J.height-I.height)/(E.grid[1]||1))*(E.grid[1]||1);
if(/^(se|s|e)$/.test(G)){D.size.width=I.width+F;
D.size.height=I.height+E
}else{if(/^(ne)$/.test(G)){D.size.width=I.width+F;
D.size.height=I.height+E;
D.position.top=H.top-E
}else{if(/^(sw)$/.test(G)){D.size.width=I.width+F;
D.size.height=I.height+E
}else{D.size.width=I.width+F;
D.size.height=I.height+E;
D.position.top=H.top-E
}D.position.left=H.left-F
}}}});
var A=function(D){return parseInt(D,10)||0
},B=function(D){return !isNaN(parseInt(D,10))
}
})(jQuery);
(function(A){A.widget("ui.selectable",A.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 B;
this.refresh=function(){B=A(C.options.filter,C.element[0]);
B.each(function(){var E=A(this),D=E.offset();
A.data(this,"selectable-item",{element:this,$element:E,left:D.left,top:D.top,right:D.left+E.outerWidth(),bottom:D.top+E.outerHeight(),startselected:false,selected:E.hasClass("ui-selected"),selecting:E.hasClass("ui-selecting"),unselecting:E.hasClass("ui-unselecting")})
})
};
this.refresh();
this.selectees=B.addClass("ui-selectee");
this._mouseInit();
this.helper=A("<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(D){var B=this;
this.opos=[D.pageX,D.pageY];
if(!this.options.disabled){var C=this.options;
this.selectees=A(C.filter,this.element[0]);
this._trigger("start",D);
A(C.appendTo).append(this.helper);
this.helper.css({left:D.clientX,top:D.clientY,width:0,height:0});
C.autoRefresh&&this.refresh();
this.selectees.filter(".ui-selected").each(function(){var E=A.data(this,"selectable-item");
E.startselected=true;
if(!D.metaKey){E.$element.removeClass("ui-selected");
E.selected=false;
E.$element.addClass("ui-unselecting");
E.unselecting=true;
B._trigger("unselecting",D,{unselecting:E.element})
}});
A(D.target).parents().andSelf().each(function(){var E=A.data(this,"selectable-item");
if(E){var F=!D.metaKey||!E.$element.hasClass("ui-selected");
E.$element.removeClass(F?"ui-unselecting":"ui-selected").addClass(F?"ui-selecting":"ui-unselecting");
E.unselecting=!F;
E.selecting=F;
(E.selected=F)?B._trigger("selecting",D,{selecting:E.element}):B._trigger("unselecting",D,{unselecting:E.element});
return false
}})
}},_mouseDrag:function(I){var G=this;
this.dragged=true;
if(!this.options.disabled){var H=this.options,B=this.opos[0],F=this.opos[1],E=I.pageX,D=I.pageY;
if(B>E){var C=E;
E=B;
B=C
}if(F>D){C=D;
D=F;
F=C
}this.helper.css({left:B,top:F,width:E-B,height:D-F});
this.selectees.each(function(){var J=A.data(this,"selectable-item");
if(!(!J||J.element==G.element[0])){var K=false;
if(H.tolerance=="touch"){K=!(J.left>E||J.right<B||J.top>D||J.bottom<F)
}else{if(H.tolerance=="fit"){K=J.left>B&&J.right<E&&J.top>F&&J.bottom<D
}}if(K){if(J.selected){J.$element.removeClass("ui-selected");
J.selected=false
}if(J.unselecting){J.$element.removeClass("ui-unselecting");
J.unselecting=false
}if(!J.selecting){J.$element.addClass("ui-selecting");
J.selecting=true;
G._trigger("selecting",I,{selecting:J.element})
}}else{if(J.selecting){if(I.metaKey&&J.startselected){J.$element.removeClass("ui-selecting");
J.selecting=false;
J.$element.addClass("ui-selected");
J.selected=true
}else{J.$element.removeClass("ui-selecting");
J.selecting=false;
if(J.startselected){J.$element.addClass("ui-unselecting");
J.unselecting=true
}G._trigger("unselecting",I,{unselecting:J.element})
}}if(J.selected){if(!I.metaKey&&!J.startselected){J.$element.removeClass("ui-selected");
J.selected=false;
J.$element.addClass("ui-unselecting");
J.unselecting=true;
G._trigger("unselecting",I,{unselecting:J.element})
}}}}});
return false
}},_mouseStop:function(C){var B=this;
this.dragged=false;
A(".ui-unselecting",this.element[0]).each(function(){var D=A.data(this,"selectable-item");
D.$element.removeClass("ui-unselecting");
D.unselecting=false;
D.startselected=false;
B._trigger("unselected",C,{unselected:D.element})
});
A(".ui-selecting",this.element[0]).each(function(){var D=A.data(this,"selectable-item");
D.$element.removeClass("ui-selecting").addClass("ui-selected");
D.selecting=false;
D.selected=true;
D.startselected=true;
B._trigger("selected",C,{selected:D.element})
});
this._trigger("stop",C);
this.helper.remove();
return false
}});
A.extend(A.ui.selectable,{version:"1.8.11"})
})(jQuery);
(function(A){A.widget("ui.sortable",A.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:1000},_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 B=this.items.length-1;
B>=0;
B--){this.items[B].item.removeData("sortable-item")
}return this
},_setOption:function(C,B){if(C==="disabled"){this.options[C]=B;
this.widget()[B?"addClass":"removeClass"]("ui-sortable-disabled")
}else{A.Widget.prototype._setOption.apply(this,arguments)
}},_mouseCapture:function(C,B){if(this.reverting){return false
}if(this.options.disabled||this.options.type=="static"){return false
}this._refreshItems(C);
var F=null,E=this;
A(C.target).parents().each(function(){if(A.data(this,"sortable-item")==E){F=A(this);
return false
}});
if(A.data(C.target,"sortable-item")==E){F=A(C.target)
}if(!F){return false
}if(this.options.handle&&!B){var D=false;
A(this.options.handle,F).find("*").andSelf().each(function(){if(this==C.target){D=true
}});
if(!D){return false
}}this.currentItem=F;
this._removeCurrentsFromItems();
return true
},_mouseStart:function(C,B,E){B=this.options;
var D=this;
this.currentContainer=this;
this.refreshPositions();
this.helper=this._createHelper(C);
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");
A.extend(this.offset,{click:{left:C.pageX-this.offset.left,top:C.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});
this.originalPosition=this._generatePosition(C);
this.originalPageX=C.pageX;
this.originalPageY=C.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(A("body").css("cursor")){this._storedCursor=A("body").css("cursor")
}A("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",C,this._uiHash());
this._preserveHelperProportions||this._cacheHelperProportions();
if(!E){for(E=this.containers.length-1;
E>=0;
E--){this.containers[E]._trigger("activate",C,D._uiHash(this))
}}if(A.ui.ddmanager){A.ui.ddmanager.current=this
}A.ui.ddmanager&&!B.dropBehaviour&&A.ui.ddmanager.prepareOffsets(this,C);
this.dragging=true;
this.helper.addClass("ui-sortable-helper");
this._mouseDrag(C);
return true
},_mouseDrag:function(C){this.position=this._generatePosition(C);
this.positionAbs=this._convertPositionTo("absolute");
if(!this.lastPositionAbs){this.lastPositionAbs=this.positionAbs
}if(this.options.scroll){var B=this.options,F=false;
if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){if(this.overflowOffset.top+this.scrollParent[0].offsetHeight-C.pageY<B.scrollSensitivity){this.scrollParent[0].scrollTop=F=this.scrollParent[0].scrollTop+B.scrollSpeed
}else{if(C.pageY-this.overflowOffset.top<B.scrollSensitivity){this.scrollParent[0].scrollTop=F=this.scrollParent[0].scrollTop-B.scrollSpeed
}}if(this.overflowOffset.left+this.scrollParent[0].offsetWidth-C.pageX<B.scrollSensitivity){this.scrollParent[0].scrollLeft=F=this.scrollParent[0].scrollLeft+B.scrollSpeed
}else{if(C.pageX-this.overflowOffset.left<B.scrollSensitivity){this.scrollParent[0].scrollLeft=F=this.scrollParent[0].scrollLeft-B.scrollSpeed
}}}else{if(C.pageY-A(document).scrollTop()<B.scrollSensitivity){F=A(document).scrollTop(A(document).scrollTop()-B.scrollSpeed)
}else{if(A(window).height()-(C.pageY-A(document).scrollTop())<B.scrollSensitivity){F=A(document).scrollTop(A(document).scrollTop()+B.scrollSpeed)
}}if(C.pageX-A(document).scrollLeft()<B.scrollSensitivity){F=A(document).scrollLeft(A(document).scrollLeft()-B.scrollSpeed)
}else{if(A(window).width()-(C.pageX-A(document).scrollLeft())<B.scrollSensitivity){F=A(document).scrollLeft(A(document).scrollLeft()+B.scrollSpeed)
}}}F!==false&&A.ui.ddmanager&&!B.dropBehaviour&&A.ui.ddmanager.prepareOffsets(this,C)
}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--){F=this.items[B];
var E=F.item[0],D=this._intersectsWithPointer(F);
if(D){if(E!=this.currentItem[0]&&this.placeholder[D==1?"next":"prev"]()[0]!=E&&!A.ui.contains(this.placeholder[0],E)&&(this.options.type=="semi-dynamic"?!A.ui.contains(this.element[0],E):true)){this.direction=D==1?"down":"up";
if(this.options.tolerance=="pointer"||this._intersectsWithSides(F)){this._rearrange(C,F)
}else{break
}this._trigger("change",C,this._uiHash());
break
}}}this._contactContainers(C);
A.ui.ddmanager&&A.ui.ddmanager.drag(this,C);
this._trigger("sort",C,this._uiHash());
this.lastPositionAbs=this.positionAbs;
return false
},_mouseStop:function(C,B){if(C){A.ui.ddmanager&&!this.options.dropBehaviour&&A.ui.ddmanager.drop(this,C);
if(this.options.revert){var D=this;
B=D.placeholder.offset();
D.reverting=true;
A(this.helper).animate({left:B.left-this.offset.parent.left-D.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:B.top-this.offset.parent.top-D.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){D._clear(C)
})
}else{this._clear(C,B)
}return false
}},cancel:function(){var C=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,C._uiHash(this));
if(this.containers[B].containerCache.over){this.containers[B]._trigger("out",null,C._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();
A.extend(this,{helper:null,dragging:false,reverting:false,_noFinalSort:null});
this.domPosition.prev?A(this.domPosition.prev).after(this.currentItem):A(this.domPosition.parent).prepend(this.currentItem)
}return this
},serialize:function(C){var B=this._getItemsAsjQuery(C&&C.connected),D=[];
C=C||{};
A(B).each(function(){var E=(A(C.item||this).attr(C.attribute||"id")||"").match(C.expression||/(.+)[-=_](.+)/);
if(E){D.push((C.key||E[1]+"[]")+"="+(C.key&&C.expression?E[1]:E[2]))
}});
!D.length&&C.key&&D.push(C.key+"=");
return D.join("&")
},toArray:function(C){var B=this._getItemsAsjQuery(C&&C.connected),D=[];
C=C||{};
B.each(function(){D.push(A(C.item||this).attr(C.attribute||"id")||"")
});
return D
},_intersectsWith:function(L){var K=this.positionAbs.left,J=K+this.helperProportions.width,I=this.positionAbs.top,H=I+this.helperProportions.height,G=L.left,F=G+L.width,E=L.top,C=E+L.height,D=this.offset.click.top,B=this.offset.click.left;
D=I+D>E&&I+D<C&&K+B>G&&K+B<F;
return this.options.tolerance=="pointer"||this.options.forcePointerForContainers||this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>L[this.floating?"width":"height"]?D:G<K+this.helperProportions.width/2&&J-this.helperProportions.width/2<F&&E<I+this.helperProportions.height/2&&H-this.helperProportions.height/2<C
},_intersectsWithPointer:function(C){var B=A.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,C.top,C.height);
C=A.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,C.left,C.width);
B=B&&C;
C=this._getDragVerticalDirection();
var D=this._getDragHorizontalDirection();
if(!B){return false
}return this.floating?D&&D=="right"||C=="down"?2:1:C&&(C=="down"?2:1)
},_intersectsWithSides:function(C){var B=A.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,C.top+C.height/2,C.height);
C=A.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,C.left+C.width/2,C.width);
var E=this._getDragVerticalDirection(),D=this._getDragHorizontalDirection();
return this.floating&&D?D=="right"&&C||D=="left"&&!C:E&&(E=="down"&&B||E=="up"&&!B)
},_getDragVerticalDirection:function(){var B=this.positionAbs.top-this.lastPositionAbs.top;
return B!=0&&(B>0?"down":"up")
},_getDragHorizontalDirection:function(){var B=this.positionAbs.left-this.lastPositionAbs.left;
return B!=0&&(B>0?"right":"left")
},refresh:function(B){this._refreshItems(B);
this.refreshPositions();
return this
},_connectWith:function(){var B=this.options;
return B.connectWith.constructor==String?[B.connectWith]:B.connectWith
},_getItemsAsjQuery:function(C){var B=[],H=[],G=this._connectWith();
if(G&&C){for(C=G.length-1;
C>=0;
C--){for(var F=A(G[C]),E=F.length-1;
E>=0;
E--){var D=A.data(F[E],"sortable");
if(D&&D!=this&&!D.options.disabled){H.push([A.isFunction(D.options.items)?D.options.items.call(D.element):A(D.options.items,D.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),D])
}}}}H.push([A.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):A(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);
for(C=H.length-1;
C>=0;
C--){H[C][0].each(function(){B.push(this)
})
}return A(B)
},_removeCurrentsFromItems:function(){for(var C=this.currentItem.find(":data(sortable-item)"),B=0;
B<this.items.length;
B++){for(var D=0;
D<C.length;
D++){C[D]==this.items[B].item[0]&&this.items.splice(B,1)
}}},_refreshItems:function(C){this.items=[];
this.containers=[this];
var B=this.items,I=[[A.isFunction(this.options.items)?this.options.items.call(this.element[0],C,{item:this.currentItem}):A(this.options.items,this.element),this]],H=this._connectWith();
if(H){for(var G=H.length-1;
G>=0;
G--){for(var F=A(H[G]),E=F.length-1;
E>=0;
E--){var D=A.data(F[E],"sortable");
if(D&&D!=this&&!D.options.disabled){I.push([A.isFunction(D.options.items)?D.options.items.call(D.element[0],C,{item:this.currentItem}):A(D.options.items,D.element),D]);
this.containers.push(D)
}}}}for(G=I.length-1;
G>=0;
G--){C=I[G][1];
H=I[G][0];
E=0;
for(F=H.length;
E<F;
E++){D=A(H[E]);
D.data("sortable-item",C);
B.push({item:D,instance:C,width:0,height:0,left:0,top:0})
}}},refreshPositions:function(C){if(this.offsetParent&&this.helper){this.offset.parent=this._getParentOffset()
}for(var B=this.items.length-1;
B>=0;
B--){var E=this.items[B],D=this.options.toleranceElement?A(this.options.toleranceElement,E.item):E.item;
if(!C){E.width=D.outerWidth();
E.height=D.outerHeight()
}D=D.offset();
E.left=D.left;
E.top=D.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--){D=this.containers[B].element.offset();
this.containers[B].containerCache.left=D.left;
this.containers[B].containerCache.top=D.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(C){var B=C||this,E=B.options;
if(!E.placeholder||E.placeholder.constructor==String){var D=E.placeholder;
E.placeholder={element:function(){var F=A(document.createElement(B.currentItem[0].nodeName)).addClass(D||B.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];
if(!D){F.style.visibility="hidden"
}return F
},update:function(G,F){if(!(D&&!E.forcePlaceholderSize)){F.height()||F.height(B.currentItem.innerHeight()-parseInt(B.currentItem.css("paddingTop")||0,10)-parseInt(B.currentItem.css("paddingBottom")||0,10));
F.width()||F.width(B.currentItem.innerWidth()-parseInt(B.currentItem.css("paddingLeft")||0,10)-parseInt(B.currentItem.css("paddingRight")||0,10))
}}}
}B.placeholder=A(E.placeholder.element.call(B.element,B.currentItem));
B.currentItem.after(B.placeholder);
E.placeholder.update(B,B.placeholder)
},_contactContainers:function(C){for(var B=null,H=null,G=this.containers.length-1;
G>=0;
G--){if(!A.ui.contains(this.currentItem[0],this.containers[G].element[0])){if(this._intersectsWith(this.containers[G].containerCache)){if(!(B&&A.ui.contains(this.containers[G].element[0],B.element[0]))){B=this.containers[G];
H=G
}}else{if(this.containers[G].containerCache.over){this.containers[G]._trigger("out",C,this._uiHash(this));
this.containers[G].containerCache.over=0
}}}}if(B){if(this.containers.length===1){this.containers[H]._trigger("over",C,this._uiHash(this));
this.containers[H].containerCache.over=1
}else{if(this.currentContainer!=this.containers[H]){B=10000;
G=null;
for(var F=this.positionAbs[this.containers[H].floating?"left":"top"],E=this.items.length-1;
E>=0;
E--){if(A.ui.contains(this.containers[H].element[0],this.items[E].item[0])){var D=this.items[E][this.containers[H].floating?"left":"top"];
if(Math.abs(D-F)<B){B=Math.abs(D-F);
G=this.items[E]
}}}if(G||this.options.dropOnEmpty){this.currentContainer=this.containers[H];
G?this._rearrange(C,G,null,true):this._rearrange(C,null,this.containers[H].element,true);
this._trigger("change",C,this._uiHash());
this.containers[H]._trigger("change",C,this._uiHash(this));
this.options.placeholder.update(this.currentContainer,this.placeholder);
this.containers[H]._trigger("over",C,this._uiHash(this));
this.containers[H].containerCache.over=1
}}}}},_createHelper:function(C){var B=this.options;
C=A.isFunction(B.helper)?A(B.helper.apply(this.element[0],[C,this.currentItem])):B.helper=="clone"?this.currentItem.clone():this.currentItem;
C.parents("body").length||A(B.appendTo!="parent"?B.appendTo:this.currentItem[0].parentNode)[0].appendChild(C[0]);
if(C[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(C[0].style.width==""||B.forceHelperSize){C.width(this.currentItem.width())
}if(C[0].style.height==""||B.forceHelperSize){C.height(this.currentItem.height())
}return C
},_adjustOffsetFromHelper:function(B){if(typeof B=="string"){B=B.split(" ")
}if(A.isArray(B)){B={left:+B[0],top:+B[1]||0}
}if("left" in B){this.offset.click.left=B.left+this.margins.left
}if("right" in B){this.offset.click.left=this.helperProportions.width-B.right+this.margins.left
}if("top" in B){this.offset.click.top=B.top+this.margins.top
}if("bottom" in B){this.offset.click.top=this.helperProportions.height-B.bottom+this.margins.top
}},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();
var B=this.offsetParent.offset();
if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&A.ui.contains(this.scrollParent[0],this.offsetParent[0])){B.left+=this.scrollParent.scrollLeft();
B.top+=this.scrollParent.scrollTop()
}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&A.browser.msie){B={top:0,left:0}
}return{top:B.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:B.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}
},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var B=this.currentItem.position();
return{top:B.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:B.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 C=this.options;
if(C.containment=="parent"){C.containment=this.helper[0].parentNode
}if(C.containment=="document"||C.containment=="window"){this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,A(C.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(A(C.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]
}if(!/^(document|window|parent)$/.test(C.containment)){var B=A(C.containment)[0];
C=A(C.containment).offset();
var D=A(B).css("overflow")!="hidden";
this.containment=[C.left+(parseInt(A(B).css("borderLeftWidth"),10)||0)+(parseInt(A(B).css("paddingLeft"),10)||0)-this.margins.left,C.top+(parseInt(A(B).css("borderTopWidth"),10)||0)+(parseInt(A(B).css("paddingTop"),10)||0)-this.margins.top,C.left+(D?Math.max(B.scrollWidth,B.offsetWidth):B.offsetWidth)-(parseInt(A(B).css("borderLeftWidth"),10)||0)-(parseInt(A(B).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,C.top+(D?Math.max(B.scrollHeight,B.offsetHeight):B.offsetHeight)-(parseInt(A(B).css("borderTopWidth"),10)||0)-(parseInt(A(B).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]
}},_convertPositionTo:function(C,B){if(!B){B=this.position
}C=C=="absolute"?1:-1;
var E=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&A.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,D=/(html|body)/i.test(E[0].tagName);
return{top:B.top+this.offset.relative.top*C+this.offset.parent.top*C-(A.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():D?0:E.scrollTop())*C),left:B.left+this.offset.relative.left*C+this.offset.parent.left*C-(A.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():D?0:E.scrollLeft())*C)}
},_generatePosition:function(C){var B=this.options,G=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&A.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,F=/(html|body)/i.test(G[0].tagName);
if(this.cssPosition=="relative"&&!(this.scrollParent[0]!=document&&this.scrollParent[0]!=this.offsetParent[0])){this.offset.relative=this._getRelativeOffset()
}var E=C.pageX,D=C.pageY;
if(this.originalPosition){if(this.containment){if(C.pageX-this.offset.click.left<this.containment[0]){E=this.containment[0]+this.offset.click.left
}if(C.pageY-this.offset.click.top<this.containment[1]){D=this.containment[1]+this.offset.click.top
}if(C.pageX-this.offset.click.left>this.containment[2]){E=this.containment[2]+this.offset.click.left
}if(C.pageY-this.offset.click.top>this.containment[3]){D=this.containment[3]+this.offset.click.top
}}if(B.grid){D=this.originalPageY+Math.round((D-this.originalPageY)/B.grid[1])*B.grid[1];
D=this.containment?!(D-this.offset.click.top<this.containment[1]||D-this.offset.click.top>this.containment[3])?D:!(D-this.offset.click.top<this.containment[1])?D-B.grid[1]:D+B.grid[1]:D;
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:D-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(A.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():F?0:G.scrollTop()),left:E-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(A.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():F?0:G.scrollLeft())}
},_rearrange:function(C,B,G,F){G?G[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 E=this,D=this.counter;
window.setTimeout(function(){D==E.counter&&E.refreshPositions(!F)
},0)
},_clear:function(C,B){this.reverting=false;
var E=[];
!this._noFinalSort&&this.currentItem[0].parentNode&&this.placeholder.before(this.currentItem);
this._noFinalSort=null;
if(this.helper[0]==this.currentItem[0]){for(var D in this._storedCSS){if(this._storedCSS[D]=="auto"||this._storedCSS[D]=="static"){this._storedCSS[D]=""
}}this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")
}else{this.currentItem.show()
}this.fromOutside&&!B&&E.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){E.push(function(F){this._trigger("update",F,this._uiHash())
})
}if(!A.ui.contains(this.element[0],this.currentItem[0])){B||E.push(function(F){this._trigger("remove",F,this._uiHash())
});
for(D=this.containers.length-1;
D>=0;
D--){if(A.ui.contains(this.containers[D].element[0],this.currentItem[0])&&!B){E.push(function(F){return function(G){F._trigger("receive",G,this._uiHash(this))
}
}.call(this,this.containers[D]));
E.push(function(F){return function(G){F._trigger("update",G,this._uiHash(this))
}
}.call(this,this.containers[D]))
}}}for(D=this.containers.length-1;
D>=0;
D--){B||E.push(function(F){return function(G){F._trigger("deactivate",G,this._uiHash(this))
}
}.call(this,this.containers[D]));
if(this.containers[D].containerCache.over){E.push(function(F){return function(G){F._trigger("out",G,this._uiHash(this))
}
}.call(this,this.containers[D]));
this.containers[D].containerCache.over=0
}}this._storedCursor&&A("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",C,this._uiHash());
for(D=0;
D<E.length;
D++){E[D].call(this,C)
}this._trigger("stop",C,this._uiHash())
}return false
}B||this._trigger("beforeStop",C,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(D=0;
D<E.length;
D++){E[D].call(this,C)
}this._trigger("stop",C,this._uiHash())
}this.fromOutside=false;
return true
},_trigger:function(){A.Widget.prototype._trigger.apply(this,arguments)===false&&this.cancel()
},_uiHash:function(C){var B=C||this;
return{helper:B.helper,placeholder:B.placeholder||A([]),position:B.position,originalPosition:B.originalPosition,offset:B.positionAbs,item:B.currentItem,sender:C?C.element:null}
}});
A.extend(A.ui.sortable,{version:"1.8.11"})
})(jQuery);
(function(A){A.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 C=this,B=C.options;
C.running=0;
C.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix");
C.headers=C.element.find(B.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){B.disabled||A(this).addClass("ui-state-hover")
}).bind("mouseleave.accordion",function(){B.disabled||A(this).removeClass("ui-state-hover")
}).bind("focus.accordion",function(){B.disabled||A(this).addClass("ui-state-focus")
}).bind("blur.accordion",function(){B.disabled||A(this).removeClass("ui-state-focus")
});
C.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");
if(B.navigation){var E=C.element.find("a").filter(B.navigationFilter).eq(0);
if(E.length){var D=E.closest(".ui-accordion-header");
C.active=D.length?D:E.closest(".ui-accordion-content").prev()
}}C.active=C._findActive(C.active||B.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");
C.active.next().addClass("ui-accordion-content-active");
C._createIcons();
C.resize();
C.element.attr("role","tablist");
C.headers.attr("role","tab").bind("keydown.accordion",function(F){return C._keydown(F)
}).next().attr("role","tabpanel");
C.headers.not(C.active||"").attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide();
C.active.length?C.active.attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}):C.headers.eq(0).attr("tabIndex",0);
A.browser.safari||C.headers.find("a").attr("tabIndex",-1);
B.event&&C.headers.bind(B.event.split(" ").join(".accordion ")+".accordion",function(F){C._clickHandler.call(C,F,this);
F.preventDefault()
})
},_createIcons:function(){var B=this.options;
if(B.icons){A("<span></span>").addClass("ui-icon "+B.icons.header).prependTo(this.headers);
this.active.children(".ui-icon").toggleClass(B.icons.header).toggleClass(B.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 C=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(C.autoHeight||C.fillHeight){B.css("height","")
}return A.Widget.prototype.destroy.call(this)
},_setOption:function(C,B){A.Widget.prototype._setOption.apply(this,arguments);
C=="active"&&this.activate(B);
if(C=="icons"){this._destroyIcons();
B&&this._createIcons()
}if(C=="disabled"){this.headers.add(this.headers.next())[B?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")
}},_keydown:function(C){if(!(this.options.disabled||C.altKey||C.ctrlKey)){var B=A.ui.keyCode,F=this.headers.length,D=this.headers.index(C.target),E=false;
switch(C.keyCode){case B.RIGHT:case B.DOWN:E=this.headers[(D+1)%F];
break;
case B.LEFT:case B.UP:E=this.headers[(D-1+F)%F];
break;
case B.SPACE:case B.ENTER:this._clickHandler({target:C.target},C.target);
C.preventDefault()
}if(E){A(C.target).attr("tabIndex",-1);
A(E).attr("tabIndex",0);
E.focus();
return false
}return true
}},resize:function(){var C=this.options,B;
if(C.fillSpace){if(A.browser.msie){var D=this.element.parent().css("overflow");
this.element.parent().css("overflow","hidden")
}B=this.element.parent().height();
A.browser.msie&&this.element.parent().css("overflow",D);
this.headers.each(function(){B-=A(this).outerHeight(true)
});
this.headers.next().each(function(){A(this).height(Math.max(0,B-A(this).innerHeight()+A(this).height()))
}).css("overflow","auto")
}else{if(C.autoHeight){B=0;
this.headers.next().each(function(){B=Math.max(B,A(this).height("").height())
}).height(B)
}}return this
},activate:function(B){this.options.active=B;
B=this._findActive(B)[0];
this._clickHandler({target:B},B);
return this
},_findActive:function(B){return B?typeof B==="number"?this.headers.filter(":eq("+B+")"):this.headers.not(this.headers.not(B)):B===false?A([]):this.headers.filter(":eq(0)")
},_clickHandler:function(C,B){var I=this.options;
if(!I.disabled){if(C.target){C=A(C.currentTarget||B);
B=C[0]===this.active[0];
I.active=I.collapsible&&B?false:this.headers.index(C);
if(!(this.running||!I.collapsible&&B)){var E=this.active;
D=C.next();
F=this.active.next();
H={options:I,newHeader:B&&I.collapsible?A([]):C,oldHeader:this.active,newContent:B&&I.collapsible?A([]):D,oldContent:F};
var G=this.headers.index(this.active[0])>this.headers.index(C[0]);
this.active=B?A([]):C;
this._toggle(D,F,H,B,G);
E.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(I.icons.headerSelected).addClass(I.icons.header);
if(!B){C.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(I.icons.header).addClass(I.icons.headerSelected);
C.next().addClass("ui-accordion-content-active")
}}}else{if(I.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(I.icons.headerSelected).addClass(I.icons.header);
this.active.next().addClass("ui-accordion-content-active");
var F=this.active.next(),H={options:I,newHeader:A([]),oldHeader:I.active,newContent:A([]),oldContent:F},D=this.active=A([]);
this._toggle(D,F,H)
}}}},_toggle:function(K,J,I,E,G){var F=this,H=F.options;
F.toShow=K;
F.toHide=J;
F.data=I;
var C=function(){if(F){return F._completed.apply(F,arguments)
}};
F._trigger("changestart",null,F.data);
F.running=J.size()===0?K.size():J.size();
if(H.animated){I={};
I=H.collapsible&&E?{toShow:A([]),toHide:J,complete:C,down:G,autoHeight:H.autoHeight||H.fillSpace}:{toShow:K,toHide:J,complete:C,down:G,autoHeight:H.autoHeight||H.fillSpace};
if(!H.proxied){H.proxied=H.animated
}if(!H.proxiedDuration){H.proxiedDuration=H.duration
}H.animated=A.isFunction(H.proxied)?H.proxied(I):H.proxied;
H.duration=A.isFunction(H.proxiedDuration)?H.proxiedDuration(I):H.proxiedDuration;
E=A.ui.accordion.animations;
var D=H.duration,B=H.animated;
if(B&&!E[B]&&!A.easing[B]){B="slide"
}E[B]||(E[B]=function(L){this.slide(L,{easing:B,duration:D||700})
});
E[B](I)
}else{if(H.collapsible&&E){K.toggle()
}else{J.hide();
K.show()
}C(true)
}J.prev().attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).blur();
K.prev().attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()
},_completed:function(B){this.running=B?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)
}}});
A.extend(A.ui.accordion,{version:"1.8.11",animations:{slide:function(C,B){C=A.extend({easing:"swing",duration:300},C,B);
if(C.toHide.size()){if(C.toShow.size()){var H=C.toShow.css("overflow"),D=0,F={},E={},G;
B=C.toShow;
G=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));
A.each(["height","paddingTop","paddingBottom"],function(I,J){E[J]="hide";
I=(""+A.css(C.toShow[0],J)).match(/^([\d+-.]+)(.*)$/);
F[J]={value:I[1],unit:I[2]||"px"}
});
C.toShow.css({height:0,overflow:"hidden"}).show();
C.toHide.filter(":hidden").each(C.complete).end().filter(":visible").animate(E,{step:function(I,J){if(J.prop=="height"){D=J.end-J.start===0?0:(J.now-J.start)/(J.end-J.start)
}C.toShow[0].style[J.prop]=D*F[J.prop].value+F[J.prop].unit
},duration:C.duration,easing:C.easing,complete:function(){C.autoHeight||C.toShow.css("height","");
C.toShow.css({width:G,overflow:H});
C.complete()
}})
}else{C.toHide.animate({height:"hide",paddingTop:"hide",paddingBottom:"hide"},C)
}}else{C.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},C)
}},bounceslide:function(B){this.slide(B,{easing:B.down?"easeOutBounce":"swing",duration:B.down?1000:200})
}}})
})(jQuery);
(function(B){var A=0;
B.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 D=this,C=this.element[0].ownerDocument,E;
this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(G){if(!(D.options.disabled||D.element.attr("readonly"))){E=false;
var F=B.ui.keyCode;
switch(G.keyCode){case F.PAGE_UP:D._move("previousPage",G);
break;
case F.PAGE_DOWN:D._move("nextPage",G);
break;
case F.UP:D._move("previous",G);
G.preventDefault();
break;
case F.DOWN:D._move("next",G);
G.preventDefault();
break;
case F.ENTER:case F.NUMPAD_ENTER:if(D.menu.active){E=true;
G.preventDefault()
}case F.TAB:if(!D.menu.active){return 
}D.menu.select(G);
break;
case F.ESCAPE:D.element.val(D.term);
D.close(G);
break;
default:clearTimeout(D.searching);
D.searching=setTimeout(function(){if(D.term!=D.element.val()){D.selectedItem=null;
D.search(null,G)
}},D.options.delay);
break
}}}).bind("keypress.autocomplete",function(F){if(E){E=false;
F.preventDefault()
}}).bind("focus.autocomplete",function(){if(!D.options.disabled){D.selectedItem=null;
D.previous=D.element.val()
}}).bind("blur.autocomplete",function(F){if(!D.options.disabled){clearTimeout(D.searching);
D.closing=setTimeout(function(){D.close(F);
D._change(F)
},150)
}});
this._initSource();
this.response=function(){return D._response.apply(D,arguments)
};
this.menu=B("<ul></ul>").addClass("ui-autocomplete").appendTo(B(this.options.appendTo||"body",C)[0]).mousedown(function(G){var F=D.menu.element[0];
B(G.target).closest(".ui-menu-item").length||setTimeout(function(){B(document).one("mousedown",function(H){H.target!==D.element[0]&&H.target!==F&&!B.ui.contains(F,H.target)&&D.close()
})
},1);
setTimeout(function(){clearTimeout(D.closing)
},13)
}).menu({focus:function(G,F){F=F.item.data("item.autocomplete");
false!==D._trigger("focus",G,{item:F})&&/^key/.test(G.originalEvent.type)&&D.element.val(F.value)
},selected:function(I,H){var G=H.item.data("item.autocomplete"),F=D.previous;
if(D.element[0]!==C.activeElement){D.element.focus();
D.previous=F;
setTimeout(function(){D.previous=F;
D.selectedItem=G
},1)
}false!==D._trigger("select",I,{item:G})&&D.element.val(G.value);
D.term=D.element.val();
D.close(I);
D.selectedItem=G
},blur:function(){D.menu.element.is(":visible")&&D.element.val()!==D.term&&D.element.val(D.term)
}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu");
B.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();
B.Widget.prototype.destroy.call(this)
},_setOption:function(D,C){B.Widget.prototype._setOption.apply(this,arguments);
D==="source"&&this._initSource();
if(D==="appendTo"){this.menu.element.appendTo(B(C||"body",this.element[0].ownerDocument)[0])
}D==="disabled"&&C&&this.xhr&&this.xhr.abort()
},_initSource:function(){var D=this,C,E;
if(B.isArray(this.options.source)){C=this.options.source;
this.source=function(G,F){F(B.ui.autocomplete.filter(C,G.term))
}
}else{if(typeof this.options.source==="string"){E=this.options.source;
this.source=function(G,F){D.xhr&&D.xhr.abort();
D.xhr=B.ajax({url:E,data:G,dataType:"json",autocompleteRequest:++A,success:function(H){this.autocompleteRequest===A&&F(H)
},error:function(){this.autocompleteRequest===A&&F([])
}})
}
}else{this.source=this.options.source
}}},search:function(D,C){D=D!=null?D:this.element.val();
this.term=this.element.val();
if(D.length<this.options.minLength){return this.close(C)
}clearTimeout(this.closing);
if(this._trigger("search",C)!==false){return this._search(D)
}},_search:function(C){this.pending++;
this.element.addClass("ui-autocomplete-loading");
this.source({term:C},this.response)
},_response:function(C){if(!this.options.disabled&&C&&C.length){C=this._normalize(C);
this._suggest(C);
this._trigger("open")
}else{this.close()
}this.pending--;
this.pending||this.element.removeClass("ui-autocomplete-loading")
},close:function(C){clearTimeout(this.closing);
if(this.menu.element.is(":visible")){this.menu.element.hide();
this.menu.deactivate();
this._trigger("close",C)
}},_change:function(C){this.previous!==this.element.val()&&this._trigger("change",C,{item:this.selectedItem})
},_normalize:function(C){if(C.length&&C[0].label&&C[0].value){return C
}return B.map(C,function(D){if(typeof D==="string"){return{label:D,value:D}
}return B.extend({label:D.label||D.value,value:D.value||D.label},D)
})
},_suggest:function(D){var C=this.menu.element.empty().zIndex(this.element.zIndex()+1);
this._renderMenu(C,D);
this.menu.deactivate();
this.menu.refresh();
C.show();
this._resizeMenu();
C.position(B.extend({of:this.element},this.options.position));
this.options.autoFocus&&this.menu.next(new B.Event("mouseover"))
},_resizeMenu:function(){var C=this.menu.element;
C.outerWidth(Math.max(C.width("").outerWidth(),this.element.outerWidth()))
},_renderMenu:function(D,C){var E=this;
B.each(C,function(G,F){E._renderItem(D,F)
})
},_renderItem:function(D,C){return B("<li></li>").data("item.autocomplete",C).append(B("<a></a>").text(C.label)).appendTo(D)
},_move:function(D,C){if(this.menu.element.is(":visible")){if(this.menu.first()&&/^previous/.test(D)||this.menu.last()&&/^next/.test(D)){this.element.val(this.term);
this.menu.deactivate()
}else{this.menu[D](C)
}}else{this.search(null,C)
}},widget:function(){return this.menu.element
}});
B.extend(B.ui.autocomplete,{escapeRegex:function(C){return C.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")
},filter:function(D,C){var E=new RegExp(B.ui.autocomplete.escapeRegex(C),"i");
return B.grep(D,function(F){return E.test(F.label||F.value||F)
})
}})
})(jQuery);
(function(A){A.widget("ui.menu",{_create:function(){var B=this;
this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(C){if(A(C.target).closest(".ui-menu-item a").length){C.preventDefault();
B.select(C)
}});
this.refresh()
},refresh:function(){var B=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(C){B.activate(C,A(this).parent())
}).mouseleave(function(){B.deactivate()
})
},activate:function(E,C){this.deactivate();
if(this.hasScroll()){var B=C.offset().top-this.element.offset().top,D=this.element.attr("scrollTop"),F=this.element.height();
if(B<0){this.element.attr("scrollTop",D+B)
}else{B>=F&&this.element.attr("scrollTop",D+B-F+C.height())
}}this.active=C.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end();
this._trigger("focus",E,{item:C})
},deactivate:function(){if(this.active){this.active.children("a").removeClass("ui-state-hover").removeAttr("id");
this._trigger("blur");
this.active=null
}},next:function(B){this.move("next",".ui-menu-item:first",B)
},previous:function(B){this.move("prev",".ui-menu-item:last",B)
},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(D,C,B){if(this.active){D=this.active[D+"All"](".ui-menu-item").eq(0);
D.length?this.activate(B,D):this.activate(B,this.element.children(C))
}else{this.activate(B,this.element.children(C))
}},nextPage:function(E){if(this.hasScroll()){if(!this.active||this.last()){this.activate(E,this.element.children(".ui-menu-item:first"))
}else{var C=this.active.offset().top,B=this.element.height(),D=this.element.children(".ui-menu-item").filter(function(){var F=A(this).offset().top-C-B+A(this).height();
return F<10&&F>-10
});
D.length||(D=this.element.children(".ui-menu-item:last"));
this.activate(E,D)
}}else{this.activate(E,this.element.children(".ui-menu-item").filter(!this.active||this.last()?":first":":last"))
}},previousPage:function(D){if(this.hasScroll()){if(!this.active||this.first()){this.activate(D,this.element.children(".ui-menu-item:last"))
}else{var C=this.active.offset().top,B=this.element.height();
result=this.element.children(".ui-menu-item").filter(function(){var E=A(this).offset().top-C+B-A(this).height();
return E<10&&E>-10
});
result.length||(result=this.element.children(".ui-menu-item:first"));
this.activate(D,result)
}}else{this.activate(D,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(B){this._trigger("selected",B,{item:this.active})
}})
})(jQuery);
(function(A){var D,B=function(E){A(":ui-button",E.target.form).each(function(){var F=A(this).data("button");
setTimeout(function(){F.refresh()
},1)
})
},C=function(E){var H=E.name,G=E.form,F=A([]);
if(H){F=G?A(G).find("[name='"+H+"']"):A("[name='"+H+"']",E.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",B);
if(typeof this.options.disabled!=="boolean"){this.options.disabled=this.element.attr("disabled")
}this._determineButtonType();
this.hasTitle=!!this.buttonElement.attr("title");
var E=this,H=this.options,G=this.type==="checkbox"||this.type==="radio",F="ui-state-hover"+(!G?" ui-state-active":"");
if(H.label===null){H.label=this.buttonElement.html()
}if(this.element.is(":disabled")){H.disabled=true
}this.buttonElement.addClass("ui-button ui-widget ui-state-default ui-corner-all").attr("role","button").bind("mouseenter.button",function(){if(!H.disabled){A(this).addClass("ui-state-hover");
this===D&&A(this).addClass("ui-state-active")
}}).bind("mouseleave.button",function(){H.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")
});
G&&this.element.bind("change.button",function(){E.refresh()
});
if(this.type==="checkbox"){this.buttonElement.bind("click.button",function(){if(H.disabled){return false
}A(this).toggleClass("ui-state-active");
E.buttonElement.attr("aria-pressed",E.element[0].checked)
})
}else{if(this.type==="radio"){this.buttonElement.bind("click.button",function(){if(H.disabled){return false
}A(this).addClass("ui-state-active");
E.buttonElement.attr("aria-pressed",true);
var I=E.element[0];
C(I).not(I).map(function(){return A(this).button("widget")[0]
}).removeClass("ui-state-active").attr("aria-pressed",false)
})
}else{this.buttonElement.bind("mousedown.button",function(){if(H.disabled){return false
}A(this).addClass("ui-state-active");
D=this;
A(document).one("mouseup",function(){D=null
})
}).bind("mouseup.button",function(){if(H.disabled){return false
}A(this).removeClass("ui-state-active")
}).bind("keydown.button",function(I){if(H.disabled){return false
}if(I.keyCode==A.ui.keyCode.SPACE||I.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(I){I.keyCode===A.ui.keyCode.SPACE&&A(this).click()
})
}}this._setOption("disabled",H.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 E=this.element.parents().filter(":last"),F="label[for="+this.element.attr("id")+"]";
this.buttonElement=E.find(F);
if(!this.buttonElement.length){E=E.length?E.siblings():this.element.siblings();
this.buttonElement=E.filter(F);
if(!this.buttonElement.length){this.buttonElement=E.find(F)
}}this.element.addClass("ui-helper-hidden-accessible");
(E=this.element.is(":checked"))&&this.buttonElement.addClass("ui-state-active");
this.buttonElement.attr("aria-pressed",E)
}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(E,F){A.Widget.prototype._setOption.apply(this,arguments);
if(E==="disabled"){F?this.element.attr("disabled",true):this.element.removeAttr("disabled")
}this._resetButton()
},refresh:function(){var E=this.element.is(":disabled");
E!==this.options.disabled&&this._setOption("disabled",E);
if(this.type==="radio"){C(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 E=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"),I=A("<span></span>").addClass("ui-button-text").html(this.options.label).appendTo(E.empty()).text(),H=this.options.icons,F=H.primary&&H.secondary,G=[];
if(H.primary||H.secondary){if(this.options.text){G.push("ui-button-text-icon"+(F?"s":H.primary?"-primary":"-secondary"))
}H.primary&&E.prepend("<span class='ui-button-icon-primary ui-icon "+H.primary+"'></span>");
H.secondary&&E.append("<span class='ui-button-icon-secondary ui-icon "+H.secondary+"'></span>");
if(!this.options.text){G.push(F?"ui-button-icons-only":"ui-button-icon-only");
this.hasTitle||E.attr("title",I)
}}else{G.push("ui-button-text-only")
}E.addClass(G.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(E,F){E==="disabled"&&this.buttons.button("option",E,F);
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);
(function(D,C){var B={buttons:true,height:true,maxHeight:true,maxWidth:true,minHeight:true,minWidth:true,width:true},A={maxHeight:true,maxWidth:true,minHeight:true,minWidth:true};
D.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(F){var E=D(this).css(F).offset().top;
E<0&&D(this).css("top",F.top-E)
}},resizable:true,show:null,stack:true,title:"",width:300,zIndex:1000},_create:function(){this.originalTitle=this.element.attr("title");
if(typeof this.originalTitle!=="string"){this.originalTitle=""
}this.options.title=this.options.title||this.originalTitle;
var F=this,E=F.options,K=E.title||"&#160;",J=D.ui.dialog.getTitleId(F.element),H=(F.uiDialog=D("<div></div>")).appendTo(document.body).hide().addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+E.dialogClass).css({zIndex:E.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(L){if(E.closeOnEscape&&L.keyCode&&L.keyCode===D.ui.keyCode.ESCAPE){F.close(L);
L.preventDefault()
}}).attr({role:"dialog","aria-labelledby":J}).mousedown(function(L){F.moveToTop(false,L)
});
F.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(H);
var I=(F.uiDialogTitlebar=D("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(H),G=D('<a href="#"></a>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){G.addClass("ui-state-hover")
},function(){G.removeClass("ui-state-hover")
}).focus(function(){G.addClass("ui-state-focus")
}).blur(function(){G.removeClass("ui-state-focus")
}).click(function(L){F.close(L);
return false
}).appendTo(I);
(F.uiDialogTitlebarCloseText=D("<span></span>")).addClass("ui-icon ui-icon-closethick").text(E.closeText).appendTo(G);
D("<span></span>").addClass("ui-dialog-title").attr("id",J).html(K).prependTo(I);
if(D.isFunction(E.beforeclose)&&!D.isFunction(E.beforeClose)){E.beforeClose=E.beforeclose
}I.find("*").add(I).disableSelection();
E.draggable&&D.fn.draggable&&F._makeDraggable();
E.resizable&&D.fn.resizable&&F._makeResizable();
F._createButtons(E.buttons);
F._isOpen=false;
D.fn.bgiframe&&H.bgiframe()
},_init:function(){this.options.autoOpen&&this.open()
},destroy:function(){var E=this;
E.overlay&&E.overlay.destroy();
E.uiDialog.hide();
E.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");
E.uiDialog.remove();
E.originalTitle&&E.element.attr("title",E.originalTitle);
return E
},widget:function(){return this.uiDialog
},close:function(F){var E=this,H,G;
if(false!==E._trigger("beforeClose",F)){E.overlay&&E.overlay.destroy();
E.uiDialog.unbind("keypress.ui-dialog");
E._isOpen=false;
if(E.options.hide){E.uiDialog.hide(E.options.hide,function(){E._trigger("close",F)
})
}else{E.uiDialog.hide();
E._trigger("close",F)
}D.ui.dialog.overlay.resize();
if(E.options.modal){H=0;
D(".ui-dialog").each(function(){if(this!==E.uiDialog[0]){G=D(this).css("z-index");
isNaN(G)||(H=Math.max(H,G))
}});
D.ui.dialog.maxZ=H
}return E
}},isOpen:function(){return this._isOpen
},moveToTop:function(F,E){var H=this,G=H.options;
if(G.modal&&!F||!G.stack&&!G.modal){return H._trigger("focus",E)
}if(G.zIndex>D.ui.dialog.maxZ){D.ui.dialog.maxZ=G.zIndex
}if(H.overlay){D.ui.dialog.maxZ+=1;
H.overlay.$el.css("z-index",D.ui.dialog.overlay.maxZ=D.ui.dialog.maxZ)
}F={scrollTop:H.element.attr("scrollTop"),scrollLeft:H.element.attr("scrollLeft")};
D.ui.dialog.maxZ+=1;
H.uiDialog.css("z-index",D.ui.dialog.maxZ);
H.element.attr(F);
H._trigger("focus",E);
return H
},open:function(){if(!this._isOpen){var F=this,E=F.options,G=F.uiDialog;
F.overlay=E.modal?new D.ui.dialog.overlay(F):null;
F._size();
F._position(E.position);
G.show(E.show);
F.moveToTop(true);
E.modal&&G.bind("keypress.ui-dialog",function(J){if(J.keyCode===D.ui.keyCode.TAB){var H=D(":tabbable",this),I=H.filter(":first");
H=H.filter(":last");
if(J.target===H[0]&&!J.shiftKey){I.focus(1);
return false
}else{if(J.target===I[0]&&J.shiftKey){H.focus(1);
return false
}}}});
D(F.element.find(":tabbable").get().concat(G.find(".ui-dialog-buttonpane :tabbable").get().concat(G.get()))).eq(0).focus();
F._isOpen=true;
F._trigger("open");
return F
}},_createButtons:function(F){var E=this,I=false,H=D("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),G=D("<div></div>").addClass("ui-dialog-buttonset").appendTo(H);
E.uiDialog.find(".ui-dialog-buttonpane").remove();
typeof F==="object"&&F!==null&&D.each(F,function(){return !(I=true)
});
if(I){D.each(F,function(K,J){J=D.isFunction(J)?{click:J,text:K}:J;
K=D('<button type="button"></button>').attr(J,true).unbind("click").click(function(){J.click.apply(E.element[0],arguments)
}).appendTo(G);
D.fn.button&&K.button()
});
H.appendTo(E.uiDialog)
}},_makeDraggable:function(){function F(J){return{position:J.position,offset:J.offset}
}var E=this,I=E.options,H=D(document),G;
E.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(K,J){G=I.height==="auto"?"auto":D(this).height();
D(this).height(D(this).height()).addClass("ui-dialog-dragging");
E._trigger("dragStart",K,F(J))
},drag:function(K,J){E._trigger("drag",K,F(J))
},stop:function(K,J){I.position=[J.position.left-H.scrollLeft(),J.position.top-H.scrollTop()];
D(this).removeClass("ui-dialog-dragging").height(G);
E._trigger("dragStop",K,F(J));
D.ui.dialog.overlay.resize()
}})
},_makeResizable:function(F){function E(J){return{originalPosition:J.originalPosition,originalSize:J.originalSize,position:J.position,size:J.size}
}F=F===C?this.options.resizable:F;
var I=this,H=I.options,G=I.uiDialog.css("position");
F=typeof F==="string"?F:"n,e,s,w,se,sw,ne,nw";
I.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:I.element,maxWidth:H.maxWidth,maxHeight:H.maxHeight,minWidth:H.minWidth,minHeight:I._minHeight(),handles:F,start:function(K,J){D(this).addClass("ui-dialog-resizing");
I._trigger("resizeStart",K,E(J))
},resize:function(K,J){I._trigger("resize",K,E(J))
},stop:function(K,J){D(this).removeClass("ui-dialog-resizing");
H.height=D(this).height();
H.width=D(this).width();
I._trigger("resizeStop",K,E(J));
D.ui.dialog.overlay.resize()
}}).css("position",G).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")
},_minHeight:function(){var E=this.options;
return E.height==="auto"?E.minHeight:Math.min(E.minHeight,E.height)
},_position:function(F){var E=[],H=[0,0],G;
if(F){if(typeof F==="string"||typeof F==="object"&&"0" in F){E=F.split?F.split(" "):[F[0],F[1]];
if(E.length===1){E[1]=E[0]
}D.each(["left","top"],function(I,J){if(+E[I]===E[I]){H[I]=E[I];
E[I]=J
}});
F={my:E.join(" "),at:E.join(" "),offset:H.join(" ")}
}F=D.extend({},D.ui.dialog.prototype.options.position,F)
}else{F=D.ui.dialog.prototype.options.position
}(G=this.uiDialog.is(":visible"))||this.uiDialog.show();
this.uiDialog.css({top:0,left:0}).position(D.extend({of:window},F));
G||this.uiDialog.hide()
},_setOptions:function(F){var E=this,H={},G=false;
D.each(F,function(I,J){E._setOption(I,J);
if(I in B){G=true
}if(I in A){H[I]=J
}});
G&&this._size();
this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",H)
},_setOption:function(F,E){var I=this,H=I.uiDialog;
switch(F){case"beforeclose":F="beforeClose";
break;
case"buttons":I._createButtons(E);
break;
case"closeText":I.uiDialogTitlebarCloseText.text(""+E);
break;
case"dialogClass":H.removeClass(I.options.dialogClass).addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+E);
break;
case"disabled":E?H.addClass("ui-dialog-disabled"):H.removeClass("ui-dialog-disabled");
break;
case"draggable":var G=H.is(":data(draggable)");
G&&!E&&H.draggable("destroy");
!G&&E&&I._makeDraggable();
break;
case"position":I._position(E);
break;
case"resizable":(G=H.is(":data(resizable)"))&&!E&&H.resizable("destroy");
G&&typeof E==="string"&&H.resizable("option","handles",E);
!G&&E!==false&&I._makeResizable(E);
break;
case"title":D(".ui-dialog-title",I.uiDialogTitlebar).html(""+(E||"&#160;"));
break
}D.Widget.prototype._setOption.apply(I,arguments)
},_size:function(){var F=this.options,E,H,G=this.uiDialog.is(":visible");
this.element.show().css({width:"auto",minHeight:0,height:0});
if(F.minWidth>F.width){F.width=F.minWidth
}E=this.uiDialog.css({height:"auto",width:F.width}).height();
H=Math.max(0,F.minHeight-E);
if(F.height==="auto"){if(D.support.minHeight){this.element.css({minHeight:H,height:"auto"})
}else{this.uiDialog.show();
F=this.element.css("height","auto").height();
G||this.uiDialog.hide();
this.element.height(Math.max(F,H))
}}else{this.element.height(Math.max(F.height-E,0))
}this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())
}});
D.extend(D.ui.dialog,{version:"1.8.11",uuid:0,maxZ:0,getTitleId:function(E){E=E.attr("id");
if(!E){this.uuid+=1;
E=this.uuid
}return"ui-dialog-title-"+E
},overlay:function(E){this.$el=D.ui.dialog.overlay.create(E)
}});
D.extend(D.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:D.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(E){return E+".dialog-overlay"
}).join(" "),create:function(F){if(this.instances.length===0){setTimeout(function(){D.ui.dialog.overlay.instances.length&&D(document).bind(D.ui.dialog.overlay.events,function(G){if(D(G.target).zIndex()<D.ui.dialog.overlay.maxZ){return false
}})
},1);
D(document).bind("keydown.dialog-overlay",function(G){if(F.options.closeOnEscape&&G.keyCode&&G.keyCode===D.ui.keyCode.ESCAPE){F.close(G);
G.preventDefault()
}});
D(window).bind("resize.dialog-overlay",D.ui.dialog.overlay.resize)
}var E=(this.oldInstances.pop()||D("<div></div>").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});
D.fn.bgiframe&&E.bgiframe();
this.instances.push(E);
return E
},destroy:function(F){var E=D.inArray(F,this.instances);
E!=-1&&this.oldInstances.push(this.instances.splice(E,1)[0]);
this.instances.length===0&&D([document,window]).unbind(".dialog-overlay");
F.remove();
var G=0;
D.each(this.instances,function(){G=Math.max(G,this.css("z-index"))
});
this.maxZ=G
},height:function(){var F,E;
if(D.browser.msie&&D.browser.version<7){F=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);
E=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);
return F<E?D(window).height()+"px":F+"px"
}else{return D(document).height()+"px"
}},width:function(){var F,E;
if(D.browser.msie&&D.browser.version<7){F=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth);
E=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);
return F<E?D(window).width()+"px":F+"px"
}else{return D(document).width()+"px"
}},resize:function(){var E=D([]);
D.each(D.ui.dialog.overlay.instances,function(){E=E.add(this)
});
E.css({width:0,height:0}).css({width:D.ui.dialog.overlay.width(),height:D.ui.dialog.overlay.height()})
}});
D.extend(D.ui.dialog.overlay.prototype,{destroy:function(){D.ui.dialog.overlay.destroy(this.$el)
}})
})(jQuery);
(function(A){A.widget("ui.slider",A.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,C=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");
C.disabled&&this.element.addClass("ui-slider-disabled ui-disabled");
this.range=A([]);
if(C.range){if(C.range===true){this.range=A("<div></div>");
if(!C.values){C.values=[this._valueMin(),this._valueMin()]
}if(C.values.length&&C.values.length!==2){C.values=[C.values[0],C.values[0]]
}}else{this.range=A("<div></div>")
}this.range.appendTo(this.element).addClass("ui-slider-range");
if(C.range==="min"||C.range==="max"){this.range.addClass("ui-slider-range-"+C.range)
}this.range.addClass("ui-widget-header")
}A(".ui-slider-handle",this.element).length===0&&A("<a href='#'></a>").appendTo(this.element).addClass("ui-slider-handle");
if(C.values&&C.values.length){for(;
A(".ui-slider-handle",this.element).length<C.values.length;
){A("<a href='#'></a>").appendTo(this.element).addClass("ui-slider-handle")
}}this.handles=A(".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(D){D.preventDefault()
}).hover(function(){C.disabled||A(this).addClass("ui-state-hover")
},function(){A(this).removeClass("ui-state-hover")
}).focus(function(){if(C.disabled){A(this).blur()
}else{A(".ui-slider .ui-state-focus").removeClass("ui-state-focus");
A(this).addClass("ui-state-focus")
}}).blur(function(){A(this).removeClass("ui-state-focus")
});
this.handles.each(function(D){A(this).data("index.ui-slider-handle",D)
});
this.handles.keydown(function(I){var H=true,G=A(this).data("index.ui-slider-handle"),E,F,D;
if(!B.options.disabled){switch(I.keyCode){case A.ui.keyCode.HOME:case A.ui.keyCode.END:case A.ui.keyCode.PAGE_UP:case A.ui.keyCode.PAGE_DOWN:case A.ui.keyCode.UP:case A.ui.keyCode.RIGHT:case A.ui.keyCode.DOWN:case A.ui.keyCode.LEFT:H=false;
if(!B._keySliding){B._keySliding=true;
A(this).addClass("ui-state-active");
E=B._start(I,G);
if(E===false){return 
}}break
}D=B.options.step;
E=B.options.values&&B.options.values.length?(F=B.values(G)):(F=B.value());
switch(I.keyCode){case A.ui.keyCode.HOME:F=B._valueMin();
break;
case A.ui.keyCode.END:F=B._valueMax();
break;
case A.ui.keyCode.PAGE_UP:F=B._trimAlignValue(E+(B._valueMax()-B._valueMin())/5);
break;
case A.ui.keyCode.PAGE_DOWN:F=B._trimAlignValue(E-(B._valueMax()-B._valueMin())/5);
break;
case A.ui.keyCode.UP:case A.ui.keyCode.RIGHT:if(E===B._valueMax()){return 
}F=B._trimAlignValue(E+D);
break;
case A.ui.keyCode.DOWN:case A.ui.keyCode.LEFT:if(E===B._valueMin()){return 
}F=B._trimAlignValue(E-D);
break
}B._slide(I,G,F);
return H
}}).keyup(function(E){var D=A(this).data("index.ui-slider-handle");
if(B._keySliding){B._keySliding=false;
B._stop(E,D);
B._change(E,D);
A(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 C=this.options,H,G,F,D,E;
if(C.disabled){return false
}this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};
this.elementOffset=this.element.offset();
H=this._normValueFromMouse({x:B.pageX,y:B.pageY});
G=this._valueMax()-this._valueMin()+1;
D=this;
this.handles.each(function(J){var I=Math.abs(H-D.values(J));
if(G>I){G=I;
F=A(this);
E=J
}});
if(C.range===true&&this.values(1)===C.min){E+=1;
F=A(this.handles[E])
}if(this._start(B,E)===false){return false
}this._mouseSliding=true;
D._handleIndex=E;
F.addClass("ui-state-active").focus();
C=F.offset();
this._clickOffset=!A(B.target).parents().andSelf().is(".ui-slider-handle")?{left:0,top:0}:{left:B.pageX-C.left-F.width()/2,top:B.pageY-C.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,E,H);
return this._animateOff=true
},_mouseStart:function(){return true
},_mouseDrag:function(B){var C=this._normValueFromMouse({x:B.pageX,y:B.pageY});
this._slide(B,this._handleIndex,C);
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 C;
if(this.orientation==="horizontal"){C=this.elementSize.width;
B=B.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)
}else{C=this.elementSize.height;
B=B.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)
}C=B/C;
if(C>1){C=1
}if(C<0){C=0
}if(this.orientation==="vertical"){C=1-C
}B=this._valueMax()-this._valueMin();
return this._trimAlignValue(this._valueMin()+C*B)
},_start:function(B,C){var D={handle:this.handles[C],value:this.value()};
if(this.options.values&&this.options.values.length){D.value=this.values(C);
D.values=this.values()
}return this._trigger("start",B,D)
},_slide:function(B,C,E){var D;
if(this.options.values&&this.options.values.length){D=this.values(C?0:1);
if(this.options.values.length===2&&this.options.range===true&&(C===0&&E>D||C===1&&E<D)){E=D
}if(E!==this.values(C)){D=this.values();
D[C]=E;
B=this._trigger("slide",B,{handle:this.handles[C],value:E,values:D});
this.values(C?0:1);
B!==false&&this.values(C,E,true)
}}else{if(E!==this.value()){B=this._trigger("slide",B,{handle:this.handles[C],value:E});
B!==false&&this.value(E)
}}},_stop:function(B,C){var D={handle:this.handles[C],value:this.value()};
if(this.options.values&&this.options.values.length){D.value=this.values(C);
D.values=this.values()
}this._trigger("stop",B,D)
},_change:function(B,C){if(!this._keySliding&&!this._mouseSliding){var D={handle:this.handles[C],value:this.value()};
if(this.options.values&&this.options.values.length){D.value=this.values(C);
D.values=this.values()
}this._trigger("change",B,D)
}},value:function(B){if(arguments.length){this.options.value=this._trimAlignValue(B);
this._refreshValue();
this._change(null,0)
}return this._value()
},values:function(B,C){var F,E,D;
if(arguments.length>1){this.options.values[B]=this._trimAlignValue(C);
this._refreshValue();
this._change(null,B)
}if(arguments.length){if(A.isArray(arguments[0])){F=this.options.values;
E=arguments[0];
for(D=0;
D<F.length;
D+=1){F[D]=this._trimAlignValue(E[D]);
this._change(null,D)
}this._refreshValue()
}else{return this.options.values&&this.options.values.length?this._values(B):this.value()
}}else{return this._values()
}},_setOption:function(B,C){var E,D=0;
if(A.isArray(this.options.values)){D=this.options.values.length
}A.Widget.prototype._setOption.apply(this,arguments);
switch(B){case"disabled":if(C){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(E=0;
E<D;
E+=1){this._change(null,E)
}this._animateOff=false;
break
}},_value:function(){var B=this.options.value;
return B=this._trimAlignValue(B)
},_values:function(B){var C,D;
if(arguments.length){C=this.options.values[B];
return C=this._trimAlignValue(C)
}else{C=this.options.values.slice();
for(D=0;
D<C.length;
D+=1){C[D]=this._trimAlignValue(C[D])
}return C
}},_trimAlignValue:function(B){if(B<=this._valueMin()){return this._valueMin()
}if(B>=this._valueMax()){return this._valueMax()
}var C=this.options.step>0?this.options.step:1,D=(B-this._valueMin())%C;
alignValue=B-D;
if(Math.abs(D)*2>=C){alignValue+=D>0?C:-C
}return parseFloat(alignValue.toFixed(5))
},_valueMin:function(){return this.options.min
},_valueMax:function(){return this.options.max
},_refreshValue:function(){var J=this.options.range,K=this.options,I=this,H=!this._animateOff?K.animate:false,G,E={},F,D,C,B;
if(this.options.values&&this.options.values.length){this.handles.each(function(L){G=(I.values(L)-I._valueMin())/(I._valueMax()-I._valueMin())*100;
E[I.orientation==="horizontal"?"left":"bottom"]=G+"%";
A(this).stop(1,1)[H?"animate":"css"](E,K.animate);
if(I.options.range===true){if(I.orientation==="horizontal"){if(L===0){I.range.stop(1,1)[H?"animate":"css"]({left:G+"%"},K.animate)
}if(L===1){I.range[H?"animate":"css"]({width:G-F+"%"},{queue:false,duration:K.animate})
}}else{if(L===0){I.range.stop(1,1)[H?"animate":"css"]({bottom:G+"%"},K.animate)
}if(L===1){I.range[H?"animate":"css"]({height:G-F+"%"},{queue:false,duration:K.animate})
}}}F=G
})
}else{D=this.value();
C=this._valueMin();
B=this._valueMax();
G=B!==C?(D-C)/(B-C)*100:0;
E[I.orientation==="horizontal"?"left":"bottom"]=G+"%";
this.handle.stop(1,1)[H?"animate":"css"](E,K.animate);
if(J==="min"&&this.orientation==="horizontal"){this.range.stop(1,1)[H?"animate":"css"]({width:G+"%"},K.animate)
}if(J==="max"&&this.orientation==="horizontal"){this.range[H?"animate":"css"]({width:100-G+"%"},{queue:false,duration:K.animate})
}if(J==="min"&&this.orientation==="vertical"){this.range.stop(1,1)[H?"animate":"css"]({height:G+"%"},K.animate)
}if(J==="max"&&this.orientation==="vertical"){this.range[H?"animate":"css"]({height:100-G+"%"},{queue:false,duration:K.animate})
}}}});
A.extend(A.ui.slider,{version:"1.8.11"})
})(jQuery);
(function(F,E){function D(){return ++C
}function B(){return ++A
}var C=0,A=0;
F.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(G,H){if(G=="selected"){this.options.collapsible&&H==this.options.selected||this.select(H)
}else{this.options[G]=H;
this._tabify()
}},_tabId:function(G){return G.title&&G.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+D()
},_sanitizeSelector:function(G){return G.replace(/:/g,"\\:")
},_cookie:function(){var G=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+B());
return F.cookie.apply(null,[G].concat(F.makeArray(arguments)))
},_ui:function(G,H){return{tab:G,panel:H,index:this.anchors.index(G)}
},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var G=F(this);
G.html(G.data("label.tabs")).removeData("label.tabs")
})
},_tabify:function(P){function N(S,T){S.css("display","");
!F.support.opacity&&T.opacity&&S[0].style.removeAttribute("filter")
}var Q=this,O=this.options,M=/^#.+/;
this.list=this.element.find("ol,ul").eq(0);
this.lis=F(" > li:has(a[href])",this.list);
this.anchors=this.lis.map(function(){return F("a",this)[0]
});
this.panels=F([]);
this.anchors.each(function(U,W){var T=F(W).attr("href"),S=T.split("#")[0],V;
if(S&&(S===location.toString().split("#")[0]||(V=F("base")[0])&&S===V.href)){T=W.hash;
W.href=T
}if(M.test(T)){Q.panels=Q.panels.add(Q.element.find(Q._sanitizeSelector(T)))
}else{if(T&&T!=="#"){F.data(W,"href.tabs",T);
F.data(W,"load.tabs",T.replace(/#.*$/,""));
T=Q._tabId(W);
W.href="#"+T;
W=Q.element.find("#"+T);
if(!W.length){W=F(O.panelTemplate).attr("id",T).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(Q.panels[U-1]||Q.list);
W.data("destroy.tabs",true)
}Q.panels=Q.panels.add(W)
}else{O.disabled.push(U)
}}});
if(P){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(O.selected===E){location.hash&&this.anchors.each(function(S,T){if(T.hash==location.hash){O.selected=S;
return false
}});
if(typeof O.selected!=="number"&&O.cookie){O.selected=parseInt(Q._cookie(),10)
}if(typeof O.selected!=="number"&&this.lis.filter(".ui-tabs-selected").length){O.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))
}O.selected=O.selected||(this.lis.length?0:-1)
}else{if(O.selected===null){O.selected=-1
}}O.selected=O.selected>=0&&this.anchors[O.selected]||O.selected<0?O.selected:0;
O.disabled=F.unique(O.disabled.concat(F.map(this.lis.filter(".ui-state-disabled"),function(S){return Q.lis.index(S)
}))).sort();
F.inArray(O.selected,O.disabled)!=-1&&O.disabled.splice(F.inArray(O.selected,O.disabled),1);
this.panels.addClass("ui-tabs-hide");
this.lis.removeClass("ui-tabs-selected ui-state-active");
if(O.selected>=0&&this.anchors.length){Q.element.find(Q._sanitizeSelector(Q.anchors[O.selected].hash)).removeClass("ui-tabs-hide");
this.lis.eq(O.selected).addClass("ui-tabs-selected ui-state-active");
Q.element.queue("tabs",function(){Q._trigger("show",null,Q._ui(Q.anchors[O.selected],Q.element.find(Q._sanitizeSelector(Q.anchors[O.selected].hash))[0]))
});
this.load(O.selected)
}F(window).bind("unload",function(){Q.lis.add(Q.anchors).unbind(".tabs");
Q.lis=Q.anchors=Q.panels=null
})
}else{O.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))
}this.element[O.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");
O.cookie&&this._cookie(O.selected,O.cookie);
P=0;
for(var L;
L=this.lis[P];
P++){F(L)[F.inArray(P,O.disabled)!=-1&&!F(L).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")
}O.cache===false&&this.anchors.removeData("cache.tabs");
this.lis.add(this.anchors).unbind(".tabs");
if(O.event!=="mouseover"){var K=function(S,T){T.is(":not(.ui-state-disabled)")&&T.addClass("ui-state-"+S)
},I=function(S,T){T.removeClass("ui-state-"+S)
};
this.lis.bind("mouseover.tabs",function(){K("hover",F(this))
});
this.lis.bind("mouseout.tabs",function(){I("hover",F(this))
});
this.anchors.bind("focus.tabs",function(){K("focus",F(this).closest("li"))
});
this.anchors.bind("blur.tabs",function(){I("focus",F(this).closest("li"))
})
}var J,H;
if(O.fx){if(F.isArray(O.fx)){J=O.fx[0];
H=O.fx[1]
}else{J=H=O.fx
}}var G=H?function(S,T){F(S).closest("li").addClass("ui-tabs-selected ui-state-active");
T.hide().removeClass("ui-tabs-hide").animate(H,H.duration||"normal",function(){N(T,H);
Q._trigger("show",null,Q._ui(S,T[0]))
})
}:function(S,T){F(S).closest("li").addClass("ui-tabs-selected ui-state-active");
T.removeClass("ui-tabs-hide");
Q._trigger("show",null,Q._ui(S,T[0]))
},R=J?function(S,T){T.animate(J,J.duration||"normal",function(){Q.lis.removeClass("ui-tabs-selected ui-state-active");
T.addClass("ui-tabs-hide");
N(T,J);
Q.element.dequeue("tabs")
})
}:function(S,T){Q.lis.removeClass("ui-tabs-selected ui-state-active");
T.addClass("ui-tabs-hide");
Q.element.dequeue("tabs")
};
this.anchors.bind(O.event+".tabs",function(){var U=this,V=F(U).closest("li"),T=Q.panels.filter(":not(.ui-tabs-hide)"),S=Q.element.find(Q._sanitizeSelector(U.hash));
if(V.hasClass("ui-tabs-selected")&&!O.collapsible||V.hasClass("ui-state-disabled")||V.hasClass("ui-state-processing")||Q.panels.filter(":animated").length||Q._trigger("select",null,Q._ui(this,S[0]))===false){this.blur();
return false
}O.selected=Q.anchors.index(this);
Q.abort();
if(O.collapsible){if(V.hasClass("ui-tabs-selected")){O.selected=-1;
O.cookie&&Q._cookie(O.selected,O.cookie);
Q.element.queue("tabs",function(){R(U,T)
}).dequeue("tabs");
this.blur();
return false
}else{if(!T.length){O.cookie&&Q._cookie(O.selected,O.cookie);
Q.element.queue("tabs",function(){G(U,S)
});
Q.load(Q.anchors.index(this));
this.blur();
return false
}}}O.cookie&&Q._cookie(O.selected,O.cookie);
if(S.length){T.length&&Q.element.queue("tabs",function(){R(U,T)
});
Q.element.queue("tabs",function(){G(U,S)
});
Q.load(Q.anchors.index(this))
}else{throw"jQuery UI Tabs: Mismatching fragment identifier."
}F.browser.msie&&this.blur()
});
this.anchors.bind("click.tabs",function(){return false
})
},_getIndex:function(G){if(typeof G=="string"){G=this.anchors.index(this.anchors.filter("[href$="+G+"]"))
}return G
},destroy:function(){var G=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 I=F.data(this,"href.tabs");
if(I){this.href=I
}var H=F(this).unbind(".tabs");
F.each(["href","load","cache"],function(K,J){H.removeData(J+".tabs")
})
});
this.lis.unbind(".tabs").add(this.panels).each(function(){F.data(this,"destroy.tabs")?F(this).remove():F(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")
});
G.cookie&&this._cookie(null,G.cookie);
return this
},add:function(G,K,H){if(H===E){H=this.anchors.length
}var L=this,J=this.options;
K=F(J.tabTemplate.replace(/#\{href\}/g,G).replace(/#\{label\}/g,K));
G=!G.indexOf("#")?G.replace("#",""):this._tabId(F("a",K)[0]);
K.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);
var I=L.element.find("#"+G);
I.length||(I=F(J.panelTemplate).attr("id",G).data("destroy.tabs",true));
I.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");
if(H>=this.lis.length){K.appendTo(this.list);
I.appendTo(this.list[0].parentNode)
}else{K.insertBefore(this.lis[H]);
I.insertBefore(this.panels[H])
}J.disabled=F.map(J.disabled,function(M){return M>=H?++M:M
});
this._tabify();
if(this.anchors.length==1){J.selected=0;
K.addClass("ui-tabs-selected ui-state-active");
I.removeClass("ui-tabs-hide");
this.element.queue("tabs",function(){L._trigger("show",null,L._ui(L.anchors[0],L.panels[0]))
});
this.load(0)
}this._trigger("add",null,this._ui(this.anchors[H],this.panels[H]));
return this
},remove:function(G){G=this._getIndex(G);
var I=this.options,H=this.lis.eq(G).remove(),J=this.panels.eq(G).remove();
if(H.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(G+(G+1<this.anchors.length?1:-1))
}I.disabled=F.map(F.grep(I.disabled,function(K){return K!=G
}),function(K){return K>=G?--K:K
});
this._tabify();
this._trigger("remove",null,this._ui(H.find("a")[0],J[0]));
return this
},enable:function(G){G=this._getIndex(G);
var H=this.options;
if(F.inArray(G,H.disabled)!=-1){this.lis.eq(G).removeClass("ui-state-disabled");
H.disabled=F.grep(H.disabled,function(I){return I!=G
});
this._trigger("enable",null,this._ui(this.anchors[G],this.panels[G]));
return this
}},disable:function(G){G=this._getIndex(G);
var H=this.options;
if(G!=H.selected){this.lis.eq(G).addClass("ui-state-disabled");
H.disabled.push(G);
H.disabled.sort();
this._trigger("disable",null,this._ui(this.anchors[G],this.panels[G]))
}return this
},select:function(G){G=this._getIndex(G);
if(G==-1){if(this.options.collapsible&&this.options.selected!=-1){G=this.options.selected
}else{return this
}}this.anchors.eq(G).trigger(this.options.event+".tabs");
return this
},load:function(G){G=this._getIndex(G);
var K=this,H=this.options,L=this.anchors.eq(G)[0],J=F.data(L,"load.tabs");
this.abort();
if(!J||this.element.queue("tabs").length!==0&&F.data(L,"cache.tabs")){this.element.dequeue("tabs")
}else{this.lis.eq(G).addClass("ui-state-processing");
if(H.spinner){var I=F("span",L);
I.data("label.tabs",I.html()).html(H.spinner)
}this.xhr=F.ajax(F.extend({},H.ajaxOptions,{url:J,success:function(N,O){K.element.find(K._sanitizeSelector(L.hash)).html(N);
K._cleanup();
H.cache&&F.data(L,"cache.tabs",true);
K._trigger("load",null,K._ui(K.anchors[G],K.panels[G]));
try{H.ajaxOptions.success(N,O)
}catch(M){}},error:function(N,O){K._cleanup();
K._trigger("load",null,K._ui(K.anchors[G],K.panels[G]));
try{H.ajaxOptions.error(N,O,G,L)
}catch(M){}}}));
K.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(G,H){this.anchors.eq(G).removeData("cache.tabs").data("load.tabs",H);
return this
},length:function(){return this.anchors.length
}});
F.extend(F.ui.tabs,{version:"1.8.11"});
F.extend(F.ui.tabs.prototype,{rotation:null,rotate:function(G,J){var H=this,K=this.options,I=H._rotate||(H._rotate=function(L){clearTimeout(H.rotation);
H.rotation=setTimeout(function(){var M=K.selected;
H.select(++M<H.anchors.length?M:0)
},G);
L&&L.stopPropagation()
});
J=H._unrotate||(H._unrotate=!J?function(L){L.clientX&&H.rotate(null)
}:function(){t=K.selected;
I()
});
if(G){this.element.bind("tabsshow",I);
this.anchors.bind(K.event+".tabs",J);
I()
}else{clearTimeout(H.rotation);
this.element.unbind("tabsshow",I);
this.anchors.unbind(K.event+".tabs",J);
delete this._rotate;
delete this._unrotate
}return this
}})
})(jQuery);
(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)/86400000)/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)/10000);
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*10000000,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())/86400000,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()*10000+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);
(function(A,B){A.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=A("<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();
A.Widget.prototype.destroy.apply(this,arguments)
},value:function(C){if(C===B){return this._value()
}this._setOption("value",C);
return this
},_setOption:function(C,D){if(C==="value"){this.options.value=D;
this._refreshValue();
this._value()===this.options.max&&this._trigger("complete")
}A.Widget.prototype._setOption.apply(this,arguments)
},_value:function(){var C=this.options.value;
if(typeof C!=="number"){C=0
}return Math.min(this.options.max,Math.max(this.min,C))
},_percentage:function(){return 100*this._value()/this.options.max
},_refreshValue:function(){var C=this.value(),D=this._percentage();
if(this.oldValue!==C){this.oldValue=C;
this._trigger("change")
}this.valueDiv.toggleClass("ui-corner-right",C===this.options.max).width(D.toFixed(0)+"%");
this.element.attr("aria-valuenow",C)
}});
A.extend(A.ui.progressbar,{version:"1.8.11"})
})(jQuery);
jQuery.effects||function(I,H){function E(N){var M;
if(N&&N.constructor==Array&&N.length==3){return N
}if(M=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(N)){return[parseInt(M[1],10),parseInt(M[2],10),parseInt(M[3],10)]
}if(M=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(N)){return[parseFloat(M[1])*2.55,parseFloat(M[2])*2.55,parseFloat(M[3])*2.55]
}if(M=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(N)){return[parseInt(M[1],16),parseInt(M[2],16),parseInt(M[3],16)]
}if(M=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(N)){return[parseInt(M[1]+M[1],16),parseInt(M[2]+M[2],16),parseInt(M[3]+M[3],16)]
}if(/rgba\(0, 0, 0, 0\)/.exec(N)){return D.transparent
}return D[I.trim(N).toLowerCase()]
}function L(O,N){var M;
do{M=I.curCSS(O,N);
if(M!=""&&M!="transparent"||I.nodeName(O,"body")){break
}N="backgroundColor"
}while(O=O.parentNode);
return E(M)
}function C(){var Q=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,N={},M,P;
if(Q&&Q.length&&Q[0]&&Q[Q[0]]){for(var O=Q.length;
O--;
){M=Q[O];
if(typeof Q[M]=="string"){P=M.replace(/\-(\w)/g,function(S,R){return R.toUpperCase()
});
N[P]=Q[M]
}}}else{for(M in Q){if(typeof Q[M]==="string"){N[M]=Q[M]
}}}return N
}function B(O){var N,M;
for(N in O){M=O[N];
if(M==null||I.isFunction(M)||N in K||/scrollbar/.test(N)||!/color/i.test(N)&&isNaN(parseFloat(M))){delete O[N]
}}return O
}function J(P,N){var M={_:0},O;
for(O in N){if(P[O]!=N[O]){M[O]=N[O]
}}return M
}function G(P,N,M,O){if(typeof P=="object"){O=N;
M=null;
N=P;
P=N.effect
}if(I.isFunction(N)){O=N;
M=null;
N={}
}if(typeof N=="number"||I.fx.speeds[N]){O=M;
M=N;
N={}
}if(I.isFunction(M)){O=M;
M=null
}N=N||{};
M=M||N.duration;
M=I.fx.off?0:typeof M=="number"?M:M in I.fx.speeds?I.fx.speeds[M]:I.fx.speeds._default;
O=O||N.complete;
return[P,N,M,O]
}function F(M){if(!M||typeof M==="number"||I.fx.speeds[M]){return true
}if(typeof M==="string"&&!I.effects[M]){return true
}return false
}I.effects={};
I.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","borderColor","color","outlineColor"],function(N,M){I.fx.step[M]=function(O){if(!O.colorInit){O.start=L(O.elem,M);
O.end=E(O.end);
O.colorInit=true
}O.elem.style[M]="rgb("+Math.max(Math.min(parseInt(O.pos*(O.end[0]-O.start[0])+O.start[0],10),255),0)+","+Math.max(Math.min(parseInt(O.pos*(O.end[1]-O.start[1])+O.start[1],10),255),0)+","+Math.max(Math.min(parseInt(O.pos*(O.end[2]-O.start[2])+O.start[2],10),255),0)+")"
}
});
var D={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]},A=["add","remove","toggle"],K={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};
I.effects.animateClass=function(P,N,M,O){if(I.isFunction(M)){O=M;
M=null
}return this.queue("fx",function(){var U=I(this),T=U.attr("style")||" ",S=B(C.call(this)),Q,R=U.attr("className");
I.each(A,function(V,W){P[W]&&U[W+"Class"](P[W])
});
Q=B(C.call(this));
U.attr("className",R);
U.animate(J(S,Q),N,M,function(){I.each(A,function(V,W){P[W]&&U[W+"Class"](P[W])
});
if(typeof U.attr("style")=="object"){U.attr("style").cssText="";
U.attr("style").cssText=T
}else{U.attr("style",T)
}O&&O.apply(this,arguments)
});
S=I.queue(this);
Q=S.splice(S.length-1,1)[0];
S.splice(1,0,Q);
I.dequeue(this)
})
};
I.fn.extend({_addClass:I.fn.addClass,addClass:function(P,N,M,O){return N?I.effects.animateClass.apply(this,[{add:P},N,M,O]):this._addClass(P)
},_removeClass:I.fn.removeClass,removeClass:function(P,N,M,O){return N?I.effects.animateClass.apply(this,[{remove:P},N,M,O]):this._removeClass(P)
},_toggleClass:I.fn.toggleClass,toggleClass:function(Q,N,M,P,O){return typeof N=="boolean"||N===H?M?I.effects.animateClass.apply(this,[N?{add:Q}:{remove:Q},M,P,O]):this._toggleClass(Q,N):I.effects.animateClass.apply(this,[{toggle:Q},N,M,P])
},switchClass:function(Q,N,M,P,O){return I.effects.animateClass.apply(this,[{add:N,remove:Q},M,P,O])
}});
I.extend(I.effects,{version:"1.8.11",save:function(O,N){for(var M=0;
M<N.length;
M++){N[M]!==null&&O.data("ec.storage."+N[M],O[0].style[N[M]])
}},restore:function(O,N){for(var M=0;
M<N.length;
M++){N[M]!==null&&O.css(N[M],O.data("ec.storage."+N[M]))
}},setMode:function(N,M){if(M=="toggle"){M=N.is(":hidden")?"show":"hide"
}return M
},getBaseline:function(O,N){var M;
switch(O[0]){case"top":M=0;
break;
case"middle":M=0.5;
break;
case"bottom":M=1;
break;
default:M=O[0]/N.height
}switch(O[1]){case"left":O=0;
break;
case"center":O=0.5;
break;
case"right":O=1;
break;
default:O=O[1]/N.width
}return{x:O,y:M}
},createWrapper:function(O){if(O.parent().is(".ui-effects-wrapper")){return O.parent()
}var N={width:O.outerWidth(true),height:O.outerHeight(true),"float":O.css("float")},M=I("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0});
O.wrap(M);
M=O.parent();
if(O.css("position")=="static"){M.css({position:"relative"});
O.css({position:"relative"})
}else{I.extend(N,{position:O.css("position"),zIndex:O.css("z-index")});
I.each(["top","left","bottom","right"],function(Q,P){N[P]=O.css(P);
if(isNaN(parseInt(N[P],10))){N[P]="auto"
}});
O.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})
}return M.css(N).show()
},removeWrapper:function(M){if(M.parent().is(".ui-effects-wrapper")){return M.parent().replaceWith(M)
}return M
},setTransition:function(P,N,M,O){O=O||{};
I.each(N,function(R,Q){unit=P.cssUnit(Q);
if(unit[0]>0){O[Q]=unit[0]*M+unit[1]
}});
return O
}});
I.fn.extend({effect:function(P){var N=G.apply(this,arguments),M={options:N[1],duration:N[2],callback:N[3]};
N=M.options.mode;
var O=I.effects[P];
if(I.fx.off||!O){return N?this[N](M.duration,M.callback):this.each(function(){M.callback&&M.callback.call(this)
})
}return O.call(this,M)
},_show:I.fn.show,show:function(N){if(F(N)){return this._show.apply(this,arguments)
}else{var M=G.apply(this,arguments);
M[1].mode="show";
return this.effect.apply(this,M)
}},_hide:I.fn.hide,hide:function(N){if(F(N)){return this._hide.apply(this,arguments)
}else{var M=G.apply(this,arguments);
M[1].mode="hide";
return this.effect.apply(this,M)
}},__toggle:I.fn.toggle,toggle:function(N){if(F(N)||typeof N==="boolean"||I.isFunction(N)){return this.__toggle.apply(this,arguments)
}else{var M=G.apply(this,arguments);
M[1].mode="toggle";
return this.effect.apply(this,M)
}},cssUnit:function(O){var N=this.css(O),M=[];
I.each(["em","px","%","pt"],function(Q,P){if(N.indexOf(P)>0){M=[parseFloat(N),P]
}});
return M
}});
I.easing.jswing=I.easing.swing;
I.extend(I.easing,{def:"easeOutQuad",swing:function(Q,N,M,P,O){return I.easing[I.easing.def](Q,N,M,P,O)
},easeInQuad:function(Q,N,M,P,O){return P*(N/=O)*N+M
},easeOutQuad:function(Q,N,M,P,O){return -P*(N/=O)*(N-2)+M
},easeInOutQuad:function(Q,N,M,P,O){if((N/=O/2)<1){return P/2*N*N+M
}return -P/2*(--N*(N-2)-1)+M
},easeInCubic:function(Q,N,M,P,O){return P*(N/=O)*N*N+M
},easeOutCubic:function(Q,N,M,P,O){return P*((N=N/O-1)*N*N+1)+M
},easeInOutCubic:function(Q,N,M,P,O){if((N/=O/2)<1){return P/2*N*N*N+M
}return P/2*((N-=2)*N*N+2)+M
},easeInQuart:function(Q,N,M,P,O){return P*(N/=O)*N*N*N+M
},easeOutQuart:function(Q,N,M,P,O){return -P*((N=N/O-1)*N*N*N-1)+M
},easeInOutQuart:function(Q,N,M,P,O){if((N/=O/2)<1){return P/2*N*N*N*N+M
}return -P/2*((N-=2)*N*N*N-2)+M
},easeInQuint:function(Q,N,M,P,O){return P*(N/=O)*N*N*N*N+M
},easeOutQuint:function(Q,N,M,P,O){return P*((N=N/O-1)*N*N*N*N+1)+M
},easeInOutQuint:function(Q,N,M,P,O){if((N/=O/2)<1){return P/2*N*N*N*N*N+M
}return P/2*((N-=2)*N*N*N*N+2)+M
},easeInSine:function(Q,N,M,P,O){return -P*Math.cos(N/O*(Math.PI/2))+P+M
},easeOutSine:function(Q,N,M,P,O){return P*Math.sin(N/O*(Math.PI/2))+M
},easeInOutSine:function(Q,N,M,P,O){return -P/2*(Math.cos(Math.PI*N/O)-1)+M
},easeInExpo:function(Q,N,M,P,O){return N==0?M:P*Math.pow(2,10*(N/O-1))+M
},easeOutExpo:function(Q,N,M,P,O){return N==O?M+P:P*(-Math.pow(2,-10*N/O)+1)+M
},easeInOutExpo:function(Q,N,M,P,O){if(N==0){return M
}if(N==O){return M+P
}if((N/=O/2)<1){return P/2*Math.pow(2,10*(N-1))+M
}return P/2*(-Math.pow(2,-10*--N)+2)+M
},easeInCirc:function(Q,N,M,P,O){return -P*(Math.sqrt(1-(N/=O)*N)-1)+M
},easeOutCirc:function(Q,N,M,P,O){return P*Math.sqrt(1-(N=N/O-1)*N)+M
},easeInOutCirc:function(Q,N,M,P,O){if((N/=O/2)<1){return -P/2*(Math.sqrt(1-N*N)-1)+M
}return P/2*(Math.sqrt(1-(N-=2)*N)+1)+M
},easeInElastic:function(S,N,M,R,Q){S=1.70158;
var P=0,O=R;
if(N==0){return M
}if((N/=Q)==1){return M+R
}P||(P=Q*0.3);
if(O<Math.abs(R)){O=R;
S=P/4
}else{S=P/(2*Math.PI)*Math.asin(R/O)
}return -(O*Math.pow(2,10*(N-=1))*Math.sin((N*Q-S)*2*Math.PI/P))+M
},easeOutElastic:function(S,N,M,R,Q){S=1.70158;
var P=0,O=R;
if(N==0){return M
}if((N/=Q)==1){return M+R
}P||(P=Q*0.3);
if(O<Math.abs(R)){O=R;
S=P/4
}else{S=P/(2*Math.PI)*Math.asin(R/O)
}return O*Math.pow(2,-10*N)*Math.sin((N*Q-S)*2*Math.PI/P)+R+M
},easeInOutElastic:function(S,N,M,R,Q){S=1.70158;
var P=0,O=R;
if(N==0){return M
}if((N/=Q/2)==2){return M+R
}P||(P=Q*0.3*1.5);
if(O<Math.abs(R)){O=R;
S=P/4
}else{S=P/(2*Math.PI)*Math.asin(R/O)
}if(N<1){return -0.5*O*Math.pow(2,10*(N-=1))*Math.sin((N*Q-S)*2*Math.PI/P)+M
}return O*Math.pow(2,-10*(N-=1))*Math.sin((N*Q-S)*2*Math.PI/P)*0.5+R+M
},easeInBack:function(R,N,M,Q,P,O){if(O==H){O=1.70158
}return Q*(N/=P)*N*((O+1)*N-O)+M
},easeOutBack:function(R,N,M,Q,P,O){if(O==H){O=1.70158
}return Q*((N=N/P-1)*N*((O+1)*N+O)+1)+M
},easeInOutBack:function(R,N,M,Q,P,O){if(O==H){O=1.70158
}if((N/=P/2)<1){return Q/2*N*N*(((O*=1.525)+1)*N-O)+M
}return Q/2*((N-=2)*N*(((O*=1.525)+1)*N+O)+2)+M
},easeInBounce:function(Q,N,M,P,O){return P-I.easing.easeOutBounce(Q,O-N,0,P,O)+M
},easeOutBounce:function(Q,N,M,P,O){return(N/=O)<1/2.75?P*7.5625*N*N+M:N<2/2.75?P*(7.5625*(N-=1.5/2.75)*N+0.75)+M:N<2.5/2.75?P*(7.5625*(N-=2.25/2.75)*N+0.9375)+M:P*(7.5625*(N-=2.625/2.75)*N+0.984375)+M
},easeInOutBounce:function(Q,N,M,P,O){if(N<O/2){return I.easing.easeInBounce(Q,N*2,0,P,O)*0.5+M
}return I.easing.easeOutBounce(Q,N*2-O,0,P,O)*0.5+P*0.5+M
}})
}(jQuery);
(function(A){A.effects.blind=function(B){return this.queue(function(){var C=A(this),F=["position","top","bottom","left","right"],G=A.effects.setMode(C,B.options.mode||"hide"),I=B.options.direction||"vertical";
A.effects.save(C,F);
C.show();
var H=A.effects.createWrapper(C).css({overflow:"hidden"}),E=I=="vertical"?"height":"width";
I=I=="vertical"?H.height():H.width();
G=="show"&&H.css(E,0);
var D={};
D[E]=G=="show"?I:0;
H.animate(D,B.duration,B.options.easing,function(){G=="hide"&&C.hide();
A.effects.restore(C,F);
A.effects.removeWrapper(C);
B.callback&&B.callback.apply(C[0],arguments);
C.dequeue()
})
})
}
})(jQuery);
(function(A){A.effects.bounce=function(B){return this.queue(function(){var M=A(this),D=["position","top","bottom","left","right"],H=A.effects.setMode(M,B.options.mode||"effect"),K=B.options.direction||"up",L=B.options.distance||20,C=B.options.times||5,G=B.duration||250;
/show|hide/.test(H)&&D.push("opacity");
A.effects.save(M,D);
M.show();
A.effects.createWrapper(M);
var J=K=="up"||K=="down"?"top":"left";
K=K=="up"||K=="left"?"pos":"neg";
L=B.options.distance||(J=="top"?M.outerHeight({margin:true})/3:M.outerWidth({margin:true})/3);
if(H=="show"){M.css("opacity",0).css(J,K=="pos"?-L:L)
}if(H=="hide"){L/=C*2
}H!="hide"&&C--;
if(H=="show"){var I={opacity:1};
I[J]=(K=="pos"?"+=":"-=")+L;
M.animate(I,G/2,B.options.easing);
L/=2;
C--
}for(I=0;
I<C;
I++){var F={},E={};
F[J]=(K=="pos"?"-=":"+=")+L;
E[J]=(K=="pos"?"+=":"-=")+L;
M.animate(F,G/2,B.options.easing).animate(E,G/2,B.options.easing);
L=H=="hide"?L*2:L/2
}if(H=="hide"){I={opacity:0};
I[J]=(K=="pos"?"-=":"+=")+L;
M.animate(I,G/2,B.options.easing,function(){M.hide();
A.effects.restore(M,D);
A.effects.removeWrapper(M);
B.callback&&B.callback.apply(this,arguments)
})
}else{F={};
E={};
F[J]=(K=="pos"?"-=":"+=")+L;
E[J]=(K=="pos"?"+=":"-=")+L;
M.animate(F,G/2,B.options.easing).animate(E,G/2,B.options.easing,function(){A.effects.restore(M,D);
A.effects.removeWrapper(M);
B.callback&&B.callback.apply(this,arguments)
})
}M.queue("fx",function(){M.dequeue()
});
M.dequeue()
})
}
})(jQuery);
(function(A){A.effects.clip=function(B){return this.queue(function(){var C=A(this),D=["position","top","bottom","left","right","height","width"],G=A.effects.setMode(C,B.options.mode||"hide"),I=B.options.direction||"vertical";
A.effects.save(C,D);
C.show();
var H=A.effects.createWrapper(C).css({overflow:"hidden"});
H=C[0].tagName=="IMG"?H:C;
var F={size:I=="vertical"?"height":"width",position:I=="vertical"?"top":"left"};
I=I=="vertical"?H.height():H.width();
if(G=="show"){H.css(F.size,0);
H.css(F.position,I/2)
}var E={};
E[F.size]=G=="show"?I:0;
E[F.position]=G=="show"?0:I/2;
H.animate(E,{queue:false,duration:B.duration,easing:B.options.easing,complete:function(){G=="hide"&&C.hide();
A.effects.restore(C,D);
A.effects.removeWrapper(C);
B.callback&&B.callback.apply(C[0],arguments);
C.dequeue()
}})
})
}
})(jQuery);
(function(A){A.effects.drop=function(B){return this.queue(function(){var D=A(this),F=["position","top","bottom","left","right","opacity"],I=A.effects.setMode(D,B.options.mode||"hide"),C=B.options.direction||"left";
A.effects.save(D,F);
D.show();
A.effects.createWrapper(D);
var H=C=="up"||C=="down"?"top":"left";
C=C=="up"||C=="left"?"pos":"neg";
var G=B.options.distance||(H=="top"?D.outerHeight({margin:true})/2:D.outerWidth({margin:true})/2);
if(I=="show"){D.css("opacity",0).css(H,C=="pos"?-G:G)
}var E={opacity:I=="show"?1:0};
E[H]=(I=="show"?C=="pos"?"+=":"-=":C=="pos"?"-=":"+=")+G;
D.animate(E,{queue:false,duration:B.duration,easing:B.options.easing,complete:function(){I=="hide"&&D.hide();
A.effects.restore(D,F);
A.effects.removeWrapper(D);
B.callback&&B.callback.apply(this,arguments);
D.dequeue()
}})
})
}
})(jQuery);
(function(A){A.effects.explode=function(B){return this.queue(function(){var J=B.options.pieces?Math.round(Math.sqrt(B.options.pieces)):3,I=B.options.pieces?Math.round(Math.sqrt(B.options.pieces)):3;
B.options.mode=B.options.mode=="toggle"?A(this).is(":visible")?"hide":"show":B.options.mode;
var C=A(this).show().css("visibility","hidden"),F=C.offset();
F.top-=parseInt(C.css("marginTop"),10)||0;
F.left-=parseInt(C.css("marginLeft"),10)||0;
for(var E=C.outerWidth(true),D=C.outerHeight(true),H=0;
H<J;
H++){for(var G=0;
G<I;
G++){C.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-G*(E/I),top:-H*(D/J)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:E/I,height:D/J,left:F.left+G*(E/I)+(B.options.mode=="show"?(G-Math.floor(I/2))*(E/I):0),top:F.top+H*(D/J)+(B.options.mode=="show"?(H-Math.floor(J/2))*(D/J):0),opacity:B.options.mode=="show"?0:1}).animate({left:F.left+G*(E/I)+(B.options.mode=="show"?0:(G-Math.floor(I/2))*(E/I)),top:F.top+H*(D/J)+(B.options.mode=="show"?0:(H-Math.floor(J/2))*(D/J)),opacity:B.options.mode=="show"?1:0},B.duration||500)
}}setTimeout(function(){B.options.mode=="show"?C.css({visibility:"visible"}):C.css({visibility:"visible"}).hide();
B.callback&&B.callback.apply(C[0]);
C.dequeue();
A("div.ui-effects-explode").remove()
},B.duration||500)
})
}
})(jQuery);
(function(A){A.effects.fade=function(B){return this.queue(function(){var D=A(this),C=A.effects.setMode(D,B.options.mode||"hide");
D.animate({opacity:C},{queue:false,duration:B.duration,easing:B.options.easing,complete:function(){B.callback&&B.callback.apply(this,arguments);
D.dequeue()
}})
})
}
})(jQuery);
(function(A){A.effects.fold=function(B){return this.queue(function(){var L=A(this),E=["position","top","bottom","left","right"],K=A.effects.setMode(L,B.options.mode||"hide"),H=B.options.size||15,G=!!B.options.horizFirst,D=B.duration?B.duration/2:A.fx.speeds._default/2;
A.effects.save(L,E);
L.show();
var J=A.effects.createWrapper(L).css({overflow:"hidden"}),I=K=="show"!=G,C=I?["width","height"]:["height","width"];
I=I?[J.width(),J.height()]:[J.height(),J.width()];
var F=/([0-9]+)%/.exec(H);
if(F){H=parseInt(F[1],10)/100*I[K=="hide"?0:1]
}if(K=="show"){J.css(G?{height:0,width:H}:{height:H,width:0})
}G={};
F={};
G[C[0]]=K=="show"?I[0]:H;
F[C[1]]=K=="show"?I[1]:0;
J.animate(G,D,B.options.easing).animate(F,D,B.options.easing,function(){K=="hide"&&L.hide();
A.effects.restore(L,E);
A.effects.removeWrapper(L);
B.callback&&B.callback.apply(L[0],arguments);
L.dequeue()
})
})
}
})(jQuery);
(function(A){A.effects.highlight=function(B){return this.queue(function(){var C=A(this),E=["backgroundImage","backgroundColor","opacity"],F=A.effects.setMode(C,B.options.mode||"show"),D={backgroundColor:C.css("backgroundColor")};
if(F=="hide"){D.opacity=0
}A.effects.save(C,E);
C.show().css({backgroundImage:"none",backgroundColor:B.options.color||"#ffff99"}).animate(D,{queue:false,duration:B.duration,easing:B.options.easing,complete:function(){F=="hide"&&C.hide();
A.effects.restore(C,E);
F=="show"&&!A.support.opacity&&this.style.removeAttribute("filter");
B.callback&&B.callback.apply(this,arguments);
C.dequeue()
}})
})
}
})(jQuery);
(function(A){A.effects.pulsate=function(B){return this.queue(function(){var C=A(this),D=A.effects.setMode(C,B.options.mode||"show");
times=(B.options.times||5)*2-1;
duration=B.duration?B.duration/2:A.fx.speeds._default/2;
isVisible=C.is(":visible");
animateTo=0;
if(!isVisible){C.css("opacity",0).show();
animateTo=1
}if(D=="hide"&&isVisible||D=="show"&&!isVisible){times--
}for(D=0;
D<times;
D++){C.animate({opacity:animateTo},duration,B.options.easing);
animateTo=(animateTo+1)%2
}C.animate({opacity:animateTo},duration,B.options.easing,function(){animateTo==0&&C.hide();
B.callback&&B.callback.apply(this,arguments)
});
C.queue("fx",function(){C.dequeue()
}).dequeue()
})
}
})(jQuery);
(function(A){A.effects.puff=function(B){return this.queue(function(){var C=A(this),G=A.effects.setMode(C,B.options.mode||"hide"),F=parseInt(B.options.percent,10)||150,E=F/100,D={height:C.height(),width:C.width()};
A.extend(B.options,{fade:true,mode:G,percent:G=="hide"?F:100,from:G=="hide"?D:{height:D.height*E,width:D.width*E}});
C.effect("scale",B.options,B.duration,B.callback);
C.dequeue()
})
};
A.effects.scale=function(B){return this.queue(function(){var C=A(this),H=A.extend(true,{},B.options),F=A.effects.setMode(C,B.options.mode||"effect"),E=parseInt(B.options.percent,10)||(parseInt(B.options.percent,10)==0?0:F=="hide"?0:100),D=B.options.direction||"both",G=B.options.origin;
if(F!="effect"){H.origin=G||["middle","center"];
H.restore=true
}G={height:C.height(),width:C.width()};
C.from=B.options.from||(F=="show"?{height:0,width:0}:G);
E={y:D!="horizontal"?E/100:1,x:D!="vertical"?E/100:1};
C.to={height:G.height*E.y,width:G.width*E.x};
if(B.options.fade){if(F=="show"){C.from.opacity=0;
C.to.opacity=1
}if(F=="hide"){C.from.opacity=1;
C.to.opacity=0
}}H.from=C.from;
H.to=C.to;
H.mode=F;
C.effect("size",H,B.duration,B.callback);
C.dequeue()
})
};
A.effects.size=function(B){return this.queue(function(){var O=A(this),M=["position","top","bottom","left","right","width","height","overflow","opacity"],K=["position","top","bottom","left","right","overflow","opacity"],J=["width","height","overflow"],I=["fontSize"],L=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],G=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],C=A.effects.setMode(O,B.options.mode||"effect"),D=B.options.restore||false,E=B.options.scale||"both",F=B.options.origin,H={height:O.height(),width:O.width()};
O.from=B.options.from||H;
O.to=B.options.to||H;
if(F){F=A.effects.getBaseline(F,H);
O.from.top=(H.height-O.from.height)*F.y;
O.from.left=(H.width-O.from.width)*F.x;
O.to.top=(H.height-O.to.height)*F.y;
O.to.left=(H.width-O.to.width)*F.x
}var N={from:{y:O.from.height/H.height,x:O.from.width/H.width},to:{y:O.to.height/H.height,x:O.to.width/H.width}};
if(E=="box"||E=="both"){if(N.from.y!=N.to.y){M=M.concat(L);
O.from=A.effects.setTransition(O,L,N.from.y,O.from);
O.to=A.effects.setTransition(O,L,N.to.y,O.to)
}if(N.from.x!=N.to.x){M=M.concat(G);
O.from=A.effects.setTransition(O,G,N.from.x,O.from);
O.to=A.effects.setTransition(O,G,N.to.x,O.to)
}}if(E=="content"||E=="both"){if(N.from.y!=N.to.y){M=M.concat(I);
O.from=A.effects.setTransition(O,I,N.from.y,O.from);
O.to=A.effects.setTransition(O,I,N.to.y,O.to)
}}A.effects.save(O,D?M:K);
O.show();
A.effects.createWrapper(O);
O.css("overflow","hidden").css(O.from);
if(E=="content"||E=="both"){L=L.concat(["marginTop","marginBottom"]).concat(I);
G=G.concat(["marginLeft","marginRight"]);
J=M.concat(L).concat(G);
O.find("*[width]").each(function(){child=A(this);
D&&A.effects.save(child,J);
var P={height:child.height(),width:child.width()};
child.from={height:P.height*N.from.y,width:P.width*N.from.x};
child.to={height:P.height*N.to.y,width:P.width*N.to.x};
if(N.from.y!=N.to.y){child.from=A.effects.setTransition(child,L,N.from.y,child.from);
child.to=A.effects.setTransition(child,L,N.to.y,child.to)
}if(N.from.x!=N.to.x){child.from=A.effects.setTransition(child,G,N.from.x,child.from);
child.to=A.effects.setTransition(child,G,N.to.x,child.to)
}child.css(child.from);
child.animate(child.to,B.duration,B.options.easing,function(){D&&A.effects.restore(child,J)
})
})
}O.animate(O.to,{queue:false,duration:B.duration,easing:B.options.easing,complete:function(){O.to.opacity===0&&O.css("opacity",O.from.opacity);
C=="hide"&&O.hide();
A.effects.restore(O,D?M:K);
A.effects.removeWrapper(O);
B.callback&&B.callback.apply(this,arguments);
O.dequeue()
}})
})
}
})(jQuery);
(function(A){A.effects.shake=function(B){return this.queue(function(){var L=A(this),E=["position","top","bottom","left","right"];
A.effects.setMode(L,B.options.mode||"effect");
var K=B.options.direction||"left",J=B.options.distance||20,C=B.options.times||3,I=B.duration||B.options.duration||140;
A.effects.save(L,E);
L.show();
A.effects.createWrapper(L);
var H=K=="up"||K=="down"?"top":"left",G=K=="up"||K=="left"?"pos":"neg";
K={};
var F={},D={};
K[H]=(G=="pos"?"-=":"+=")+J;
F[H]=(G=="pos"?"+=":"-=")+J*2;
D[H]=(G=="pos"?"-=":"+=")+J*2;
L.animate(K,I,B.options.easing);
for(J=1;
J<C;
J++){L.animate(F,I,B.options.easing).animate(D,I,B.options.easing)
}L.animate(F,I,B.options.easing).animate(K,I/2,B.options.easing,function(){A.effects.restore(L,E);
A.effects.removeWrapper(L);
B.callback&&B.callback.apply(this,arguments)
});
L.queue("fx",function(){L.dequeue()
});
L.dequeue()
})
}
})(jQuery);
(function(A){A.effects.slide=function(B){return this.queue(function(){var D=A(this),F=["position","top","bottom","left","right"],H=A.effects.setMode(D,B.options.mode||"show"),C=B.options.direction||"left";
A.effects.save(D,F);
D.show();
A.effects.createWrapper(D).css({overflow:"hidden"});
var G=C=="up"||C=="down"?"top":"left";
C=C=="up"||C=="left"?"pos":"neg";
var I=B.options.distance||(G=="top"?D.outerHeight({margin:true}):D.outerWidth({margin:true}));
if(H=="show"){D.css(G,C=="pos"?isNaN(I)?"-"+I:-I:I)
}var E={};
E[G]=(H=="show"?C=="pos"?"+=":"-=":C=="pos"?"-=":"+=")+I;
D.animate(E,{queue:false,duration:B.duration,easing:B.options.easing,complete:function(){H=="hide"&&D.hide();
A.effects.restore(D,F);
A.effects.removeWrapper(D);
B.callback&&B.callback.apply(this,arguments);
D.dequeue()
}})
})
}
})(jQuery);
(function(A){A.effects.transfer=function(B){return this.queue(function(){var C=A(this),F=A(B.options.to),E=F.offset();
F={top:E.top,left:E.left,height:F.innerHeight(),width:F.innerWidth()};
E=C.offset();
var D=A('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(B.options.className).css({top:E.top,left:E.left,height:C.innerHeight(),width:C.innerWidth(),position:"absolute"}).animate(F,B.duration,B.options.easing,function(){D.remove();
B.callback&&B.callback.apply(C[0],arguments);
C.dequeue()
})
})
}
})(jQuery);
/*
 * jQuery validation plug-in 1.6
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-validation/
 * http://docs.jquery.com/Plugins/Validation
 *
 * Copyright (c) 2006 - 2008 JÃ¶rn Zaefferer
 *
 * $Id: jquery.validate.min.js 9085 2010-09-02 17:20:03Z dkx8gyb $
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
(function(A){A.extend(A.fn,{validate:function(B){if(!this.length){B&&B.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");
return 
}var C=A.data(this[0],"validator");
if(C){return C
}C=new A.validator(B,this[0]);
A.data(this[0],"validator",C);
if(C.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){C.cancelSubmit=true
});
if(C.settings.submitHandler){this.find("input, button").filter(":submit").click(function(){C.submitButton=this
})
}this.submit(function(D){if(C.settings.debug){D.preventDefault()
}function E(){if(C.settings.submitHandler){if(C.submitButton){var F=A("<input type='hidden'/>").attr("name",C.submitButton.name).val(C.submitButton.value).appendTo(C.currentForm)
}C.settings.submitHandler.call(C,C.currentForm);
if(C.submitButton){F.remove()
}return false
}return true
}if(C.cancelSubmit){C.cancelSubmit=false;
return E()
}if(C.form()){if(C.pendingRequest){C.formSubmitted=true;
return false
}return E()
}else{C.focusInvalid();
return false
}})
}return C
},valid:function(){if(A(this[0]).is("form")){return this.validate().form()
}else{var C=true;
var B=A(this[0].form).validate();
this.each(function(){C&=B.element(this)
});
return C
}},removeAttrs:function(D){var B={},C=this;
A.each(D.split(/\s/),function(E,F){B[F]=C.attr(F);
C.removeAttr(F)
});
return B
},rules:function(E,B){var G=this[0];
if(E){var D=A.data(G.form,"validator").settings;
var I=D.rules;
var J=A.validator.staticRules(G);
switch(E){case"add":A.extend(J,A.validator.normalizeRule(B));
I[G.name]=J;
if(B.messages){D.messages[G.name]=A.extend(D.messages[G.name],B.messages)
}break;
case"remove":if(!B){delete I[G.name];
return J
}var H={};
A.each(B.split(/\s/),function(K,L){H[L]=J[L];
delete J[L]
});
return H
}}var F=A.validator.normalizeRules(A.extend({},A.validator.metadataRules(G),A.validator.classRules(G),A.validator.attributeRules(G),A.validator.staticRules(G)),G);
if(F.required){var C=F.required;
delete F.required;
F=A.extend({required:C},F)
}return F
}});
A.extend(A.expr[":"],{blank:function(B){return !A.trim(""+B.value)
},filled:function(B){return !!A.trim(""+B.value)
},unchecked:function(B){return !B.checked
}});
A.validator=function(B,C){this.settings=A.extend({},A.validator.defaults,B);
this.currentForm=C;
this.init()
};
A.validator.format=function(B,C){if(arguments.length==1){return function(){var D=A.makeArray(arguments);
D.unshift(B);
return A.validator.format.apply(this,D)
}
}if(arguments.length>2&&C.constructor!=Array){C=A.makeArray(arguments).slice(1)
}if(C.constructor!=Array){C=[C]
}A.each(C,function(D,E){B=B.replace(new RegExp("\\{"+D+"\\}","g"),E)
});
return B
};
A.extend(A.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:A([]),errorLabelContainer:A([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(B){this.lastActive=B;
if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,B,this.settings.errorClass,this.settings.validClass);
this.errorsFor(B).hide()
}},onfocusout:function(B){if(!this.checkable(B)&&(B.name in this.submitted||!this.optional(B))){this.element(B)
}},onkeyup:function(B){if(B.name in this.submitted||B==this.lastElement){this.element(B)
}},onclick:function(B){if(B.name in this.submitted){this.element(B)
}else{if(B.parentNode.name in this.submitted){this.element(B.parentNode)
}}},highlight:function(D,B,C){A(D).addClass(B).removeClass(C)
},unhighlight:function(D,B,C){A(D).removeClass(B).addClass(C)
}},setDefaults:function(B){A.extend(A.validator.defaults,B)
},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:A.validator.format("Please enter no more than {0} characters."),minlength:A.validator.format("Please enter at least {0} characters."),rangelength:A.validator.format("Please enter a value between {0} and {1} characters long."),range:A.validator.format("Please enter a value between {0} and {1}."),max:A.validator.format("Please enter a value less than or equal to {0}."),min:A.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){this.labelContainer=A(this.settings.errorLabelContainer);
this.errorContext=this.labelContainer.length&&this.labelContainer||A(this.currentForm);
this.containers=A(this.settings.errorContainer).add(this.settings.errorLabelContainer);
this.submitted={};
this.valueCache={};
this.pendingRequest=0;
this.pending={};
this.invalid={};
this.reset();
var B=(this.groups={});
A.each(this.settings.groups,function(E,F){A.each(F.split(/\s/),function(H,G){B[G]=E
})
});
var D=this.settings.rules;
A.each(D,function(E,F){D[E]=A.validator.normalizeRule(F)
});
function C(F){var E=A.data(this[0].form,"validator");
E.settings["on"+F.type]&&E.settings["on"+F.type].call(E,this[0])
}A(this.currentForm).delegate("focusin focusout keyup",":text, :password, :file, select, textarea",C).delegate("click",":radio, :checkbox, select, option",C);
if(this.settings.invalidHandler){A(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler)
}},form:function(){this.checkForm();
A.extend(this.submitted,this.errorMap);
this.invalid=A.extend({},this.errorMap);
if(!this.valid()){A(this.currentForm).triggerHandler("invalid-form",[this])
}this.showErrors();
return this.valid()
},checkForm:function(){this.prepareForm();
for(var B=0,C=(this.currentElements=this.elements());
C[B];
B++){this.check(C[B])
}return this.valid()
},element:function(C){C=this.clean(C);
this.lastElement=C;
this.prepareElement(C);
this.currentElements=A(C);
var B=this.check(C);
if(B){delete this.invalid[C.name]
}else{this.invalid[C.name]=true
}if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers)
}this.showErrors();
return B
},showErrors:function(C){if(C){A.extend(this.errorMap,C);
this.errorList=[];
for(var B in C){this.errorList.push({message:C[B],element:this.findByName(B)[0]})
}this.successList=A.grep(this.successList,function(D){return !(D.name in C)
})
}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()
},resetForm:function(){if(A.fn.resetForm){A(this.currentForm).resetForm()
}this.submitted={};
this.prepareForm();
this.hideErrors();
this.elements().removeClass(this.settings.errorClass)
},numberOfInvalids:function(){return this.objectLength(this.invalid)
},objectLength:function(D){var C=0;
for(var B in D){C++
}return C
},hideErrors:function(){this.addWrapper(this.toHide).hide()
},valid:function(){return this.size()==0
},size:function(){return this.errorList.length
},focusInvalid:function(){if(this.settings.focusInvalid){try{A(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus()
}catch(B){}}},findLastActive:function(){var B=this.lastActive;
return B&&A.grep(this.errorList,function(C){return C.element.name==B.name
}).length==1&&B
},elements:function(){var C=this,B={};
return A([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&C.settings.debug&&window.console&&console.error("%o has no name assigned",this);
if(this.name in B||!C.objectLength(A(this).rules())){return false
}B[this.name]=true;
return true
})
},clean:function(B){return A(B)[0]
},errors:function(){return A(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext)
},reset:function(){this.successList=[];
this.errorList=[];
this.errorMap={};
this.toShow=A([]);
this.toHide=A([]);
this.currentElements=A([])
},prepareForm:function(){this.reset();
this.toHide=this.errors().add(this.containers)
},prepareElement:function(B){this.reset();
this.toHide=this.errorsFor(B)
},check:function(C){C=this.clean(C);
if(this.checkable(C)){C=this.findByName(C.name)[0]
}var G=A(C).rules();
var D=false;
for(method in G){var F={method:method,parameters:G[method]};
try{var B=A.validator.methods[method].call(this,C.value.replace(/\r/g,""),C,F.parameters);
if(B=="dependency-mismatch"){D=true;
continue
}D=false;
if(B=="pending"){this.toHide=this.toHide.not(this.errorsFor(C));
return 
}if(!B){this.formatAndAdd(C,F);
return false
}}catch(E){this.settings.debug&&window.console&&console.log("exception occured when checking element "+C.id+", check the '"+F.method+"' method",E);
throw E
}}if(D){return 
}if(this.objectLength(G)){this.successList.push(C)
}return true
},customMetaMessage:function(B,D){if(!A.metadata){return 
}var C=this.settings.meta?A(B).metadata()[this.settings.meta]:A(B).metadata();
return C&&C.messages&&C.messages[D]
},customMessage:function(C,D){var B=this.settings.messages[C];
return B&&(B.constructor==String?B:B[D])
},findDefined:function(){for(var B=0;
B<arguments.length;
B++){if(arguments[B]!==undefined){return arguments[B]
}}return undefined
},defaultMessage:function(B,C){return this.findDefined(this.customMessage(B.name,C),this.customMetaMessage(B,C),!this.settings.ignoreTitle&&B.title||undefined,A.validator.messages[C],"<strong>Warning: No message defined for "+B.name+"</strong>")
},formatAndAdd:function(C,E){var D=this.defaultMessage(C,E.method),B=/\$?\{(\d+)\}/g;
if(typeof D=="function"){D=D.call(this,E.parameters,C)
}else{if(B.test(D)){D=jQuery.format(D.replace(B,"{$1}"),E.parameters)
}}this.errorList.push({message:D,element:C});
this.errorMap[C.name]=D;
this.submitted[C.name]=D
},addWrapper:function(B){if(this.settings.wrapper){B=B.add(B.parent(this.settings.wrapper))
}return B
},defaultShowErrors:function(){for(var C=0;
this.errorList[C];
C++){var B=this.errorList[C];
this.settings.highlight&&this.settings.highlight.call(this,B.element,this.settings.errorClass,this.settings.validClass);
this.showLabel(B.element,B.message)
}if(this.errorList.length){this.toShow=this.toShow.add(this.containers)
}if(this.settings.success){for(var C=0;
this.successList[C];
C++){this.showLabel(this.successList[C])
}}if(this.settings.unhighlight){for(var C=0,D=this.validElements();
D[C];
C++){this.settings.unhighlight.call(this,D[C],this.settings.errorClass,this.settings.validClass)
}}this.toHide=this.toHide.not(this.toShow);
this.hideErrors();
this.addWrapper(this.toShow).show()
},validElements:function(){return this.currentElements.not(this.invalidElements())
},invalidElements:function(){return A(this.errorList).map(function(){return this.element
})
},showLabel:function(C,D){var B=this.errorsFor(C);
if(B.length){B.removeClass().addClass(this.settings.errorClass);
B.attr("generated")&&B.html(D)
}else{B=A("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(C),generated:true}).addClass(this.settings.errorClass).html(D||"");
if(this.settings.wrapper){B=B.hide().show().wrap("<"+this.settings.wrapper+"/>").parent()
}if(!this.labelContainer.append(B).length){this.settings.errorPlacement?this.settings.errorPlacement(B,A(C)):B.insertAfter(C)
}}if(!D&&this.settings.success){B.text("");
typeof this.settings.success=="string"?B.addClass(this.settings.success):this.settings.success(B)
}this.toShow=this.toShow.add(B)
},errorsFor:function(C){var B=this.idOrName(C);
return this.errors().filter(function(){return A(this).attr("for")==B
})
},idOrName:function(B){return this.groups[B.name]||(this.checkable(B)?B.name:B.id||B.name)
},checkable:function(B){return/radio|checkbox/i.test(B.type)
},findByName:function(B){var C=this.currentForm;
return A(document.getElementsByName(B)).map(function(D,E){return E.form==C&&E.name==B&&E||null
})
},getLength:function(C,B){switch(B.nodeName.toLowerCase()){case"select":return A("option:selected",B).length;
case"input":if(this.checkable(B)){return this.findByName(B.name).filter(":checked").length
}}return C.length
},depend:function(C,B){return this.dependTypes[typeof C]?this.dependTypes[typeof C](C,B):true
},dependTypes:{"boolean":function(C,B){return C
},string:function(C,B){return !!A(C,B.form).length
},"function":function(C,B){return C(B)
}},optional:function(B){return !A.validator.methods.required.call(this,A.trim(B.value),B)&&"dependency-mismatch"
},startRequest:function(B){if(!this.pending[B.name]){this.pendingRequest++;
this.pending[B.name]=true
}},stopRequest:function(B,C){this.pendingRequest--;
if(this.pendingRequest<0){this.pendingRequest=0
}delete this.pending[B.name];
if(C&&this.pendingRequest==0&&this.formSubmitted&&this.form()){A(this.currentForm).submit();
this.formSubmitted=false
}else{if(!C&&this.pendingRequest==0&&this.formSubmitted){A(this.currentForm).triggerHandler("invalid-form",[this]);
this.formSubmitted=false
}}},previousValue:function(B){return A.data(B,"previousValue")||A.data(B,"previousValue",{old:null,valid:true,message:this.defaultMessage(B,"remote")})
}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(B,C){B.constructor==String?this.classRuleSettings[B]=C:A.extend(this.classRuleSettings,B)
},classRules:function(C){var D={};
var B=A(C).attr("class");
B&&A.each(B.split(" "),function(){if(this in A.validator.classRuleSettings){A.extend(D,A.validator.classRuleSettings[this])
}});
return D
},attributeRules:function(C){var E={};
var B=A(C);
for(method in A.validator.methods){var D=B.attr(method);
if(D){E[method]=D
}}if(E.maxlength&&/-1|2147483647|524288/.test(E.maxlength)){delete E.maxlength
}return E
},metadataRules:function(B){if(!A.metadata){return{}
}var C=A.data(B.form,"validator").settings.meta;
return C?A(B).metadata()[C]:A(B).metadata()
},staticRules:function(C){var D={};
var B=A.data(C.form,"validator");
if(B.settings.rules){D=A.validator.normalizeRule(B.settings.rules[C.name])||{}
}return D
},normalizeRules:function(C,B){A.each(C,function(F,E){if(E===false){delete C[F];
return 
}if(E.param||E.depends){var D=true;
switch(typeof E.depends){case"string":D=!!A(E.depends,B.form).length;
break;
case"function":D=E.depends.call(B,B);
break
}if(D){C[F]=E.param!==undefined?E.param:true
}else{delete C[F]
}}});
A.each(C,function(D,E){C[D]=A.isFunction(E)?E(B):E
});
A.each(["minlength","maxlength","min","max"],function(){if(C[this]){C[this]=Number(C[this])
}});
A.each(["rangelength","range"],function(){if(C[this]){C[this]=[Number(C[this][0]),Number(C[this][1])]
}});
if(A.validator.autoCreateRanges){if(C.min&&C.max){C.range=[C.min,C.max];
delete C.min;
delete C.max
}if(C.minlength&&C.maxlength){C.rangelength=[C.minlength,C.maxlength];
delete C.minlength;
delete C.maxlength
}}if(C.messages){delete C.messages
}return C
},normalizeRule:function(C){if(typeof C=="string"){var B={};
A.each(C.split(/\s/),function(){B[this]=true
});
C=B
}return C
},addMethod:function(B,D,C){A.validator.methods[B]=D;
A.validator.messages[B]=C!=undefined?C:A.validator.messages[B];
if(D.length<3){A.validator.addClassRules(B,A.validator.normalizeRule(B))
}},methods:{required:function(C,B,E){if(!this.depend(E,B)){return"dependency-mismatch"
}switch(B.nodeName.toLowerCase()){case"select":var D=A(B).val();
return D&&D.length>0;
case"input":if(this.checkable(B)){return this.getLength(C,B)>0
}default:return A.trim(C).length>0
}},remote:function(F,C,G){if(this.optional(C)){return"dependency-mismatch"
}var D=this.previousValue(C);
if(!this.settings.messages[C.name]){this.settings.messages[C.name]={}
}D.originalMessage=this.settings.messages[C.name].remote;
this.settings.messages[C.name].remote=D.message;
G=typeof G=="string"&&{url:G}||G;
if(D.old!==F){D.old=F;
var B=this;
this.startRequest(C);
var E={};
E[C.name]=F;
A.ajax(A.extend(true,{url:G,mode:"abort",port:"validate"+C.name,dataType:"json",data:E,success:function(I){B.settings.messages[C.name].remote=D.originalMessage;
var K=I===true;
if(K){var H=B.formSubmitted;
B.prepareElement(C);
B.formSubmitted=H;
B.successList.push(C);
B.showErrors()
}else{var L={};
var J=(D.message=I||B.defaultMessage(C,"remote"));
L[C.name]=A.isFunction(J)?J(F):J;
B.showErrors(L)
}D.valid=K;
B.stopRequest(C,K)
}},G));
return"pending"
}else{if(this.pending[C.name]){return"pending"
}}return D.valid
},minlength:function(C,B,D){return this.optional(B)||this.getLength(A.trim(C),B)>=D
},maxlength:function(C,B,D){return this.optional(B)||this.getLength(A.trim(C),B)<=D
},rangelength:function(D,B,E){var C=this.getLength(A.trim(D),B);
return this.optional(B)||(C>=E[0]&&C<=E[1])
},min:function(C,B,D){return this.optional(B)||C>=D
},max:function(C,B,D){return this.optional(B)||C<=D
},range:function(C,B,D){return this.optional(B)||(C>=D[0]&&C<=D[1])
},email:function(C,B){return this.optional(B)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(C)
},url:function(C,B){return this.optional(B)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(C)
},date:function(C,B){return this.optional(B)||!/Invalid|NaN/.test(new Date(C))
},dateISO:function(C,B){return this.optional(B)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(C)
},number:function(C,B){return this.optional(B)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(C)
},digits:function(C,B){return this.optional(B)||/^\d+$/.test(C)
},creditcard:function(F,C){if(this.optional(C)){return"dependency-mismatch"
}if(/[^0-9-]+/.test(F)){return false
}var G=0,E=0,B=false;
F=F.replace(/\D/g,"");
for(var H=F.length-1;
H>=0;
H--){var D=F.charAt(H);
var E=parseInt(D,10);
if(B){if((E*=2)>9){E-=9
}}G+=E;
B=!B
}return(G%10)==0
},accept:function(C,B,D){D=typeof D=="string"?D.replace(/,/g,"|"):"png|jpe?g|gif";
return this.optional(B)||C.match(new RegExp(".("+D+")$","i"))
},equalTo:function(C,B,E){var D=A(E).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){A(B).valid()
});
return C==D.val()
}}});
A.format=A.validator.format
})(jQuery);
(function(C){var B=C.ajax;
var A={};
C.ajax=function(E){E=C.extend(E,C.extend({},C.ajaxSettings,E));
var D=E.port;
if(E.mode=="abort"){if(A[D]){A[D].abort()
}return(A[D]=B.apply(this,arguments))
}return B.apply(this,arguments)
}
})(jQuery);
(function(A){A.each({focus:"focusin",blur:"focusout"},function(C,B){A.event.special[B]={setup:function(){if(A.browser.msie){return false
}this.addEventListener(C,A.event.special[B].handler,true)
},teardown:function(){if(A.browser.msie){return false
}this.removeEventListener(C,A.event.special[B].handler,true)
},handler:function(D){arguments[0]=A.event.fix(D);
arguments[0].type=B;
return A.event.handle.apply(this,arguments)
}}
});
A.extend(A.fn,{delegate:function(D,C,B){return this.bind(D,function(E){var F=A(E.target);
if(F.is(C)){return B.apply(F,arguments)
}})
},triggerEvent:function(B,C){return this.triggerHandler(B,[A.event.fix({type:B,target:C})])
}})
})(jQuery);
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 2003 Albert Boton; published by FontShop International for the FontFont
 * library.
 * 
 * Trademark:
 * Cellini is a trademark of FSI Fonts und Software GmbH.
 * 
 * Manufacturer:
 * Albert Boton, published by FontShop International for the FontFont Library
 * 
 * Designer:
 * Albert Boton
 * 
 * Vendor URL:
 * http://www.fontfont.com
 * 
 * License information:
 * http://www.fontfont.com/eula/license.html
 */
Cufon.registerFont({w:193,face:{"font-family":"Cellini","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 0 8 0 0 2 0 4",ascent:"293",descent:"-67","x-height":"5",bbox:"-27 -334 347 72","underline-thickness":"7.2","underline-position":"-40.68","unicode-range":"U+0020-U+2122"},glyphs:{" ":{w:59},"\u00a0":{w:59},"\u00dd":{d:"172,-235r-58,141r0,84r31,0r0,10r-107,0r0,-10r33,0r0,-83r-57,-142r-15,0r0,-10r85,0r0,10r-24,0r47,124r52,-124r-27,0r0,-10r54,0r0,10r-14,0xm109,-270r-18,0r32,-56r40,0r0,4",w:182,k:{"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00c1":22,"\u00c2":22,"\u00d5":13,"\u00c3":22,"\u00c0":22,"\u00f8":29,"\u00e6":29,"\u00d8":13,"\u00c6":22,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":12,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":29,"\u00e3":29,"\u00e4":29,"\u00e2":29,"\u00e0":29,"\u00e1":29,"\u00d6":13,"\u00c7":13,"\u00c5":22,"\u00c4":22,z:12,y:12,x:12,w:12,v:12,u:12,t:12,s:12,r:12,q:29,p:12,o:29,n:12,m:12,j:12,g:29,f:12,e:29,d:29,c:29,a:29,Q:13,O:13,G:13,C:13,A:22,".":39}},"\u00fd":{d:"140,-153r-74,190v-4,11,-9,20,-16,26v-7,6,-16,9,-28,9v-5,0,-9,-1,-14,-2v-5,-1,-9,-3,-12,-6v-3,-3,-6,-6,-8,-10v-2,-4,-3,-8,-3,-14v0,-5,1,-10,4,-14v3,-4,7,-5,12,-5v5,0,9,0,11,3v2,3,3,6,3,10v0,2,0,4,-1,6v-1,2,-1,4,-1,6v0,5,1,8,3,11v2,3,5,4,11,4v7,0,13,-2,18,-8v5,-6,8,-12,11,-19v3,-8,7,-16,10,-25v3,-9,6,-16,8,-22r-57,-140r-18,0r0,-10r78,0r0,10r-21,0r36,94r35,-94r-24,0r0,-10r53,0r0,10r-16,0xm87,-189r-18,0r32,-56r40,0r0,4",w:150},"\u00de":{d:"191,-151v0,7,-2,14,-5,21v-3,7,-8,12,-14,17v-6,5,-12,9,-20,12v-8,3,-16,5,-25,5r-41,0r0,86r34,0r0,10r-105,0r0,-10r30,0r0,-225r-30,0r0,-10r102,0r0,10r-31,0r0,31r40,0v20,0,37,5,48,14v11,9,17,22,17,39xm149,-151v0,-6,-1,-12,-2,-17v-1,-5,-4,-10,-7,-14v-3,-4,-7,-7,-13,-9v-6,-2,-13,-3,-22,-3r-19,0r0,88r21,0v16,0,27,-4,33,-12v6,-8,9,-19,9,-33",w:203,k:{".":39}},"\u00fe":{d:"181,-81v0,12,-1,23,-4,34v-3,11,-7,20,-13,28v-6,8,-14,14,-23,18v-9,4,-20,6,-32,6v-12,0,-22,-2,-29,-7v-7,-5,-12,-10,-14,-16r0,75r30,0r0,10r-92,0r0,-10r28,0r0,-312r-27,0r0,-10r32,0r29,-3r0,125v4,-8,10,-15,17,-19v7,-4,16,-6,26,-6v12,0,23,2,32,7v9,5,17,11,23,19v6,8,10,18,13,28v3,10,4,21,4,33xm141,-84v0,-25,-3,-43,-9,-55v-6,-12,-16,-18,-29,-18v-8,0,-14,2,-19,6v-5,4,-9,9,-12,15v-3,6,-5,13,-6,20v-1,7,-2,14,-2,20r0,30v0,6,1,14,2,21v1,7,3,13,6,19v3,6,7,11,12,15v5,4,12,6,20,6v9,0,15,-2,20,-7v5,-5,8,-11,11,-19v3,-8,4,-16,5,-25v1,-9,1,-19,1,-28",w:195},"\u00bd":{d:"163,0r0,-11v12,-9,11,-10,24,-20v9,-7,17,-13,24,-20v9,-9,15,-18,18,-27v3,-9,4,-19,4,-30r0,-11v0,0,-1,-7,-3,-10v-2,-3,-4,-6,-7,-8v-3,-2,-7,-3,-12,-3v-5,0,-9,1,-13,4v-4,3,-6,8,-6,16r0,5v0,0,1,2,1,4v0,3,-1,5,-3,8v-2,3,-5,4,-9,4v-5,0,-9,-2,-11,-5v-2,-3,-3,-7,-3,-11v0,-6,1,-11,4,-15v3,-4,7,-8,11,-11v4,-3,9,-5,15,-6v6,-1,10,-1,16,-1v7,0,13,0,19,2v6,2,12,4,16,7v4,3,7,7,10,12v3,5,4,11,4,18v0,12,-4,23,-11,32v-7,9,-15,18,-24,26r-15,13v-5,4,-5,4,-8,7v-3,3,-3,2,-5,4v-1,1,-3,3,-6,5r63,0r0,-13r8,0r0,35r-101,0xm13,-100r0,-9r31,0r0,-121r-31,11r0,-11r46,-15r12,0r0,136r31,0r0,9r-89,0xm83,0r-16,0r124,-245r16,0",w:273},"\u00bc":{d:"231,-34r0,34r-25,0r0,-34r-69,0r0,-13r83,-98r17,0r-80,95r49,0r0,-48r25,0r0,48r27,0r0,16r-27,0xm13,-100r0,-9r31,0r0,-121r-31,11r0,-11r46,-15r12,0r0,136r31,0r0,9r-89,0xm85,0r-17,0r125,-245r16,0",w:272},"\u00b9":{d:"10,-100r0,-9r31,0r0,-124r-31,12r0,-12r45,-14r13,0r0,138r31,0r0,9r-89,0",w:106},"\u00be":{d:"116,-140v0,7,-1,13,-4,18v-3,5,-8,9,-13,13v-5,4,-11,7,-18,9v-7,2,-14,3,-22,3v-6,0,-12,-1,-18,-2v-6,-1,-10,-3,-15,-6v-5,-3,-9,-6,-12,-10v-3,-4,-5,-8,-5,-14v0,-2,1,-4,1,-6v0,-2,1,-3,2,-5v1,-2,3,-3,5,-4v2,-1,4,-2,7,-2v3,0,5,1,7,3v2,2,4,5,4,9v0,1,-1,2,-2,4v-1,2,-1,4,-1,5v0,6,3,11,8,14v5,3,12,3,19,3v5,0,9,0,13,-2v4,-2,7,-5,9,-8v2,-3,4,-6,5,-10v1,-4,1,-8,1,-12v0,-5,0,-10,-1,-14v-1,-4,-2,-9,-4,-12v-2,-3,-5,-5,-9,-7v-4,-2,-10,-2,-17,-2r-4,0r-4,0r0,-12r4,0r3,0v11,0,18,-2,22,-6v4,-4,6,-11,6,-21v0,-7,-1,-14,-5,-19v-4,-5,-10,-7,-19,-7v-9,0,-15,2,-18,5v-3,3,-5,9,-5,15v0,1,1,2,1,4r0,4v0,2,-1,3,-3,5v-2,2,-4,3,-6,3v-5,0,-8,-2,-10,-5v-2,-3,-3,-6,-3,-9v0,-6,1,-11,4,-15v3,-4,7,-7,11,-10v4,-3,9,-4,14,-5v5,-1,10,-2,16,-2v6,0,12,1,18,2v6,1,12,3,17,6v5,3,8,6,11,11v3,5,5,10,5,17v0,10,-4,18,-11,23v-7,5,-17,9,-28,10v13,1,24,5,32,12v8,7,12,17,12,29xm244,-34r0,34r-25,0r0,-34r-69,0r0,-13r83,-101r17,0r-80,98r49,0r0,-48r25,0r0,48r27,0r0,16r-27,0xm91,0r-16,0r124,-245r16,0",w:278},"\u00b3":{d:"110,-140v0,7,-1,13,-4,18v-3,5,-8,9,-13,13v-5,4,-11,7,-18,9v-7,2,-14,3,-22,3v-6,0,-12,-1,-18,-2v-6,-1,-11,-3,-16,-6v-5,-3,-8,-6,-11,-10v-3,-4,-5,-8,-5,-14v0,-2,1,-4,1,-6v0,-2,1,-3,2,-5v1,-2,2,-3,4,-4v2,-1,5,-2,8,-2v3,0,5,1,7,3v2,2,3,5,3,9v0,1,0,2,-1,4v-1,2,-1,4,-1,5v0,6,3,11,8,14v5,3,12,3,19,3v5,0,9,0,13,-2v4,-2,7,-5,9,-8v2,-3,4,-6,5,-10v1,-4,1,-8,1,-12v0,-5,0,-10,-1,-14v-1,-4,-2,-9,-4,-12v-2,-3,-6,-5,-10,-7v-4,-2,-9,-2,-16,-2r-4,0r-4,0r0,-12r4,0r3,0v11,0,18,-2,22,-6v4,-4,6,-11,6,-21v0,-7,-1,-14,-5,-19v-4,-5,-10,-7,-19,-7v-9,0,-15,2,-18,5v-3,3,-5,9,-5,15r0,4v0,0,1,3,1,4v0,2,-1,3,-3,5v-2,2,-4,3,-6,3v-5,0,-8,-2,-10,-5v-2,-3,-3,-6,-3,-9v0,-6,1,-11,4,-15v3,-4,6,-7,10,-10v4,-3,9,-4,14,-5v5,-1,11,-2,17,-2v6,0,12,1,18,2v6,1,12,3,17,6v5,3,8,6,11,11v3,5,4,10,4,17v0,10,-4,18,-11,23v-7,5,-16,9,-27,10v13,1,24,5,32,12v8,7,12,17,12,29",w:126},"\u00b2":{d:"13,-100r0,-11v12,-9,12,-9,25,-20v9,-7,17,-14,24,-21v9,-9,15,-19,18,-28v3,-9,5,-19,5,-30v0,-4,-1,-7,-1,-11v0,-4,-1,-7,-3,-10v-2,-3,-4,-6,-7,-8v-3,-2,-7,-4,-12,-4v-5,0,-10,2,-14,5v-4,3,-6,8,-6,16v0,2,1,4,1,5v0,1,1,2,1,4v0,3,-2,5,-4,8v-2,3,-5,4,-9,4v-5,0,-8,-2,-11,-5v-3,-3,-3,-7,-3,-11v0,-6,1,-12,4,-16v3,-4,7,-7,11,-10v4,-3,9,-5,15,-6v6,-1,11,-2,17,-2v7,0,14,0,20,2v6,2,10,5,15,8v5,3,8,7,11,12v3,5,4,11,4,18v0,12,-4,23,-11,32v-7,9,-15,19,-25,27v-10,9,-10,10,-15,14v-5,4,-5,4,-8,6v-3,2,-3,3,-5,5v-2,1,-4,3,-7,5r65,0r0,-14r8,0r0,36r-103,0",w:137},"\u00a6":{d:"30,-145r0,-101r20,0r0,101r-20,0xm30,0r0,-101r20,0r0,101r-20,0",w:79},"\u00d7":{d:"111,-81r68,68r-16,15r-68,-68r-67,68r-16,-16r68,-68r-68,-68r15,-15r68,67r69,-68r16,16",w:190},"!":{d:"89,-213v0,5,0,10,-1,15v-1,5,-2,11,-3,17v-1,6,-3,11,-4,16r-3,15v-2,10,-3,20,-4,30v-1,10,-2,20,-2,31r0,15v0,5,0,11,1,16r-14,0v0,-5,2,-10,2,-16r0,-15v0,-11,-1,-21,-2,-31v-1,-10,-3,-20,-5,-30v0,-3,-1,-7,-2,-12v-1,-5,-3,-11,-4,-17r-3,-18v0,0,-1,-11,-1,-15v0,-3,0,-7,1,-11v1,-4,1,-9,3,-13v2,-4,4,-7,7,-10v3,-3,7,-5,12,-5v5,0,8,2,11,5v3,3,5,5,7,9v2,4,3,9,3,13v0,4,1,8,1,11xm92,-21v0,7,-3,14,-8,19v-5,5,-11,7,-18,7v-7,0,-14,-2,-19,-7v-5,-5,-8,-12,-8,-19v0,-7,3,-13,8,-18v5,-5,12,-8,19,-8v7,0,13,3,18,8v5,5,8,11,8,18",w:131},'"':{d:"110,-230v0,3,0,6,-1,10v-1,6,-1,5,-3,13v-1,5,-3,12,-4,20v-1,8,-3,17,-4,28r-11,0v-1,-11,-3,-20,-4,-28v-1,-8,-3,-15,-4,-20v-1,-5,-2,-9,-3,-13v-1,-4,-1,-7,-1,-10v0,-4,0,-10,3,-14v3,-4,8,-6,15,-6v7,0,12,2,14,6v2,4,3,10,3,14xm57,-230v0,3,0,5,-1,9v-1,5,-1,6,-3,14v-1,5,-3,11,-4,19v-1,8,-3,18,-4,29r-10,0v-1,-11,-3,-20,-5,-28v-2,-8,-3,-15,-4,-20v-2,-8,-2,-7,-3,-13v-1,-4,-1,-7,-1,-10v0,-4,1,-10,3,-14v2,-4,7,-6,14,-6v7,0,11,2,14,6v3,4,4,10,4,14",w:131},"#":{d:"182,-167r-33,0r-20,88r32,0r-3,16r-32,0r-15,63r-18,0r14,-63r-47,0r-14,63r-19,0r15,-63r-33,0r3,-16r33,0r20,-88r-32,0r3,-15r33,0r14,-63r19,0r-14,63r46,0r14,-63r19,0r-14,63r32,0xm84,-167r-20,88r47,0r20,-88r-47,0"},"$":{d:"179,-68v0,11,-2,20,-6,29v-4,9,-9,17,-16,23v-7,6,-15,11,-24,15v-9,4,-19,5,-29,6r0,31r-16,0r0,-31v-6,-1,-11,-2,-16,-3v-5,-1,-10,-3,-14,-4v-4,-1,-7,-2,-11,-3v-4,-1,-7,-2,-10,-2v-3,0,-4,1,-6,2v-2,1,-3,3,-3,5r-10,0r0,-73r11,0v1,8,3,16,6,23v3,7,8,14,13,20v5,6,10,12,17,16v7,4,15,7,23,8r0,-102v-9,-3,-18,-6,-26,-10v-8,-4,-15,-8,-22,-14v-7,-6,-12,-12,-16,-20v-4,-8,-6,-19,-6,-31v0,-11,1,-20,5,-28v4,-8,9,-14,15,-20v6,-6,13,-10,22,-13v9,-3,18,-5,28,-5r0,-30r16,0r0,30v9,1,17,4,24,7v7,3,12,5,17,5v5,0,8,-2,10,-7r9,0r0,68r-10,0v0,0,0,-3,-1,-9v-1,-6,-4,-12,-7,-19v-3,-7,-8,-14,-15,-20v-7,-6,-16,-11,-27,-13r0,88v1,0,3,1,4,1v1,0,2,1,3,1v11,4,21,9,29,13v8,4,15,10,21,16v6,6,10,13,13,21v3,8,5,17,5,29xm154,-53v0,-8,-1,-14,-4,-19v-3,-5,-6,-10,-11,-13v-5,-3,-10,-7,-16,-9v-9,-4,-10,-3,-19,-7r0,95v14,-1,27,-5,36,-13v9,-8,14,-19,14,-34xm88,-238v-6,0,-12,1,-18,3v-6,2,-11,5,-15,8v-4,3,-8,8,-10,13v-2,5,-3,11,-3,17v0,6,1,11,4,15v3,4,6,8,10,11v4,3,9,5,15,8v6,3,11,5,17,7r0,-82"},"%":{d:"334,-73v0,8,-1,18,-3,27v-2,9,-6,17,-11,25v-5,8,-11,14,-20,19v-9,5,-20,7,-32,7v-12,0,-22,-2,-31,-7v-9,-5,-16,-11,-21,-18v-5,-7,-9,-15,-12,-24v-3,-9,-3,-17,-3,-25v0,-8,1,-18,3,-27v2,-9,7,-17,12,-25v5,-8,12,-14,21,-19v9,-5,20,-8,32,-8v12,0,23,2,31,7v8,5,15,11,20,18v5,7,9,16,11,25v2,9,3,17,3,25xm153,-179v0,8,-1,17,-3,26v-2,9,-6,17,-11,25v-5,8,-12,14,-20,19v-8,5,-20,8,-32,8v-12,0,-21,-2,-30,-7v-9,-5,-17,-11,-22,-18v-5,-7,-8,-15,-11,-24v-3,-9,-4,-18,-4,-26v0,-8,1,-17,3,-26v2,-9,7,-18,12,-26v5,-8,12,-14,21,-19v9,-5,20,-8,32,-8v12,0,23,2,31,7v8,5,15,12,20,19v5,7,9,15,11,24v2,9,3,18,3,26xm301,-72r0,-18v0,0,-2,-15,-4,-22v-2,-7,-6,-13,-10,-18v-4,-5,-11,-8,-18,-8v-8,0,-14,3,-18,8v-4,5,-8,11,-10,18v-2,7,-3,15,-4,23v-1,8,-1,14,-1,19v0,5,0,12,1,19v1,7,2,15,4,22v2,7,6,12,10,17v4,5,10,7,17,7v8,0,14,-2,18,-7v4,-5,8,-11,10,-18v2,-7,3,-14,4,-22v1,-8,1,-14,1,-20xm121,-178v0,-5,-1,-12,-1,-19v0,-7,-2,-15,-4,-22v-2,-7,-6,-13,-10,-18v-4,-5,-10,-7,-17,-7v-8,0,-15,2,-19,7v-4,5,-8,11,-10,18v-2,7,-3,15,-4,23v-1,8,-1,15,-1,20v0,5,0,12,1,19v1,7,3,14,5,21v2,7,6,13,10,18v4,5,9,7,16,7v8,0,15,-3,19,-8v4,-5,8,-11,10,-18v2,-7,3,-14,4,-22v1,-8,1,-13,1,-19xm125,0r-22,0r124,-245r21,0",w:353},"&":{d:"189,0r-8,-10v-4,-4,-3,-5,-7,-9v-4,-4,-4,-5,-7,-8v-8,12,-17,20,-29,25v-12,5,-24,7,-38,7v-10,0,-19,-1,-29,-4v-10,-3,-18,-6,-26,-11v-8,-5,-14,-12,-19,-20v-5,-8,-8,-17,-8,-28v0,-10,2,-18,6,-26v4,-8,9,-15,15,-22v6,-7,13,-12,20,-18v11,-8,11,-9,22,-17v-6,-8,-11,-17,-15,-27v-4,-10,-7,-20,-7,-30v0,-8,2,-16,5,-22v3,-6,7,-12,12,-17v5,-5,12,-7,19,-10v7,-3,15,-4,23,-4v6,0,12,0,18,2v6,2,11,4,15,7v4,3,8,7,10,12v2,5,3,10,3,16v0,7,-2,13,-5,19v-3,6,-7,11,-12,16v-5,5,-9,10,-15,14r-16,12v8,10,7,11,15,21r16,21r15,20v0,0,6,7,9,11v2,3,4,6,5,7r2,2r0,-2v0,0,1,-2,2,-4r2,-6v1,-2,1,-4,2,-6v3,-9,3,-8,6,-17v2,-6,5,-11,8,-16v3,-5,7,-8,12,-11v5,-3,11,-5,18,-5v7,0,13,3,17,8v4,5,7,11,7,17v0,5,-1,10,-4,14v-3,4,-7,6,-13,6v-4,0,-7,0,-10,-3v-3,-3,-5,-6,-5,-10r0,-4v0,0,1,-3,1,-4v0,-2,0,-4,-1,-5v-1,-1,-3,-2,-6,-2v-2,0,-3,1,-5,2v-2,1,-3,4,-5,7v-2,3,-3,7,-5,12v-2,5,-5,11,-7,18v-1,3,-2,6,-3,10v-1,4,-3,8,-4,11r41,51r29,0r0,10r-66,0xm113,-97r-25,-34v-6,5,-11,9,-15,14v-4,5,-7,10,-9,16v-2,6,-3,12,-4,18v-1,6,-1,12,-1,19v0,8,1,16,3,23v2,7,5,13,9,18v4,5,10,9,16,12v6,3,14,5,23,5v4,0,9,-1,14,-3v5,-2,10,-3,15,-6v5,-3,8,-6,12,-10v4,-4,6,-7,8,-11xm150,-213v0,-5,-1,-10,-3,-13v-2,-3,-4,-6,-7,-8v-3,-2,-7,-5,-11,-6v-4,-1,-9,-1,-13,-1v-8,0,-16,3,-22,8v-6,5,-9,12,-9,21v0,4,1,8,3,13v2,5,4,8,6,13v2,5,5,9,8,13v4,6,4,6,7,11v6,-5,6,-4,13,-10v5,-4,10,-8,14,-12v4,-4,7,-9,10,-14v3,-5,4,-9,4,-15",w:251},"'":{d:"57,-230v0,3,0,5,-1,9v-1,5,-1,6,-3,14v-1,5,-3,11,-4,19v-1,8,-3,18,-4,29r-10,0v-1,-11,-3,-20,-5,-28v-2,-8,-3,-15,-4,-20v-2,-8,-2,-7,-3,-13v-1,-4,-1,-7,-1,-10v0,-4,1,-10,3,-14v2,-4,7,-6,14,-6v7,0,11,2,14,6v3,4,4,10,4,14",w:78},"(":{d:"91,71v-11,-11,-20,-22,-29,-35v-9,-13,-16,-25,-22,-39v-6,-14,-10,-28,-13,-43v-3,-15,-5,-29,-5,-44v0,-30,6,-59,19,-86v13,-27,30,-52,52,-75r5,5v0,0,4,3,6,5v-10,10,-18,21,-25,33v-7,12,-12,24,-17,37v-5,13,-8,26,-10,40v-2,14,-3,27,-3,41v0,28,4,54,13,80v9,26,23,49,42,71",w:109},")":{d:"87,-90v0,30,-6,59,-19,86v-13,27,-29,52,-51,75v-2,-2,-4,-3,-6,-5r-6,-6v10,-10,18,-20,25,-32v7,-12,13,-24,18,-37v5,-13,7,-26,9,-40v2,-14,3,-27,3,-41v0,-28,-3,-55,-12,-81v-9,-26,-24,-49,-43,-71r13,-9v11,11,20,21,29,34v9,13,16,26,22,40v6,14,11,28,14,43v3,15,4,29,4,44",w:109},"*":{d:"136,-207v0,5,-2,9,-6,11v-4,2,-8,3,-13,3r-38,0r9,7v0,0,6,3,11,7v5,4,5,4,11,8r6,6v0,0,2,5,2,8v0,4,-1,7,-4,10v-3,3,-6,5,-10,5v-3,0,-6,-1,-9,-4v-3,-3,-5,-6,-6,-9r-12,-37r-13,37v-1,3,-3,6,-6,9v-3,3,-6,4,-10,4v-10,0,-15,-5,-15,-15v0,-3,1,-6,3,-8v2,-2,4,-4,7,-6r32,-23r-39,1v-5,0,-10,-1,-13,-4v-3,-3,-5,-6,-5,-10v0,-4,1,-8,4,-11v3,-3,6,-4,11,-4v2,0,4,0,6,1v2,1,4,3,5,4r32,21r-13,-37v0,-1,-1,-2,-1,-4r0,-3v0,-5,0,-8,3,-11v3,-3,6,-4,11,-4v4,0,7,1,10,4v3,3,4,7,4,11r0,3v0,0,-1,3,-1,4r-11,37v4,-3,4,-3,10,-6v4,-2,7,-5,10,-7r12,-8v3,-2,2,-3,5,-4v2,-1,4,-1,6,-1v4,0,7,1,10,4v3,3,5,7,5,11",w:143},"+":{d:"106,-71r0,71r-22,0r0,-71r-72,0r0,-21r72,0r0,-71r22,0r0,71r73,0r0,21r-73,0",w:190},",":{d:"88,4v0,15,-4,27,-12,37v-8,10,-21,16,-35,16r-2,-7v12,-1,21,-5,28,-12v7,-7,10,-17,10,-29v0,-6,-1,-10,-2,-14v-1,-4,-3,-7,-5,-10v1,5,0,10,-3,15v-3,5,-9,8,-18,8v-6,0,-12,-2,-17,-7v-5,-5,-7,-11,-7,-17v0,-7,3,-14,8,-18v5,-4,11,-6,17,-6v6,0,11,0,16,3v5,3,9,6,12,10v3,4,6,9,8,14v2,5,2,11,2,17",w:108},"-":{d:"5,-71r0,-21r99,0r0,21r-99,0",w:109},"\u00ad":{d:"5,-71r0,-21r99,0r0,21r-99,0",w:109},".":{d:"78,-21v0,7,-3,14,-8,19v-5,5,-12,7,-19,7v-7,0,-13,-2,-18,-7v-5,-5,-8,-12,-8,-19v0,-7,3,-13,8,-18v5,-5,11,-8,18,-8v7,0,14,3,19,8v5,5,8,11,8,18",w:102},"/":{d:"37,0r-23,0r80,-245r24,0",w:130},"0":{d:"177,-124v0,14,0,29,-3,44v-3,15,-8,28,-14,41v-6,13,-15,24,-25,32v-10,8,-23,12,-39,12v-15,0,-28,-3,-38,-11v-10,-8,-19,-18,-25,-30v-6,-12,-10,-25,-13,-40v-3,-15,-4,-29,-4,-42v0,-9,1,-20,2,-30v1,-10,2,-20,5,-30v3,-10,7,-18,11,-27v4,-9,9,-16,15,-23v6,-7,13,-12,21,-16v8,-4,17,-6,27,-6v11,0,20,1,28,5v8,4,15,9,21,15v6,6,11,14,15,22v4,8,8,18,10,27v2,9,4,18,5,28v1,10,1,20,1,29xm135,-122r0,-21v0,0,0,-15,-1,-24v-1,-9,-2,-18,-4,-26v-2,-8,-3,-15,-6,-22v-3,-7,-7,-13,-11,-17v-4,-4,-9,-6,-15,-6v-7,0,-12,2,-17,6v-5,4,-9,9,-12,16v-3,7,-4,14,-6,23v-2,9,-3,17,-4,26v-1,9,-1,18,-1,26r0,22r0,21v0,0,0,16,1,24v1,8,1,17,3,25v2,8,4,15,7,21v3,6,7,12,11,16v4,4,10,6,16,6v10,0,17,-4,22,-13v5,-9,9,-19,12,-31v3,-12,5,-25,5,-38r0,-34"},"1":{d:"43,0r0,-10r42,0r0,-211r-45,18r0,-16r68,-25r15,0r0,234r41,0r0,10r-121,0"},"2":{d:"171,-48v0,4,-1,9,-1,15r0,15r0,18r-153,0r0,-15r50,-48v9,-9,17,-17,25,-27v8,-10,15,-20,20,-30v5,-10,10,-21,13,-32v3,-11,4,-21,4,-32v0,-6,0,-12,-1,-19v-1,-7,-2,-13,-5,-18v-3,-5,-7,-10,-12,-13v-5,-3,-11,-5,-19,-5v-11,0,-19,3,-25,9v-6,6,-9,14,-9,26v0,4,1,7,2,10v1,3,1,7,1,9v0,5,-1,10,-4,13v-3,3,-9,5,-15,5v-3,0,-6,-1,-8,-3v-2,-2,-5,-3,-6,-6r-3,-9v0,0,-1,-6,-1,-9v0,-10,2,-18,6,-25v4,-7,10,-14,16,-18v6,-4,14,-7,22,-9v8,-2,17,-3,26,-3v11,0,21,0,30,3v9,3,17,7,24,13v7,6,12,12,16,20v4,8,6,18,6,29v0,10,-3,20,-6,29v-3,9,-7,17,-13,25v-6,8,-12,16,-19,23r-22,21v-13,12,-12,11,-20,19r-13,13v-3,3,-6,5,-8,7r-5,5r-6,6v0,0,-3,3,-9,8r112,0r0,-20r10,0"},"3":{d:"173,-67v0,11,-3,21,-7,30v-4,9,-10,17,-17,23v-7,6,-16,12,-26,15v-10,3,-21,5,-33,5v-8,0,-16,-1,-24,-2v-8,-1,-16,-4,-23,-8v-7,-4,-12,-9,-17,-15v-5,-6,-7,-14,-7,-24v0,-6,1,-11,4,-16v3,-5,8,-8,15,-8v5,0,8,1,11,4v3,3,5,6,5,11v0,3,0,5,-1,8v-1,3,-1,5,-1,8v0,6,1,11,3,15v2,4,5,7,8,10v3,3,8,4,13,5v5,1,10,2,15,2v8,0,15,-2,20,-6v5,-4,9,-8,12,-14v3,-6,6,-13,7,-21v1,-8,2,-15,2,-23v0,-10,-1,-18,-2,-26v-1,-8,-4,-14,-7,-19v-3,-5,-8,-9,-14,-12v-6,-3,-15,-4,-25,-4r-5,0r-5,0r0,-12v2,0,3,1,3,1r3,0v16,0,27,-5,33,-13v6,-8,10,-20,10,-37v0,-6,0,-12,-1,-18v-1,-6,-3,-12,-6,-17v-3,-5,-6,-9,-10,-12v-4,-3,-10,-4,-16,-4v-13,0,-21,3,-26,10v-5,7,-7,17,-7,29v0,2,0,4,1,6v1,2,1,4,1,6v0,3,-2,7,-4,9v-2,2,-6,4,-9,4v-4,0,-7,-1,-10,-2v-3,-1,-5,-3,-7,-5v-2,-2,-3,-5,-4,-8v-1,-3,-1,-6,-1,-9v0,-10,2,-18,6,-24v4,-6,9,-11,16,-15v7,-4,14,-7,22,-8v8,-1,16,-2,24,-2v10,0,19,1,27,3v8,2,16,6,22,11v6,5,11,11,15,19v4,8,6,17,6,28v0,8,-1,15,-4,21v-3,6,-6,11,-11,16v-5,5,-11,8,-18,11v-7,3,-13,5,-21,6v10,1,18,3,26,7v8,4,15,9,21,15v6,6,10,12,13,20v3,8,5,17,5,26"},"4":{d:"144,-58r0,58r-35,0r0,-58r-96,0r0,-19r120,-168r18,0r-122,168r80,0r0,-84r35,0r0,84r38,0r0,19r-38,0"},"5":{d:"175,-81v0,12,-2,24,-6,35v-4,11,-10,19,-17,27v-7,8,-17,14,-27,18v-10,4,-22,6,-35,6v-10,0,-18,0,-27,-2v-9,-2,-16,-6,-23,-10v-7,-4,-12,-9,-16,-16v-4,-7,-5,-15,-5,-25v0,-7,2,-13,6,-18v4,-5,9,-8,15,-8v7,0,11,1,14,4v3,3,4,7,4,12v0,2,0,4,-1,6v-1,3,-2,3,-3,5v-1,2,-1,3,-2,5v-1,2,-1,4,-1,6v0,10,3,19,10,24v7,5,17,8,29,8v10,0,18,-3,24,-7v6,-4,11,-11,14,-18v3,-7,5,-15,6,-24v1,-9,1,-19,1,-28v0,-9,0,-16,-1,-24v-1,-8,-4,-14,-7,-20v-3,-6,-7,-10,-13,-13v-6,-3,-12,-5,-21,-5v-7,0,-14,2,-21,5v-7,3,-13,6,-18,11v-2,1,-3,3,-4,5v-1,2,-3,4,-4,6r-9,-1r2,-18r1,-90v0,-6,1,-10,4,-13v3,-3,8,-5,15,-5r85,0v5,0,8,-2,10,-5v2,-3,2,-6,3,-9r8,1v-1,5,-3,10,-4,14v-1,4,-1,9,-2,14v-2,6,-4,10,-6,12v-2,2,-8,3,-14,3r-43,0r-41,0v0,12,-1,25,-1,38v0,13,-1,25,-1,36v7,-6,15,-9,23,-12v8,-3,17,-5,26,-5v11,0,21,2,30,5v9,3,17,9,23,15v6,6,12,14,15,23v3,9,5,20,5,32"},"6":{d:"178,-77v0,12,-2,23,-5,33v-3,10,-8,19,-15,26v-7,7,-15,13,-24,17v-9,4,-20,6,-32,6v-14,0,-26,-2,-36,-7v-10,-5,-19,-12,-26,-21v-7,-9,-12,-21,-15,-33v-3,-12,-5,-25,-5,-40v0,-25,4,-47,11,-66v7,-19,18,-35,31,-47v13,-12,29,-22,47,-28v18,-6,37,-9,58,-9r0,9v-15,0,-28,3,-41,8v-13,5,-24,12,-34,22v-10,10,-18,21,-24,35v-6,14,-10,30,-11,47v6,-10,11,-18,18,-23v7,-5,16,-6,27,-6v11,0,22,2,31,5v9,3,17,8,24,15v7,7,12,14,16,24v4,10,5,21,5,33xm140,-76v0,-7,-1,-15,-2,-23v-1,-8,-3,-15,-6,-21v-3,-6,-7,-12,-12,-16v-5,-4,-12,-6,-19,-6v-8,0,-14,2,-20,6v-6,4,-10,10,-13,16v-3,6,-6,13,-8,21v-2,8,-2,16,-2,23v0,8,0,16,2,24v2,8,4,16,8,23v4,7,8,13,14,17v6,4,12,7,20,7v8,0,14,-3,19,-7v5,-4,9,-9,12,-16v3,-7,5,-14,6,-23v1,-9,1,-17,1,-25"},"7":{d:"172,-228v-5,8,-10,16,-15,26v-8,14,-7,15,-14,28r-16,30v-3,5,-6,12,-9,19v-3,7,-5,15,-8,23v-3,8,-5,18,-7,27v-2,9,-2,17,-2,26v0,7,1,13,2,18v1,5,2,10,2,16v0,6,-2,11,-5,15v-3,4,-8,5,-16,5v-4,0,-6,0,-9,-2v-3,-2,-5,-4,-6,-7r-3,-9v0,0,-1,-7,-1,-10v0,-8,0,-15,2,-23v2,-8,3,-15,6,-22r9,-22v0,0,7,-14,11,-21v13,-26,12,-26,26,-52r28,-51r-114,0r0,25r-9,0r0,-56r148,0r0,17"},"8":{d:"179,-64v0,11,-2,20,-6,29v-4,9,-10,16,-17,22v-7,6,-16,11,-26,14v-10,3,-20,4,-31,4v-12,0,-23,0,-33,-3v-10,-3,-19,-7,-27,-12v-8,-5,-13,-13,-18,-21v-5,-8,-7,-18,-7,-30v0,-9,2,-16,5,-23v3,-7,8,-13,14,-18v6,-5,13,-8,20,-12v11,-6,11,-7,22,-12v-6,-3,-12,-6,-18,-10v-6,-4,-10,-9,-15,-14v-5,-5,-8,-11,-11,-17v-3,-6,-5,-12,-5,-19v0,-21,7,-37,20,-48v13,-11,31,-16,55,-16v9,0,18,1,26,3v8,2,15,7,21,11v6,4,11,10,15,16v4,6,5,14,5,22v0,8,-1,15,-4,21v-3,6,-6,11,-11,15v-5,4,-10,9,-16,12v-9,5,-10,5,-20,10v9,4,18,9,25,14v7,5,13,10,19,16v6,6,10,13,13,20v3,7,5,16,5,26xm156,-48v0,-8,-1,-15,-4,-21v-3,-6,-6,-11,-11,-16v-5,-5,-10,-9,-16,-12r-18,-10v-2,-1,-5,-3,-7,-4v-2,-1,-4,-2,-7,-4v-4,-2,-4,-2,-9,-5v-12,7,-22,16,-27,26v-5,10,-8,22,-8,36v0,7,0,15,2,21v2,6,5,11,9,16v4,5,9,8,16,11v7,3,14,4,24,4v7,0,14,0,21,-2v7,-2,13,-4,18,-7v5,-3,9,-9,12,-14v3,-5,5,-11,5,-19xm137,-193v0,-8,-1,-15,-3,-21v-2,-6,-6,-10,-10,-14v-4,-4,-8,-7,-13,-9v-5,-2,-11,-2,-17,-2v-5,0,-10,1,-15,2v-5,1,-10,4,-14,7v-4,3,-7,6,-10,11v-3,5,-4,11,-4,17v0,5,0,9,2,13v2,4,4,7,7,10v3,3,6,6,10,9v6,4,6,3,11,7r9,6r9,6v0,0,6,4,8,5v11,-6,18,-12,23,-19v5,-7,7,-17,7,-28"},"9":{d:"175,-128v0,22,-3,42,-10,59v-7,17,-16,31,-28,42v-12,11,-27,20,-44,26v-17,6,-36,9,-57,9r0,-11v18,0,34,-3,47,-9v13,-6,24,-12,33,-22v9,-10,15,-22,19,-36v4,-14,6,-29,6,-46r0,-8v0,0,-1,-5,-1,-8v-3,15,-8,26,-17,33v-9,7,-20,11,-34,11v-11,0,-20,-2,-29,-6v-9,-4,-17,-9,-23,-16v-6,-7,-12,-15,-15,-24v-3,-9,-5,-20,-5,-31v0,-12,2,-23,6,-33v4,-10,10,-19,17,-26v7,-7,16,-12,25,-16v9,-4,19,-6,30,-6v16,0,30,4,40,11v10,7,18,16,24,27v6,11,11,24,13,38v2,14,3,28,3,42xm135,-165v0,-7,0,-15,-1,-23v-1,-8,-4,-17,-7,-24v-3,-7,-7,-12,-12,-17v-5,-5,-12,-7,-20,-7v-8,0,-14,3,-20,7v-6,4,-10,10,-13,17v-3,7,-6,15,-7,23v-1,8,-2,16,-2,24v0,7,2,15,3,23v1,8,4,15,7,21v3,6,7,11,12,15v5,4,11,6,19,6v8,0,15,-2,20,-6v5,-4,9,-8,12,-14v3,-6,6,-13,7,-21v1,-8,2,-16,2,-24"},":":{d:"81,-141v0,7,-3,13,-8,18v-5,5,-12,8,-19,8v-7,0,-13,-3,-18,-8v-5,-5,-8,-11,-8,-18v0,-7,3,-14,8,-19v5,-5,11,-7,18,-7v7,0,14,2,19,7v5,5,8,12,8,19xm78,-21v0,7,-3,14,-8,19v-5,5,-12,7,-19,7v-7,0,-13,-2,-18,-7v-5,-5,-8,-12,-8,-19v0,-7,3,-13,8,-18v5,-5,11,-8,18,-8v7,0,14,3,19,8v5,5,8,11,8,18",w:105},";":{d:"91,-1v0,16,-4,30,-13,40v-9,10,-21,16,-36,17r-2,-7v12,-1,22,-6,29,-13v7,-7,10,-18,10,-31v0,-6,-1,-10,-2,-14v-1,-4,-3,-7,-5,-10v1,6,0,10,-3,15v-3,5,-10,8,-19,8v-7,0,-12,-2,-17,-7v-5,-5,-8,-11,-8,-18v0,-8,3,-14,8,-19v5,-5,11,-7,18,-7v6,0,12,1,17,4v5,3,10,6,13,10v3,4,6,9,8,15v2,6,2,11,2,17xm77,-143v0,7,-3,14,-8,19v-5,5,-11,7,-18,7v-7,0,-13,-2,-18,-7v-5,-5,-8,-12,-8,-19v0,-7,3,-13,8,-18v5,-5,11,-7,18,-7v7,0,13,2,18,7v5,5,8,11,8,18",w:116},"<":{d:"15,-70r0,-22r168,-87r0,23r-142,75r142,75r0,23",w:198},"=":{d:"12,-37r0,-21r167,0r0,21r-167,0xm12,-104r0,-21r167,0r0,21r-167,0",w:190},">":{d:"15,10r0,-23r142,-74r-142,-75r0,-23r168,87r0,21",w:198},"?":{d:"159,-191v0,7,-1,15,-4,21v-3,6,-7,12,-12,18v-5,6,-9,10,-15,15r-17,15r-10,10v0,0,-5,7,-7,10v-2,3,-3,6,-4,10v-1,4,-2,9,-2,15r0,10v0,3,1,6,1,9r-12,0r0,-10r0,-8r0,-14v0,-4,1,-7,2,-11v1,-4,3,-7,6,-11v3,-4,7,-9,13,-15v4,-4,7,-9,10,-13v3,-4,5,-8,7,-12v2,-4,3,-9,4,-15v1,-6,2,-12,2,-19v0,-7,-1,-13,-2,-19v-1,-6,-3,-12,-6,-17v-3,-5,-7,-8,-12,-11v-5,-3,-12,-4,-20,-4v-11,0,-20,3,-26,8v-6,5,-9,14,-9,25v0,3,1,6,2,9v1,3,2,7,2,10v0,6,-2,9,-5,13v-3,4,-8,6,-14,6v-4,0,-7,-1,-9,-3v-2,-2,-4,-4,-5,-7v-1,-3,-2,-5,-3,-8v-1,-3,-1,-7,-1,-9v0,-9,2,-17,6,-24v4,-7,9,-13,16,-17v7,-4,15,-8,24,-10v9,-2,18,-3,27,-3v9,0,17,1,26,3v9,2,17,6,24,11v7,5,13,10,17,17v4,7,6,15,6,25xm107,-21v0,7,-2,14,-7,19v-5,5,-12,7,-19,7v-7,0,-14,-2,-19,-7v-5,-5,-7,-12,-7,-19v0,-7,2,-13,7,-18v5,-5,12,-8,19,-8v7,0,14,3,19,8v5,5,7,11,7,18",w:172},"@":{d:"266,-105v0,10,-1,20,-4,31v-3,11,-7,21,-13,30v-6,9,-13,17,-22,23v-9,6,-18,9,-30,9v-9,0,-16,-2,-22,-7v-6,-5,-9,-12,-10,-20v-5,7,-10,13,-17,18v-7,5,-14,7,-22,7v-14,0,-25,-4,-33,-12v-8,-8,-12,-18,-12,-32v0,-10,2,-20,5,-31v3,-11,7,-20,13,-29v6,-9,14,-17,23,-23v9,-6,19,-8,31,-8v7,0,13,0,17,3v4,3,8,5,10,8v2,3,4,8,4,12r5,-17r22,0r-23,97v-2,8,-2,13,2,16v4,3,8,5,14,5v7,0,14,-2,19,-8v5,-6,10,-13,14,-21v4,-8,6,-16,8,-25v2,-9,3,-16,3,-23v0,-15,-3,-28,-8,-40v-5,-12,-13,-22,-22,-30v-9,-8,-20,-15,-32,-19v-12,-4,-25,-7,-38,-7v-18,0,-34,3,-48,9v-14,6,-25,14,-35,25v-10,11,-17,23,-22,37v-5,14,-7,30,-7,47v0,15,2,29,7,43v5,14,12,26,21,36v9,10,21,17,35,23v14,6,29,9,47,9v9,0,16,0,22,-1v6,-1,13,-2,18,-3v5,-1,11,-3,16,-5v5,-2,12,-6,18,-9r5,11v-12,8,-26,14,-41,17v-15,3,-29,5,-45,5v-17,0,-34,-3,-50,-9v-16,-6,-29,-14,-41,-25v-12,-11,-21,-25,-28,-40v-7,-15,-11,-32,-11,-51v0,-20,3,-39,10,-55v7,-16,17,-30,29,-41v12,-11,27,-20,44,-26v17,-6,35,-9,54,-9v16,0,31,2,46,7v15,5,27,11,38,20v11,9,20,20,26,33v6,13,10,28,10,45xm176,-109v0,-8,-1,-15,-4,-21v-3,-6,-8,-9,-16,-9v-8,0,-15,4,-21,10v-6,6,-11,15,-15,24v-4,9,-8,18,-10,28v-2,10,-3,18,-3,24v0,8,2,14,5,19v3,5,8,8,16,8v4,0,8,-1,12,-3v4,-2,7,-3,10,-6v3,-3,6,-6,8,-9v2,-3,4,-6,5,-9v1,-4,3,-8,5,-13v2,-5,3,-11,4,-16v1,-5,2,-11,3,-16v1,-5,1,-8,1,-11",w:274},A:{d:"114,0r0,-10r32,0r-24,-72r-71,0r-25,72r29,0r0,10r-64,0r0,-10r21,0r84,-242r11,0r85,242r21,0r0,10r-99,0xm87,-186r-32,92r63,0",w:205,k:{"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d8":7,"\u00dc":9,"\u00d6":7,"\u00c7":7,y:8,w:8,v:8,t:8,Y:22,W:22,V:22,U:9,T:21,Q:7,O:7,G:7,C:7,",":17,"\u00dd":22}},B:{d:"212,-69v0,12,-2,22,-7,31v-5,9,-11,16,-19,22v-8,6,-18,9,-28,12v-10,3,-21,4,-32,4r-111,0r0,-10r30,0r0,-225r-30,0r0,-10r107,0v10,0,19,1,29,3v10,2,18,6,26,11v8,5,14,11,19,19v5,8,7,17,7,28v0,8,-2,15,-5,21v-3,6,-7,12,-12,16v-5,4,-11,8,-18,11v-7,3,-13,5,-20,6v8,1,16,3,23,6v8,3,14,8,20,13v6,5,11,11,15,18v4,7,6,15,6,24xm169,-69v0,-19,-5,-33,-13,-42v-8,-9,-22,-13,-42,-13r-28,0r0,114r29,0v9,0,17,-1,24,-4v7,-3,13,-8,17,-13v4,-5,8,-11,10,-18v2,-7,3,-15,3,-24xm160,-182v0,-7,0,-15,-2,-21v-2,-6,-5,-12,-8,-17v-3,-5,-8,-8,-13,-11v-5,-3,-13,-4,-20,-4r-31,0r0,101r28,0v16,0,28,-5,35,-13v7,-8,11,-20,11,-35",w:230,k:{".":17,",":29}},C:{d:"193,0v0,-2,0,-4,-1,-5v-1,-1,-3,-2,-4,-3v-1,-1,-3,-1,-5,-1v-4,0,-8,0,-11,2v-3,2,-7,3,-12,5v-5,2,-10,3,-16,5v-6,2,-14,2,-24,2v-18,0,-34,-3,-47,-10v-13,-7,-24,-16,-32,-28v-8,-12,-13,-26,-17,-41v-4,-15,-6,-30,-6,-46v0,-15,2,-31,6,-46v4,-15,10,-29,18,-42v8,-13,19,-23,32,-31v13,-8,29,-12,48,-12v9,0,15,0,21,2v6,2,10,4,14,6r10,5v3,2,6,3,9,3v6,0,11,-4,12,-10r8,0r0,68r-10,0v-1,-8,-2,-16,-5,-23v-3,-7,-7,-14,-12,-20v-5,-6,-10,-10,-17,-13v-7,-3,-14,-6,-23,-6v-15,0,-27,5,-36,13v-9,8,-15,19,-20,31v-5,12,-8,24,-9,38v-1,14,-2,26,-2,37v0,12,1,24,2,37v1,13,4,26,8,37v4,11,11,20,20,28v9,8,21,12,36,12v11,0,19,-2,27,-5v8,-3,14,-7,19,-13v5,-6,9,-13,12,-21v3,-8,5,-17,6,-27r10,0v0,6,-1,14,-1,22v0,8,1,16,1,23r0,27r-9,0",w:220,k:{".":17,",":29}},D:{d:"230,-122v0,18,-2,33,-6,48v-4,15,-10,28,-19,39v-9,11,-21,20,-35,26v-14,6,-31,9,-52,9r-103,0r0,-10r30,0r0,-225r-30,0r0,-10r102,0v22,0,39,2,54,8v15,6,26,14,35,25v9,11,14,23,18,38v4,15,6,33,6,52xm186,-121v0,-16,-1,-31,-2,-45v-1,-14,-5,-26,-11,-36v-6,-10,-13,-19,-24,-25v-11,-6,-26,-8,-45,-8r-17,0r0,225r14,0v18,0,33,-3,44,-7v11,-4,20,-11,26,-20v6,-9,10,-21,12,-35v2,-14,3,-30,3,-49",w:247,k:{"\u00d9":5,"\u00db":5,"\u00da":5,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00dc":5,"\u00c5":7,"\u00c4":7,Y:13,W:13,V:13,U:5,A:7,".":17,",":29}},E:{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r179,0r0,71r-11,0v-1,-21,-7,-37,-19,-47v-12,-10,-29,-14,-49,-14r-28,0r0,101r12,0v16,0,26,-3,32,-9v6,-6,10,-16,10,-31r9,0r-1,47r1,45r-10,0v0,-15,-3,-25,-9,-32v-6,-7,-16,-11,-32,-11r-12,0r0,115r42,0v10,0,19,-2,26,-6v7,-4,14,-10,19,-16v5,-6,8,-13,11,-21v3,-8,4,-17,4,-26r11,0r0,79r-185,0",w:221,k:{".":17,",":35}},F:{d:"176,-176v0,-12,-2,-21,-6,-29v-4,-8,-10,-14,-17,-18v-7,-4,-15,-8,-24,-10v-9,-2,-18,-2,-28,-2r-14,0r0,101r13,0v14,0,24,-3,31,-10v7,-7,11,-17,11,-30r10,0v0,7,-1,16,-1,24v0,8,-1,16,-1,23v0,8,1,16,1,23r0,23r-10,0v0,-28,-13,-43,-41,-43r-13,0r0,114r31,0r0,10r-103,0r0,-10r30,0r0,-225r-30,0r0,-10r171,0r0,69r-10,0",w:199,k:{"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00f8":23,"\u00e6":23,"\u00c6":17,"\u00fc":11,"\u00fb":11,"\u00f9":11,"\u00fa":11,"\u00f5":23,"\u00f6":23,"\u00f4":23,"\u00f2":23,"\u00f3":23,"\u00f1":11,"\u00eb":23,"\u00ea":23,"\u00e8":23,"\u00e9":23,"\u00e7":23,"\u00e5":23,"\u00e3":23,"\u00e4":23,"\u00e2":23,"\u00e0":23,"\u00e1":23,"\u00c5":17,"\u00c4":17,z:11,y:11,x:11,w:11,v:11,u:11,t:11,s:11,r:11,q:23,o:23,n:11,m:11,j:11,g:23,f:11,e:23,d:23,c:23,a:23,A:17,".":29,",":50}},G:{d:"209,-95r0,84r-5,0v0,0,-3,-1,-4,-1v-7,0,-14,1,-20,3v-6,2,-14,4,-20,6v-6,2,-12,4,-19,6v-7,2,-14,2,-21,2v-18,0,-33,-3,-46,-11v-13,-8,-24,-19,-32,-31v-8,-12,-14,-26,-18,-41v-4,-15,-6,-30,-6,-45v0,-15,2,-31,6,-46v4,-15,9,-29,17,-41v8,-12,19,-22,32,-30v13,-8,29,-11,47,-11v8,0,16,1,22,3v6,2,12,3,17,5v5,2,10,3,13,5v3,2,6,3,8,3v3,0,6,0,7,-2v1,-2,2,-4,3,-8r8,0r0,68r-8,0v-2,-9,-5,-17,-9,-25v-4,-8,-8,-14,-14,-20v-6,-6,-12,-10,-20,-13v-8,-3,-16,-5,-25,-5v-14,0,-25,3,-33,11v-8,8,-14,17,-18,28v-4,11,-6,23,-7,36v-1,13,-2,25,-2,36v0,7,1,15,1,24v0,9,1,19,2,28v1,9,2,17,5,26v3,9,6,16,11,23v5,7,10,12,17,16v7,4,15,7,25,7v6,0,12,-1,17,-2v5,-1,10,-3,14,-6v4,-3,7,-7,9,-11v2,-4,4,-9,4,-15r0,-56r-29,0r0,-10r99,0r0,10r-28,0",w:241,k:{".":17,",":17}},H:{d:"152,0r0,-10r30,0r0,-113r-95,0r0,113r31,0r0,10r-103,0r0,-10r30,0r0,-225r-30,0r0,-10r103,0r0,10r-31,0r0,99r95,0r0,-99r-30,0r0,-10r103,0r0,10r-31,0r0,225r31,0r0,10r-103,0",w:272,k:{".":17,",":29}},I:{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r103,0r0,10r-31,0r0,225r31,0r0,10r-103,0",w:132,k:{".":17,",":29}},J:{d:"109,-235r0,189v0,9,-2,17,-5,24v-3,7,-8,12,-13,16v-5,4,-11,7,-18,9v-7,2,-15,2,-23,2v-6,0,-11,0,-17,-1v-6,-1,-11,-3,-15,-6v-4,-3,-8,-6,-11,-11v-3,-5,-4,-11,-4,-18v0,-3,0,-6,1,-9v1,-3,2,-5,4,-8v2,-3,3,-5,6,-7v3,-2,6,-2,10,-2v5,0,9,1,12,3v3,2,4,7,4,13v0,4,-1,7,-3,10v-2,3,-3,6,-3,10v0,6,1,10,3,13v2,3,7,4,13,4v4,0,8,0,10,-3v2,-3,4,-6,5,-10v1,-4,2,-7,2,-11r0,-9r0,-198r-34,0r0,-10r107,0r0,10r-31,0",w:153,k:{".":29,",":46}},K:{d:"87,-235r-1,110r1,115r30,0r0,10r-102,0r0,-10r30,0r0,-225r-30,0r0,-10r103,0r0,10r-31,0xm181,0r-88,-125r91,-110r-21,0r0,-10r64,0r0,10r-26,0r-78,92r99,133r18,0r0,10r-59,0",w:234,k:{",":23}},L:{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r104,0r0,10r-32,0r0,225r39,0v12,0,22,-2,29,-6v7,-4,13,-9,17,-15v4,-6,8,-14,9,-22v1,-8,2,-17,2,-26r11,0r0,79r-179,0",w:205,k:{T:28,",":12}},M:{d:"197,0r0,-10r31,0r0,-215r-83,229r-8,0r-83,-226r0,212r31,0r0,10r-74,0r0,-10r30,0r0,-225r-29,0r0,-10r79,0r66,185r65,-185r77,0r0,10r-31,0r0,225r31,0r0,10r-102,0",w:313,k:{".":17,",":29}},N:{d:"201,-235r0,239r-8,0r-139,-225r0,211r30,0r0,10r-73,0r0,-10r30,0r0,-225r-30,0r0,-10r76,0r101,163r0,-153r-31,0r0,-10r74,0r0,10r-30,0",w:236,k:{".":17,",":35}},O:{d:"234,-125v0,17,-2,34,-6,50v-4,16,-11,29,-20,41v-9,12,-20,22,-34,29v-14,7,-31,10,-50,10v-19,0,-35,-3,-48,-10v-13,-7,-24,-16,-33,-28v-9,-12,-15,-26,-19,-41v-4,-15,-6,-31,-6,-48v0,-17,2,-34,6,-49v4,-15,11,-29,20,-41v9,-12,19,-21,33,-28v14,-7,30,-11,49,-11v18,0,34,3,48,10v14,7,25,15,34,27v9,12,16,25,20,40v4,15,6,32,6,49xm190,-125v0,-12,-1,-25,-2,-38v-1,-13,-4,-26,-8,-37v-4,-11,-10,-20,-19,-28v-9,-8,-21,-12,-36,-12v-14,0,-25,3,-33,10v-8,7,-15,17,-19,28v-4,11,-8,23,-9,37v-1,14,-2,28,-2,42v0,14,1,27,2,41v1,14,5,27,9,38v4,11,11,21,19,28v8,7,19,10,32,10v16,0,28,-3,37,-11v9,-8,16,-17,20,-29v4,-12,6,-25,7,-39v1,-14,2,-28,2,-40",w:252,k:{"\u00d9":5,"\u00db":5,"\u00da":5,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00dc":5,"\u00c5":7,"\u00c4":7,Y:13,W:13,V:13,U:5,A:7,".":29,",":29}},P:{d:"195,-180v0,9,-2,19,-6,27v-4,8,-10,15,-17,21v-7,6,-15,11,-24,14v-9,3,-18,6,-28,6r-34,0r0,102r34,0r0,10r-105,0r0,-10r30,0r0,-225r-30,0r0,-10r102,0v12,0,22,1,32,4v10,3,18,7,25,12v7,5,12,13,16,21v4,8,5,17,5,28xm152,-179v0,-8,-1,-15,-3,-22v-2,-7,-4,-13,-8,-18v-4,-5,-8,-9,-14,-12v-6,-3,-13,-4,-22,-4r-19,0r0,113r21,0v16,0,27,-5,34,-15v7,-10,11,-24,11,-42",w:207,k:{"\u00c1":24,"\u00c2":24,"\u00c3":24,"\u00c0":24,"\u00f8":19,"\u00e6":19,"\u00c6":24,"\u00f5":19,"\u00f6":19,"\u00f4":19,"\u00f2":19,"\u00f3":19,"\u00eb":19,"\u00ea":19,"\u00e8":19,"\u00e9":19,"\u00e7":19,"\u00e5":19,"\u00e3":19,"\u00e4":19,"\u00e2":19,"\u00e0":19,"\u00e1":19,"\u00c5":24,"\u00c4":24,q:19,o:19,g:19,e:19,d:19,c:19,a:19,A:24,".":39,",":47}},Q:{d:"234,-126v0,14,-2,29,-6,43v-4,14,-9,27,-17,39v-8,12,-17,22,-28,30v-11,8,-24,13,-39,14r0,34v0,2,1,5,1,7v0,2,0,4,1,6v1,2,2,3,3,4v2,1,4,1,6,1r7,0r0,11r-8,0r-7,0v-12,0,-22,-2,-30,-8v-8,-6,-13,-13,-13,-25r0,-30v-14,-1,-26,-6,-37,-14v-11,-8,-20,-17,-27,-29v-7,-12,-13,-25,-17,-39v-4,-14,-5,-27,-5,-41v0,-19,2,-36,7,-52v5,-16,12,-29,21,-40v9,-11,21,-21,34,-27v13,-6,29,-9,46,-9v19,0,35,3,49,10v14,7,25,16,34,27v9,11,15,25,19,40v4,15,6,31,6,48xm190,-125v0,-17,-1,-33,-3,-47v-2,-14,-5,-26,-10,-36v-5,-10,-12,-17,-20,-23v-8,-6,-19,-9,-32,-9v-13,0,-24,4,-32,10v-8,6,-14,14,-19,25v-5,11,-8,22,-10,36v-2,14,-2,28,-2,43v0,12,1,26,2,39v1,13,3,26,7,37v4,11,11,20,19,28v8,8,20,12,35,12v10,0,18,-2,25,-6v7,-4,13,-8,18,-14v5,-6,8,-13,11,-21v3,-8,5,-15,7,-24v2,-9,3,-17,3,-26v0,-9,1,-17,1,-24",w:252,k:{"\u00d9":5,"\u00db":5,"\u00da":5,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00dc":5,"\u00c5":7,"\u00c4":7,Y:13,W:13,V:13,U:5,A:7,".":29,",":29}},R:{d:"227,0v-3,0,-8,1,-12,1v-4,0,-7,1,-9,1v-11,0,-19,-1,-25,-3v-6,-2,-11,-6,-14,-11v-3,-5,-5,-10,-6,-17v-1,-7,-2,-15,-2,-25r0,-17r0,-13v0,-6,-1,-11,-2,-16v-1,-5,-4,-9,-7,-12v-3,-3,-8,-5,-14,-7v-6,-2,-13,-2,-22,-2r-28,0r0,111r31,0r0,10r-102,0r0,-10r30,0r0,-225r-30,0r0,-10r115,0v25,0,44,4,57,14v13,10,18,26,18,47v0,16,-5,28,-15,38v-10,10,-24,16,-40,19v9,1,17,2,23,4v6,2,11,5,15,8v4,3,7,8,9,13v2,5,4,12,4,21r2,48v0,8,3,14,7,18v4,4,9,5,17,5r0,10xm162,-184v0,-7,-1,-15,-2,-21v-1,-6,-4,-11,-7,-16v-3,-5,-8,-8,-14,-11v-6,-3,-14,-3,-23,-3r-30,0r0,104r28,0v12,0,21,-2,27,-6v6,-4,12,-8,15,-14v3,-6,5,-11,5,-17v0,-6,1,-12,1,-16",w:239,k:{".":17,",":17}},S:{d:"181,-68v0,11,-2,21,-6,30v-4,9,-10,17,-17,23v-7,6,-15,12,-25,15v-10,3,-20,5,-31,5v-7,0,-13,0,-19,-1v-6,-1,-12,-3,-17,-5v-8,-2,-9,-2,-15,-4v-4,-1,-8,-2,-11,-2v-3,0,-5,1,-7,2v-2,1,-2,3,-2,5r-10,0r0,-73r11,0v1,9,3,18,7,26v4,8,9,15,15,21v6,6,13,11,21,15v8,4,17,5,27,5v8,0,15,-1,22,-3v7,-2,12,-5,17,-9v5,-4,9,-9,12,-15v3,-6,4,-12,4,-20v0,-12,-3,-21,-9,-27v-6,-6,-15,-11,-24,-15r-51,-19v-7,-3,-14,-6,-20,-10v-6,-4,-12,-8,-17,-13v-5,-5,-8,-12,-11,-19v-3,-7,-4,-17,-4,-27v0,-11,2,-20,6,-29v4,-9,8,-16,15,-22v7,-6,15,-10,24,-13v9,-3,18,-4,29,-4v7,0,14,1,19,2v5,1,10,3,14,5v6,3,6,2,11,4v3,1,6,2,9,2v5,0,8,-2,10,-7r9,0r0,69r-10,0v0,0,-1,-3,-1,-6v0,-3,-2,-7,-3,-12v-1,-5,-3,-10,-6,-15v-3,-5,-6,-10,-11,-15v-5,-5,-11,-8,-18,-11v-7,-3,-15,-4,-25,-4v-6,0,-12,0,-18,2v-6,2,-12,5,-16,9v-4,4,-7,8,-10,13v-3,5,-4,11,-4,18v0,6,1,10,4,14v3,4,6,8,10,11v4,3,9,6,14,9v5,3,11,5,17,7r45,18v15,6,27,14,35,25v8,11,11,26,11,45",w:199,k:{".":17,",":17}},T:{d:"192,-175v0,-9,-1,-17,-3,-24v-2,-7,-5,-14,-9,-19v-4,-5,-10,-10,-17,-13v-7,-3,-15,-4,-25,-4r-11,0r0,225r32,0r0,10r-106,0r0,-10r32,0r0,-225r-11,0v-21,0,-35,5,-43,16v-8,11,-13,25,-13,44r-10,0r2,-70r192,0r2,70r-12,0",w:210,k:{"\u00c1":21,"\u00c2":21,"\u00c3":21,"\u00c0":21,"\u00f8":25,"\u00e6":25,"\u00c6":21,"\u00f5":25,"\u00f6":25,"\u00f4":25,"\u00f2":25,"\u00f3":25,"\u00eb":25,"\u00ea":25,"\u00e8":25,"\u00e9":25,"\u00e7":25,"\u00e5":25,"\u00e3":25,"\u00e4":25,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00c5":21,"\u00c4":21,q:25,o:25,g:25,e:25,d:25,c:25,a:25,A:21,".":39,",":46}},U:{d:"196,-235r0,168v0,13,-2,24,-6,33v-4,9,-9,16,-16,22v-7,6,-16,10,-26,13v-10,3,-20,4,-32,4v-12,0,-22,-1,-32,-4v-10,-3,-19,-7,-26,-13v-7,-6,-12,-14,-16,-23v-4,-9,-6,-19,-6,-31r0,-169r-32,0r0,-10r105,0r0,10r-31,0r0,171v0,20,4,34,14,43v10,9,23,13,39,13v9,0,16,-1,23,-4v7,-3,12,-7,16,-13v4,-6,8,-12,10,-20v2,-8,3,-15,3,-24r0,-166r-31,0r0,-10r76,0r0,10r-32,0",w:229,k:{"\u00d2":5,"\u00d4":5,"\u00d3":5,"\u00c1":9,"\u00c2":9,"\u00d5":5,"\u00c3":9,"\u00c0":9,"\u00d8":5,"\u00c6":9,"\u00d6":5,"\u00c7":5,"\u00c5":9,"\u00c4":9,Q:5,O:5,G:5,C:5,A:9,".":17,",":29}},V:{d:"195,-235r-87,240r-6,0r-85,-240r-21,0r0,-10r98,0r0,10r-32,0r58,171r61,-171r-30,0r0,-10r63,0r0,10r-19,0",w:210,k:{"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00c1":22,"\u00c2":22,"\u00ff":13,"\u00d5":13,"\u00c3":22,"\u00c0":22,"\u00f8":29,"\u00e6":29,"\u00d8":13,"\u00c6":22,"\u00fc":13,"\u00fb":13,"\u00f9":13,"\u00fa":13,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":13,"\u00ef":13,"\u00ee":13,"\u00ec":13,"\u00ed":13,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":29,"\u00e3":29,"\u00e4":29,"\u00e2":29,"\u00e0":29,"\u00e1":29,"\u00d6":13,"\u00c7":13,"\u00c5":22,"\u00c4":22,z:13,y:13,x:13,w:13,v:13,u:13,t:13,s:13,r:13,q:29,p:13,o:29,n:13,m:13,l:13,k:13,j:13,i:13,h:13,g:29,f:13,e:29,d:29,c:29,b:13,a:29,Q:13,O:13,G:13,C:13,A:22,".":39,",":51,"\u00fd":13}},W:{d:"313,-235r-87,240r-6,0r-57,-158r-56,158r-7,0r-87,-240r-21,0r0,-10r88,0r0,10r-25,0r62,178r40,-114r-23,-64r-17,0r0,-10r94,0r0,10r-33,0r60,175r64,-175r-29,0r0,-10r59,0r0,10r-19,0",w:322,k:{"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00c1":22,"\u00c2":22,"\u00ff":16,"\u00d5":13,"\u00c3":22,"\u00c0":22,"\u00f8":29,"\u00e6":29,"\u00d8":13,"\u00c6":22,"\u00fc":16,"\u00fb":16,"\u00f9":16,"\u00fa":16,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":16,"\u00ef":16,"\u00ee":16,"\u00ec":16,"\u00ed":16,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":29,"\u00e3":29,"\u00e4":29,"\u00e2":29,"\u00e0":29,"\u00e1":29,"\u00d6":13,"\u00c7":13,"\u00c5":22,"\u00c4":22,z:16,y:16,x:16,w:16,v:16,u:16,t:16,s:16,r:16,q:29,p:16,o:29,n:16,m:16,l:16,k:16,j:16,i:16,h:16,g:29,f:16,e:29,d:29,c:29,b:16,a:29,Q:13,O:13,G:13,C:13,A:22,".":39,",":51,"\u00fd":16}},X:{d:"100,0r0,-10r25,0r-41,-90r-51,90r25,0r0,10r-65,0r0,-10r26,0r58,-104r-59,-121r-19,0r0,-10r90,0r0,10r-23,0r38,85r45,-85r-22,0r0,-10r62,0r0,10r-24,0r-54,98r61,127r20,0r0,10r-92,0",w:187,k:{"\u00f8":22,"\u00e6":22,"\u00fc":11,"\u00fb":11,"\u00f9":11,"\u00fa":11,"\u00f5":22,"\u00f6":22,"\u00f4":22,"\u00f2":22,"\u00f3":22,"\u00f1":11,"\u00ef":11,"\u00ee":11,"\u00ec":11,"\u00ed":11,"\u00eb":22,"\u00ea":22,"\u00e8":22,"\u00e9":22,"\u00e7":22,"\u00e5":22,"\u00e3":22,"\u00e4":22,"\u00e2":22,"\u00e0":22,"\u00e1":22,z:11,y:11,x:11,w:11,v:11,u:11,t:11,s:11,r:11,q:22,p:11,o:22,n:11,m:11,j:11,i:11,g:22,f:11,e:22,d:22,c:22,a:22,".":17,",":23}},Y:{d:"172,-235r-58,141r0,84r31,0r0,10r-107,0r0,-10r33,0r0,-83r-57,-142r-15,0r0,-10r85,0r0,10r-24,0r47,124r52,-124r-27,0r0,-10r54,0r0,10r-14,0",w:182,k:{"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00c1":22,"\u00c2":22,"\u00ff":12,"\u00d5":13,"\u00c3":22,"\u00c0":22,"\u00f8":29,"\u00e6":29,"\u00d8":13,"\u00c6":22,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":12,"\u00ef":12,"\u00ee":12,"\u00ec":12,"\u00ed":12,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":29,"\u00e3":29,"\u00e4":29,"\u00e2":29,"\u00e0":29,"\u00e1":29,"\u00d6":13,"\u00c7":13,"\u00c5":22,"\u00c4":22,z:12,y:12,x:12,w:12,v:12,u:12,t:12,s:12,r:12,q:29,p:12,o:29,n:12,m:12,l:12,k:12,j:12,i:12,h:12,g:29,f:12,e:29,d:29,c:29,b:12,a:29,Q:13,O:13,G:13,C:13,A:22,".":39,",":49,"\u00fd":12}},Z:{d:"184,0r-175,0r0,-8r6,-11r15,-26r20,-37r23,-41r62,-112r-27,0v-11,0,-21,0,-30,2v-9,2,-17,5,-23,10v-6,5,-11,11,-15,19v-4,8,-7,17,-7,28r-10,0r0,-69r160,0r0,7r-126,228r54,0v23,0,39,-5,50,-16v11,-11,15,-28,15,-52r11,0",w:195,k:{",":12}},"[":{d:"53,-230r0,281r42,0r0,16r-64,0r0,-312r64,0r0,15r-42,0",w:114},"\\":{d:"91,0r-78,-245r23,0r77,245r-22,0",w:129},"]":{d:"17,67r0,-16r41,0r0,-281r-42,0r0,-15r65,0r0,312r-64,0",w:114},"^":{d:"152,-109r-53,-110r-53,110r-22,0r66,-137r18,0r66,137r-22,0",w:198},_:{d:"0,47r0,-21r180,0r0,21r-180,0",w:180},"`":{d:"91,-189r-55,-52r0,-4r41,0r31,56r-17,0",w:151},a:{d:"183,-12v-4,6,-9,10,-15,13v-6,3,-12,4,-19,4v-10,0,-18,-2,-24,-7v-6,-5,-8,-11,-8,-20v-2,5,-5,9,-8,13v-3,4,-7,6,-11,8v-4,2,-9,4,-14,5v-5,1,-9,1,-14,1v-7,0,-15,0,-22,-2v-7,-2,-13,-4,-18,-8v-5,-4,-10,-8,-13,-14v-3,-6,-5,-13,-5,-21v0,-12,3,-23,10,-30v7,-7,16,-12,26,-16v10,-4,20,-6,31,-7v11,-1,21,-2,30,-2r0,-29v0,-11,-1,-20,-5,-26v-4,-6,-12,-9,-24,-9v-8,0,-15,2,-19,6v-4,4,-6,10,-6,17r0,6v0,0,1,5,1,7v0,5,-1,8,-3,11v-2,3,-7,5,-12,5v-6,0,-10,-2,-13,-6v-3,-4,-5,-8,-5,-14v0,-7,2,-14,6,-19v4,-5,8,-10,14,-13v6,-3,12,-6,19,-7v7,-1,15,-2,21,-2v11,0,20,1,28,3v8,2,14,5,19,9v5,4,9,10,12,17v3,7,4,16,4,27r0,82v0,2,1,4,1,7v0,3,0,5,1,7v1,2,2,5,4,6v2,1,4,2,7,2v5,0,10,-1,13,-4v4,-4,4,-5,5,-6xm109,-84v-8,0,-16,0,-23,1v-7,1,-13,3,-18,6v-5,3,-10,7,-13,13v-3,6,-4,14,-4,24v0,10,2,18,6,25v4,7,10,10,21,10v6,0,11,-2,15,-4v4,-2,6,-5,9,-9v3,-4,5,-8,6,-13v1,-5,1,-9,1,-14r0,-39",w:178},b:{d:"184,-82v0,12,-1,22,-4,33v-3,11,-6,20,-12,28v-6,8,-14,14,-23,19v-9,5,-21,7,-34,7v-10,0,-18,-1,-25,-5v-7,-4,-13,-11,-17,-19r-2,19r-62,0r0,-10r26,0v0,-2,1,-4,1,-6v0,-2,1,-3,1,-5r0,-6r0,-228r-25,0r0,-10r36,0r25,-4r0,124r2,-5v1,-2,4,-4,7,-7v3,-3,8,-5,13,-7v5,-2,12,-3,21,-3v13,0,24,2,33,7v9,5,16,11,22,19v6,8,10,17,13,27v3,10,4,21,4,32xm145,-81v0,-7,-1,-15,-1,-24v0,-9,-1,-17,-4,-25v-3,-8,-7,-14,-12,-19v-5,-5,-13,-8,-22,-8v-10,0,-17,3,-23,9v-3,3,-5,6,-7,10v-2,4,-4,8,-5,13v-1,5,-2,9,-2,14r0,13r0,31v0,9,1,19,3,28v2,9,6,18,13,25v3,3,6,4,9,6v3,2,8,3,12,3v9,0,17,-3,22,-8v5,-5,9,-11,12,-19v3,-8,3,-16,4,-25v1,-9,1,-17,1,-24",w:199},c:{d:"154,-56v0,18,-6,34,-17,45v-11,11,-26,16,-47,16v-13,0,-25,-2,-34,-7v-9,-5,-17,-11,-23,-19v-6,-8,-11,-17,-14,-27v-3,-10,-4,-21,-4,-33v0,-12,2,-22,5,-33v3,-11,8,-20,14,-28v6,-8,15,-14,25,-19v10,-5,21,-7,34,-7v6,0,13,0,20,2v7,2,13,5,18,8v5,3,9,7,12,12v3,5,5,11,5,18v0,5,-1,11,-5,16v-4,5,-9,7,-16,7v-3,0,-6,-1,-9,-3v-3,-2,-5,-6,-5,-9v0,-3,1,-6,1,-7v0,-1,1,-3,1,-4v0,-1,1,-2,1,-4v0,-2,1,-4,1,-7v0,-7,-2,-12,-6,-15v-4,-3,-11,-5,-18,-5v-9,0,-16,3,-21,8v-5,5,-9,12,-12,20v-3,8,-3,16,-4,25v-1,9,-1,17,-1,24r0,25v0,0,2,17,5,25v3,8,6,15,12,20v6,5,13,8,23,8v8,0,15,-1,21,-4v6,-3,10,-7,14,-12v4,-5,8,-10,10,-16v2,-6,3,-13,3,-20r11,0",w:162},d:{d:"135,0r-2,-21v-4,8,-11,15,-19,20v-8,5,-17,6,-28,6v-13,0,-24,-2,-33,-7v-9,-5,-16,-11,-22,-19v-6,-8,-9,-17,-12,-28v-3,-11,-4,-21,-4,-33v0,-11,1,-22,4,-32v3,-10,7,-19,13,-27v6,-8,13,-14,22,-19v9,-5,20,-8,32,-8v10,0,18,2,24,4v6,2,10,5,13,8v4,3,7,7,8,11r0,-110r-28,0r0,-10r32,0r31,-4r0,241r3,18r25,0r0,10r-59,0xm132,-98v0,-12,-1,-23,-4,-31v-3,-8,-7,-14,-11,-18v-3,-3,-6,-5,-10,-7v-4,-2,-8,-3,-14,-3v-14,0,-24,7,-30,19v-6,12,-8,31,-8,56v0,24,3,44,8,57v5,13,15,20,30,20v5,0,9,-1,13,-3v4,-2,7,-4,10,-7v6,-6,11,-15,13,-24v2,-9,3,-19,3,-28r0,-31",w:195},e:{d:"164,-56v-1,9,-3,16,-7,24v-4,8,-8,15,-14,20v-6,5,-13,10,-21,13v-8,3,-17,4,-27,4v-13,0,-25,-2,-35,-6v-10,-4,-18,-10,-25,-18v-7,-8,-12,-17,-15,-27v-3,-10,-5,-22,-5,-34v0,-11,1,-21,4,-32v3,-11,7,-21,13,-29v6,-8,14,-15,24,-20v10,-5,21,-7,35,-7v13,0,25,2,34,7v9,5,16,11,22,19v6,8,9,17,12,28v3,11,4,22,4,33r-108,0v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,13,18v6,5,14,8,25,8v8,0,15,-2,21,-5v6,-3,12,-6,17,-11v5,-5,8,-11,11,-17v3,-6,4,-13,5,-20xm123,-93v0,-6,0,-13,-1,-21v-1,-8,-2,-14,-4,-21v-2,-7,-7,-12,-11,-17v-4,-5,-10,-7,-17,-7v-8,0,-15,2,-19,7v-4,5,-8,11,-10,18v-2,7,-3,14,-4,22v-1,8,-2,13,-2,19r68,0",w:177},f:{d:"140,-234v0,6,-2,11,-5,16v-3,5,-8,7,-15,7v-4,0,-7,0,-10,-3v-3,-3,-4,-6,-4,-10v0,-4,1,-8,2,-10v1,-2,1,-4,1,-8v0,-5,0,-10,-2,-14v-2,-4,-6,-6,-13,-6v-6,0,-11,2,-14,6v-3,4,-5,9,-6,14v-1,5,-2,11,-2,17r0,13r0,49r34,0r0,10r-34,0r0,143r31,0r0,10r-92,0r0,-10r25,0r0,-143r-24,0r0,-10r24,0r0,-47v0,-9,1,-17,4,-24v3,-7,8,-14,13,-19v5,-5,12,-9,19,-12v7,-3,15,-5,24,-5v12,0,23,3,31,9v8,6,13,15,13,27",w:113,k:{"\u2019":-30,"\u201d":-30,".":31,",":25}},g:{d:"176,-148v0,3,-1,6,-3,9v-2,3,-5,4,-9,4v-4,0,-7,-1,-8,-3v-1,-2,-1,-3,-1,-5v0,-2,-1,-4,-1,-6v0,-2,-2,-2,-5,-2v-3,0,-6,1,-9,3v-3,2,-5,5,-6,7v1,3,2,5,3,7v1,2,2,4,2,6v0,2,2,4,2,6r0,9v0,11,-1,20,-5,27v-4,7,-10,13,-16,17v-6,4,-13,7,-22,9v-9,2,-17,2,-27,2v-2,0,-5,1,-8,1v-3,0,-5,0,-8,1v-3,1,-5,3,-7,5v-2,2,-3,4,-3,7v0,4,1,7,3,9v2,2,5,3,8,4v3,1,6,1,9,1v3,0,7,-1,10,-1r48,0v6,0,13,1,18,3v5,2,10,4,14,8v4,4,7,8,9,14v2,6,3,12,3,20v0,9,-1,18,-6,25v-5,7,-11,13,-19,18v-8,5,-17,8,-27,11v-10,3,-21,4,-32,4v-7,0,-15,-1,-24,-2v-9,-1,-17,-4,-25,-7v-8,-3,-14,-8,-20,-14v-6,-6,-8,-12,-8,-21v0,-10,3,-18,9,-24v6,-6,13,-10,21,-15v-3,-3,-6,-6,-7,-11v-1,-5,-2,-8,-2,-10v0,-8,3,-14,7,-20v4,-6,11,-9,19,-11r0,-1v-6,-1,-10,-4,-14,-7v-4,-3,-8,-8,-11,-12v-3,-4,-4,-9,-5,-14v-1,-5,-2,-10,-2,-15v0,-18,5,-33,16,-42v11,-9,26,-14,44,-14v8,0,17,1,25,3v8,2,16,7,22,15v3,-5,7,-8,12,-12v5,-4,10,-6,16,-6v7,0,12,2,15,5v3,3,5,9,5,15xm146,22v0,-8,-3,-13,-8,-16v-5,-3,-11,-4,-18,-4r-42,0v-7,0,-13,0,-19,-1v-6,-1,-11,-2,-14,-5v-5,3,-7,7,-9,13v-2,6,-3,12,-3,18v0,7,2,12,6,17v4,5,7,8,13,11v6,3,12,5,18,6v6,1,12,1,18,1v6,0,13,-1,20,-2v7,-1,13,-4,19,-7v6,-3,10,-7,14,-12v4,-5,5,-12,5,-19xm111,-114v0,-5,-1,-10,-2,-15v-1,-5,-2,-11,-4,-15v-2,-4,-4,-8,-8,-11v-4,-3,-9,-4,-15,-4v-6,0,-11,1,-15,4v-4,3,-7,6,-9,11v-2,5,-3,10,-4,15v-1,5,-1,11,-1,16v0,5,0,10,1,15v1,5,2,9,4,14v2,5,4,9,8,12v4,3,9,5,15,5v6,0,11,-2,15,-5v4,-3,7,-7,9,-12v2,-5,3,-10,4,-15v1,-5,2,-10,2,-15",w:178},h:{d:"114,0r0,-10r28,0r0,-105v0,-13,-2,-23,-6,-30v-4,-7,-12,-11,-24,-11v-9,0,-16,2,-22,6v-6,4,-9,10,-12,17v-3,7,-6,13,-7,21v-1,8,-2,15,-2,22r0,80r29,0r0,10r-90,0r0,-10r25,0r0,-245r-25,0r0,-10r38,0r23,-4r0,132v4,-11,12,-19,21,-24v9,-5,21,-7,33,-7v19,0,33,5,42,14v9,9,14,23,14,42r0,102r27,0r0,10r-92,0",w:211,k:{"\u2019":11,"\u201d":11}},i:{d:"6,0r0,-10r27,0r0,-143r-27,0r0,-10r40,0r24,-4r0,157r30,0r0,10r-94,0xm70,-217v0,6,-2,12,-6,16v-4,4,-10,6,-16,6v-6,0,-12,-2,-16,-6v-4,-4,-6,-10,-6,-16v0,-6,2,-12,6,-16v4,-4,10,-6,16,-6v6,0,12,2,16,6v4,4,6,10,6,16",w:102,k:{"\u2019":-6,"\u201d":-6}},j:{d:"76,7v0,10,-1,20,-3,28v-2,8,-5,14,-9,20v-4,6,-11,10,-18,13v-7,3,-16,4,-27,4v-5,0,-11,-1,-16,-2v-5,-1,-10,-3,-14,-6v-4,-3,-8,-7,-11,-11v-3,-4,-5,-9,-5,-15v0,-2,0,-5,1,-8v1,-3,2,-6,3,-8v1,-2,4,-4,6,-5v2,-1,5,-2,9,-2v4,0,7,1,9,4v2,3,3,6,3,9v0,3,-1,6,-2,9v-1,3,-2,5,-2,8v0,13,7,19,19,19v5,0,9,-2,12,-4v3,-2,5,-5,6,-9v1,-4,3,-9,3,-15v0,-6,1,-12,1,-19r0,-170r-26,0r0,-10r25,0r36,-5r0,175xm83,-217v0,6,-2,11,-6,15v-4,4,-10,7,-16,7v-6,0,-11,-3,-15,-7v-4,-4,-7,-9,-7,-15v0,-6,3,-12,7,-16v4,-4,9,-7,15,-7v6,0,12,3,16,7v4,4,6,10,6,16",w:114,k:{"\u2019":-8,"\u201d":-8}},k:{d:"5,0r0,-10r28,0r0,-245r-27,0r0,-10r36,0r27,-3r0,175r0,83r29,0r0,10r-93,0xm142,0r-68,-93r68,-60r-31,0r0,-10r73,0r0,10r-21,0r-56,48r71,95r16,0r0,10r-52,0",w:188},l:{d:"5,0r0,-10r28,0r0,-245r-25,0r0,-10r35,0r27,-3r0,258r29,0r0,10r-94,0",w:101},m:{d:"218,0r0,-10r22,0r0,-112v0,-10,-2,-19,-7,-25v-5,-6,-12,-9,-22,-9v-7,0,-12,1,-17,3v-5,2,-9,6,-12,10v-3,4,-6,9,-7,14v-1,5,-2,11,-2,17r0,102r23,0r0,10r-83,0r0,-10r23,0r0,-114v0,-9,-3,-17,-7,-23v-4,-6,-11,-10,-21,-10v-6,0,-11,2,-16,5v-5,3,-9,6,-12,11v-3,5,-5,9,-7,15v-2,6,-2,11,-2,16r0,100r24,0r0,10r-89,0r0,-10r29,0r0,-121r-2,-22r-27,0r0,-10r31,0r31,-3r2,23v4,-8,11,-15,19,-19v8,-4,18,-6,28,-6v11,0,19,1,25,4v6,3,12,5,15,8v3,3,6,6,7,9v1,3,3,5,3,6v5,-9,12,-17,21,-21v9,-4,20,-6,32,-6v8,0,16,1,23,3v7,2,13,5,18,9v5,4,9,9,12,15v3,6,4,15,4,24r0,107r28,0r0,10r-87,0",w:310},n:{d:"113,0r0,-10r28,0r0,-94r0,-18v0,0,-1,-12,-3,-17v-2,-5,-5,-9,-9,-12v-4,-3,-10,-5,-18,-5v-9,0,-17,2,-22,6v-5,4,-9,9,-12,15v-3,6,-4,14,-5,21v-1,7,-1,14,-1,20r0,84r28,0r0,10r-93,0r0,-10r28,0r0,-124r-2,-19r-25,0r0,-10r37,0r23,-3r2,27v4,-9,10,-17,18,-22v8,-5,19,-7,33,-7v20,0,35,4,44,13v9,9,14,22,14,40r0,105r28,0r0,10r-93,0",w:210},o:{d:"175,-81v0,11,-2,22,-6,32v-4,10,-8,20,-15,28v-7,8,-16,14,-26,19v-10,5,-21,7,-34,7v-12,0,-23,-2,-33,-7v-10,-5,-18,-11,-25,-19v-7,-8,-11,-17,-15,-27v-4,-10,-6,-22,-6,-33v0,-11,2,-23,5,-33v3,-10,9,-19,16,-27v7,-8,14,-15,24,-20v10,-5,22,-7,35,-7v13,0,24,2,34,7v10,5,18,12,25,20v7,8,12,17,15,28v3,11,6,21,6,32xm135,-81v0,-8,0,-16,-1,-25v-1,-9,-3,-17,-6,-25v-3,-8,-7,-14,-12,-19v-5,-5,-12,-8,-21,-8v-9,0,-17,3,-22,8v-5,5,-9,11,-12,19v-3,8,-4,16,-5,25v-1,9,-1,17,-1,25v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,12,18v5,5,13,8,22,8v9,0,16,-3,21,-8v5,-5,9,-10,12,-18v3,-8,5,-16,6,-25v1,-9,1,-18,1,-26",w:189},p:{d:"181,-81v0,11,-2,21,-4,31v-2,10,-6,20,-12,28v-6,8,-12,15,-21,20v-9,5,-20,7,-33,7v-9,0,-17,-1,-23,-3v-6,-2,-10,-4,-13,-7v-3,-3,-5,-6,-6,-8v-1,-2,-3,-3,-3,-4r0,74r30,0r0,10r-93,0r0,-10r29,0r0,-192v0,-1,-1,-3,-1,-5r0,-5r-1,-8r-26,0r0,-10r37,0r24,-3r2,22v8,-16,23,-24,44,-24v12,0,23,2,32,7v9,5,15,12,21,20v6,8,10,18,13,28v3,10,4,21,4,32xm141,-80v0,-7,-1,-15,-1,-24v0,-9,-2,-17,-4,-25v-2,-8,-6,-15,-11,-20v-5,-5,-13,-8,-22,-8v-9,0,-17,3,-23,9v-3,3,-5,7,-7,11v-2,4,-4,8,-5,13v-1,5,-2,9,-3,14v-1,5,-1,10,-1,14r0,31v0,7,1,13,2,19v1,6,3,11,5,17v2,6,5,11,9,15v6,6,14,9,24,9v9,0,16,-3,21,-8v5,-5,9,-12,11,-19v2,-7,4,-15,4,-24v0,-9,1,-17,1,-24",w:195},q:{d:"102,67r0,-10r29,0r0,-78v-5,9,-12,16,-19,20v-7,4,-15,6,-26,6v-13,0,-24,-2,-33,-7v-9,-5,-16,-11,-22,-19v-6,-8,-10,-17,-12,-27v-2,-10,-4,-21,-4,-33v0,-11,1,-22,4,-32v3,-10,7,-20,13,-28v6,-8,13,-15,22,-20v9,-5,19,-7,31,-7v9,0,16,1,22,3v6,2,11,5,14,8v3,3,6,5,7,8v1,3,3,4,3,5r2,-19r60,0r0,10r-26,0r-2,18r0,192r29,0r0,10r-92,0xm132,-96v0,-12,-2,-23,-5,-32v-3,-9,-6,-15,-9,-18v-3,-3,-7,-6,-11,-8v-4,-2,-9,-3,-15,-3v-9,0,-16,3,-21,8v-5,5,-8,11,-11,19v-3,8,-5,16,-5,25r0,24r0,24v0,0,3,17,5,25v2,8,6,14,11,19v5,5,13,7,22,7v5,0,9,0,13,-2v4,-2,7,-4,10,-7v6,-6,11,-15,13,-24v2,-9,3,-18,3,-27r0,-30",w:199},r:{d:"154,-132v0,3,0,6,-1,9v-1,3,-2,5,-4,8v-2,3,-3,5,-6,7v-3,2,-6,2,-10,2v-5,0,-9,-1,-12,-4v-3,-3,-4,-6,-4,-12v0,-4,0,-7,2,-10v2,-3,3,-7,3,-10v0,-5,-2,-9,-4,-11v-2,-2,-6,-4,-11,-4v-6,0,-12,3,-16,7v-4,4,-8,9,-11,15v-3,6,-5,12,-6,19v-1,7,-2,13,-2,18r0,88r31,0r0,10r-97,0r0,-10r29,0r0,-122r-1,-21r-26,0r0,-10r35,0r25,-3r1,33v2,-5,4,-10,7,-14v3,-4,5,-8,9,-11v4,-3,8,-5,13,-7v5,-2,10,-2,17,-2v5,0,10,0,15,2v5,2,9,4,13,7v4,3,6,7,8,11v2,4,3,9,3,15",w:156},s:{d:"143,-48v0,8,-2,15,-5,22v-3,7,-8,12,-13,17v-5,5,-11,9,-18,11v-7,2,-14,3,-22,3v-5,0,-11,0,-15,-1v-4,-1,-7,-3,-11,-4v-5,-2,-6,-1,-10,-3v-3,-1,-6,-2,-9,-2v-3,0,-5,0,-6,1v-1,1,-3,2,-4,4r-9,0r0,-56r11,0v1,7,2,13,5,19v3,6,7,12,11,17v4,5,10,8,16,11v6,3,13,4,21,4v10,0,18,-3,24,-7v6,-4,9,-11,9,-20v0,-7,-2,-14,-7,-19v-5,-5,-12,-8,-21,-12r-30,-12v-6,-2,-11,-5,-16,-7v-5,-2,-9,-6,-13,-9v-4,-3,-6,-7,-8,-12v-2,-5,-3,-11,-3,-18v0,-15,5,-27,15,-35v10,-8,23,-12,38,-12v5,0,9,0,13,1v4,1,8,3,12,4v4,1,7,2,10,3v3,1,6,2,8,2v1,0,3,-1,4,-1v1,0,1,-2,3,-4r7,0r0,50r-11,0v-2,-14,-6,-25,-14,-33v-8,-8,-19,-11,-33,-11v-7,0,-14,2,-20,5v-6,3,-8,9,-8,17v0,4,0,7,1,9v1,2,3,4,5,6v2,2,4,3,7,4v4,2,5,2,9,4r35,14v6,3,12,5,17,8v5,3,9,6,13,10v4,4,7,9,9,14v2,5,3,11,3,18",w:156},t:{d:"120,-8v-3,3,-7,5,-11,7v-3,2,-8,3,-13,4v-5,1,-11,2,-17,2v-6,0,-12,-1,-18,-2v-6,-1,-11,-3,-15,-6v-4,-3,-8,-8,-10,-13v-2,-5,-3,-12,-3,-20r0,-117r-23,0r0,-10r25,0r0,-47r35,-7r0,54r40,0r0,10r-40,0r0,119v0,6,2,12,5,17v3,5,9,8,17,8v5,0,9,-1,12,-2v3,-1,7,-3,10,-6",w:116,k:{"\u2019":-4,"\u201d":-4,".":23,",":21}},u:{d:"138,0r-2,-24v-9,20,-26,29,-49,29v-18,0,-33,-4,-43,-13v-10,-9,-15,-22,-15,-43r0,-102r-25,0r0,-10r38,0r24,-4r0,124v0,6,0,11,2,17v2,6,5,11,9,15v4,4,10,6,19,6v6,0,12,-2,16,-5v4,-3,8,-7,11,-12v3,-5,5,-10,6,-16v1,-6,2,-11,2,-17r0,-98r-28,0r0,-10r42,0r23,-3r0,142r2,14r28,0r0,10r-60,0",w:199},v:{d:"144,-153r-62,158r-7,0r-63,-158r-15,0r0,-10r79,0r0,10r-25,0r41,106r41,-106r-25,0r0,-10r52,0r0,10r-16,0",w:154,k:{"\u2019":-10,"\u201d":-10,".":17,",":36}},w:{d:"239,-153r-63,158r-8,0r-41,-108r-45,108r-9,0r-63,-158r-15,0r0,-10r75,0r0,10r-22,0r43,111r30,-76r-13,-35r-15,0r0,-10r80,0r0,10r-26,0r38,107r41,-107r-24,0r0,-10r51,0r0,10r-14,0",w:252,k:{"\u2019":-12,"\u201d":-12,".":17,",":27}},x:{d:"86,0r0,-10r20,0r-36,-67r-39,67r20,0r0,10r-48,0r0,-10r15,0r45,-75r-37,-68r-20,0r0,-10r76,0r0,10r-17,0r25,50r29,-50r-21,0r0,-10r51,0r0,10r-17,0r-35,56r48,87r15,0r0,10r-74,0",w:158},y:{d:"140,-153r-74,190v-4,11,-9,20,-16,26v-7,6,-16,9,-28,9v-5,0,-9,-1,-14,-2v-5,-1,-9,-3,-12,-6v-3,-3,-6,-6,-8,-10v-2,-4,-3,-8,-3,-14v0,-5,1,-10,4,-14v3,-4,7,-5,12,-5v5,0,9,0,11,3v2,3,3,6,3,10v0,2,0,4,-1,6v-1,2,-1,4,-1,6v0,5,1,8,3,11v2,3,5,4,11,4v7,0,13,-2,18,-8v5,-6,8,-12,11,-19v3,-8,7,-16,10,-25v3,-9,6,-16,8,-22r-57,-140r-18,0r0,-10r78,0r0,10r-21,0r36,94r35,-94r-24,0r0,-10r53,0r0,10r-16,0",w:150,k:{".":22,",":19}},z:{d:"49,-10r34,0v8,0,16,-1,23,-2v7,-1,14,-4,19,-8v5,-4,9,-10,12,-17v3,-7,4,-16,4,-27r9,0r0,64r-141,0r0,-9r100,-144r-42,0v-7,0,-13,2,-18,5v-5,3,-9,6,-12,11v-3,5,-5,9,-6,15v-1,6,-1,12,-1,17r-9,0r0,-58r129,0r0,9",w:168},"{":{d:"101,72v-7,0,-14,-1,-21,-2v-7,-1,-13,-4,-18,-8v-5,-4,-10,-10,-13,-17v-3,-7,-4,-17,-4,-29r0,-59v0,-6,-1,-11,-1,-16v0,-5,-2,-9,-3,-13v-1,-4,-3,-6,-6,-9v-3,-3,-7,-5,-12,-7r0,-2v5,-2,9,-4,12,-7v3,-3,5,-5,6,-9v1,-4,3,-8,3,-13v0,-5,1,-10,1,-16r0,-59v0,-12,1,-22,4,-29v3,-7,8,-13,13,-17v5,-4,11,-7,18,-8v7,-1,14,-2,21,-2r0,7v-6,2,-11,3,-14,6v-3,3,-5,5,-7,9v-2,4,-3,9,-4,14v-1,5,-1,11,-1,18r0,55v0,14,-3,26,-8,34v-5,8,-14,14,-27,18v7,2,14,4,18,7v4,3,7,7,10,11v3,4,4,9,5,15v1,6,2,12,2,19r0,55v0,7,0,13,1,18v1,5,2,10,4,14v2,4,4,6,7,9v3,3,8,6,14,7r0,6",w:111},"|":{d:"40,72r0,-337r21,0r0,337r-21,0",w:101},"}":{d:"89,-89v-5,2,-9,4,-12,7v-3,3,-5,6,-6,10v-1,4,-3,8,-3,13v0,5,-1,10,-1,16r0,58v0,12,-1,23,-4,30v-3,7,-8,13,-13,17v-5,4,-11,7,-18,8v-7,1,-14,2,-21,2r0,-7v6,-2,10,-3,13,-6v3,-3,6,-5,8,-9v2,-4,3,-9,4,-14v1,-5,1,-11,1,-18r0,-55v0,-14,3,-26,8,-34v5,-8,14,-14,27,-18v-7,-2,-14,-4,-18,-7v-4,-3,-7,-7,-10,-11v-3,-4,-4,-9,-5,-15v-1,-6,-2,-12,-2,-19r0,-55v0,-7,0,-13,-1,-18v-1,-5,-2,-10,-4,-14v-2,-4,-5,-7,-8,-10v-3,-3,-7,-5,-13,-6r0,-6v7,0,14,1,21,2v7,1,13,4,18,8v5,4,10,10,13,17v3,7,4,17,4,29r0,59v0,6,1,11,1,16v0,5,2,8,3,12v1,4,3,7,6,10v3,3,7,5,12,7r0,1",w:111},"~":{d:"159,-104v-1,4,-3,9,-6,14v-3,5,-6,8,-10,12v-4,4,-8,7,-13,9v-5,2,-10,3,-15,3v-5,0,-11,-1,-17,-3v-6,-2,-11,-4,-17,-6v-6,-2,-11,-4,-17,-6v-6,-2,-11,-3,-16,-3v-6,0,-10,1,-15,3v-5,2,-8,6,-10,12r-10,-6v1,-5,3,-9,6,-14v3,-5,5,-9,9,-13v4,-4,8,-7,13,-9v5,-2,10,-3,16,-3v6,0,12,1,18,3v6,2,11,4,17,6v6,2,11,3,16,5v5,2,10,3,15,3v6,0,10,0,15,-2v5,-2,8,-6,10,-12",w:172},"\u00c4":{d:"114,0r0,-10r32,0r-24,-72r-71,0r-25,72r29,0r0,10r-64,0r0,-10r21,0r84,-242r11,0r85,242r21,0r0,10r-99,0xm87,-186r-32,92r63,0xm91,-298v0,6,-1,10,-5,14v-4,4,-9,6,-15,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,11,2,15,6v4,4,5,8,5,14xm153,-298v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14",w:205,k:{"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d8":7,"\u00dc":9,"\u00d6":7,"\u00c7":7,y:8,w:8,v:8,t:8,Y:22,W:22,V:22,U:9,T:21,Q:7,O:7,G:7,C:7,"\u00dd":22}},"\u00c5":{d:"114,0r0,-10r32,0r-24,-72r-71,0r-25,72r29,0r0,10r-64,0r0,-10r21,0r84,-242r11,0r85,242r21,0r0,10r-99,0xm138,-300v0,5,-1,10,-3,14v-2,4,-4,8,-7,11v-3,3,-8,6,-12,8v-4,2,-9,2,-14,2v-10,0,-18,-3,-25,-9v-7,-6,-10,-15,-10,-25v0,-5,0,-9,2,-13v2,-4,5,-9,8,-12v3,-3,7,-5,11,-7v4,-2,9,-3,14,-3v10,0,19,4,26,10v7,6,10,14,10,24xm87,-186r-32,92r63,0xm122,-299v0,-6,-2,-11,-6,-15v-4,-4,-8,-5,-14,-5v-6,0,-11,2,-15,6v-4,4,-5,9,-5,15v0,6,2,10,6,14v4,4,9,5,15,5v6,0,11,-2,14,-6v3,-4,5,-8,5,-14",w:205,k:{"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d8":7,"\u00dc":9,"\u00d6":7,"\u00c7":7,y:8,w:8,v:8,t:8,Y:22,W:22,V:22,U:9,T:21,Q:7,O:7,G:7,C:7,"\u00dd":22}},"\u00c7":{d:"193,0v0,-2,0,-4,-1,-5v-1,-1,-3,-2,-4,-3v-1,-1,-3,-1,-5,-1v-4,0,-7,1,-10,2v-5,2,-6,2,-12,5v-4,2,-9,3,-15,5v-6,2,-13,2,-22,2r0,15v1,0,2,-1,3,-1r4,0v7,0,13,3,17,7v4,4,6,9,6,16v0,5,-1,9,-3,13v-2,4,-5,6,-8,9v-3,3,-7,5,-11,6v-4,1,-9,2,-13,2v-5,0,-9,0,-12,-1v-3,-1,-7,-2,-11,-4r4,-9v2,1,4,2,7,3v3,1,6,1,9,1v5,0,9,-2,12,-5v3,-3,4,-7,4,-12v0,-5,0,-9,-3,-12v-3,-3,-7,-4,-12,-4v-3,0,-4,1,-5,1r0,-25v-17,-1,-31,-6,-43,-13v-12,-7,-21,-16,-29,-28v-8,-12,-14,-24,-17,-39v-3,-15,-5,-30,-5,-45v0,-15,2,-31,6,-46v4,-15,10,-29,18,-42v8,-13,19,-23,32,-31v13,-8,29,-12,48,-12v9,0,15,0,21,2v6,2,10,4,14,6r10,5v3,2,6,3,9,3v6,0,11,-4,12,-10r8,0r0,68r-10,0v-1,-8,-2,-16,-5,-23v-3,-7,-7,-14,-12,-20v-5,-6,-10,-10,-17,-13v-7,-3,-14,-6,-23,-6v-15,0,-27,5,-36,13v-9,8,-15,19,-20,31v-5,12,-8,24,-9,38v-1,14,-2,26,-2,37v0,12,1,24,2,37v1,13,4,26,8,37v4,11,11,20,20,28v9,8,21,12,36,12v11,0,19,-2,27,-5v8,-3,14,-7,19,-13v5,-6,9,-13,12,-21v3,-8,5,-17,6,-27r10,0v0,6,-1,14,-1,22v0,8,1,16,1,23r0,27r-9,0",w:220,k:{".":17}},"\u00c9":{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r179,0r0,71r-11,0v-1,-21,-7,-37,-19,-47v-12,-10,-29,-14,-49,-14r-28,0r0,101r12,0v16,0,26,-3,32,-9v6,-6,10,-16,10,-31r9,0r-1,47r1,45r-10,0v0,-15,-3,-25,-9,-32v-6,-7,-16,-11,-32,-11r-12,0r0,115r42,0v10,0,19,-2,26,-6v7,-4,14,-10,19,-16v5,-6,8,-13,11,-21v3,-8,4,-17,4,-26r11,0r0,79r-185,0xm107,-270r-17,0r31,-56r41,0r0,4",w:221,k:{".":17}},"\u00d1":{d:"201,-235r0,239r-8,0r-139,-225r0,211r30,0r0,10r-73,0r0,-10r30,0r0,-225r-30,0r0,-10r76,0r101,163r0,-153r-31,0r0,-10r74,0r0,10r-30,0xm174,-300v-4,7,-10,12,-16,15v-6,3,-14,4,-22,4v-5,0,-10,-1,-14,-2v-4,-1,-8,-2,-12,-4v-4,-2,-9,-4,-13,-5v-4,-1,-8,-1,-13,-1v-5,0,-9,1,-13,5r-7,-8v4,-6,9,-10,13,-13v4,-3,11,-5,20,-5v5,0,10,1,15,2v5,1,9,4,14,5v5,1,10,3,14,4v4,1,9,1,13,1v5,0,10,-2,14,-7",w:236,k:{".":17}},"\u00d6":{d:"234,-125v0,17,-2,34,-6,50v-4,16,-11,29,-20,41v-9,12,-20,22,-34,29v-14,7,-31,10,-50,10v-19,0,-35,-3,-48,-10v-13,-7,-24,-16,-33,-28v-9,-12,-15,-26,-19,-41v-4,-15,-6,-31,-6,-48v0,-17,2,-34,6,-49v4,-15,11,-29,20,-41v9,-12,19,-21,33,-28v14,-7,30,-11,49,-11v18,0,34,3,48,10v14,7,25,15,34,27v9,12,16,25,20,40v4,15,6,32,6,49xm190,-125v0,-12,-1,-25,-2,-38v-1,-13,-4,-26,-8,-37v-4,-11,-10,-20,-19,-28v-9,-8,-21,-12,-36,-12v-14,0,-25,3,-33,10v-8,7,-15,17,-19,28v-4,11,-8,23,-9,37v-1,14,-2,28,-2,42v0,14,1,27,2,41v1,14,5,27,9,38v4,11,11,21,19,28v8,7,19,10,32,10v16,0,28,-3,37,-11v9,-8,16,-17,20,-29v4,-12,6,-25,7,-39v1,-14,2,-28,2,-40xm114,-290v0,6,-1,10,-5,14v-4,4,-9,6,-15,6v-6,0,-10,-2,-14,-6v-4,-4,-5,-8,-5,-14v0,-6,1,-10,5,-14v4,-4,8,-6,14,-6v6,0,11,2,15,6v4,4,5,8,5,14xm176,-290v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14",w:252,k:{"\u00d9":5,"\u00db":5,"\u00da":5,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00dc":5,"\u00c5":7,"\u00c4":7,Y:13,W:13,V:13,U:5,A:7,".":29}},"\u00dc":{d:"196,-235r0,168v0,13,-2,24,-6,33v-4,9,-9,16,-16,22v-7,6,-16,10,-26,13v-10,3,-20,4,-32,4v-12,0,-22,-1,-32,-4v-10,-3,-19,-7,-26,-13v-7,-6,-12,-14,-16,-23v-4,-9,-6,-19,-6,-31r0,-169r-32,0r0,-10r105,0r0,10r-31,0r0,171v0,20,4,34,14,43v10,9,23,13,39,13v9,0,16,-1,23,-4v7,-3,12,-7,16,-13v4,-6,8,-12,10,-20v2,-8,3,-15,3,-24r0,-166r-31,0r0,-10r76,0r0,10r-32,0xm114,-298v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14xm175,-298v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14",w:229,k:{"\u00d2":5,"\u00d4":5,"\u00d3":5,"\u00c1":9,"\u00c2":9,"\u00d5":5,"\u00c3":9,"\u00c0":9,"\u00d8":5,"\u00c6":9,"\u00d6":5,"\u00c7":5,"\u00c5":9,"\u00c4":9,Q:5,O:5,G:5,C:5,A:9,".":17}},"\u00e1":{d:"183,-12v-4,6,-9,10,-15,13v-6,3,-12,4,-19,4v-10,0,-18,-2,-24,-7v-6,-5,-8,-11,-8,-20v-2,5,-5,9,-8,13v-3,4,-7,6,-11,8v-4,2,-9,4,-14,5v-5,1,-9,1,-14,1v-7,0,-15,0,-22,-2v-7,-2,-13,-4,-18,-8v-5,-4,-10,-8,-13,-14v-3,-6,-5,-13,-5,-21v0,-12,3,-23,10,-30v7,-7,16,-12,26,-16v10,-4,20,-6,31,-7v11,-1,21,-2,30,-2r0,-29v0,-11,-1,-20,-5,-26v-4,-6,-12,-9,-24,-9v-8,0,-15,2,-19,6v-4,4,-6,10,-6,17r0,6v0,0,1,5,1,7v0,5,-1,8,-3,11v-2,3,-7,5,-12,5v-6,0,-10,-2,-13,-6v-3,-4,-5,-8,-5,-14v0,-7,2,-14,6,-19v4,-5,8,-10,14,-13v6,-3,12,-6,19,-7v7,-1,15,-2,21,-2v11,0,20,1,28,3v8,2,14,5,19,9v5,4,9,10,12,17v3,7,4,16,4,27r0,82v0,2,1,4,1,7v0,3,0,5,1,7v1,2,2,5,4,6v2,1,4,2,7,2v5,0,10,-1,13,-4v4,-4,4,-5,5,-6xm109,-84v-8,0,-16,0,-23,1v-7,1,-13,3,-18,6v-5,3,-10,7,-13,13v-3,6,-4,14,-4,24v0,10,2,18,6,25v4,7,10,10,21,10v6,0,11,-2,15,-4v4,-2,6,-5,9,-9v3,-4,5,-8,6,-13v1,-5,1,-9,1,-14r0,-39xm82,-189r-18,0r32,-56r41,0r0,4",w:178},"\u00e0":{d:"183,-12v-4,6,-9,10,-15,13v-6,3,-12,4,-19,4v-10,0,-18,-2,-24,-7v-6,-5,-8,-11,-8,-20v-2,5,-5,9,-8,13v-3,4,-7,6,-11,8v-4,2,-9,4,-14,5v-5,1,-9,1,-14,1v-7,0,-15,0,-22,-2v-7,-2,-13,-4,-18,-8v-5,-4,-10,-8,-13,-14v-3,-6,-5,-13,-5,-21v0,-12,3,-23,10,-30v7,-7,16,-12,26,-16v10,-4,20,-6,31,-7v11,-1,21,-2,30,-2r0,-29v0,-11,-1,-20,-5,-26v-4,-6,-12,-9,-24,-9v-8,0,-15,2,-19,6v-4,4,-6,10,-6,17r0,6v0,0,1,5,1,7v0,5,-1,8,-3,11v-2,3,-7,5,-12,5v-6,0,-10,-2,-13,-6v-3,-4,-5,-8,-5,-14v0,-7,2,-14,6,-19v4,-5,8,-10,14,-13v6,-3,12,-6,19,-7v7,-1,15,-2,21,-2v11,0,20,1,28,3v8,2,14,5,19,9v5,4,9,10,12,17v3,7,4,16,4,27r0,82v0,2,1,4,1,7v0,3,0,5,1,7v1,2,2,5,4,6v2,1,4,2,7,2v5,0,10,-1,13,-4v4,-4,4,-5,5,-6xm109,-84v-8,0,-16,0,-23,1v-7,1,-13,3,-18,6v-5,3,-10,7,-13,13v-3,6,-4,14,-4,24v0,10,2,18,6,25v4,7,10,10,21,10v6,0,11,-2,15,-4v4,-2,6,-5,9,-9v3,-4,5,-8,6,-13v1,-5,1,-9,1,-14r0,-39xm89,-189r-55,-52r0,-4r41,0r31,56r-17,0",w:178},"\u00e2":{d:"183,-12v-4,6,-9,10,-15,13v-6,3,-12,4,-19,4v-10,0,-18,-2,-24,-7v-6,-5,-8,-11,-8,-20v-2,5,-5,9,-8,13v-3,4,-7,6,-11,8v-4,2,-9,4,-14,5v-5,1,-9,1,-14,1v-7,0,-15,0,-22,-2v-7,-2,-13,-4,-18,-8v-5,-4,-10,-8,-13,-14v-3,-6,-5,-13,-5,-21v0,-12,3,-23,10,-30v7,-7,16,-12,26,-16v10,-4,20,-6,31,-7v11,-1,21,-2,30,-2r0,-29v0,-11,-1,-20,-5,-26v-4,-6,-12,-9,-24,-9v-8,0,-15,2,-19,6v-4,4,-6,10,-6,17r0,6v0,0,1,5,1,7v0,5,-1,8,-3,11v-2,3,-7,5,-12,5v-6,0,-10,-2,-13,-6v-3,-4,-5,-8,-5,-14v0,-7,2,-14,6,-19v4,-5,8,-10,14,-13v6,-3,12,-6,19,-7v7,-1,15,-2,21,-2v11,0,20,1,28,3v8,2,14,5,19,9v5,4,9,10,12,17v3,7,4,16,4,27r0,82v0,2,1,4,1,7v0,3,0,5,1,7v1,2,2,5,4,6v2,1,4,2,7,2v5,0,10,-1,13,-4v4,-4,4,-5,5,-6xm109,-84v-8,0,-16,0,-23,1v-7,1,-13,3,-18,6v-5,3,-10,7,-13,13v-3,6,-4,14,-4,24v0,10,2,18,6,25v4,7,10,10,21,10v6,0,11,-2,15,-4v4,-2,6,-5,9,-9v3,-4,5,-8,6,-13v1,-5,1,-9,1,-14r0,-39xm114,-189r-28,-35r-27,35r-18,0r27,-57r37,0r28,57r-19,0",w:178},"\u00e4":{d:"183,-12v-4,6,-9,10,-15,13v-6,3,-12,4,-19,4v-10,0,-18,-2,-24,-7v-6,-5,-8,-11,-8,-20v-2,5,-5,9,-8,13v-3,4,-7,6,-11,8v-4,2,-9,4,-14,5v-5,1,-9,1,-14,1v-7,0,-15,0,-22,-2v-7,-2,-13,-4,-18,-8v-5,-4,-10,-8,-13,-14v-3,-6,-5,-13,-5,-21v0,-12,3,-23,10,-30v7,-7,16,-12,26,-16v10,-4,20,-6,31,-7v11,-1,21,-2,30,-2r0,-29v0,-11,-1,-20,-5,-26v-4,-6,-12,-9,-24,-9v-8,0,-15,2,-19,6v-4,4,-6,10,-6,17r0,6v0,0,1,5,1,7v0,5,-1,8,-3,11v-2,3,-7,5,-12,5v-6,0,-10,-2,-13,-6v-3,-4,-5,-8,-5,-14v0,-7,2,-14,6,-19v4,-5,8,-10,14,-13v6,-3,12,-6,19,-7v7,-1,15,-2,21,-2v11,0,20,1,28,3v8,2,14,5,19,9v5,4,9,10,12,17v3,7,4,16,4,27r0,82v0,2,1,4,1,7v0,3,0,5,1,7v1,2,2,5,4,6v2,1,4,2,7,2v5,0,10,-1,13,-4v4,-4,4,-5,5,-6xm109,-84v-8,0,-16,0,-23,1v-7,1,-13,3,-18,6v-5,3,-10,7,-13,13v-3,6,-4,14,-4,24v0,10,2,18,6,25v4,7,10,10,21,10v6,0,11,-2,15,-4v4,-2,6,-5,9,-9v3,-4,5,-8,6,-13v1,-5,1,-9,1,-14r0,-39xm75,-217v0,6,-3,11,-7,15v-4,4,-8,5,-14,5v-6,0,-10,-1,-14,-5v-4,-4,-6,-9,-6,-15v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,7,8,7,14xm136,-217v0,6,-2,11,-6,15v-4,4,-8,5,-14,5v-6,0,-10,-1,-14,-5v-4,-4,-6,-9,-6,-15v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14",w:178},"\u00e3":{d:"183,-12v-4,6,-9,10,-15,13v-6,3,-12,4,-19,4v-10,0,-18,-2,-24,-7v-6,-5,-8,-11,-8,-20v-2,5,-5,9,-8,13v-3,4,-7,6,-11,8v-4,2,-9,4,-14,5v-5,1,-9,1,-14,1v-7,0,-15,0,-22,-2v-7,-2,-13,-4,-18,-8v-5,-4,-10,-8,-13,-14v-3,-6,-5,-13,-5,-21v0,-12,3,-23,10,-30v7,-7,16,-12,26,-16v10,-4,20,-6,31,-7v11,-1,21,-2,30,-2r0,-29v0,-11,-1,-20,-5,-26v-4,-6,-12,-9,-24,-9v-8,0,-15,2,-19,6v-4,4,-6,10,-6,17r0,6v0,0,1,5,1,7v0,5,-1,8,-3,11v-2,3,-7,5,-12,5v-6,0,-10,-2,-13,-6v-3,-4,-5,-8,-5,-14v0,-7,2,-14,6,-19v4,-5,8,-10,14,-13v6,-3,12,-6,19,-7v7,-1,15,-2,21,-2v11,0,20,1,28,3v8,2,14,5,19,9v5,4,9,10,12,17v3,7,4,16,4,27r0,82v0,2,1,4,1,7v0,3,0,5,1,7v1,2,2,5,4,6v2,1,4,2,7,2v5,0,10,-1,13,-4v4,-4,4,-5,5,-6xm109,-84v-8,0,-16,0,-23,1v-7,1,-13,3,-18,6v-5,3,-10,7,-13,13v-3,6,-4,14,-4,24v0,10,2,18,6,25v4,7,10,10,21,10v6,0,11,-2,15,-4v4,-2,6,-5,9,-9v3,-4,5,-8,6,-13v1,-5,1,-9,1,-14r0,-39xm139,-220v-4,7,-10,13,-16,16v-6,3,-13,4,-21,4v-5,0,-11,-1,-15,-2v-4,-1,-8,-3,-12,-5v-4,-2,-9,-3,-13,-4v-4,-1,-8,-2,-13,-2v-5,0,-9,2,-13,6r-7,-8v4,-6,9,-10,13,-13v4,-3,11,-5,20,-5v5,0,10,1,15,2v5,1,9,3,14,4v5,1,10,3,14,4v4,1,9,2,13,2v5,0,10,-2,14,-7",w:178},"\u00e5":{d:"183,-12v-4,6,-9,10,-15,13v-6,3,-12,4,-19,4v-10,0,-18,-2,-24,-7v-6,-5,-8,-11,-8,-20v-2,5,-5,9,-8,13v-3,4,-7,6,-11,8v-4,2,-9,4,-14,5v-5,1,-9,1,-14,1v-7,0,-15,0,-22,-2v-7,-2,-13,-4,-18,-8v-5,-4,-10,-8,-13,-14v-3,-6,-5,-13,-5,-21v0,-12,3,-23,10,-30v7,-7,16,-12,26,-16v10,-4,20,-6,31,-7v11,-1,21,-2,30,-2r0,-29v0,-11,-1,-20,-5,-26v-4,-6,-12,-9,-24,-9v-8,0,-15,2,-19,6v-4,4,-6,10,-6,17r0,6v0,0,1,5,1,7v0,5,-1,8,-3,11v-2,3,-7,5,-12,5v-6,0,-10,-2,-13,-6v-3,-4,-5,-8,-5,-14v0,-7,2,-14,6,-19v4,-5,8,-10,14,-13v6,-3,12,-6,19,-7v7,-1,15,-2,21,-2v11,0,20,1,28,3v8,2,14,5,19,9v5,4,9,10,12,17v3,7,4,16,4,27r0,82v0,2,1,4,1,7v0,3,0,5,1,7v1,2,2,5,4,6v2,1,4,2,7,2v5,0,10,-1,13,-4v4,-4,4,-5,5,-6xm126,-220v0,5,-1,10,-3,15v-2,5,-6,10,-9,13v-3,3,-7,6,-12,8v-5,2,-10,3,-16,3v-5,0,-10,-1,-15,-3v-5,-2,-8,-5,-12,-8v-4,-3,-7,-7,-9,-12v-2,-5,-3,-10,-3,-15v0,-5,1,-10,3,-15v2,-5,5,-9,8,-12v3,-3,8,-6,13,-8v5,-2,9,-3,15,-3v5,0,11,0,16,2v5,2,8,6,12,9v4,3,7,7,9,12v2,5,3,9,3,14xm109,-84v-8,0,-16,0,-23,1v-7,1,-13,3,-18,6v-5,3,-10,7,-13,13v-3,6,-4,14,-4,24v0,10,2,18,6,25v4,7,10,10,21,10v6,0,11,-2,15,-4v4,-2,6,-5,9,-9v3,-4,5,-8,6,-13v1,-5,1,-9,1,-14r0,-39xm109,-219v0,-6,-3,-12,-7,-16v-4,-4,-10,-6,-16,-6v-6,0,-12,2,-16,6v-4,4,-6,10,-6,16v0,6,3,12,7,16v4,4,10,6,16,6v7,0,12,-2,16,-6v4,-4,6,-9,6,-16",w:178},"\u00e7":{d:"154,-56v0,18,-6,32,-16,43v-10,11,-25,17,-44,18r0,15v1,0,2,-1,3,-1r4,0v7,0,13,3,17,7v4,4,6,9,6,16v0,5,-1,9,-3,13v-2,4,-5,6,-8,9v-3,3,-7,5,-11,6v-4,1,-9,2,-13,2v-5,0,-10,0,-13,-1v-3,-1,-6,-2,-10,-4r4,-9v2,1,4,2,7,3v3,1,6,1,9,1v5,0,9,-2,12,-5v3,-3,4,-7,4,-12v0,-5,-1,-9,-4,-12v-3,-3,-6,-4,-11,-4v-3,0,-5,1,-6,1r1,-25v-12,-1,-21,-4,-30,-9v-9,-5,-16,-11,-21,-19v-5,-8,-9,-17,-12,-27v-3,-10,-4,-20,-4,-31v0,-12,2,-22,5,-33v3,-11,8,-20,14,-28v6,-8,15,-14,25,-19v10,-5,21,-7,34,-7v6,0,13,0,20,2v7,2,13,5,18,8v5,3,9,7,12,12v3,5,5,11,5,18v0,5,-1,11,-5,16v-4,5,-9,7,-16,7v-3,0,-6,-1,-9,-3v-3,-2,-5,-6,-5,-9v0,-3,1,-6,1,-7v0,-1,1,-3,1,-4v0,-1,1,-2,1,-4v0,-2,1,-4,1,-7v0,-7,-2,-12,-6,-15v-4,-3,-11,-5,-18,-5v-9,0,-16,3,-21,8v-5,5,-9,12,-12,20v-3,8,-3,16,-4,25v-1,9,-1,17,-1,24r0,25v0,0,2,17,5,25v3,8,6,15,12,20v6,5,13,8,23,8v8,0,15,-1,21,-4v6,-3,10,-7,14,-12v4,-5,8,-10,10,-16v2,-6,3,-13,3,-20r11,0",w:162},"\u00e9":{d:"164,-56v-1,9,-3,16,-7,24v-4,8,-8,15,-14,20v-6,5,-13,10,-21,13v-8,3,-17,4,-27,4v-13,0,-25,-2,-35,-6v-10,-4,-18,-10,-25,-18v-7,-8,-12,-17,-15,-27v-3,-10,-5,-22,-5,-34v0,-11,1,-21,4,-32v3,-11,7,-21,13,-29v6,-8,14,-15,24,-20v10,-5,21,-7,35,-7v13,0,25,2,34,7v9,5,16,11,22,19v6,8,9,17,12,28v3,11,4,22,4,33r-108,0v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,13,18v6,5,14,8,25,8v8,0,15,-2,21,-5v6,-3,12,-6,17,-11v5,-5,8,-11,11,-17v3,-6,4,-13,5,-20xm123,-93v0,-6,0,-13,-1,-21v-1,-8,-2,-14,-4,-21v-2,-7,-7,-12,-11,-17v-4,-5,-10,-7,-17,-7v-8,0,-15,2,-19,7v-4,5,-8,11,-10,18v-2,7,-3,14,-4,22v-1,8,-2,13,-2,19r68,0xm87,-189r-18,0r32,-56r40,0r0,4",w:177},"\u00e8":{d:"164,-56v-1,9,-3,16,-7,24v-4,8,-8,15,-14,20v-6,5,-13,10,-21,13v-8,3,-17,4,-27,4v-13,0,-25,-2,-35,-6v-10,-4,-18,-10,-25,-18v-7,-8,-12,-17,-15,-27v-3,-10,-5,-22,-5,-34v0,-11,1,-21,4,-32v3,-11,7,-21,13,-29v6,-8,14,-15,24,-20v10,-5,21,-7,35,-7v13,0,25,2,34,7v9,5,16,11,22,19v6,8,9,17,12,28v3,11,4,22,4,33r-108,0v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,13,18v6,5,14,8,25,8v8,0,15,-2,21,-5v6,-3,12,-6,17,-11v5,-5,8,-11,11,-17v3,-6,4,-13,5,-20xm123,-93v0,-6,0,-13,-1,-21v-1,-8,-2,-14,-4,-21v-2,-7,-7,-12,-11,-17v-4,-5,-10,-7,-17,-7v-8,0,-15,2,-19,7v-4,5,-8,11,-10,18v-2,7,-3,14,-4,22v-1,8,-2,13,-2,19r68,0xm93,-189r-55,-53r0,-4r40,0r32,57r-17,0",w:177},"\u00ea":{d:"164,-56v-1,9,-3,16,-7,24v-4,8,-8,15,-14,20v-6,5,-13,10,-21,13v-8,3,-17,4,-27,4v-13,0,-25,-2,-35,-6v-10,-4,-18,-10,-25,-18v-7,-8,-12,-17,-15,-27v-3,-10,-5,-22,-5,-34v0,-11,1,-21,4,-32v3,-11,7,-21,13,-29v6,-8,14,-15,24,-20v10,-5,21,-7,35,-7v13,0,25,2,34,7v9,5,16,11,22,19v6,8,9,17,12,28v3,11,4,22,4,33r-108,0v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,13,18v6,5,14,8,25,8v8,0,15,-2,21,-5v6,-3,12,-6,17,-11v5,-5,8,-11,11,-17v3,-6,4,-13,5,-20xm123,-93v0,-6,0,-13,-1,-21v-1,-8,-2,-14,-4,-21v-2,-7,-7,-12,-11,-17v-4,-5,-10,-7,-17,-7v-8,0,-15,2,-19,7v-4,5,-8,11,-10,18v-2,7,-3,14,-4,22v-1,8,-2,13,-2,19r68,0xm118,-189r-28,-35r-27,35r-18,0r27,-56r37,0r28,56r-19,0",w:177},"\u00eb":{d:"164,-56v-1,9,-3,16,-7,24v-4,8,-8,15,-14,20v-6,5,-13,10,-21,13v-8,3,-17,4,-27,4v-13,0,-25,-2,-35,-6v-10,-4,-18,-10,-25,-18v-7,-8,-12,-17,-15,-27v-3,-10,-5,-22,-5,-34v0,-11,1,-21,4,-32v3,-11,7,-21,13,-29v6,-8,14,-15,24,-20v10,-5,21,-7,35,-7v13,0,25,2,34,7v9,5,16,11,22,19v6,8,9,17,12,28v3,11,4,22,4,33r-108,0v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,13,18v6,5,14,8,25,8v8,0,15,-2,21,-5v6,-3,12,-6,17,-11v5,-5,8,-11,11,-17v3,-6,4,-13,5,-20xm123,-93v0,-6,0,-13,-1,-21v-1,-8,-2,-14,-4,-21v-2,-7,-7,-12,-11,-17v-4,-5,-10,-7,-17,-7v-8,0,-15,2,-19,7v-4,5,-8,11,-10,18v-2,7,-3,14,-4,22v-1,8,-2,13,-2,19r68,0xm80,-217v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14xm141,-217v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-5,-8,-5,-14v0,-6,1,-10,5,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14",w:177},"\u00ed":{d:"6,0r0,-10r27,0r0,-143r-27,0r0,-10r40,0r24,-4r0,157r30,0r0,10r-94,0xm49,-190r-17,0r31,-56r41,0r0,4",w:102},"\u00ec":{d:"7,0r0,-10r26,0r0,-143r-26,0r0,-10r39,0r24,-4r0,157r30,0r0,10r-93,0xm50,-189r-54,-52r0,-4r40,0r32,56r-18,0",w:102},"\u00ee":{d:"6,0r0,-10r27,0r0,-143r-27,0r0,-10r40,0r23,-4r0,157r30,0r0,10r-93,0xm78,-189r-28,-35r-27,35r-18,0r27,-57r37,0r28,57r-19,0",w:102},"\u00ef":{d:"6,0r0,-10r27,0r0,-143r-27,0r0,-10r40,0r24,-4r0,157r30,0r0,10r-94,0xm40,-217v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14xm101,-217v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-5,-8,-5,-14v0,-6,1,-10,5,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14",w:102},"\u00f1":{d:"113,0r0,-10r28,0r0,-94r0,-18v0,0,-1,-12,-3,-17v-2,-5,-5,-9,-9,-12v-4,-3,-10,-5,-18,-5v-9,0,-17,2,-22,6v-5,4,-9,9,-12,15v-3,6,-4,14,-5,21v-1,7,-1,14,-1,20r0,84r28,0r0,10r-93,0r0,-10r28,0r0,-124r-2,-19r-25,0r0,-10r37,0r23,-3r2,27v4,-9,10,-17,18,-22v8,-5,19,-7,33,-7v20,0,35,4,44,13v9,9,14,22,14,40r0,105r28,0r0,10r-93,0xm158,-220v-4,7,-9,12,-15,15v-6,3,-14,4,-22,4v-5,0,-10,-1,-14,-2v-4,-1,-9,-2,-13,-4v-4,-2,-8,-4,-12,-5v-4,-1,-8,-1,-13,-1v-5,0,-10,1,-14,5r-6,-8v4,-6,9,-10,13,-13v4,-3,11,-5,20,-5v5,0,10,1,15,2v5,1,9,3,14,4v5,1,10,3,14,4v4,1,9,2,13,2v5,0,10,-2,14,-7",w:210},"\u00f3":{d:"175,-81v0,11,-2,22,-6,32v-4,10,-8,20,-15,28v-7,8,-16,14,-26,19v-10,5,-21,7,-34,7v-12,0,-23,-2,-33,-7v-10,-5,-18,-11,-25,-19v-7,-8,-11,-17,-15,-27v-4,-10,-6,-22,-6,-33v0,-11,2,-23,5,-33v3,-10,9,-19,16,-27v7,-8,14,-15,24,-20v10,-5,22,-7,35,-7v13,0,24,2,34,7v10,5,18,12,25,20v7,8,12,17,15,28v3,11,6,21,6,32xm135,-81v0,-8,0,-16,-1,-25v-1,-9,-3,-17,-6,-25v-3,-8,-7,-14,-12,-19v-5,-5,-12,-8,-21,-8v-9,0,-17,3,-22,8v-5,5,-9,11,-12,19v-3,8,-4,16,-5,25v-1,9,-1,17,-1,25v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,12,18v5,5,13,8,22,8v9,0,16,-3,21,-8v5,-5,9,-10,12,-18v3,-8,5,-16,6,-25v1,-9,1,-18,1,-26xm92,-188r-17,0r31,-56r41,0r0,4",w:189},"\u00f2":{d:"175,-81v0,11,-2,22,-6,32v-4,10,-8,20,-15,28v-7,8,-16,14,-26,19v-10,5,-21,7,-34,7v-12,0,-23,-2,-33,-7v-10,-5,-18,-11,-25,-19v-7,-8,-11,-17,-15,-27v-4,-10,-6,-22,-6,-33v0,-11,2,-23,5,-33v3,-10,9,-19,16,-27v7,-8,14,-15,24,-20v10,-5,22,-7,35,-7v13,0,24,2,34,7v10,5,18,12,25,20v7,8,12,17,15,28v3,11,6,21,6,32xm135,-81v0,-8,0,-16,-1,-25v-1,-9,-3,-17,-6,-25v-3,-8,-7,-14,-12,-19v-5,-5,-12,-8,-21,-8v-9,0,-17,3,-22,8v-5,5,-9,11,-12,19v-3,8,-4,16,-5,25v-1,9,-1,17,-1,25v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,12,18v5,5,13,8,22,8v9,0,16,-3,21,-8v5,-5,9,-10,12,-18v3,-8,5,-16,6,-25v1,-9,1,-18,1,-26xm95,-189r-55,-52r0,-4r41,0r32,56r-18,0",w:189},"\u00f4":{d:"175,-81v0,11,-2,22,-6,32v-4,10,-8,20,-15,28v-7,8,-16,14,-26,19v-10,5,-21,7,-34,7v-12,0,-23,-2,-33,-7v-10,-5,-18,-11,-25,-19v-7,-8,-11,-17,-15,-27v-4,-10,-6,-22,-6,-33v0,-11,2,-23,5,-33v3,-10,9,-19,16,-27v7,-8,14,-15,24,-20v10,-5,22,-7,35,-7v13,0,24,2,34,7v10,5,18,12,25,20v7,8,12,17,15,28v3,11,6,21,6,32xm135,-81v0,-8,0,-16,-1,-25v-1,-9,-3,-17,-6,-25v-3,-8,-7,-14,-12,-19v-5,-5,-12,-8,-21,-8v-9,0,-17,3,-22,8v-5,5,-9,11,-12,19v-3,8,-4,16,-5,25v-1,9,-1,17,-1,25v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,12,18v5,5,13,8,22,8v9,0,16,-3,21,-8v5,-5,9,-10,12,-18v3,-8,5,-16,6,-25v1,-9,1,-18,1,-26xm122,-189r-28,-35r-27,35r-18,0r27,-56r37,0r28,56r-19,0",w:189},"\u00f6":{d:"175,-81v0,11,-2,22,-6,32v-4,10,-8,20,-15,28v-7,8,-16,14,-26,19v-10,5,-21,7,-34,7v-12,0,-23,-2,-33,-7v-10,-5,-18,-11,-25,-19v-7,-8,-11,-17,-15,-27v-4,-10,-6,-22,-6,-33v0,-11,2,-23,5,-33v3,-10,9,-19,16,-27v7,-8,14,-15,24,-20v10,-5,22,-7,35,-7v13,0,24,2,34,7v10,5,18,12,25,20v7,8,12,17,15,28v3,11,6,21,6,32xm135,-81v0,-8,0,-16,-1,-25v-1,-9,-3,-17,-6,-25v-3,-8,-7,-14,-12,-19v-5,-5,-12,-8,-21,-8v-9,0,-17,3,-22,8v-5,5,-9,11,-12,19v-3,8,-4,16,-5,25v-1,9,-1,17,-1,25v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,12,18v5,5,13,8,22,8v9,0,16,-3,21,-8v5,-5,9,-10,12,-18v3,-8,5,-16,6,-25v1,-9,1,-18,1,-26xm84,-216v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-11,6,-15v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,9,6,15xm145,-216v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-11,6,-15v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,9,6,15",w:189},"\u00f5":{d:"175,-81v0,11,-2,22,-6,32v-4,10,-8,20,-15,28v-7,8,-16,14,-26,19v-10,5,-21,7,-34,7v-12,0,-23,-2,-33,-7v-10,-5,-18,-11,-25,-19v-7,-8,-11,-17,-15,-27v-4,-10,-6,-22,-6,-33v0,-11,2,-23,5,-33v3,-10,9,-19,16,-27v7,-8,14,-15,24,-20v10,-5,22,-7,35,-7v13,0,24,2,34,7v10,5,18,12,25,20v7,8,12,17,15,28v3,11,6,21,6,32xm135,-81v0,-8,0,-16,-1,-25v-1,-9,-3,-17,-6,-25v-3,-8,-7,-14,-12,-19v-5,-5,-12,-8,-21,-8v-9,0,-17,3,-22,8v-5,5,-9,11,-12,19v-3,8,-4,16,-5,25v-1,9,-1,17,-1,25v0,8,0,17,1,26v1,9,2,17,5,25v3,8,7,13,12,18v5,5,13,8,22,8v9,0,16,-3,21,-8v5,-5,9,-10,12,-18v3,-8,5,-16,6,-25v1,-9,1,-18,1,-26xm150,-220v-4,7,-10,12,-16,15v-6,3,-13,4,-21,4v-5,0,-10,-1,-14,-2v-4,-1,-9,-2,-13,-4v-4,-2,-9,-4,-13,-5v-4,-1,-8,-1,-13,-1v-5,0,-9,1,-13,5r-7,-8v4,-6,9,-10,13,-13v4,-3,11,-5,20,-5v5,0,10,1,15,2v5,1,9,3,14,4v5,1,10,3,14,4v4,1,9,2,13,2v5,0,10,-2,14,-7",w:189},"\u00fa":{d:"138,0r-2,-24v-9,20,-26,29,-49,29v-18,0,-33,-4,-43,-13v-10,-9,-15,-22,-15,-43r0,-102r-25,0r0,-10r38,0r24,-4r0,124v0,6,0,11,2,17v2,6,5,11,9,15v4,4,10,6,19,6v6,0,12,-2,16,-5v4,-3,8,-7,11,-12v3,-5,5,-10,6,-16v1,-6,2,-11,2,-17r0,-98r-28,0r0,-10r42,0r23,-3r0,142r2,14r28,0r0,10r-60,0xm86,-189r-18,0r32,-56r40,0r0,4",w:199},"\u00f9":{d:"138,0r-2,-24v-9,20,-26,29,-49,29v-18,0,-33,-4,-43,-13v-10,-9,-15,-22,-15,-43r0,-102r-25,0r0,-10r38,0r24,-4r0,124v0,6,0,11,2,17v2,6,5,11,9,15v4,4,10,6,19,6v6,0,12,-2,16,-5v4,-3,8,-7,11,-12v3,-5,5,-10,6,-16v1,-6,2,-11,2,-17r0,-98r-28,0r0,-10r42,0r23,-3r0,142r2,14r28,0r0,10r-60,0xm99,-189r-55,-53r0,-4r41,0r31,57r-17,0",w:199},"\u00fb":{d:"138,0r-2,-24v-9,20,-26,29,-49,29v-18,0,-33,-4,-43,-13v-10,-9,-15,-22,-15,-43r0,-102r-25,0r0,-10r38,0r24,-4r0,124v0,6,0,11,2,17v2,6,5,11,9,15v4,4,10,6,19,6v6,0,12,-2,16,-5v4,-3,8,-7,11,-12v3,-5,5,-10,6,-16v1,-6,2,-11,2,-17r0,-98r-28,0r0,-10r42,0r23,-3r0,142r2,14r28,0r0,10r-60,0xm122,-189r-27,-35r-28,35r-18,0r27,-56r37,0r28,56r-19,0",w:199},"\u00fc":{d:"138,0r-2,-24v-9,20,-26,29,-49,29v-18,0,-33,-4,-43,-13v-10,-9,-15,-22,-15,-43r0,-102r-25,0r0,-10r38,0r24,-4r0,124v0,6,0,11,2,17v2,6,5,11,9,15v4,4,10,6,19,6v6,0,12,-2,16,-5v4,-3,8,-7,11,-12v3,-5,5,-10,6,-16v1,-6,2,-11,2,-17r0,-98r-28,0r0,-10r42,0r23,-3r0,142r2,14r28,0r0,10r-60,0xm83,-217v0,6,-2,10,-6,14v-4,4,-9,6,-15,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-7,14,-7v6,0,11,3,15,7v4,4,6,8,6,14xm145,-217v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-7,14,-7v6,0,10,3,14,7v4,4,6,8,6,14",w:199},"\u00b0":{d:"106,-213v0,6,-2,12,-4,17v-2,5,-5,10,-9,14v-4,4,-9,8,-15,10v-6,2,-12,4,-18,4v-6,0,-11,-2,-17,-4v-6,-2,-10,-5,-14,-9v-4,-4,-8,-9,-10,-15v-2,-6,-3,-11,-3,-17v0,-6,1,-12,3,-17v2,-5,6,-10,10,-14v4,-4,9,-8,14,-10v5,-2,11,-3,17,-3v13,0,25,4,33,12v8,8,13,19,13,32xm87,-213v0,-8,-2,-15,-7,-20v-5,-5,-12,-7,-20,-7v-8,0,-14,2,-19,8v-5,6,-8,12,-8,19v0,8,3,15,8,20v5,5,11,8,19,8v4,0,8,0,11,-2v3,-2,7,-4,9,-7v2,-3,5,-6,6,-9v1,-3,1,-6,1,-10",w:121},"\u00a2":{d:"166,-98v-2,18,-8,33,-17,43v-9,10,-22,17,-40,18r0,37r-14,0r0,-36v-24,-3,-41,-12,-53,-27v-12,-15,-19,-34,-19,-59v0,-13,2,-24,5,-34v3,-10,8,-20,14,-27v6,-7,14,-14,23,-18v9,-4,19,-7,30,-8r0,-36r14,0r0,36v6,0,13,1,20,3v7,2,13,4,18,8v5,4,9,8,12,13v3,5,6,12,6,19v0,8,-3,14,-6,18v-3,4,-8,5,-14,5v-5,0,-9,-1,-11,-4v-2,-3,-2,-6,-2,-9v0,-3,0,-6,1,-9v1,-3,1,-6,1,-8v0,-9,-2,-16,-6,-20v-4,-4,-11,-6,-20,-6r0,152v7,0,14,-2,20,-5v6,-3,10,-6,14,-11v4,-5,6,-10,8,-16v2,-6,4,-13,4,-19r12,0xm95,-199v-7,1,-14,5,-18,11v-4,6,-8,13,-10,21v-2,8,-4,16,-5,24v-1,8,-2,15,-2,21v0,6,1,13,2,21v1,8,2,16,4,24v2,8,6,14,11,20v5,6,11,9,18,10r0,-152"},"\u00a3":{d:"182,-47v-2,17,-7,30,-14,39v-7,9,-17,13,-29,13v-5,0,-11,0,-15,-2v-4,-2,-9,-4,-13,-7v-4,-3,-8,-5,-12,-8v-4,-3,-8,-5,-13,-7v-5,9,-12,14,-21,18v-9,4,-19,6,-28,6v-4,0,-8,0,-11,-1v-3,-1,-6,-1,-9,-3v-3,-2,-5,-4,-7,-7v-2,-3,-2,-7,-2,-11v0,-5,1,-9,3,-12v2,-3,5,-5,8,-7v3,-2,6,-3,10,-4v4,-1,8,-1,11,-1v6,0,13,1,20,2v7,1,14,2,20,4v0,-1,1,-2,1,-5r0,-9v0,-7,0,-14,-2,-21v-2,-7,-4,-13,-7,-20v-3,-7,-6,-14,-9,-20r-9,-19r-41,0r5,-13r31,0v-2,-5,-4,-10,-5,-15v-1,-4,-3,-9,-4,-14v-1,-5,-1,-10,-1,-15v0,-18,6,-32,18,-43v12,-11,29,-16,49,-16v9,0,16,1,24,3v8,2,14,5,20,9v6,4,10,9,13,15v3,6,5,14,5,23v0,7,-1,13,-5,18v-4,5,-9,7,-16,7v-5,0,-9,-2,-11,-5v-2,-3,-3,-7,-3,-11v0,-2,1,-6,2,-9v1,-3,1,-6,1,-8v0,-8,-2,-16,-7,-22v-5,-6,-11,-9,-20,-9v-13,0,-22,4,-27,13v-5,9,-8,20,-8,33v0,6,1,13,2,22v1,9,3,17,4,24r59,0r-4,13r-52,0v1,3,2,7,3,13v2,9,1,10,3,20v1,7,3,13,4,19v1,6,1,10,1,13v0,5,-1,10,-1,16v0,6,-1,10,-2,15v1,0,4,1,8,2v4,1,8,1,12,2v4,1,9,2,13,2r11,0v9,0,18,-1,25,-4v7,-3,12,-9,14,-18xm76,-23v-6,-3,-13,-5,-19,-7v-6,-2,-12,-3,-19,-3v-5,0,-9,1,-14,3v-5,2,-7,7,-7,13v0,6,2,9,7,11v5,2,9,3,13,3v8,0,16,-1,23,-4v7,-3,12,-9,16,-16"},"\u00a7":{d:"175,-66v0,12,-4,24,-11,33v-7,9,-16,17,-27,23v3,4,5,9,6,13v1,4,2,9,2,15v0,8,-2,16,-5,23v-3,7,-7,12,-12,17v-5,5,-11,7,-18,10v-7,3,-15,4,-23,4v-5,0,-10,-1,-16,-2v-6,-1,-10,-2,-15,-5v-5,-3,-9,-7,-12,-11v-3,-4,-5,-10,-5,-16v0,-6,2,-10,5,-15v3,-5,7,-7,14,-7v4,0,8,1,10,4v2,3,3,6,3,11r0,6v0,0,-1,3,-1,5v0,7,2,12,7,15v5,3,11,5,18,5v9,0,15,-2,21,-8v6,-6,9,-13,9,-21v0,-4,-1,-8,-3,-12v-2,-4,-4,-8,-7,-11v-3,-3,-4,-6,-7,-9v-3,-3,-5,-4,-6,-5r-31,-28r-26,-24v-18,-16,-27,-37,-27,-61v0,-12,4,-24,11,-33v7,-9,17,-17,28,-23v-3,-4,-5,-9,-6,-13v-1,-4,-2,-9,-2,-15v0,-8,1,-15,4,-22v3,-7,8,-12,13,-17v5,-5,11,-8,18,-11v7,-3,15,-4,23,-4v5,0,10,1,16,2v6,1,10,3,15,6v5,3,9,7,12,11v3,4,4,10,4,16v0,6,-1,10,-4,15v-3,5,-7,7,-14,7v-5,0,-8,-1,-10,-4v-2,-3,-3,-6,-3,-11r0,-6v0,0,1,-4,1,-6v0,-7,-2,-12,-7,-15v-5,-3,-11,-5,-18,-5v-9,0,-15,3,-21,9v-6,6,-9,13,-9,21v0,4,1,8,2,11v1,3,3,6,5,9v2,3,5,6,7,8r5,5v9,9,8,9,16,16r15,13v0,0,6,5,12,11v6,6,6,6,12,11v10,9,17,19,23,30v6,11,9,23,9,35xm152,-53v0,-11,-3,-21,-9,-30v-6,-9,-13,-18,-22,-26r-50,-47r-5,-5v-2,-3,-3,-2,-5,-5v-6,4,-11,9,-14,15v-3,6,-6,13,-6,21v0,11,3,21,9,30v6,9,14,19,23,27r50,47v2,2,4,3,5,5r4,5v6,-4,12,-10,15,-16v3,-6,5,-13,5,-21"},"\u00b6":{d:"72,67r0,-10r31,0r0,-151v-13,0,-24,-1,-35,-4v-11,-3,-20,-7,-28,-13v-8,-6,-15,-15,-19,-24v-4,-9,-6,-21,-6,-34v0,-13,2,-23,7,-33v5,-10,12,-18,20,-24v8,-6,18,-11,29,-14v11,-3,23,-5,36,-5r94,0r0,10r-31,0r0,292r31,0r0,10r-129,0xm154,-235r-19,0r0,292r19,0r0,-292xm103,-237v-17,0,-29,6,-36,18v-7,12,-10,28,-10,51v0,12,0,22,2,31v2,9,4,16,8,21v4,5,8,9,14,11v6,2,13,3,22,3r0,-135",w:216},"\u00df":{d:"182,-79v0,11,-2,21,-5,31v-3,10,-7,18,-13,26v-6,8,-13,13,-22,18v-9,5,-19,7,-30,7v-3,0,-6,0,-12,-1v-6,-1,-12,-2,-19,-7v1,-1,2,-3,3,-5v1,-2,2,-4,3,-5v3,2,7,3,11,4v4,1,8,2,12,2v9,0,16,-3,21,-8v5,-5,7,-12,9,-19v2,-7,3,-15,3,-23r0,-21v0,-10,-1,-19,-3,-28v-2,-9,-5,-16,-9,-23v-4,-7,-10,-12,-17,-16v-7,-4,-15,-6,-25,-6r0,-10v13,0,24,-4,33,-12v9,-8,13,-19,13,-33r0,-16v0,0,-2,-11,-4,-16v-2,-5,-5,-10,-9,-14v-4,-4,-9,-6,-16,-6v-7,0,-13,2,-17,5v-4,3,-7,8,-10,13v-3,5,-5,11,-6,18v-1,7,-1,14,-1,21r0,203r-61,0r0,-10r25,0r0,-143r-24,0r0,-10r24,0r0,-28v0,-10,1,-20,4,-29v3,-9,7,-18,13,-25v6,-7,13,-14,22,-18v9,-4,19,-7,31,-7v19,0,33,5,43,15v10,10,16,25,16,44v0,9,-2,17,-5,23v-3,6,-8,12,-13,16v-5,4,-11,8,-18,10v-6,2,-12,4,-18,4v5,1,12,2,19,4v9,2,16,6,24,12v8,6,15,13,20,23v5,10,8,23,8,40",w:195},"\u00ae":{d:"190,-162v0,12,-2,23,-7,34v-5,11,-11,20,-19,28v-8,8,-17,14,-28,19v-11,5,-23,7,-36,7v-13,0,-24,-2,-35,-7v-11,-5,-20,-11,-28,-19v-8,-8,-14,-17,-18,-28v-4,-11,-6,-22,-6,-34v0,-12,2,-24,6,-35v4,-11,11,-20,19,-28v8,-8,16,-14,27,-19v11,-5,22,-7,35,-7v13,0,26,2,37,7v11,5,20,11,28,19v8,8,14,17,18,28v4,11,7,23,7,35xm174,-162v0,-10,-1,-20,-5,-29v-4,-9,-9,-17,-15,-24v-6,-7,-15,-12,-24,-16v-9,-4,-19,-6,-30,-6v-11,0,-21,2,-30,6v-9,4,-17,9,-23,16v-6,7,-11,15,-15,24v-4,9,-5,19,-5,29v0,10,1,20,5,29v4,9,9,16,15,23v6,7,14,12,23,16v9,4,18,6,29,6v11,0,21,-2,30,-6v9,-4,17,-9,24,-16v7,-7,11,-14,15,-23v4,-9,6,-19,6,-29xm148,-108r-5,0r-6,0v-4,0,-7,0,-10,-1v-3,-1,-5,-3,-6,-5v-1,-2,-2,-5,-2,-8r0,-9r0,-14v0,-5,-1,-8,-4,-10v-3,-2,-7,-3,-14,-3r-14,0r0,41r14,0r0,8r-47,0r0,-8r14,0r0,-87r-14,0r0,-9r54,0v8,0,16,2,22,5v6,3,9,10,9,19v0,7,-2,13,-7,17v-5,4,-10,8,-16,9v3,1,6,1,9,2v3,1,4,2,6,3v2,1,3,4,4,6v1,2,1,4,1,8v0,4,1,8,1,11v0,3,1,6,1,7v0,4,2,7,3,8v1,1,3,2,7,2r0,4r0,4xm120,-186v0,-6,-2,-11,-5,-14v-3,-3,-9,-4,-15,-4r-13,0r0,38r15,0v7,0,11,-2,14,-5v3,-3,4,-8,4,-15",w:202},"\u00a9":{d:"190,-162v0,12,-2,23,-7,34v-5,11,-11,20,-19,28v-8,8,-17,14,-28,19v-11,5,-23,7,-36,7v-13,0,-24,-2,-35,-7v-11,-5,-20,-11,-28,-19v-8,-8,-14,-17,-18,-28v-4,-11,-6,-22,-6,-34v0,-12,2,-24,6,-35v4,-11,11,-20,19,-28v8,-8,16,-14,27,-19v11,-5,22,-7,35,-7v13,0,26,2,37,7v11,5,20,11,28,19v8,8,14,17,18,28v4,11,7,23,7,35xm174,-162v0,-10,-1,-20,-5,-29v-4,-9,-9,-17,-15,-24v-6,-7,-15,-12,-24,-16v-9,-4,-19,-6,-30,-6v-11,0,-21,2,-30,6v-9,4,-17,9,-23,16v-6,7,-11,15,-15,24v-4,9,-5,19,-5,29v0,10,1,20,5,29v4,9,9,17,15,24v6,7,14,12,23,16v9,4,18,6,29,6v11,0,21,-2,30,-6v9,-4,17,-9,24,-16v7,-7,11,-15,15,-24v4,-9,6,-19,6,-29xm134,-110r0,-2v0,0,-2,-2,-4,-2v-2,0,-4,1,-8,3v-4,2,-10,3,-18,3v-8,0,-14,-1,-20,-4v-6,-3,-11,-6,-15,-11v-4,-5,-7,-11,-9,-17v-2,-6,-3,-14,-3,-21v0,-7,1,-13,3,-20v2,-7,4,-13,8,-18v4,-5,8,-10,14,-13v6,-3,12,-5,20,-5v7,0,13,1,17,3v4,2,6,3,8,3v3,0,4,-1,5,-4r4,0r0,29r-5,0v-1,-6,-3,-11,-7,-16v-4,-5,-10,-8,-17,-8v-6,0,-12,2,-16,5v-4,3,-6,8,-8,13v-2,5,-4,10,-4,16v0,6,-1,11,-1,15v0,5,1,11,1,16v0,5,2,10,4,14v2,4,4,8,8,11v4,3,9,4,16,4v9,0,15,-2,19,-6v4,-4,6,-11,7,-19r6,0r0,31r-5,0",w:202},"\u2122":{d:"155,-166r0,-6r12,0r0,-65r-27,72r-3,0r-31,-73r0,66r12,0r0,6r-31,0r0,-6r12,0r0,-67r-10,0r0,-6r33,0r21,53r19,-53r34,0r0,6r-12,0r0,67r12,0r0,6r-41,0xm78,-222v0,-6,-2,-11,-6,-14v-4,-3,-9,-3,-15,-3r0,67r14,0r0,6r-47,0r0,-6r14,0r0,-67v-6,0,-11,0,-15,3v-4,3,-6,8,-6,14r-4,0r0,-23r70,0r0,23r-5,0",w:207},"\u00b4":{d:"54,-189r-18,0r32,-56r40,0r0,4",w:151},"\u00a8":{d:"66,-217v0,6,-2,10,-6,14v-4,4,-9,6,-15,6v-6,0,-10,-2,-14,-6v-4,-4,-5,-8,-5,-14v0,-6,1,-10,5,-14v4,-4,8,-6,14,-6v6,0,11,2,15,6v4,4,6,8,6,14xm127,-217v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14",w:151},"\u00c6":{d:"98,0r0,-10r36,0r0,-72r-85,0r-41,72r25,0r0,10r-56,0r0,-10r15,0r130,-225r-28,0r0,-10r185,0r0,71r-11,0v0,-20,-6,-36,-18,-46v-12,-10,-29,-15,-49,-15r-25,0r0,99r12,0v26,0,39,-12,39,-38r10,0r0,10r0,13v0,5,-1,9,-1,13r0,10r0,21v0,8,1,16,1,25r-11,0v0,-6,0,-12,-2,-17v-2,-5,-4,-9,-7,-13v-3,-4,-7,-8,-12,-10v-5,-2,-11,-3,-17,-3r-12,0r0,115r37,0v10,0,19,-2,27,-6v8,-4,14,-10,19,-16v5,-6,9,-13,11,-21v2,-8,4,-17,4,-26r11,0r0,79r-187,0xm134,-229r-79,137r79,0r0,-137",w:306,k:{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,Q:7,O:7,G:7,C:7,".":17}},"\u00d8":{d:"234,-125v0,17,-2,34,-6,50v-4,16,-11,29,-20,41v-9,12,-20,22,-34,29v-14,7,-31,10,-50,10v-12,0,-23,-1,-33,-4v-10,-3,-19,-7,-27,-13r-20,31r-13,-8r21,-33v-12,-12,-20,-27,-26,-45v-6,-18,-8,-35,-8,-55v0,-17,2,-34,6,-49v4,-15,11,-29,20,-41v9,-12,19,-21,33,-28v14,-7,30,-11,49,-11v24,0,46,5,62,17r17,-27r14,9r-19,29v12,12,20,26,26,43v6,17,8,35,8,55xm174,-213v-5,-8,-11,-14,-19,-19v-8,-5,-18,-8,-30,-8v-14,0,-25,3,-33,10v-8,7,-15,17,-19,28v-4,11,-8,23,-9,37v-1,14,-2,28,-2,42v0,12,1,25,2,37v1,12,3,24,6,35xm190,-125v0,-11,-1,-22,-2,-34v-1,-12,-3,-24,-6,-35r-104,161v5,8,11,15,18,20v7,5,17,7,28,7v16,0,28,-3,37,-11v9,-8,16,-17,20,-29v4,-12,6,-25,7,-39v1,-14,2,-28,2,-40",w:252,k:{"\u00d9":5,"\u00db":5,"\u00da":5,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00dc":5,"\u00c5":7,"\u00c4":7,Y:13,W:13,V:13,U:5,A:7,".":29}},"\u00b1":{d:"107,-87r0,54r-22,0r0,-54r-73,0r0,-21r73,0r0,-55r22,0r0,55r72,0r0,21r-72,0xm12,0r0,-21r167,0r0,21r-167,0",w:190},"\u00a5":{d:"174,-235r-41,98r42,0r0,14r-48,0r-9,21r58,0r0,14r-58,0r0,78r30,0r0,10r-103,0r0,-10r32,0r0,-78r-57,0r0,-13r57,0r-9,-22r-48,0r0,-14r42,0r-40,-98r-14,0r0,-10r81,0r0,10r-23,0r46,118r48,-118r-25,0r0,-10r53,0r0,10r-14,0"},"\u00b5":{d:"208,-8v-2,3,-5,5,-8,7v-3,2,-6,3,-10,4v-4,1,-10,2,-16,2v-7,0,-13,0,-18,-1v-5,-1,-8,-2,-11,-4v-3,-2,-6,-5,-8,-8v-2,-3,-3,-8,-5,-13v-5,10,-11,17,-19,21v-8,4,-17,5,-29,5v-4,0,-9,0,-13,-1v-4,-1,-8,-3,-12,-5v-4,-2,-8,-3,-11,-6v-3,-3,-6,-5,-8,-8r0,0r0,6v0,4,-1,4,-1,7r0,5v0,4,1,8,3,12r6,12v3,6,2,6,5,11v2,4,3,7,3,11v0,6,-1,12,-4,16v-3,4,-8,6,-15,6v-6,0,-10,-4,-13,-10v-3,-6,-4,-14,-4,-22v0,-6,0,-12,1,-19v1,-10,1,-10,2,-19v1,-6,1,-12,2,-17v1,-5,1,-10,1,-12r0,-4r0,-8r0,-7r0,-4r0,-102r-25,0r0,-10r38,0r24,-4r0,101r0,20v0,0,1,13,3,19v2,6,5,11,9,14v4,3,10,5,18,5v8,0,13,-1,18,-4v5,-3,8,-7,11,-12v3,-5,4,-11,5,-17v1,-6,2,-13,2,-19r0,-93r-29,0r0,-10r42,0r23,-3r0,131v0,3,0,7,1,10v1,3,2,6,4,8v2,2,4,4,7,6v3,2,6,2,10,2v5,0,8,0,9,-1v1,-1,4,-4,7,-6",w:196},"\u03bc":{d:"208,-8v-2,3,-5,5,-8,7v-3,2,-6,3,-10,4v-4,1,-10,2,-16,2v-7,0,-13,0,-18,-1v-5,-1,-8,-2,-11,-4v-3,-2,-6,-5,-8,-8v-2,-3,-3,-8,-5,-13v-5,10,-11,17,-19,21v-8,4,-17,5,-29,5v-4,0,-9,0,-13,-1v-4,-1,-8,-3,-12,-5v-4,-2,-8,-3,-11,-6v-3,-3,-6,-5,-8,-8r0,0r0,6v0,4,-1,4,-1,7r0,5v0,4,1,8,3,12r6,12v3,6,2,6,5,11v2,4,3,7,3,11v0,6,-1,12,-4,16v-3,4,-8,6,-15,6v-6,0,-10,-4,-13,-10v-3,-6,-4,-14,-4,-22v0,-6,0,-12,1,-19v1,-10,1,-10,2,-19v1,-6,1,-12,2,-17v1,-5,1,-10,1,-12r0,-4r0,-8r0,-7r0,-4r0,-102r-25,0r0,-10r38,0r24,-4r0,101r0,20v0,0,1,13,3,19v2,6,5,11,9,14v4,3,10,5,18,5v8,0,13,-1,18,-4v5,-3,8,-7,11,-12v3,-5,4,-11,5,-17v1,-6,2,-13,2,-19r0,-93r-29,0r0,-10r42,0r23,-3r0,131v0,3,0,7,1,10v1,3,2,6,4,8v2,2,4,4,7,6v3,2,6,2,10,2v5,0,8,0,9,-1v1,-1,4,-4,7,-6",w:196},"\u00aa":{d:"134,-159v-3,3,-6,6,-9,8v-3,2,-8,3,-14,3v-6,0,-11,-2,-15,-5v-4,-3,-6,-7,-7,-12v-2,6,-7,11,-12,13v-5,2,-11,3,-17,3v-5,0,-10,0,-14,-1v-4,-1,-8,-3,-11,-5v-3,-2,-7,-5,-9,-8v-2,-3,-3,-8,-3,-13v0,-7,3,-13,7,-17v4,-4,10,-8,16,-10v6,-2,13,-4,20,-5v7,-1,14,-1,20,-1r0,-18v0,-7,-2,-13,-4,-16v-2,-3,-7,-5,-15,-5v-5,0,-9,1,-12,3v-3,2,-5,5,-5,10v0,2,1,4,1,5r0,4v0,3,-1,6,-2,8v-1,2,-4,3,-8,3v-4,0,-7,-1,-9,-4v-2,-3,-3,-7,-3,-10v0,-5,1,-10,4,-13v3,-3,6,-5,10,-7v4,-2,8,-3,13,-4v5,-1,9,-2,13,-2v14,0,24,2,30,7v6,5,10,14,10,27r0,50v0,3,1,5,2,8v1,3,4,5,7,5v3,0,7,-1,9,-2v2,-1,4,-3,4,-3xm86,-202v-4,0,-9,1,-13,1v-4,0,-7,1,-11,3v-4,2,-7,5,-9,8v-2,3,-4,7,-4,13v0,6,1,10,3,14v2,4,6,6,13,6v7,0,13,-2,16,-7v3,-5,5,-10,5,-16r0,-22xm25,-127r0,-9r102,0r0,9r-102,0",w:150},"\u00ba":{d:"127,-201v0,7,-1,14,-3,20v-2,6,-6,12,-11,17v-5,5,-10,8,-17,11v-7,3,-14,4,-23,4v-8,0,-16,-1,-22,-4v-6,-3,-12,-7,-17,-12v-5,-5,-8,-10,-10,-16v-2,-6,-4,-13,-4,-20v0,-7,2,-14,4,-20v2,-6,5,-12,10,-17v5,-5,10,-9,17,-12v7,-3,14,-5,23,-5v9,0,16,2,23,5v7,3,12,7,17,12v5,5,8,11,10,17v2,6,3,13,3,20xm102,-201v0,-4,0,-9,-1,-14v-1,-5,-2,-11,-4,-16v-2,-5,-4,-9,-8,-12v-4,-3,-9,-5,-15,-5v-6,0,-11,2,-15,5v-4,3,-7,7,-9,12v-2,5,-2,9,-3,15v-1,6,-1,11,-1,15v0,4,0,9,1,14v1,5,2,10,4,15v2,5,4,8,8,11v4,3,9,5,15,5v6,0,10,-2,14,-5v4,-3,7,-6,9,-11v2,-5,3,-10,4,-15v1,-5,1,-10,1,-14xm23,-127r0,-9r102,0r0,9r-102,0",w:147},"\u00e6":{d:"261,-56v-1,9,-3,16,-6,24v-3,8,-8,15,-14,20v-6,5,-13,10,-21,13v-8,3,-17,4,-27,4v-18,0,-33,-4,-45,-12v-12,-8,-19,-18,-24,-30v-3,15,-9,25,-17,32v-8,7,-21,10,-37,10v-7,0,-15,0,-22,-2v-7,-2,-13,-4,-18,-8v-5,-4,-10,-8,-13,-14v-3,-6,-5,-13,-5,-21v0,-12,4,-22,11,-29v7,-7,16,-13,26,-16v10,-3,22,-5,33,-6v11,-1,21,-1,29,-1r0,-37v0,-10,-3,-17,-8,-22v-5,-5,-13,-8,-23,-8v-8,0,-15,2,-19,6v-4,4,-6,9,-6,16r0,7v0,0,1,4,1,6v0,5,-1,9,-3,12v-2,3,-6,5,-12,5v-6,0,-10,-2,-13,-6v-3,-4,-5,-9,-5,-14v0,-7,2,-14,6,-19v4,-5,8,-10,14,-13v6,-3,13,-6,20,-7v7,-1,15,-2,22,-2v14,0,24,2,33,5v9,3,16,9,21,16v6,-6,12,-11,20,-15v8,-4,17,-6,29,-6v13,0,25,2,34,7v9,5,16,11,22,19v6,8,9,17,12,28v3,11,4,22,4,33r-110,0v0,8,0,17,1,26v1,9,2,18,5,25v3,7,8,13,14,18v6,5,15,8,26,8v7,0,15,-1,21,-4v6,-3,11,-6,16,-11v5,-5,9,-11,12,-17v3,-6,4,-13,5,-21xm221,-92v0,-9,-1,-18,-2,-26v-1,-8,-2,-16,-5,-22v-3,-6,-6,-11,-10,-14v-4,-3,-11,-5,-18,-5v-8,0,-14,2,-19,7v-5,5,-9,11,-11,18v-2,7,-4,14,-5,22v-1,8,-1,14,-1,20r71,0xm112,-81v-9,0,-18,0,-26,1v-8,1,-14,3,-19,6v-5,3,-9,7,-12,13v-3,6,-4,12,-4,21v0,10,2,18,6,25v4,7,10,10,20,10v6,0,11,-2,15,-4v4,-2,8,-5,11,-9v3,-4,5,-8,6,-13v1,-5,3,-9,3,-14r0,-36",w:274},"\u00f8":{d:"175,-81v0,11,-2,22,-6,32v-4,10,-8,20,-15,28v-7,8,-16,14,-26,19v-10,5,-21,7,-34,7v-8,0,-14,-1,-21,-3v-7,-2,-13,-4,-19,-8r-14,21r-12,-7r14,-22v-9,-8,-15,-18,-20,-30v-5,-12,-7,-24,-7,-37v0,-11,2,-23,5,-33v3,-10,9,-19,16,-27v7,-8,14,-15,24,-20v10,-5,22,-7,35,-7v15,0,28,3,40,10r13,-20r12,8r-13,21v9,8,15,18,20,30v5,12,8,25,8,38xm135,-81v0,-6,0,-13,-1,-21v-1,-8,-2,-15,-4,-22r-65,101v3,6,6,10,11,13v5,3,12,6,19,6v9,0,16,-3,21,-8v5,-5,9,-10,12,-18v3,-8,5,-16,6,-25v1,-9,1,-18,1,-26xm124,-141v-3,-5,-7,-10,-12,-13v-5,-3,-10,-4,-17,-4v-9,0,-17,3,-22,8v-5,5,-9,11,-12,19v-3,8,-4,16,-5,25v-1,9,-1,17,-1,25r0,21v0,0,2,13,4,20",w:189},"\u00bf":{d:"166,18v0,9,-2,17,-6,24v-4,7,-9,13,-16,17v-7,4,-15,8,-24,10v-9,2,-17,3,-26,3v-9,0,-18,-1,-27,-3v-9,-2,-17,-6,-24,-11v-7,-5,-13,-10,-17,-17v-4,-7,-6,-15,-6,-25v0,-7,1,-15,4,-21v3,-6,7,-11,12,-17v5,-6,10,-11,16,-16v8,-7,8,-8,16,-15r10,-10v0,0,6,-7,8,-10v2,-3,3,-6,4,-10v1,-4,1,-9,1,-15r0,-10r0,-9r12,0v0,4,-1,7,-1,10r0,8r0,14v0,4,-1,7,-2,11v-1,4,-3,7,-6,11v-3,4,-7,9,-12,15v-4,4,-7,9,-10,13v-3,4,-6,8,-8,12v-2,4,-3,9,-4,15v-1,6,-2,12,-2,19v0,7,1,14,2,20v1,6,3,11,6,16v3,5,7,8,12,11v5,3,12,4,20,4v11,0,20,-3,26,-8v6,-5,9,-13,9,-24v0,-3,-1,-7,-2,-10v-1,-3,-2,-7,-2,-10v0,-6,2,-9,5,-13v3,-4,8,-6,14,-6v4,0,7,1,9,3v2,2,4,4,5,7r3,9v0,0,1,6,1,8xm125,-154v0,7,-3,13,-8,18v-5,5,-12,8,-19,8v-7,0,-13,-3,-18,-8v-5,-5,-8,-11,-8,-18v0,-7,3,-14,8,-19v5,-5,11,-7,18,-7v7,0,14,2,19,7v5,5,8,12,8,19",w:189},"\u00a1":{d:"87,34v0,3,0,7,-1,11v-1,4,-1,9,-3,13v-2,4,-4,7,-7,10v-3,3,-7,4,-12,4v-5,0,-8,-1,-11,-4v-3,-3,-5,-6,-7,-10v-2,-4,-3,-8,-3,-12v0,-4,-1,-8,-1,-11v0,-5,0,-10,1,-15v1,-5,2,-11,3,-17v1,-6,3,-11,4,-16r3,-15v2,-10,3,-20,4,-30v1,-10,2,-20,2,-31r0,-15v0,-6,0,-11,-1,-16r14,0v0,5,-2,10,-2,16r0,15v0,11,1,21,2,31v1,10,3,20,5,30v0,3,1,7,2,12v1,5,3,11,4,17v1,6,2,11,3,17v1,6,1,12,1,16xm92,-157v0,7,-3,13,-8,18v-5,5,-11,8,-18,8v-7,0,-14,-3,-19,-8v-5,-5,-8,-11,-8,-18v0,-7,3,-14,8,-19v5,-5,12,-8,19,-8v7,0,13,3,18,8v5,5,8,12,8,19",w:131},"\u00ac":{d:"151,0r0,-71r-132,0r0,-21r153,0r0,92r-21,0",w:218},"\u00ab":{d:"86,-27r-72,-56v-1,0,-1,-1,-2,-2v-1,-1,-3,-3,-3,-5v0,-1,1,-3,2,-4v0,-1,1,-1,2,-1r72,-54r4,5r-48,54r49,59xm148,-27r-72,-56v-1,0,-1,-1,-2,-2v-2,-1,-3,-3,-3,-5v0,-2,1,-3,2,-4v0,-1,1,-1,2,-1r72,-54r4,5r-48,54r49,59",w:174},"\u00bb":{d:"165,-90v0,1,-1,2,-1,3v0,1,-1,2,-1,2v0,1,-2,1,-2,1r-72,54r-4,-5r47,-55r-48,-58r4,-4r72,56v1,0,1,1,2,2r2,2v0,0,1,1,1,2xm103,-90v0,1,-1,2,-1,3v0,1,-1,2,-1,2r-2,1r-72,54r-4,-5r48,-55r-49,-58r4,-4r72,56v1,0,1,1,2,2r2,2v0,0,1,1,1,2",w:173},"\u2026":{d:"220,-21v0,7,-3,14,-8,19v-5,5,-12,7,-19,7v-7,0,-13,-2,-18,-7v-5,-5,-8,-12,-8,-19v0,-7,3,-13,8,-18v5,-5,11,-8,18,-8v7,0,14,3,19,8v5,5,8,11,8,18xm78,-21v0,7,-3,14,-8,19v-5,5,-12,7,-19,7v-7,0,-13,-2,-18,-7v-5,-5,-8,-12,-8,-19v0,-7,3,-13,8,-18v5,-5,11,-8,18,-8v7,0,14,3,19,8v5,5,8,11,8,18xm149,-21v0,7,-3,14,-8,19v-5,5,-12,7,-19,7v-7,0,-13,-2,-18,-7v-5,-5,-8,-12,-8,-19v0,-7,3,-13,8,-18v5,-5,11,-8,18,-8v7,0,14,3,19,8v5,5,8,11,8,18",w:244},"\u00c0":{d:"114,0r0,-10r32,0r-24,-72r-71,0r-25,72r29,0r0,10r-64,0r0,-10r21,0r84,-242r11,0r85,242r21,0r0,10r-99,0xm87,-186r-32,92r63,0xm100,-270r-54,-53r0,-4r40,0r32,57r-18,0",w:205,k:{"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d8":7,"\u00dc":9,"\u00d6":7,"\u00c7":7,y:8,w:8,v:8,t:8,Y:22,W:22,V:22,U:9,T:21,Q:7,O:7,G:7,C:7,"\u00dd":22}},"\u00c3":{d:"114,0r0,-10r32,0r-24,-72r-71,0r-25,72r29,0r0,10r-64,0r0,-10r21,0r84,-242r11,0r85,242r21,0r0,10r-99,0xm87,-186r-32,92r63,0xm156,-301v-4,7,-10,13,-16,16v-6,3,-13,4,-21,4v-5,0,-10,-1,-14,-2v-4,-1,-9,-3,-13,-5v-4,-2,-8,-3,-12,-4v-4,-1,-8,-2,-13,-2v-5,0,-10,2,-14,6r-6,-8v4,-6,9,-10,13,-13v4,-3,11,-5,20,-5v5,0,10,1,15,2v5,1,9,3,14,4v5,1,10,3,14,4v4,1,9,2,13,2v5,0,10,-2,14,-7",w:205,k:{"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d8":7,"\u00dc":9,"\u00d6":7,"\u00c7":7,y:8,w:8,v:8,t:8,Y:22,W:22,V:22,U:9,T:21,Q:7,O:7,G:7,C:7,"\u00dd":22}},"\u00d5":{d:"234,-125v0,17,-2,34,-6,50v-4,16,-11,29,-20,41v-9,12,-20,22,-34,29v-14,7,-31,10,-50,10v-19,0,-35,-3,-48,-10v-13,-7,-24,-16,-33,-28v-9,-12,-15,-26,-19,-41v-4,-15,-6,-31,-6,-48v0,-17,2,-34,6,-49v4,-15,11,-29,20,-41v9,-12,19,-21,33,-28v14,-7,30,-11,49,-11v18,0,34,3,48,10v14,7,25,15,34,27v9,12,16,25,20,40v4,15,6,32,6,49xm190,-125v0,-12,-1,-25,-2,-38v-1,-13,-4,-26,-8,-37v-4,-11,-10,-20,-19,-28v-9,-8,-21,-12,-36,-12v-14,0,-25,3,-33,10v-8,7,-15,17,-19,28v-4,11,-8,23,-9,37v-1,14,-2,28,-2,42v0,14,1,27,2,41v1,14,5,27,9,38v4,11,11,21,19,28v8,7,19,10,32,10v16,0,28,-3,37,-11v9,-8,16,-17,20,-29v4,-12,6,-25,7,-39v1,-14,2,-28,2,-40xm185,-300v-4,7,-10,12,-16,15v-6,3,-13,4,-21,4v-5,0,-10,-1,-14,-2v-4,-1,-9,-2,-13,-4v-4,-2,-9,-4,-13,-5v-4,-1,-8,-1,-13,-1v-5,0,-9,1,-13,5r-7,-8v4,-6,9,-10,13,-13v4,-3,11,-5,20,-5v5,0,10,1,15,2v5,1,9,4,14,5v5,1,10,3,14,4v4,1,9,1,13,1v5,0,10,-2,14,-7",w:252,k:{"\u00d9":5,"\u00db":5,"\u00da":5,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00dc":5,"\u00c5":7,"\u00c4":7,Y:13,W:13,V:13,U:5,A:7,".":29}},"\u2013":{d:"12,-71r0,-21r155,0r0,21r-155,0",w:180},"\u2014":{d:"12,-71r0,-21r335,0r0,21r-335,0",w:360},"\u201c":{d:"76,-180v0,7,-2,13,-7,17v-5,4,-11,6,-18,6v-6,0,-11,-1,-15,-4v-4,-3,-8,-7,-11,-12v-3,-5,-5,-10,-6,-15v-1,-5,-2,-11,-2,-16v0,-15,5,-26,13,-35v8,-9,19,-14,34,-14r4,7v-13,1,-22,4,-29,12v-7,8,-10,18,-10,30v0,6,0,11,2,16v1,-4,5,-8,9,-11v4,-3,8,-4,13,-4v6,0,12,2,16,7v4,5,7,10,7,16xm139,-181v0,7,-2,13,-7,17v-5,4,-11,6,-18,6v-6,0,-11,-2,-15,-5v-4,-3,-7,-6,-10,-11v-3,-5,-5,-10,-6,-15v-1,-5,-2,-11,-2,-16v0,-15,5,-26,13,-35v8,-9,19,-15,34,-15r3,8v-13,1,-23,4,-29,12v-6,8,-9,18,-9,30v0,6,0,11,2,16v1,-4,5,-8,9,-11v4,-3,8,-4,13,-4v6,0,12,2,16,7v4,5,6,10,6,16",w:160,k:{"\u00f8":18,"\u00e6":18,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":18,"\u00f6":18,"\u00f4":18,"\u00f2":18,"\u00f3":18,"\u00f1":12,"\u00ef":6,"\u00ee":6,"\u00ec":6,"\u00ed":6,"\u00eb":18,"\u00ea":18,"\u00e8":18,"\u00e9":18,"\u00e7":18,"\u00e5":18,"\u00e3":18,"\u00e4":18,"\u00e2":18,"\u00e0":18,"\u00e1":18,z:12,y:12,x:12,w:12,v:12,u:12,t:12,s:12,r:12,q:18,p:12,o:18,n:12,m:12,j:12,i:6,g:12,f:12,e:18,d:18,c:18,a:18}},"\u201d":{d:"140,-204v0,15,-4,27,-12,36v-8,9,-20,14,-35,14r-3,-7v13,-1,23,-5,29,-13v6,-8,10,-18,10,-30v0,-3,-1,-5,-1,-8v0,-3,-1,-5,-2,-8v-1,4,-4,8,-8,11v-4,3,-9,4,-14,4v-6,0,-12,-2,-16,-7v-4,-5,-6,-10,-6,-16v0,-7,2,-12,7,-16v5,-4,11,-7,18,-7v6,0,11,2,15,5v4,3,7,6,10,11v3,5,5,10,6,15v1,5,2,11,2,16xm77,-204v0,15,-5,27,-13,36v-8,9,-19,14,-34,14r-4,-7v13,-1,23,-5,29,-13v6,-8,10,-17,10,-29r0,-9v0,0,-1,-5,-2,-8v-1,4,-5,8,-9,11v-4,3,-8,5,-13,5v-6,0,-12,-2,-16,-7v-4,-5,-7,-11,-7,-17v0,-7,3,-12,8,-16v5,-4,10,-6,17,-6v6,0,11,1,15,4v4,3,8,7,11,12v3,5,5,10,6,15v1,5,2,10,2,15",w:160},"\u2018":{d:"76,-181v0,7,-2,13,-7,17v-5,4,-11,6,-18,6v-6,0,-11,-2,-15,-5v-4,-3,-8,-6,-11,-11v-3,-5,-5,-10,-6,-15v-1,-5,-2,-11,-2,-16v0,-15,5,-26,13,-35v8,-9,19,-15,34,-15r4,8v-13,1,-22,4,-29,12v-7,8,-10,18,-10,30v0,6,0,11,2,16v1,-4,5,-8,9,-11v4,-3,8,-4,13,-4v6,0,12,2,16,7v4,5,7,10,7,16",w:96,k:{"\u00f8":18,"\u00e6":18,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":18,"\u00f6":18,"\u00f4":18,"\u00f2":18,"\u00f3":18,"\u00f1":12,"\u00ef":6,"\u00ee":6,"\u00ec":6,"\u00ed":6,"\u00eb":18,"\u00ea":18,"\u00e8":18,"\u00e9":18,"\u00e7":18,"\u00e5":18,"\u00e3":18,"\u00e4":18,"\u00e2":18,"\u00e0":18,"\u00e1":18,z:12,y:12,x:12,w:12,v:12,u:12,t:12,s:12,r:12,q:18,p:12,o:18,n:12,m:12,j:12,i:6,g:12,f:12,e:18,d:18,c:18,a:18}},"\u2019":{d:"77,-205v0,15,-5,27,-13,36v-8,9,-19,14,-34,14r-4,-7v13,-1,23,-5,29,-13v6,-8,10,-17,10,-29r0,-9v0,0,-1,-5,-2,-8v-1,4,-5,8,-9,11v-4,3,-8,4,-13,4v-6,0,-12,-1,-16,-6v-4,-5,-7,-11,-7,-17v0,-7,3,-12,8,-16v5,-4,10,-6,17,-6v6,0,11,1,15,4v4,3,8,7,11,12v3,5,5,10,6,15v1,5,2,10,2,15",w:96},"\u00f7":{d:"20,-71r0,-21r152,0r0,21r-152,0xm119,-146v0,6,-2,12,-6,16v-4,4,-9,6,-15,6v-6,0,-12,-2,-16,-6v-4,-4,-6,-10,-6,-16v0,-6,2,-12,6,-16v4,-4,10,-6,16,-6v6,0,11,2,15,6v4,4,6,10,6,16xm118,-17v0,6,-3,11,-7,15v-4,4,-9,7,-15,7v-6,0,-11,-3,-15,-7v-4,-4,-6,-9,-6,-15v0,-6,2,-12,6,-16v4,-4,9,-6,15,-6v6,0,11,2,15,6v4,4,7,10,7,16",w:190},"\u00ff":{d:"140,-153r-74,190v-4,11,-9,20,-16,26v-7,6,-16,9,-28,9v-5,0,-9,-1,-14,-2v-5,-1,-9,-3,-12,-6v-3,-3,-6,-6,-8,-10v-2,-4,-3,-8,-3,-14v0,-5,1,-10,4,-14v3,-4,7,-5,12,-5v5,0,9,0,11,3v2,3,3,6,3,10v0,2,0,4,-1,6v-1,2,-1,4,-1,6v0,5,1,8,3,11v2,3,5,4,11,4v7,0,13,-2,18,-8v5,-6,8,-12,11,-19v3,-8,7,-16,10,-25v3,-9,6,-16,8,-22r-57,-140r-18,0r0,-10r78,0r0,10r-21,0r36,94r35,-94r-24,0r0,-10r53,0r0,10r-16,0xm75,-218v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14xm136,-218v0,6,-1,10,-5,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,5,8,5,14",w:150},"\u00a4":{d:"183,-81v0,11,-3,20,-6,29v-3,9,-8,18,-14,25r15,15r-11,12r-15,-15v-8,6,-17,11,-26,15v-9,4,-19,5,-30,5v-10,0,-20,-2,-29,-5v-9,-3,-18,-9,-25,-15r-15,16r-12,-12r16,-15v-6,-8,-11,-16,-15,-25v-4,-9,-6,-19,-6,-30v0,-11,2,-22,6,-31v4,-9,9,-17,15,-25r-16,-15r12,-11r15,15v7,-6,16,-11,25,-14v9,-3,19,-5,29,-5v11,0,21,1,30,5v9,4,18,9,26,15r14,-15r11,12r-14,14v6,7,11,16,14,25v3,9,6,19,6,30xm163,-82v0,-9,-2,-18,-5,-26v-3,-8,-9,-15,-15,-21v-6,-6,-13,-11,-21,-14v-8,-3,-17,-5,-26,-5v-9,0,-18,2,-26,5v-8,3,-15,8,-21,14v-6,6,-12,13,-15,21v-3,8,-5,17,-5,26v0,9,2,18,5,26v3,8,9,16,15,22v6,6,13,11,21,14v8,3,17,5,26,5v9,0,18,-2,26,-5v8,-3,15,-8,21,-14v6,-6,12,-14,15,-22v3,-8,5,-17,5,-26"},"\u00b7":{d:"66,-87v0,6,-2,10,-6,14v-4,4,-10,6,-16,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-11,6,-15v4,-4,9,-5,14,-5v5,0,10,1,15,5v5,4,7,9,7,15",w:90},"\u22c5":{d:"66,-87v0,6,-2,10,-6,14v-4,4,-10,6,-16,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-11,6,-15v4,-4,9,-5,14,-5v5,0,10,1,15,5v5,4,7,9,7,15",w:90},"\u2227":{d:"66,-87v0,6,-2,10,-6,14v-4,4,-10,6,-16,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-11,6,-15v4,-4,9,-5,14,-5v5,0,10,1,15,5v5,4,7,9,7,15",w:90},"\u2224":{d:"66,-87v0,6,-2,10,-6,14v-4,4,-10,6,-16,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-11,6,-15v4,-4,9,-5,14,-5v5,0,10,1,15,5v5,4,7,9,7,15",w:90},"\u2219":{d:"66,-87v0,6,-2,10,-6,14v-4,4,-10,6,-16,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-11,6,-15v4,-4,9,-5,14,-5v5,0,10,1,15,5v5,4,7,9,7,15",w:90},"\u00c2":{d:"114,0r0,-10r32,0r-24,-72r-71,0r-25,72r29,0r0,10r-64,0r0,-10r21,0r84,-242r11,0r85,242r21,0r0,10r-99,0xm87,-186r-32,92r63,0xm130,-270r-28,-35r-27,35r-19,0r28,-56r36,0r28,56r-18,0",w:205,k:{"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d8":7,"\u00dc":9,"\u00d6":7,"\u00c7":7,y:8,w:8,v:8,t:8,Y:22,W:22,V:22,U:9,T:21,Q:7,O:7,G:7,C:7,"\u00dd":22}},"\u00ca":{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r179,0r0,71r-11,0v-1,-21,-7,-37,-19,-47v-12,-10,-29,-14,-49,-14r-28,0r0,101r12,0v16,0,26,-3,32,-9v6,-6,10,-16,10,-31r9,0r-1,47r1,45r-10,0v0,-15,-3,-25,-9,-32v-6,-7,-16,-11,-32,-11r-12,0r0,115r42,0v10,0,19,-2,26,-6v7,-4,14,-10,19,-16v5,-6,8,-13,11,-21v3,-8,4,-17,4,-26r11,0r0,79r-185,0xm144,-270r-28,-35r-27,35r-18,0r27,-57r37,0r28,57r-19,0",w:221,k:{".":17}},"\u00c1":{d:"114,0r0,-10r32,0r-24,-72r-71,0r-25,72r29,0r0,10r-64,0r0,-10r21,0r84,-242r11,0r85,242r21,0r0,10r-99,0xm87,-186r-32,92r63,0xm111,-271r-18,0r32,-56r40,0r0,4",w:205,k:{"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d8":7,"\u00dc":9,"\u00d6":7,"\u00c7":7,y:8,w:8,v:8,t:8,Y:22,W:22,V:22,U:9,T:21,Q:7,O:7,G:7,C:7,"\u00dd":22}},"\u00cb":{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r179,0r0,71r-11,0v-1,-21,-7,-37,-19,-47v-12,-10,-29,-14,-49,-14r-28,0r0,101r12,0v16,0,26,-3,32,-9v6,-6,10,-16,10,-31r9,0r-1,47r1,45r-10,0v0,-15,-3,-25,-9,-32v-6,-7,-16,-11,-32,-11r-12,0r0,115r42,0v10,0,19,-2,26,-6v7,-4,14,-10,19,-16v5,-6,8,-13,11,-21v3,-8,4,-17,4,-26r11,0r0,79r-185,0xm104,-298v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14xm165,-298v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-5,-8,-5,-14v0,-6,1,-10,5,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14",w:221,k:{".":17}},"\u00c8":{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r179,0r0,71r-11,0v-1,-21,-7,-37,-19,-47v-12,-10,-29,-14,-49,-14r-28,0r0,101r12,0v16,0,26,-3,32,-9v6,-6,10,-16,10,-31r9,0r-1,47r1,45r-10,0v0,-15,-3,-25,-9,-32v-6,-7,-16,-11,-32,-11r-12,0r0,115r42,0v10,0,19,-2,26,-6v7,-4,14,-10,19,-16v5,-6,8,-13,11,-21v3,-8,4,-17,4,-26r11,0r0,79r-185,0xm107,-270r-55,-52r0,-4r41,0r32,56r-18,0",w:221,k:{".":17}},"\u00cd":{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r103,0r0,10r-31,0r0,225r31,0r0,10r-103,0xm65,-270r-17,0r31,-57r41,0r0,4",w:132,k:{".":17}},"\u00ce":{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r103,0r0,10r-31,0r0,225r31,0r0,10r-103,0xm94,-271r-28,-35r-27,35r-18,0r27,-56r37,0r28,56r-19,0",w:132,k:{".":17}},"\u00cf":{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r103,0r0,10r-31,0r0,225r31,0r0,10r-103,0xm55,-299v0,6,-1,10,-5,14v-4,4,-9,6,-15,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,11,2,15,6v4,4,5,8,5,14xm117,-299v0,6,-2,10,-6,14v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-8,-6,-14v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14",w:132,k:{".":17}},"\u00cc":{d:"15,0r0,-10r30,0r0,-225r-30,0r0,-10r103,0r0,10r-31,0r0,225r31,0r0,10r-103,0xm67,-270r-54,-52r0,-4r40,0r32,56r-18,0",w:132,k:{".":17}},"\u00d3":{d:"234,-125v0,17,-2,34,-6,50v-4,16,-11,29,-20,41v-9,12,-20,22,-34,29v-14,7,-31,10,-50,10v-19,0,-35,-3,-48,-10v-13,-7,-24,-16,-33,-28v-9,-12,-15,-26,-19,-41v-4,-15,-6,-31,-6,-48v0,-17,2,-34,6,-49v4,-15,11,-29,20,-41v9,-12,19,-21,33,-28v14,-7,30,-11,49,-11v18,0,34,3,48,10v14,7,25,15,34,27v9,12,16,25,20,40v4,15,6,32,6,49xm190,-125v0,-12,-1,-25,-2,-38v-1,-13,-4,-26,-8,-37v-4,-11,-10,-20,-19,-28v-9,-8,-21,-12,-36,-12v-14,0,-25,3,-33,10v-8,7,-15,17,-19,28v-4,11,-8,23,-9,37v-1,14,-2,28,-2,42v0,14,1,27,2,41v1,14,5,27,9,38v4,11,11,21,19,28v8,7,19,10,32,10v16,0,28,-3,37,-11v9,-8,16,-17,20,-29v4,-12,6,-25,7,-39v1,-14,2,-28,2,-40xm127,-270r-18,0r32,-56r40,0r0,4",w:252,k:{"\u00d9":5,"\u00db":5,"\u00da":5,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00dc":5,"\u00c5":7,"\u00c4":7,Y:13,W:13,V:13,U:5,A:7,".":29}},"\u00d4":{d:"234,-125v0,17,-2,34,-6,50v-4,16,-11,29,-20,41v-9,12,-20,22,-34,29v-14,7,-31,10,-50,10v-19,0,-35,-3,-48,-10v-13,-7,-24,-16,-33,-28v-9,-12,-15,-26,-19,-41v-4,-15,-6,-31,-6,-48v0,-17,2,-34,6,-49v4,-15,11,-29,20,-41v9,-12,19,-21,33,-28v14,-7,30,-11,49,-11v18,0,34,3,48,10v14,7,25,15,34,27v9,12,16,25,20,40v4,15,6,32,6,49xm190,-125v0,-12,-1,-25,-2,-38v-1,-13,-4,-26,-8,-37v-4,-11,-10,-20,-19,-28v-9,-8,-21,-12,-36,-12v-14,0,-25,3,-33,10v-8,7,-15,17,-19,28v-4,11,-8,23,-9,37v-1,14,-2,28,-2,42v0,14,1,27,2,41v1,14,5,27,9,38v4,11,11,21,19,28v8,7,19,10,32,10v16,0,28,-3,37,-11v9,-8,16,-17,20,-29v4,-12,6,-25,7,-39v1,-14,2,-28,2,-40xm153,-270r-28,-35r-27,35r-19,0r28,-56r36,0r28,56r-18,0",w:252,k:{"\u00d9":5,"\u00db":5,"\u00da":5,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00dc":5,"\u00c5":7,"\u00c4":7,Y:13,W:13,V:13,U:5,A:7,".":29}},"\u00d2":{d:"234,-125v0,17,-2,34,-6,50v-4,16,-11,29,-20,41v-9,12,-20,22,-34,29v-14,7,-31,10,-50,10v-19,0,-35,-3,-48,-10v-13,-7,-24,-16,-33,-28v-9,-12,-15,-26,-19,-41v-4,-15,-6,-31,-6,-48v0,-17,2,-34,6,-49v4,-15,11,-29,20,-41v9,-12,19,-21,33,-28v14,-7,30,-11,49,-11v18,0,34,3,48,10v14,7,25,15,34,27v9,12,16,25,20,40v4,15,6,32,6,49xm190,-125v0,-12,-1,-25,-2,-38v-1,-13,-4,-26,-8,-37v-4,-11,-10,-20,-19,-28v-9,-8,-21,-12,-36,-12v-14,0,-25,3,-33,10v-8,7,-15,17,-19,28v-4,11,-8,23,-9,37v-1,14,-2,28,-2,42v0,14,1,27,2,41v1,14,5,27,9,38v4,11,11,21,19,28v8,7,19,10,32,10v16,0,28,-3,37,-11v9,-8,16,-17,20,-29v4,-12,6,-25,7,-39v1,-14,2,-28,2,-40xm129,-270r-55,-52r0,-4r41,0r32,56r-18,0",w:252,k:{"\u00d9":5,"\u00db":5,"\u00da":5,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00dc":5,"\u00c5":7,"\u00c4":7,Y:13,W:13,V:13,U:5,A:7,".":29}},"\u00da":{d:"196,-235r0,168v0,13,-2,24,-6,33v-4,9,-9,16,-16,22v-7,6,-16,10,-26,13v-10,3,-20,4,-32,4v-12,0,-22,-1,-32,-4v-10,-3,-19,-7,-26,-13v-7,-6,-12,-14,-16,-23v-4,-9,-6,-19,-6,-31r0,-169r-32,0r0,-10r105,0r0,10r-31,0r0,171v0,20,4,34,14,43v10,9,23,13,39,13v9,0,16,-1,23,-4v7,-3,12,-7,16,-13v4,-6,8,-12,10,-20v2,-8,3,-15,3,-24r0,-166r-31,0r0,-10r76,0r0,10r-32,0xm127,-270r-18,0r32,-57r40,0r0,4",w:229,k:{"\u00d2":5,"\u00d4":5,"\u00d3":5,"\u00c1":9,"\u00c2":9,"\u00d5":5,"\u00c3":9,"\u00c0":9,"\u00d8":5,"\u00c6":9,"\u00d6":5,"\u00c7":5,"\u00c5":9,"\u00c4":9,Q:5,O:5,G:5,C:5,A:9,".":17}},"\u00db":{d:"196,-235r0,168v0,13,-2,24,-6,33v-4,9,-9,16,-16,22v-7,6,-16,10,-26,13v-10,3,-20,4,-32,4v-12,0,-22,-1,-32,-4v-10,-3,-19,-7,-26,-13v-7,-6,-12,-14,-16,-23v-4,-9,-6,-19,-6,-31r0,-169r-32,0r0,-10r105,0r0,10r-31,0r0,171v0,20,4,34,14,43v10,9,23,13,39,13v9,0,16,-1,23,-4v7,-3,12,-7,16,-13v4,-6,8,-12,10,-20v2,-8,3,-15,3,-24r0,-166r-31,0r0,-10r76,0r0,10r-32,0xm156,-270r-28,-35r-27,35r-19,0r28,-56r37,0r28,56r-19,0",w:229,k:{"\u00d2":5,"\u00d4":5,"\u00d3":5,"\u00c1":9,"\u00c2":9,"\u00d5":5,"\u00c3":9,"\u00c0":9,"\u00d8":5,"\u00c6":9,"\u00d6":5,"\u00c7":5,"\u00c5":9,"\u00c4":9,Q:5,O:5,G:5,C:5,A:9,".":17}},"\u00d9":{d:"196,-235r0,168v0,13,-2,24,-6,33v-4,9,-9,16,-16,22v-7,6,-16,10,-26,13v-10,3,-20,4,-32,4v-12,0,-22,-1,-32,-4v-10,-3,-19,-7,-26,-13v-7,-6,-12,-14,-16,-23v-4,-9,-6,-19,-6,-31r0,-169r-32,0r0,-10r105,0r0,10r-31,0r0,171v0,20,4,34,14,43v10,9,23,13,39,13v9,0,16,-1,23,-4v7,-3,12,-7,16,-13v4,-6,8,-12,10,-20v2,-8,3,-15,3,-24r0,-166r-31,0r0,-10r76,0r0,10r-32,0xm128,-270r-55,-52r0,-4r41,0r32,56r-18,0",w:229,k:{"\u00d2":5,"\u00d4":5,"\u00d3":5,"\u00c1":9,"\u00c2":9,"\u00d5":5,"\u00c3":9,"\u00c0":9,"\u00d8":5,"\u00c6":9,"\u00d6":5,"\u00c7":5,"\u00c5":9,"\u00c4":9,Q:5,O:5,G:5,C:5,A:9,".":17}},"\u00af":{d:"30,-208r0,-18r96,0r0,18r-96,0",w:151},"\u02c9":{d:"30,-208r0,-18r96,0r0,18r-96,0",w:151},"\u00b8":{d:"107,42v0,5,-1,9,-3,13v-2,4,-5,6,-8,9v-3,3,-7,5,-11,6v-4,1,-9,2,-13,2v-5,0,-9,0,-12,-1v-3,-1,-7,-2,-11,-4r4,-9v2,1,4,2,7,3v3,1,6,1,9,1v5,0,9,-2,12,-5v3,-3,4,-7,4,-12v0,-5,-1,-9,-4,-12v-3,-3,-6,-4,-11,-4v-3,0,-5,1,-6,1r2,-31r11,0r0,21v1,0,2,-1,3,-1r4,0v7,0,13,3,17,7v4,4,6,9,6,16",w:151},"\u00d0":{d:"230,-122v0,18,-2,33,-6,48v-4,15,-10,28,-19,39v-9,11,-21,20,-35,26v-14,6,-31,9,-52,9r-103,0r0,-10r30,0r0,-112r-28,0r0,-13r28,0r0,-100r-30,0r0,-10r102,0v22,0,39,2,54,8v15,6,26,14,35,25v9,11,14,23,18,38v4,15,6,33,6,52xm186,-121v0,-16,-1,-31,-2,-45v-1,-14,-5,-26,-11,-36v-6,-10,-13,-19,-24,-25v-11,-6,-26,-8,-45,-8r-17,0r0,100r43,0r0,13r-43,0r0,112r14,0v18,0,33,-3,44,-7v11,-4,20,-11,26,-20v6,-9,10,-21,12,-35v2,-14,3,-30,3,-49",w:247,k:{"\u00d9":5,"\u00db":5,"\u00da":5,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00dc":5,"\u00c5":7,"\u00c4":7,Y:13,W:13,V:13,U:5,A:7,".":17}},"\u00f0":{d:"129,-221v15,19,26,40,33,63v7,23,10,49,10,75v0,11,-2,21,-5,32v-3,11,-8,21,-15,29v-7,8,-14,15,-24,20v-10,5,-21,7,-34,7v-12,0,-23,-2,-33,-7v-10,-5,-18,-11,-25,-19v-7,-8,-11,-17,-15,-27v-4,-10,-6,-21,-6,-32v0,-11,2,-23,5,-33v3,-10,9,-20,16,-28v7,-8,15,-14,25,-19v10,-5,20,-7,33,-7v7,0,15,1,22,4v7,3,12,9,16,16v-4,-22,-12,-42,-24,-60r-40,26r-7,-11r39,-25v-6,-8,-13,-15,-20,-22v-7,-7,-14,-12,-22,-17r19,-8v17,10,32,21,44,34r47,-30r8,9xm135,-80v0,-7,0,-15,-1,-24v-1,-9,-3,-17,-6,-25v-3,-8,-8,-15,-13,-21v-5,-6,-12,-8,-21,-8v-9,0,-16,2,-21,8v-5,6,-8,13,-11,21v-3,8,-4,16,-5,25v-1,9,-1,17,-1,24v0,6,0,14,1,23v1,9,2,17,5,25v3,8,7,15,12,20v5,5,11,8,20,8v9,0,17,-3,22,-8v5,-5,9,-12,12,-20v3,-8,5,-16,6,-25v1,-9,1,-16,1,-23",w:189}}});
(function(G){G.fn.adGallery=function(J){var L={loader_image:"/etc/designs/vwcorporate/base/images/loader.gif",start_at_index:0,description_wrapper:false,thumb_opacity:0.7,animate_first_image:false,animation_speed:400,width:false,height:false,display_next_and_prev:true,display_back_and_forward:true,scroll_jump:0,slideshow:{enable:true,autostart:false,speed:5000,start_label:"Start",stop_label:"Stop",stop_on_scroll:true,countdown_prefix:"(",countdown_sufix:")",onStart:false,onStop:false},effect:"slide-hori",enable_keyboard_move:true,cycle:true,callbacks:{init:false,afterImageVisible:false,beforeImageVisible:false}};
var K=G.extend(false,L,J);
if(J&&J.slideshow){K.slideshow=G.extend(false,L.slideshow,J.slideshow)
}if(!K.slideshow.enable){K.slideshow.autostart=false
}var I=[];
G(this).each(function(){var M=new C(this,K);
I[I.length]=M
});
return I
};
function F(J,K,L){var M=parseInt(J.css("top"),10);
if(K=="left"){var I="-"+this.image_wrapper_height+"px";
J.css("top",this.image_wrapper_height+"px")
}else{var I=this.image_wrapper_height+"px";
J.css("top","-"+this.image_wrapper_height+"px")
}if(L){L.css("bottom","-"+L[0].offsetHeight+"px");
L.animate({bottom:0},this.settings.animation_speed*2)
}if(this.current_description){this.current_description.animate({bottom:"-"+this.current_description[0].offsetHeight+"px"},this.settings.animation_speed*2)
}return{old_image:{top:I},new_image:{top:M}}
}function E(J,K,M){var L=parseInt(J.css("left"),10);
if(K=="left"){var I="-"+this.image_wrapper_width+"px";
J.css("left",this.image_wrapper_width+"px")
}else{var I=this.image_wrapper_width+"px";
J.css("left","-"+this.image_wrapper_width+"px")
}if(M){M.css("bottom","-"+M[0].offsetHeight+"px");
M.animate({bottom:0},this.settings.animation_speed*2)
}if(this.current_description){this.current_description.animate({bottom:"-"+this.current_description[0].offsetHeight+"px"},this.settings.animation_speed*2)
}return{old_image:{left:I},new_image:{left:L}}
}function D(K,L,N){var J=K.width();
var I=K.height();
var M=parseInt(K.css("left"),10);
var O=parseInt(K.css("top"),10);
K.css({width:0,height:0,top:this.image_wrapper_height/2,left:this.image_wrapper_width/2});
return{old_image:{width:0,height:0,top:this.image_wrapper_height/2,left:this.image_wrapper_width/2},new_image:{width:J,height:I,top:O,left:M}}
}function B(I,J,K){I.css("opacity",0);
return{old_image:{opacity:0},new_image:{opacity:1}}
}function H(I,J,K){I.css("opacity",0);
return{old_image:{opacity:0},new_image:{opacity:1},speed:0}
}function C(J,I){this.init(J,I)
}C.prototype={wrapper:false,image_wrapper:false,gallery_info:false,nav:false,loader:false,preloads:false,thumbs_wrapper:false,scroll_back:false,scroll_forward:false,next_link:false,prev_link:false,slideshow:false,image_wrapper_width:0,image_wrapper_height:0,current_index:0,current_image:false,current_description:false,nav_display_width:0,settings:false,images:false,in_transition:false,animations:false,init:function(M,L){var K=this;
this.wrapper=G(M);
this.settings=L;
this.setupElements();
this.setupAnimations();
if(this.settings.width){this.image_wrapper_width=this.settings.width;
this.image_wrapper.width(this.settings.width);
this.wrapper.width(this.settings.width)
}else{this.image_wrapper_width=this.image_wrapper.width()
}if(this.settings.height){this.image_wrapper_height=this.settings.height;
this.image_wrapper.height(this.settings.height)
}else{this.image_wrapper_height=this.image_wrapper.height()
}this.nav_display_width=this.nav.width();
this.current_index=0;
this.current_image=false;
this.current_description=false;
this.in_transition=false;
this.findImages();
if(this.settings.display_next_and_prev){this.initNextAndPrev()
}var I=function(N){return K.nextImage(N)
};
this.slideshow=new A(I,this.settings.slideshow);
this.controls.append(this.slideshow.create());
if(this.settings.slideshow.enable){this.slideshow.enable()
}else{this.slideshow.disable()
}if(this.settings.display_back_and_forward){this.initBackAndForward()
}if(this.settings.enable_keyboard_move){this.initKeyEvents()
}var J=parseInt(this.settings.start_at_index,10);
if(window.location.hash&&window.location.hash.indexOf("#ad-image")===0){J=window.location.hash.replace(/[^0-9]+/g,"");
if((J*1)!=J){J=this.settings.start_at_index
}}this.loading(true);
this.showImage(J,function(){if(K.settings.slideshow.autostart){K.preloadImage(J+1);
K.slideshow.start()
}});
this.fireCallback(this.settings.callbacks.init)
},setupAnimations:function(){this.animations={"slide-vert":F,"slide-hori":E,resize:D,fade:B,none:H}
},setupElements:function(){this.controls=this.wrapper.find(".ad-controls");
this.gallery_info=G('<p class="ad-info"></p>');
this.controls.append(this.gallery_info);
this.image_wrapper=this.wrapper.find(".ad-image-wrapper");
this.image_wrapper.empty();
this.nav=this.wrapper.find(".ad-nav");
this.thumbs_wrapper=this.nav.find(".ad-thumbs");
this.preloads=G('<div class="ad-preloads"></div>');
this.loader=G('<img class="ad-loader" src="'+this.settings.loader_image+'">');
this.image_wrapper.append(this.loader);
this.loader.hide();
G(document.body).append(this.preloads)
},loading:function(I){if(I){this.loader.show()
}else{this.loader.hide()
}},addAnimation:function(I,J){if(G.isFunction(J)){this.animations[I]=J
}},findImages:function(){var N=this;
this.images=[];
var M=0;
var L=0;
var K=this.thumbs_wrapper.find("a");
var J=K.length;
if(this.settings.thumb_opacity<1){K.find("img").css("opacity",this.settings.thumb_opacity)
}K.each(function(P){var R=G(this);
var Q=R.attr("href");
var O=R.find("img");
if(!N.isImageLoaded(O[0])){O.load(function(){M+=this.parentNode.parentNode.offsetWidth;
L++
})
}else{M+=O[0].parentNode.parentNode.offsetWidth;
L++
}R.addClass("ad-thumb"+P);
R.click(function(){N.showImage(P);
N.slideshow.stop();
return false
}).hover(function(){if(!G(this).is(".ad-active")&&N.settings.thumb_opacity<1){G(this).find("img").fadeTo(300,1)
}N.preloadImage(P)
},function(){if(!G(this).is(".ad-active")&&N.settings.thumb_opacity<1){G(this).find("img").fadeTo(300,N.settings.thumb_opacity)
}});
var R=false;
if(O.data("ad-link")){R=O.data("ad-link")
}else{if(O.attr("longdesc")&&O.attr("longdesc").length){R=O.attr("longdesc")
}}var T=false;
if(O.data("ad-desc")){T=O.data("ad-desc")
}else{if(O.attr("alt")&&O.attr("alt").length){T=O.attr("alt")
}}var S=false;
if(O.data("ad-title")){S=O.data("ad-title")
}else{if(O.attr("title")&&O.attr("title").length){S=O.attr("title")
}}N.images[P]={thumb:O.attr("src"),image:Q,error:false,preloaded:false,desc:T,title:S,size:false,link:R}
});
var I=setInterval(function(){if(J==L){M-=100;
var Q=N.nav.find(".ad-thumb-list");
Q.css("width",M+"px");
var P=1;
var O=Q.height();
while(P<201){Q.css("width",(M+P)+"px");
if(O!=Q.height()){break
}O=Q.height();
P++
}clearInterval(I)
}},100)
},initKeyEvents:function(){var I=this;
G(document).keydown(function(J){if(J.keyCode==39){I.nextImage();
I.slideshow.stop()
}else{if(J.keyCode==37){I.prevImage();
I.slideshow.stop()
}}})
},initNextAndPrev:function(){this.next_link=G('<div class="ad-next"><div class="ad-next-image"></div></div>');
this.prev_link=G('<div class="ad-prev"><div class="ad-prev-image"></div></div>');
this.image_wrapper.append(this.next_link);
this.image_wrapper.append(this.prev_link);
var I=this;
this.prev_link.add(this.next_link).mouseover(function(J){G(this).css("height",I.image_wrapper_height);
G(this).find("div").show()
}).mouseout(function(J){G(this).find("div").hide()
}).click(function(){if(G(this).is(".ad-next")){I.nextImage();
I.slideshow.stop()
}else{I.prevImage();
I.slideshow.stop()
}}).find("div").css("opacity",0.7)
},initBackAndForward:function(){var K=this;
this.scroll_forward=G('<div class="ad-forward"></div>');
this.scroll_back=G('<div class="ad-back"></div>');
this.nav.append(this.scroll_forward);
this.nav.prepend(this.scroll_back);
var J=0;
var I=false;
G(this.scroll_back).add(this.scroll_forward).click(function(){var L=K.nav_display_width-50;
if(K.settings.scroll_jump>0){var L=K.settings.scroll_jump
}if(G(this).is(".ad-forward")){var M=K.thumbs_wrapper.scrollLeft()+L
}else{var M=K.thumbs_wrapper.scrollLeft()-L
}if(K.settings.slideshow.stop_on_scroll){K.slideshow.stop()
}K.thumbs_wrapper.animate({scrollLeft:M+"px"});
return false
}).css("opacity",0.6).hover(function(){var L="left";
if(G(this).is(".ad-forward")){L="right"
}I=setInterval(function(){J++;
if(J>30&&K.settings.slideshow.stop_on_scroll){K.slideshow.stop()
}var M=K.thumbs_wrapper.scrollLeft()+1;
if(L=="left"){M=K.thumbs_wrapper.scrollLeft()-1
}K.thumbs_wrapper.scrollLeft(M)
},10);
G(this).css("opacity",1)
},function(){J=0;
clearInterval(I);
G(this).css("opacity",0.6)
})
},_afterShow:function(){this.gallery_info.html((this.current_index+1)+" / "+this.images.length);
if(!this.settings.cycle){this.prev_link.show().css("height",this.image_wrapper_height);
this.next_link.show().css("height",this.image_wrapper_height);
if(this.current_index==(this.images.length-1)){this.next_link.hide()
}if(this.current_index==0){this.prev_link.hide()
}}this.fireCallback(this.settings.callbacks.afterImageVisible)
},_getContainedImageSize:function(J,I){if(I>this.image_wrapper_height){var K=J/I;
I=this.image_wrapper_height;
J=this.image_wrapper_height*K
}if(J>this.image_wrapper_width){var K=I/J;
J=this.image_wrapper_width;
I=this.image_wrapper_width*K
}return{width:J,height:I}
},_centerImage:function(L,J,I){L.css("top","0px");
if(I<this.image_wrapper_height){var K=this.image_wrapper_height-I;
L.css("top",(K/2)+"px")
}L.css("left","0px");
if(J<this.image_wrapper_width){var K=this.image_wrapper_width-J;
L.css("left",(K/2)+"px")
}},_getDescription:function(I){var K=false;
if(I.desc.length||I.title.length){var J="";
if(I.title.length){J='<strong class="ad-description-title">'+I.title+"</strong>"
}var K="";
if(I.desc.length){K="<span>"+I.desc+"</span>"
}K=G('<p class="ad-image-description">'+J+K+"</p>")
}return K
},showImage:function(I,L){if(this.images[I]&&!this.in_transition){var J=this;
var K=this.images[I];
this.in_transition=true;
if(!K.preloaded){this.loading(true);
this.preloadImage(I,function(){J.loading(false);
J._showWhenLoaded(I,L)
})
}else{this._showWhenLoaded(I,L)
}}},_showWhenLoaded:function(Q,W){if(this.images[Q]){var J=this;
var L=this.images[Q];
var M=G(document.createElement("div")).addClass("ad-image");
var O=G(new Image()).attr("src",L.image);
if(L.link){var T=G('<a href="'+L.link+'" target="_blank"></a>');
T.append(O);
M.append(T)
}else{M.append(O)
}this.image_wrapper.prepend(M);
var X=this._getContainedImageSize(L.size.width,L.size.height);
O.attr("width",X.width);
O.attr("height",X.height);
M.css({width:X.width+"px",height:X.height+"px"});
this._centerImage(M,X.width,X.height);
var P=this._getDescription(L,M);
if(P){if(!this.settings.description_wrapper){M.append(P);
var I=X.width-parseInt(P.css("padding-left"),10)-parseInt(P.css("padding-right"),10);
P.css("width",I+"px")
}else{this.settings.description_wrapper.append(P)
}}this.highLightThumb(this.nav.find(".ad-thumb"+Q));
var U="right";
if(this.current_index<Q){U="left"
}this.fireCallback(this.settings.callbacks.beforeImageVisible);
if(this.current_image||this.settings.animate_first_image){var V=this.settings.animation_speed;
var S="swing";
var N=this.animations[this.settings.effect].call(this,M,U,P);
if(typeof N.speed!="undefined"){V=N.speed
}if(typeof N.easing!="undefined"){S=N.easing
}if(this.current_image){var K=this.current_image;
var R=this.current_description;
K.animate(N.old_image,V,S,function(){K.remove();
if(R){R.remove()
}})
}M.animate(N.new_image,V,S,function(){J.current_index=Q;
J.current_image=M;
J.current_description=P;
J.in_transition=false;
J._afterShow();
J.fireCallback(W)
})
}else{this.current_index=Q;
this.current_image=M;
J.current_description=P;
this.in_transition=false;
J._afterShow();
this.fireCallback(W)
}}},nextIndex:function(){if(this.current_index==(this.images.length-1)){if(!this.settings.cycle){return false
}var I=0
}else{var I=this.current_index+1
}return I
},nextImage:function(J){var I=this.nextIndex();
if(I===false){return false
}this.preloadImage(I+1);
this.showImage(I,J);
return true
},prevIndex:function(){if(this.current_index==0){if(!this.settings.cycle){return false
}var I=this.images.length-1
}else{var I=this.current_index-1
}return I
},prevImage:function(J){var I=this.prevIndex();
if(I===false){return false
}this.preloadImage(I-1);
this.showImage(I,J);
return true
},preloadAll:function(){var J=this;
var I=0;
function K(){if(I<J.images.length){I++;
J.preloadImage(I,K)
}}J.preloadImage(I,K)
},preloadImage:function(J,M){if(this.images[J]){var L=this.images[J];
if(!this.images[J].preloaded){var I=G(new Image());
I.attr("src",L.image);
if(!this.isImageLoaded(I[0])){this.preloads.append(I);
var K=this;
I.load(function(){L.preloaded=true;
L.size={width:this.width,height:this.height};
K.fireCallback(M)
}).error(function(){L.error=true;
L.preloaded=false;
L.size=false
})
}else{L.preloaded=true;
L.size={width:I[0].width,height:I[0].height};
this.fireCallback(M)
}}else{this.fireCallback(M)
}}},isImageLoaded:function(I){if(typeof I.complete!="undefined"&&!I.complete){return false
}if(typeof I.naturalWidth!="undefined"&&I.naturalWidth==0){return false
}return true
},highLightThumb:function(I){this.thumbs_wrapper.find(".ad-active").removeClass("ad-active");
I.addClass("ad-active");
if(this.settings.thumb_opacity<1){this.thumbs_wrapper.find("a:not(.ad-active) img").fadeTo(300,this.settings.thumb_opacity);
I.find("img").fadeTo(300,1)
}var J=I[0].parentNode.offsetLeft;
J-=(this.nav_display_width/2)-(I[0].offsetWidth/2);
this.thumbs_wrapper.animate({scrollLeft:J+"px"})
},fireCallback:function(I){if(G.isFunction(I)){I.call(this)
}}};
function A(I,J){this.init(I,J)
}A.prototype={start_link:false,stop_link:false,countdown:false,controls:false,settings:false,nextimage_callback:false,enabled:false,running:false,countdown_interval:false,init:function(I,K){var J=this;
this.nextimage_callback=I;
this.settings=K
},create:function(){this.start_link=G('<span class="ad-slideshow-start">'+this.settings.start_label+"</span>");
this.stop_link=G('<span class="ad-slideshow-stop">'+this.settings.stop_label+"</span>");
this.countdown=G('<span class="ad-slideshow-countdown"></span>');
this.controls=G('<div class="ad-slideshow-controls"></div>');
this.controls.append(this.start_link).append(this.stop_link).append(this.countdown);
this.countdown.hide();
var I=this;
this.start_link.click(function(){I.start()
});
this.stop_link.click(function(){I.stop()
});
G(document).keydown(function(J){if(J.keyCode==83){if(I.running){I.stop()
}else{I.start()
}}});
return this.controls
},disable:function(){this.enabled=false;
this.stop();
this.controls.hide()
},enable:function(){this.enabled=true;
this.controls.show()
},toggle:function(){if(this.enabled){this.disable()
}else{this.enable()
}},start:function(){if(this.running||!this.enabled){return false
}var I=this;
this.running=true;
this.controls.addClass("ad-slideshow-running");
this._next();
this.fireCallback(this.settings.onStart);
return true
},stop:function(){if(!this.running){return false
}this.running=false;
this.countdown.hide();
this.controls.removeClass("ad-slideshow-running");
clearInterval(this.countdown_interval);
this.fireCallback(this.settings.onStop);
return true
},_next:function(){var K=this;
var L=this.settings.countdown_prefix;
var J=this.settings.countdown_sufix;
clearInterval(K.countdown_interval);
this.countdown.show().html(L+(this.settings.speed/1000)+J);
var I=0;
this.countdown_interval=setInterval(function(){I+=1000;
if(I>=K.settings.speed){var N=function(){if(K.running){K._next()
}I=0
};
if(!K.nextimage_callback(N)){K.stop()
}I=0
}var M=parseInt(K.countdown.text().replace(/[^0-9]/g,""),10);
M--;
if(M>0){K.countdown.html(L+M+J)
}},1000)
},fireCallback:function(I){if(G.isFunction(I)){I.call(this)
}}}
})(jQuery);
VWFS={};
VWFS.Common={};
VWFS.Common.IFrame={};
VWFS.Common.IFrame.resizeFrame=function(B,D,E){try{if($.browser.safari||$.browser.opera){setTimeout("resize4SafariOpera()",0);
resize4SafariOpera=function(){VWFS.Common.IFrame.iResize(B,D,E)
};
var A=iframes.src;
iframes.src="";
iframes.src=A
}else{VWFS.Common.IFrame.iResize(B,D,E)
}}catch(C){B.style.height=D
}};
VWFS.Common.IFrame.iResize=function(E,C,D){try{var A=(E.contentDocument?E.contentDocument:E.contentWindow);
if(A.document){A=A.document
}C=(A.body.offsetHeight+parseInt(D))+"px"
}catch(B){}E.style.height=C
};
$().ready(function(){$("#logobrand").change(function(A){setBrand()
});
$("#logocountry").change(function(A){setCountry()
})
});
function setBrand(){var E=$("#logobrand option:selected").text();
var C=$("#logocountry option:selected").text();
resetSelectElement("logocountry");
if(E==""){for(var B=1;
B<countryArray.length;
B++){$("#logocountry").append("<option>"+countryArray[B]+"</option>")
}}else{var A;
for(var B=1;
B<brandCountry.length;
B++){A=brandCountry[B].split(";");
if(A[0]==E){for(var D=1;
D<A.length-1;
D++){$("#logocountry").append("<option>"+A[D]+"</option>")
}B=brandCountry.length
}}}}function setCountry(){}function resetSelectElement(A){$("#"+A).empty();
$("#"+A).append('<option value="">------ Alle ------</option>')
}$(function(){$(".ad-gallery").adGallery()
});
$().ready(function(){$("input[name='BrandGroup']").change(function(){presetBrands()
});
presetBrands()
});
function presetBrands(){var A=$("input[name='BrandGroup']:checked").val();
if(A=="sb"){$("#brands_sb").show();
$("#brands_cb").hide();
$("#brands_empty").hide()
}else{if(A=="cb"){$("#brands_sb").hide();
$("#brands_cb").show();
$("#brands_empty").hide()
}else{$("#brands_sb").hide();
$("#brands_cb").hide();
$("#brands_empty").show()
}}}$(function(){$(".datepicker").datepicker({dateFormat:"yy-mm-dd"});
$("#media_download_form").validate({rules:{form_download_salutation:{required:true}},errorPlacement:function(A,B){A.appendTo(B.parent())
},success:function(A){A.html("&nbsp;").addClass("checked")
}})
});
