
(function(window,undefined){var document=window.document;var jQuery=(function(){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context);},_jQuery=window.jQuery,_$=window.$,rootjQuery,quickExpr=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rwhite=/\s/,trimLeft=/^\s+/,trimRight=/\s+$/,rnonword=/\W/,rdigit=/\d/,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,rvalidchars=/^[\],:{}\s]*$/,rvalidescape=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,rvalidtokens=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,rvalidbraces=/(?:^|:|,)(?:\s*\[)+/g,rwebkit=/(webkit)[ \/]([\w.]+)/,ropera=/(opera)(?:.*version)?[ \/]([\w.]+)/,rmsie=/(msie) ([\w.]+)/,rmozilla=/(mozilla)(?:.*? rv:([\w.]+))?/,userAgent=navigator.userAgent,browserMatch,readyBound=false,readyList=[],DOMContentLoaded,toString=Object.prototype.toString,hasOwn=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,trim=String.prototype.trim,indexOf=Array.prototype.indexOf,class2type={};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&&document.body){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=jQuery.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&&elem.parentNode){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&&!rnonword.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.4",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 options,name,src,copy,copyIsArray,clone,target=arguments[0]||{},i=1,length=arguments.length,deep=false;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)||(copyIsArray=jQuery.isArray(copy)))){if(copyIsArray){copyIsArray=false;clone=src&&jQuery.isArray(src)?src:[];}else{clone=src&&jQuery.isPlainObject(src)?src:{};}
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,readyWait:1,ready:function(wait){if(wait===true){jQuery.readyWait--;}
if(!jQuery.readyWait||(wait!==true&&!jQuery.isReady)){if(!document.body){return setTimeout(jQuery.ready,1);}
jQuery.isReady=true;if(wait!==true&&--jQuery.readyWait>0){return;}
if(readyList){var fn,i=0,ready=readyList;readyList=null;while((fn=ready[i++])){fn.call(document,jQuery);}
if(jQuery.fn.trigger){jQuery(document).trigger("ready").unbind("ready");}}}},bindReady:function(){if(readyBound){return;}
readyBound=true;if(document.readyState==="complete"){return setTimeout(jQuery.ready,1);}
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 jQuery.type(obj)==="function";},isArray:Array.isArray||function(obj){return jQuery.type(obj)==="array";},isWindow:function(obj){return obj&&typeof obj==="object"&&"setInterval"in obj;},isNaN:function(obj){return obj==null||!rdigit.test(obj)||isNaN(obj);},type:function(obj){return obj==null?String(obj):class2type[toString.call(obj)]||"object";},isPlainObject:function(obj){if(!obj||jQuery.type(obj)!=="object"||obj.nodeType||jQuery.isWindow(obj)){return false;}
if(obj.constructor&&!hasOwn.call(obj,"constructor")&&!hasOwn.call(obj.constructor.prototype,"isPrototypeOf")){return false;}
var key;for(key in obj){}
return key===undefined||hasOwn.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(rvalidchars.test(data.replace(rvalidescape,"@").replace(rvalidtokens,"]").replace(rvalidbraces,""))){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:trim?function(text){return text==null?"":trim.call(text);}:function(text){return text==null?"":text.toString().replace(trimLeft,"").replace(trimRight,"");},makeArray:function(array,results){var ret=results||[];if(array!=null){var type=jQuery.type(array);if(array.length==null||type==="string"||type==="function"||type==="regexp"||jQuery.isWindow(array)){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=[],retVal;inv=!!inv;for(var i=0,length=elems.length;i<length;i++){retVal=!!callback(elems[i],i);if(inv!==retVal){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;},access:function(elems,key,value,exec,fn,pass){var length=elems.length;if(typeof key==="object"){for(var k in key){jQuery.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;},now:function(){return(new Date()).getTime();},uaMatch:function(ua){ua=ua.toLowerCase();var match=rwebkit.exec(ua)||ropera.exec(ua)||rmsie.exec(ua)||ua.indexOf("compatible")<0&&rmozilla.exec(ua)||[];return{browser:match[1]||"",version:match[2]||"0"};},browser:{}});jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(i,name){class2type["[object "+name+"]"]=name.toLowerCase();});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);};}
if(!rwhite.test("\xA0")){trimLeft=/^[\s\xA0]+/;trimRight=/[\s\xA0]+$/;}
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(e){setTimeout(doScrollCheck,1);return;}
jQuery.ready();}
return(window.jQuery=window.$=jQuery);})();(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+jQuery.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],select=document.createElement("select"),opt=select.appendChild(document.createElement("option"));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:opt.selected,deleteExpando:true,optDisabled:false,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableHiddenOffsets:true};select.disabled=true;jQuery.support.optDisabled=!opt.disabled;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;if("zoom"in div.style){div.style.display="inline";div.style.zoom=1;jQuery.support.inlineBlockNeedsLayout=div.offsetWidth===2;div.style.display="";div.innerHTML="<div style='width:4px;'></div>";jQuery.support.shrinkWrapBlocks=div.offsetWidth!==2;}
div.innerHTML="<table><tr><td style='padding:0;display:none'></td><td>t</td></tr></table>";var tds=div.getElementsByTagName("td");jQuery.support.reliableHiddenOffsets=tds[0].offsetHeight===0;tds[0].style.display="";tds[1].style.display="none";jQuery.support.reliableHiddenOffsets=jQuery.support.reliableHiddenOffsets&&tds[0].offsetHeight===0;div.innerHTML="";document.body.removeChild(div).style.display="none";div=tds=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;})();var windowData={},rbrace=/^(?:\{.*\}|\[.*\])$/;jQuery.extend({cache:{},uuid:0,expando:"jQuery"+jQuery.now(),noData:{"embed":true,"object":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000","applet":true},data:function(elem,name,data){if(!jQuery.acceptData(elem)){return;}
elem=elem==window?windowData:elem;var isNode=elem.nodeType,id=isNode?elem[jQuery.expando]:null,cache=jQuery.cache,thisCache;if(isNode&&!id&&typeof name==="string"&&data===undefined){return;}
if(!isNode){cache=elem;}else if(!id){elem[jQuery.expando]=id=++jQuery.uuid;}
if(typeof name==="object"){if(isNode){cache[id]=jQuery.extend(cache[id],name);}else{jQuery.extend(cache,name);}}else if(isNode&&!cache[id]){cache[id]={};}
thisCache=isNode?cache[id]:cache;if(data!==undefined){thisCache[name]=data;}
return typeof name==="string"?thisCache[name]:thisCache;},removeData:function(elem,name){if(!jQuery.acceptData(elem)){return;}
elem=elem==window?windowData:elem;var isNode=elem.nodeType,id=isNode?elem[jQuery.expando]:elem,cache=jQuery.cache,thisCache=isNode?cache[id]:id;if(name){if(thisCache){delete thisCache[name];if(isNode&&jQuery.isEmptyObject(thisCache)){jQuery.removeData(elem);}}}else{if(isNode&&jQuery.support.deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}else if(isNode){delete cache[id];}else{for(var n in elem){delete elem[n];}}}},acceptData:function(elem){if(elem.nodeName){var match=jQuery.noData[elem.nodeName.toLowerCase()];if(match){return!(match===true||elem.getAttribute("classid")!==match);}}
return true;}});jQuery.fn.extend({data:function(key,value){var data=null;if(typeof key==="undefined"){if(this.length){var attr=this[0].attributes,name;data=jQuery.data(this[0]);for(var i=0,l=attr.length;i<l;i++){name=attr[i].name;if(name.indexOf("data-")===0){name=name.substr(5);dataAttr(this[0],name,data[name]);}}}
return data;}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){data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key);data=dataAttr(this[0],key,data);}
return data===undefined&&parts[1]?this.data(parts[0]):data;}else{return this.each(function(){var $this=jQuery(this),args=[parts[0],value];$this.triggerHandler("setData"+parts[1]+"!",args);jQuery.data(this,key,value);$this.triggerHandler("changeData"+parts[1]+"!",args);});}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});}});function dataAttr(elem,key,data){if(data===undefined&&elem.nodeType===1){data=elem.getAttribute("data-"+key);if(typeof data==="string"){try{data=data==="true"?true:data==="false"?false:data==="null"?null:!jQuery.isNaN(data)?parseFloat(data):rbrace.test(data)?jQuery.parseJSON(data):data;}catch(e){}
jQuery.data(elem,key,data);}else{data=undefined;}}
return data;}
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){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,rspaces=/\s+/,rreturn=/\r/g,rspecialurl=/^(?:href|src|style)$/,rtype=/^(?:button|input)$/i,rfocusable=/^(?:button|input|object|select|textarea)$/i,rclickable=/^a(?:rea)?$/i,rradiocheck=/^(?:radio|checkbox)$/i;jQuery.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};jQuery.fn.extend({attr:function(name,value){return jQuery.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(rspaces);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(rspaces);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(rspaces);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(!arguments.length){var elem=this[0];if(elem){if(jQuery.nodeName(elem,"option")){var val=elem.attributes.value;return!val||val.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&&(jQuery.support.optDisabled?!option.disabled:option.getAttribute("disabled")===null)&&(!option.parentNode.disabled||!jQuery.nodeName(option.parentNode,"optgroup"))){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(val==null){val="";}else if(typeof val==="number"){val+="";}else if(jQuery.isArray(val)){val=jQuery.map(val,function(value){return value==null?"":value+"";});}
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;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||elem[name]!==undefined)&&notxml&&!special){if(set){if(name==="type"&&rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("type property can't be changed");}
if(value===null){if(elem.nodeType===1){elem.removeAttribute(name);}}else{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);}
if(!elem.attributes[name]&&(elem.hasAttribute&&!elem.hasAttribute(name))){return undefined;}
var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}});var rnamespaces=/\.(.*)$/,rformElems=/^(?:textarea|input|select)$/i,rperiod=/\./g,rspace=/ /g,rescape=/[^\w\s.|`]/g,fcleanup=function(nm){return nm.replace(rescape,"\\$&");},focusCounts={focusin:0,focusout:0};jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return;}
if(jQuery.isWindow(elem)&&(elem!==window&&!elem.frameElement)){elem=window;}
if(handler===false){handler=returnFalse;}else if(!handler){return;}
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 eventKey=elem.nodeType?"events":"__events__",events=elemData[eventKey],eventHandle=elemData.handle;if(typeof events==="function"){eventHandle=events.handle;events=events.events;}else if(!events){if(!elem.nodeType){elemData[eventKey]=elemData=function(){};}
elemData.events=events={};}
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;if(!handleObj.guid){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;}
if(handler===false){handler=returnFalse;}
var ret,type,fn,j,i=0,all,namespaces,namespace,special,eventType,handleObj,origType,eventKey=elem.nodeType?"events":"__events__",elemData=jQuery.data(elem),events=elemData&&elemData[eventKey];if(!elemData||!events){return;}
if(typeof events==="function"){elemData=events;events=events.events;}
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(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(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){jQuery.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(typeof elemData==="function"){jQuery.removeData(elem,eventKey);}else 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[jQuery.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=elem.nodeType?jQuery.data(elem,"handle"):(jQuery.data(elem,"__events__")||{}).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;event.preventDefault();}}}catch(inlineError){}
if(!event.isPropagationStopped()&&parent){jQuery.event.trigger(event,data,parent,true);}else if(!event.isDefaultPrevented()){var old,target=event.target,targetType=type.replace(rnamespaces,""),isClick=jQuery.nodeName(target,"a")&&targetType==="click",special=jQuery.event.special[targetType]||{};if((!special._default||special._default.call(elem,event)===false)&&!isClick&&!(target&&target.nodeName&&jQuery.noData[target.nodeName.toLowerCase()])){try{if(target[targetType]){old=target["on"+targetType];if(old){target["on"+targetType]=null;}
jQuery.event.triggered=true;target[targetType]();}}catch(triggerError){}
if(old){target["on"+targetType]=old;}
jQuery.event.triggered=false;}}},handle:function(event){var all,handlers,namespaces,namespace_re,events,namespace_sort=[],args=jQuery.makeArray(arguments);event=args[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_sort=namespaces.slice(0).sort();namespace_re=new RegExp("(^|\\.)"+namespace_sort.join("\\.(?:.*\\.)?")+"(\\.|$)");}
event.namespace=event.namespace||namespace_sort.join(".");events=jQuery.data(this,this.nodeType?"events":"__events__");if(typeof events==="function"){events=events.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_re.test(handleObj.namespace)){event.handler=handleObj.handler;event.data=handleObj.data;event.handleObj=handleObj;var ret=handleObj.handler.apply(this,args);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 pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[jQuery.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==null&&(event.charCode!=null||event.keyCode!=null)){event.which=event.charCode!=null?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:1E8,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(handleObj){jQuery.event.add(this,liveConvert(handleObj.origType,handleObj.selector),jQuery.extend({},handleObj,{handler:liveHandler,guid:handleObj.handler.guid}));},remove:function(handleObj){jQuery.event.remove(this,liveConvert(handleObj.origType,handleObj.selector),handleObj);}},beforeunload:{setup:function(data,namespaces,eventHandle){if(jQuery.isWindow(this)){this.onbeforeunload=eventHandle;}},teardown:function(namespaces,eventHandle){if(this.onbeforeunload===eventHandle){this.onbeforeunload=null;}}}}};jQuery.removeEvent=document.removeEventListener?function(elem,type,handle){if(elem.removeEventListener){elem.removeEventListener(type,handle,false);}}:function(elem,type,handle){if(elem.detachEvent){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=jQuery.now();this[jQuery.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();}else{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=elem.type;if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){e.liveFired=undefined;return trigger("submit",this,arguments);}});jQuery.event.add(this,"keypress.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){e.liveFired=undefined;return trigger("submit",this,arguments);}});}else{return false;}},teardown:function(namespaces){jQuery.event.remove(this,".specialSubmit");}};}
if(!jQuery.support.changeBubbles){var changeFilters,getVal=function(elem){var type=elem.type,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(!rformElems.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";e.liveFired=undefined;return jQuery.event.trigger(e,arguments[1],elem);}};jQuery.event.special.change={filters:{focusout:testChange,beforedeactivate:testChange,click:function(e){var elem=e.target,type=elem.type;if(type==="radio"||type==="checkbox"||elem.nodeName.toLowerCase()==="select"){return testChange.call(this,e);}},keydown:function(e){var elem=e.target,type=elem.type;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 rformElems.test(this.nodeName);},teardown:function(namespaces){jQuery.event.remove(this,".specialChange");return rformElems.test(this.nodeName);}};changeFilters=jQuery.event.special.change.filters;changeFilters.focus=changeFilters.beforeactivate;}
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(){if(focusCounts[fix]++===0){document.addEventListener(orig,handler,true);}},teardown:function(){if(--focusCounts[fix]===0){document.removeEventListener(orig,handler,true);}}};function handler(e){e=jQuery.event.fix(e);e.type=fix;return jQuery.event.trigger(e,null,e.target);}});}
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)||data===false){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(typeof types==="object"&&!types.preventDefault){for(var key in types){context[name](key,data,types[key],selector);}
return this;}
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"){for(var j=0,l=context.length;j<l;j++){jQuery.event.add(context[j],"live."+liveConvert(type,selector),{data:data,selector:selector,handler:fn,origType:type,origHandler:fn,preType:preType});}}else{context.unbind("live."+liveConvert(type,selector),fn);}}
return this;};});function liveHandler(event){var stop,maxLevel,related,match,handleObj,elem,j,i,l,data,close,namespace,ret,elems=[],selectors=[],events=jQuery.data(this,this.nodeType?"events":"__events__");if(typeof events==="function"){events=events.events;}
if(event.liveFired===this||!events||!events.live||event.button&&event.type==="click"){return;}
if(event.namespace){namespace=new RegExp("(^|\\.)"+event.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");}
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++){close=match[i];for(j=0;j<live.length;j++){handleObj=live[j];if(close.selector===handleObj.selector&&(!namespace||namespace.test(handleObj.namespace))){elem=close.elem;related=null;if(handleObj.preType==="mouseenter"||handleObj.preType==="mouseleave"){event.type=handleObj.preType;related=jQuery(event.relatedTarget).closest(handleObj.selector)[0];}
if(!related||related!==elem){elems.push({elem:elem,handleObj:handleObj,level:close.level});}}}}
for(i=0,l=elems.length;i<l;i++){match=elems[i];if(maxLevel&&match.level>maxLevel){break;}
event.currentTarget=match.elem;event.data=match.handleObj.data;event.handleObj=match.handleObj;ret=match.handleObj.origHandler.apply(match.elem,arguments);if(ret===false||event.isPropagationStopped()){maxLevel=match.level;if(ret===false){stop=false;}
if(event.isImmediatePropagationStopped()){break;}}}
return stop;}
function liveConvert(type,selector){return(type&&type!=="*"?type+".":"")+selector.replace(rperiod,"`").replace(rspace,"&");}
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(data,fn){if(fn==null){fn=data;data=null;}
return arguments.length>0?this.bind(name,data,fn):this.trigger(name);};if(jQuery.attrFn){jQuery.attrFn[name]=true;}});if(window.attachEvent&&!window.addEventListener){jQuery(window).bind("unload",function(){for(var id in jQuery.cache){if(jQuery.cache[id].handle){try{jQuery.event.remove(jQuery.cache[id].handle.elem);}catch(e){}}}});}
(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||[];context=context||document;var origContext=context;if(context.nodeType!==1&&context.nodeType!==9){return[];}
if(!selector||typeof selector!=="string"){return results;}
var m,set,checkSet,extra,ret,cur,pop,i,prune=true,contextXML=Sizzle.isXML(context),parts=[],soFar=selector;do{chunker.exec("");m=chunker.exec(soFar);if(m){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break;}}}while(m);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])){ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}
if(context){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){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(i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&Sizzle.contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(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.matchesSelector=function(node,expr){return Sizzle(expr,null,null,[node]).length>0;};Sizzle.find=function(expr,context,isXML){var set;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var match,type=Expr.order[i];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 match,anyFound,old=expr,result=[],curLoop=set,isXMLFilter=set&&set[0]&&Sizzle.isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.leftMatch[type].exec(expr))!=null&&match[2]){var found,item,filter=Expr.filter[type],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 elem,isPartStr=typeof part==="string",i=0,l=checkSet.length;if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();for(;i<l;i++){elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false;}}}else{for(;i<l;i++){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 nodeCheck,doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){part=part.toLowerCase();nodeCheck=part;checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var nodeCheck,doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){part=part.toLowerCase();nodeCheck=part;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.parentNode?[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||Sizzle.getText([elem])||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var j=0,l=not.length;j<l;j++){if(not[j]===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,fescape=function(all,num){return"\\"+(num-0+1);};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,fescape));}
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 i=0,ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var l=array.length;i<l;i++){ret.push(array[i]);}}else{for(;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder,siblingCheck;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(a===b){hasDuplicate=true;return 0;}
if(!a.compareDocumentPosition||!b.compareDocumentPosition){return a.compareDocumentPosition?-1:1;}
return a.compareDocumentPosition(b)&4?-1:1;};}else{sortOrder=function(a,b){var al,bl,ap=[],bp=[],aup=a.parentNode,bup=b.parentNode,cur=aup;if(a===b){hasDuplicate=true;return 0;}else if(aup===bup){return siblingCheck(a,b);}else if(!aup){return-1;}else if(!bup){return 1;}
while(cur){ap.unshift(cur);cur=cur.parentNode;}
cur=bup;while(cur){bp.unshift(cur);cur=cur.parentNode;}
al=ap.length;bl=bp.length;for(var i=0;i<al&&i<bl;i++){if(ap[i]!==bp[i]){return siblingCheck(ap[i],bp[i]);}}
return i===al?siblingCheck(a,bp[i],-1):siblingCheck(ap[i],b,1);};siblingCheck=function(a,b,ret){if(a===b){return ret;}
var cur=a.nextSibling;while(cur){if(cur===b){return-1;}
cur=cur.nextSibling;}
return 1;};}
Sizzle.getText=function(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+=Sizzle.getText(elem.childNodes);}}
return ret;};(function(){var form=document.createElement("div"),id="script"+(new Date()).getTime(),root=document.documentElement;form.innerHTML="<a name='"+id+"'/>";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"),id="__sizzle__";div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;query=query.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!seed&&!Sizzle.isXML(context)){if(context.nodeType===9){try{return makeArray(context.querySelectorAll(query),extra);}catch(qsaError){}}else if(context.nodeType===1&&context.nodeName.toLowerCase()!=="object"){var old=context.getAttribute("id"),nid=old||id;if(!old){context.setAttribute("id",nid);}
try{return makeArray(context.querySelectorAll("#"+nid+" "+query),extra);}catch(pseudoError){}finally{if(!old){context.removeAttribute("id");}}}}
return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();}
(function(){var html=document.documentElement,matches=html.matchesSelector||html.mozMatchesSelector||html.webkitMatchesSelector||html.msMatchesSelector,pseudoWorks=false;try{matches.call(document.documentElement,"[test!='']:sizzle");}catch(pseudoError){pseudoWorks=true;}
if(matches){Sizzle.matchesSelector=function(node,expr){expr=expr.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!Sizzle.isXML(node)){try{if(pseudoWorks||!Expr.match.PSEUDO.test(expr)&&!/!=/.test(expr)){return matches.call(node,expr);}}catch(e){}}
return Sizzle(expr,null,null,[node]).length>0;};}})();(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){var match=false;elem=elem[dir];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){var match=false;elem=elem[dir];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;}}}
if(document.documentElement.contains){Sizzle.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):true);};}else if(document.documentElement.compareDocumentPosition){Sizzle.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16);};}else{Sizzle.contains=function(){return false;};}
Sizzle.isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};var posProcess=function(selector,context){var match,tmpSet=[],later="",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=Sizzle.getText;jQuery.isXMLDoc=Sizzle.isXML;jQuery.contains=Sizzle.contains;})();var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,isSimple=/^.[^:#\[\.,]*$/,slice=Array.prototype.slice,POS=jQuery.expr.match.POS;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){var ret=[],i,l,cur=this[0];if(jQuery.isArray(selectors)){var match,selector,matches={},level=1;if(cur&&selectors.length){for(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,level:level});}}
cur=cur.parentNode;level++;}}
return ret;}
var pos=POS.test(selectors)?jQuery(selectors,context||this.context):null;for(i=0,l=this.length;i<l;i++){cur=this[i];while(cur){if(pos?pos.index(cur)>-1:jQuery.find.matchesSelector(cur,selectors)){ret.push(cur);break;}else{cur=cur.parentNode;if(!cur||!cur.ownerDocument||cur===context){break;}}}}
ret=ret.length>1?jQuery.unique(ret):ret;return this.pushStack(ret,"closest",selectors);},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 elems.length===1?jQuery.find.matchesSelector(elems[0],expr)?[elems[0]]:[]: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;}});function winnow(elements,qualifier,keep){if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){var retVal=!!qualifier.call(elem,i,elem);return retVal===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;});}
var rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&#?\w+;/,rnocache=/<(?:script|object|embed|option|style)/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,raction=/\=([^="'>\s]+\/)>/g,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(raction,'="$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,"<$1></$2>");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);self.html(value.call(this,i,self.html()));});}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,fragment,parent,value=args[0],scripts=[];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=jQuery.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);}}}});}
jQuery.buildFragment=function(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(insert[i])[original](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,"<$1></$2>");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(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++){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){continue;}
id=elem[jQuery.expando];if(id){data=cache[id];if(data&&data.events){for(var type in data.events){if(special[type]){jQuery.event.remove(elem,type);}else{jQuery.removeEvent(elem,type,data.handle);}}}
if(deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}
delete cache[id];}}}});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);}}
var ralpha=/alpha\([^)]*\)/i,ropacity=/opacity=([^)]*)/,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"],curCSS,getComputedStyle,currentStyle,fcamelCase=function(all,letter){return letter.toUpperCase();};jQuery.fn.css=function(name,value){if(arguments.length===2&&value===undefined){return this;}
return jQuery.access(this,name,value,true,function(elem,name,value){return value!==undefined?jQuery.style(elem,name,value):jQuery.css(elem,name);});};jQuery.extend({cssHooks:{opacity:{get:function(elem,computed){if(computed){var ret=curCSS(elem,"opacity","opacity");return ret===""?"1":ret;}else{return elem.style.opacity;}}}},cssNumber:{"zIndex":true,"fontWeight":true,"opacity":true,"zoom":true,"lineHeight":true},cssProps:{"float":jQuery.support.cssFloat?"cssFloat":"styleFloat"},style:function(elem,name,value,extra){if(!elem||elem.nodeType===3||elem.nodeType===8||!elem.style){return;}
var ret,origName=jQuery.camelCase(name),style=elem.style,hooks=jQuery.cssHooks[origName];name=jQuery.cssProps[origName]||origName;if(value!==undefined){if(typeof value==="number"&&isNaN(value)||value==null){return;}
if(typeof value==="number"&&!jQuery.cssNumber[origName]){value+="px";}
if(!hooks||!("set"in hooks)||(value=hooks.set(elem,value))!==undefined){try{style[name]=value;}catch(e){}}}else{if(hooks&&"get"in hooks&&(ret=hooks.get(elem,false,extra))!==undefined){return ret;}
return style[name];}},css:function(elem,name,extra){var ret,origName=jQuery.camelCase(name),hooks=jQuery.cssHooks[origName];name=jQuery.cssProps[origName]||origName;if(hooks&&"get"in hooks&&(ret=hooks.get(elem,true,extra))!==undefined){return ret;}else if(curCSS){return curCSS(elem,name,origName);}},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(name in options){elem.style[name]=old[name];}},camelCase:function(string){return string.replace(rdashAlpha,fcamelCase);}});jQuery.curCSS=jQuery.css;jQuery.each(["height","width"],function(i,name){jQuery.cssHooks[name]={get:function(elem,computed,extra){var val;if(computed){if(elem.offsetWidth!==0){val=getWH(elem,name,extra);}else{jQuery.swap(elem,cssShow,function(){val=getWH(elem,name,extra);});}
if(val<=0){val=curCSS(elem,name,name);if(val==="0px"&&currentStyle){val=currentStyle(elem,name,name);}
if(val!=null){return val===""||val==="auto"?"0px":val;}}
if(val<0||val==null){val=elem.style[name];return val===""||val==="auto"?"0px":val;}
return typeof val==="string"?val:val+"px";}},set:function(elem,value){if(rnumpx.test(value)){value=parseFloat(value);if(value>=0){return value+"px";}}else{return value;}}};});if(!jQuery.support.opacity){jQuery.cssHooks.opacity={get:function(elem,computed){return ropacity.test((computed&&elem.currentStyle?elem.currentStyle.filter:elem.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":computed?"1":"";},set:function(elem,value){var style=elem.style;style.zoom=1;var opacity=jQuery.isNaN(value)?"":"alpha(opacity="+value*100+")",filter=style.filter||"";style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):style.filter+' '+opacity;}};}
if(document.defaultView&&document.defaultView.getComputedStyle){getComputedStyle=function(elem,newName,name){var ret,defaultView,computedStyle;name=name.replace(rupper,"-$1").toLowerCase();if(!(defaultView=elem.ownerDocument.defaultView)){return undefined;}
if((computedStyle=defaultView.getComputedStyle(elem,null))){ret=computedStyle.getPropertyValue(name);if(ret===""&&!jQuery.contains(elem.ownerDocument.documentElement,elem)){ret=jQuery.style(elem,name);}}
return ret;};}
if(document.documentElement.currentStyle){currentStyle=function(elem,name){var left,rsLeft,ret=elem.currentStyle&&elem.currentStyle[name],style=elem.style;if(!rnumpx.test(ret)&&rnum.test(ret)){left=style.left;rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=name==="fontSize"?"1em":(ret||0);ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}
return ret===""?"auto":ret;};}
curCSS=getComputedStyle||currentStyle;function getWH(elem,name,extra){var which=name==="width"?cssWidth:cssHeight,val=name==="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border"){return val;}
jQuery.each(which,function(){if(!extra){val-=parseFloat(jQuery.css(elem,"padding"+this))||0;}
if(extra==="margin"){val+=parseFloat(jQuery.css(elem,"margin"+this))||0;}else{val-=parseFloat(jQuery.css(elem,"border"+this+"Width"))||0;}});return val;}
if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight;return(width===0&&height===0)||(!jQuery.support.reliableHiddenOffsets&&(elem.style.display||jQuery.css(elem,"display"))==="none");};jQuery.expr.filters.visible=function(elem){return!jQuery.expr.filters.hidden(elem);};}
var jsc=jQuery.now(),rscript=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,rselectTextarea=/^(?:select|textarea)/i,rinput=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,rnoContent=/^(?:GET|HEAD)$/,rbracket=/\[\]$/,jsre=/\=\?(&|$)/,rquery=/\?/,rts=/([?&])_=[^&]*/,rurl=/^(\w+:)?\/\/([^\/?#]+)/,r20=/%20/g,rhash=/#.*$/,_load=jQuery.fn.load;jQuery.fn.extend({load:function(url,params,callback){if(typeof url!=="string"&&_load){return _load.apply(this,arguments);}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:function(){return new window.XMLHttpRequest();},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},ajax:function(origSettings){var s=jQuery.extend(true,{},jQuery.ajaxSettings,origSettings),jsonp,status,data,type=s.type.toUpperCase(),noContent=rnoContent.test(type);s.url=s.url.replace(rhash,"");s.context=origSettings&&origSettings.context!=null?origSettings.context:s;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";var customJsonp=window[jsonp];window[jsonp]=function(tmp){if(jQuery.isFunction(customJsonp)){customJsonp(tmp);}else{window[jsonp]=undefined;try{delete window[jsonp];}catch(jsonpError){}}
data=tmp;jQuery.handleSuccess(s,xhr,status,data);jQuery.handleComplete(s,xhr,status,data);if(head){head.removeChild(script);}};}
if(s.dataType==="script"&&s.cache===null){s.cache=false;}
if(s.cache===false&&noContent){var ts=jQuery.now();var ret=s.url.replace(rts,"$1_="+ts);s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"");}
if(s.data&&noContent){s.url+=(rquery.test(s.url)?"&":"?")+s.data;}
if(s.global&&jQuery.active++===0){jQuery.event.trigger("ajaxStart");}
var parts=rurl.exec(s.url),remote=parts&&(parts[1]&&parts[1].toLowerCase()!==location.protocol||parts[2].toLowerCase()!==location.host);if(s.dataType==="script"&&type==="GET"&&remote){var head=document.getElementsByTagName("head")[0]||document.documentElement;var script=document.createElement("script");if(s.scriptCharset){script.charset=s.scriptCharset;}
script.src=s.url;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){done=true;jQuery.handleSuccess(s,xhr,status,data);jQuery.handleComplete(s,xhr,status,data);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!=null&&!noContent)||(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]+", */*; q=0.01":s.accepts._default);}catch(headerError){}
if(s.beforeSend&&s.beforeSend.call(s.context,xhr,s)===false){if(s.global&&jQuery.active--===1){jQuery.event.trigger("ajaxStop");}
xhr.abort();return false;}
if(s.global){jQuery.triggerGlobal(s,"ajaxSend",[xhr,s]);}
var onreadystatechange=xhr.onreadystatechange=function(isTimeout){if(!xhr||xhr.readyState===0||isTimeout==="abort"){if(!requestDone){jQuery.handleComplete(s,xhr,status,data);}
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(parserError){status="parsererror";errMsg=parserError;}}
if(status==="success"||status==="notmodified"){if(!jsonp){jQuery.handleSuccess(s,xhr,status,data);}}else{jQuery.handleError(s,xhr,status,errMsg);}
if(!jsonp){jQuery.handleComplete(s,xhr,status,data);}
if(isTimeout==="timeout"){xhr.abort();}
if(s.async){xhr=null;}}};try{var oldAbort=xhr.abort;xhr.abort=function(){if(xhr){Function.prototype.call.call(oldAbort,xhr);}
onreadystatechange("abort");};}catch(abortError){}
if(s.async&&s.timeout>0){setTimeout(function(){if(xhr&&!requestDone){onreadystatechange("timeout");}},s.timeout);}
try{xhr.send(noContent||s.data==null?null:s.data);}catch(sendError){jQuery.handleError(s,xhr,null,sendError);jQuery.handleComplete(s,xhr,status,data);}
if(!s.async){onreadystatechange();}
return xhr;},param:function(a,traditional){var s=[],add=function(key,value){value=jQuery.isFunction(value)?value():value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value);};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],traditional,add);}}
return s.join("&").replace(r20,"+");}});function buildParams(prefix,obj,traditional,add){if(jQuery.isArray(obj)&&obj.length){jQuery.each(obj,function(i,v){if(traditional||rbracket.test(prefix)){add(prefix,v);}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v,traditional,add);}});}else if(!traditional&&obj!=null&&typeof obj==="object"){if(jQuery.isEmptyObject(obj)){add(prefix,"");}else{jQuery.each(obj,function(k,v){buildParams(prefix+"["+k+"]",v,traditional,add);});}}else{add(prefix,obj);}}
jQuery.extend({active:0,lastModified:{},etag:{},handleError:function(s,xhr,status,e){if(s.error){s.error.call(s.context,xhr,status,e);}
if(s.global){jQuery.triggerGlobal(s,"ajaxError",[xhr,s,e]);}},handleSuccess:function(s,xhr,status,data){if(s.success){s.success.call(s.context,data,status,xhr);}
if(s.global){jQuery.triggerGlobal(s,"ajaxSuccess",[xhr,s]);}},handleComplete:function(s,xhr,status){if(s.complete){s.complete.call(s.context,xhr,status);}
if(s.global){jQuery.triggerGlobal(s,"ajaxComplete",[xhr,s]);}
if(s.global&&jQuery.active--===1){jQuery.event.trigger("ajaxStop");}},triggerGlobal:function(s,type,args){(s.context&&s.context.url==null?jQuery(s.context):jQuery.event).trigger(type,args);},httpSuccess:function(xhr){try{return!xhr.status&&location.protocol==="file:"||xhr.status>=200&&xhr.status<300||xhr.status===304||xhr.status===1223;}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;},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;}});if(window.ActiveXObject){jQuery.ajaxSettings.xhr=function(){if(window.location.protocol!=="file:"){try{return new window.XMLHttpRequest();}catch(xhrError){}}
try{return new window.ActiveXObject("Microsoft.XMLHTTP");}catch(activeError){}};}
jQuery.support.ajax=!!jQuery.ajaxSettings.xhr();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,easing,callback){var elem,display;if(speed||speed===0){return this.animate(genFx("show",3),speed,easing,callback);}else{for(var i=0,j=this.length;i<j;i++){elem=this[i];display=elem.style.display;if(!jQuery.data(elem,"olddisplay")&&display==="none"){display=elem.style.display="";}
if(display===""&&jQuery.css(elem,"display")==="none"){jQuery.data(elem,"olddisplay",defaultDisplay(elem.nodeName));}}
for(i=0;i<j;i++){elem=this[i];display=elem.style.display;if(display===""||display==="none"){elem.style.display=jQuery.data(elem,"olddisplay")||"";}}
return this;}},hide:function(speed,easing,callback){if(speed||speed===0){return this.animate(genFx("hide",3),speed,easing,callback);}else{for(var i=0,j=this.length;i<j;i++){var display=jQuery.css(this[i],"display");if(display!=="none"){jQuery.data(this[i],"olddisplay",display);}}
for(i=0;i<j;i++){this[i].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2,callback){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,callback);}
return this;},fadeTo:function(speed,to,easing,callback){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:to},speed,easing,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,isElement=this.nodeType===1,hidden=isElement&&jQuery(this).is(":hidden"),self=this;for(p in prop){var name=jQuery.camelCase(p);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(isElement&&(p==="height"||p==="width")){opt.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(jQuery.css(this,"display")==="inline"&&jQuery.css(this,"float")==="none"){if(!jQuery.support.inlineBlockNeedsLayout){this.style.display="inline-block";}else{var display=defaultDisplay(this.nodeName);if(display==="inline"){this.style.display="inline-block";}else{this.style.display="inline";this.style.zoom=1;}}}}
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()||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!=="px"){jQuery.style(self,name,(end||1)+unit);start=((end||1)/e.cur())*start;jQuery.style(self,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;}});function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(name,props){jQuery.fn[name]=function(speed,easing,callback){return this.animate(props,speed,easing,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&typeof speed==="object"?jQuery.extend({},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:opt.duration in jQuery.fx.speeds?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);},cur:function(){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));return r&&r>-10000?r:0;},custom:function(from,to,unit){var self=this,fx=jQuery.fx;this.startTime=jQuery.now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(fx.tick,fx.interval);}},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=jQuery.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.overflow!=null&&!jQuery.support.shrinkWrapBlocks){var elem=this.elem,options=this.options;jQuery.each(["","X","Y"],function(index,value){elem.style["overflow"+value]=options.overflow[index];});}
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();}},interval:13,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 defaultDisplay(nodeName){if(!elemdisplay[nodeName]){var elem=jQuery("<"+nodeName+">").appendTo("body"),display=elem.css("display");elem.remove();if(display==="none"||display===""){display="block";}
elemdisplay[nodeName]=display;}
return elemdisplay[nodeName];}
var rtable=/^t(?:able|d|h)$/i,rroot=/^(?:body|html)$/i;if("getBoundingClientRect"in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0],box;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);}
try{box=elem.getBoundingClientRect();}catch(e){}
var doc=elem.ownerDocument,docElem=doc.documentElement;if(!box||!jQuery.contains(docElem,elem)){return box||{top:0,left:0};}
var body=doc.body,win=getWindow(doc),clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,scrollTop=(win.pageYOffset||jQuery.support.boxModel&&docElem.scrollTop||body.scrollTop),scrollLeft=(win.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft),top=box.top+scrollTop-clientTop,left=box.left+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 computedStyle,offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,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&&rtable.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.css(body,"marginTop"))||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.css(body,"marginTop"))||0;left+=parseFloat(jQuery.css(body,"marginLeft"))||0;}
return{top:top,left:left};},setOffset:function(elem,options,i){var position=jQuery.css(elem,"position");if(position==="static"){elem.style.position="relative";}
var curElem=jQuery(elem),curOffset=curElem.offset(),curCSSTop=jQuery.css(elem,"top"),curCSSLeft=jQuery.css(elem,"left"),calculatePosition=(position==="absolute"&&jQuery.inArray('auto',[curCSSTop,curCSSLeft])>-1),props={},curPosition={},curTop,curLeft;if(calculatePosition){curPosition=curElem.position();}
curTop=calculatePosition?curPosition.top:parseInt(curCSSTop,10)||0;curLeft=calculatePosition?curPosition.left:parseInt(curCSSLeft,10)||0;if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset);}
if(options.top!=null){props.top=(options.top-curOffset.top)+curTop;}
if(options.left!=null){props.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=rroot.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();offset.top-=parseFloat(jQuery.css(elem,"marginTop"))||0;offset.left-=parseFloat(jQuery.css(elem,"marginLeft"))||0;parentOffset.top+=parseFloat(jQuery.css(offsetParent[0],"borderTopWidth"))||0;parentOffset.left+=parseFloat(jQuery.css(offsetParent[0],"borderLeftWidth"))||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&&(!rroot.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 jQuery.isWindow(elem)?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]?parseFloat(jQuery.css(this[0],type,"padding")):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?parseFloat(jQuery.css(this[0],type,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]()));});}
if(jQuery.isWindow(elem)){return elem.document.compatMode==="CSS1Compat"&&elem.document.documentElement["client"+name]||elem.document.body["client"+name];}else if(elem.nodeType===9){return Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]);}else if(size===undefined){var orig=jQuery.css(elem,type),ret=parseFloat(orig);return jQuery.isNaN(ret)?orig:ret;}else{return this.css(type,typeof size==="string"?size:size+"px");}};});})(window);jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.3",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,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}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(j,k){return this.each(function(){if(!k){if(!j||c.filter(j,[this]).length){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")})}}return i.call(c(this),j,k)})},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=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)}else{j=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"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return!!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return!(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return!this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;(function($){$.extend($.ui,{datepicker:{version:"1.7.3"}});var PROP_NAME="datepicker";function Datepicker(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._datepickerShowing=false;this._inDialog=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"],dateFormat:"mm/dd/yy",firstDay:0,isRTL:false};this._defaults={showOn:"focus",showAnim:"show",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,showMonthAfterYear:false,yearRange:"-10:+10",showOtherMonths:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"normal",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false};$.extend(this._defaults,this.regional[""]);this.dpDiv=$('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-helper-hidden-accessible"></div>')}$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",log:function(){if(this.debug){console.log.apply("",arguments)}},setDefaults:function(settings){extendRemove(this._defaults,settings||{});return this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase();var inline=(nodeName=="div"||nodeName=="span");if(!target.id){target.id="dp"+(++this.uuid)}var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{});if(nodeName=="input"){this._connectDatepicker(target,inst)}else{if(inline){this._inlineDatepicker(target,inst)}}},_newInst:function(target,inline){var id=target[0].id.replace(/([:\[\]\.])/g,"\\\\$1");return{id:id,input:target,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:inline,dpDiv:(!inline?this.dpDiv:$('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(target,inst){var input=$(target);inst.append=$([]);inst.trigger=$([]);if(input.hasClass(this.markerClassName)){return}var appendText=this._get(inst,"appendText");var isRTL=this._get(inst,"isRTL");if(appendText){inst.append=$('<span class="'+this._appendClass+'">'+appendText+"</span>");input[isRTL?"before":"after"](inst.append)}var showOn=this._get(inst,"showOn");if(showOn=="focus"||showOn=="both"){input.focus(this._showDatepicker)}if(showOn=="button"||showOn=="both"){var buttonText=this._get(inst,"buttonText");var buttonImage=this._get(inst,"buttonImage");inst.trigger=$(this._get(inst,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:buttonImage,alt:buttonText,title:buttonText}):$('<button type="button"></button>').addClass(this._triggerClass).html(buttonImage==""?buttonText:$("<img/>").attr({src:buttonImage,alt:buttonText,title:buttonText})));input[isRTL?"before":"after"](inst.trigger);inst.trigger.click(function(){if($.datepicker._datepickerShowing&&$.datepicker._lastInput==target){$.datepicker._hideDatepicker()}else{$.datepicker._showDatepicker(target)}return false})}input.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst)},_inlineDatepicker:function(target,inst){var divSpan=$(target);if(divSpan.hasClass(this.markerClassName)){return}divSpan.addClass(this.markerClassName).append(inst.dpDiv).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst);this._setDate(inst,this._getDefaultDate(inst));this._updateDatepicker(inst);this._updateAlternate(inst)},_dialogDatepicker:function(input,dateText,onSelect,settings,pos){var inst=this._dialogInst;if(!inst){var id="dp"+(++this.uuid);this._dialogInput=$('<input type="text" id="'+id+'" size="1" style="position: absolute; top: -100px;"/>');this._dialogInput.keydown(this._doKeyDown);$("body").append(this._dialogInput);inst=this._dialogInst=this._newInst(this._dialogInput,false);inst.settings={};$.data(this._dialogInput[0],PROP_NAME,inst)}extendRemove(inst.settings,settings||{});this._dialogInput.val(dateText);this._pos=(pos?(pos.length?pos:[pos.pageX,pos.pageY]):null);if(!this._pos){var browserWidth=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth;var browserHeight=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var scrollX=document.documentElement.scrollLeft||document.body.scrollLeft;var scrollY=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[(browserWidth/2)-100+scrollX,(browserHeight/2)-150+scrollY]}this._dialogInput.css("left",this._pos[0]+"px").css("top",this._pos[1]+"px");inst.settings.onSelect=onSelect;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);if($.blockUI){$.blockUI(this.dpDiv)}$.data(this._dialogInput[0],PROP_NAME,inst);return this},_destroyDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();$.removeData(target,PROP_NAME);if(nodeName=="input"){inst.append.remove();inst.trigger.remove();$target.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress)}else{if(nodeName=="div"||nodeName=="span"){$target.removeClass(this.markerClassName).empty()}}},_enableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=false;inst.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().removeClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)})},_disableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=true;inst.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().addClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)});this._disabledInputs[this._disabledInputs.length]=target},_isDisabledDatepicker:function(target){if(!target){return false}for(var i=0;i<this._disabledInputs.length;i++){if(this._disabledInputs[i]==target){return true}}return false},_getInst:function(target){try{return $.data(target,PROP_NAME)}catch(err){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(target,name,value){var inst=this._getInst(target);if(arguments.length==2&&typeof name=="string"){return(name=="defaults"?$.extend({},$.datepicker._defaults):(inst?(name=="all"?$.extend({},inst.settings):this._get(inst,name)):null))}var settings=name||{};if(typeof name=="string"){settings={};settings[name]=value}if(inst){if(this._curInst==inst){this._hideDatepicker(null)}var date=this._getDateDatepicker(target);extendRemove(inst.settings,settings);this._setDateDatepicker(target,date);this._updateDatepicker(inst)}},_changeDatepicker:function(target,name,value){this._optionDatepicker(target,name,value)},_refreshDatepicker:function(target){var inst=this._getInst(target);if(inst){this._updateDatepicker(inst)}},_setDateDatepicker:function(target,date,endDate){var inst=this._getInst(target);if(inst){this._setDate(inst,date,endDate);this._updateDatepicker(inst);this._updateAlternate(inst)}},_getDateDatepicker:function(target){var inst=this._getInst(target);if(inst&&!inst.inline){this._setDateFromField(inst)}return(inst?this._getDate(inst):null)},_doKeyDown:function(event){var inst=$.datepicker._getInst(event.target);var handled=true;var isRTL=inst.dpDiv.is(".ui-datepicker-rtl");inst._keyEvent=true;if($.datepicker._datepickerShowing){switch(event.keyCode){case 9:$.datepicker._hideDatepicker(null,"");break;case 13:var sel=$("td."+$.datepicker._dayOverClass+", td."+$.datepicker._currentClass,inst.dpDiv);if(sel[0]){$.datepicker._selectDay(event.target,inst.selectedMonth,inst.selectedYear,sel[0])}else{$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"))}return false;break;case 27:$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"));break;case 33:$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M");break;case 34:$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M");break;case 35:if(event.ctrlKey||event.metaKey){$.datepicker._clearDate(event.target)}handled=event.ctrlKey||event.metaKey;break;case 36:if(event.ctrlKey||event.metaKey){$.datepicker._gotoToday(event.target)}handled=event.ctrlKey||event.metaKey;break;case 37:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?+1:-1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M")}break;case 38:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,-7,"D")}handled=event.ctrlKey||event.metaKey;break;case 39:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?-1:+1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M")}break;case 40:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,+7,"D")}handled=event.ctrlKey||event.metaKey;break;default:handled=false}}else{if(event.keyCode==36&&event.ctrlKey){$.datepicker._showDatepicker(this)}else{handled=false}}if(handled){event.preventDefault();event.stopPropagation()}},_doKeyPress:function(event){var inst=$.datepicker._getInst(event.target);if($.datepicker._get(inst,"constrainInput")){var chars=$.datepicker._possibleChars($.datepicker._get(inst,"dateFormat"));var chr=String.fromCharCode(event.charCode==undefined?event.keyCode:event.charCode);return event.ctrlKey||(chr<" "||!chars||chars.indexOf(chr)>-1)}},_showDatepicker:function(input){input=input.target||input;if(input.nodeName.toLowerCase()!="input"){input=$("input",input.parentNode)[0]}if($.datepicker._isDisabledDatepicker(input)||$.datepicker._lastInput==input){return}var inst=$.datepicker._getInst(input);var beforeShow=$.datepicker._get(inst,"beforeShow");extendRemove(inst.settings,(beforeShow?beforeShow.apply(input,[input,inst]):{}));$.datepicker._hideDatepicker(null,"");$.datepicker._lastInput=input;$.datepicker._setDateFromField(inst);if($.datepicker._inDialog){input.value=""}if(!$.datepicker._pos){$.datepicker._pos=$.datepicker._findPos(input);$.datepicker._pos[1]+=input.offsetHeight}var isFixed=false;$(input).parents().each(function(){isFixed|=$(this).css("position")=="fixed";return!isFixed});if(isFixed&&$.browser.opera){$.datepicker._pos[0]-=document.documentElement.scrollLeft;$.datepicker._pos[1]-=document.documentElement.scrollTop}var offset={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null;inst.rangeStart=null;inst.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});$.datepicker._updateDatepicker(inst);offset=$.datepicker._checkOffset(inst,offset,isFixed);inst.dpDiv.css({position:($.datepicker._inDialog&&$.blockUI?"static":(isFixed?"fixed":"absolute")),display:"none",left:offset.left+"px",top:offset.top+"px"});if(!inst.inline){var showAnim=$.datepicker._get(inst,"showAnim")||"show";var duration=$.datepicker._get(inst,"duration");var postProcess=function(){$.datepicker._datepickerShowing=true;if($.browser.msie&&parseInt($.browser.version,10)<7){$("iframe.ui-datepicker-cover").css({width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4})}};if($.effects&&$.effects[showAnim]){inst.dpDiv.show(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[showAnim](duration,postProcess)}if(duration==""){postProcess()}if(inst.input[0].type!="hidden"){inst.input[0].focus()}$.datepicker._curInst=inst}},_updateDatepicker:function(inst){var dims={width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4};var self=this;inst.dpDiv.empty().append(this._generateHTML(inst)).find("iframe.ui-datepicker-cover").css({width:dims.width,height:dims.height}).end().find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){$(this).removeClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).removeClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).removeClass("ui-datepicker-next-hover")}}).bind("mouseover",function(){if(!self._isDisabledDatepicker(inst.inline?inst.dpDiv.parent()[0]:inst.input[0])){$(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");$(this).addClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).addClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).addClass("ui-datepicker-next-hover")}}}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end();var numMonths=this._getNumberOfMonths(inst);var cols=numMonths[1];var width=17;if(cols>1){inst.dpDiv.addClass("ui-datepicker-multi-"+cols).css("width",(width*cols)+"em")}else{inst.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("")}inst.dpDiv[(numMonths[0]!=1||numMonths[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");inst.dpDiv[(this._get(inst,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");if(inst.input&&inst.input[0].type!="hidden"&&inst==$.datepicker._curInst){$(inst.input[0]).focus()}},_checkOffset:function(inst,offset,isFixed){var dpWidth=inst.dpDiv.outerWidth();var dpHeight=inst.dpDiv.outerHeight();var inputWidth=inst.input?inst.input.outerWidth():0;var inputHeight=inst.input?inst.input.outerHeight():0;var viewWidth=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)+$(document).scrollLeft();var viewHeight=(window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight)+$(document).scrollTop();offset.left-=(this._get(inst,"isRTL")?(dpWidth-inputWidth):0);offset.left-=(isFixed&&offset.left==inst.input.offset().left)?$(document).scrollLeft():0;offset.top-=(isFixed&&offset.top==(inst.input.offset().top+inputHeight))?$(document).scrollTop():0;offset.left-=(offset.left+dpWidth>viewWidth&&viewWidth>dpWidth)?Math.abs(offset.left+dpWidth-viewWidth):0;offset.top-=(offset.top+dpHeight>viewHeight&&viewHeight>dpHeight)?Math.abs(offset.top+dpHeight+inputHeight*2-viewHeight):0;return offset},_findPos:function(obj){while(obj&&(obj.type=="hidden"||obj.nodeType!=1)){obj=obj.nextSibling}var position=$(obj).offset();return[position.left,position.top]},_hideDatepicker:function(input,duration){var inst=this._curInst;if(!inst||(input&&inst!=$.data(input,PROP_NAME))){return}if(inst.stayOpen){this._selectDate("#"+inst.id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear))}inst.stayOpen=false;if(this._datepickerShowing){duration=(duration!=null?duration:this._get(inst,"duration"));var showAnim=this._get(inst,"showAnim");var postProcess=function(){$.datepicker._tidyDialog(inst)};if(duration!=""&&$.effects&&$.effects[showAnim]){inst.dpDiv.hide(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[(duration==""?"hide":(showAnim=="slideDown"?"slideUp":(showAnim=="fadeIn"?"fadeOut":"hide")))](duration,postProcess)}if(duration==""){this._tidyDialog(inst)}var onClose=this._get(inst,"onClose");if(onClose){onClose.apply((inst.input?inst.input[0]:null),[(inst.input?inst.input.val():""),inst])}this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if($.blockUI){$.unblockUI();$("body").append(this.dpDiv)}}this._inDialog=false}this._curInst=null},_tidyDialog:function(inst){inst.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(event){if(!$.datepicker._curInst){return}var $target=$(event.target);if(($target.parents("#"+$.datepicker._mainDivId).length==0)&&!$target.hasClass($.datepicker.markerClassName)&&!$target.hasClass($.datepicker._triggerClass)&&$.datepicker._datepickerShowing&&!($.datepicker._inDialog&&$.blockUI)){$.datepicker._hideDatepicker(null,"")}},_adjustDate:function(id,offset,period){var target=$(id);var inst=this._getInst(target[0]);if(this._isDisabledDatepicker(target[0])){return}this._adjustInstDate(inst,offset+(period=="M"?this._get(inst,"showCurrentAtPos"):0),period);this._updateDatepicker(inst)},_gotoToday:function(id){var target=$(id);var inst=this._getInst(target[0]);if(this._get(inst,"gotoCurrent")&&inst.currentDay){inst.selectedDay=inst.currentDay;inst.drawMonth=inst.selectedMonth=inst.currentMonth;inst.drawYear=inst.selectedYear=inst.currentYear}else{var date=new Date();inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear()}this._notifyChange(inst);this._adjustDate(target)},_selectMonthYear:function(id,select,period){var target=$(id);var inst=this._getInst(target[0]);inst._selectingMonthYear=false;inst["selected"+(period=="M"?"Month":"Year")]=inst["draw"+(period=="M"?"Month":"Year")]=parseInt(select.options[select.selectedIndex].value,10);this._notifyChange(inst);this._adjustDate(target)},_clickMonthYear:function(id){var target=$(id);var inst=this._getInst(target[0]);if(inst.input&&inst._selectingMonthYear&&!$.browser.msie){inst.input[0].focus()}inst._selectingMonthYear=!inst._selectingMonthYear},_selectDay:function(id,month,year,td){var target=$(id);if($(td).hasClass(this._unselectableClass)||this._isDisabledDatepicker(target[0])){return}var inst=this._getInst(target[0]);inst.selectedDay=inst.currentDay=$("a",td).html();inst.selectedMonth=inst.currentMonth=month;inst.selectedYear=inst.currentYear=year;if(inst.stayOpen){inst.endDay=inst.endMonth=inst.endYear=null}this._selectDate(id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear));if(inst.stayOpen){inst.rangeStart=this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay));this._updateDatepicker(inst)}},_clearDate:function(id){var target=$(id);var inst=this._getInst(target[0]);inst.stayOpen=false;inst.endDay=inst.endMonth=inst.endYear=inst.rangeStart=null;this._selectDate(target,"")},_selectDate:function(id,dateStr){var target=$(id);var inst=this._getInst(target[0]);dateStr=(dateStr!=null?dateStr:this._formatDate(inst));if(inst.input){inst.input.val(dateStr)}this._updateAlternate(inst);var onSelect=this._get(inst,"onSelect");if(onSelect){onSelect.apply((inst.input?inst.input[0]:null),[dateStr,inst])}else{if(inst.input){inst.input.trigger("change")}}if(inst.inline){this._updateDatepicker(inst)}else{if(!inst.stayOpen){this._hideDatepicker(null,this._get(inst,"duration"));this._lastInput=inst.input[0];if(typeof(inst.input[0])!="object"){inst.input[0].focus()}this._lastInput=null}}},_updateAlternate:function(inst){var altField=this._get(inst,"altField");if(altField){var altFormat=this._get(inst,"altFormat")||this._get(inst,"dateFormat");var date=this._getDate(inst);dateStr=this.formatDate(altFormat,date,this._getFormatConfig(inst));$(altField).each(function(){$(this).val(dateStr)})}},noWeekends:function(date){var day=date.getDay();return[(day>0&&day<6),""]},iso8601Week:function(date){var checkDate=new Date(date.getFullYear(),date.getMonth(),date.getDate());var firstMon=new Date(checkDate.getFullYear(),1-1,4);var firstDay=firstMon.getDay()||7;firstMon.setDate(firstMon.getDate()+1-firstDay);if(firstDay<4&&checkDate<firstMon){checkDate.setDate(checkDate.getDate()-3);return $.datepicker.iso8601Week(checkDate)}else{if(checkDate>new Date(checkDate.getFullYear(),12-1,28)){firstDay=new Date(checkDate.getFullYear()+1,1-1,4).getDay()||7;if(firstDay>4&&(checkDate.getDay()||7)<firstDay-3){return 1}}}return Math.floor(((checkDate-firstMon)/86400000)/7)+1},parseDate:function(format,value,settings){if(format==null||value==null){throw"Invalid arguments"}value=(typeof value=="object"?value.toString():value+"");if(value==""){return null}var shortYearCutoff=(settings?settings.shortYearCutoff:null)||this._defaults.shortYearCutoff;var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var year=-1;var month=-1;var day=-1;var doy=-1;var literal=false;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var getNumber=function(match){lookAhead(match);var origSize=(match=="@"?14:(match=="y"?4:(match=="o"?3:2)));var size=origSize;var num=0;while(size>0&&iValue<value.length&&value.charAt(iValue)>="0"&&value.charAt(iValue)<="9"){num=num*10+parseInt(value.charAt(iValue++),10);size--}if(size==origSize){throw"Missing number at position "+iValue}return num};var getName=function(match,shortNames,longNames){var names=(lookAhead(match)?longNames:shortNames);var size=0;for(var j=0;j<names.length;j++){size=Math.max(size,names[j].length)}var name="";var iInit=iValue;while(size>0&&iValue<value.length){name+=value.charAt(iValue++);for(var i=0;i<names.length;i++){if(name==names[i]){return i+1}}size--}throw"Unknown name at position "+iInit};var checkLiteral=function(){if(value.charAt(iValue)!=format.charAt(iFormat)){throw"Unexpected literal at position "+iValue}iValue++};var iValue=0;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{checkLiteral()}}else{switch(format.charAt(iFormat)){case"d":day=getNumber("d");break;case"D":getName("D",dayNamesShort,dayNames);break;case"o":doy=getNumber("o");break;case"m":month=getNumber("m");break;case"M":month=getName("M",monthNamesShort,monthNames);break;case"y":year=getNumber("y");break;case"@":var date=new Date(getNumber("@"));year=date.getFullYear();month=date.getMonth()+1;day=date.getDate();break;case"'":if(lookAhead("'")){checkLiteral()}else{literal=true}break;default:checkLiteral()}}}if(year==-1){year=new Date().getFullYear()}else{if(year<100){year+=new Date().getFullYear()-new Date().getFullYear()%100+(year<=shortYearCutoff?0:-100)}}if(doy>-1){month=1;day=doy;do{var dim=this._getDaysInMonth(year,month-1);if(day<=dim){break}month++;day-=dim}while(true)}var date=this._daylightSavingAdjust(new Date(year,month-1,day));if(date.getFullYear()!=year||date.getMonth()+1!=month||date.getDate()!=day){throw"Invalid date"}return date},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",TIMESTAMP:"@",W3C:"yy-mm-dd",formatDate:function(format,date,settings){if(!date){return""}var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var formatNumber=function(match,value,len){var num=""+value;if(lookAhead(match)){while(num.length<len){num="0"+num}}return num};var formatName=function(match,value,shortNames,longNames){return(lookAhead(match)?longNames[value]:shortNames[value])};var output="";var literal=false;if(date){for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{output+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":output+=formatNumber("d",date.getDate(),2);break;case"D":output+=formatName("D",date.getDay(),dayNamesShort,dayNames);break;case"o":var doy=date.getDate();for(var m=date.getMonth()-1;m>=0;m--){doy+=this._getDaysInMonth(date.getFullYear(),m)}output+=formatNumber("o",doy,3);break;case"m":output+=formatNumber("m",date.getMonth()+1,2);break;case"M":output+=formatName("M",date.getMonth(),monthNamesShort,monthNames);break;case"y":output+=(lookAhead("y")?date.getFullYear():(date.getYear()%100<10?"0":"")+date.getYear()%100);break;case"@":output+=date.getTime();break;case"'":if(lookAhead("'")){output+="'"}else{literal=true}break;default:output+=format.charAt(iFormat)}}}}return output},_possibleChars:function(format){var chars="";var literal=false;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{chars+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":case"m":case"y":case"@":chars+="0123456789";break;case"D":case"M":return null;case"'":if(lookAhead("'")){chars+="'"}else{literal=true}break;default:chars+=format.charAt(iFormat)}}}return chars},_get:function(inst,name){return inst.settings[name]!==undefined?inst.settings[name]:this._defaults[name]},_setDateFromField:function(inst){var dateFormat=this._get(inst,"dateFormat");var dates=inst.input?inst.input.val():null;inst.endDay=inst.endMonth=inst.endYear=null;var date=defaultDate=this._getDefaultDate(inst);var settings=this._getFormatConfig(inst);try{date=this.parseDate(dateFormat,dates,settings)||defaultDate}catch(event){this.log(event);date=defaultDate}inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();inst.currentDay=(dates?date.getDate():0);inst.currentMonth=(dates?date.getMonth():0);inst.currentYear=(dates?date.getFullYear():0);this._adjustInstDate(inst)},_getDefaultDate:function(inst){var date=this._determineDate(this._get(inst,"defaultDate"),new Date());var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);return date},_determineDate:function(date,defaultDate){var offsetNumeric=function(offset){var date=new Date();date.setDate(date.getDate()+offset);return date};var offsetString=function(offset,getDaysInMonth){var date=new Date();var year=date.getFullYear();var month=date.getMonth();var day=date.getDate();var pattern=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g;var matches=pattern.exec(offset);while(matches){switch(matches[2]||"d"){case"d":case"D":day+=parseInt(matches[1],10);break;case"w":case"W":day+=parseInt(matches[1],10)*7;break;case"m":case"M":month+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break;case"y":case"Y":year+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break}matches=pattern.exec(offset)}return new Date(year,month,day)};date=(date==null?defaultDate:(typeof date=="string"?offsetString(date,this._getDaysInMonth):(typeof date=="number"?(isNaN(date)?defaultDate:offsetNumeric(date)):date)));date=(date&&date.toString()=="Invalid Date"?defaultDate:date);if(date){date.setHours(0);date.setMinutes(0);date.setSeconds(0);date.setMilliseconds(0)}return this._daylightSavingAdjust(date)},_daylightSavingAdjust:function(date){if(!date){return null}date.setHours(date.getHours()>12?date.getHours()+2:0);return date},_setDate:function(inst,date,endDate){var clear=!(date);var origMonth=inst.selectedMonth;var origYear=inst.selectedYear;date=this._determineDate(date,new Date());inst.selectedDay=inst.currentDay=date.getDate();inst.drawMonth=inst.selectedMonth=inst.currentMonth=date.getMonth();inst.drawYear=inst.selectedYear=inst.currentYear=date.getFullYear();if(origMonth!=inst.selectedMonth||origYear!=inst.selectedYear){this._notifyChange(inst)}this._adjustInstDate(inst);if(inst.input){inst.input.val(clear?"":this._formatDate(inst))}},_getDate:function(inst){var startDate=(!inst.currentYear||(inst.input&&inst.input.val()=="")?null:this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return startDate},_generateHTML:function(inst){var today=new Date();today=this._daylightSavingAdjust(new Date(today.getFullYear(),today.getMonth(),today.getDate()));var isRTL=this._get(inst,"isRTL");var showButtonPanel=this._get(inst,"showButtonPanel");var hideIfNoPrevNext=this._get(inst,"hideIfNoPrevNext");var navigationAsDateFormat=this._get(inst,"navigationAsDateFormat");var numMonths=this._getNumberOfMonths(inst);var showCurrentAtPos=this._get(inst,"showCurrentAtPos");var stepMonths=this._get(inst,"stepMonths");var stepBigMonths=this._get(inst,"stepBigMonths");var isMultiMonth=(numMonths[0]!=1||numMonths[1]!=1);var currentDate=this._daylightSavingAdjust((!inst.currentDay?new Date(9999,9,9):new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");var drawMonth=inst.drawMonth-showCurrentAtPos;var drawYear=inst.drawYear;if(drawMonth<0){drawMonth+=12;drawYear--}if(maxDate){var maxDraw=this._daylightSavingAdjust(new Date(maxDate.getFullYear(),maxDate.getMonth()-numMonths[1]+1,maxDate.getDate()));maxDraw=(minDate&&maxDraw<minDate?minDate:maxDraw);while(this._daylightSavingAdjust(new Date(drawYear,drawMonth,1))>maxDraw){drawMonth--;if(drawMonth<0){drawMonth=11;drawYear--}}}inst.drawMonth=drawMonth;inst.drawYear=drawYear;var prevText=this._get(inst,"prevText");prevText=(!navigationAsDateFormat?prevText:this.formatDate(prevText,this._daylightSavingAdjust(new Date(drawYear,drawMonth-stepMonths,1)),this._getFormatConfig(inst)));var prev=(this._canAdjustMonth(inst,-1,drawYear,drawMonth)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', -"+stepMonths+", 'M');\" title=\""+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>"));var nextText=this._get(inst,"nextText");nextText=(!navigationAsDateFormat?nextText:this.formatDate(nextText,this._daylightSavingAdjust(new Date(drawYear,drawMonth+stepMonths,1)),this._getFormatConfig(inst)));var next=(this._canAdjustMonth(inst,+1,drawYear,drawMonth)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', +"+stepMonths+", 'M');\" title=\""+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>"));var currentText=this._get(inst,"currentText");var gotoDate=(this._get(inst,"gotoCurrent")&&inst.currentDay?currentDate:today);currentText=(!navigationAsDateFormat?currentText:this.formatDate(currentText,gotoDate,this._getFormatConfig(inst)));var controls=(!inst.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery.datepicker._hideDatepicker();">'+this._get(inst,"closeText")+"</button>":"");var buttonPanel=(showButtonPanel)?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(isRTL?controls:"")+(this._isInRange(inst,gotoDate)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery.datepicker._gotoToday(\'#'+inst.id+"');\">"+currentText+"</button>":"")+(isRTL?"":controls)+"</div>":"";var firstDay=parseInt(this._get(inst,"firstDay"),10);firstDay=(isNaN(firstDay)?0:firstDay);var dayNames=this._get(inst,"dayNames");var dayNamesShort=this._get(inst,"dayNamesShort");var dayNamesMin=this._get(inst,"dayNamesMin");var monthNames=this._get(inst,"monthNames");var monthNamesShort=this._get(inst,"monthNamesShort");var beforeShowDay=this._get(inst,"beforeShowDay");var showOtherMonths=this._get(inst,"showOtherMonths");var calculateWeek=this._get(inst,"calculateWeek")||this.iso8601Week;var endDate=inst.endDay?this._daylightSavingAdjust(new Date(inst.endYear,inst.endMonth,inst.endDay)):currentDate;var defaultDate=this._getDefaultDate(inst);var html="";for(var row=0;row<numMonths[0];row++){var group="";for(var col=0;col<numMonths[1];col++){var selectedDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,inst.selectedDay));var cornerClass=" ui-corner-all";var calender="";if(isMultiMonth){calender+='<div class="ui-datepicker-group ui-datepicker-group-';switch(col){case 0:calender+="first";cornerClass=" ui-corner-"+(isRTL?"right":"left");break;case numMonths[1]-1:calender+="last";cornerClass=" ui-corner-"+(isRTL?"left":"right");break;default:calender+="middle";cornerClass="";break}calender+='">'}calender+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+cornerClass+'">'+(/all|left/.test(cornerClass)&&row==0?(isRTL?next:prev):"")+(/all|right/.test(cornerClass)&&row==0?(isRTL?prev:next):"")+this._generateMonthYearHeader(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,row>0||col>0,monthNames,monthNamesShort)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var thead="";for(var dow=0;dow<7;dow++){var day=(dow+firstDay)%7;thead+="<th"+((dow+firstDay+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+dayNames[day]+'">'+dayNamesMin[day]+"</span></th>"}calender+=thead+"</tr></thead><tbody>";var daysInMonth=this._getDaysInMonth(drawYear,drawMonth);if(drawYear==inst.selectedYear&&drawMonth==inst.selectedMonth){inst.selectedDay=Math.min(inst.selectedDay,daysInMonth)}var leadDays=(this._getFirstDayOfMonth(drawYear,drawMonth)-firstDay+7)%7;var numRows=(isMultiMonth?6:Math.ceil((leadDays+daysInMonth)/7));var printDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,1-leadDays));for(var dRow=0;dRow<numRows;dRow++){calender+="<tr>";var tbody="";for(var dow=0;dow<7;dow++){var daySettings=(beforeShowDay?beforeShowDay.apply((inst.input?inst.input[0]:null),[printDate]):[true,""]);var otherMonth=(printDate.getMonth()!=drawMonth);var unselectable=otherMonth||!daySettings[0]||(minDate&&printDate<minDate)||(maxDate&&printDate>maxDate);tbody+='<td class="'+((dow+firstDay+6)%7>=5?" ui-datepicker-week-end":"")+(otherMonth?" ui-datepicker-other-month":"")+((printDate.getTime()==selectedDate.getTime()&&drawMonth==inst.selectedMonth&&inst._keyEvent)||(defaultDate.getTime()==printDate.getTime()&&defaultDate.getTime()==selectedDate.getTime())?" "+this._dayOverClass:"")+(unselectable?" "+this._unselectableClass+" ui-state-disabled":"")+(otherMonth&&!showOtherMonths?"":" "+daySettings[1]+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" "+this._currentClass:"")+(printDate.getTime()==today.getTime()?" ui-datepicker-today":""))+'"'+((!otherMonth||showOtherMonths)&&daySettings[2]?' title="'+daySettings[2]+'"':"")+(unselectable?"":" onclick=\"DP_jQuery.datepicker._selectDay('#"+inst.id+"',"+drawMonth+","+drawYear+', this);return false;"')+">"+(otherMonth?(showOtherMonths?printDate.getDate():"&#xa0;"):(unselectable?'<span class="ui-state-default">'+printDate.getDate()+"</span>":'<a class="ui-state-default'+(printDate.getTime()==today.getTime()?" ui-state-highlight":"")+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" ui-state-active":"")+'" href="#">'+printDate.getDate()+"</a>"))+"</td>";printDate.setDate(printDate.getDate()+1);printDate=this._daylightSavingAdjust(printDate)}calender+=tbody+"</tr>"}drawMonth++;if(drawMonth>11){drawMonth=0;drawYear++}calender+="</tbody></table>"+(isMultiMonth?"</div>"+((numMonths[0]>0&&col==numMonths[1]-1)?'<div class="ui-datepicker-row-break"></div>':""):"");group+=calender}html+=group}html+=buttonPanel+($.browser.msie&&parseInt($.browser.version,10)<7&&!inst.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':"");inst._keyEvent=false;return html},_generateMonthYearHeader:function(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,secondary,monthNames,monthNamesShort){minDate=(inst.rangeStart&&minDate&&selectedDate<minDate?selectedDate:minDate);var changeMonth=this._get(inst,"changeMonth");var changeYear=this._get(inst,"changeYear");var showMonthAfterYear=this._get(inst,"showMonthAfterYear");var html='<div class="ui-datepicker-title">';var monthHtml="";if(secondary||!changeMonth){monthHtml+='<span class="ui-datepicker-month">'+monthNames[drawMonth]+"</span> "}else{var inMinYear=(minDate&&minDate.getFullYear()==drawYear);var inMaxYear=(maxDate&&maxDate.getFullYear()==drawYear);monthHtml+='<select class="ui-datepicker-month" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'M');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(var month=0;month<12;month++){if((!inMinYear||month>=minDate.getMonth())&&(!inMaxYear||month<=maxDate.getMonth())){monthHtml+='<option value="'+month+'"'+(month==drawMonth?' selected="selected"':"")+">"+monthNamesShort[month]+"</option>"}}monthHtml+="</select>"}if(!showMonthAfterYear){html+=monthHtml+((secondary||changeMonth||changeYear)&&(!(changeMonth&&changeYear))?"&#xa0;":"")}if(secondary||!changeYear){html+='<span class="ui-datepicker-year">'+drawYear+"</span>"}else{var years=this._get(inst,"yearRange").split(":");var year=0;var endYear=0;if(years.length!=2){year=drawYear-10;endYear=drawYear+10}else{if(years[0].charAt(0)=="+"||years[0].charAt(0)=="-"){year=drawYear+parseInt(years[0],10);endYear=drawYear+parseInt(years[1],10)}else{year=parseInt(years[0],10);endYear=parseInt(years[1],10)}}year=(minDate?Math.max(year,minDate.getFullYear()):year);endYear=(maxDate?Math.min(endYear,maxDate.getFullYear()):endYear);html+='<select class="ui-datepicker-year" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'Y');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(;year<=endYear;year++){html+='<option value="'+year+'"'+(year==drawYear?' selected="selected"':"")+">"+year+"</option>"}html+="</select>"}if(showMonthAfterYear){html+=(secondary||changeMonth||changeYear?"&#xa0;":"")+monthHtml}html+="</div>";return html},_adjustInstDate:function(inst,offset,period){var year=inst.drawYear+(period=="Y"?offset:0);var month=inst.drawMonth+(period=="M"?offset:0);var day=Math.min(inst.selectedDay,this._getDaysInMonth(year,month))+(period=="D"?offset:0);var date=this._daylightSavingAdjust(new Date(year,month,day));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();if(period=="M"||period=="Y"){this._notifyChange(inst)}},_notifyChange:function(inst){var onChange=this._get(inst,"onChangeMonthYear");if(onChange){onChange.apply((inst.input?inst.input[0]:null),[inst.selectedYear,inst.selectedMonth+1,inst])}},_getNumberOfMonths:function(inst){var numMonths=this._get(inst,"numberOfMonths");return(numMonths==null?[1,1]:(typeof numMonths=="number"?[1,numMonths]:numMonths))},_getMinMaxDate:function(inst,minMax,checkRange){var date=this._determineDate(this._get(inst,minMax+"Date"),null);return(!checkRange||!inst.rangeStart?date:(!date||inst.rangeStart>date?inst.rangeStart:date))},_getDaysInMonth:function(year,month){return 32-new Date(year,month,32).getDate()},_getFirstDayOfMonth:function(year,month){return new Date(year,month,1).getDay()},_canAdjustMonth:function(inst,offset,curYear,curMonth){var numMonths=this._getNumberOfMonths(inst);var date=this._daylightSavingAdjust(new Date(curYear,curMonth+(offset<0?offset:numMonths[1]),1));if(offset<0){date.setDate(this._getDaysInMonth(date.getFullYear(),date.getMonth()))}return this._isInRange(inst,date)},_isInRange:function(inst,date){var newMinDate=(!inst.rangeStart?null:this._daylightSavingAdjust(new Date(inst.selectedYear,inst.selectedMonth,inst.selectedDay)));newMinDate=(newMinDate&&inst.rangeStart<newMinDate?inst.rangeStart:newMinDate);var minDate=newMinDate||this._getMinMaxDate(inst,"min");var maxDate=this._getMinMaxDate(inst,"max");return((!minDate||date>=minDate)&&(!maxDate||date<=maxDate))},_getFormatConfig:function(inst){var shortYearCutoff=this._get(inst,"shortYearCutoff");shortYearCutoff=(typeof shortYearCutoff!="string"?shortYearCutoff:new Date().getFullYear()%100+parseInt(shortYearCutoff,10));return{shortYearCutoff:shortYearCutoff,dayNamesShort:this._get(inst,"dayNamesShort"),dayNames:this._get(inst,"dayNames"),monthNamesShort:this._get(inst,"monthNamesShort"),monthNames:this._get(inst,"monthNames")}},_formatDate:function(inst,day,month,year){if(!day){inst.currentDay=inst.selectedDay;inst.currentMonth=inst.selectedMonth;inst.currentYear=inst.selectedYear}var date=(day?(typeof day=="object"?day:this._daylightSavingAdjust(new Date(year,month,day))):this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return this.formatDate(this._get(inst,"dateFormat"),date,this._getFormatConfig(inst))}});function extendRemove(target,props){$.extend(target,props);for(var name in props){if(props[name]==null||props[name]==undefined){target[name]=props[name]}}return target}function isArray(a){return(a&&(($.browser.safari&&typeof a=="object"&&a.length)||(a.constructor&&a.constructor.toString().match(/\Array\(\)/))))}$.fn.datepicker=function(options){if(!$.datepicker.initialized){$(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv);$.datepicker.initialized=true}var otherArgs=Array.prototype.slice.call(arguments,1);if(typeof options=="string"&&(options=="isDisabled"||options=="getDate")){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}if(options=="option"&&arguments.length==2&&typeof arguments[1]=="string"){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}return this.each(function(){typeof options=="string"?$.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this].concat(otherArgs)):$.datepicker._attachDatepicker(this,options)})};$.datepicker=new Datepicker();$.datepicker.initialized=false;$.datepicker.uuid=new Date().getTime();$.datepicker.version="1.7.3";window.DP_jQuery=$})(jQuery);;var Esc_Date={initDate:function(date_start)
{date_start.datepicker({dateFormat:'dd/mm/yy'});}};;(function($){var ver='2.94';if($.support==undefined){$.support={opacity:!($.browser.msie)};}
function debug(s){if($.fn.cycle.debug)
log(s);}
function log(){if(window.console&&window.console.log)
window.console.log('[cycle] '+Array.prototype.join.call(arguments,' '));};$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!='stop'){if(!$.isReady&&o.s){log('DOM not ready, queuing slideshow');$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}
log('terminating; zero elements found by selector'+($.isReady?'':' (DOM not ready)'));return this;}
return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false)
return;opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout)
clearTimeout(this.cycleTimeout);this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log('terminating; too few slides: '+els.length);return;}
var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false)
return;var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.backwards);if(startTime){startTime+=(opts2.delay||0);if(startTime<10)
startTime=10;debug('first timeout: '+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts.backwards)},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined)
cont.cycleStop=0;if(options===undefined||options===null)
options={};if(options.constructor==String){switch(options){case'destroy':case'stop':var opts=$(cont).data('cycle.opts');if(!opts)
return false;cont.cycleStop++;if(cont.cycleTimeout)
clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;$(cont).removeData('cycle.opts');if(options=='destroy')
destroy(opts);return false;case'toggle':cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case'pause':cont.cyclePause=1;return false;case'resume':cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case'prev':case'next':var opts=$(cont).data('cycle.opts');if(!opts){log('options not found, "prev/next" ignored');return false;}
$.fn.cycle[options](opts);return false;default:options={fx:options};};return options;}
else if(options.constructor==Number){var num=options;options=$(cont).data('cycle.opts');if(!options){log('options not found, can not advance slide');return false;}
if(num<0||num>=options.elements.length){log('invalid slide index: '+num);return false;}
options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}
if(typeof arg2=='string')
options.oneTimeFx=arg2;go(options.elements,options,1,num>=options.currSlide);return false;}
return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data('cycle.opts');if(!options){log('options not found, can not resume');return false;}
if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}
go(options.elements,options,1,!options.backwards);}}};function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute('filter');}
catch(smother){}}};function destroy(opts){if(opts.next)
$(opts.next).unbind(opts.prevNextEvent);if(opts.prev)
$(opts.prev).unbind(opts.prevNextEvent);if(opts.pager||opts.pagerAnchorBuilder)
$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});opts.pagerAnchors=null;if(opts.destroy)
opts.destroy(opts);};function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop)
opts.countdown=opts.autostopCount||els.length;var cont=$cont[0];$cont.data('cycle.opts',opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype)
opts.after.push(function(){removeFilter(this,opts);});if(opts.continuous)
opts.after.push(function(){go(els,opts,0,!opts.backwards);});saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg)
clearTypeFix($slides);if($cont.css('position')=='static')
$cont.css('position','relative');if(opts.width)
$cont.width(opts.width);if(opts.height&&opts.height!='auto')
$cont.height(opts.height);if(opts.startingSlide)
opts.startingSlide=parseInt(opts.startingSlide);else if(opts.backwards)
opts.startingSlide=els.length-1;if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++)
opts.randomMap.push(i);opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}
else if(opts.startingSlide>=els.length)
opts.startingSlide=0;opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:'absolute',top:0,left:0}).hide().each(function(i){var z;if(opts.backwards)
z=first?i<=first?els.length+(i-first):first-i:els.length-i;else
z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css('z-index',z)});$(els[first]).css('opacity',1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width)
$slides.width(opts.width);if(opts.fit&&opts.height&&opts.height!='auto')
$slides.height(opts.height);var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w)w=e.offsetWidth||e.width||$e.attr('width')
if(!h)h=e.offsetHeight||e.height||$e.attr('height');maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}
if(maxw>0&&maxh>0)
$cont.css({width:maxw+'px',height:maxh+'px'});}
if(opts.pause)
$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});if(supportMultiTransitions(opts)===false)
return false;var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr('height')||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr('width')||0);if($el.is('img')){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts,' - img slide not loaded, requeuing slideshow: ',this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options)},opts.requeueTimeout);requeue=true;return false;}
else{log('could not determine size of image: '+this.src,this.cycleW,this.cycleH);}}}
return true;});if(requeue)
return false;opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(':eq('+first+')').css(opts.cssBefore);if(opts.cssFirst)
$($slides[first]).css(opts.cssFirst);if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String)
opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);if(!opts.sync)
opts.speed=opts.speed/2;var buffer=opts.fx=='shuffle'?500:250;while((opts.timeout-opts.speed)<buffer)
opts.timeout+=opts.speed;}
if(opts.easing)
opts.easeIn=opts.easeOut=opts.easing;if(!opts.speedIn)
opts.speedIn=opts.speed;if(!opts.speedOut)
opts.speedOut=opts.speed;opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length)
opts.randomIndex=0;opts.nextSlide=opts.randomMap[opts.randomIndex];}
else if(opts.backwards)
opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;else
opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init))
init($cont,$slides,opts);else if(opts.fx!='custom'&&!opts.multiFx){log('unknown transition: '+opts.fx,'; slideshow terminating');return false;}}
var e0=$slides[first];if(opts.before.length)
opts.before[0].apply(e0,[e0,e0,opts,true]);if(opts.after.length>1)
opts.after[1].apply(e0,[e0,e0,opts,true]);if(opts.next)
$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1)});if(opts.prev)
$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0)});if(opts.pager||opts.pagerAnchorBuilder)
buildPager(els,opts);exposeAddSlide(opts,els);return opts;};function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});};function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(',')>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,'').split(',');for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log('discarding unknown transition: ',fx);opts.fxs.splice(i,1);i--;}}
if(!opts.fxs.length){log('No valid transitions named; slideshow terminating.');return false;}}
else if(opts.fx=='all'){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx))
opts.fxs.push(p);}}
if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}
debug('randomized fx sequence: ',opts.fxs);}
return true;};function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount)
opts.countdown++;els[prepend?'unshift':'push'](s);if(opts.els)
opts.els[prepend?'unshift':'push'](s);opts.slideCount=els.length;$s.css('position','absolute');$s[prepend?'prependTo':'appendTo'](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}
if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg)
clearTypeFix($s);if(opts.fit&&opts.width)
$s.width(opts.width);if(opts.fit&&opts.height&&opts.height!='auto')
$s.height(opts.height);s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder)
$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);if($.isFunction(opts.onAddSlide))
opts.onAddSlide($s);else
$s.hide();};}
$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init))
init(opts.$cont,$(opts.elements),opts);};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug('manualTrump in go(), stopping active transition');$(els).stop(true,true);opts.busy=false;}
if(opts.busy){debug('transition active, ignoring new tx request');return;}
var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual)
return;if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end)
opts.end(opts);return;}
var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length)
opts.lastFx=0;fx=opts.fxs[opts.lastFx];opts.currFx=fx;}
if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}
$.fn.cycle.resetState(opts,fx);if(opts.before.length)
$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount)return;o.apply(next,[curr,next,opts,fwd]);});var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount)return;o.apply(next,[curr,next,opts,fwd]);});};debug('tx firing; currSlide: '+opts.currSlide+'; nextSlide: '+opts.nextSlide);opts.busy=1;if(opts.fxFn)
opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);else if($.isFunction($.fn.cycle[opts.fx]))
$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);else
$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}
if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length)
opts.randomIndex=0;opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide)
opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}
else if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}
else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}
else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}
else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}
if(changed&&opts.pager)
opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);var ms=0;if(opts.timeout&&!opts.continuous)
ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);else if(opts.continuous&&p.cyclePause)
ms=10;if(ms>0)
p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.backwards)},ms);};$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250)
t+=opts.speed;debug('calculated timeout: '+t+'; speed: '+opts.speed);if(t!==false)
return t;}
return opts.timeout;};$.fn.cycle.next=function(opts){advance(opts,1);};$.fn.cycle.prev=function(opts){advance(opts,0);};function advance(opts,moveForward){var val=moveForward?1:-1;var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}
if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2)
opts.randomIndex=els.length-2;else if(opts.randomIndex==-1)
opts.randomIndex=els.length-1;opts.nextSlide=opts.randomMap[opts.randomIndex];}
else if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}
else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap)return false;opts.nextSlide=els.length-1;}
else if(opts.nextSlide>=els.length){if(opts.nowrap)return false;opts.nextSlide=0;}}
var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb))
cb(val>0,opts.nextSlide,els[opts.nextSlide]);go(els,opts,1,moveForward);return false;};function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);};$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug('pagerAnchorBuilder('+i+', el) returned: '+a);}
else
a='<a href="#">'+(i+1)+'</a>';if(!a)
return;var $a=$(a);if($a.parents('body').length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}
else{$a.appendTo($p);}}
opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}
var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb))
cb(opts.nextSlide,els[opts.nextSlide]);go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble)
$a.bind('click.cycle',function(){return false;});if(opts.pauseOnPagerHover)
$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd)
hops=c>l?c-l:opts.slideCount-l;else
hops=c<l?l-c:l+opts.slideCount-c;return hops;};function clearTypeFix($slides){debug('applying clearType background-color hack');function hex(s){s=parseInt(s).toString(16);return s.length<2?'0'+s:s;};function getBg(e){for(;e&&e.nodeName.toLowerCase()!='html';e=e.parentNode){var v=$.css(e,'background-color');if(v.indexOf('rgb')>=0){var rgb=v.match(/\d+/g);return'#'+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}
if(v&&v!='transparent')
return v;}
return'#ffffff';};$slides.each(function(){$(this).css('background-color',getBg(this));});};$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display='block';if(opts.slideResize&&w!==false&&next.cycleW>0)
opts.cssBefore.width=next.cycleW;if(opts.slideResize&&h!==false&&next.cycleH>0)
opts.cssBefore.height=next.cycleH;opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display='none';$(curr).css('zIndex',opts.slideCount+(rev===true?1:0));$(next).css('zIndex',opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=='number')
speedIn=speedOut=speedOverride;else
speedIn=speedOut=1;easeIn=easeOut=null;}
var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb)};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter)$l.css(opts.cssAfter);if(!opts.sync)fn();});if(opts.sync)fn();};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(':eq('+opts.currSlide+')').css('opacity',0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:'fade',timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:'click.cycle',pager:null,onPagerEvent:null,pagerEvent:'click.cycle',allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:'auto',startingSlide:0,sync:1,random:0,fit:0,containerResize:1,slideResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:'activeSlide',updateActivePagerLink:null,backwards:false};})(jQuery);(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};}
$.fn.cycle.transitions.fadeout=function($cont,$slides,opts){$slides.not(':eq('+opts.currSlide+')').css({display:'block','opacity':1});opts.before.push(function(curr,next,opts,w,h,rev){$(curr).css('zIndex',opts.slideCount+(!rev===true?1:0));$(next).css('zIndex',opts.slideCount+(!rev===true?0:1));});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={opacity:1,display:'block'};opts.cssAfter={zIndex:0};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css('overflow','hidden').width();opts.before.push(function(curr,next,opts,fwd){if(opts.rev)
fwd=!fwd;$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push(function(curr,next,opts,fwd){if(opts.rev)
fwd=!fwd;$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:'show'};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:'show'};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css('overflow','visible').width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}
opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++)
opts.els.push($slides[i]);for(i=0;i<opts.currSlide;i++)
opts.els.push(opts.els.shift());opts.fxFn=function(curr,next,opts,cb,fwd){if(opts.rev)
fwd=!fwd;var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++)
fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());if(fwd){for(var i=0,len=opts.els.length;i<len;i++)
$(opts.els[i]).css('z-index',len-i+count);}
else{var z=$(curr).css('z-index');$el.css('z-index',parseInt(z)+1+count);}
$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb)cb();});});};opts.cssBefore={display:'block',opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;opts.animOut.width=next.cycleW;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css('overflow','hidden').width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css('overflow','hidden').height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css('overflow','hidden').height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||'left';var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=='right')
opts.cssBefore.left=-w;else if(d=='up')
opts.cssBefore.top=h;else if(d=='down')
opts.cssBefore.top=-h;else
opts.cssBefore.left=w;});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||'left';var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=='right')
opts.animOut.left=w;else if(d=='up')
opts.animOut.top=-h;else if(d=='down')
opts.animOut.top=h;else
opts.animOut.left=-w;});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css('overflow','visible').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top)
opts.animOut={left:w*2,top:-h/2,opacity:0};else
opts.animOut.opacity=0;});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip))
clip='rect(0px 0px '+h+'px 0px)';else if(/r2l/.test(opts.clip))
clip='rect(0px '+w+'px '+h+'px '+w+'px)';else if(/t2b/.test(opts.clip))
clip='rect(0px '+w+'px 0px 0px)';else if(/b2t/.test(opts.clip))
clip='rect('+h+'px '+w+'px '+h+'px 0px)';else if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip='rect('+top+'px '+left+'px '+top+'px '+left+'px)';}}
opts.cssBefore.clip=opts.cssBefore.clip||clip||'rect(0px 0px 0px 0px)';var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next)return;var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display='block';var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)'});(step++<=count)?setTimeout(f,13):$curr.css('display','none');})();});opts.cssBefore={display:'block',opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);$(function(){$('div.slide').after('<div><ul class="list">').cycle({fx:'scrollHorz',speed:500,timeout:8000,pager:'.list',pagerAnchorBuilder:function(idx,slide){return'<li><a href="#"></a></li>';},activePagerClass:'active'});$('div.tool_icon').click(function(){if($('div.tool',$(this)).is(':visible')){$('div.tool',$(this)).hide();}
else{$('div.tool',$(this)).show();}
return false;});$('div.tool li').click(function(){var curVal=$('a',$(this)).html();$('span',$(this).parent().parent().parent()).html(curVal);});$(document).click(function(e){if(e.target.className!=='tool_icon'||e.target.className==''){$('div.tool').hide();}});});function mainmenu(){$(".sousmenu ").css({display:"none"});$(" #menu li").hover(function(){var sousMenusArray=$(this).find('.sousmenu');if(sousMenusArray.length>0){$(this).addClass("over");}
sousMenusArray.css({visibility:"visible",display:"none"}).show(400);},function(){$(this).removeClass("over");$(this).find('.sousmenu').css({visibility:"hidden"});});}
$(document).ready(function(){mainmenu();});var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})(),root:function(){return document.documentElement||document.body;},strict:(function(){var doctype;if(document.compatMode=='BackCompat')return false;doctype=document.doctype;if(doctype){return!/frameset|transitional/i.test(doctype.publicId);}
doctype=document.firstChild;if(doctype.nodeType!=8||/^DOCTYPE.+(transitional|frameset)/i.test(doctype.data)){return false;}
return true;})()};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},addClass:function(el,className){var current=el.className;el.className=current+(current&&' ')+className;return el;},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/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}[value]||1;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'));}catch(e){}
container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported;}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el;},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:(function(){var map={uppercase:function(s){return s.toUpperCase();},lowercase:function(s){return s.toLowerCase();},capitalize:function(s){return s.replace(/(?:^|\s)./g,function($0){return $0.toUpperCase();});}};return function(text,style){var transform=map[style.get('textTransform')];return transform?transform(text):text;};})(),whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};var wsStart=/^\s+/,wsEnd=/\s+$/;return function(text,style,node,previousElement,simple){if(simple)return text.replace(wsStart,'').replace(wsEnd,'');if(previousElement){if(previousElement.nodeName.toLowerCase()=='br'){text=text.replace(wsStart,'');}}
if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(wsStart,'');if(!node.nextSibling)text=text.replace(wsEnd,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var links=elementsByTagName('link'),styles=elementsByTagName('style');var checkTypes={'':1,'text/css':1};function isContainerReady(el){if(!checkTypes[el.type.toLowerCase()])return true;return el.disabled||isSheetReady(el.sheet,el.media||'screen');}
function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search;}}}}
catch(e){}
return true;}
function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false;}
for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face,wordSeparators={'\u0020':1,'\u00a0':1,'\u3000':1};this.glyphs=(function(glyphs){var key,fallbacks={'\u2011':'\u002d','\u00ad':'\u2011'};for(key in fallbacks){if(!hasOwnProperty(fallbacks,key))continue;if(!glyphs[key])glyphs[key]=glyphs[fallbacks[key]];}
return glyphs;})(data.glyphs);this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(chars,letterSpacing,wordSpacing){var glyphs=this.glyphs,glyph,kerning,k,jumps=[],width=0,w,i=-1,j=-1,chr;while(chr=chars[++i]){glyph=glyphs[chr]||this.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j]-=k;}
w=glyph.w;if(isNaN(w))w=+this.w;if(w>0){w+=letterSpacing;if(wordSeparators[chr])w+=wordSpacing;}
width+=jumps[++j]=~~w;kerning=glyph.k;}
jumps.total=width;return jumps;};}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>=weight&&b>=weight)?a<b:a>b:(a<=weight&&b<=weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){try{if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
catch(e){}
return false;}
function onOverOut(e){var related=e.relatedTarget;if(related&&contains(this,related))return;trigger(this,e.type=='mouseover');}
function onEnterLeave(e){if(!e)e=window.event;trigger(e.target||e.srcElement,e.type=='mouseenter');}
function trigger(el,hoverState){setTimeout(function(){var options=sharedStorage.get(el).options;if(hoverState){options=merge(options,options.hover);options._mediatorMode=1;}
api.replace(el,options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};this.detach=function(el){if(el.onmouseenter===undefined){removeEvent(el,'mouseover',onOverOut);removeEvent(el,'mouseout',onOverOut);}
else{removeEvent(el,'mouseenter',onEnterLeave);removeEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,listener);}}
function attach(el,options){if(options._mediatorMode)return el;var storage=sharedStorage.get(el);var oldOptions=storage.options;if(oldOptions){if(oldOptions===options)return el;if(oldOptions.hover)hoverHandler.detach(el);}
if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0;family=families[i];++i){if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},arg,key;for(var i=0,l=arguments.length;arg=arguments[i],i<l;++i){for(key in arg){if(hasOwnProperty(arg,key))merged[key]=arg[key];}}
return merged;}
function process(font,text,style,options,node,el){var fragment=document.createDocumentFragment(),processed;if(text==='')return fragment;var separate=options.separate;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function removeEvent(el,type,listener){if(el.removeEventListener){el.removeEventListener(type,listener,false);}
else if(el.detachEvent){el.detachEvent('on'+type,listener);}}
function replaceElement(el,options){var name=el.nodeName.toLowerCase();if(options.ignore[name])return;if(options.ignoreClass&&options.ignoreClass.test(el.className))return;if(options.onBeforeReplace)options.onBeforeReplace(el,options);var replace=!options.textless[name],simple=(options.trim==='simple');var style=CSS.getStyle(attach(el,options)).extend(options);if(parseFloat(style.get('fontSize'))===0)return;var font=getFont(el,style),node,type,next,anchor,text,lastElement;var isShy=options.softHyphens,anyShy=false,pos,shy,reShy=/\u00ad/g;var modifyText=options.modifyText;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(replace&&type==3){if(isShy&&el.nodeName.toLowerCase()!=TAG_SHY){pos=node.data.indexOf('\u00ad');if(pos>=0){node.splitText(pos);next=node.nextSibling;next.deleteData(0,1);shy=document.createElement(TAG_SHY);shy.appendChild(document.createTextNode('\u00ad'));el.insertBefore(shy,next);next=shy;anyShy=true;}}
if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){text=anchor.data;if(!isShy)text=text.replace(reShy,'');text=CSS.whiteSpace(text,style,anchor,lastElement,simple);if(modifyText)text=modifyText(text,anchor,el,options);el.replaceChild(process(font,text,style,options,node,el),anchor);anchor=null;}
if(type==1){if(node.firstChild){if(node.nodeName.toLowerCase()=='cufon'){engines[options.engine](font,null,style,options,node,el);}
else arguments.callee(node,options);}
lastElement=node;}}
if(isShy&&anyShy){updateShy(el);if(!trackingShy)addEvent(window,'resize',updateShyOnResize);trackingShy=true;}
if(options.onAfterReplace)options.onAfterReplace(el,options);}
function updateShy(context){var shys,shy,parent,glue,newGlue,next,prev,i;shys=context.getElementsByTagName(TAG_SHY);for(i=0;shy=shys[i];++i){shy.className=C_SHY_DISABLED;glue=parent=shy.parentNode;if(glue.nodeName.toLowerCase()!=TAG_GLUE){newGlue=document.createElement(TAG_GLUE);newGlue.appendChild(shy.previousSibling);parent.insertBefore(newGlue,shy);newGlue.appendChild(shy);}
else{glue=glue.parentNode;if(glue.nodeName.toLowerCase()==TAG_GLUE){parent=glue.parentNode;while(glue.firstChild){parent.insertBefore(glue.firstChild,glue);}
parent.removeChild(glue);}}}
for(i=0;shy=shys[i];++i){shy.className='';glue=shy.parentNode;parent=glue.parentNode;next=glue.nextSibling||parent.nextSibling;prev=(next.nodeName.toLowerCase()==TAG_GLUE)?glue:shy.previousSibling;if(prev.offsetTop>=next.offsetTop){shy.className=C_SHY_DISABLED;if(prev.offsetTop<next.offsetTop){newGlue=document.createElement(TAG_GLUE);parent.insertBefore(newGlue,glue);newGlue.appendChild(glue);newGlue.appendChild(next);}}}}
function updateShyOnResize(){if(ignoreResize)return;CSS.addClass(DOM.root(),C_VIEWPORT_RESIZING);clearTimeout(shyTimer);shyTimer=setTimeout(function(){ignoreResize=true;CSS.removeClass(DOM.root(),C_VIEWPORT_RESIZING);updateShy(document);ignoreResize=false;},100);}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var TAG_GLUE='cufonglue';var TAG_SHY='cufonshy';var C_SHY_DISABLED='cufon-shy-disabled';var C_VIEWPORT_RESIZING='cufon-viewport-resizing';var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var trackingShy=false;var shyTimer;var ignoreResize=false;var engines={},fonts={},defaultOptions={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,noscript:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},ignoreClass:null,modifyText:null,onAfterReplace:null,onBeforeReplace:null,printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.glow&&glow.dom&&glow.dom.get)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',softHyphens:true,textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:'none',trim:'advanced'};var separators={words:/\s/.test('\u00a0')?/[^\S\u00a0]+/:/\s+/,characters:'',none:/^/};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){if(!data)return api;var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.addClass(CSS.removeClass(DOM.root(),'cufon-loading'),'cufon-ready');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(options.autoDetect)delete options.fontFamily;if(typeof options.ignoreClass=='string'){options.ignoreClass=new RegExp('(?:^|\\s)(?:'+options.ignoreClass.replace(/\s+/g,'|')+')(?:\\s|$)');}
if(typeof options.textShadow=='string'){options.textShadow=CSS.textShadow(options.textShadow);}
if(typeof options.color=='string'&&/^-/.test(options.color)){options.textGradient=CSS.gradient(options.color);}
else delete options.textGradient;if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('vml',(function(){var ns=document.namespaces;if(!ns)return;ns.add('cvml','urn:schemas-microsoft-com:vml');ns=null;var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(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:'+
(HAS_BROKEN_LINEHEIGHT?'middle':'text-bottom')+';}'+'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}'+'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}'+'cufonglue{white-space:nowrap;display:inline-block;}'+'.cufon-viewport-resizing cufonglue{white-space:normal;}'+'a cufon{cursor:pointer}'+'}'+'@media print{'+'cufon cufoncanvas{display:none;}'+'}'+'</style>').replace(/;/g,'!important;'));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(!isNaN(value)||/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
function getSpacingValue(el,style,size,property){var key='computed'+property,value=style[key];if(isNaN(value)){value=style.get(property);style[key]=value=(value=='normal')?0:~~size.convertFrom(getSizeInPixels(el,value));}
return value;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='none';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('cufoncanvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,getSpacingValue(el,style,size,'letterSpacing'),getSpacingValue(el,style,size,'wordSpacing'));if(!jumps.length)return null;var width=jumps.total;var fullWidth=-minX+width+(viewBox.width-jumps[jumps.length-1]);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);var glyphs=font.glyphs,offsetX=0;var shadows=options.textShadow;var i=-1,j=0,chr;while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph,shape;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover);}
vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight;}
else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height));}
if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px';}}
return wrapper;};})());Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('cufon{text-indent:0;}'+'@media screen,projection{'+'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'cufon canvas{position:relative;}':'cufon canvas{position:absolute;}')+'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}'+'cufonglue{white-space:nowrap;display:inline-block;}'+'.cufon-viewport-resizing cufonglue{white-space:normal;}'+'}'+'@media print{'+'cufon{padding:0;}'+'cufon canvas{display:none;}'+'}').replace(/;/g,'!important;')));document.getElementsByTagName('head')[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.getAttribute('alt');var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,~~size.convertFrom(parseFloat(style.get('letterSpacing'))||0),~~size.convertFrom(parseFloat(style.get('wordSpacing'))||0));if(!jumps.length)return null;var width=jumps.total;expandRight+=viewBox.width-jumps[jumps.length-1];expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-canvas';wrapper.setAttribute('alt',text);canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.max(Math.ceil(size.convert(stretchedWidth)),0)+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.save();function renderText(){var glyphs=font.glyphs,glyph,i=-1,j=-1,chr;g.scale(stretchFactor,1);while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[++j],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();return wrapper;};})());$(document).ready(function(){$('#searchForm input.submit').click(function(){$('#searchForm').submit();});$('#searchForm input').keypress(function(e){code=(e.keyCode?e.keyCode:e.which);if(code==13)
$('#searchForm').submit();}).focus(function(){if($(this).val()=='Rechercher'){$(this).val('');}}).blur(function(){if($(this).val()==""){$(this).val('Rechercher');}});$('span.toResize').each(function(){if($(this).width()>80){$(this).parent().addClass('double');}});$('.download').click(function(){_gaq.push(['_trackPageview','/telechargement/'+$(this).next('input').val()]);_eaq.push(['addCustomData','pdf',$(this).next('input').val()]);_eaq.push(['trackRoi','1']);});$('.candidate_list li').click(function(){if($(this).find("a").attr('target')=='_blank'){window.open($(this).find("a").attr("href"));}
else{window.location=$(this).find("a").attr("href");}
return false;});$('.ins_btn').click(function(){window.open($(this).find("a").attr("href"));return false;});});function autoPromo($1,$2,$3){$('#img-autopromo-'+$1).mouseenter(function(){$(this).attr("src",$2);}).mouseleave(function(){$(this).attr("src",$3);});}
if($.browser.msie&&parseInt($.browser.version)<=7){$(document).ready(function(){$(document).pngFix();});}
jQuery(document).ready(function(){Cufon.replace(' .details h3, .etudiante h3, .councours_box h3',{fontFamily:'glyphabd',hover:true});Cufon.replace('#left_container .inner_left h1 , div.agenda_tabs .tabs_content h3 , div.consulter_sec h2 , div#top_section .right_section h2, div.news_sec h2 , div.etudiante h3 , div.councours_box h3 , div.agenda_tabs ul.agenda_list li .right_sec h4, .contenu .banner_section .text_area h3, .contenu .banner_section .text_area h2, .bottom_last h4, div#top_section .right_section h2, div.news_sec h2, div.carousel .belt .panel .text_box h2, div.carousel .belt .panel .text_box h3, div.category_sec .col h3, div.agenda_tabs ul.agenda_list li .right_sec h4,#programme .programe_right .banner_section .text_area h3,  #programme .programe_right .banner_section .text_area h2, #programme .ins_btn a, #programme .video_btn a, .telicharge h3, .telicharge ul li h4, .page404 h3, .page404 h2',{fontFamily:'glyphabd',hover:true});Cufon.replace('div.note_sec a b, .share, .contenu .context_box h3, .inner_left cite,.plan_page h3, .video h3, .formulaire h3, .context_box h2, .programme_content h2, .programme_content h1, .programme_content h3',{fontFamily:'glypha',hover:true});});var months=['January','February','March','April','May','June','July','August','September','October','November','December'];var emails=[{name:"Peter Pan",to:"peter@pan.de"},{name:"Molly",to:"molly@yahoo.com"},{name:"Forneria Marconi",to:"live@japan.jp"},{name:"Master <em>Sync</em>",to:"205bw@samsung.com"},{name:"Dr. <strong>Tech</strong> de Log",to:"g15@logitech.com"},{name:"Don Corleone",to:"don@vegas.com"},{name:"Mc Chick",to:"info@donalds.org"},{name:"Donnie Darko",to:"dd@timeshift.info"},{name:"Quake The Net",to:"webmaster@quakenet.org"},{name:"Dr. Write",to:"write@writable.com"}];var cities=["Aberdeen","Ada","Adamsville","Addyston","Adelphi","Adena","Adrian","Akron","Albany","Alexandria","Alger","Alledonia","Alliance","Alpha","Alvada","Alvordton","Amanda","Amelia","Amesville","Amherst","Amlin","Amsden","Amsterdam","Andover","Anna","Ansonia","Antwerp","Apple Creek","Arcadia","Arcanum","Archbold","Arlington","Ashland","Ashley","Ashtabula","Ashville","Athens","Attica","Atwater","Augusta","Aurora","Austinburg","Ava","Avon","Avon Lake","Bainbridge","Bakersville","Baltic","Baltimore","Bannock","Barberton","Barlow","Barnesville","Bartlett","Barton","Bascom","Batavia","Bath","Bay Village","Beach City","Beachwood","Beallsville","Beaver","Beaverdam","Bedford","Bellaire","Bellbrook","Belle Center","Belle Valley","Bellefontaine","Bellevue","Bellville","Belmont","Belmore","Beloit","Belpre","Benton Ridge","Bentonville","Berea","Bergholz","Berkey","Berlin","Berlin Center","Berlin Heights","Bethel","Bethesda","Bettsville","Beverly","Bidwell","Big Prairie","Birmingham","Blacklick","Bladensburg","Blaine","Blakeslee","Blanchester","Blissfield","Bloomdale","Bloomingburg","Bloomingdale","Bloomville","Blue Creek","Blue Rock","Bluffton","Bolivar","Botkins","Bourneville","Bowerston","Bowersville","Bowling Green","Bradford","Bradner","Brady Lake","Brecksville","Bremen","Brewster","Brice","Bridgeport","Brilliant","Brinkhaven","Bristolville","Broadview Heights","Broadway","Brookfield","Brookpark","Brookville","Brownsville","Brunswick","Bryan","Buchtel","Buckeye Lake","Buckland","Bucyrus","Buffalo","Buford","Burbank","Burghill","Burgoon","Burkettsville","Burton","Butler","Byesville","Cable","Cadiz","Cairo","Caldwell","Caledonia","Cambridge","Camden","Cameron","Camp Dennison","Campbell","Canal Fulton","Canal Winchester","Canfield","Canton","Carbon Hill","Carbondale","Cardington","Carey","Carroll","Carrollton","Casstown","Castalia","Catawba","Cecil","Cedarville","Celina","Centerburg","Chagrin Falls","Chandlersville","Chardon","Charm","Chatfield","Chauncey","Cherry Fork","Chesapeake","Cheshire","Chester","Chesterhill","Chesterland","Chesterville","Chickasaw","Chillicothe","Chilo","Chippewa Lake","Christiansburg","Cincinnati","Circleville","Clarington","Clarksburg","Clarksville","Clay Center","Clayton","Cleveland","Cleves","Clifton","Clinton","Cloverdale","Clyde","Coal Run","Coalton","Coldwater","Colerain","College Corner","Collins","Collinsville","Colton","Columbia Station","Columbiana","Columbus","Columbus Grove","Commercial Point","Conesville","Conneaut","Conover","Continental","Convoy","Coolville","Corning","Cortland","Coshocton","Covington","Creola","Crestline","Creston","Crooksville","Croton","Crown City","Cuba","Cumberland","Curtice","Custar","Cutler","Cuyahoga Falls","Cygnet","Cynthiana","Dalton","Damascus","Danville","Dayton","De Graff","Decatur","Deerfield","Deersville","Defiance","Delaware","Dellroy","Delphos","Delta","Dennison","Derby","Derwent","Deshler","Dexter City","Diamond","Dillonvale","Dola","Donnelsville","Dorset","Dover","Doylestown","Dresden","Dublin","Dunbridge","Duncan Falls","Dundee","Dunkirk","Dupont","East Claridon","East Fultonham","East Liberty","East Liverpool","East Palestine","East Rochester","East Sparta","East Springfield","Eastlake","Eaton","Edgerton","Edison","Edon","Eldorado","Elgin","Elkton","Ellsworth","Elmore","Elyria","Empire","Englewood","Enon","Etna","Euclid","Evansport","Fairborn","Fairfield","Fairpoint","Fairview","Farmdale","Farmer","Farmersville","Fayette","Fayetteville","Feesburg","Felicity","Findlay","Flat Rock","Fleming","Fletcher","Flushing","Forest","Fort Jennings","Fort Loramie","Fort Recovery","Fostoria","Fowler","Frankfort","Franklin","Franklin Furnace","Frazeysburg","Fredericksburg","Fredericktown","Freeport","Fremont","Fresno","Friendship","Fulton","Fultonham","Galena","Galion","Gallipolis","Galloway","Gambier","Garrettsville","Gates Mills","Geneva","Genoa","Georgetown","Germantown","Gettysburg","Gibsonburg","Girard","Glandorf","Glencoe","Glenford","Glenmont","Glouster","Gnadenhutten","Gomer","Goshen","Grafton","Grand Rapids","Grand River","Granville","Gratiot","Gratis","Graysville","Graytown","Green","Green Camp","Green Springs","Greenfield","Greenford","Greentown","Greenville","Greenwich","Grelton","Grove City","Groveport","Grover Hill","Guysville","Gypsum","Hallsville","Hamden","Hamersville","Hamilton","Hamler","Hammondsville","Hannibal","Hanoverton","Harbor View","Harlem Springs","Harpster","Harrisburg","Harrison","Harrisville","Harrod","Hartford","Hartville","Harveysburg","Haskins","Haverhill","Haviland","Haydenville","Hayesville","Heath","Hebron","Helena","Hicksville","Higginsport","Highland","Hilliard","Hillsboro","Hinckley","Hiram","Hockingport","Holgate","Holland","Hollansburg","Holloway","Holmesville","Homer","Homerville","Homeworth","Hooven","Hopedale","Hopewell","Houston","Howard","Hoytville","Hubbard","Hudson","Huntsburg","Huntsville","Huron","Iberia","Independence","Irondale","Ironton","Irwin","Isle Saint George","Jackson","Jackson Center","Jacksontown","Jacksonville","Jacobsburg","Jamestown","Jasper","Jefferson","Jeffersonville","Jenera","Jeromesville","Jerry City","Jerusalem","Jewell","Jewett","Johnstown","Junction City","Kalida","Kansas","Keene","Kelleys Island","Kensington","Kent","Kenton","Kerr","Kettlersville","Kidron","Kilbourne","Killbuck","Kimbolton","Kings Mills","Kingston","Kingsville","Kinsman","Kipling","Kipton","Kirby","Kirkersville","Kitts Hill","Kunkle","La Rue","Lacarne","Lafayette","Lafferty","Lagrange","Laings","Lake Milton","Lakemore","Lakeside Marblehead","Lakeview","Lakeville","Lakewood","Lancaster","Langsville","Lansing","Latham","Latty","Laura","Laurelville","Leavittsburg","Lebanon","Lees Creek","Leesburg","Leesville","Leetonia","Leipsic","Lemoyne","Lewis Center","Lewisburg","Lewistown","Lewisville","Liberty Center","Lima","Limaville","Lindsey","Lisbon","Litchfield","Lithopolis","Little Hocking","Lockbourne","Lodi","Logan","London","Londonderry","Long Bottom","Lorain","Lore City","Loudonville","Louisville","Loveland","Lowell","Lowellville","Lower Salem","Lucas","Lucasville","Luckey","Ludlow Falls","Lynchburg","Lynx","Lyons","Macedonia","Macksburg","Madison","Magnetic Springs","Magnolia","Maineville","Malaga","Malinta","Malta","Malvern","Manchester","Mansfield","Mantua","Maple Heights","Maplewood","Marathon","Marengo","Maria Stein","Marietta","Marion","Mark Center","Marshallville","Martel","Martin","Martins Ferry","Martinsburg","Martinsville","Marysville","Mason","Massillon","Masury","Maumee","Maximo","Maynard","Mc Arthur","Mc Clure","Mc Comb","Mc Connelsville","Mc Cutchenville","Mc Dermott","Mc Donald","Mc Guffey","Mechanicsburg","Mechanicstown","Medina","Medway","Melmore","Melrose","Mendon","Mentor","Mesopotamia","Metamora","Miamisburg","Miamitown","Miamiville","Middle Bass","Middle Point","Middlebranch","Middleburg","Middlefield","Middleport","Middletown","Midland","Midvale","Milan","Milford","Milford Center","Millbury","Milledgeville","Miller City","Millersburg","Millersport","Millfield","Milton Center","Mineral City","Mineral Ridge","Minerva","Minford","Mingo","Mingo Junction","Minster","Mogadore","Monclova","Monroe","Monroeville","Montezuma","Montpelier","Montville","Morral","Morristown","Morrow","Moscow","Mount Blanchard","Mount Cory","Mount Eaton","Mount Gilead","Mount Hope","Mount Liberty","Mount Orab","Mount Perry","Mount Pleasant","Mount Saint Joseph","Mount Sterling","Mount Vernon","Mount Victory","Mowrystown","Moxahala","Munroe Falls","Murray City","Nankin","Napoleon","Nashport","Nashville","Navarre","Neapolis","Neffs","Negley","Nelsonville","Nevada","Neville","New Albany","New Athens","New Bavaria","New Bloomington","New Bremen","New Carlisle","New Concord","New Hampshire","New Haven","New Holland","New Knoxville","New Lebanon","New Lexington","New London","New Madison","New Marshfield","New Matamoras","New Middletown","New Paris","New Philadelphia","New Plymouth","New Richmond","New Riegel","New Rumley","New Springfield","New Straitsville","New Vienna","New Washington","New Waterford","New Weston","Newark","Newbury","Newcomerstown","Newport","Newton Falls","Newtonsville","Ney","Niles","North Baltimore","North Bend","North Benton","North Bloomfield","North Fairfield","North Georgetown","North Hampton","North Jackson","North Kingsville","North Lawrence","North Lewisburg","North Lima","North Olmsted","North Ridgeville","North Robinson","North Royalton","North Star","Northfield","Northwood","Norwalk","Norwich","Nova","Novelty","Oak Harbor","Oak Hill","Oakwood","Oberlin","Oceola","Ohio City","Okeana","Okolona","Old Fort","Old Washington","Olmsted Falls","Ontario","Orangeville","Oregon","Oregonia","Orient","Orrville","Orwell","Osgood","Ostrander","Ottawa","Ottoville","Otway","Overpeck","Owensville","Oxford","Painesville","Palestine","Pandora","Paris","Parkman","Pataskala","Patriot","Paulding","Payne","Pedro","Peebles","Pemberton","Pemberville","Peninsula","Perry","Perrysburg","Perrysville","Petersburg","Pettisville","Phillipsburg","Philo","Pickerington","Piedmont","Pierpont","Piketon","Piney Fork","Pioneer","Piqua","Pitsburg","Plain City","Plainfield","Pleasant City","Pleasant Hill","Pleasant Plain","Pleasantville","Plymouth","Polk","Pomeroy","Port Clinton","Port Jefferson","Port Washington","Port William","Portage","Portland","Portsmouth","Potsdam","Powell","Powhatan Point","Proctorville","Prospect","Put in Bay","Quaker City","Quincy","Racine","Radnor","Randolph","Rarden","Ravenna","Rawson","Ray","Rayland","Raymond","Reedsville","Reesville","Reno","Republic","Reynoldsburg","Richfield","Richmond","Richmond Dale","Richwood","Ridgeville Corners","Ridgeway","Rio Grande","Ripley","Risingsun","Rittman","Robertsville","Rock Camp","Rock Creek","Rockbridge","Rockford","Rocky Ridge","Rocky River","Rogers","Rome","Rootstown","Roseville","Rosewood","Ross","Rossburg","Rossford","Roundhead","Rudolph","Rushsylvania","Rushville","Russells Point","Russellville","Russia","Rutland","Sabina","Saint Clairsville","Saint Henry","Saint Johns","Saint Louisville","Saint Marys","Saint Paris","Salem","Salesville","Salineville","Sandusky","Sandyville","Sarahsville","Sardinia","Sardis","Savannah","Scio","Scioto Furnace","Scott","Scottown","Seaman","Sebring","Sedalia","Senecaville","Seven Mile","Seville","Shade","Shadyside","Shandon","Sharon Center","Sharpsburg","Shauck","Shawnee","Sheffield Lake","Shelby","Sherrodsville","Sherwood","Shiloh","Short Creek","Shreve","Sidney","Sinking Spring","Smithfield","Smithville","Solon","Somerdale","Somerset","Somerville","South Bloomingville","South Charleston","South Lebanon","South Point","South Salem","South Solon","South Vienna","South Webster","Southington","Sparta","Spencer","Spencerville","Spring Valley","Springboro","Springfield","Stafford","Sterling","Steubenville","Stewart","Stillwater","Stockdale","Stockport","Stone Creek","Stony Ridge","Stout","Stoutsville","Stow","Strasburg","Stratton","Streetsboro","Strongsville","Struthers","Stryker","Sugar Grove","Sugarcreek","Sullivan","Sulphur Springs","Summerfield","Summit Station","Summitville","Sunbury","Swanton","Sycamore","Sycamore Valley","Sylvania","Syracuse","Tallmadge","Tarlton","Terrace Park","The Plains","Thompson","Thornville","Thurman","Thurston","Tiffin","Tiltonsville","Tipp City","Tippecanoe","Tiro","Toledo","Tontogany","Torch","Toronto","Tremont City","Trenton","Trimble","Trinway","Troy","Tuppers Plains","Tuscarawas","Twinsburg","Uhrichsville","Union City","Union Furnace","Unionport","Uniontown","Unionville","Unionville Center","Uniopolis","Upper Sandusky","Urbana","Utica","Valley City","Van Buren","Van Wert","Vandalia","Vanlue","Vaughnsville","Venedocia","Vermilion","Verona","Versailles","Vickery","Vienna","Vincent","Vinton","Wadsworth","Wakefield","Wakeman","Walbridge","Waldo","Walhonding","Walnut Creek","Wapakoneta","Warnock","Warren","Warsaw","Washington Court House","Washingtonville","Waterford","Waterloo","Watertown","Waterville","Wauseon","Waverly","Wayland","Wayne","Waynesburg","Waynesfield","Waynesville","Wellington","Wellston","Wellsville","West Alexandria","West Chester","West Elkton","West Farmington","West Jefferson","West Lafayette","West Liberty","West Manchester","West Mansfield","West Millgrove","West Milton","West Point","West Portsmouth","West Rushville","West Salem","West Union","West Unity","Westerville","Westfield Center","Westlake","Weston","Westville","Wharton","Wheelersburg","Whipple","White Cottage","Whitehouse","Wickliffe","Wilberforce","Wilkesville","Willard","Williamsburg","Williamsfield","Williamsport","Williamstown","Williston","Willoughby","Willow Wood","Willshire","Wilmington","Wilmot","Winchester","Windham","Windsor","Winesburg","Wingett Run","Winona","Wolf Run","Woodsfield","Woodstock","Woodville","Wooster","Wren","Xenia","Yellow Springs","Yorkshire","Yorkville","Youngstown","Zaleski","Zanesfield","Zanesville","Zoar"];Cufon.registerFont({"w":200,"face":{"font-family":"glypha","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 5 3 3 5 5 2 2 4","ascent":"258","descent":"-102","x-height":"3","bbox":"-60 -346 360 74.9331","underline-thickness":"22.68","underline-position":"-6.84","stemv":"29","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"\ufb01":{"d":"111,-239v-28,0,-46,21,-42,51r111,0r0,165r31,0r0,23r-89,0r0,-23r29,0r0,-143r-82,0r0,143r29,0r0,23r-89,0r0,-23r31,0r0,-143r-32,0r0,-22r32,0v0,-21,-1,-42,16,-57v35,-31,119,-29,121,31r-34,0v-3,-18,-14,-25,-32,-25","w":213,"k":{"\u2019":-6}},"\ufb02":{"d":"151,-23r0,-213v-45,-6,-87,-3,-82,48r40,0r0,22r-40,0r0,143r29,0r0,23r-89,0r0,-23r31,0r0,-143r-32,0r0,-22r32,0v-7,-76,62,-83,130,-71v11,2,10,1,10,7r0,229r30,0r0,23r-88,0r0,-23r29,0","w":213,"k":{"\u2019":-6}},"!":{"d":"59,-60r-8,-198r37,0r-6,198r-23,0xm53,0r0,-33r34,0r0,33r-34,0","w":140},"\"":{"d":"83,-158r-18,0r-5,-100r27,0xm36,-158r-19,0r-4,-100r27,0","w":100},"#":{"d":"135,-94r-13,94r-17,0r13,-94r-43,0r-13,94r-17,0r12,-94r-51,0r0,-17r54,0r6,-42r-50,0r0,-17r53,0r12,-88r17,0r-12,88r44,0r12,-88r17,0r-12,88r47,0r0,17r-50,0r-5,42r46,0r0,17r-50,0xm127,-153r-44,0r-5,42r43,0"},"$":{"d":"110,-19v23,1,44,-22,43,-46v0,-27,-21,-38,-43,-47r0,93xm93,-150r0,-89v-28,1,-45,15,-45,44v1,26,22,39,45,45xm93,-118v-35,-12,-76,-30,-76,-76v0,-43,36,-67,76,-67r0,-35r17,0r0,36v17,3,35,12,42,27r0,-24r25,0r0,71r-24,0v-2,-29,-18,-47,-43,-51r0,94v37,13,73,27,73,72v0,41,-32,75,-73,75r0,37r-17,0r0,-38v-19,-3,-38,-13,-48,-31r0,28r-26,0r0,-73r26,0v1,28,22,47,48,52r0,-97"},"%":{"d":"97,-243v-24,0,-27,30,-27,48v0,18,6,42,28,42v20,0,25,-30,25,-45v0,-17,-3,-45,-26,-45xm244,-262r-147,266r-22,0r148,-266r21,0xm225,-105v-24,0,-27,31,-27,49v0,18,5,41,27,41v20,0,26,-29,26,-44v0,-17,-3,-46,-26,-46xm172,-61v0,-32,18,-62,53,-62v38,0,50,31,50,64v0,31,-14,63,-50,63v-39,0,-53,-31,-53,-65xm95,-134v-69,0,-67,-129,3,-128v37,0,50,32,50,64v0,33,-16,64,-53,64","w":320},"&":{"d":"106,-263v32,-3,62,22,62,55v0,33,-21,53,-48,68r61,71v9,-19,13,-39,14,-60r-28,0r0,-23r88,0r0,23r-33,0v-3,28,-9,59,-23,80r23,25r38,0r0,24r-58,0r-23,-26v-45,53,-158,42,-158,-45v0,-34,21,-62,52,-75v-17,-16,-32,-35,-32,-60v0,-33,30,-61,65,-57xm53,-71v0,27,21,53,50,53v21,0,45,-11,59,-28r-70,-80v-21,12,-39,29,-39,55xm103,-158v34,-10,55,-81,2,-83v-19,0,-32,14,-32,33v0,20,18,36,30,50","w":280},"\u2019":{"d":"30,-222r0,-36r38,0v3,38,-8,61,-17,87r-21,0r17,-51r-17,0","w":100,"k":{"\u2019":6,"s":13,"\u0161":13}},"(":{"d":"100,-263v-67,94,-63,240,0,331r-27,0v-70,-96,-70,-235,0,-331r27,0","w":119},")":{"d":"16,68v67,-96,66,-237,0,-331r27,0v70,96,70,235,0,331r-27,0","w":119},"*":{"d":"73,-206r-7,-52r29,0r-7,52r43,-22r8,28r-47,8r32,39r-24,16r-20,-46r-22,46r-23,-17r33,-38r-46,-10r9,-27","w":159},"+":{"d":"26,-140r80,0r0,-80r22,0r0,80r80,0r0,22r-80,0r0,81r-22,0r0,-81r-80,0r0,-22","w":237},",":{"d":"30,0r0,-36r37,0v3,37,-8,61,-16,87r-21,0r17,-51r-17,0","w":100},"-":{"d":"18,-86r0,-27r85,0r0,27r-85,0","w":119},".":{"d":"31,0r0,-36r37,0r0,36r-37,0","w":100},"\/":{"d":"103,-263r25,0r-102,263r-26,0","w":126},"0":{"d":"17,-122v0,-67,19,-140,84,-140v70,0,82,75,82,130v0,57,-11,136,-84,136v-59,0,-82,-66,-82,-126xm150,-120v1,-52,-1,-119,-48,-119v-51,0,-52,81,-52,116v0,33,4,103,50,103v46,0,49,-55,50,-100"},"1":{"d":"37,-176r0,-32v19,-16,39,-32,56,-50r33,0r0,234r36,0r0,24r-106,0r0,-24r39,0r0,-202v-18,18,-37,36,-58,50"},"2":{"d":"97,-262v40,0,77,26,76,64v-2,67,-62,99,-97,141r-34,32r107,0r0,-41r28,0r0,66r-159,0v1,-21,-5,-43,11,-49v35,-36,73,-68,102,-110v20,-30,7,-79,-34,-79v-30,0,-45,27,-44,54r-34,0v2,-45,30,-78,78,-78"},"3":{"d":"101,-262v86,0,102,122,20,131v35,4,56,28,56,63v0,48,-34,72,-79,72v-49,0,-79,-27,-79,-76r34,0v0,26,14,51,43,51v30,0,49,-20,49,-50v0,-29,-28,-52,-58,-49r0,-24v32,1,56,-14,56,-48v0,-26,-16,-46,-44,-46v-26,0,-46,20,-44,49r-33,0v1,-46,34,-73,79,-73"},"4":{"d":"120,-69r-110,0r0,-34r101,-155r38,0r0,166r36,0r0,23r-36,0r0,45r33,0r0,24r-102,0r0,-24r40,0r0,-45xm32,-92r88,0r0,-137"},"5":{"d":"182,-82v0,45,-28,87,-80,86v-46,0,-77,-25,-76,-72r32,0v-1,24,17,48,43,48v70,2,64,-120,3,-120v-21,0,-40,13,-46,34r-31,0r5,-152r140,0r0,25r-111,0r-4,100v9,-22,30,-32,53,-32v44,0,72,41,72,83"},"6":{"d":"177,-197r-31,0v-1,-21,-10,-42,-35,-42v-54,0,-58,66,-59,117v8,-25,33,-42,59,-42v50,0,70,39,70,83v0,49,-28,85,-79,85v-71,0,-81,-69,-81,-125v0,-60,12,-141,90,-141v42,0,64,24,66,65xm107,-140v-66,-1,-69,119,-3,121v34,0,46,-34,46,-62v0,-26,-12,-59,-43,-59"},"7":{"d":"20,-187r0,-71r165,0v4,38,-13,55,-24,79v-26,59,-48,118,-67,179r-34,0v26,-83,59,-157,96,-232r-107,0r0,45r-29,0"},"8":{"d":"21,-69v-1,-36,24,-61,54,-64v-31,-4,-51,-29,-51,-60v0,-46,32,-69,76,-69v43,0,77,21,77,67v0,35,-18,56,-52,62v34,3,55,32,55,64v0,46,-34,73,-79,73v-48,0,-80,-23,-80,-73xm100,-240v-25,-1,-46,23,-46,50v0,26,20,46,46,46v28,0,46,-22,46,-49v0,-29,-16,-47,-46,-47xm52,-72v0,28,15,53,46,53v33,0,50,-21,50,-53v0,-30,-17,-50,-48,-50v-30,0,-48,21,-48,50"},"9":{"d":"97,-262v63,0,83,65,83,126v0,61,-12,140,-90,140v-42,0,-66,-24,-67,-65r32,0v1,23,11,42,37,42v52,0,58,-80,57,-117v-8,24,-34,42,-60,42v-49,0,-70,-39,-70,-83v0,-49,27,-85,78,-85xm144,-177v0,-30,-17,-62,-45,-62v-63,-1,-67,118,-4,121v29,1,49,-29,49,-59"},":":{"d":"88,-180r0,36r-37,0r0,-36r37,0xm51,0r0,-36r37,0r0,36r-37,0","w":140},";":{"d":"50,0r0,-36r37,0v3,37,-7,61,-15,87r-22,0r17,-51r-17,0xm50,-144r0,-36r37,0r0,36r-37,0","w":140},"<":{"d":"214,-53r0,23r-194,-88r0,-21r194,-90r0,23r-169,77","w":237},"=":{"d":"27,-167r183,0r0,23r-183,0r0,-23xm27,-113r183,0r0,22r-183,0r0,-22","w":237},">":{"d":"20,-53r169,-76r-169,-77r0,-23r194,90r0,21r-194,88r0,-23","w":237},"?":{"d":"162,-193v0,60,-74,67,-67,134r-31,0v-2,-49,21,-71,48,-94v29,-24,21,-85,-23,-85v-27,0,-42,20,-42,46r-33,0v1,-49,31,-70,77,-70v41,0,71,27,71,69xm63,-33r33,0r0,33r-33,0r0,-33","w":180},"@":{"d":"169,-250v-68,0,-128,54,-128,121v0,118,166,159,233,75r7,10v-75,96,-255,40,-255,-85v0,-76,67,-135,144,-135v66,0,125,45,125,111v0,48,-33,95,-79,95v-14,0,-22,-7,-23,-21v-13,15,-29,23,-50,23v-34,0,-54,-30,-54,-60v0,-63,93,-127,127,-60r5,-18r17,0r-31,110v0,8,6,13,14,13v35,-4,60,-44,60,-82v0,-57,-56,-97,-112,-97xm147,-72v43,-1,61,-46,61,-86v0,-19,-17,-32,-36,-32v-39,0,-66,41,-66,75v0,23,15,43,41,43","w":324},"A":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0","w":280},"B":{"d":"215,-72v0,44,-38,72,-84,72r-121,0r0,-24r37,0r0,-210r-36,0r0,-24r120,0v41,-6,78,24,78,64v0,30,-18,55,-49,59v35,3,55,28,55,63xm177,-192v0,-45,-50,-44,-99,-42r0,90v52,4,99,-2,99,-48xm183,-74v2,-49,-51,-49,-105,-46r0,96v54,4,103,-2,105,-50","w":240},"C":{"d":"49,-35v-60,-80,-24,-227,88,-227v32,0,61,11,75,42r0,-38r26,0r0,92r-28,0v-3,-42,-26,-71,-70,-71v-63,0,-84,50,-84,105v0,55,18,110,82,110v40,0,66,-26,68,-65r33,0v1,99,-139,120,-190,52","w":259},"D":{"d":"183,-49v53,-62,29,-190,-71,-185r-35,0r0,210v45,0,79,6,106,-25xm241,-131v1,82,-48,141,-140,131r-92,0r0,-24r36,0r0,-210r-36,0r0,-24r100,0v85,-8,131,50,132,127","w":259},"E":{"d":"216,0r-206,0r0,-24r37,0r0,-210r-37,0r0,-24r206,0r0,77r-28,0r0,-53r-110,0r0,91r54,0r0,-39r26,0r0,101r-26,0r0,-38r-54,0r0,95r110,0r0,-56r28,0r0,80","w":240},"F":{"d":"118,0r-110,0r0,-24r36,0r0,-210r-36,0r0,-24r198,0r0,78r-28,0r0,-54r-103,0r0,96r52,0r0,-38r25,0r0,100r-25,0r0,-38r-52,0r0,90r43,0r0,24","w":219,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33}},"G":{"d":"21,-127v0,-68,41,-135,115,-135v28,0,57,11,71,37r0,-33r28,0r0,92r-28,0v0,-43,-30,-71,-72,-71v-61,0,-80,59,-80,110v0,51,20,106,80,106v46,0,75,-39,74,-83r-39,0r0,-23r101,0r0,23r-33,0r0,104r-29,0r0,-40v-11,31,-47,44,-78,44v-63,0,-110,-58,-110,-131","w":280},"H":{"d":"114,0r-103,0r0,-24r36,0r0,-210r-36,0r0,-24r103,0r0,24r-36,0r0,91r124,0r0,-91r-37,0r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r37,0r0,-93r-124,0r0,93r36,0r0,24","w":280},"I":{"d":"8,-234r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r36,0r0,-210r-36,0","w":119},"J":{"d":"76,4v-45,0,-75,-38,-69,-84r33,0v-1,26,5,59,38,59v30,0,37,-33,37,-65r0,-148r-38,0r0,-24r98,0r0,24r-29,0v-8,99,34,238,-70,238","w":180},"K":{"d":"114,0r-103,0r0,-24r37,0r0,-210r-37,0r0,-24r103,0r0,24r-35,0r0,97r93,-97r-32,0r0,-24r90,0r0,24r-18,0r-95,97r96,113r25,0r0,24r-95,0r0,-24r31,0r-95,-112r0,112r35,0r0,24","w":240},"L":{"d":"206,0r-196,0r0,-24r38,0r0,-210r-38,0r0,-24r112,0r0,24r-43,0r0,208r98,0r0,-58r29,0r0,84","w":219,"k":{"T":27,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"M":{"d":"109,0r-98,0r0,-24r37,0r0,-210r-37,0r0,-24r92,0r66,221r69,-221r91,0r0,24r-37,0r0,210r37,0r0,24r-100,0r0,-24r33,0r0,-210r-3,0r-76,234r-29,0r-76,-234r-3,0r0,210r34,0r0,24","w":339},"N":{"d":"111,0r-101,0r0,-24r37,0r0,-210r-37,0r0,-24r83,0r114,225r0,-201r-36,0r0,-24r99,0r0,24r-35,0r0,234r-43,0r-118,-231r0,207r37,0r0,24","w":280},"O":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219","w":280},"P":{"d":"175,-181v0,-47,-43,-60,-97,-53r0,104v54,5,97,-3,97,-51xm207,-181v0,45,-39,83,-87,75r-42,0r0,82r44,0r0,24r-112,0r0,-24r37,0r0,-210r-37,0r0,-24r114,0v55,-4,83,32,83,77","w":219,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33}},"Q":{"d":"134,-262v70,0,118,64,118,132v0,37,-16,95,-53,111v21,-5,47,-4,73,-4r0,24r-92,0v-58,7,-108,5,-139,-37v-61,-82,-21,-226,93,-226xm133,-237v-117,2,-114,218,-1,217v112,-3,117,-215,1,-217","w":280},"R":{"d":"174,-187v0,-47,-45,-51,-98,-47r0,96v52,4,98,-1,98,-49xm111,0r-103,0r0,-24r37,0r0,-210r-37,0r0,-24v61,4,128,-15,172,11v45,26,33,121,-28,123v47,7,38,63,55,100r28,0r0,24r-53,0v-15,-37,-14,-86,-43,-109v-18,-7,-41,-3,-63,-4r0,89r35,0r0,24","w":240,"k":{"T":6,"V":13,"W":13,"y":6,"\u00fd":6,"\u00ff":6,"Y":13,"\u00dd":13,"\u0178":13}},"S":{"d":"17,-192v0,-72,99,-95,134,-41r0,-25r28,0r0,84r-28,0v-1,-38,-13,-64,-55,-64v-39,0,-64,50,-33,72v42,30,122,27,122,97v0,73,-113,103,-141,36r0,33r-27,0r0,-87r27,0v1,37,19,67,59,67v27,0,49,-19,49,-46v0,-44,-48,-46,-79,-60v-32,-15,-56,-26,-56,-66"},"T":{"d":"14,-175r0,-83r208,0r0,83r-28,0r0,-55r-60,0r0,206r40,0r0,24r-111,0r0,-24r40,0r0,-206r-61,0r0,55r-28,0","w":240,"k":{"\u00f9":7,"\u00fc":7,"\u0161":13,"\u00f2":13,"\u00f6":13,"\u00f4":13,"\u00ed":3,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e2":13,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"r":3,"u":7,"\u00fa":7,"\u00fb":7,"-":27,"a":13,"\u00e6":13,"\u00e1":13,"\u00e4":13,"c":13,"\u00e7":13,"e":13,"\u00e9":13,"i":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f5":13,"s":13,":":13,";":13}},"U":{"d":"129,4v-53,2,-92,-45,-92,-104r0,-134r-32,0r0,-24r102,0r0,24r-39,0v5,90,-25,212,62,212v42,0,64,-40,64,-87r0,-125r-38,0r0,-24r98,0r0,24r-32,0r0,132v4,63,-35,104,-93,106","w":259},"V":{"d":"233,-234r-86,234r-36,0r-85,-234r-21,0r0,-24r93,0r0,24r-38,0r70,202r71,-202r-37,0r0,-24r90,0r0,24r-21,0","w":259,"k":{"\u00f6":20,"\u00ee":6,"\u00e8":20,"\u00eb":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"y":6,"\u00fd":6,"\u00ff":6,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,",":40,".":40,"r":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":18,"a":20,"\u00e6":20,"\u00e1":20,"e":20,"\u00e9":20,"\u00ea":20,"i":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,":":20,";":20}},"W":{"d":"5,-234r0,-24r90,0r0,24r-37,0r43,203r58,-227r45,0r56,229r45,-205r-38,0r0,-24r88,0r0,24r-21,0r-54,234r-42,0r-57,-235r-3,0r-57,235r-43,0r-52,-234r-21,0","w":360,"k":{"\u00fc":6,"\u00f6":13,"\u00e4":13,"y":6,"\u00fd":6,"\u00ff":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":20,".":20,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,"-":14,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f2":13,"\u00f5":13,":":13,";":18}},"X":{"d":"107,0r-101,0r0,-24r25,0r81,-111r-70,-99r-27,0r0,-24r100,0r0,24r-34,0r53,75r54,-75r-34,0r0,-24r97,0r0,24r-27,0r-70,97r79,113r24,0r0,24r-101,0r0,-24r37,0r-61,-88r-65,88r40,0r0,24","w":259},"Y":{"d":"175,0r-111,0r0,-24r40,0r0,-81r-80,-129r-20,0r0,-24r92,0r0,24r-36,0r61,101r61,-101r-34,0r0,-24r88,0r0,24r-20,0r-81,129r0,81r40,0r0,24","w":240,"k":{"\u00f6":20,"v":13,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":29,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,":":20,";":25,"p":13,"q":20}},"Z":{"d":"205,0r-191,0r0,-33r152,-200r-121,0r0,52r-29,0r0,-77r186,0r0,30r-154,203r129,0r0,-54r28,0r0,79","w":219},"[":{"d":"91,68r-55,0r0,-331r55,0r0,20r-28,0r0,291r28,0r0,20","w":119},"\\":{"d":"137,0r-108,-263r25,0r107,263r-24,0","w":208},"]":{"d":"82,-263r0,331r-55,0r0,-20r28,0r0,-291r-28,0r0,-20r55,0","w":119},"^":{"d":"42,-63r-22,0r88,-195r21,0r89,195r-23,0r-77,-169","w":237},"_":{"d":"180,40r-180,0r0,-22r180,0r0,22","w":180},"\u2018":{"d":"69,-171r-37,0v-3,-38,8,-61,17,-87r20,0r-16,51r16,0r0,36","w":100,"k":{"\u2018":9}},"a":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37"},"b":{"d":"128,-194v112,2,103,197,-3,197v-24,0,-48,-14,-58,-36r0,33r-59,0r0,-23r29,0r0,-214r-29,0r0,-21r59,0r0,103v11,-23,36,-39,61,-39xm66,-96v0,37,16,75,55,75v40,0,56,-36,56,-71v0,-35,-12,-79,-55,-79v-36,0,-56,33,-56,75","w":219},"c":{"d":"13,-92v0,-49,29,-103,81,-102v24,0,40,8,53,29r0,-23r23,0r0,69r-23,0v0,-26,-19,-51,-46,-51v-80,2,-71,148,0,149v24,0,41,-20,44,-43r27,0v-1,42,-35,67,-74,67v-54,0,-85,-44,-85,-95","w":180},"d":{"d":"156,-37v-35,77,-140,35,-140,-60v0,-49,23,-97,78,-97v27,0,50,13,62,37r0,-80r-31,0r0,-21r60,0r0,235r30,0r0,23r-59,0r0,-37xm46,-100v0,44,16,80,56,81v36,1,54,-40,54,-77v0,-33,-13,-73,-52,-75v-37,-2,-58,36,-58,71","w":219},"e":{"d":"105,-194v56,2,86,45,82,106r-138,0v-1,35,23,69,61,69v23,0,44,-18,47,-40r28,0v-7,41,-39,62,-80,62v-61,0,-87,-41,-87,-97v0,-54,36,-101,87,-100xm50,-110r106,0v0,-30,-17,-62,-51,-62v-35,0,-53,31,-55,62"},"f":{"d":"127,-235v-39,-11,-66,5,-59,47r40,0r0,22r-40,0r0,143r36,0r0,23r-96,0r0,-23r31,0r0,-143r-33,0r0,-22r33,0v-9,-57,32,-87,88,-72r0,25","w":119,"k":{"\u2019":-6}},"g":{"d":"13,-93v0,-90,100,-139,144,-65r0,-30r59,0r0,21r-31,0r0,149v0,27,0,49,-22,67v-40,34,-128,32,-139,-31r33,0v4,23,25,29,45,29v40,0,61,-34,54,-80v-17,26,-33,36,-63,36v-53,0,-80,-47,-80,-96xm101,-169v-79,2,-72,150,-2,149v76,1,76,-148,2,-149","w":219},"h":{"d":"122,-172v-69,0,-50,81,-52,149r31,0r0,23r-91,0r0,-23r31,0r0,-214r-31,0r0,-21r60,0r0,95v32,-53,117,-35,117,34r0,106r31,0r0,23r-91,0r0,-23r31,0v-7,-59,25,-149,-36,-149","w":219},"i":{"d":"101,-23r0,23r-89,0r0,-23r30,0r0,-144r-29,0r0,-21r59,0r0,165r29,0xm40,-258r34,0r0,30r-34,0r0,-30","w":106},"j":{"d":"0,60r0,-23v11,4,28,5,37,-6v10,-57,1,-133,4,-198r-31,0r0,-21r60,0v-3,78,8,167,-7,234v-13,19,-39,20,-63,14xm72,-228r-33,0r0,-30r33,0r0,30","w":100},"k":{"d":"95,0r-86,0r0,-23r30,0r0,-214r-30,0r0,-21r59,0r0,163r68,-72r-28,0r0,-21r85,0r0,21r-26,0r-45,48r54,96r20,0r0,23r-76,0r0,-23r23,0r-42,-78r-33,33r0,45r27,0r0,23"},"l":{"d":"95,0r-87,0r0,-23r29,0r0,-214r-29,0r0,-21r59,0r0,235r28,0r0,23","w":100},"m":{"d":"114,-171v-58,0,-41,86,-43,148r29,0r0,23r-89,0r0,-23r30,0r0,-144r-30,0r0,-21r60,0r0,34v6,-24,26,-40,52,-40v29,0,47,16,54,40v19,-68,112,-43,112,29r0,102r27,0r0,23r-86,0r0,-23r30,0r0,-94v0,-26,0,-54,-36,-54v-59,1,-42,86,-44,148r29,0r0,23r-88,0r0,-23r29,0r0,-94v0,-26,0,-54,-36,-54","w":320},"n":{"d":"118,-171v-64,0,-47,84,-49,148r30,0r0,23r-90,0r0,-23r31,0r0,-144r-30,0r0,-21r59,0r0,34v17,-62,116,-51,116,24r0,107r29,0r0,23r-88,0r0,-23r30,0v-7,-57,23,-148,-38,-148","w":219},"o":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98"},"p":{"d":"207,-96v0,49,-28,99,-76,99v-29,0,-51,-11,-64,-38r0,72r30,0r0,21r-90,0r0,-21r30,0r0,-204r-29,0r0,-21r59,0r0,37v14,-28,33,-43,65,-43v46,0,75,45,75,98xm177,-93v0,-37,-16,-79,-53,-79v-38,0,-57,37,-57,76v0,38,18,78,54,77v40,0,56,-39,56,-74","w":219},"q":{"d":"13,-96v0,-94,105,-135,141,-57r0,-35r58,0r0,21r-29,0r0,204r30,0r0,21r-89,0r0,-21r30,0r0,-72v-11,23,-36,40,-65,38v-50,-3,-76,-48,-76,-99xm102,-19v70,-2,71,-153,-3,-153v-79,3,-76,153,3,153","w":219},"r":{"d":"70,-188r0,38v12,-35,25,-42,65,-41r0,27v-75,-13,-66,68,-65,141r36,0r0,23r-95,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0","w":140,"k":{"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,",":20,".":20,"f":-5,"\ufb01":-5,"\ufb02":-5,"\u00df":-5,"m":-5,"n":-5,"\u00f1":-5,"r":-5,"t":-5,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"x":-5,"z":-5,"\u017e":-5,"-":7}},"s":{"d":"21,-137v0,-58,85,-78,114,-32r0,-19r23,0r0,61r-23,0v2,-26,-16,-43,-45,-45v-28,-2,-53,29,-32,51v38,19,100,6,102,64v2,64,-96,83,-119,27r0,30r-22,0r0,-65r22,0v-4,46,89,68,89,11v0,-27,-29,-28,-49,-31v-32,-5,-60,-14,-60,-52","w":180},"t":{"d":"80,3v-70,2,-38,-104,-45,-170r-32,0r0,-21r32,0r0,-37r29,-10r0,47r54,0r0,21r-54,0r0,122v0,12,4,26,19,26v19,0,19,-26,19,-39r23,0v3,35,-10,60,-45,61","w":133},"u":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0r0,-36v-9,28,-25,39,-55,39v-40,0,-59,-27,-59,-76r0,-94r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54","w":219},"v":{"d":"5,-167r0,-21r80,0r0,21r-30,0r44,142r3,0r45,-142r-30,0r0,-21r78,0r0,21r-19,0r-57,167r-37,0r-58,-167r-19,0","k":{",":27,".":27}},"w":{"d":"5,-167r0,-21r84,0r0,21r-31,0v14,45,21,98,38,140r45,-161r41,0r45,161r2,0r36,-140r-32,0r0,-21r82,0r0,21r-21,0r-48,167r-39,0r-45,-165r-3,0r-45,165r-39,0r-48,-167r-22,0","w":320,"k":{",":20,".":20}},"x":{"d":"10,-167r0,-21r80,0r0,21r-27,0r41,54r41,-54r-28,0r0,-21r77,0r0,21r-19,0r-55,72r57,72r19,0r0,23r-82,0r0,-23r29,0r-43,-54r-45,54r31,0r0,23r-80,0r0,-23r18,0r60,-75r-56,-69r-18,0"},"y":{"d":"6,-188r80,0r0,21r-29,0r46,132r45,-132r-30,0r0,-21r77,0r0,21r-16,0r-74,197v-7,25,-38,39,-70,30r0,-24v30,13,47,-13,52,-36r-63,-167r-18,0r0,-21","k":{",":27,".":27}},"z":{"d":"162,0r-144,0r0,-24r109,-143r-81,0r0,39r-26,0r0,-60r141,0r0,24r-110,141r86,0r0,-41r25,0r0,64","w":180},"{":{"d":"13,-99v68,-8,-20,-180,81,-164v-65,13,11,146,-60,164v71,9,-7,142,60,167v-31,6,-58,-20,-53,-51v-3,-47,14,-108,-28,-116","w":108},"|":{"d":"106,0r0,-263r22,0r0,263r-22,0","w":237},"}":{"d":"94,-98v-57,9,-5,117,-42,156v-11,11,-25,10,-39,10v66,-13,-13,-146,59,-166v-69,-11,7,-140,-59,-165v66,-10,52,64,52,122v0,21,11,40,29,43","w":108},"~":{"d":"77,-153v26,0,63,25,87,25v18,0,27,-13,36,-26r17,11v-18,41,-69,43,-107,21v-28,-16,-62,-10,-73,19r-16,-11v14,-21,29,-39,56,-39","w":237},"\u00a1":{"d":"81,-133r8,196r-37,0r6,-196r23,0xm87,-194r0,34r-34,0r0,-34r34,0","w":140},"\u00a2":{"d":"99,-23r0,-145v-59,16,-56,127,0,145xm99,1v-96,-4,-101,-187,0,-194r0,-31r15,0r0,32v18,2,35,11,43,31r0,-27r23,0r0,69r-23,0v-1,-26,-16,-48,-43,-50r0,147v23,-1,37,-19,40,-42r28,0v-2,39,-31,64,-68,66r0,33r-15,0r0,-34"},"\u00a3":{"d":"114,-238v-38,-1,-44,41,-40,84r45,0r0,25r-45,0r0,104r76,0r0,-38r28,0r0,63r-165,0r0,-24r29,0r0,-105r-31,0r0,-25r31,0v-8,-63,19,-108,74,-108v36,0,66,23,65,61r-32,0v0,-23,-12,-37,-35,-37"},"\u2044":{"d":"-39,0r-21,0r159,-262r21,0","w":60},"\u00a5":{"d":"155,0r-111,0r0,-24r40,0r0,-56r-90,0r0,-16r90,0v1,-13,-6,-18,-10,-26r-80,0r0,-16r70,0r-60,-97r-20,0r0,-23r92,0r0,23r-36,0r61,102r61,-102r-34,0r0,-23r88,0r0,23r-20,0r-61,97r69,0r0,16r-79,0v-4,8,-11,13,-10,26r89,0r0,16r-89,0r0,56r40,0r0,24"},"\u0192":{"d":"85,-148r-38,0r4,-22r38,0v5,-22,4,-45,15,-63v15,-27,46,-34,80,-26r-4,22v-47,-13,-59,26,-61,67r42,0r-4,22r-43,0r-27,148v-2,41,-42,75,-89,58r4,-22v33,8,50,-9,56,-39"},"\u00a7":{"d":"30,-207v0,-33,33,-56,66,-55v44,0,74,17,72,65r-32,0v3,-23,-16,-41,-38,-41v-20,0,-37,9,-37,31v13,55,111,32,112,98v0,21,-11,39,-32,45v21,8,31,28,31,50v2,35,-36,57,-71,57v-44,0,-74,-16,-73,-65r33,0v0,26,14,41,40,41v40,0,54,-56,14,-64v-36,-16,-86,-20,-88,-70v0,-19,13,-38,31,-44v-19,-11,-28,-26,-28,-48xm77,-150v-21,7,-24,42,-6,54v16,11,35,16,53,23v26,-12,20,-51,-7,-60v-14,-4,-27,-12,-40,-17"},"\u00a4":{"d":"14,-51r20,-20v-24,-29,-24,-74,0,-103r-20,-19r15,-15r19,19v29,-24,75,-24,104,0r20,-19r14,15r-19,19v24,29,24,74,0,103r19,20r-15,14r-19,-19v-29,24,-75,24,-104,0r-19,19xm101,-185v-35,0,-63,27,-63,62v0,34,27,63,62,63v35,0,63,-27,63,-62v0,-35,-27,-63,-62,-63","w":201},"'":{"d":"34,-158r-18,0r-4,-100r27,0","w":50},"\u201c":{"d":"84,-206r0,35r-38,0v-3,-38,9,-61,17,-87r21,0r-17,52r17,0xm153,-206r0,35r-38,0v-3,-38,9,-61,17,-87r21,0r-17,52r17,0"},"\u00ab":{"d":"134,-21r-30,-78r30,-77r26,0r-29,77r29,78r-26,0xm96,-176r-29,77r29,78r-26,0r-30,-78r30,-77r26,0"},"\u2039":{"d":"51,-21r-29,-78r29,-77r27,0r-30,77r30,78r-27,0","w":100},"\u203a":{"d":"49,-176r30,77r-30,78r-26,0r29,-78r-29,-77r26,0","w":100},"\u2013":{"d":"201,-88r-201,0r0,-23r201,0r0,23"},"\u2020":{"d":"85,-162r-61,0r0,-23r61,0r0,-73r29,0r0,73r61,0r0,23r-61,0r0,162r-29,0r0,-162"},"\u2021":{"d":"114,-64r0,64r-29,0r0,-64r-62,0r0,-23r62,0r0,-86r-62,0r0,-22r62,0r0,-63r29,0r0,63r61,0r0,22r-61,0r0,86r61,0r0,23r-61,0"},"\u00b7":{"d":"32,-150r36,0r0,37r-36,0r0,-37","w":100},"\u00b6":{"d":"13,-193v0,-38,34,-65,74,-65r89,0r0,23r-32,0r0,281r-18,0r0,-281r-30,0r0,281r-19,0r0,-175v-36,-1,-64,-28,-64,-64","w":180},"\u2022":{"d":"165,-193r0,129r-114,0r0,-129r114,0","w":216},"\u201a":{"d":"32,0r0,-36r37,0v3,37,-8,61,-16,87r-21,0r17,-51r-17,0","w":100},"\u201e":{"d":"115,0r0,-36r38,0v3,38,-8,61,-17,87r-21,0r17,-51r-17,0xm46,0r0,-36r38,0v3,38,-8,61,-17,87r-21,0r17,-51r-17,0"},"\u201d":{"d":"115,-222r0,-36r38,0v3,38,-8,61,-17,87r-21,0r17,-51r-17,0xm46,-222r0,-36r38,0v3,38,-8,61,-17,87r-21,0r17,-51r-17,0"},"\u00bb":{"d":"67,-176r29,77r-29,78r-27,0r29,-78r-29,-77r27,0xm133,-99r-29,-77r27,0r29,77r-31,78r-27,0"},"\u2026":{"d":"78,-36r0,36r-36,0r0,-36r36,0xm198,-36r0,36r-36,0r0,-36r36,0xm318,-36r0,36r-36,0r0,-36r36,0","w":360},"\u2030":{"d":"177,-105v-24,0,-26,31,-26,49v0,18,5,41,27,41v20,0,25,-29,25,-44v0,-18,-2,-46,-26,-46xm55,4r-21,0r149,-266r21,0xm60,-244v-34,0,-40,90,1,90v20,0,25,-29,25,-44v0,-17,-3,-46,-26,-46xm59,-134v-32,1,-51,-32,-51,-66v0,-32,18,-62,53,-62v37,0,50,32,50,64v0,33,-15,64,-52,64xm125,-61v0,-31,19,-62,53,-62v38,0,50,31,50,64v0,31,-14,63,-50,63v-38,0,-53,-31,-53,-65xm297,-123v33,0,51,31,51,64v0,31,-15,63,-51,63v-38,0,-53,-32,-53,-65v0,-34,19,-62,53,-62xm297,-105v-24,0,-27,32,-27,49v0,18,5,41,27,41v20,0,26,-29,26,-44v0,-17,-3,-46,-26,-46","w":360},"\u00bf":{"d":"16,-4v0,-57,77,-70,67,-131r31,0v5,41,-18,70,-45,89v-33,23,-25,86,23,86v25,0,40,-22,40,-45r32,0v-2,43,-27,68,-71,68v-41,0,-77,-28,-77,-67xm116,-161r-34,0r0,-33r34,0r0,33","w":180},"`":{"d":"54,-216r-49,-50r27,0r40,50r-18,0","w":100},"\u00b4":{"d":"46,-216r-19,0r41,-50r27,0","w":100},"\u02c6":{"d":"50,-252r-29,36r-24,0r41,-50r24,0r41,50r-23,0","w":100},"\u02dc":{"d":"77,-222v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,0,61,34,67,-2r14,0v-1,17,-11,35,-30,35","w":100},"\u00af":{"d":"97,-230r-94,0r0,-16r94,0r0,16","w":100},"\u02d8":{"d":"-1,-263r14,0v5,39,70,38,76,0r13,0v-3,30,-24,45,-53,45v-28,0,-48,-17,-50,-45","w":100},"\u02d9":{"d":"66,-254r0,31r-32,0r0,-31r32,0","w":100},"\u00a8":{"d":"31,-254r0,31r-32,0r0,-31r32,0xm99,-223r-32,0r0,-31r32,0r0,31","w":100},"\u02da":{"d":"50,-210v-19,0,-36,-17,-36,-36v0,-19,17,-36,36,-36v19,0,36,17,36,36v0,19,-16,36,-36,36xm50,-270v-13,0,-24,11,-24,24v0,13,11,24,24,24v13,0,24,-11,24,-24v0,-13,-11,-24,-24,-24","w":100},"\u00b8":{"d":"84,45v0,32,-46,36,-74,23r6,-11v17,8,44,9,47,-12v-1,-21,-30,-8,-40,-15v12,-10,11,-33,36,-30r-17,21v20,-6,42,4,42,24","w":100},"\u02dd":{"d":"11,-216r-19,0r41,-50r27,0xm58,-216r-18,0r40,-50r28,0","w":100},"\u02db":{"d":"87,47r0,17v-26,12,-58,-2,-56,-32v1,-16,6,-36,31,-32v-29,16,-5,63,25,47","w":100},"\u02c7":{"d":"50,-229r30,-37r23,0r-41,50r-24,0r-41,-50r24,0","w":100},"\u2014":{"d":"360,-88r-360,0r0,-23r360,0r0,23","w":360},"\u00c6":{"d":"147,-258r192,0r0,75r-28,0r0,-51r-113,0r12,89r48,0r0,-38r27,0r0,99r-27,0r0,-38r-44,0r13,98r88,0r0,-55r27,0r0,79r-183,0r0,-24r37,0r-8,-61r-104,0r-33,61r36,0r0,24r-82,0r0,-24r13,0xm185,-109v-8,-42,-8,-92,-19,-130r-68,130r87,0","w":360},"\u00aa":{"d":"76,-175v-11,31,-65,25,-63,-10v2,-31,31,-31,63,-30v4,-17,-5,-32,-20,-32v-11,0,-24,8,-24,21r-16,0v1,-20,15,-32,39,-32v19,0,37,13,37,34r0,57r16,0r0,11r-32,0r0,-19xm76,-204v-20,0,-46,-5,-47,19v0,12,5,18,17,18v23,0,29,-18,30,-37xm13,-126r0,-15r95,0r0,15r-95,0","w":120},"\u0141":{"d":"206,0r-196,0r0,-24r38,0r0,-97r-38,19r0,-23r38,-19r0,-90r-38,0r0,-24r112,0r0,24r-43,0r0,68r37,-19r0,23r-37,19r0,117r98,0r0,-58r29,0r0,84","w":219,"k":{"T":27,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"\u00d8":{"d":"142,-19v79,2,105,-112,68,-181r-128,157v15,16,36,24,60,24xm231,-224v65,85,20,228,-90,228v-32,0,-58,-9,-77,-25r-25,31r-13,-11r26,-32v-68,-77,-22,-229,86,-229v31,0,57,8,79,27r25,-31r13,11xm71,-57r129,-157v-16,-17,-36,-24,-60,-24v-88,2,-102,112,-69,181","w":280},"\u0152":{"d":"181,0v-107,19,-162,-47,-162,-132v0,-87,56,-128,161,-127r157,1r0,75r-28,0r0,-51r-100,0r0,92r43,0r0,-38r26,0r0,99r-26,0r0,-37r-43,0r0,94r100,0r0,-54r28,0r0,78r-156,0xm72,-206v-46,76,-15,184,86,184v6,0,14,-1,20,-2r0,-212v-43,-7,-86,-3,-106,30","w":360},"\u00ba":{"d":"60,-247v-42,0,-39,81,0,80v19,0,30,-20,30,-41v0,-19,-7,-39,-30,-39xm60,-155v-28,0,-47,-25,-47,-52v0,-27,20,-51,49,-51v32,0,45,24,45,52v0,27,-16,51,-47,51xm13,-141r94,0r0,15r-94,0r0,-15","w":120},"\u00e6":{"d":"23,-55v0,-50,58,-56,113,-53v4,-33,-3,-64,-35,-64v-26,0,-40,15,-41,40r-30,0v-1,-37,32,-62,69,-62v24,0,51,7,57,34v9,-25,29,-34,55,-34v60,0,70,47,69,107r-117,0v-2,32,11,68,49,68v23,0,39,-21,40,-42r26,0v2,76,-119,83,-133,19v-12,64,-122,60,-122,-13xm163,-108r89,0v1,-31,-5,-63,-43,-63v-35,0,-46,35,-46,63xm136,-87v-34,1,-82,-9,-82,34v0,20,13,34,34,34v36,0,48,-36,48,-68","w":299},"\u0131":{"d":"98,0r-87,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0r0,165r28,0r0,23","w":106},"\u0142":{"d":"95,0r-87,0r0,-23r29,0r0,-116r-29,16r0,-17r29,-16r0,-81r-29,0r0,-21r59,0r0,88r28,-15r0,17r-28,16r0,129r28,0r0,23","w":100},"\u00f8":{"d":"101,-171v-55,-2,-70,74,-47,122r84,-107v-9,-9,-20,-15,-37,-15xm37,-26v-52,-60,-15,-168,66,-168v22,0,38,6,51,16r17,-21r13,9r-18,23v44,57,23,170,-65,170v-22,0,-41,-5,-55,-18r-18,23r-10,-9xm63,-37v38,44,93,-2,93,-60v0,-16,-2,-33,-9,-46"},"\u0153":{"d":"222,-194v56,0,72,48,67,106r-118,0v-3,34,15,69,47,68v25,0,41,-19,42,-43r27,0v7,75,-119,88,-130,21v-6,31,-36,45,-65,45v-112,-1,-99,-197,1,-197v32,0,56,11,65,44v10,-30,32,-44,64,-44xm171,-108r88,0v2,-29,-3,-63,-40,-63v-33,0,-47,35,-48,63xm93,-20v38,0,51,-43,51,-84v0,-29,-12,-67,-49,-67v-36,0,-50,39,-50,77v0,36,14,74,48,74","w":299},"\u00df":{"d":"109,-240v-29,0,-44,27,-44,59r0,158r17,0r0,23r-77,0r0,-23r30,0r0,-163v0,-22,1,-44,19,-59v41,-32,126,-26,125,39v0,33,-20,54,-53,58v66,3,80,91,39,132v-16,15,-39,16,-60,16r0,-23v36,3,51,-20,51,-53v0,-35,-15,-58,-53,-56r0,-27v26,0,45,-17,45,-44v0,-25,-15,-37,-39,-37"},"\u00b9":{"d":"19,-213r0,-20v13,-9,26,-18,37,-29r21,0r0,140r24,0r0,14r-70,0r0,-14r26,0r0,-121v-11,11,-24,21,-38,30","w":119},"\u00ac":{"d":"189,-56r0,-89r-162,0r0,-22r183,0r0,111r-21,0","w":237},"\u00b5":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0v-1,-11,2,-27,-1,-36v-7,37,-49,48,-80,31v-11,-5,-6,19,-4,36v2,17,-6,27,-15,27v-29,-9,-1,-64,-12,-92v-4,-42,-1,-88,-2,-133r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54","w":219},"\u2122":{"d":"305,-258r0,147r-23,0r0,-126r-51,126r-14,0r-49,-126r0,126r-23,0r0,-147r37,0r42,104r44,-104r37,0xm119,-258r0,21r-47,0r0,126r-25,0r0,-126r-47,0r0,-21r119,0","w":352},"\u00d0":{"d":"183,-49v53,-62,29,-190,-71,-185r-35,0r0,85r51,0r0,18r-51,0r0,107v45,0,79,6,106,-25xm241,-131v1,82,-48,141,-140,131r-92,0r0,-24r36,0r0,-107r-36,0r0,-18r36,0r0,-85r-36,0r0,-24r100,0v85,-8,131,50,132,127","w":259},"\u00bd":{"d":"81,0r-21,0r159,-262r21,0xm9,-213r0,-20v13,-9,25,-18,36,-29r22,0r0,140r23,0r0,14r-69,0r0,-14r25,0r0,-121v-11,11,-23,21,-37,30xm291,0r-103,0r0,-24v68,-57,79,-75,79,-90v0,-16,-10,-29,-28,-29v-20,0,-29,16,-29,32r-21,0v2,-32,20,-46,50,-46v55,0,64,59,27,84v-19,21,-40,38,-60,58r67,0r0,-25r18,0r0,40","w":300},"\u00b1":{"d":"26,-140r80,0r0,-80r22,0r0,80r80,0r0,22r-80,0r0,81r-22,0r0,-81r-80,0r0,-22xm208,0r-182,0r0,-22r182,0r0,22","w":237},"\u00de":{"d":"175,-131v0,-47,-43,-60,-97,-53r0,104v54,5,97,-3,97,-51xm207,-132v0,45,-39,84,-87,76r-42,0r0,32r37,0r0,24r-105,0r0,-24r37,0r0,-210r-37,0r0,-24r105,0r0,24r-37,0r0,26r46,0v54,-4,83,31,83,76","w":219},"\u00bc":{"d":"249,-41r-72,0r0,-21r66,-93r25,0r0,100r23,0r0,14r-23,0r0,27r21,0r0,14r-66,0r0,-14r26,0r0,-27xm92,0r-21,0r159,-262r21,0xm192,-55r57,0r0,-82xm9,-213r0,-20v13,-9,25,-18,36,-29r22,0r0,140r23,0r0,14r-69,0r0,-14r25,0r0,-121v-11,11,-23,21,-37,30","w":300},"\u00f7":{"d":"26,-140r182,0r0,22r-182,0r0,-22xm99,-37r0,-37r36,0r0,37r-36,0xm99,-184r0,-36r36,0r0,36r-36,0","w":237},"\u00a6":{"d":"106,0r0,-106r22,0r0,106r-22,0xm106,-157r0,-106r22,0r0,106r-22,0","w":237},"\u00b0":{"d":"126,-208v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm112,-208v0,-22,-18,-40,-40,-40v-22,0,-40,18,-40,40v0,22,18,39,40,39v22,0,40,-17,40,-39","w":144},"\u00fe":{"d":"207,-96v0,49,-28,99,-76,99v-29,0,-51,-11,-64,-38r0,72r30,0r0,21r-90,0r0,-21r30,0r0,-273r-29,0r0,-22r59,0r0,107v13,-28,33,-43,65,-43v46,0,75,45,75,98xm67,-96v0,38,18,78,54,77v40,0,56,-39,56,-74v0,-37,-16,-79,-53,-79v-38,0,-57,37,-57,76","w":219},"\u00be":{"d":"92,0r-21,0r159,-262r21,0xm249,-41r-72,0r0,-21r66,-93r25,0r0,100r23,0r0,14r-23,0r0,27r21,0r0,14r-66,0r0,-14r26,0r0,-27xm192,-55r57,0r0,-82xm90,-220v0,-37,-55,-34,-58,-5r0,6r-21,0v0,-28,21,-43,51,-43v56,0,67,73,14,78v20,5,36,15,36,38v0,29,-22,44,-52,44v-32,0,-51,-16,-51,-46r22,0v0,16,9,31,28,31v20,0,32,-12,32,-30v1,-19,-19,-31,-38,-30r0,-14v21,0,37,-8,37,-29","w":300},"\u00b2":{"d":"112,-105r-104,0r0,-25v68,-57,80,-75,80,-90v0,-16,-10,-28,-28,-28v-20,0,-29,16,-29,32r-21,0v2,-32,20,-46,50,-46v54,0,62,58,27,83v-19,21,-41,39,-61,59r68,0r0,-25r18,0r0,40","w":119},"\u00ae":{"d":"147,4v-73,0,-132,-60,-132,-133v0,-74,60,-133,133,-133v73,0,133,60,133,133v0,74,-61,133,-134,133xm33,-129v0,64,52,116,116,116v63,0,114,-54,114,-116v0,-64,-53,-115,-116,-115v-63,0,-114,52,-114,115xm94,-210v58,0,129,-10,128,44v0,30,-20,42,-48,43r45,72r-26,0r-43,-72r-34,0r0,72r-22,0r0,-159xm116,-140v36,-2,83,11,83,-28v0,-37,-49,-22,-83,-25r0,53","w":295},"\u2212":{"d":"210,-118r-183,0r0,-22r183,0r0,22","w":237},"\u00f0":{"d":"100,-19v76,0,76,-142,0,-144v-40,0,-56,39,-56,72v0,33,16,72,56,72xm61,-198r-11,-11r36,-22v-16,-8,-33,-13,-47,-15r0,-23v28,4,52,11,71,23r40,-23r12,11r-37,22v44,33,63,87,63,140v0,58,-30,99,-88,99v-58,0,-87,-45,-87,-98v0,-75,80,-112,131,-73v-8,-23,-24,-40,-43,-53"},"\u00d7":{"d":"26,-53r77,-76r-77,-75r15,-16r78,76r78,-76r15,16r-78,75r78,76r-16,16r-77,-76r-78,76","w":237},"\u00b3":{"d":"61,-248v-16,1,-30,11,-29,29r-22,0v0,-28,22,-43,52,-43v56,0,66,73,13,78v20,5,37,15,37,38v0,29,-22,44,-52,44v-32,0,-51,-16,-51,-46r22,0v0,16,9,31,28,31v20,0,32,-12,32,-30v1,-19,-19,-31,-38,-30r0,-14v21,0,36,-8,36,-29v0,-16,-10,-28,-28,-28","w":119},"\u00a9":{"d":"147,4v-73,0,-132,-60,-132,-133v0,-73,59,-133,133,-133v72,0,132,59,132,132v0,75,-58,134,-133,134xm33,-129v0,64,52,115,115,115v63,0,114,-51,114,-114v0,-64,-51,-116,-115,-116v-63,0,-114,52,-114,115xm198,-102r22,7v-10,31,-42,45,-72,45v-46,0,-75,-33,-75,-78v0,-47,33,-81,80,-81v28,0,61,13,67,43r-25,6v-21,-66,-99,-25,-99,31v0,34,18,63,55,63v24,0,39,-13,47,-36","w":295},"\u00c1":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm136,-286r-19,0r41,-50r27,0","w":280},"\u00c2":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm140,-322r-29,36r-24,0r41,-50r24,0r41,50r-23,0","w":280},"\u00c4":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm121,-320r0,31r-32,0r0,-31r32,0xm189,-289r-32,0r0,-31r32,0r0,31","w":280},"\u00c0":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm144,-286r-49,-50r27,0r40,50r-18,0","w":280},"\u00c5":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm140,-274v-19,0,-36,-17,-36,-36v0,-19,17,-36,36,-36v19,0,36,17,36,36v0,19,-16,36,-36,36xm140,-334v-13,0,-24,11,-24,24v0,13,11,24,24,24v13,0,24,-11,24,-24v0,-13,-11,-24,-24,-24","w":280},"\u00c3":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm167,-292v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,0,61,34,67,-2r14,0v-1,17,-11,35,-30,35","w":280},"\u00c7":{"d":"21,-129v2,-78,41,-133,116,-133v32,0,61,11,75,42r0,-38r26,0r0,92r-28,0v-3,-42,-26,-71,-70,-71v-63,0,-84,50,-84,105v0,55,18,110,82,110v40,0,66,-26,68,-65r33,0v-2,60,-45,92,-104,91r-13,17v20,-6,41,3,41,24v-1,32,-46,36,-73,23r6,-11v17,8,44,9,47,-12v-1,-21,-30,-8,-40,-15r19,-26v-62,-2,-102,-68,-101,-133","w":259},"\u00c9":{"d":"216,0r-206,0r0,-24r37,0r0,-210r-37,0r0,-24r206,0r0,77r-28,0r0,-53r-110,0r0,91r54,0r0,-39r26,0r0,101r-26,0r0,-38r-54,0r0,95r110,0r0,-56r28,0r0,80xm116,-286r-18,0r40,-50r28,0","w":240},"\u00ca":{"d":"216,0r-206,0r0,-24r37,0r0,-210r-37,0r0,-24r206,0r0,77r-28,0r0,-53r-110,0r0,91r54,0r0,-39r26,0r0,101r-26,0r0,-38r-54,0r0,95r110,0r0,-56r28,0r0,80xm120,-322r-29,36r-23,0r40,-50r24,0r41,50r-23,0","w":240},"\u00cb":{"d":"216,0r-206,0r0,-24r37,0r0,-210r-37,0r0,-24r206,0r0,77r-28,0r0,-53r-110,0r0,91r54,0r0,-39r26,0r0,101r-26,0r0,-38r-54,0r0,95r110,0r0,-56r28,0r0,80xm101,-320r0,31r-32,0r0,-31r32,0xm169,-289r-32,0r0,-31r32,0r0,31","w":240},"\u00c8":{"d":"216,0r-206,0r0,-24r37,0r0,-210r-37,0r0,-24r206,0r0,77r-28,0r0,-53r-110,0r0,91r54,0r0,-39r26,0r0,101r-26,0r0,-38r-54,0r0,95r110,0r0,-56r28,0r0,80xm124,-286r-49,-50r28,0r40,50r-19,0","w":240},"\u00cd":{"d":"8,-234r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r36,0r0,-210r-36,0xm56,-286r-19,0r41,-50r27,0","w":119},"\u00ce":{"d":"8,-234r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r36,0r0,-210r-36,0xm60,-322r-29,36r-23,0r40,-50r24,0r41,50r-23,0","w":119},"\u00cf":{"d":"8,-234r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r36,0r0,-210r-36,0xm41,-320r0,31r-32,0r0,-31r32,0xm109,-289r-32,0r0,-31r32,0r0,31","w":119},"\u00cc":{"d":"8,-234r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r36,0r0,-210r-36,0xm64,-286r-49,-50r27,0r40,50r-18,0","w":119},"\u00d1":{"d":"111,0r-101,0r0,-24r37,0r0,-210r-37,0r0,-24r83,0r114,225r0,-201r-36,0r0,-24r99,0r0,24r-35,0r0,234r-43,0r-118,-231r0,207r37,0r0,24xm167,-292v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,0,61,34,67,-2r14,0v-1,17,-11,35,-30,35","w":280},"\u00d3":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219xm136,-286r-19,0r41,-50r27,0","w":280},"\u00d4":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219xm140,-322r-29,36r-24,0r41,-50r24,0r41,50r-23,0","w":280},"\u00d6":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219xm121,-320r0,31r-32,0r0,-31r32,0xm189,-289r-32,0r0,-31r32,0r0,31","w":280},"\u00d2":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219xm144,-286r-49,-50r27,0r40,50r-18,0","w":280},"\u00d5":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219xm167,-292v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,0,61,34,67,-2r14,0v-1,17,-11,35,-30,35","w":280},"\u0160":{"d":"17,-192v0,-72,99,-95,134,-41r0,-25r28,0r0,84r-28,0v-1,-38,-13,-64,-55,-64v-39,0,-64,50,-33,72v42,30,122,27,122,97v0,73,-113,103,-141,36r0,33r-27,0r0,-87r27,0v1,37,19,67,59,67v27,0,49,-19,49,-46v0,-44,-48,-46,-79,-60v-32,-15,-56,-26,-56,-66xm100,-299r30,-37r23,0r-41,50r-24,0r-40,-50r23,0"},"\u00da":{"d":"129,4v-53,2,-92,-45,-92,-104r0,-134r-32,0r0,-24r102,0r0,24r-39,0v5,90,-25,212,62,212v42,0,64,-40,64,-87r0,-125r-38,0r0,-24r98,0r0,24r-32,0r0,132v4,63,-35,104,-93,106xm126,-286r-19,0r41,-50r27,0","w":259},"\u00db":{"d":"129,4v-53,2,-92,-45,-92,-104r0,-134r-32,0r0,-24r102,0r0,24r-39,0v5,90,-25,212,62,212v42,0,64,-40,64,-87r0,-125r-38,0r0,-24r98,0r0,24r-32,0r0,132v4,63,-35,104,-93,106xm130,-322r-30,36r-23,0r41,-50r24,0r41,50r-24,0","w":259},"\u00dc":{"d":"129,4v-53,2,-92,-45,-92,-104r0,-134r-32,0r0,-24r102,0r0,24r-39,0v5,90,-25,212,62,212v42,0,64,-40,64,-87r0,-125r-38,0r0,-24r98,0r0,24r-32,0r0,132v4,63,-35,104,-93,106xm111,-320r0,31r-33,0r0,-31r33,0xm179,-289r-32,0r0,-31r32,0r0,31","w":259},"\u00d9":{"d":"129,4v-53,2,-92,-45,-92,-104r0,-134r-32,0r0,-24r102,0r0,24r-39,0v5,90,-25,212,62,212v42,0,64,-40,64,-87r0,-125r-38,0r0,-24r98,0r0,24r-32,0r0,132v4,63,-35,104,-93,106xm134,-286r-49,-50r27,0r40,50r-18,0","w":259},"\u00dd":{"d":"175,0r-111,0r0,-24r40,0r0,-81r-80,-129r-20,0r0,-24r92,0r0,24r-36,0r61,101r61,-101r-34,0r0,-24r88,0r0,24r-20,0r-81,129r0,81r40,0r0,24xm116,-286r-18,0r40,-50r28,0","w":240,"k":{"v":13,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":29,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,":":20,";":25,"p":13,"q":20}},"\u0178":{"d":"175,0r-111,0r0,-24r40,0r0,-81r-80,-129r-20,0r0,-24r92,0r0,24r-36,0r61,101r61,-101r-34,0r0,-24r88,0r0,24r-20,0r-81,129r0,81r40,0r0,24xm101,-320r0,31r-32,0r0,-31r32,0xm169,-289r-32,0r0,-31r32,0r0,31","w":240,"k":{"v":13,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":29,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,":":20,";":25,"p":13,"q":20}},"\u017d":{"d":"205,0r-191,0r0,-33r152,-200r-121,0r0,52r-29,0r0,-77r186,0r0,30r-154,203r129,0r0,-54r28,0r0,79xm110,-299r30,-37r23,0r-41,50r-24,0r-40,-50r23,0","w":219},"\u00e1":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm96,-216r-19,0r41,-50r27,0"},"\u00e2":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm100,-252r-29,36r-23,0r40,-50r24,0r41,50r-23,0"},"\u00e4":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm81,-254r0,31r-32,0r0,-31r32,0xm149,-223r-32,0r0,-31r32,0r0,31"},"\u00e0":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm104,-216r-49,-50r27,0r40,50r-18,0"},"\u00e5":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm100,-210v-19,0,-36,-17,-36,-36v0,-19,17,-36,36,-36v19,0,36,17,36,36v0,19,-16,36,-36,36xm100,-270v-13,0,-24,11,-24,24v0,13,11,24,24,24v13,0,24,-11,24,-24v0,-13,-11,-24,-24,-24"},"\u00e3":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm127,-222v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,1,62,35,67,-2r14,0v-1,17,-11,35,-30,35"},"\u00e7":{"d":"84,1v-100,-11,-91,-195,10,-195v24,0,40,8,53,29r0,-23r23,0r0,69r-23,0v0,-26,-19,-51,-46,-51v-80,2,-71,148,0,149v24,0,41,-20,44,-43r27,0v-1,42,-35,67,-75,67r-15,18v20,-6,41,3,41,24v-2,33,-46,35,-73,23r6,-11v17,8,44,9,47,-12v-1,-21,-30,-8,-40,-15","w":180},"\u00e9":{"d":"105,-194v56,2,86,45,82,106r-138,0v-1,35,23,69,61,69v23,0,44,-18,47,-40r28,0v-7,41,-39,62,-80,62v-61,0,-87,-41,-87,-97v0,-54,36,-101,87,-100xm50,-110r106,0v0,-30,-17,-62,-51,-62v-35,0,-53,31,-55,62xm96,-216r-19,0r41,-50r27,0"},"\u00ea":{"d":"105,-194v56,2,86,45,82,106r-138,0v-1,35,23,69,61,69v23,0,44,-18,47,-40r28,0v-7,41,-39,62,-80,62v-61,0,-87,-41,-87,-97v0,-54,36,-101,87,-100xm50,-110r106,0v0,-30,-17,-62,-51,-62v-35,0,-53,31,-55,62xm100,-252r-29,36r-23,0r40,-50r24,0r41,50r-23,0"},"\u00eb":{"d":"105,-194v56,2,86,45,82,106r-138,0v-1,35,23,69,61,69v23,0,44,-18,47,-40r28,0v-7,41,-39,62,-80,62v-61,0,-87,-41,-87,-97v0,-54,36,-101,87,-100xm50,-110r106,0v0,-30,-17,-62,-51,-62v-35,0,-53,31,-55,62xm81,-254r0,31r-32,0r0,-31r32,0xm149,-223r-32,0r0,-31r32,0r0,31"},"\u00e8":{"d":"105,-194v56,2,86,45,82,106r-138,0v-1,35,23,69,61,69v23,0,44,-18,47,-40r28,0v-7,41,-39,62,-80,62v-61,0,-87,-41,-87,-97v0,-54,36,-101,87,-100xm50,-110r106,0v0,-30,-17,-62,-51,-62v-35,0,-53,31,-55,62xm104,-216r-49,-50r27,0r40,50r-18,0"},"\u00ed":{"d":"98,0r-87,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0r0,165r28,0r0,23xm49,-216r-18,0r40,-50r28,0","w":106},"\u00ee":{"d":"98,0r-87,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0r0,165r28,0r0,23xm53,-252r-29,36r-23,0r40,-50r24,0r41,50r-23,0","w":106},"\u00ef":{"d":"98,0r-87,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0r0,165r28,0r0,23xm34,-254r0,31r-32,0r0,-31r32,0xm102,-223r-32,0r0,-31r32,0r0,31","w":106},"\u00ec":{"d":"98,0r-87,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0r0,165r28,0r0,23xm57,-216r-49,-50r28,0r40,50r-19,0","w":106},"\u00f1":{"d":"118,-171v-64,0,-47,84,-49,148r30,0r0,23r-90,0r0,-23r31,0r0,-144r-30,0r0,-21r59,0r0,34v17,-62,116,-51,116,24r0,107r29,0r0,23r-88,0r0,-23r30,0v-7,-57,23,-148,-38,-148xm137,-222v-25,0,-61,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,1,62,35,67,-2r14,0v-1,17,-11,35,-30,35","w":219},"\u00f3":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98xm96,-216r-19,0r41,-50r27,0"},"\u00f4":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98xm100,-252r-29,36r-23,0r40,-50r24,0r41,50r-23,0"},"\u00f6":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98xm81,-254r0,31r-32,0r0,-31r32,0xm149,-223r-32,0r0,-31r32,0r0,31"},"\u00f2":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98xm104,-216r-49,-50r27,0r40,50r-18,0"},"\u00f5":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98xm127,-222v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,1,62,35,67,-2r14,0v-1,17,-11,35,-30,35"},"\u0161":{"d":"21,-137v0,-58,85,-78,114,-32r0,-19r23,0r0,61r-23,0v2,-26,-16,-43,-45,-45v-28,-2,-53,29,-32,51v38,19,100,6,102,64v2,64,-96,83,-119,27r0,30r-22,0r0,-65r22,0v-4,46,89,68,89,11v0,-27,-29,-28,-49,-31v-32,-5,-60,-14,-60,-52xm90,-229r30,-37r23,0r-41,50r-24,0r-41,-50r23,0","w":180},"\u00fa":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0r0,-36v-9,28,-25,39,-55,39v-40,0,-59,-27,-59,-76r0,-94r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54xm106,-216r-19,0r41,-50r28,0","w":219},"\u00fb":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0r0,-36v-9,28,-25,39,-55,39v-40,0,-59,-27,-59,-76r0,-94r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54xm110,-252r-29,36r-23,0r40,-50r24,0r41,50r-23,0","w":219},"\u00fc":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0r0,-36v-9,28,-25,39,-55,39v-40,0,-59,-27,-59,-76r0,-94r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54xm91,-254r0,31r-32,0r0,-31r32,0xm159,-223r-32,0r0,-31r32,0r0,31","w":219},"\u00f9":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0r0,-36v-9,28,-25,39,-55,39v-40,0,-59,-27,-59,-76r0,-94r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54xm114,-216r-49,-50r28,0r39,50r-18,0","w":219},"\u00fd":{"d":"6,-188r80,0r0,21r-29,0r46,132r45,-132r-30,0r0,-21r77,0r0,21r-16,0r-74,197v-7,25,-38,39,-70,30r0,-24v30,13,47,-13,52,-36r-63,-167r-18,0r0,-21xm96,-216r-19,0r41,-50r27,0","k":{",":27,".":27}},"\u00ff":{"d":"6,-188r80,0r0,21r-29,0r46,132r45,-132r-30,0r0,-21r77,0r0,21r-16,0r-74,197v-7,25,-38,39,-70,30r0,-24v30,13,47,-13,52,-36r-63,-167r-18,0r0,-21xm81,-254r0,31r-32,0r0,-31r32,0xm149,-223r-32,0r0,-31r32,0r0,31","k":{",":27,".":27}},"\u017e":{"d":"162,0r-144,0r0,-24r109,-143r-81,0r0,39r-26,0r0,-60r141,0r0,24r-110,141r86,0r0,-41r25,0r0,64xm90,-229r30,-37r23,0r-41,50r-24,0r-41,-50r23,0","w":180},"\u2206":{"d":"11,0r0,-19r90,-245r33,0r88,245r0,19r-211,0xm40,-23r152,0r-76,-207","w":233},"\u2126":{"d":"17,-23v17,-1,39,2,54,-1v-26,-23,-49,-64,-49,-115v0,-72,46,-122,108,-122v65,0,106,58,106,121v1,54,-27,94,-50,117r54,0r0,23r-86,0r0,-17v63,-29,82,-220,-24,-220v-48,0,-79,45,-79,103v0,55,26,99,53,117r0,17r-87,0r0,-23","w":258},"\u03bc":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0v-1,-11,2,-27,-1,-36v-7,37,-49,48,-80,31v-11,-5,-6,19,-4,36v2,17,-6,27,-15,27v-29,-9,-1,-64,-12,-92v-4,-42,-1,-88,-2,-133r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54","w":219},"\u03c0":{"d":"197,-167r-29,0v1,50,-4,130,5,167r-27,0v-11,-32,-4,-120,-6,-167r-65,0v-2,47,-12,132,-26,167r-27,0v14,-40,24,-118,26,-167v-22,0,-32,2,-40,5r-5,-19v40,-20,136,-8,196,-11","w":206},"\u20ac":{"d":"161,-189v-2,-31,-18,-50,-48,-50v-30,0,-45,33,-50,75r94,0r-7,19r-89,0r0,29r81,0r-6,18r-73,0v4,42,18,78,51,78v28,0,41,-21,44,-43r31,0v-6,47,-35,68,-75,68v-46,0,-82,-50,-84,-103r-29,0r7,-18r21,0v-1,-9,-1,-19,0,-29r-28,0r7,-19r23,0v5,-51,34,-99,81,-98v25,0,42,12,49,27r0,-25r27,0r0,71r-27,0"},"\u2113":{"d":"154,-55r13,12v-16,31,-39,46,-67,46v-44,-1,-60,-33,-60,-73v-6,5,-14,11,-21,17r-9,-16v10,-9,20,-17,29,-26r0,-100v0,-67,28,-88,56,-88v31,0,45,26,45,59v0,46,-29,91,-74,135v-3,42,15,69,39,69v22,0,40,-19,49,-35xm95,-262v-35,0,-29,97,-29,145v31,-35,55,-71,55,-107v0,-23,-7,-38,-26,-38","w":175},"\u212e":{"d":"67,-51v36,64,148,61,189,3r22,0v-26,31,-69,52,-117,52v-82,0,-148,-60,-148,-133v0,-74,66,-133,148,-133v83,1,150,59,148,137r-242,1r0,73xm255,-208v-37,-62,-153,-62,-188,2v1,24,-3,54,2,74r184,0v6,-20,0,-52,2,-76","w":321},"\u2202":{"d":"37,-247r-10,-21v69,-49,152,-10,152,118v0,87,-32,153,-94,153v-47,0,-70,-43,-70,-85v0,-58,36,-94,77,-94v34,0,52,24,60,34v8,-94,-54,-154,-115,-105xm43,-82v0,35,17,61,45,61v34,0,55,-45,60,-93v-5,-16,-24,-39,-51,-39v-30,0,-54,32,-54,71","w":197},"\u220f":{"d":"243,-231r-39,0r0,267r-28,0r0,-267r-100,0r0,267r-27,0r0,-267r-40,0r0,-26r234,0r0,26","w":252},"\u2211":{"d":"192,36r-184,0r0,-19r97,-128r-92,-126r0,-20r173,0r0,24v-44,2,-96,-4,-135,2r86,117r-93,123r148,0r0,27","w":199},"\u2219":{"d":"32,-150r36,0r0,37r-36,0r0,-37","w":100},"\u221a":{"d":"207,-306r-80,361r-25,0r-57,-171r-27,11r-6,-17r50,-20r46,136v2,9,5,20,6,27r72,-327r21,0","w":207},"\u221e":{"d":"264,-107v0,36,-27,58,-56,58v-23,0,-42,-13,-67,-42v-19,22,-38,42,-68,42v-30,0,-55,-24,-55,-56v0,-33,24,-58,57,-58v27,0,49,20,68,43v19,-21,37,-43,68,-43v31,0,53,23,53,56xm37,-105v0,21,15,39,39,39v23,0,40,-23,55,-39v-16,-20,-32,-41,-58,-41v-23,0,-36,19,-36,41xm208,-146v-24,0,-43,27,-56,40v24,27,38,40,57,40v23,0,36,-20,36,-39v0,-26,-16,-41,-37,-41","w":282},"\u222b":{"d":"50,-222v0,-64,22,-104,74,-87r-4,20v-36,-12,-44,20,-44,70v0,58,5,125,5,185v0,70,-22,105,-76,87r5,-20v38,10,45,-13,45,-67v0,-61,-5,-129,-5,-188","w":130},"\u2248":{"d":"66,-159v45,0,82,58,109,1r11,10v-10,19,-24,35,-46,35v-24,0,-49,-28,-76,-28v-17,0,-27,13,-36,27r-12,-10v11,-21,29,-35,50,-35xm66,-96v45,0,82,56,109,0r11,10v-10,19,-24,35,-46,35v-24,0,-50,-28,-76,-28v-17,0,-27,13,-36,27r-12,-10v11,-22,29,-34,50,-34","w":203},"\u2260":{"d":"144,-185r-16,36r57,0r0,18r-64,0r-24,53r88,0r0,18r-95,0r-20,43r-14,-7r16,-36r-54,0r0,-18r62,0r24,-53r-86,0r0,-18r93,0r19,-42","w":203},"\u2264":{"d":"184,-36r-163,-82r0,-19r163,-82r0,22r-144,70r144,69r0,22xm185,-2r-167,0r0,-19r167,0r0,19","w":203},"\u2265":{"d":"21,-219r163,82r0,19r-163,82r0,-22r144,-70r-144,-69r0,-22xm184,-2r-165,0r0,-19r165,0r0,19","w":203},"\u25ca":{"d":"188,-129r-74,146r-23,0r-71,-146r73,-144r23,0xm162,-128r-51,-102v-4,-6,-5,-16,-8,-19v-16,43,-39,80,-58,120r51,103v4,8,5,16,8,19v16,-43,39,-80,58,-121","w":207},"\u00a0":{"w":100},"\u00ad":{"d":"18,-86r0,-27r85,0r0,27r-85,0","w":119},"\u02c9":{"d":"97,-230r-94,0r0,-16r94,0r0,16","w":100},"\u03a9":{"d":"17,-23v17,-1,39,2,54,-1v-26,-23,-49,-64,-49,-115v0,-72,46,-122,108,-122v65,0,106,58,106,121v1,54,-27,94,-50,117r54,0r0,23r-86,0r0,-17v63,-29,82,-220,-24,-220v-48,0,-79,45,-79,103v0,55,26,99,53,117r0,17r-87,0r0,-23","w":258},"\u2215":{"d":"-39,0r-21,0r159,-262r21,0","w":60}}});Cufon.registerFont({"w":200,"face":{"font-family":"glyphabd","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 7 3 4 5 5 2 2 4","ascent":"258","descent":"-102","x-height":"4","bbox":"-53 -351 360 76.1086","underline-thickness":"19.44","underline-position":"-15.84","stemv":"48","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"\ufb01":{"d":"120,-237v-23,0,-40,18,-35,45r118,0r0,161r24,0r0,31r-94,0r0,-31r22,0r0,-130r-70,0r0,130r23,0r0,31r-97,0r0,-31r26,0r0,-130r-28,0r0,-31r28,0v-11,-51,42,-77,88,-77v37,0,73,13,76,56r-54,0v-1,-13,-13,-24,-27,-24","w":233,"k":{"\u2019":-6}},"\ufb02":{"d":"156,-234v-41,-5,-79,-1,-71,42r31,0r0,31r-31,0r0,130r22,0r0,31r-96,0r0,-31r26,0r0,-130r-28,0r0,-31r28,0v-9,-91,94,-82,166,-67r0,228r24,0r0,31r-94,0r0,-31r23,0r0,-203","w":233,"k":{"\u2019":-6}},"!":{"d":"42,-71r-10,-187r57,0r-10,187r-37,0xm36,0r0,-48r49,0r0,48r-49,0","w":119},"\"":{"d":"118,-154r-26,0r-9,-104r45,0xm49,-154r-27,0r-9,-104r45,0","w":144},"#":{"d":"141,-86r-12,86r-28,0r12,-86r-37,0r-12,86r-27,0r12,-86r-44,0r0,-27r48,0r6,-37r-43,0r0,-27r47,0r11,-81r27,0r-11,81r37,0r12,-81r27,0r-12,81r41,0r0,27r-45,0r-5,37r40,0r0,27r-44,0xm123,-150r-37,0r-5,37r36,0"},"$":{"d":"185,-173r-42,0v-1,-31,-11,-50,-30,-55r0,76v37,11,77,31,77,80v0,49,-31,75,-77,76r0,31r-27,0r0,-33v-15,-4,-29,-12,-36,-27r0,25r-40,0r0,-90r42,0v0,26,8,54,34,60r0,-82v-38,-14,-76,-28,-76,-76v0,-46,29,-75,76,-75r0,-31r27,0r0,35v10,3,21,8,32,22r0,-21r40,0r0,85xm86,-229v-15,2,-27,17,-27,33v0,19,12,28,27,34r0,-67xm113,-102r0,71v15,-4,27,-16,27,-35v0,-21,-11,-30,-27,-36"},"%":{"d":"215,-104v-19,0,-20,28,-20,42v0,14,1,43,21,43v19,0,20,-27,20,-41v0,-15,0,-44,-21,-44xm93,4r-30,0r143,-266r30,0xm84,-239v-19,0,-20,29,-20,42v0,13,2,44,20,44v19,0,21,-30,21,-44v0,-14,-2,-42,-21,-42xm214,-127v73,-1,69,129,3,131v-74,1,-67,-134,-3,-131xm33,-194v0,-32,16,-68,49,-68v39,0,53,30,53,65v0,32,-12,67,-50,67v-36,0,-52,-32,-52,-64","w":299},"&":{"d":"104,-168v14,-8,31,-23,31,-40v0,-17,-9,-29,-27,-29v-41,2,-29,53,-4,69xm175,-208v0,34,-23,54,-45,69r52,57v8,-13,12,-28,13,-43r-22,0r0,-30r87,0r0,30r-28,0v-2,25,-10,50,-24,71r19,22r37,0r0,32r-67,0v-7,-5,-14,-24,-22,-18v-57,44,-158,22,-158,-56v0,-36,21,-58,51,-74v-18,-13,-31,-35,-31,-59v0,-40,35,-59,71,-59v37,0,67,18,67,58xm95,-117v-41,19,-40,92,16,90v14,0,34,-9,43,-20","w":280},"\u2019":{"d":"26,-262r49,0v3,41,-6,69,-17,96r-33,0r19,-49r-18,0r0,-47","w":100,"k":{"\u2019":6,"s":13,"\u0161":13}},"(":{"d":"69,-269r36,0v-60,98,-58,225,0,322r-36,0v-29,-50,-51,-106,-51,-165v0,-56,24,-109,51,-157","w":119},")":{"d":"98,-112v0,61,-22,114,-52,165r-36,0v60,-97,59,-226,0,-322r36,0v28,46,52,102,52,157","w":119},"*":{"d":"63,-188r-44,-6r11,-39r39,23r-6,-48r35,0r-7,49r40,-22r11,37r-44,6r31,35r-29,23r-20,-43r-20,43r-30,-23","w":159},"+":{"d":"27,-145r75,0r0,-75r33,0r0,75r75,0r0,33r-75,0r0,75r-33,0r0,-75r-75,0r0,-33","w":237},",":{"d":"26,-48r49,0v3,41,-6,69,-17,96r-33,0r19,-48r-18,0r0,-48","w":100},"-":{"d":"23,-84r0,-36r88,0r0,36r-88,0","w":133},".":{"d":"75,0r-49,0r0,-48r49,0r0,48","w":100},"\/":{"d":"38,0r-33,0r95,-258r33,0","w":140},"0":{"d":"101,-29v51,-10,37,-88,35,-144v-1,-23,-8,-60,-36,-57v-42,5,-38,65,-38,108v0,41,-1,89,39,93xm187,-127v-1,64,-20,129,-88,131v-64,2,-86,-71,-86,-137v0,-58,16,-129,88,-129v68,0,87,70,86,135"},"1":{"d":"31,-168r0,-44v21,-14,41,-29,60,-46r47,0r0,226r33,0r0,32r-118,0r0,-32r35,0r0,-178v-17,15,-38,28,-57,42"},"2":{"d":"180,-192v-8,75,-78,114,-120,160r83,0r0,-38r40,0r0,70r-170,0r0,-47r93,-96v25,-22,40,-86,-8,-86v-26,0,-36,24,-36,47r-49,0v2,-52,33,-80,85,-80v43,0,86,28,82,70"},"3":{"d":"185,-70v2,48,-37,75,-86,74v-49,0,-86,-25,-86,-77r50,0v1,24,11,43,38,43v20,0,34,-21,34,-42v0,-28,-19,-52,-53,-44r0,-32v30,1,50,-11,50,-43v0,-20,-11,-39,-33,-39v-25,0,-35,22,-35,44r-49,0v-4,-98,162,-103,166,-9v1,35,-20,56,-52,63v32,1,55,26,56,62"},"4":{"d":"114,-214r-71,117r71,0r0,-117xm114,-66r-106,0r0,-45r95,-147r59,0r0,161r28,0r0,31r-28,0r0,35r26,0r0,31r-108,0r0,-31r34,0r0,-35"},"5":{"d":"18,-69r50,0v0,21,10,39,33,39v29,0,38,-24,38,-49v0,-24,-6,-55,-37,-55v-19,0,-31,12,-34,30r-47,0r3,-154r152,0r0,35r-107,0r-1,80v38,-56,120,-10,120,57v0,55,-32,90,-88,90v-46,0,-82,-25,-82,-73"},"6":{"d":"188,-83v0,48,-36,87,-84,87v-75,0,-90,-65,-90,-127v0,-66,20,-139,99,-139v41,0,71,25,72,67r-47,0v0,-17,-10,-36,-29,-36v-44,0,-48,68,-48,101v10,-21,28,-37,52,-37v51,0,75,36,75,84xm105,-26v47,-2,52,-106,-1,-108v-53,3,-56,106,1,108"},"7":{"d":"56,-179r-42,0r0,-79r175,0v4,66,-29,97,-47,147r-40,111r-53,0r46,-122r46,-101r-85,0r0,44"},"8":{"d":"135,-134v34,5,50,33,50,65v0,51,-36,73,-84,73v-50,0,-86,-21,-86,-75v0,-32,20,-58,53,-63v-31,-7,-50,-27,-50,-59v0,-49,37,-69,82,-69v46,0,83,20,83,70v0,29,-20,53,-48,58xm100,-232v-24,0,-36,17,-36,40v0,23,11,42,36,42v26,0,36,-19,36,-43v0,-22,-13,-39,-36,-39xm101,-27v24,0,38,-23,38,-48v0,-23,-13,-45,-39,-45v-28,0,-38,23,-38,48v0,24,13,45,39,45"},"9":{"d":"186,-134v0,67,-29,138,-99,138v-41,0,-70,-24,-72,-66r48,0v1,19,9,36,30,36v43,0,45,-61,47,-102v-10,24,-29,38,-55,38v-44,0,-72,-41,-72,-85v0,-49,35,-89,84,-87v67,3,89,58,89,128xm98,-231v-27,-1,-38,27,-38,55v0,24,8,53,37,53v55,0,52,-107,1,-108"},":":{"d":"84,-48r0,48r-49,0r0,-48r49,0xm35,-134r0,-47r49,0r0,47r-49,0","w":119},";":{"d":"36,0r0,-48r49,0v3,41,-6,69,-17,96r-33,0r20,-48r-19,0xm36,-134r0,-47r49,0r0,47r-49,0","w":119},"<":{"d":"214,-57r0,33r-194,-89r0,-32r194,-89r0,33r-162,72","w":237},"=":{"d":"27,-174r183,0r0,34r-183,0r0,-34xm27,-117r183,0r0,33r-183,0r0,-33","w":237},">":{"d":"20,-57r162,-72r-162,-72r0,-33r194,89r0,32r-194,89r0,-33","w":237},"?":{"d":"89,-230v-20,0,-32,15,-31,37r-48,0v1,-44,33,-69,79,-69v83,0,99,103,40,141v-20,20,-24,23,-24,54r-48,0v-12,-61,60,-77,60,-128v0,-18,-7,-35,-28,-35xm105,-48r0,48r-48,0r0,-48r48,0","w":180},"@":{"d":"168,-241v-61,0,-115,51,-115,113v0,109,144,148,211,74r7,16v-76,88,-240,29,-240,-88v0,-75,63,-136,137,-136v63,0,118,43,118,108v0,48,-32,95,-77,96v-16,0,-23,-7,-25,-22v-27,41,-97,15,-91,-36v-5,-53,77,-120,113,-63r4,-11r25,0r-29,101v0,7,3,11,10,11v30,-4,50,-40,50,-72v0,-57,-43,-91,-98,-91xm148,-84v33,-1,46,-37,46,-69v0,-14,-8,-24,-23,-24v-30,0,-50,36,-50,62v0,17,9,31,27,31","w":316},"A":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32","w":280},"B":{"d":"222,-68v0,47,-48,68,-100,68r-114,0r0,-33r30,0r0,-192r-30,0r0,-33r130,0v42,-5,79,26,79,66v0,33,-18,54,-51,59v35,1,56,32,56,65xm167,-188v0,-39,-39,-40,-80,-37r0,77v43,3,80,-1,80,-40xm173,-75v0,-39,-41,-45,-86,-41r0,84v45,3,86,-2,86,-43","w":240},"C":{"d":"241,-165r-43,0v-2,-37,-20,-64,-60,-64v-54,0,-68,54,-68,99v0,43,12,101,66,101v34,0,58,-23,58,-57r50,0v-1,62,-50,90,-107,90v-84,0,-120,-58,-120,-136v0,-52,20,-86,36,-102v32,-33,114,-41,148,0r0,-24r40,0r0,93","w":259},"D":{"d":"188,-73v29,-67,2,-160,-74,-152r-25,0r0,193v48,0,79,4,99,-41xm123,-258v72,-6,126,48,126,127v0,37,-7,76,-36,102v-50,45,-123,24,-204,29r0,-32r30,0r0,-193r-30,0r0,-33r114,0","w":266},"E":{"d":"222,0r-213,0r0,-32r30,0r0,-193r-30,0r0,-33r213,0r0,79r-40,0r0,-46r-94,0r0,78r38,0r0,-33r34,0r0,98r-34,0r0,-32r-38,0r0,82r94,0r0,-50r40,0r0,82","w":240},"F":{"d":"126,0r-116,0r0,-32r30,0r0,-193r-30,0r0,-33r205,0r0,83r-39,0r0,-50r-87,0r0,83r34,0r0,-33r34,0r0,100r-34,0r0,-34r-34,0r0,77r37,0r0,32","w":226,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33}},"G":{"d":"16,-126v3,-77,28,-136,110,-136v31,0,57,7,76,32r0,-28r41,0r0,92r-44,0v-1,-37,-24,-60,-61,-60v-92,2,-90,195,2,195v39,0,62,-29,62,-66r-34,0r0,-32r104,0r0,32r-26,0r0,97r-42,0r0,-30v-15,24,-45,34,-73,34v-72,0,-117,-66,-115,-130","w":280},"H":{"d":"119,0r-110,0r0,-32r29,0r0,-193r-29,0r0,-33r110,0r0,33r-32,0r0,78r105,0r0,-78r-31,0r0,-33r110,0r0,33r-30,0r0,193r30,0r0,32r-110,0r0,-32r31,0r0,-82r-105,0r0,82r32,0r0,32","w":280},"I":{"d":"39,-225r-32,0r0,-33r113,0r0,33r-32,0r0,193r32,0r0,32r-113,0r0,-32r32,0r0,-193","w":126},"J":{"d":"157,-86v9,57,-25,90,-75,90v-48,0,-79,-33,-74,-87r50,0v1,21,-3,54,27,54v26,0,23,-35,23,-52r0,-144r-35,0r0,-33r108,0r0,33r-24,0r0,139","w":186},"K":{"d":"116,0r-108,0r0,-32r29,0r0,-193r-29,0r0,-33r108,0r0,33r-29,0r0,86r75,-86r-24,0r0,-33r100,0r0,33r-20,0r-78,86r83,107r20,0r0,32r-103,0r0,-32r26,0r-79,-102r0,102r29,0r0,32","w":246},"L":{"d":"208,0r-199,0r0,-32r30,0r0,-193r-30,0r0,-33r118,0r0,33r-39,0r0,193r77,0r0,-59r43,0r0,91","w":219,"k":{"T":27,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"M":{"d":"331,-32r0,32r-103,0r0,-32r27,0r0,-193r-66,225r-45,0r-64,-225r0,193r25,0r0,32r-96,0r0,-32r29,0r0,-193r-29,0r0,-33r106,0r54,200r54,-200r108,0r0,33r-29,0r0,193r29,0","w":339},"N":{"d":"111,0r-102,0r0,-32r30,0r0,-193r-30,0r0,-33r96,0r96,203r0,-170r-30,0r0,-33r102,0r0,33r-29,0r0,225r-63,0r-99,-208r0,176r29,0r0,32","w":280},"O":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128","w":280},"P":{"d":"215,-179v0,49,-39,88,-92,80r-33,0r0,67r37,0r0,32r-117,0r0,-32r30,0r0,-194r-30,0r0,-32r122,0v46,-6,83,34,83,79xm164,-179v0,-38,-31,-52,-74,-46r0,93v44,5,74,-8,74,-47","w":226,"k":{"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,"\u00c3":25,",":33,".":33}},"Q":{"d":"135,-262v125,0,162,172,72,234v20,-4,41,-4,64,-4r0,34r-139,2v-75,2,-116,-61,-116,-131v0,-71,48,-135,119,-135xm204,-125v0,-48,-18,-105,-67,-105v-49,0,-70,55,-69,103v0,44,14,99,68,99v50,0,68,-56,68,-97","w":286},"R":{"d":"167,-186v0,-37,-36,-44,-79,-39r0,84v44,4,79,-6,79,-45xm174,0v-15,-31,-10,-115,-61,-109r-25,0r0,77r30,0r0,32r-110,0r0,-32r31,0r0,-194r-31,0r0,-32r124,0v45,-6,85,26,85,70v0,35,-21,61,-56,65v48,2,41,55,56,91r22,0r0,32r-65,0","w":246,"k":{"T":6,"V":13,"W":13,"y":6,"\u00fd":6,"\u00ff":6,"Y":13,"\u00dd":13,"\u0178":13}},"S":{"d":"74,-118v-80,-12,-79,-144,16,-144v22,0,47,5,60,26r0,-22r40,0r0,85r-42,0v1,-33,-13,-55,-45,-57v-22,-2,-44,15,-39,37v15,66,132,26,132,123v0,76,-102,100,-142,46r0,24r-40,0r0,-90r42,0v0,31,12,61,47,61v23,0,42,-12,42,-37v-1,-38,-44,-39,-71,-52","w":206},"T":{"d":"55,-170r-42,0r0,-88r214,0r0,88r-42,0r0,-54r-40,0r0,192r34,0r0,32r-119,0r0,-32r35,0r0,-192r-40,0r0,54","w":240,"k":{"\u00f9":6,"\u00fc":6,"\u0161":13,"\u00f2":13,"\u00f6":13,"\u00f4":13,"\u00ed":6,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e2":13,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"-":27,"a":13,"\u00e6":13,"\u00e1":13,"\u00e4":13,"c":13,"\u00e7":13,"e":13,"\u00e9":13,"i":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f5":13,"s":13,":":13,";":13}},"U":{"d":"128,4v-62,0,-97,-42,-97,-108r0,-121r-26,0r0,-33r108,0r0,33r-32,0v6,80,-26,195,52,195v78,0,44,-119,51,-195r-32,0r0,-33r103,0r0,33r-26,0r0,114v7,70,-34,115,-101,115","w":259},"V":{"d":"6,-225r0,-33r104,0r0,33r-33,0r59,172r59,-172r-32,0r0,-33r99,0r0,33r-19,0r-82,225r-55,0r-81,-225r-19,0","w":266,"k":{"\u00f6":20,"\u00ee":6,"\u00e8":20,"\u00eb":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"y":6,"\u00fd":6,"\u00ff":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":40,".":40,"r":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":18,"a":20,"\u00e6":20,"\u00e1":20,"e":20,"\u00e9":20,"\u00ea":20,"i":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,":":20,";":20}},"W":{"d":"10,-225r0,-33r98,0r0,33r-32,0r37,172r46,-205r58,0r42,205r41,-172r-33,0r0,-33r92,0r0,33r-16,0r-54,225r-59,0r-43,-205r-48,205r-61,0r-51,-225r-17,0","w":360,"k":{"\u00fc":6,"\u00f6":13,"\u00e4":13,"y":6,"\u00fd":6,"\u00ff":6,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":20,".":20,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,"-":20,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f2":13,"\u00f5":13,":":13,";":13}},"X":{"d":"103,0r-99,0r0,-32r19,0r80,-100r-76,-93r-18,0r0,-33r104,0r0,33r-29,0r54,69r52,-69r-29,0r0,-33r96,0r0,33r-18,0r-76,93r81,100r18,0r0,32r-106,0r0,-32r31,0r-59,-76r-57,76r32,0r0,32","w":266},"Y":{"d":"5,-225r0,-33r103,0r0,33r-28,0r46,82r48,-82r-26,0r0,-33r94,0r0,33r-17,0r-77,126r0,67r36,0r0,32r-121,0r0,-32r35,0r0,-67r-76,-126r-17,0","w":246,"k":{"\u00f6":20,"v":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,":":20,";":20,"p":6,"q":20}},"Z":{"d":"215,0r-204,0r0,-40r143,-186r-99,0r0,51r-40,0r0,-83r196,0r0,40r-145,187r108,0r0,-54r41,0r0,85","w":226},"[":{"d":"92,53r-69,0r0,-322r69,0r0,30r-28,0r0,262r28,0r0,30","w":119},"\\":{"d":"149,0r-110,-258r36,0r110,258r-36,0","w":223},"]":{"d":"97,53r-69,0r0,-30r28,0r0,-262r-28,0r0,-30r69,0r0,322","w":119},"^":{"d":"46,-63r-32,0r89,-195r31,0r90,195r-33,0r-73,-160","w":237},"_":{"d":"180,47r-180,0r0,-24r180,0r0,24","w":180},"\u2018":{"d":"75,-166r-49,0v-3,-41,6,-69,16,-96r33,0r-19,49r19,0r0,47","w":100,"k":{"\u2018":6}},"a":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62","w":206},"b":{"d":"215,-100v0,51,-4,104,-77,104v-19,0,-45,-6,-60,-36r0,32r-70,0r0,-31r25,0r0,-200r-25,0r0,-31r73,0r0,99v12,-24,31,-33,57,-33v56,0,77,46,77,96xm123,-164v-29,1,-43,34,-43,66v0,28,6,70,43,70v36,0,42,-39,42,-67v0,-28,-6,-69,-42,-69","w":226},"c":{"d":"11,-98v1,-46,23,-99,79,-98v23,0,43,5,53,27r0,-23r37,0r0,72r-39,0v-1,-23,-12,-44,-36,-44v-38,0,-43,44,-43,73v0,28,9,64,43,64v21,0,33,-18,35,-37r41,0v-2,47,-35,68,-80,68v-62,0,-90,-45,-90,-102","w":186},"d":{"d":"89,4v-60,-11,-78,-28,-78,-104v0,-49,23,-96,78,-96v23,0,44,8,57,28r0,-63r-25,0r0,-31r73,0r0,231r25,0r0,31r-70,0r0,-31v-15,25,-36,34,-60,35xm147,-98v0,-31,-13,-66,-43,-66v-35,0,-42,42,-42,69v0,28,6,67,41,67v37,0,44,-41,44,-70","w":226},"e":{"d":"102,4v-58,0,-91,-47,-90,-102v0,-53,30,-98,88,-98v26,0,50,5,67,25v19,22,23,52,22,85r-128,0v0,27,11,59,44,59v19,0,32,-13,35,-31r46,0v-3,42,-45,62,-84,62xm62,-114r78,0v0,-22,-9,-52,-36,-52v-30,0,-40,27,-42,52"},"f":{"d":"132,-231v-31,-10,-54,5,-48,39r33,0r0,31r-33,0r0,130r32,0r0,31r-106,0r0,-31r26,0r0,-130r-28,0r0,-31r28,0v-10,-61,42,-89,96,-72r0,33","w":126,"k":{"\u2019":-6}},"g":{"d":"12,-102v1,-51,26,-94,77,-94v24,0,46,9,60,30r0,-26r71,0r0,31r-25,0r0,147v6,49,-42,77,-90,77v-38,0,-81,-11,-82,-51r48,0v9,31,62,27,73,-2v5,-15,3,-30,3,-45v-13,24,-31,33,-57,33v-51,0,-80,-46,-78,-100xm103,-33v63,-4,58,-132,2,-132v-36,0,-43,41,-43,69v1,28,12,65,41,63","w":226},"h":{"d":"120,-163v-52,0,-35,78,-38,132r24,0r0,31r-96,0r0,-31r25,0r0,-200r-25,0r0,-31r72,0r0,95v29,-52,114,-31,114,33r0,103r24,0r0,31r-95,0r0,-31r23,0v-6,-48,19,-132,-28,-132","w":226},"i":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31xm39,-265r48,0r0,44r-48,0r0,-44","w":119},"j":{"d":"6,-192r74,0r0,200v0,13,0,26,-6,38v-18,21,-48,18,-76,14r0,-31v24,5,34,-7,34,-29r0,-161r-26,0r0,-31xm80,-265r0,44r-48,0r0,-44r48,0","w":106},"k":{"d":"102,0r-94,0r0,-31r25,0r0,-200r-25,0r0,-31r73,0r0,156r63,-56r-28,0r0,-30r94,0r0,31r-22,0r-45,39r51,91r19,0r0,31r-88,0r0,-29r21,0r-35,-62r-30,25r0,37r21,0r0,29","w":219},"l":{"d":"109,0r-96,0r0,-31r25,0r0,-200r-25,0r0,-31r73,0r0,231r23,0r0,31","w":119},"m":{"d":"123,-161v-54,0,-36,76,-39,130r23,0r0,31r-96,0r0,-31r25,0r0,-130r-25,0r0,-31r70,0r0,32v18,-45,98,-52,113,0v23,-61,115,-40,115,30r0,99r24,0r0,31r-94,0r0,-31r22,0r0,-85v0,-19,-2,-45,-28,-45v-50,0,-34,77,-36,130r22,0r0,31r-92,0r0,-31r22,0v-5,-48,18,-130,-26,-130","w":339},"n":{"d":"148,-31v-6,-49,19,-127,-28,-132v-58,5,-31,79,-37,132r23,0r0,31r-96,0r0,-31r25,0r0,-130r-25,0r0,-31r70,0r0,32v12,-24,31,-36,58,-36v81,-1,54,90,58,165r24,0r0,31r-94,0r0,-31r22,0","w":226},"o":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101","w":206},"p":{"d":"215,-98v13,79,-87,144,-134,69r0,57r27,0r0,30r-100,0r0,-30r25,0r0,-189r-25,0r0,-31r70,0r0,33v40,-73,146,-30,137,61xm124,-165v-32,0,-46,42,-46,70v0,27,11,67,45,67v35,0,43,-38,43,-65v0,-27,-6,-72,-42,-72","w":226},"q":{"d":"12,-98v3,-52,17,-98,75,-98v30,0,48,10,61,37r0,-33r70,0r0,31r-25,0r0,189r25,0r0,30r-100,0r0,-30r27,0r0,-57v-12,22,-30,33,-54,33v-51,0,-82,-50,-79,-102xm147,-95v0,-28,-8,-70,-44,-70v-36,0,-42,44,-42,71v0,27,8,66,43,66v34,0,43,-40,43,-67","w":226},"r":{"d":"144,-148v-62,-17,-65,51,-61,117r31,0r0,31r-104,0r0,-31r25,0r0,-130r-25,0r0,-31r70,0r0,41v8,-33,31,-47,64,-44r0,47","w":146,"k":{"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,",":20,".":20,"f":-5,"\ufb01":-5,"\ufb02":-5,"\u00df":-5,"m":-5,"n":-5,"\u00f1":-5,"r":-5,"t":-5,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"x":-5,"z":-5,"\u017e":-5,"-":14}},"s":{"d":"153,-96v32,41,6,100,-55,100v-18,0,-37,-8,-47,-23r0,19r-34,0r0,-67r37,0v-7,41,58,58,64,17v-4,-36,-54,-23,-77,-41v-47,-37,-22,-105,41,-105v17,0,35,7,45,20r0,-16r34,0r0,62r-35,0v-2,-21,-10,-37,-33,-37v-27,-6,-44,36,-13,44v21,5,59,9,73,27","w":180},"t":{"d":"87,4v-76,4,-46,-95,-52,-165r-29,0r0,-31r29,0r0,-32r47,-16r0,48r48,0r0,31r-48,0r0,120v0,4,2,11,6,12v22,9,20,-21,20,-34r30,0v4,39,-11,66,-51,67","w":146},"u":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0r0,-32v-10,24,-31,36,-57,36v-77,1,-55,-90,-58,-165r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46","w":226},"v":{"d":"5,-161r0,-31r90,0r0,31r-23,0r36,122r40,-122r-24,0r0,-31r84,0r0,31r-15,0r-56,161r-60,0r-56,-161r-16,0","w":213,"k":{",":27,".":27}},"w":{"d":"6,-192r92,0r0,31r-26,0r28,124r40,-155r59,0r36,155r32,-124r-24,0r0,-31r85,0r0,31r-18,0r-46,161r-61,0r-34,-144r-39,144r-61,0r-46,-161r-17,0r0,-31","w":333,"k":{",":20,".":20}},"x":{"d":"122,0r0,-29r21,0r-40,-53r-41,53r21,0r0,29r-79,0r0,-31r15,0r55,-68r-48,-62r-18,0r0,-31r86,0r0,29r-20,0r37,47r36,-47r-20,0r0,-29r79,0r0,31r-17,0r-51,62r55,68r15,0r0,31r-86,0","w":213},"y":{"d":"5,-161r0,-31r92,0r0,31r-25,0r39,106r37,-106r-24,0r0,-31r85,0r0,31r-15,0r-69,173v-12,40,-37,59,-87,49r0,-33v27,4,43,-2,49,-25r-66,-164r-16,0","w":213,"k":{",":27,".":27}},"z":{"d":"170,0r-154,0r0,-37r101,-126r-62,0r0,31r-36,0r0,-60r151,0r0,36r-102,127r66,0r0,-35r36,0r0,64","w":186},"{":{"d":"13,-109v55,-8,7,-107,39,-147v12,-15,35,-13,53,-13v-64,13,11,141,-59,160v70,9,-8,138,59,162v-33,5,-71,-14,-64,-50v-3,-47,13,-105,-28,-112","w":115},"|":{"d":"102,0r0,-258r33,0r0,258r-33,0","w":237},"}":{"d":"105,-109v-68,12,25,175,-92,162v65,-12,-12,-143,59,-162v-69,-9,7,-136,-59,-159v17,0,39,-2,53,12v32,35,-18,134,39,147","w":115},"~":{"d":"195,-161r26,16v-19,43,-69,53,-113,27v-27,-16,-56,-6,-66,22r-26,-17v14,-22,31,-45,61,-45v31,0,65,24,86,24v16,0,24,-16,32,-27","w":237},"\u00a1":{"d":"85,-152r-49,0r0,-47r49,0r0,47xm88,59r-56,0r10,-186r37,0","w":119},"\u00a2":{"d":"180,-120r-39,0v-1,-22,-10,-45,-36,-45v-38,0,-43,44,-43,73v0,28,9,64,43,64v21,0,33,-18,35,-37r41,0v-2,42,-28,65,-68,69r0,31r-32,0r0,-32v-91,-11,-97,-189,0,-200r0,-33r32,0r0,36v13,3,23,9,30,24r0,-22r37,0r0,72"},"\u00a3":{"d":"36,-154v-8,-68,24,-108,80,-108v45,0,72,20,73,67r-46,0v1,-24,-13,-44,-38,-33v-28,12,-17,43,-19,74r39,0r0,32r-39,0r0,90r57,0r0,-41r44,0r0,73r-177,0r0,-32r26,0r0,-90r-28,0r0,-32r28,0"},"\u2044":{"d":"-24,0r-29,0r139,-258r29,0","w":60},"\u00a5":{"d":"-18,-225r0,-33r102,0r0,33r-28,0r47,82r48,-82r-27,0r0,-33r94,0r0,33r-17,0r-43,70r49,0r0,20r-61,0r-12,16r73,0r0,20r-83,0r0,67r36,0r0,32r-120,0r0,-32r35,0r0,-67r-83,0r0,-20r73,0r-12,-16r-61,0r0,-20r49,0r-42,-70r-17,0"},"\u0192":{"d":"78,-170v8,-50,13,-90,78,-92v10,0,19,2,28,4r-5,29v-13,-2,-28,-4,-37,8v-10,14,-10,34,-14,51r38,0r-5,29r-38,0v-16,62,-7,138,-45,180v-18,20,-49,21,-79,15r6,-30v42,5,45,-23,50,-55r17,-110r-32,0r5,-29r33,0"},"\u00a7":{"d":"53,-155v-54,-28,-17,-107,43,-107v43,0,73,19,78,64r-45,0v1,-18,-10,-33,-29,-33v-20,0,-40,21,-24,37v30,31,102,27,103,84v0,19,-12,37,-30,43v16,8,27,27,27,45v1,36,-37,60,-74,60v-37,0,-80,-17,-79,-61r47,0v-3,36,58,42,60,9v1,-27,-31,-27,-49,-36v-27,-13,-60,-25,-60,-61v0,-20,13,-37,32,-44xm63,-120v2,30,35,32,57,42v19,-12,22,-40,-4,-51r-37,-16v-10,4,-16,15,-16,25"},"\u00a4":{"d":"8,-56r20,-20v-20,-27,-20,-68,0,-95r-20,-19r25,-25r19,19v28,-20,68,-19,97,-1r19,-18r25,25r-19,18v19,29,19,69,0,97r19,19r-25,24r-19,-19v-28,19,-68,20,-97,0r-19,19xm100,-171v-27,0,-47,22,-47,48v0,26,20,48,47,48v26,0,48,-21,48,-48v0,-27,-21,-48,-48,-48"},"'":{"d":"49,-154r-27,0r-9,-104r45,0","w":72},"\u201c":{"d":"85,-166r-49,0v-3,-41,6,-69,17,-96r32,0r-19,49r19,0r0,47xm166,-166r-49,0v-3,-41,6,-69,17,-96r32,0r-19,49r19,0r0,47"},"\u00ab":{"d":"50,-24r-29,-78r29,-78r35,0r-29,78r29,78r-35,0xm116,-24r-31,-78r31,-78r35,0r-30,78r30,78r-35,0","w":180},"\u2039":{"d":"53,-24r-29,-78r29,-78r35,0r-29,78r29,78r-35,0","w":119},"\u203a":{"d":"31,-24r30,-78r-30,-78r35,0r30,78r-30,78r-35,0","w":119},"\u2013":{"d":"0,-84r0,-36r180,0r0,36r-180,0","w":180},"\u2020":{"d":"78,-165r-58,0r0,-34r58,0r0,-59r44,0r0,59r58,0r0,34r-58,0r0,165r-44,0r0,-165"},"\u2021":{"d":"79,-55r-57,0r0,-31r57,0r0,-86r-57,0r0,-31r57,0r0,-55r42,0r0,55r58,0r0,31r-58,0r0,86r58,0r0,31r-58,0r0,55r-42,0r0,-55"},"\u00b7":{"d":"26,-152r49,0r0,47r-49,0r0,-47","w":100},"\u00b6":{"d":"6,-193v0,-38,34,-65,74,-65r115,0r0,41r-25,0r0,263r-32,0r0,-263r-36,0r0,263r-32,0r0,-175v-36,-1,-64,-28,-64,-64","w":194},"\u2022":{"d":"165,-193r0,129r-114,0r0,-129r114,0","w":216},"\u201a":{"d":"44,48r-33,0r20,-48r-19,0r0,-48r49,0v3,41,-6,69,-17,96","w":72},"\u201e":{"d":"116,-48r49,0v3,41,-6,69,-17,96r-32,0r19,-48r-19,0r0,-48xm36,-48r49,0v3,41,-6,69,-17,96r-33,0r19,-48r-18,0r0,-48"},"\u201d":{"d":"117,-262r49,0r0,47r-18,49r-32,0r19,-49r-18,0r0,-47xm36,-262r49,0v3,41,-6,69,-17,96r-33,0r20,-49r-19,0r0,-47"},"\u00bb":{"d":"92,-24r30,-78r-30,-78r35,0r34,78r-34,78r-35,0xm27,-24r29,-78r-29,-78r35,0r30,78r-30,78r-35,0","w":180},"\u2026":{"d":"85,0r-49,0r0,-48r49,0r0,48xm205,0r-49,0r0,-48r49,0r0,48xm325,0r-49,0r0,-48r49,0r0,48","w":360},"\u2030":{"d":"305,-19v19,0,20,-28,20,-42v0,-14,0,-44,-20,-44v-19,0,-20,30,-20,43v0,13,1,43,20,43xm63,4r-30,0r142,-266r31,0xm54,-239v-18,0,-20,29,-20,42v0,14,1,44,21,44v19,0,20,-31,20,-44v0,-14,-2,-42,-21,-42xm307,4v-74,1,-66,-132,-3,-132v39,0,52,31,52,66v0,31,-13,66,-49,66xm55,-130v-69,0,-70,-132,-2,-132v39,0,52,30,52,65v0,32,-12,67,-50,67xm236,-62v0,34,-16,66,-49,66v-36,0,-52,-28,-52,-66v0,-37,16,-65,49,-66v39,0,52,31,52,66xm185,-19v32,-7,29,-86,0,-86v-19,0,-20,29,-20,43v0,14,1,43,20,43","w":360},"\u00bf":{"d":"62,-2v0,16,11,32,31,32v21,0,27,-18,28,-36r48,0v-1,46,-35,69,-79,69v-45,0,-77,-23,-77,-70v0,-30,15,-51,36,-71v21,-20,25,-24,24,-55r49,0v10,67,-60,77,-60,131xm73,-153r0,-48r49,0r0,48r-49,0","w":180},"`":{"d":"-4,-272r49,0r32,52r-29,0","w":100},"\u00b4":{"d":"23,-220r32,-52r49,0r-51,52r-30,0","w":100},"\u02c6":{"d":"50,-252r-26,32r-32,0r38,-52r40,0r39,52r-34,0","w":100},"\u02dc":{"d":"24,-265v31,1,58,31,69,-2r20,0v-3,24,-16,43,-40,42v-22,-1,-60,-31,-67,2r-20,0v4,-21,15,-42,38,-42","w":100},"\u00af":{"d":"102,-233r-104,0r0,-23r104,0r0,23","w":100},"\u02d8":{"d":"-7,-273r21,0v6,38,71,34,75,0r20,0v-3,33,-27,51,-59,51v-33,0,-54,-18,-57,-51","w":100},"\u02d9":{"d":"29,-223r0,-42r42,0r0,42r-42,0","w":100},"\u00a8":{"d":"-8,-223r0,-42r41,0r0,42r-41,0xm67,-223r0,-42r41,0r0,42r-41,0","w":100},"\u02da":{"d":"50,-215v-20,0,-37,-17,-37,-37v0,-20,16,-37,37,-37v19,0,37,16,37,36v0,21,-16,38,-37,38xm50,-233v27,0,24,-40,0,-40v-24,0,-26,40,0,40","w":100},"\u00b8":{"d":"92,45v0,35,-53,37,-82,23r7,-14v15,7,36,12,46,-1v8,-18,-16,-25,-30,-16r-7,-7r20,-33r18,0r-15,24v20,-3,43,5,43,24","w":100},"\u02dd":{"d":"0,-220r32,-52r49,0r-51,52r-30,0xm66,-220r33,-52r48,0r-51,52r-30,0","w":100},"\u02db":{"d":"36,0r28,0v-21,13,-8,56,18,44r0,26v-45,21,-79,-36,-46,-70","w":100},"\u02c7":{"d":"109,-272r-39,52r-40,0r-38,-52r32,0r26,32r25,-32r34,0","w":100},"\u2014":{"d":"0,-84r0,-36r360,0r0,36r-360,0","w":360},"\u00c6":{"d":"125,-258r217,0r0,79r-39,0r0,-46r-102,0r11,78r37,0r0,-33r34,0r0,98r-34,0r0,-32r-32,0r14,82r74,0r0,-50r39,0r0,82r-191,0r0,-32r32,0r-8,-45r-90,0r-20,45r27,0r0,32r-89,0r0,-32r14,0xm103,-114r69,0r-18,-114","w":360},"\u00aa":{"d":"6,-220v1,-51,95,-52,100,-4v2,21,1,44,1,66r16,0r0,19r-43,0r0,-19v-14,34,-79,28,-79,-14v0,-34,39,-42,75,-37v2,-14,0,-31,-19,-31v-14,0,-20,8,-20,20r-31,0xm77,-193v-22,0,-44,-1,-45,22v0,9,7,15,17,15v23,0,27,-20,28,-37xm1,-93r0,-23r122,0r0,23r-122,0","w":123},"\u0141":{"d":"208,0r-199,0r0,-32r30,0r0,-76r-31,21r0,-32r31,-22r0,-84r-30,0r0,-33r118,0r0,33r-39,0r0,61r49,-32r0,33r-49,31r0,100r77,0r0,-59r43,0r0,91","w":219,"k":{"T":27,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"\u00d8":{"d":"140,-230v-68,-1,-84,91,-62,155r114,-130v-13,-17,-30,-25,-52,-25xm140,-28v70,-1,82,-89,62,-158r-115,131v11,17,29,27,53,27xm45,-36v-67,-85,-15,-226,94,-226v33,0,60,9,80,26r24,-28r16,13r-26,29v20,24,31,56,31,92v0,115,-121,172,-205,108r-27,30r-15,-12","w":280},"\u0152":{"d":"181,0v-100,18,-166,-34,-166,-131v0,-85,65,-151,164,-128r163,1r0,79r-40,0r0,-46r-85,0r0,78r32,0r0,-32r33,0r0,98r-33,0r0,-33r-32,0r0,82r85,0r0,-49r40,0r0,81r-161,0xm66,-130v0,63,31,114,105,98r0,-196v-71,-19,-105,42,-105,98","w":360},"\u00ba":{"d":"63,-156v38,-1,36,-81,-1,-83v-41,5,-38,82,1,83xm1,-198v0,-34,27,-61,60,-60v40,0,61,26,61,61v0,33,-22,61,-60,61v-34,0,-61,-27,-61,-62xm1,-93r0,-23r121,0r0,23r-121,0","w":123},"\u00e6":{"d":"172,-113r71,0v0,-27,-5,-55,-32,-55v-28,0,-41,25,-39,55xm127,-85v-36,-2,-69,-1,-70,32v0,18,12,29,30,29v29,0,40,-38,40,-61xm98,-168v-21,-1,-31,10,-34,30r-45,0v4,-45,35,-58,76,-58v23,0,49,4,58,28v12,-21,35,-28,58,-28v59,-1,81,46,78,111r-118,0v-1,29,8,58,41,59v18,0,29,-16,30,-32r45,0v-4,71,-119,86,-144,21v-16,62,-136,53,-131,-21v3,-50,60,-59,115,-55v0,-25,2,-54,-29,-55","w":299},"\u0131":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31","w":119},"\u0142":{"d":"108,0r-95,0r0,-31r24,0r0,-84r-27,25r0,-32r27,-25r0,-84r-24,0r0,-31r72,0r0,81r29,-26r0,33r-29,25r0,118r23,0r0,31","w":119},"\u00f8":{"d":"64,-64r70,-82v-7,-11,-17,-19,-31,-19v-45,0,-48,62,-39,101xm32,-27v-51,-64,-12,-169,70,-169v24,0,44,6,59,18r20,-23r15,12r-21,24v46,60,17,169,-72,169v-20,0,-41,-6,-58,-18r-22,25r-15,-11xm104,-27v41,-1,50,-61,39,-100r-71,81v7,10,18,19,32,19","w":206},"\u0153":{"d":"159,-161v12,-22,36,-36,63,-35v62,1,78,51,75,112r-115,0v0,24,8,58,38,58v19,0,29,-13,29,-32r45,0v0,69,-109,81,-135,28v-9,19,-35,34,-62,34v-58,-1,-85,-45,-85,-108v0,-82,109,-129,147,-57xm137,-95v1,-32,-7,-71,-37,-71v-36,0,-40,46,-40,73v0,25,7,66,39,66v32,0,38,-44,38,-68xm182,-112r69,0v-1,-24,-2,-55,-34,-55v-27,1,-34,31,-35,55","w":306},"\u00df":{"d":"116,-237v-29,0,-36,29,-36,61r0,145r16,0r0,31r-89,0r0,-31r25,0r0,-144v-7,-54,29,-94,87,-94v43,0,78,20,78,67v-1,36,-20,54,-51,60v41,2,61,29,62,66v1,53,-32,81,-91,76r0,-31v29,1,41,-18,41,-45v0,-31,-14,-50,-47,-49r0,-35v29,2,38,-20,38,-42v0,-21,-11,-35,-33,-35","w":219},"\u00b9":{"d":"15,-208r0,-26v13,-9,27,-18,39,-28r30,0r0,135r21,0r0,20r-76,0r0,-20r23,0r0,-107v-12,9,-24,18,-37,26","w":119},"\u00ac":{"d":"177,-63r0,-77r-150,0r0,-34r183,0r0,111r-33,0","w":237},"\u00b5":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0v-1,-10,2,-24,-1,-32v-9,24,-30,36,-56,36v-18,0,-12,11,-10,23v3,18,-11,31,-24,31v-35,0,-20,-48,-15,-73v-13,-41,-8,-94,-9,-146r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46","w":226},"\u2122":{"d":"305,-258r0,147r-23,0r0,-126r-51,126r-14,0r-49,-126r0,126r-23,0r0,-147r37,0r42,104r44,-104r37,0xm119,-258r0,21r-47,0r0,126r-25,0r0,-126r-47,0r0,-21r119,0","w":352},"\u00d0":{"d":"146,-147r0,24r-57,0r0,91v71,4,107,-14,109,-98v1,-70,-35,-103,-109,-95r0,78r57,0xm11,-123r0,-24r28,0r0,-78r-30,0r0,-33r120,0v79,0,120,49,120,127v0,94,-46,131,-135,131r-105,0r0,-32r30,0r0,-91r-28,0","w":266},"\u00bd":{"d":"9,-208r0,-26v13,-9,27,-18,39,-28r30,0r0,135r22,0r0,20r-77,0r0,-20r23,0r0,-107v-12,9,-24,18,-37,26xm289,-116v-5,46,-51,68,-78,97r54,0r0,-23r26,0r0,42r-111,0r0,-28v24,-29,65,-47,76,-88v0,-12,-8,-22,-21,-22v-17,0,-23,15,-23,29r-32,0v1,-31,21,-48,55,-48v27,0,57,15,54,41xm94,0r-30,0r140,-258r29,0","w":300},"\u00b1":{"d":"27,-151r75,0r0,-69r33,0r0,69r75,0r0,33r-75,0r0,70r-33,0r0,-70r-75,0r0,-33xm27,0r0,-33r183,0r0,33r-183,0","w":237},"\u00de":{"d":"10,0r0,-32r30,0r0,-193r-30,0r0,-33r110,0r0,33r-30,0r0,23v68,-3,125,4,125,72v0,68,-57,75,-125,72r0,26r30,0r0,32r-110,0xm90,-170r0,79v39,2,74,-2,74,-39v0,-37,-34,-43,-74,-40","w":226},"\u00bc":{"d":"242,-40r-69,0r0,-26r61,-89r39,0r0,97r18,0r0,18r-18,0r0,22r16,0r0,18r-69,0r0,-18r22,0r0,-22xm242,-128r-47,70r47,0r0,-70xm101,0r-30,0r140,-258r29,0xm9,-208r0,-26v13,-9,27,-18,39,-28r30,0r0,135r22,0r0,20r-77,0r0,-20r23,0r0,-107v-12,9,-24,18,-37,26","w":300},"\u00f7":{"d":"27,-145r183,0r0,33r-183,0r0,-33xm143,-37r-49,0r0,-48r49,0r0,48xm143,-173r-49,0r0,-47r49,0r0,47","w":237},"\u00a6":{"d":"102,0r0,-103r33,0r0,103r-33,0xm102,-155r0,-103r33,0r0,103r-33,0","w":237},"\u00b0":{"d":"126,-208v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm105,-208v0,-18,-14,-34,-33,-34v-18,0,-33,16,-33,34v0,19,14,33,33,33v18,0,33,-14,33,-33","w":144},"\u00fe":{"d":"123,-28v35,0,43,-38,43,-65v0,-27,-6,-71,-42,-71v-33,0,-46,42,-46,69v0,27,11,67,45,67xm33,-238r-25,0r0,-31r73,0r1,104v12,-20,30,-31,53,-31v56,0,80,48,80,98v0,52,-20,102,-79,102v-22,1,-39,-11,-55,-33r0,57r27,0r0,30r-100,0r0,-30r25,0r0,-266","w":226},"\u00be":{"d":"242,-40r-69,0r0,-26r61,-89r39,0r0,97r18,0r0,18r-18,0r0,22r16,0r0,18r-69,0r0,-18r22,0r0,-22xm242,-128r-47,70r47,0r0,-70xm104,0r-29,0r140,-258r28,0xm88,-148v1,-17,-13,-31,-34,-26r0,-20v20,1,32,-7,32,-26v0,-12,-8,-23,-22,-23v-16,0,-22,14,-22,27r-32,0v-3,-60,105,-63,108,-6v1,20,-14,35,-34,38v22,2,36,14,37,37v1,30,-25,45,-57,45v-32,0,-55,-15,-55,-46r32,0v1,14,8,25,25,25v13,0,23,-12,22,-25","w":300},"\u00b2":{"d":"113,-220v-5,46,-50,68,-78,96r54,0r0,-23r27,0r0,42r-111,0r0,-28v24,-29,65,-48,76,-88v0,-12,-8,-21,-21,-21v-17,0,-24,14,-24,28r-31,0v1,-31,21,-48,55,-48v27,0,56,16,53,42","w":119},"\u00ae":{"d":"280,-129v0,74,-60,133,-133,133v-73,0,-132,-60,-132,-133v0,-74,60,-133,133,-133v73,0,132,60,132,133xm149,-14v63,0,113,-53,113,-115v0,-64,-52,-115,-115,-115v-63,0,-114,52,-114,115v0,64,52,115,116,115xm93,-210v58,1,130,-11,129,44v0,30,-20,42,-48,43r45,72r-26,0r-43,-72r-34,0r0,72r-23,0r0,-159xm116,-140v36,-2,83,11,83,-28v0,-38,-48,-23,-83,-26r0,54","w":295},"\u2212":{"d":"27,-112r0,-33r183,0r0,33r-183,0","w":237},"\u00f0":{"d":"103,-27v29,0,44,-29,44,-63v0,-34,-15,-63,-44,-63v-29,0,-43,29,-43,63v0,34,14,63,43,63xm60,-199r-13,-15r25,-16v-11,-5,-23,-8,-34,-10r10,-31v22,4,42,10,60,18r33,-21r14,15r-27,17v43,28,69,73,69,137v0,70,-35,109,-94,109v-59,0,-93,-44,-93,-99v0,-67,73,-113,129,-76v-8,-19,-25,-36,-46,-49","w":206},"\u00d7":{"d":"27,-61r68,-68r-68,-68r24,-23r68,68r68,-68r23,23r-68,68r68,68r-23,24r-68,-68r-68,68","w":237},"\u00b3":{"d":"83,-148v0,-18,-13,-31,-34,-26r0,-20v20,1,33,-7,33,-26v0,-12,-8,-23,-22,-23v-16,0,-22,14,-22,27r-32,0v-1,-34,26,-46,56,-46v55,0,70,72,18,78v22,2,35,15,36,37v2,31,-25,45,-56,45v-32,0,-56,-15,-56,-46r32,0v1,14,8,25,25,25v13,0,22,-12,22,-25","w":119},"\u00a9":{"d":"280,-130v0,75,-58,134,-133,134v-73,0,-132,-60,-132,-133v0,-73,59,-133,133,-133v73,0,132,59,132,132xm148,-14v63,0,114,-51,114,-114v0,-65,-51,-116,-115,-116v-63,0,-114,52,-114,115v0,64,52,115,115,115xm199,-102r21,7v-10,31,-42,45,-72,45v-46,0,-76,-32,-76,-77v0,-48,34,-82,81,-82v28,0,61,13,67,43r-24,6v-21,-65,-100,-27,-100,31v0,34,18,63,55,63v24,0,40,-14,48,-36","w":295},"\u00c1":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm113,-287r32,-51r49,0r-51,51r-30,0","w":280},"\u00c2":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm140,-319r-26,32r-32,0r38,-51r40,0r39,51r-34,0","w":280},"\u00c4":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm82,-289r0,-42r41,0r0,42r-41,0xm157,-289r0,-42r41,0r0,42r-41,0","w":280},"\u00c0":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm86,-338r49,0r32,51r-29,0","w":280},"\u00c5":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm140,-277v-20,0,-37,-17,-37,-37v0,-20,16,-37,37,-37v19,0,37,16,37,36v0,21,-16,38,-37,38xm140,-295v29,0,23,-39,0,-39v-29,0,-23,39,0,39","w":280},"\u00c3":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm114,-331v30,1,58,30,69,-2r20,0v-3,24,-16,41,-40,41v-22,0,-61,-29,-67,3r-20,0v4,-21,15,-42,38,-42","w":280},"\u00c7":{"d":"96,54v15,6,37,12,47,-1v8,-18,-16,-25,-30,-16v-14,-9,5,-22,9,-33v-73,-6,-105,-62,-105,-136v0,-52,20,-86,36,-102v32,-33,114,-41,148,0r0,-24r40,0r0,93r-43,0v-2,-37,-20,-64,-60,-64v-54,0,-68,54,-68,99v0,43,12,101,66,101v34,0,58,-23,58,-57r50,0v-1,61,-49,89,-104,90r-11,17v20,-3,43,5,43,24v0,35,-53,37,-82,23","w":259},"\u00c9":{"d":"222,0r-213,0r0,-32r30,0r0,-193r-30,0r0,-33r213,0r0,79r-40,0r0,-46r-94,0r0,78r38,0r0,-33r34,0r0,98r-34,0r0,-32r-38,0r0,82r94,0r0,-50r40,0r0,82xm93,-287r33,-51r48,0r-51,51r-30,0","w":240},"\u00ca":{"d":"222,0r-213,0r0,-32r30,0r0,-193r-30,0r0,-33r213,0r0,79r-40,0r0,-46r-94,0r0,78r38,0r0,-33r34,0r0,98r-34,0r0,-32r-38,0r0,82r94,0r0,-50r40,0r0,82xm120,-319r-25,32r-33,0r38,-51r40,0r39,51r-34,0","w":240},"\u00cb":{"d":"222,0r-213,0r0,-32r30,0r0,-193r-30,0r0,-33r213,0r0,79r-40,0r0,-46r-94,0r0,78r38,0r0,-33r34,0r0,98r-34,0r0,-32r-38,0r0,82r94,0r0,-50r40,0r0,82xm62,-289r0,-42r42,0r0,42r-42,0xm137,-289r0,-42r42,0r0,42r-42,0","w":240},"\u00c8":{"d":"222,0r-213,0r0,-32r30,0r0,-193r-30,0r0,-33r213,0r0,79r-40,0r0,-46r-94,0r0,78r38,0r0,-33r34,0r0,98r-34,0r0,-32r-38,0r0,82r94,0r0,-50r40,0r0,82xm66,-338r49,0r32,51r-29,0","w":240},"\u00cd":{"d":"39,-225r-32,0r0,-33r113,0r0,33r-32,0r0,193r32,0r0,32r-113,0r0,-32r32,0r0,-193xm36,-287r33,-51r48,0r-51,51r-30,0","w":126},"\u00ce":{"d":"39,-225r-32,0r0,-33r113,0r0,33r-32,0r0,193r32,0r0,32r-113,0r0,-32r32,0r0,-193xm63,-319r-25,32r-33,0r38,-51r40,0r39,51r-33,0","w":126},"\u00cf":{"d":"39,-225r-32,0r0,-33r113,0r0,33r-32,0r0,193r32,0r0,32r-113,0r0,-32r32,0r0,-193xm5,-289r0,-42r42,0r0,42r-42,0xm80,-289r0,-42r42,0r0,42r-42,0","w":126},"\u00cc":{"d":"39,-225r-32,0r0,-33r113,0r0,33r-32,0r0,193r32,0r0,32r-113,0r0,-32r32,0r0,-193xm9,-338r49,0r32,51r-29,0","w":126},"\u00d1":{"d":"111,0r-102,0r0,-32r30,0r0,-193r-30,0r0,-33r96,0r96,203r0,-170r-30,0r0,-33r102,0r0,33r-29,0r0,225r-63,0r-99,-208r0,176r29,0r0,32xm114,-331v30,1,58,30,69,-2r20,0v-3,24,-16,41,-40,41v-22,0,-61,-29,-67,3r-20,0v4,-21,15,-42,38,-42","w":280},"\u00d3":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128xm113,-287r32,-51r49,0r-51,51r-30,0","w":280},"\u00d4":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128xm140,-319r-26,32r-32,0r38,-51r40,0r39,51r-34,0","w":280},"\u00d6":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128xm82,-289r0,-42r41,0r0,42r-41,0xm157,-289r0,-42r41,0r0,42r-41,0","w":280},"\u00d2":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128xm86,-338r49,0r32,51r-29,0","w":280},"\u00d5":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128xm114,-331v30,1,58,30,69,-2r20,0v-3,24,-16,41,-40,41v-22,0,-61,-29,-67,3r-20,0v4,-21,15,-42,38,-42","w":280},"\u0160":{"d":"74,-118v-80,-12,-79,-144,16,-144v22,0,47,5,60,26r0,-22r40,0r0,85r-42,0v1,-33,-13,-55,-45,-57v-22,-2,-44,15,-39,37v15,66,132,26,132,123v0,76,-102,100,-142,46r0,24r-40,0r0,-90r42,0v0,31,12,61,47,61v23,0,42,-12,42,-37v-1,-38,-44,-39,-71,-52xm162,-338r-39,51r-40,0r-38,-51r33,0r25,32r26,-32r33,0","w":206},"\u00da":{"d":"128,4v-62,0,-97,-42,-97,-108r0,-121r-26,0r0,-33r108,0r0,33r-32,0v6,80,-26,195,52,195v78,0,44,-119,51,-195r-32,0r0,-33r103,0r0,33r-26,0r0,114v7,70,-34,115,-101,115xm103,-287r32,-51r49,0r-52,51r-29,0","w":259},"\u00db":{"d":"128,4v-62,0,-97,-42,-97,-108r0,-121r-26,0r0,-33r108,0r0,33r-32,0v6,80,-26,195,52,195v78,0,44,-119,51,-195r-32,0r0,-33r103,0r0,33r-26,0r0,114v7,70,-34,115,-101,115xm130,-319r-26,32r-32,0r38,-51r40,0r39,51r-34,0","w":259},"\u00dc":{"d":"128,4v-62,0,-97,-42,-97,-108r0,-121r-26,0r0,-33r108,0r0,33r-32,0v6,80,-26,195,52,195v78,0,44,-119,51,-195r-32,0r0,-33r103,0r0,33r-26,0r0,114v7,70,-34,115,-101,115xm72,-289r0,-42r41,0r0,42r-41,0xm147,-289r0,-42r41,0r0,42r-41,0","w":259},"\u00d9":{"d":"128,4v-62,0,-97,-42,-97,-108r0,-121r-26,0r0,-33r108,0r0,33r-32,0v6,80,-26,195,52,195v78,0,44,-119,51,-195r-32,0r0,-33r103,0r0,33r-26,0r0,114v7,70,-34,115,-101,115xm76,-338r49,0r32,51r-30,0","w":259},"\u00dd":{"d":"5,-225r0,-33r103,0r0,33r-28,0r46,82r48,-82r-26,0r0,-33r94,0r0,33r-17,0r-77,126r0,67r36,0r0,32r-121,0r0,-32r35,0r0,-67r-76,-126r-17,0xm96,-287r33,-51r48,0r-51,51r-30,0","w":246,"k":{"v":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,":":20,";":20,"p":6,"q":20}},"\u0178":{"d":"5,-225r0,-33r103,0r0,33r-28,0r46,82r48,-82r-26,0r0,-33r94,0r0,33r-17,0r-77,126r0,67r36,0r0,32r-121,0r0,-32r35,0r0,-67r-76,-126r-17,0xm65,-289r0,-42r42,0r0,42r-42,0xm140,-289r0,-42r42,0r0,42r-42,0","w":246,"k":{"v":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,":":20,";":20,"p":6,"q":20}},"\u017d":{"d":"215,0r-204,0r0,-40r143,-186r-99,0r0,51r-40,0r0,-83r196,0r0,40r-145,187r108,0r0,-54r41,0r0,85xm172,-338r-39,51r-40,0r-38,-51r33,0r25,32r26,-32r33,0","w":226},"\u00e1":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm76,-220r33,-52r48,0r-51,52r-30,0","w":206},"\u00e2":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm103,-252r-25,32r-33,0r38,-52r40,0r39,52r-33,0","w":206},"\u00e4":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm45,-223r0,-42r42,0r0,42r-42,0xm120,-223r0,-42r42,0r0,42r-42,0","w":206},"\u00e0":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm49,-272r49,0r32,52r-29,0","w":206},"\u00e5":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm100,-211v-20,0,-38,-17,-38,-37v0,-20,16,-37,37,-37v19,0,38,16,38,36v0,21,-16,38,-37,38xm100,-229v10,0,20,-10,20,-20v-1,-24,-41,-25,-40,1v0,10,10,19,20,19","w":206},"\u00e3":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm77,-265v31,1,58,31,69,-2r21,0v-5,22,-16,43,-41,42v-21,-1,-60,-30,-67,2r-19,0v2,-23,15,-42,37,-42","w":206},"\u00e7":{"d":"11,-98v0,-46,22,-99,79,-98v23,0,43,5,53,27r0,-23r37,0r0,72r-39,0v-1,-23,-12,-44,-36,-44v-38,0,-43,44,-43,73v0,28,9,64,43,64v21,0,33,-18,35,-37r41,0v-2,46,-34,67,-78,68r-10,17v20,-4,42,5,42,24v-1,36,-53,36,-82,23r7,-14v15,7,36,12,46,-1v8,-18,-16,-25,-29,-16r-8,-7r17,-27v-51,-7,-75,-49,-75,-101","w":186},"\u00e9":{"d":"102,4v-58,0,-91,-47,-90,-102v0,-53,30,-98,88,-98v26,0,50,5,67,25v19,22,23,52,22,85r-128,0v0,27,11,59,44,59v19,0,32,-13,35,-31r46,0v-3,42,-45,62,-84,62xm62,-114r78,0v0,-22,-9,-52,-36,-52v-30,0,-40,27,-42,52xm73,-220r32,-52r49,0r-51,52r-30,0"},"\u00ea":{"d":"102,4v-58,0,-91,-47,-90,-102v0,-53,30,-98,88,-98v26,0,50,5,67,25v19,22,23,52,22,85r-128,0v0,27,11,59,44,59v19,0,32,-13,35,-31r46,0v-3,42,-45,62,-84,62xm62,-114r78,0v0,-22,-9,-52,-36,-52v-30,0,-40,27,-42,52xm100,-252r-25,32r-33,0r38,-52r40,0r39,52r-34,0"},"\u00eb":{"d":"102,4v-58,0,-91,-47,-90,-102v0,-53,30,-98,88,-98v26,0,50,5,67,25v19,22,23,52,22,85r-128,0v0,27,11,59,44,59v19,0,32,-13,35,-31r46,0v-3,42,-45,62,-84,62xm62,-114r78,0v0,-22,-9,-52,-36,-52v-30,0,-40,27,-42,52xm42,-223r0,-42r42,0r0,42r-42,0xm117,-223r0,-42r41,0r0,42r-41,0"},"\u00e8":{"d":"102,4v-58,0,-91,-47,-90,-102v0,-53,30,-98,88,-98v26,0,50,5,67,25v19,22,23,52,22,85r-128,0v0,27,11,59,44,59v19,0,32,-13,35,-31r46,0v-3,42,-45,62,-84,62xm62,-114r78,0v0,-22,-9,-52,-36,-52v-30,0,-40,27,-42,52xm46,-272r49,0r32,52r-29,0"},"\u00ed":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31xm33,-220r33,-52r48,0r-51,52r-30,0","w":119},"\u00ee":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31xm60,-252r-25,32r-33,0r38,-52r40,0r39,52r-34,0","w":119},"\u00ef":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31xm2,-223r0,-42r42,0r0,42r-42,0xm77,-223r0,-42r41,0r0,42r-41,0","w":119},"\u00ec":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31xm6,-272r49,0r32,52r-29,0","w":119},"\u00f1":{"d":"148,-31v-6,-49,19,-127,-28,-132v-58,5,-31,79,-37,132r23,0r0,31r-96,0r0,-31r25,0r0,-130r-25,0r0,-31r70,0r0,32v12,-24,31,-36,58,-36v81,-1,54,90,58,165r24,0r0,31r-94,0r0,-31r22,0xm87,-265v30,1,55,29,69,1r0,-3r21,0v-5,22,-16,43,-41,42v-21,-1,-60,-30,-67,2r-19,0v2,-23,15,-42,37,-42","w":226},"\u00f3":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101xm76,-220r33,-52r48,0r-51,52r-30,0","w":206},"\u00f4":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101xm103,-252r-25,32r-33,0r38,-52r40,0r39,52r-33,0","w":206},"\u00f6":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101xm45,-223r0,-42r42,0r0,42r-42,0xm120,-223r0,-42r42,0r0,42r-42,0","w":206},"\u00f2":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101xm49,-272r49,0r32,52r-29,0","w":206},"\u00f5":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101xm77,-265v31,1,58,31,69,-2r21,0v-5,22,-16,43,-41,42v-21,-1,-60,-30,-67,2r-19,0v2,-23,15,-42,37,-42","w":206},"\u0161":{"d":"153,-96v32,41,6,100,-55,100v-18,0,-37,-8,-47,-23r0,19r-34,0r0,-67r37,0v-7,41,58,58,64,17v-4,-36,-54,-23,-77,-41v-47,-37,-22,-105,41,-105v17,0,35,7,45,20r0,-16r34,0r0,62r-35,0v-2,-21,-10,-37,-33,-37v-27,-6,-44,36,-13,44v21,5,59,9,73,27xm149,-272r-39,52r-40,0r-38,-52r32,0r26,32r25,-32r34,0","w":180},"\u00fa":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0r0,-32v-10,24,-31,36,-57,36v-77,1,-55,-90,-58,-165r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46xm86,-220r33,-52r48,0r-51,52r-30,0","w":226},"\u00fb":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0r0,-32v-10,24,-31,36,-57,36v-77,1,-55,-90,-58,-165r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46xm113,-252r-25,32r-33,0r38,-52r40,0r39,52r-33,0","w":226},"\u00fc":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0r0,-32v-10,24,-31,36,-57,36v-77,1,-55,-90,-58,-165r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46xm55,-223r0,-42r42,0r0,42r-42,0xm130,-223r0,-42r42,0r0,42r-42,0","w":226},"\u00f9":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0r0,-32v-10,24,-31,36,-57,36v-77,1,-55,-90,-58,-165r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46xm59,-272r49,0r32,52r-29,0","w":226},"\u00fd":{"d":"5,-161r0,-31r92,0r0,31r-25,0r39,106r37,-106r-24,0r0,-31r85,0r0,31r-15,0r-69,173v-12,40,-37,59,-87,49r0,-33v27,4,43,-2,49,-25r-66,-164r-16,0xm80,-220r32,-52r49,0r-52,52r-29,0","w":213,"k":{",":27,".":27}},"\u00ff":{"d":"5,-161r0,-31r92,0r0,31r-25,0r39,106r37,-106r-24,0r0,-31r85,0r0,31r-15,0r-69,173v-12,40,-37,59,-87,49r0,-33v27,4,43,-2,49,-25r-66,-164r-16,0xm49,-223r0,-42r41,0r0,42r-41,0xm123,-223r0,-42r42,0r0,42r-42,0","w":213,"k":{",":27,".":27}},"\u017e":{"d":"170,0r-154,0r0,-37r101,-126r-62,0r0,31r-36,0r0,-60r151,0r0,36r-102,127r66,0r0,-35r36,0r0,64xm152,-272r-39,52r-40,0r-38,-52r33,0r26,32r25,-32r33,0","w":186},"\u2206":{"d":"10,0r0,-25r85,-237r48,0r82,237r0,25r-215,0xm51,-33r130,0r-65,-184v-16,59,-44,126,-65,184","w":234},"\u2126":{"d":"14,-33v16,-1,36,2,50,-1v-23,-22,-45,-59,-45,-107v0,-67,45,-120,109,-120v121,-1,129,173,61,228r50,0r0,33r-92,0r0,-24v23,-16,46,-53,46,-111v0,-46,-22,-91,-65,-91v-41,0,-68,40,-68,93v0,54,24,94,47,109r0,24r-93,0r0,-33","w":254},"\u03bc":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0v-1,-10,2,-24,-1,-32v-9,24,-30,36,-56,36v-18,0,-12,11,-10,23v3,18,-11,31,-24,31v-35,0,-20,-48,-15,-73v-13,-41,-8,-94,-9,-146r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46","w":226},"\u03c0":{"d":"204,-157r-26,0v1,48,-4,121,5,157r-39,0v-11,-31,-4,-111,-6,-157r-54,0v-2,42,-12,119,-25,157r-39,0v13,-42,23,-114,24,-157v-19,0,-29,0,-37,3r-5,-27v42,-21,143,-7,206,-11","w":213},"\u20ac":{"d":"151,-184v0,-22,-11,-46,-34,-46v-23,0,-33,29,-37,62r77,0r-7,23r-72,0r-1,29r64,0r-7,23r-55,0v3,33,11,64,37,64v19,0,30,-11,34,-33r44,0v-6,49,-46,66,-79,66v-51,0,-77,-39,-84,-97r-28,0r7,-23r20,0v-1,-10,-1,-20,0,-29r-27,0r7,-23r22,0v6,-46,27,-94,78,-94v22,0,32,9,43,23r0,-22r37,0r0,77r-39,0"},"\u2113":{"d":"158,-63r17,17v-18,35,-45,49,-73,49v-44,-1,-62,-29,-63,-67v-6,5,-14,10,-20,15r-10,-22v10,-9,20,-16,29,-25r0,-96v0,-65,29,-91,62,-91v33,0,49,29,49,64v0,44,-28,86,-72,129v-3,35,11,60,34,60v21,0,37,-16,47,-33xm102,-253v-30,0,-25,83,-25,125v26,-31,46,-64,46,-93v0,-20,-6,-32,-21,-32","w":181},"\u212e":{"d":"67,-51v37,64,147,61,189,3r21,0v-26,31,-69,52,-117,52v-82,0,-147,-60,-147,-133v0,-73,65,-133,147,-133v83,1,151,60,149,137r-242,2r0,72xm252,-132v4,-22,4,-62,-1,-84v-45,-50,-137,-50,-181,1v-6,20,-4,60,-1,83r183,0","w":321},"\u2202":{"d":"37,-238r-11,-31v70,-47,160,-8,160,119v0,91,-36,153,-99,153v-49,0,-73,-47,-73,-87v0,-59,36,-95,78,-95v31,0,47,21,55,30v3,-57,-22,-107,-63,-107v-22,0,-37,10,-47,18xm91,-31v29,0,48,-42,52,-82v-4,-13,-20,-34,-44,-34v-26,0,-45,31,-45,65v0,29,15,51,37,51","w":204},"\u220f":{"d":"248,-220r-37,0r0,255r-40,0r0,-255r-85,0r0,255r-40,0r0,-255r-37,0r0,-37r239,0r0,37","w":257},"\u2211":{"d":"193,36r-185,0r0,-27r90,-120r-86,-117r0,-29r175,0r0,35r-121,1r78,104r-86,114r135,0r0,39"},"\u2219":{"d":"26,-152r49,0r0,47r-49,0r0,-47","w":100},"\u221a":{"d":"213,-307r-80,359r-33,0r-55,-163r-26,10r-7,-23r58,-24r39,122v4,11,3,25,8,31r68,-312r28,0","w":211},"\u221e":{"d":"209,-165v32,0,57,23,55,59v-5,74,-84,81,-123,20v-19,23,-37,41,-67,41v-30,0,-56,-24,-56,-59v0,-36,25,-61,59,-61v27,0,47,17,66,41v17,-18,34,-41,66,-41xm77,-67v21,0,38,-20,52,-36v-15,-20,-29,-40,-53,-40v-22,0,-35,17,-35,39v0,20,15,37,36,37xm241,-104v0,-23,-14,-39,-35,-39v-23,0,-40,25,-52,38v23,27,35,38,54,38v21,0,33,-20,33,-37","w":282},"\u222b":{"d":"49,-219v0,-69,25,-107,83,-93r-5,28v-36,-11,-41,21,-41,69v0,59,5,115,5,179v0,71,-26,112,-84,92r6,-29v35,10,42,-12,42,-63v0,-65,-6,-121,-6,-183","w":140},"\u2248":{"d":"66,-163v33,0,45,25,71,26v14,0,23,-10,33,-26r14,13v-10,21,-27,37,-48,37v-24,0,-47,-26,-72,-27v-16,0,-25,13,-34,27r-16,-14v11,-21,30,-36,52,-36xm66,-98v45,0,77,55,104,1r14,13v-10,21,-26,37,-48,37v-23,0,-48,-27,-72,-27v-17,0,-25,13,-34,26r-16,-13v11,-21,30,-37,52,-37","w":199},"\u2260":{"d":"145,-186r-14,33r51,0r0,24r-60,0r-23,50r83,0r0,24r-92,0r-18,42r-19,-8r15,-34r-50,0r0,-24r59,0r22,-50r-81,0r0,-24r90,0r18,-41","w":199},"\u2264":{"d":"181,-36r-161,-82r0,-26r161,-81r0,28r-137,67r137,66r0,28xm182,2r-164,0r0,-24r164,0r0,24","w":199},"\u2265":{"d":"20,-225r161,81r0,26r-161,82r0,-28r137,-67r-137,-66r0,-28xm182,2r-164,0r0,-24r164,0r0,24","w":199},"\u25ca":{"d":"193,-128r-72,145r-32,0r-70,-145r71,-146r33,0xm157,-127v-16,-38,-38,-70,-50,-113r-53,111v17,38,39,72,51,114v15,-40,35,-75,52,-112","w":211},"\u00a0":{"w":100},"\u00ad":{"d":"23,-84r0,-36r88,0r0,36r-88,0","w":133},"\u02c9":{"d":"102,-233r-104,0r0,-23r104,0r0,23","w":100},"\u03a9":{"d":"14,-33v16,-1,36,2,50,-1v-23,-22,-45,-59,-45,-107v0,-67,45,-120,109,-120v121,-1,129,173,61,228r50,0r0,33r-92,0r0,-24v23,-16,46,-53,46,-111v0,-46,-22,-91,-65,-91v-41,0,-68,40,-68,93v0,54,24,94,47,109r0,24r-93,0r0,-33","w":254},"\u2215":{"d":"-24,0r-29,0r139,-258r29,0","w":60}}});if(typeof YUI==="undefined"){var YUI=function(){var D=this,B=arguments,C,A=B.length,E=(typeof YUI_config!=="undefined")&&YUI_config;if(!(D instanceof YUI)){D=new YUI();for(C=0;C<A;C++){D._config(B[C]);}return D;}else{D._init();if(E){D._config(E);}for(C=0;C<A;C++){D._config(B[C]);}D._setup();return D;}};}(function(){var L,B,M="3.1.2",K="http://yui.yahooapis.com/",P="yui3-js-enabled",I=function(){},G=Array.prototype.slice,N={"io.xdrReady":1,"io.xdrResponse":1,"SWF.eventHandler":1},F=(typeof window!="undefined"),E=(F)?window:null,R=(F)?E.document:null,D=R&&R.documentElement,A=D&&D.className,C={},H=new Date().getTime(),J=function(V,U,T,S){if(V&&V.addEventListener){V.addEventListener(U,T,S);}else{if(V&&V.attachEvent){V.attachEvent("on"+U,T);}}},Q=function(W,V,U,S){if(W&&W.removeEventListener){try{W.removeEventListener(V,U,S);}catch(T){}}else{if(W&&W.detachEvent){W.detachEvent("on"+V,U);}}},O=function(){YUI.Env.windowLoaded=true;YUI.Env.DOMReady=true;if(F){Q(window,"load",O);}};if(D&&A.indexOf(P)==-1){if(A){A+=" ";}A+=P;D.className=A;}if(M.indexOf("@")>-1){M="3.0.0";}YUI.prototype={_config:function(Y){Y=Y||{};var T,V,W,U=this.config,X=U.modules,S=U.groups;for(V in Y){T=Y[V];if(X&&V=="modules"){for(W in T){X[W]=T[W];}}else{if(S&&V=="groups"){for(W in T){S[W]=T[W];}}else{if(V=="win"){U[V]=T.contentWindow||T;U.doc=U[V].document;}else{U[V]=T;}}}}},_init:function(){var U,V=this,S=YUI.Env,T=V.Env;V.version=M;if(!T){V.Env={mods:{},base:K,cdn:K+M+"/build/",bootstrapped:false,_idx:0,_used:{},_attached:{},_yidx:0,_uidx:0,_guidp:"y",_loaded:{},getBase:function(c,a){var W,X,Z,d,Y;X=(R&&R.getElementsByTagName("script"))||[];for(Z=0;Z<X.length;Z=Z+1){d=X[Z].src;if(d){Y=d.match(c);W=Y&&Y[1];if(W){U=Y[2];Y=d.match(a);if(Y&&Y[3]){W=Y[1]+Y[3];}break;}}}return W||T.cdn;}};T=V.Env;T._loaded[M]={};if(S&&V!==YUI){T._yidx=++S._yidx;T._guidp=("yui_"+M+"_"+T._yidx+"_"+H).replace(/\./g,"_");}V.id=V.stamp(V);C[V.id]=V;}V.constructor=YUI;V.config=V.config||{win:E,doc:R,debug:true,useBrowserConsole:true,throwFail:true,bootstrap:true,fetchCSS:true};V.config.base=YUI.config.base||V.Env.getBase(/^(.*)yui\/yui([\.\-].*)js(\?.*)?$/,/^(.*\?)(.*\&)(.*)yui\/yui[\.\-].*js(\?.*)?$/);V.config.loaderPath=YUI.config.loaderPath||"loader/loader"+(U||"-min.")+"js";},_setup:function(X){var T,W=this,S=[],V=YUI.Env.mods,U=W.config.core||["get","intl-base","loader","yui-log","yui-later","yui-throttle"];for(T=0;T<U.length;T++){if(V[U[T]]){S.push(U[T]);}}W.use("yui-base");W.use.apply(W,S);},applyTo:function(Y,X,U){if(!(X in N)){this.log(X+": applyTo not allowed","warn","yui");return null;}var T=C[Y],W,S,V;if(T){W=X.split(".");S=T;for(V=0;V<W.length;V=V+1){S=S[W[V]];if(!S){this.log("applyTo not found: "+X,"warn","yui");}}return S.apply(T,U);}return null;},add:function(T,V,S,U){U=U||{};YUI.Env.mods[T]={name:T,fn:V,version:S,details:U};return this;},_attach:function(S,W){var Y,V,b,T,a,U,c=YUI.Env.mods,X=this.Env._attached,Z=S.length;for(Y=0;Y<Z;Y++){V=S[Y];b=c[V];if(!X[V]&&b){X[V]=true;T=b.details;a=T.requires;U=T.use;if(a&&a.length){this._attach(this.Array(a));}if(b.fn){b.fn(this,V);}if(U&&U.length){this._attach(this.Array(U));}}}},use:function(){if(!this.Array){this._attach(["yui-base"]);}var i,c,j,T=this,k=YUI.Env,U=G.call(arguments,0),V=k.mods,S=T.Env,Z=S._used,g=k._loaderQueue,m=U[0],W=U[U.length-1],b=T.Array,l=T.config,a=l.bootstrap,h=[],e=[],X=l.fetchCSS,f=function(o){e.push(o);if(Z[o]){return;}var Y=V[o],p,n;if(Y){Z[o]=true;p=Y.details.requires;n=Y.details.use;}else{if(!k._loaded[M][o]){h.push(o);}else{Z[o]=true;}}if(p){b.each(b(p),f);}if(n){b.each(b(n),f);}},d=function(q){var o=q||{success:true,msg:"not dynamic"},p,n,Y,r=o.data;T._loading=false;if(r){Y=h.concat();h=[];T.Array.each(r,f);n=h.length;if(n){if(h.sort().join()==Y.sort().join()){n=false;}}}if(n&&r){p=r.concat();p.push(function(){T._attach(r);if(W){W(T,o);}});T._loading=false;T.use.apply(T,p);}else{if(r){T._attach(r);}if(W){W(T,o);}}if(T._useQueue&&T._useQueue.size()&&!T._loading){T.use.apply(T,T._useQueue.next());}};if(T._loading){T._useQueue=T._useQueue||new T.Queue();T._useQueue.add(U);return T;}if(typeof W==="function"){U.pop();}else{W=null;}if(m==="*"){U=T.Object.keys(V);}if(T.Loader){c=new T.Loader(l);c.require(U);c.ignoreRegistered=true;c.calculate(null,(X)?null:"js");U=c.sorted;}b.each(U,f);i=h.length;if(i){h=T.Object.keys(b.hash(h));i=h.length;}if(a&&i&&T.Loader){T._loading=true;c=new T.Loader(l);c.onEnd=d;c.context=T;c.attaching=U;c.data=U;c.require((X)?h:U);c.insert(null,(X)?null:"js");}else{if(a&&i&&T.Get&&!S.bootstrapped){T._loading=true;U=b(arguments,0,true);j=function(){T._loading=false;g.running=false;S.bootstrapped=true;T._attach(["loader"]);T.use.apply(T,U);};if(k._bootstrapping){g.add(j);}else{k._bootstrapping=true;T.Get.script(l.base+l.loaderPath,{onEnd:j});}}else{if(i){T.message("Requirement NOT loaded: "+h,"warn","yui");}T._attach(e);d();}}return T;},namespace:function(){var S=arguments,W=null,U,T,V;for(U=0;U<S.length;U=U+1){V=(""+S[U]).split(".");W=this;for(T=(V[0]=="YAHOO")?1:0;T<V.length;T=T+1){W[V[T]]=W[V[T]]||{};W=W[V[T]];}}return W;},log:I,message:I,error:function(T,S){if(this.config.throwFail){throw(S||new Error(T));}else{this.message(T,"error");}return this;},guid:function(S){var T=this.Env._guidp+(++this.Env._uidx);return(S)?(S+T):T;},stamp:function(U,V){if(!U){return U;}var S=(typeof U==="string")?U:U._yuid;if(!S){S=this.guid();if(!V){try{U._yuid=S;}catch(T){S=null;}}}return S;}};L=YUI.prototype;for(B in L){YUI[B]=L[B];}YUI._init();if(F){J(window,"load",O);}else{O();}YUI.Env.add=J;YUI.Env.remove=Q;if(typeof exports=="object"){exports.YUI=YUI;}})();YUI.add("yui-base",function(B){(function(){B.Lang=B.Lang||{};var R=B.Lang,G="array",I="boolean",D="date",M="error",S="function",H="number",K="null",F="object",O="regexp",N="string",C=Object.prototype.toString,P="undefined",E={"undefined":P,"number":H,"boolean":I,"string":N,"[object Function]":S,"[object RegExp]":O,"[object Array]":G,"[object Date]":D,"[object Error]":M},J=/^\s+|\s+$/g,Q="";R.isArray=function(L){return R.type(L)===G;};R.isBoolean=function(L){return typeof L===I;};R.isFunction=function(L){return R.type(L)===S;};R.isDate=function(L){return R.type(L)===D&&L.toString()!=="Invalid Date"&&!isNaN(L);};R.isNull=function(L){return L===null;};R.isNumber=function(L){return typeof L===H&&isFinite(L);};R.isObject=function(U,T){var L=typeof U;return(U&&(L===F||(!T&&(L===S||R.isFunction(U)))))||false;};R.isString=function(L){return typeof L===N;};R.isUndefined=function(L){return typeof L===P;};R.trim=function(L){try{return L.replace(J,Q);}catch(T){return L;}};R.isValue=function(T){var L=R.type(T);switch(L){case H:return isFinite(T);case K:case P:return false;default:return!!(L);}};R.type=function(L){return E[typeof L]||E[C.call(L)]||(L?F:K);};})();(function(){var C=B.Lang,D=Array.prototype,E="length",F=function(M,K,I){var J=(I)?2:F.test(M),H,G,N=K||0;if(J){try{return D.slice.call(M,N);}catch(L){G=[];H=M.length;for(;N<H;N++){G.push(M[N]);}return G;}}else{return[M];}};B.Array=F;F.test=function(I){var G=0;if(C.isObject(I)){if(C.isArray(I)){G=1;}else{try{if((E in I)&&!I.tagName&&!I.alert&&!I.apply){G=2;}}catch(H){}}}return G;};F.each=(D.forEach)?function(G,H,I){D.forEach.call(G||[],H,I||B);return B;}:function(H,J,K){var G=(H&&H.length)||0,I;for(I=0;I<G;I=I+1){J.call(K||B,H[I],I,H);}return B;};F.hash=function(I,H){var L={},G=I.length,K=H&&H.length,J;for(J=0;J<G;J=J+1){if(I[J]){L[I[J]]=(K&&K>J)?H[J]:true;}}return L;};F.indexOf=(D.indexOf)?function(G,H){return D.indexOf.call(G,H);}:function(G,I){for(var H=0;H<G.length;H=H+1){if(G[H]===I){return H;}}return-1;};F.numericSort=function(H,G){return(H-G);};F.some=(D.some)?function(G,H,I){return D.some.call(G,H,I);}:function(H,J,K){var G=H.length,I;for(I=0;I<G;I=I+1){if(J.call(K,H[I],I,H)){return true;}}return false;};})();function A(){this._init();this.add.apply(this,arguments);}A.prototype={_init:function(){this._q=[];},next:function(){return this._q.shift();},last:function(){return this._q.pop();},add:function(){B.Array.each(B.Array(arguments,0,true),function(C){this._q.push(C);},this);return this;},size:function(){return this._q.length;}};B.Queue=A;YUI.Env._loaderQueue=YUI.Env._loaderQueue||new A();(function(){var D=B.Lang,C="__",E=function(H,G){var F=G.toString;if(D.isFunction(F)&&F!=Object.prototype.toString){H.toString=F;}};B.merge=function(){var G=arguments,I={},H,F=G.length;for(H=0;H<F;H=H+1){B.mix(I,G[H],true);}return I;};B.mix=function(F,O,H,N,K,M){if(!O||!F){return F||B;}if(K){switch(K){case 1:return B.mix(F.prototype,O.prototype,H,N,0,M);case 2:B.mix(F.prototype,O.prototype,H,N,0,M);break;case 3:return B.mix(F,O.prototype,H,N,0,M);case 4:return B.mix(F.prototype,O,H,N,0,M);default:}}var J,I,G,L;if(N&&N.length){for(J=0,I=N.length;J<I;++J){G=N[J];L=D.type(F[G]);if(O.hasOwnProperty(G)){if(M&&L=="object"){B.mix(F[G],O[G]);}else{if(H||!(G in F)){F[G]=O[G];}}}}}else{for(J in O){if(O.hasOwnProperty(J)){if(M&&D.isObject(F[J],true)){B.mix(F[J],O[J],H,N,0,true);}else{if(H||!(J in F)){F[J]=O[J];}}}}if(B.UA.ie){E(F,O);}}return F;};B.cached=function(H,F,G){F=F||{};return function(K,J){var I=(J)?Array.prototype.join.call(arguments,C):K;if(!(I in F)||(G&&F[I]==G)){F[I]=H.apply(H,arguments);}return F[I];};};})();(function(){B.Object=function(H){var G=function(){};G.prototype=H;return new G();};var E=B.Object,F=function(H,G){return H&&H.hasOwnProperty&&H.hasOwnProperty(G);},D=undefined,C=function(K,J){var I=(J===2),G=(I)?0:[],H;for(H in K){if(F(K,H)){if(I){G++;}else{G.push((J)?K[H]:H);}}}return G;};E.keys=function(G){return C(G);};E.values=function(G){return C(G,1);};E.size=function(G){return C(G,2);};E.hasKey=F;E.hasValue=function(H,G){return(B.Array.indexOf(E.values(H),G)>-1);};E.owns=F;E.each=function(K,J,L,I){var H=L||B,G;for(G in K){if(I||F(K,G)){J.call(H,K[G],G,K);}}return B;};E.some=function(K,J,L,I){var H=L||B,G;for(G in K){if(I||F(K,G)){if(J.call(H,K[G],G,K)){return true;}}}return false;};E.getValue=function(K,J){if(!B.Lang.isObject(K)){return D;}var H,I=B.Array(J),G=I.length;for(H=0;K!==D&&H<G;H++){K=K[I[H]];}return K;};E.setValue=function(M,K,L){var G,J=B.Array(K),I=J.length-1,H=M;if(I>=0){for(G=0;H!==D&&G<I;G++){H=H[J[G]];}if(H!==D){H[J[G]]=L;}else{return D;}}return M;};})();B.UA=function(){var F=function(K){var L=0;return parseFloat(K.replace(/\./g,function(){return(L++==1)?"":".";}));},G=B.config.win,J=G&&G.navigator,I={ie:0,opera:0,gecko:0,webkit:0,chrome:0,mobile:null,air:0,caja:J&&J.cajaVersion,secure:false,os:null},E=J&&J.userAgent,H=G&&G.location,D=H&&H.href,C;I.secure=D&&(D.toLowerCase().indexOf("https")===0);if(E){if((/windows|win32/i).test(E)){I.os="windows";}else{if((/macintosh/i).test(E)){I.os="macintosh";}else{if((/rhino/i).test(E)){I.os="rhino";}}}if((/KHTML/).test(E)){I.webkit=1;}C=E.match(/AppleWebKit\/([^\s]*)/);if(C&&C[1]){I.webkit=F(C[1]);if(/ Mobile\//.test(E)){I.mobile="Apple";}else{C=E.match(/NokiaN[^\/]*|Android \d\.\d|webOS\/\d\.\d/);if(C){I.mobile=C[0];}}C=E.match(/Chrome\/([^\s]*)/);if(C&&C[1]){I.chrome=F(C[1]);}else{C=E.match(/AdobeAIR\/([^\s]*)/);if(C){I.air=C[0];}}}if(!I.webkit){C=E.match(/Opera[\s\/]([^\s]*)/);if(C&&C[1]){I.opera=F(C[1]);C=E.match(/Opera Mini[^;]*/);if(C){I.mobile=C[0];}}else{C=E.match(/MSIE\s([^;]*)/);if(C&&C[1]){I.ie=F(C[1]);}else{C=E.match(/Gecko\/([^\s]*)/);if(C){I.gecko=1;C=E.match(/rv:([^\s\)]*)/);if(C&&C[1]){I.gecko=F(C[1]);}}}}}}return I;}();},"3.1.2");YUI.add("get",function(A){(function(){var C=A.UA,B=A.Lang,E="text/javascript",F="text/css",D="stylesheet";A.Get=function(){var M,N,J,L={},K=0,U,W=function(a,X,b){var Y=b||A.config.win,c=Y.document,e=c.createElement(a),Z;for(Z in X){if(X[Z]&&X.hasOwnProperty(Z)){e.setAttribute(Z,X[Z]);}}return e;},T=function(Y,Z,X){var a={id:A.guid(),type:F,rel:D,href:Y};if(X){A.mix(a,X);}return W("link",a,Z);},S=function(Y,Z,X){var a={id:A.guid(),type:E};if(X){A.mix(a,X);}a.src=Y;return W("script",a,Z);},P=function(Y,Z,X){return{tId:Y.tId,win:Y.win,data:Y.data,nodes:Y.nodes,msg:Z,statusText:X,purge:function(){N(this.tId);}};},O=function(b,a,X){var Y=L[b],Z;if(Y&&Y.onEnd){Z=Y.context||Y;Y.onEnd.call(Z,P(Y,a,X));}},V=function(a,Z){var X=L[a],Y;if(X.timer){clearTimeout(X.timer);}if(X.onFailure){Y=X.context||X;X.onFailure.call(Y,P(X,Z));}O(a,Z,"failure");},I=function(a){var X=L[a],Z,Y;if(X.timer){clearTimeout(X.timer);}X.finished=true;if(X.aborted){Z="transaction "+a+" was aborted";V(a,Z);return;}if(X.onSuccess){Y=X.context||X;X.onSuccess.call(Y,P(X));}O(a,Z,"OK");},Q=function(Z){var X=L[Z],Y;if(X.onTimeout){Y=X.context||X;X.onTimeout.call(Y,P(X));}O(Z,"timeout","timeout");},H=function(Z,c){var Y=L[Z],b,g,f,e,a,X,i;if(Y.timer){clearTimeout(Y.timer);}if(Y.aborted){b="transaction "+Z+" was aborted";V(Z,b);return;}if(c){Y.url.shift();if(Y.varName){Y.varName.shift();}}else{Y.url=(B.isString(Y.url))?[Y.url]:Y.url;if(Y.varName){Y.varName=(B.isString(Y.varName))?[Y.varName]:Y.varName;}}g=Y.win;f=g.document;e=f.getElementsByTagName("head")[0];if(Y.url.length===0){I(Z);return;}X=Y.url[0];if(!X){Y.url.shift();return H(Z);}if(Y.timeout){Y.timer=setTimeout(function(){Q(Z);},Y.timeout);}if(Y.type==="script"){a=S(X,g,Y.attributes);}else{a=T(X,g,Y.attributes);}J(Y.type,a,Z,X,g,Y.url.length);Y.nodes.push(a);if(Y.insertBefore){i=M(Y.insertBefore,Z);if(i){i.parentNode.insertBefore(a,i);}}else{e.appendChild(a);}if((C.webkit||C.gecko)&&Y.type==="css"){H(Z,X);}},G=function(){if(U){return;}U=true;var X,Y;for(X in L){if(L.hasOwnProperty(X)){Y=L[X];if(Y.autopurge&&Y.finished){N(Y.tId);delete L[X];}}}U=false;},R=function(Y,X,Z){Z=Z||{};var c="q"+(K++),a,b=Z.purgethreshold||A.Get.PURGE_THRESH;if(K%b===0){G();}L[c]=A.merge(Z,{tId:c,type:Y,url:X,finished:false,nodes:[]});a=L[c];a.win=a.win||A.config.win;a.context=a.context||a;a.autopurge=("autopurge"in a)?a.autopurge:(Y==="script")?true:false;a.attributes=a.attributes||{};a.attributes.charset=Z.charset||a.attributes.charset||"utf-8";setTimeout(function(){H(c);},0);return{tId:c};};J=function(Z,e,d,Y,c,b,X){var a=X||H;if(C.ie){e.onreadystatechange=function(){var f=this.readyState;if("loaded"===f||"complete"===f){e.onreadystatechange=null;a(d,Y);}};}else{if(C.webkit){if(Z==="script"){e.addEventListener("load",function(){a(d,Y);});}}else{e.onload=function(){a(d,Y);};e.onerror=function(f){V(d,f+": "+Y);};}}};M=function(X,a){var Y=L[a],Z=(B.isString(X))?Y.win.document.getElementById(X):X;if(!Z){V(a,"target node not found: "+X);}return Z;};N=function(c){var Y,a,g,e,j,b,Z,f,X=L[c];if(X){Y=X.nodes;a=Y.length;g=X.win.document;e=g.getElementsByTagName("head")[0];if(X.insertBefore){j=M(X.insertBefore,c);if(j){e=j.parentNode;}}for(b=0;b<a;b=b+1){Z=Y[b];if(Z.clearAttributes){Z.clearAttributes();}else{for(f in Z){if(Z.hasOwnProperty(f)){delete Z[f];}}}e.removeChild(Z);}}X.nodes=[];};return{PURGE_THRESH:20,_finalize:function(X){setTimeout(function(){I(X);},0);},abort:function(Y){var Z=(B.isString(Y))?Y:Y.tId,X=L[Z];if(X){X.aborted=true;}},script:function(X,Y){return R("script",X,Y);},css:function(X,Y){return R("css",X,Y);}};}();})();},"3.1.2");YUI.add("intl-base",function(B){var A=/[, ]/;B.mix(B.namespace("Intl"),{lookupBestLang:function(G,H){var F,I,C,E;function D(K){var J;for(J=0;J<H.length;J+=1){if(K.toLowerCase()===H[J].toLowerCase()){return H[J];}}}if(B.Lang.isString(G)){G=G.split(A);}for(F=0;F<G.length;F+=1){I=G[F];if(!I||I==="*"){continue;}while(I.length>0){C=D(I);if(C){return C;}else{E=I.lastIndexOf("-");if(E>=0){I=I.substring(0,E);if(E>=2&&I.charAt(E-2)==="-"){I=I.substring(0,E-2);}}else{break;}}}}return"";}});},"3.1.2",{requires:["yui-base"]});YUI.add("yui-log",function(A){(function(){var E,D=A,F="yui:log",B="undefined",C={debug:1,info:1,warn:1,error:1};D.log=function(I,Q,G,O){var K,N,L,J,M,H=D,P=H.config;if(P.debug){if(G){N=P.logExclude;L=P.logInclude;if(L&&!(G in L)){K=1;}else{if(N&&(G in N)){K=1;}}}if(!K){if(P.useBrowserConsole){J=(G)?G+": "+I:I;if(H.Lang.isFunction(P.logFn)){P.logFn(I,Q,G);}else{if(typeof console!=B&&console.log){M=(Q&&console[Q]&&(Q in C))?Q:"log";console[M](J);}else{if(typeof opera!=B){opera.postError(J);}}}}if(H.fire&&!O){if(!E){H.publish(F,{broadcast:2});E=1;}H.fire(F,{msg:I,cat:Q,src:G});}}}return H;};D.message=function(){return D.log.apply(D,arguments);};})();},"3.1.2",{requires:["yui-base"]});YUI.add("yui-later",function(A){(function(){var B=A.Lang,C=function(K,E,L,G,H){K=K||0;E=E||{};var F=L,J=A.Array(G),I,D;if(B.isString(L)){F=E[L];}if(!F){}I=function(){F.apply(E,J);};D=(H)?setInterval(I,K):setTimeout(I,K);return{id:D,interval:H,cancel:function(){if(this.interval){clearInterval(D);}else{clearTimeout(D);}}};};A.later=C;B.later=C;})();},"3.1.2",{requires:["yui-base"]});YUI.add("yui-throttle",function(Y){var throttle=function(fn,ms){ms=(ms)?ms:(Y.config.throttleTime||150);if(ms===-1){return(function(){fn.apply(null,arguments);});}var last=(new Date()).getTime();return(function(){var now=(new Date()).getTime();if(now-last>ms){last=now;fn.apply(null,arguments);}});};Y.throttle=throttle;},"3.1.2",{requires:["yui-base"]});YUI.add("yui",function(A){},"3.1.2",{use:["yui-base","get","intl-base","yui-log","yui-later","yui-throttle"]});var YUI3_config={'base':'/extension/ezjscore/design/standard/lib/yui/3.1.2/build/',modules:{}};var eZAJAXAutoComplete=function(){var _cfg={},YAHOO;var initAutosuggest=function(){var dsJSON=new YAHOO.util.DataSource(_cfg.url);dsJSON.responseType=YAHOO.util.DataSource.TYPE_JSON;dsJSON.connXhrMode="cancelStaleRequests";dsJSON.responseSchema={resultsList:"content",fields:["facet","count"],metaFields:{errorMessage:"error_text"}};var autoComplete=new YAHOO.widget.AutoComplete(_cfg.inputid,_cfg.containerid,dsJSON);autoComplete.useShadow=true;autoComplete.minQueryLength=_cfg.minquerylength;autoComplete.allowBrowserAutocomplete=false;autoComplete.generateRequest=function(q){return"::"+q+"::"+_cfg.resultlimit+"?ContentType=json";};}
return{init:function(configuration){_cfg=configuration;YUI(YUI3_config).use('yui2-connection','yui2-autocomplete',function(Y){YAHOO=Y.YUI2;initAutosuggest();});}}};
