/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-05-24 14:22:17 -0400 (Sat, 24 May 2008) $
 * $Rev: 5685 $
 */
(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem){if(elem.id!=match[3])return jQuery().find(selector);return jQuery(elem);}selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value===undefined)return this[0]&&jQuery[type||"attr"](this[0],name);else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=='string'?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}if(value.constructor==Number)value+='';return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value==undefined?(this[0]?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script"))scripts=scripts.add(elem);else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}function now(){return+new Date;}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==i){target=this;--i;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){var src=target[name],copy=options[name];if(target===copy)continue;if(deep&&copy&&typeof copy=="object"&&!copy.nodeType)target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)target[name]=copy;}return target;};var expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/^[\s[]?function/.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!==undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length==undefined){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(length==undefined){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;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem+='';if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?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(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem[name]=value;}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;return elem[name];}if(msie&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call)ret[0]=array;else
while(i)ret[--i]=array[i];}return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]===elem)return i;return-1;},merge:function(first,second){var i=0,elem,pos=first.length;if(jQuery.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else
while(elem=second[i++])first[pos++]=elem;return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv!=!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null)ret[ret.length]=value;}return ret.concat.apply([],ret);}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},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");},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(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false,re=quickChild,m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){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;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event){data.unshift({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var props="altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();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.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(fn){var args=arguments,i=1;while(i<args.length)jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!='string')return this._load(url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);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(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?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);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){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)){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",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");var remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();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)xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xhr)&&"error"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xhr,status);complete();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xhr,s]);}function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(filter)data=filter(data,type);if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(jQuery.isFunction(a[j])?a[j]():a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall),p,hidden=jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return opt.complete.call(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}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(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.call(this);}});},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;}});var queue=function(elem,type,array){if(elem){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",jQuery.makeArray(array));}return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].call(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;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:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now();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;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done)this.options.complete.call(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](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,{speeds:{slow:600,fast:200,def:400},step:{scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}}});jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),css=jQuery.curCSS,fixed=css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l,10)||0;top+=parseInt(t,10)||0;}return results;};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};});})();

;(function($){$.ui={plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]]);}},call:function(instance,name,args){var set=instance.plugins[name];if(!set){return;}
for(var i=0;i<set.length;i++){if(instance.options[set[i][0]]){set[i][1].apply(instance.element,args);}}}},cssCache:{},css:function(name){if($.ui.cssCache[name]){return $.ui.cssCache[name];}
var tmp=$('<div class="ui-gen">').addClass(name).css({position:'absolute',top:'-5000px',left:'-5000px',display:'block'}).appendTo('body');$.ui.cssCache[name]=!!((!(/auto|default/).test(tmp.css('cursor'))||(/^[1-9]/).test(tmp.css('height'))||(/^[1-9]/).test(tmp.css('width'))||!(/none/).test(tmp.css('backgroundImage'))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(tmp.css('backgroundColor'))));try{$('body').get(0).removeChild(tmp.get(0));}catch(e){}
return $.ui.cssCache[name];},disableSelection:function(e){e.unselectable="on";e.onselectstart=function(){return false;};if(e.style){e.style.MozUserSelect="none";}},enableSelection:function(e){e.unselectable="off";e.onselectstart=function(){return true;};if(e.style){e.style.MozUserSelect="";}},hasScroll:function(e,a){var scroll=/top/.test(a||"top")?'scrollTop':'scrollLeft',has=false;if(e[scroll]>0)return true;e[scroll]=1;has=e[scroll]>0?true:false;e[scroll]=0;return has;}};var _remove=$.fn.remove;$.fn.remove=function(){$("*",this).add(this).trigger("remove");return _remove.apply(this,arguments);};function getter(namespace,plugin,method){var methods=$[namespace][plugin].getter||[];methods=(typeof methods=="string"?methods.split(/,?\s+/):methods);return($.inArray(method,methods)!=-1);}
$.widget=function(name,prototype){var namespace=name.split(".")[0];name=name.split(".")[1];$.fn[name]=function(options){var isMethodCall=(typeof options=='string'),args=Array.prototype.slice.call(arguments,1);if(isMethodCall&&getter(namespace,name,options)){var instance=$.data(this[0],name);return(instance?instance[options].apply(instance,args):undefined);}
return this.each(function(){var instance=$.data(this,name);if(isMethodCall&&instance&&$.isFunction(instance[options])){instance[options].apply(instance,args);}else if(!isMethodCall){$.data(this,name,new $[namespace][name](this,options));}});};$[namespace][name]=function(element,options){var self=this;this.widgetName=name;this.widgetBaseClass=namespace+'-'+name;this.options=$.extend({},$.widget.defaults,$[namespace][name].defaults,options);this.element=$(element).bind('setData.'+name,function(e,key,value){return self.setData(key,value);}).bind('getData.'+name,function(e,key){return self.getData(key);}).bind('remove',function(){return self.destroy();});this.init();};$[namespace][name].prototype=$.extend({},$.widget.prototype,prototype);};$.widget.prototype={init:function(){},destroy:function(){this.element.removeData(this.widgetName);},getData:function(key){return this.options[key];},setData:function(key,value){this.options[key]=value;if(key=='disabled'){this.element[value?'addClass':'removeClass'](this.widgetBaseClass+'-disabled');}},enable:function(){this.setData('disabled',false);},disable:function(){this.setData('disabled',true);}};$.widget.defaults={disabled:false};$.ui.mouse={mouseInit:function(){var self=this;this.element.bind('mousedown.'+this.widgetName,function(e){return self.mouseDown(e);});if($.browser.msie){this._mouseUnselectable=this.element.attr('unselectable');this.element.attr('unselectable','on');}
this.started=false;},mouseDestroy:function(){this.element.unbind('.'+this.widgetName);($.browser.msie&&this.element.attr('unselectable',this._mouseUnselectable));},mouseDown:function(e){(this._mouseStarted&&this.mouseUp(e));this._mouseDownEvent=e;var self=this,btnIsLeft=(e.which==1),elIsCancel=(typeof this.options.cancel=="string"?$(e.target).is(this.options.cancel):false);if(!btnIsLeft||elIsCancel||!this.mouseCapture(e)){return true;}
this._mouseDelayMet=!this.options.delay;if(!this._mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){self._mouseDelayMet=true;},this.options.delay);}
if(this.mouseDistanceMet(e)&&this.mouseDelayMet(e)){this._mouseStarted=(this.mouseStart(e)!==false);if(!this._mouseStarted){e.preventDefault();return true;}}
this._mouseMoveDelegate=function(e){return self.mouseMove(e);};this._mouseUpDelegate=function(e){return self.mouseUp(e);};$(document).bind('mousemove.'+this.widgetName,this._mouseMoveDelegate).bind('mouseup.'+this.widgetName,this._mouseUpDelegate);return false;},mouseMove:function(e){if($.browser.msie&&!e.button){return this.mouseUp(e);}
if(this._mouseStarted){this.mouseDrag(e);return false;}
if(this.mouseDistanceMet(e)&&this.mouseDelayMet(e)){this._mouseStarted=(this.mouseStart(this._mouseDownEvent,e)!==false);(this._mouseStarted?this.mouseDrag(e):this.mouseUp(e));}
return!this._mouseStarted;},mouseUp:function(e){$(document).unbind('mousemove.'+this.widgetName,this._mouseMoveDelegate).unbind('mouseup.'+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this.mouseStop(e);}
return false;},mouseDistanceMet:function(e){return(Math.max(Math.abs(this._mouseDownEvent.pageX-e.pageX),Math.abs(this._mouseDownEvent.pageY-e.pageY))>=this.options.distance);},mouseDelayMet:function(e){return this._mouseDelayMet;},mouseStart:function(e){},mouseDrag:function(e){},mouseStop:function(e){},mouseCapture:function(e){return true;}};$.ui.mouse.defaults={cancel:null,distance:1,delay:0};})(jQuery);(function($){$.widget("ui.draggable",$.extend($.ui.mouse,{init:function(){var o=this.options;if(o.helper=='original'&&!(/(relative|absolute|fixed)/).test(this.element.css('position')))
this.element.css('position','relative');this.element.addClass('ui-draggable');(o.disabled&&this.element.addClass('ui-draggable-disabled'));this.mouseInit();},mouseStart:function(e){var o=this.options;if(this.helper||o.disabled||$(e.target).is('.ui-resizable-handle'))return false;var handle=!this.options.handle||!$(this.options.handle,this.element).length?true:false;$(this.options.handle,this.element).find("*").andSelf().each(function(){if(this==e.target)handle=true;});if(!handle)return false;if($.ui.ddmanager)$.ui.ddmanager.current=this;this.helper=$.isFunction(o.helper)?$(o.helper.apply(this.element[0],[e])):(o.helper=='clone'?this.element.clone():this.element);if(!this.helper.parents('body').length)this.helper.appendTo((o.appendTo=='parent'?this.element[0].parentNode:o.appendTo));if(this.helper[0]!=this.element[0]&&!(/(fixed|absolute)/).test(this.helper.css("position")))this.helper.css("position","absolute");this.margins={left:(parseInt(this.element.css("marginLeft"),10)||0),top:(parseInt(this.element.css("marginTop"),10)||0)};this.cssPosition=this.helper.css("position");this.offset=this.element.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};this.offset.click={left:e.pageX-this.offset.left,top:e.pageY-this.offset.top};this.offsetParent=this.helper.offsetParent();var po=this.offsetParent.offset();if(this.offsetParent[0]==document.body&&$.browser.mozilla)po={top:0,left:0};this.offset.parent={top:po.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:po.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)};var p=this.element.position();this.offset.relative=this.cssPosition=="relative"?{top:p.top-(parseInt(this.helper.css("top"),10)||0)+this.offsetParent[0].scrollTop,left:p.left-(parseInt(this.helper.css("left"),10)||0)+this.offsetParent[0].scrollLeft}:{top:0,left:0};this.originalPosition=this.generatePosition(e);this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()};if(o.cursorAt){if(o.cursorAt.left!=undefined)this.offset.click.left=o.cursorAt.left+this.margins.left;if(o.cursorAt.right!=undefined)this.offset.click.left=this.helperProportions.width-o.cursorAt.right+this.margins.left;if(o.cursorAt.top!=undefined)this.offset.click.top=o.cursorAt.top+this.margins.top;if(o.cursorAt.bottom!=undefined)this.offset.click.top=this.helperProportions.height-o.cursorAt.bottom+this.margins.top;}
if(o.containment){if(o.containment=='parent')o.containment=this.helper[0].parentNode;if(o.containment=='document'||o.containment=='window')this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,$(o.containment=='document'?document:window).width()-this.offset.relative.left-this.offset.parent.left-this.helperProportions.width-this.margins.left-(parseInt(this.element.css("marginRight"),10)||0),($(o.containment=='document'?document:window).height()||document.body.parentNode.scrollHeight)-this.offset.relative.top-this.offset.parent.top-this.helperProportions.height-this.margins.top-(parseInt(this.element.css("marginBottom"),10)||0)];if(!(/^(document|window|parent)$/).test(o.containment)){var ce=$(o.containment)[0];var co=$(o.containment).offset();this.containment=[co.left+(parseInt($(ce).css("borderLeftWidth"),10)||0)-this.offset.relative.left-this.offset.parent.left,co.top+(parseInt($(ce).css("borderTopWidth"),10)||0)-this.offset.relative.top-this.offset.parent.top,co.left+Math.max(ce.scrollWidth,ce.offsetWidth)-(parseInt($(ce).css("borderLeftWidth"),10)||0)-this.offset.relative.left-this.offset.parent.left-this.helperProportions.width-this.margins.left-(parseInt(this.element.css("marginRight"),10)||0),co.top+Math.max(ce.scrollHeight,ce.offsetHeight)-(parseInt($(ce).css("borderTopWidth"),10)||0)-this.offset.relative.top-this.offset.parent.top-this.helperProportions.height-this.margins.top-(parseInt(this.element.css("marginBottom"),10)||0)];}}
this.propagate("start",e);this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()};if($.ui.ddmanager&&!o.dropBehaviour)$.ui.ddmanager.prepareOffsets(this,e);this.helper.addClass("ui-draggable-dragging");this.mouseDrag(e);return true;},convertPositionTo:function(d,pos){if(!pos)pos=this.position;var mod=d=="absolute"?1:-1;return{top:(pos.top
+this.offset.relative.top*mod
+this.offset.parent.top*mod
-(this.cssPosition=="fixed"||(this.cssPosition=="absolute"&&this.offsetParent[0]==document.body)?0:this.offsetParent[0].scrollTop)*mod
+(this.cssPosition=="fixed"?$(document).scrollTop():0)*mod
+this.margins.top*mod),left:(pos.left
+this.offset.relative.left*mod
+this.offset.parent.left*mod
-(this.cssPosition=="fixed"||(this.cssPosition=="absolute"&&this.offsetParent[0]==document.body)?0:this.offsetParent[0].scrollLeft)*mod
+(this.cssPosition=="fixed"?$(document).scrollLeft():0)*mod
+this.margins.left*mod)};},generatePosition:function(e){var o=this.options;var position={top:(e.pageY
-this.offset.click.top
-this.offset.relative.top
-this.offset.parent.top
+(this.cssPosition=="fixed"||(this.cssPosition=="absolute"&&this.offsetParent[0]==document.body)?0:this.offsetParent[0].scrollTop)
-(this.cssPosition=="fixed"?$(document).scrollTop():0)),left:(e.pageX
-this.offset.click.left
-this.offset.relative.left
-this.offset.parent.left
+(this.cssPosition=="fixed"||(this.cssPosition=="absolute"&&this.offsetParent[0]==document.body)?0:this.offsetParent[0].scrollLeft)
-(this.cssPosition=="fixed"?$(document).scrollLeft():0))};if(!this.originalPosition)return position;if(this.containment){if(position.left<this.containment[0])position.left=this.containment[0];if(position.top<this.containment[1])position.top=this.containment[1];if(position.left>this.containment[2])position.left=this.containment[2];if(position.top>this.containment[3])position.top=this.containment[3];}
if(o.grid){var top=this.originalPosition.top+Math.round((position.top-this.originalPosition.top)/o.grid[1])*o.grid[1];position.top=this.containment?(!(top<this.containment[1]||top>this.containment[3])?top:(!(top<this.containment[1])?top-o.grid[1]:top+o.grid[1])):top;var left=this.originalPosition.left+Math.round((position.left-this.originalPosition.left)/o.grid[0])*o.grid[0];position.left=this.containment?(!(left<this.containment[0]||left>this.containment[2])?left:(!(left<this.containment[0])?left-o.grid[0]:left+o.grid[0])):left;}
return position;},mouseDrag:function(e){this.position=this.generatePosition(e);this.positionAbs=this.convertPositionTo("absolute");this.position=this.propagate("drag",e)||this.position;if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+'px';if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+'px';if($.ui.ddmanager)$.ui.ddmanager.drag(this,e);return false;},mouseStop:function(e){if($.ui.ddmanager&&!this.options.dropBehaviour)
$.ui.ddmanager.drop(this,e);if(this.options.revert){var self=this;$(this.helper).animate(this.originalPosition,parseInt(this.options.revert,10)||500,function(){self.propagate("stop",e);self.clear();});}else{this.propagate("stop",e);this.clear();}
return false;},clear:function(){this.helper.removeClass("ui-draggable-dragging");if(this.options.helper!='original'&&!this.cancelHelperRemoval)this.helper.remove();this.helper=null;this.cancelHelperRemoval=false;},plugins:{},uiHash:function(e){return{helper:this.helper,position:this.position,absolutePosition:this.positionAbs,options:this.options};},propagate:function(n,e){$.ui.plugin.call(this,n,[e,this.uiHash()]);return this.element.triggerHandler(n=="drag"?n:"drag"+n,[e,this.uiHash()],this.options[n]);},destroy:function(){if(!this.element.data('draggable'))return;this.element.removeData("draggable").unbind(".draggable").removeClass('ui-draggable');this.mouseDestroy();}}));$.extend($.ui.draggable,{defaults:{appendTo:"parent",axis:false,cancel:":input",delay:0,distance:1,helper:"original"}});$.ui.plugin.add("draggable","cursor",{start:function(e,ui){var t=$('body');if(t.css("cursor"))ui.options._cursor=t.css("cursor");t.css("cursor",ui.options.cursor);},stop:function(e,ui){if(ui.options._cursor)$('body').css("cursor",ui.options._cursor);}});$.ui.plugin.add("draggable","zIndex",{start:function(e,ui){var t=$(ui.helper);if(t.css("zIndex"))ui.options._zIndex=t.css("zIndex");t.css('zIndex',ui.options.zIndex);},stop:function(e,ui){if(ui.options._zIndex)$(ui.helper).css('zIndex',ui.options._zIndex);}});$.ui.plugin.add("draggable","opacity",{start:function(e,ui){var t=$(ui.helper);if(t.css("opacity"))ui.options._opacity=t.css("opacity");t.css('opacity',ui.options.opacity);},stop:function(e,ui){if(ui.options._opacity)$(ui.helper).css('opacity',ui.options._opacity);}});$.ui.plugin.add("draggable","iframeFix",{start:function(e,ui){$(ui.options.iframeFix===true?"iframe":ui.options.iframeFix).each(function(){$('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1000}).css($(this).offset()).appendTo("body");});},stop:function(e,ui){$("div.DragDropIframeFix").each(function(){this.parentNode.removeChild(this);});}});$.ui.plugin.add("draggable","scroll",{start:function(e,ui){var o=ui.options;var i=$(this).data("draggable");o.scrollSensitivity=o.scrollSensitivity||20;o.scrollSpeed=o.scrollSpeed||20;i.overflowY=function(el){do{if(/auto|scroll/.test(el.css('overflow'))||(/auto|scroll/).test(el.css('overflow-y')))return el;el=el.parent();}while(el[0].parentNode);return $(document);}(this);i.overflowX=function(el){do{if(/auto|scroll/.test(el.css('overflow'))||(/auto|scroll/).test(el.css('overflow-x')))return el;el=el.parent();}while(el[0].parentNode);return $(document);}(this);if(i.overflowY[0]!=document&&i.overflowY[0].tagName!='HTML')i.overflowYOffset=i.overflowY.offset();if(i.overflowX[0]!=document&&i.overflowX[0].tagName!='HTML')i.overflowXOffset=i.overflowX.offset();},drag:function(e,ui){var o=ui.options;var i=$(this).data("draggable");if(i.overflowY[0]!=document&&i.overflowY[0].tagName!='HTML'){if((i.overflowYOffset.top+i.overflowY[0].offsetHeight)-e.pageY<o.scrollSensitivity)
i.overflowY[0].scrollTop=i.overflowY[0].scrollTop+o.scrollSpeed;if(e.pageY-i.overflowYOffset.top<o.scrollSensitivity)
i.overflowY[0].scrollTop=i.overflowY[0].scrollTop-o.scrollSpeed;}else{if(e.pageY-$(document).scrollTop()<o.scrollSensitivity)
$(document).scrollTop($(document).scrollTop()-o.scrollSpeed);if($(window).height()-(e.pageY-$(document).scrollTop())<o.scrollSensitivity)
$(document).scrollTop($(document).scrollTop()+o.scrollSpeed);}
if(i.overflowX[0]!=document&&i.overflowX[0].tagName!='HTML'){if((i.overflowXOffset.left+i.overflowX[0].offsetWidth)-e.pageX<o.scrollSensitivity)
i.overflowX[0].scrollLeft=i.overflowX[0].scrollLeft+o.scrollSpeed;if(e.pageX-i.overflowXOffset.left<o.scrollSensitivity)
i.overflowX[0].scrollLeft=i.overflowX[0].scrollLeft-o.scrollSpeed;}else{if(e.pageX-$(document).scrollLeft()<o.scrollSensitivity)
$(document).scrollLeft($(document).scrollLeft()-o.scrollSpeed);if($(window).width()-(e.pageX-$(document).scrollLeft())<o.scrollSensitivity)
$(document).scrollLeft($(document).scrollLeft()+o.scrollSpeed);}}});$.ui.plugin.add("draggable","snap",{start:function(e,ui){var inst=$(this).data("draggable");inst.snapElements=[];$(ui.options.snap===true?'.ui-draggable':ui.options.snap).each(function(){var $t=$(this);var $o=$t.offset();if(this!=inst.element[0])inst.snapElements.push({item:this,width:$t.outerWidth(),height:$t.outerHeight(),top:$o.top,left:$o.left});});},drag:function(e,ui){var inst=$(this).data("draggable");var d=ui.options.snapTolerance||20;var x1=ui.absolutePosition.left,x2=x1+inst.helperProportions.width,y1=ui.absolutePosition.top,y2=y1+inst.helperProportions.height;for(var i=inst.snapElements.length-1;i>=0;i--){var l=inst.snapElements[i].left,r=l+inst.snapElements[i].width,t=inst.snapElements[i].top,b=t+inst.snapElements[i].height;if(!((l-d<x1&&x1<r+d&&t-d<y1&&y1<b+d)||(l-d<x1&&x1<r+d&&t-d<y2&&y2<b+d)||(l-d<x2&&x2<r+d&&t-d<y1&&y1<b+d)||(l-d<x2&&x2<r+d&&t-d<y2&&y2<b+d)))continue;if(ui.options.snapMode!='inner'){var ts=Math.abs(t-y2)<=20;var bs=Math.abs(b-y1)<=20;var ls=Math.abs(l-x2)<=20;var rs=Math.abs(r-x1)<=20;if(ts)ui.position.top=inst.convertPositionTo("relative",{top:t-inst.helperProportions.height,left:0}).top;if(bs)ui.position.top=inst.convertPositionTo("relative",{top:b,left:0}).top;if(ls)ui.position.left=inst.convertPositionTo("relative",{top:0,left:l-inst.helperProportions.width}).left;if(rs)ui.position.left=inst.convertPositionTo("relative",{top:0,left:r}).left;}
if(ui.options.snapMode!='outer'){var ts=Math.abs(t-y1)<=20;var bs=Math.abs(b-y2)<=20;var ls=Math.abs(l-x1)<=20;var rs=Math.abs(r-x2)<=20;if(ts)ui.position.top=inst.convertPositionTo("relative",{top:t,left:0}).top;if(bs)ui.position.top=inst.convertPositionTo("relative",{top:b-inst.helperProportions.height,left:0}).top;if(ls)ui.position.left=inst.convertPositionTo("relative",{top:0,left:l}).left;if(rs)ui.position.left=inst.convertPositionTo("relative",{top:0,left:r-inst.helperProportions.width}).left;}};}});$.ui.plugin.add("draggable","connectToSortable",{start:function(e,ui){var inst=$(this).data("draggable");inst.sortables=[];$(ui.options.connectToSortable).each(function(){if($.data(this,'sortable')){var sortable=$.data(this,'sortable');inst.sortables.push({instance:sortable,shouldRevert:sortable.options.revert});sortable.refreshItems();sortable.propagate("activate",e,inst);}});},stop:function(e,ui){var inst=$(this).data("draggable");$.each(inst.sortables,function(){if(this.instance.isOver){this.instance.isOver=0;inst.cancelHelperRemoval=true;this.instance.cancelHelperRemoval=false;if(this.shouldRevert)this.instance.options.revert=true;this.instance.mouseStop(e);this.instance.element.triggerHandler("sortreceive",[e,$.extend(this.instance.ui(),{sender:inst.element})],this.instance.options["receive"]);this.instance.options.helper=this.instance.options._helper;}else{this.instance.propagate("deactivate",e,inst);}});},drag:function(e,ui){var inst=$(this).data("draggable"),self=this;var checkPos=function(o){var l=o.left,r=l+o.width,t=o.top,b=t+o.height;return(l<(this.positionAbs.left+this.offset.click.left)&&(this.positionAbs.left+this.offset.click.left)<r&&t<(this.positionAbs.top+this.offset.click.top)&&(this.positionAbs.top+this.offset.click.top)<b);};$.each(inst.sortables,function(i){if(checkPos.call(inst,this.instance.containerCache)){if(!this.instance.isOver){this.instance.isOver=1;this.instance.currentItem=$(self).clone().appendTo(this.instance.element).data("sortable-item",true);this.instance.options._helper=this.instance.options.helper;this.instance.options.helper=function(){return ui.helper[0];};e.target=this.instance.currentItem[0];this.instance.mouseCapture(e,true);this.instance.mouseStart(e,true,true);this.instance.offset.click.top=inst.offset.click.top;this.instance.offset.click.left=inst.offset.click.left;this.instance.offset.parent.left-=inst.offset.parent.left-this.instance.offset.parent.left;this.instance.offset.parent.top-=inst.offset.parent.top-this.instance.offset.parent.top;inst.propagate("toSortable",e);}
if(this.instance.currentItem)this.instance.mouseDrag(e);}else{if(this.instance.isOver){this.instance.isOver=0;this.instance.cancelHelperRemoval=true;this.instance.options.revert=false;this.instance.mouseStop(e,true);this.instance.options.helper=this.instance.options._helper;this.instance.currentItem.remove();if(this.instance.placeholder)this.instance.placeholder.remove();inst.propagate("fromSortable",e);}};});}});$.ui.plugin.add("draggable","stack",{start:function(e,ui){var group=$.makeArray($(ui.options.stack.group)).sort(function(a,b){return(parseInt($(a).css("zIndex"),10)||ui.options.stack.min)-(parseInt($(b).css("zIndex"),10)||ui.options.stack.min);});$(group).each(function(i){this.style.zIndex=ui.options.stack.min+i;});this[0].style.zIndex=ui.options.stack.min+group.length;}});})(jQuery);(function($){$.widget("ui.droppable",{init:function(){this.element.addClass("ui-droppable");this.isover=0;this.isout=1;var o=this.options,accept=o.accept;o=$.extend(o,{accept:o.accept&&o.accept.constructor==Function?o.accept:function(d){return $(d).is(accept);}});this.proportions={width:this.element.outerWidth(),height:this.element.outerHeight()};$.ui.ddmanager.droppables.push(this);},plugins:{},ui:function(c){return{draggable:(c.currentItem||c.element),helper:c.helper,position:c.position,absolutePosition:c.positionAbs,options:this.options,element:this.element};},destroy:function(){var drop=$.ui.ddmanager.droppables;for(var i=0;i<drop.length;i++)
if(drop[i]==this)
drop.splice(i,1);this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable");},over:function(e){var draggable=$.ui.ddmanager.current;if(!draggable||(draggable.currentItem||draggable.element)[0]==this.element[0])return;if(this.options.accept.call(this.element,(draggable.currentItem||draggable.element))){$.ui.plugin.call(this,'over',[e,this.ui(draggable)]);this.element.triggerHandler("dropover",[e,this.ui(draggable)],this.options.over);}},out:function(e){var draggable=$.ui.ddmanager.current;if(!draggable||(draggable.currentItem||draggable.element)[0]==this.element[0])return;if(this.options.accept.call(this.element,(draggable.currentItem||draggable.element))){$.ui.plugin.call(this,'out',[e,this.ui(draggable)]);this.element.triggerHandler("dropout",[e,this.ui(draggable)],this.options.out);}},drop:function(e,custom){var draggable=custom||$.ui.ddmanager.current;if(!draggable||(draggable.currentItem||draggable.element)[0]==this.element[0])return false;var childrenIntersection=false;this.element.find(".ui-droppable").not(".ui-draggable-dragging").each(function(){var inst=$.data(this,'droppable');if(inst.options.greedy&&$.ui.intersect(draggable,$.extend(inst,{offset:inst.element.offset()}),inst.options.tolerance)){childrenIntersection=true;return false;}});if(childrenIntersection)return false;if(this.options.accept.call(this.element,(draggable.currentItem||draggable.element))){$.ui.plugin.call(this,'drop',[e,this.ui(draggable)]);this.element.triggerHandler("drop",[e,this.ui(draggable)],this.options.drop);return true;}
return false;},activate:function(e){var draggable=$.ui.ddmanager.current;$.ui.plugin.call(this,'activate',[e,this.ui(draggable)]);if(draggable)this.element.triggerHandler("dropactivate",[e,this.ui(draggable)],this.options.activate);},deactivate:function(e){var draggable=$.ui.ddmanager.current;$.ui.plugin.call(this,'deactivate',[e,this.ui(draggable)]);if(draggable)this.element.triggerHandler("dropdeactivate",[e,this.ui(draggable)],this.options.deactivate);}});$.extend($.ui.droppable,{defaults:{disabled:false,tolerance:'intersect'}});$.ui.intersect=function(draggable,droppable,toleranceMode){if(!droppable.offset)return false;var x1=(draggable.positionAbs||draggable.position.absolute).left,x2=x1+draggable.helperProportions.width,y1=(draggable.positionAbs||draggable.position.absolute).top,y2=y1+draggable.helperProportions.height;var l=droppable.offset.left,r=l+droppable.proportions.width,t=droppable.offset.top,b=t+droppable.proportions.height;switch(toleranceMode){case'fit':return(l<x1&&x2<r&&t<y1&&y2<b);break;case'intersect':return(l<x1+(draggable.helperProportions.width/2)&&x2-(draggable.helperProportions.width/2)<r&&t<y1+(draggable.helperProportions.height/2)&&y2-(draggable.helperProportions.height/2)<b);break;case'pointer':return(l<((draggable.positionAbs||draggable.position.absolute).left+(draggable.clickOffset||draggable.offset.click).left)&&((draggable.positionAbs||draggable.position.absolute).left+(draggable.clickOffset||draggable.offset.click).left)<r&&t<((draggable.positionAbs||draggable.position.absolute).top+(draggable.clickOffset||draggable.offset.click).top)&&((draggable.positionAbs||draggable.position.absolute).top+(draggable.clickOffset||draggable.offset.click).top)<b);break;case'touch':return((y1>=t&&y1<=b)||(y2>=t&&y2<=b)||(y1<t&&y2>b))&&((x1>=l&&x1<=r)||(x2>=l&&x2<=r)||(x1<l&&x2>r));break;default:return false;break;}};$.ui.ddmanager={current:null,droppables:[],prepareOffsets:function(t,e){var m=$.ui.ddmanager.droppables;var type=e?e.type:null;for(var i=0;i<m.length;i++){if(m[i].options.disabled||(t&&!m[i].options.accept.call(m[i].element,(t.currentItem||t.element))))continue;m[i].visible=m[i].element.is(":visible");if(!m[i].visible)continue;m[i].offset=m[i].element.offset();m[i].proportions={width:m[i].element.outerWidth(),height:m[i].element.outerHeight()};if(type=="dragstart"||type=="sortactivate")m[i].activate.call(m[i],e);}},drop:function(draggable,e){var dropped=false;$.each($.ui.ddmanager.droppables,function(){if(!this.options)return;if(!this.options.disabled&&this.visible&&$.ui.intersect(draggable,this,this.options.tolerance))
dropped=this.drop.call(this,e);if(!this.options.disabled&&this.visible&&this.options.accept.call(this.element,(draggable.currentItem||draggable.element))){this.isout=1;this.isover=0;this.deactivate.call(this,e);}});return dropped;},drag:function(draggable,e){if(draggable.options.refreshPositions)$.ui.ddmanager.prepareOffsets(draggable,e);$.each($.ui.ddmanager.droppables,function(){if(this.options.disabled||this.greedyChild||!this.visible)return;var intersects=$.ui.intersect(draggable,this,this.options.tolerance);var c=!intersects&&this.isover==1?'isout':(intersects&&this.isover==0?'isover':null);if(!c)return;var parentInstance;if(this.options.greedy){var parent=this.element.parents('.ui-droppable:eq(0)');if(parent.length){parentInstance=$.data(parent[0],'droppable');parentInstance.greedyChild=(c=='isover'?1:0);}}
if(parentInstance&&c=='isover'){parentInstance['isover']=0;parentInstance['isout']=1;parentInstance.out.call(parentInstance,e);}
this[c]=1;this[c=='isout'?'isover':'isout']=0;this[c=="isover"?"over":"out"].call(this,e);if(parentInstance&&c=='isout'){parentInstance['isout']=0;parentInstance['isover']=1;parentInstance.over.call(parentInstance,e);}});}};$.ui.plugin.add("droppable","activeClass",{activate:function(e,ui){$(this).addClass(ui.options.activeClass);},deactivate:function(e,ui){$(this).removeClass(ui.options.activeClass);},drop:function(e,ui){$(this).removeClass(ui.options.activeClass);}});$.ui.plugin.add("droppable","hoverClass",{over:function(e,ui){$(this).addClass(ui.options.hoverClass);},out:function(e,ui){$(this).removeClass(ui.options.hoverClass);},drop:function(e,ui){$(this).removeClass(ui.options.hoverClass);}});})(jQuery);(function($){function contains(a,b){var safari2=$.browser.safari&&$.browser.version<522;if(a.contains&&!safari2){return a.contains(b);}
if(a.compareDocumentPosition)
return!!(a.compareDocumentPosition(b)&16);while(b=b.parentNode)
if(b==a)return true;return false;};$.widget("ui.sortable",$.extend($.ui.mouse,{init:function(){var o=this.options;this.containerCache={};this.element.addClass("ui-sortable");this.refresh();this.floating=this.items.length?(/left|right/).test(this.items[0].item.css('float')):false;if(!(/(relative|absolute|fixed)/).test(this.element.css('position')))this.element.css('position','relative');this.offset=this.element.offset();this.mouseInit();},plugins:{},ui:function(inst){return{helper:(inst||this)["helper"],placeholder:(inst||this)["placeholder"]||$([]),position:(inst||this)["position"],absolutePosition:(inst||this)["positionAbs"],options:this.options,element:this.element,item:(inst||this)["currentItem"],sender:inst?inst.element:null};},propagate:function(n,e,inst,noPropagation){$.ui.plugin.call(this,n,[e,this.ui(inst)]);if(!noPropagation)this.element.triggerHandler(n=="sort"?n:"sort"+n,[e,this.ui(inst)],this.options[n]);},serialize:function(o){var items=($.isFunction(this.options.items)?this.options.items.call(this.element):$(this.options.items,this.element)).not('.ui-sortable-helper');var str=[];o=o||{};items.each(function(){var res=($(this).attr(o.attribute||'id')||'').match(o.expression||(/(.+)[-=_](.+)/));if(res)str.push((o.key||res[1])+'[]='+(o.key&&o.expression?res[1]:res[2]));});return str.join('&');},toArray:function(attr){var items=($.isFunction(this.options.items)?this.options.items.call(this.element):$(this.options.items,this.element)).not('.ui-sortable-helper');var ret=[];items.each(function(){ret.push($(this).attr(attr||'id'));});return ret;},intersectsWith:function(item){var x1=this.positionAbs.left,x2=x1+this.helperProportions.width,y1=this.positionAbs.top,y2=y1+this.helperProportions.height;var l=item.left,r=l+item.width,t=item.top,b=t+item.height;if(this.options.tolerance=="pointer"||(this.options.tolerance=="guess"&&this.helperProportions[this.floating?'width':'height']>item[this.floating?'width':'height'])){return(y1+this.offset.click.top>t&&y1+this.offset.click.top<b&&x1+this.offset.click.left>l&&x1+this.offset.click.left<r);}else{return(l<x1+(this.helperProportions.width/2)&&x2-(this.helperProportions.width/2)<r&&t<y1+(this.helperProportions.height/2)&&y2-(this.helperProportions.height/2)<b);}},intersectsWithEdge:function(item){var x1=this.positionAbs.left,x2=x1+this.helperProportions.width,y1=this.positionAbs.top,y2=y1+this.helperProportions.height;var l=item.left,r=l+item.width,t=item.top,b=t+item.height;if(this.options.tolerance=="pointer"||(this.options.tolerance=="guess"&&this.helperProportions[this.floating?'width':'height']>item[this.floating?'width':'height'])){if(!(y1+this.offset.click.top>t&&y1+this.offset.click.top<b&&x1+this.offset.click.left>l&&x1+this.offset.click.left<r))return false;if(this.floating){if(x1+this.offset.click.left>l&&x1+this.offset.click.left<l+item.width/2)return 2;if(x1+this.offset.click.left>l+item.width/2&&x1+this.offset.click.left<r)return 1;}else{if(y1+this.offset.click.top>t&&y1+this.offset.click.top<t+item.height/2)return 2;if(y1+this.offset.click.top>t+item.height/2&&y1+this.offset.click.top<b)return 1;}}else{if(!(l<x1+(this.helperProportions.width/2)&&x2-(this.helperProportions.width/2)<r&&t<y1+(this.helperProportions.height/2)&&y2-(this.helperProportions.height/2)<b))return false;if(this.floating){if(x2>l&&x1<l)return 2;if(x1<r&&x2>r)return 1;}else{if(y2>t&&y1<t)return 1;if(y1<b&&y2>b)return 2;}}
return false;},refresh:function(){this.refreshItems();this.refreshPositions();},refreshItems:function(){this.items=[];this.containers=[this];var items=this.items;var self=this;var queries=[[$.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):$(this.options.items,this.element),this]];if(this.options.connectWith){for(var i=this.options.connectWith.length-1;i>=0;i--){var cur=$(this.options.connectWith[i]);for(var j=cur.length-1;j>=0;j--){var inst=$.data(cur[j],'sortable');if(inst&&!inst.options.disabled){queries.push([$.isFunction(inst.options.items)?inst.options.items.call(inst.element):$(inst.options.items,inst.element),inst]);this.containers.push(inst);}};};}
for(var i=queries.length-1;i>=0;i--){queries[i][0].each(function(){$.data(this,'sortable-item',queries[i][1]);items.push({item:$(this),instance:queries[i][1],width:0,height:0,left:0,top:0});});};},refreshPositions:function(fast){if(this.offsetParent){var po=this.offsetParent.offset();this.offset.parent={top:po.top+this.offsetParentBorders.top,left:po.left+this.offsetParentBorders.left};}
for(var i=this.items.length-1;i>=0;i--){if(this.items[i].instance!=this.currentContainer&&this.currentContainer&&this.items[i].item[0]!=this.currentItem[0])
continue;var t=this.options.toleranceElement?$(this.options.toleranceElement,this.items[i].item):this.items[i].item;if(!fast){this.items[i].width=t.outerWidth();this.items[i].height=t.outerHeight();}
var p=t.offset();this.items[i].left=p.left;this.items[i].top=p.top;};for(var i=this.containers.length-1;i>=0;i--){var p=this.containers[i].element.offset();this.containers[i].containerCache.left=p.left;this.containers[i].containerCache.top=p.top;this.containers[i].containerCache.width=this.containers[i].element.outerWidth();this.containers[i].containerCache.height=this.containers[i].element.outerHeight();};},destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable");this.mouseDestroy();for(var i=this.items.length-1;i>=0;i--)
this.items[i].item.removeData("sortable-item");},createPlaceholder:function(that){var self=that||this,o=self.options;if(o.placeholder.constructor==String){var className=o.placeholder;o.placeholder={element:function(){return $('<div></div>').addClass(className)[0];},update:function(i,p){p.css(i.offset()).css({width:i.outerWidth(),height:i.outerHeight()});}};}
self.placeholder=$(o.placeholder.element.call(self.element,self.currentItem)).appendTo('body').css({position:'absolute'});o.placeholder.update.call(self.element,self.currentItem,self.placeholder);},contactContainers:function(e){for(var i=this.containers.length-1;i>=0;i--){if(this.intersectsWith(this.containers[i].containerCache)){if(!this.containers[i].containerCache.over){if(this.currentContainer!=this.containers[i]){var dist=10000;var itemWithLeastDistance=null;var base=this.positionAbs[this.containers[i].floating?'left':'top'];for(var j=this.items.length-1;j>=0;j--){if(!contains(this.containers[i].element[0],this.items[j].item[0]))continue;var cur=this.items[j][this.containers[i].floating?'left':'top'];if(Math.abs(cur-base)<dist){dist=Math.abs(cur-base);itemWithLeastDistance=this.items[j];}}
if(!itemWithLeastDistance&&!this.options.dropOnEmpty)
continue;if(this.placeholder)this.placeholder.remove();if(this.containers[i].options.placeholder){this.containers[i].createPlaceholder(this);}else{this.placeholder=null;;}
this.currentContainer=this.containers[i];itemWithLeastDistance?this.rearrange(e,itemWithLeastDistance,null,true):this.rearrange(e,null,this.containers[i].element,true);this.propagate("change",e);this.containers[i].propagate("change",e,this);}
this.containers[i].propagate("over",e,this);this.containers[i].containerCache.over=1;}}else{if(this.containers[i].containerCache.over){this.containers[i].propagate("out",e,this);this.containers[i].containerCache.over=0;}}};},mouseCapture:function(e,overrideHandle){if(this.options.disabled||this.options.type=='static')return false;this.refreshItems();var currentItem=null,self=this,nodes=$(e.target).parents().each(function(){if($.data(this,'sortable-item')==self){currentItem=$(this);return false;}});if($.data(e.target,'sortable-item')==self)currentItem=$(e.target);if(!currentItem)return false;if(this.options.handle&&!overrideHandle){var validHandle=false;$(this.options.handle,currentItem).find("*").andSelf().each(function(){if(this==e.target)validHandle=true;});if(!validHandle)return false;}
this.currentItem=currentItem;return true;},mouseStart:function(e,overrideHandle,noActivation){var o=this.options;this.currentContainer=this;this.refreshPositions();this.helper=typeof o.helper=='function'?$(o.helper.apply(this.element[0],[e,this.currentItem])):this.currentItem.clone();if(!this.helper.parents('body').length)this.helper.appendTo((o.appendTo!='parent'?o.appendTo:this.currentItem[0].parentNode));this.helper.css({position:'absolute',clear:'both'}).addClass('ui-sortable-helper');this.margins={left:(parseInt(this.currentItem.css("marginLeft"),10)||0),top:(parseInt(this.currentItem.css("marginTop"),10)||0)};this.offset=this.currentItem.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};this.offset.click={left:e.pageX-this.offset.left,top:e.pageY-this.offset.top};this.offsetParent=this.helper.offsetParent();var po=this.offsetParent.offset();this.offsetParentBorders={top:(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)};this.offset.parent={top:po.top+this.offsetParentBorders.top,left:po.left+this.offsetParentBorders.left};this.originalPosition=this.generatePosition(e);this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]};this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()};if(o.placeholder)this.createPlaceholder();this.propagate("start",e);this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()};if(o.cursorAt){if(o.cursorAt.left!=undefined)this.offset.click.left=o.cursorAt.left;if(o.cursorAt.right!=undefined)this.offset.click.left=this.helperProportions.width-o.cursorAt.right;if(o.cursorAt.top!=undefined)this.offset.click.top=o.cursorAt.top;if(o.cursorAt.bottom!=undefined)this.offset.click.top=this.helperProportions.height-o.cursorAt.bottom;}
if(o.containment){if(o.containment=='parent')o.containment=this.helper[0].parentNode;if(o.containment=='document'||o.containment=='window')this.containment=[0-this.offset.parent.left,0-this.offset.parent.top,$(o.containment=='document'?document:window).width()-this.offset.parent.left-this.helperProportions.width-this.margins.left-(parseInt(this.element.css("marginRight"),10)||0),($(o.containment=='document'?document:window).height()||document.body.parentNode.scrollHeight)-this.offset.parent.top-this.helperProportions.height-this.margins.top-(parseInt(this.element.css("marginBottom"),10)||0)];if(!(/^(document|window|parent)$/).test(o.containment)){var ce=$(o.containment)[0];var co=$(o.containment).offset();this.containment=[co.left+(parseInt($(ce).css("borderLeftWidth"),10)||0)-this.offset.parent.left,co.top+(parseInt($(ce).css("borderTopWidth"),10)||0)-this.offset.parent.top,co.left+Math.max(ce.scrollWidth,ce.offsetWidth)-(parseInt($(ce).css("borderLeftWidth"),10)||0)-this.offset.parent.left-this.helperProportions.width-this.margins.left-(parseInt(this.currentItem.css("marginRight"),10)||0),co.top+Math.max(ce.scrollHeight,ce.offsetHeight)-(parseInt($(ce).css("borderTopWidth"),10)||0)-this.offset.parent.top-this.helperProportions.height-this.margins.top-(parseInt(this.currentItem.css("marginBottom"),10)||0)];}}
if(this.options.placeholder!='clone')
this.currentItem.css('visibility','hidden');if(!noActivation){for(var i=this.containers.length-1;i>=0;i--){this.containers[i].propagate("activate",e,this);}}
if($.ui.ddmanager)$.ui.ddmanager.current=this;if($.ui.ddmanager&&!o.dropBehaviour)$.ui.ddmanager.prepareOffsets(this,e);this.dragging=true;this.mouseDrag(e);return true;},convertPositionTo:function(d,pos){if(!pos)pos=this.position;var mod=d=="absolute"?1:-1;return{top:(pos.top
+this.offset.parent.top*mod
-(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)*mod
+this.margins.top*mod),left:(pos.left
+this.offset.parent.left*mod
-(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft)*mod
+this.margins.left*mod)};},generatePosition:function(e){var o=this.options;var position={top:(e.pageY
-this.offset.click.top
-this.offset.parent.top
+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)),left:(e.pageX
-this.offset.click.left
-this.offset.parent.left
+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft))};if(!this.originalPosition)return position;if(this.containment){if(position.left<this.containment[0])position.left=this.containment[0];if(position.top<this.containment[1])position.top=this.containment[1];if(position.left>this.containment[2])position.left=this.containment[2];if(position.top>this.containment[3])position.top=this.containment[3];}
if(o.grid){var top=this.originalPosition.top+Math.round((position.top-this.originalPosition.top)/o.grid[1])*o.grid[1];position.top=this.containment?(!(top<this.containment[1]||top>this.containment[3])?top:(!(top<this.containment[1])?top-o.grid[1]:top+o.grid[1])):top;var left=this.originalPosition.left+Math.round((position.left-this.originalPosition.left)/o.grid[0])*o.grid[0];position.left=this.containment?(!(left<this.containment[0]||left>this.containment[2])?left:(!(left<this.containment[0])?left-o.grid[0]:left+o.grid[0])):left;}
return position;},mouseDrag:function(e){this.position=this.generatePosition(e);this.positionAbs=this.convertPositionTo("absolute");for(var i=this.items.length-1;i>=0;i--){var intersection=this.intersectsWithEdge(this.items[i]);if(!intersection)continue;if(this.items[i].item[0]!=this.currentItem[0]&&this.currentItem[intersection==1?"next":"prev"]()[0]!=this.items[i].item[0]&&!contains(this.currentItem[0],this.items[i].item[0])&&(this.options.type=='semi-dynamic'?!contains(this.element[0],this.items[i].item[0]):true)){this.direction=intersection==1?"down":"up";this.rearrange(e,this.items[i]);this.propagate("change",e);break;}}
this.contactContainers(e);this.propagate("sort",e);if(!this.options.axis||this.options.axis=="x")this.helper[0].style.left=this.position.left+'px';if(!this.options.axis||this.options.axis=="y")this.helper[0].style.top=this.position.top+'px';if($.ui.ddmanager)$.ui.ddmanager.drag(this,e);return false;},rearrange:function(e,i,a,hardRefresh){a?a.append(this.currentItem):i.item[this.direction=='down'?'before':'after'](this.currentItem);this.counter=this.counter?++this.counter:1;var self=this,counter=this.counter;window.setTimeout(function(){if(counter==self.counter)self.refreshPositions(!hardRefresh);},0);if(this.options.placeholder)
this.options.placeholder.update.call(this.element,this.currentItem,this.placeholder);},mouseStop:function(e,noPropagation){if($.ui.ddmanager&&!this.options.dropBehaviour)
$.ui.ddmanager.drop(this,e);if(this.options.revert){var self=this;var cur=self.currentItem.offset();if(self.placeholder)self.placeholder.animate({opacity:'hide'},(parseInt(this.options.revert,10)||500)-50);$(this.helper).animate({left:cur.left-this.offset.parent.left-self.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:cur.top-this.offset.parent.top-self.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){self.clear(e);});}else{this.clear(e,noPropagation);}
return false;},clear:function(e,noPropagation){if(this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])this.propagate("update",e,null,noPropagation);if(!contains(this.element[0],this.currentItem[0])){this.propagate("remove",e,null,noPropagation);for(var i=this.containers.length-1;i>=0;i--){if(contains(this.containers[i].element[0],this.currentItem[0])){this.containers[i].propagate("update",e,this,noPropagation);this.containers[i].propagate("receive",e,this,noPropagation);}};};for(var i=this.containers.length-1;i>=0;i--){this.containers[i].propagate("deactivate",e,this,noPropagation);if(this.containers[i].containerCache.over){this.containers[i].propagate("out",e,this);this.containers[i].containerCache.over=0;}}
this.dragging=false;if(this.cancelHelperRemoval){this.propagate("stop",e,null,noPropagation);return false;}
$(this.currentItem).css('visibility','');if(this.placeholder)this.placeholder.remove();this.helper.remove();this.helper=null;this.propagate("stop",e,null,noPropagation);return true;}}));$.extend($.ui.sortable,{getter:"serialize toArray",defaults:{helper:"clone",tolerance:"guess",distance:1,delay:0,scroll:true,scrollSensitivity:20,scrollSpeed:20,cancel:":input",items:'> *',zIndex:1000,dropOnEmpty:true,appendTo:"parent"}});$.ui.plugin.add("sortable","cursor",{start:function(e,ui){var t=$('body');if(t.css("cursor"))ui.options._cursor=t.css("cursor");t.css("cursor",ui.options.cursor);},stop:function(e,ui){if(ui.options._cursor)$('body').css("cursor",ui.options._cursor);}});$.ui.plugin.add("sortable","zIndex",{start:function(e,ui){var t=ui.helper;if(t.css("zIndex"))ui.options._zIndex=t.css("zIndex");t.css('zIndex',ui.options.zIndex);},stop:function(e,ui){if(ui.options._zIndex)$(ui.helper).css('zIndex',ui.options._zIndex);}});$.ui.plugin.add("sortable","opacity",{start:function(e,ui){var t=ui.helper;if(t.css("opacity"))ui.options._opacity=t.css("opacity");t.css('opacity',ui.options.opacity);},stop:function(e,ui){if(ui.options._opacity)$(ui.helper).css('opacity',ui.options._opacity);}});$.ui.plugin.add("sortable","scroll",{start:function(e,ui){var o=ui.options;var i=$(this).data("sortable");i.overflowY=function(el){do{if(/auto|scroll/.test(el.css('overflow'))||(/auto|scroll/).test(el.css('overflow-y')))return el;el=el.parent();}while(el[0].parentNode);return $(document);}(i.currentItem);i.overflowX=function(el){do{if(/auto|scroll/.test(el.css('overflow'))||(/auto|scroll/).test(el.css('overflow-x')))return el;el=el.parent();}while(el[0].parentNode);return $(document);}(i.currentItem);if(i.overflowY[0]!=document&&i.overflowY[0].tagName!='HTML')i.overflowYOffset=i.overflowY.offset();if(i.overflowX[0]!=document&&i.overflowX[0].tagName!='HTML')i.overflowXOffset=i.overflowX.offset();},sort:function(e,ui){var o=ui.options;var i=$(this).data("sortable");if(i.overflowY[0]!=document&&i.overflowY[0].tagName!='HTML'){if((i.overflowYOffset.top+i.overflowY[0].offsetHeight)-e.pageY<o.scrollSensitivity)
i.overflowY[0].scrollTop=i.overflowY[0].scrollTop+o.scrollSpeed;if(e.pageY-i.overflowYOffset.top<o.scrollSensitivity)
i.overflowY[0].scrollTop=i.overflowY[0].scrollTop-o.scrollSpeed;}else{if(e.pageY-$(document).scrollTop()<o.scrollSensitivity)
$(document).scrollTop($(document).scrollTop()-o.scrollSpeed);if($(window).height()-(e.pageY-$(document).scrollTop())<o.scrollSensitivity)
$(document).scrollTop($(document).scrollTop()+o.scrollSpeed);}
if(i.overflowX[0]!=document&&i.overflowX[0].tagName!='HTML'){if((i.overflowXOffset.left+i.overflowX[0].offsetWidth)-e.pageX<o.scrollSensitivity)
i.overflowX[0].scrollLeft=i.overflowX[0].scrollLeft+o.scrollSpeed;if(e.pageX-i.overflowXOffset.left<o.scrollSensitivity)
i.overflowX[0].scrollLeft=i.overflowX[0].scrollLeft-o.scrollSpeed;}else{if(e.pageX-$(document).scrollLeft()<o.scrollSensitivity)
$(document).scrollLeft($(document).scrollLeft()-o.scrollSpeed);if($(window).width()-(e.pageX-$(document).scrollLeft())<o.scrollSensitivity)
$(document).scrollLeft($(document).scrollLeft()+o.scrollSpeed);}}});})(jQuery);(function($){$.fn.unwrap=$.fn.unwrap||function(expr){return this.each(function(){$(this).parents(expr).eq(0).after(this).remove();});};$.widget("ui.slider",{plugins:{},ui:function(e){return{options:this.options,handle:this.currentHandle,value:this.options.axis!="both"||!this.options.axis?Math.round(this.value(null,this.options.axis=="vertical"?"y":"x")):{x:Math.round(this.value(null,"x")),y:Math.round(this.value(null,"y"))},range:this.getRange()};},propagate:function(n,e){$.ui.plugin.call(this,n,[e,this.ui()]);this.element.triggerHandler(n=="slide"?n:"slide"+n,[e,this.ui()],this.options[n]);},destroy:function(){this.element.removeClass("ui-slider ui-slider-disabled").removeData("slider").unbind(".slider");if(this.handle&&this.handle.length){this.handle.unwrap("a");this.handle.each(function(){$(this).data("mouse").mouseDestroy();});}
this.generated&&this.generated.remove();},setData:function(key,value){$.widget.prototype.setData.apply(this,arguments);if(/min|max|steps/.test(key)){this.initBoundaries();}
if(key=="range"){value?this.handle.length==2&&this.createRange():this.removeRange();}},init:function(){var self=this;this.element.addClass("ui-slider");this.initBoundaries();this.handle=$(this.options.handle,this.element);if(!this.handle.length){self.handle=self.generated=$(self.options.handles||[0]).map(function(){var handle=$("<div/>").addClass("ui-slider-handle").appendTo(self.element);if(this.id)
handle.attr("id",this.id);return handle[0];});}
var handleclass=function(el){this.element=$(el);this.element.data("mouse",this);this.options=self.options;this.element.bind("mousedown",function(){if(self.currentHandle)this.blur(self.currentHandle);self.focus(this,1);});this.mouseInit();};$.extend(handleclass.prototype,$.ui.mouse,{mouseStart:function(e){return self.start.call(self,e,this.element[0]);},mouseStop:function(e){return self.stop.call(self,e,this.element[0]);},mouseDrag:function(e){return self.drag.call(self,e,this.element[0]);},mouseCapture:function(){return true;},trigger:function(e){this.mouseDown(e);}});$(this.handle).each(function(){new handleclass(this);}).wrap('<a href="javascript:void(0)" style="cursor:default;"></a>').parent().bind('focus',function(e){self.focus(this.firstChild);}).bind('blur',function(e){self.blur(this.firstChild);}).bind('keydown',function(e){if(!self.options.noKeyboard)self.keydown(e.keyCode,this.firstChild);});this.element.bind('mousedown.slider',function(e){self.click.apply(self,[e]);self.currentHandle.data("mouse").trigger(e);self.firstValue=self.firstValue+1;});$.each(this.options.handles||[],function(index,handle){self.moveTo(handle.start,index,true);});if(!isNaN(this.options.startValue))
this.moveTo(this.options.startValue,0,true);this.previousHandle=$(this.handle[0]);if(this.handle.length==2&&this.options.range)this.createRange();},initBoundaries:function(){var element=this.element[0],o=this.options;this.actualSize={width:this.element.outerWidth(),height:this.element.outerHeight()};$.extend(o,{axis:o.axis||(element.offsetWidth<element.offsetHeight?'vertical':'horizontal'),max:!isNaN(parseInt(o.max,10))?{x:parseInt(o.max,10),y:parseInt(o.max,10)}:({x:o.max&&o.max.x||100,y:o.max&&o.max.y||100}),min:!isNaN(parseInt(o.min,10))?{x:parseInt(o.min,10),y:parseInt(o.min,10)}:({x:o.min&&o.min.x||0,y:o.min&&o.min.y||0})});o.realMax={x:o.max.x-o.min.x,y:o.max.y-o.min.y};o.stepping={x:o.stepping&&o.stepping.x||parseInt(o.stepping,10)||(o.steps?o.realMax.x/(o.steps.x||parseInt(o.steps,10)||o.realMax.x):0),y:o.stepping&&o.stepping.y||parseInt(o.stepping,10)||(o.steps?o.realMax.y/(o.steps.y||parseInt(o.steps,10)||o.realMax.y):0)};},keydown:function(keyCode,handle){if(/(37|38|39|40)/.test(keyCode)){this.moveTo({x:/(37|39)/.test(keyCode)?(keyCode==37?'-':'+')+'='+this.oneStep("x"):0,y:/(38|40)/.test(keyCode)?(keyCode==38?'-':'+')+'='+this.oneStep("y"):0},handle);}},focus:function(handle,hard){this.currentHandle=$(handle).addClass('ui-slider-handle-active');if(hard)
this.currentHandle.parent()[0].focus();},blur:function(handle){$(handle).removeClass('ui-slider-handle-active');if(this.currentHandle&&this.currentHandle[0]==handle){this.previousHandle=this.currentHandle;this.currentHandle=null;};},click:function(e){var pointer=[e.pageX,e.pageY];var clickedHandle=false;this.handle.each(function(){if(this==e.target)
clickedHandle=true;});if(clickedHandle||this.options.disabled||!(this.currentHandle||this.previousHandle))
return;if(!this.currentHandle&&this.previousHandle)
this.focus(this.previousHandle,true);this.offset=this.element.offset();this.moveTo({y:this.convertValue(e.pageY-this.offset.top-this.currentHandle[0].offsetHeight/2,"y"),x:this.convertValue(e.pageX-this.offset.left-this.currentHandle[0].offsetWidth/2,"x")},null,!this.options.distance);},createRange:function(){if(this.rangeElement)return;this.rangeElement=$('<div></div>').addClass('ui-slider-range').css({position:'absolute'}).appendTo(this.element);this.updateRange();},removeRange:function(){this.rangeElement.remove();this.rangeElement=null;},updateRange:function(){var prop=this.options.axis=="vertical"?"top":"left";var size=this.options.axis=="vertical"?"height":"width";this.rangeElement.css(prop,(parseInt($(this.handle[0]).css(prop),10)||0)+this.handleSize(0,this.options.axis=="vertical"?"y":"x")/2);this.rangeElement.css(size,(parseInt($(this.handle[1]).css(prop),10)||0)-(parseInt($(this.handle[0]).css(prop),10)||0));},getRange:function(){return this.rangeElement?this.convertValue(parseInt(this.rangeElement.css(this.options.axis=="vertical"?"height":"width"),10),this.options.axis=="vertical"?"y":"x"):null;},handleIndex:function(){return this.handle.index(this.currentHandle[0]);},value:function(handle,axis){if(this.handle.length==1)this.currentHandle=this.handle;if(!axis)axis=this.options.axis=="vertical"?"y":"x";var curHandle=$(handle!=undefined&&handle!==null?this.handle[handle]||handle:this.currentHandle);if(curHandle.data("mouse").sliderValue){return parseInt(curHandle.data("mouse").sliderValue[axis],10);}else{return parseInt(((parseInt(curHandle.css(axis=="x"?"left":"top"),10)/(this.actualSize[axis=="x"?"width":"height"]-this.handleSize(handle,axis)))*this.options.realMax[axis])+this.options.min[axis],10);}},convertValue:function(value,axis){return this.options.min[axis]+(value/(this.actualSize[axis=="x"?"width":"height"]-this.handleSize(null,axis)))*this.options.realMax[axis];},translateValue:function(value,axis){return((value-this.options.min[axis])/this.options.realMax[axis])*(this.actualSize[axis=="x"?"width":"height"]-this.handleSize(null,axis));},translateRange:function(value,axis){if(this.rangeElement){if(this.currentHandle[0]==this.handle[0]&&value>=this.translateValue(this.value(1),axis))
value=this.translateValue(this.value(1,axis)-this.oneStep(axis),axis);if(this.currentHandle[0]==this.handle[1]&&value<=this.translateValue(this.value(0),axis))
value=this.translateValue(this.value(0,axis)+this.oneStep(axis),axis);}
if(this.options.handles){var handle=this.options.handles[this.handleIndex()];if(value<this.translateValue(handle.min,axis)){value=this.translateValue(handle.min,axis);}else if(value>this.translateValue(handle.max,axis)){value=this.translateValue(handle.max,axis);}}
return value;},translateLimits:function(value,axis){if(value>=this.actualSize[axis=="x"?"width":"height"]-this.handleSize(null,axis))
value=this.actualSize[axis=="x"?"width":"height"]-this.handleSize(null,axis);if(value<=0)
value=0;return value;},handleSize:function(handle,axis){return $(handle!=undefined&&handle!==null?this.handle[handle]:this.currentHandle)[0]["offset"+(axis=="x"?"Width":"Height")];},oneStep:function(axis){return this.options.stepping[axis]||1;},start:function(e,handle){var o=this.options;if(o.disabled)return false;this.actualSize={width:this.element.outerWidth(),height:this.element.outerHeight()};if(!this.currentHandle)
this.focus(this.previousHandle,true);this.offset=this.element.offset();this.handleOffset=this.currentHandle.offset();this.clickOffset={top:e.pageY-this.handleOffset.top,left:e.pageX-this.handleOffset.left};this.firstValue=this.value();this.propagate('start',e);this.drag(e,handle);return true;},stop:function(e){this.propagate('stop',e);if(this.firstValue!=this.value())
this.propagate('change',e);this.focus(this.currentHandle,true);return false;},drag:function(e,handle){var o=this.options;var position={top:e.pageY-this.offset.top-this.clickOffset.top,left:e.pageX-this.offset.left-this.clickOffset.left};if(!this.currentHandle)this.focus(this.previousHandle,true);position.left=this.translateLimits(position.left,"x");position.top=this.translateLimits(position.top,"y");if(o.stepping.x){var value=this.convertValue(position.left,"x");value=Math.round(value/o.stepping.x)*o.stepping.x;position.left=this.translateValue(value,"x");}
if(o.stepping.y){var value=this.convertValue(position.top,"y");value=Math.round(value/o.stepping.y)*o.stepping.y;position.top=this.translateValue(value,"y");}
position.left=this.translateRange(position.left,"x");position.top=this.translateRange(position.top,"y");if(o.axis!="vertical")this.currentHandle.css({left:position.left});if(o.axis!="horizontal")this.currentHandle.css({top:position.top});this.currentHandle.data("mouse").sliderValue={x:Math.round(this.convertValue(position.left,"x"))||0,y:Math.round(this.convertValue(position.top,"y"))||0};if(this.rangeElement)
this.updateRange();this.propagate('slide',e);return false;},moveTo:function(value,handle,noPropagation){var o=this.options;this.actualSize={width:this.element.outerWidth(),height:this.element.outerHeight()};if(handle==undefined&&!this.currentHandle&&this.handle.length!=1)
return false;if(handle==undefined&&!this.currentHandle)
handle=0;if(handle!=undefined)
this.currentHandle=this.previousHandle=$(this.handle[handle]||handle);if(value.x!==undefined&&value.y!==undefined){var x=value.x,y=value.y;}else{var x=value,y=value;}
if(x!==undefined&&x.constructor!=Number){var me=/^\-\=/.test(x),pe=/^\+\=/.test(x);if(me||pe){x=this.value(null,"x")+parseInt(x.replace(me?'=':'+=',''),10);}else{x=isNaN(parseInt(x,10))?undefined:parseInt(x,10);}}
if(y!==undefined&&y.constructor!=Number){var me=/^\-\=/.test(y),pe=/^\+\=/.test(y);if(me||pe){y=this.value(null,"y")+parseInt(y.replace(me?'=':'+=',''),10);}else{y=isNaN(parseInt(y,10))?undefined:parseInt(y,10);}}
if(o.axis!="vertical"&&x!==undefined){if(o.stepping.x)x=Math.round(x/o.stepping.x)*o.stepping.x;x=this.translateValue(x,"x");x=this.translateLimits(x,"x");x=this.translateRange(x,"x");this.currentHandle.css({left:x});}
if(o.axis!="horizontal"&&y!==undefined){if(o.stepping.y)y=Math.round(y/o.stepping.y)*o.stepping.y;y=this.translateValue(y,"y");y=this.translateLimits(y,"y");y=this.translateRange(y,"y");this.currentHandle.css({top:y});}
if(this.rangeElement)
this.updateRange();this.currentHandle.data("mouse").sliderValue={x:Math.round(this.convertValue(x,"x"))||0,y:Math.round(this.convertValue(y,"y"))||0};if(!noPropagation){this.propagate('start',null);this.propagate('stop',null);this.propagate('change',null);this.propagate("slide",null);}}});$.ui.slider.getter="value";$.ui.slider.defaults={handle:".ui-slider-handle",distance:1};})(jQuery);;(function($){$.effects=$.effects||{};$.extend($.effects,{save:function(el,set){for(var i=0;i<set.length;i++){if(set[i]!==null)$.data(el[0],"ec.storage."+set[i],el[0].style[set[i]]);}},restore:function(el,set){for(var i=0;i<set.length;i++){if(set[i]!==null)el.css(set[i],$.data(el[0],"ec.storage."+set[i]));}},setMode:function(el,mode){if(mode=='toggle')mode=el.is(':hidden')?'show':'hide';return mode;},getBaseline:function(origin,original){var y,x;switch(origin[0]){case'top':y=0;break;case'middle':y=0.5;break;case'bottom':y=1;break;default:y=origin[0]/original.height;};switch(origin[1]){case'left':x=0;break;case'center':x=0.5;break;case'right':x=1;break;default:x=origin[1]/original.width;};return{x:x,y:y};},createWrapper:function(el){if(el.parent().attr('id')=='fxWrapper')
return el;var props={width:el.outerWidth({margin:true}),height:el.outerHeight({margin:true}),'float':el.css('float')};el.wrap('<div id="fxWrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var wrapper=el.parent();if(el.css('position')=='static'){wrapper.css({position:'relative'});el.css({position:'relative'});}else{var top=parseInt(el.css('top'),10);if(isNaN(top))top='auto';var left=parseInt(el.css('left'),10);if(isNaN(left))left='auto';wrapper.css({position:el.css('position'),top:top,left:left,zIndex:el.css('z-index')}).show();el.css({position:'relative',top:0,left:0});}
wrapper.css(props);return wrapper;},removeWrapper:function(el){if(el.parent().attr('id')=='fxWrapper')
return el.parent().replaceWith(el);return el;},setTransition:function(el,list,factor,val){val=val||{};$.each(list,function(i,x){unit=el.cssUnit(x);if(unit[0]>0)val[x]=unit[0]*factor+unit[1];});return val;},animateClass:function(value,duration,easing,callback){var cb=(typeof easing=="function"?easing:(callback?callback:null));var ea=(typeof easing=="object"?easing:null);return this.each(function(){var offset={};var that=$(this);var oldStyleAttr=that.attr("style")||'';if(typeof oldStyleAttr=='object')oldStyleAttr=oldStyleAttr["cssText"];if(value.toggle){that.hasClass(value.toggle)?value.remove=value.toggle:value.add=value.toggle;}
var oldStyle=$.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(value.add)that.addClass(value.add);if(value.remove)that.removeClass(value.remove);var newStyle=$.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(value.add)that.removeClass(value.add);if(value.remove)that.addClass(value.remove);for(var n in newStyle){if(typeof newStyle[n]!="function"&&newStyle[n]&&n.indexOf("Moz")==-1&&n.indexOf("length")==-1&&newStyle[n]!=oldStyle[n]&&(n.match(/color/i)||(!n.match(/color/i)&&!isNaN(parseInt(newStyle[n],10))))&&(oldStyle.position!="static"||(oldStyle.position=="static"&&!n.match(/left|top|bottom|right/))))offset[n]=newStyle[n];}
that.animate(offset,duration,ea,function(){if(typeof $(this).attr("style")=='object'){$(this).attr("style")["cssText"]="";$(this).attr("style")["cssText"]=oldStyleAttr;}else $(this).attr("style",oldStyleAttr);if(value.add)$(this).addClass(value.add);if(value.remove)$(this).removeClass(value.remove);if(cb)cb.apply(this,arguments);});});}});$.fn.extend({_show:$.fn.show,_hide:$.fn.hide,__toggle:$.fn.toggle,_addClass:$.fn.addClass,_removeClass:$.fn.removeClass,_toggleClass:$.fn.toggleClass,effect:function(fx,o,speed,callback){return $.effects[fx]?$.effects[fx].call(this,{method:fx,options:o||{},duration:speed,callback:callback}):null;},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0])))
return this._show.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='show';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0])))
return this._hide.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='hide';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0]))||(arguments[0].constructor==Function))
return this.__toggle.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='toggle';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},addClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{add:classNames},speed,easing,callback]):this._addClass(classNames);},removeClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{remove:classNames},speed,easing,callback]):this._removeClass(classNames);},toggleClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{toggle:classNames},speed,easing,callback]):this._toggleClass(classNames);},morph:function(remove,add,speed,easing,callback){return $.effects.animateClass.apply(this,[{add:add,remove:remove},speed,easing,callback]);},switchClass:function(){return this.morph.apply(this,arguments);},cssUnit:function(key){var style=this.css(key),val=[];$.each(['em','px','%','pt'],function(i,unit){if(style.indexOf(unit)>0)
val=[parseFloat(style),unit];});return val;}});jQuery.each(['backgroundColor','borderBottomColor','borderLeftColor','borderRightColor','borderTopColor','color','outlineColor'],function(i,attr){jQuery.fx.step[attr]=function(fx){if(fx.state==0){fx.start=getColor(fx.elem,attr);fx.end=getRGB(fx.end);}
fx.elem.style[attr]="rgb("+[Math.max(Math.min(parseInt((fx.pos*(fx.end[0]-fx.start[0]))+fx.start[0]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[1]-fx.start[1]))+fx.start[1]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[2]-fx.start[2]))+fx.start[2]),255),0)].join(",")+")";}});function getRGB(color){var result;if(color&&color.constructor==Array&&color.length==3)
return color;if(result=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
return[parseInt(result[1]),parseInt(result[2]),parseInt(result[3])];if(result=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
return[parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55];if(result=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
return[parseInt(result[1],16),parseInt(result[2],16),parseInt(result[3],16)];if(result=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
return[parseInt(result[1]+result[1],16),parseInt(result[2]+result[2],16),parseInt(result[3]+result[3],16)];if(result=/rgba\(0, 0, 0, 0\)/.exec(color))
return colors['transparent']
return colors[jQuery.trim(color).toLowerCase()];}
function getColor(elem,attr){var color;do{color=jQuery.curCSS(elem,attr);if(color!=''&&color!='transparent'||jQuery.nodeName(elem,"body"))
break;attr="backgroundColor";}while(elem=elem.parentNode);return getRGB(color);};var colors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});})(jQuery);(function($){$.effects.blind=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'vertical';$.effects.save(el,props);el.show();var wrapper=$.effects.createWrapper(el).css({overflow:'hidden'});var ref=(direction=='vertical')?'height':'width';var distance=(direction=='vertical')?wrapper.height():wrapper.width();if(mode=='show')wrapper.css(ref,0);var animation={};animation[ref]=mode=='show'?distance:0;wrapper.animate(animation,o.duration,o.options.easing,function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(el[0],arguments);el.dequeue();});});};})(jQuery);(function($){$.effects.bounce=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'effect');var direction=o.options.direction||'up';var distance=o.options.distance||20;var times=o.options.times||5;var speed=o.duration||250;if(/show|hide/.test(mode))props.push('opacity');$.effects.save(el,props);el.show();$.effects.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true})/3:el.outerWidth({margin:true})/3);if(mode=='show')el.css('opacity',0).css(ref,motion=='pos'?-distance:distance);if(mode=='hide')distance=distance/(times*2);if(mode!='hide')times--;if(mode=='show'){var animation={opacity:1};animation[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation,speed/2,o.options.easing);distance=distance/2;times--;};for(var i=0;i<times;i++){var animation1={},animation2={};animation1[ref]=(motion=='pos'?'-=':'+=')+distance;animation2[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation1,speed/2,o.options.easing).animate(animation2,speed/2,o.options.easing);distance=(mode=='hide')?distance*2:distance/2;};if(mode=='hide'){var animation={opacity:0};animation[ref]=(motion=='pos'?'-=':'+=')+distance;el.animate(animation,speed/2,o.options.easing,function(){el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});}else{var animation1={},animation2={};animation1[ref]=(motion=='pos'?'-=':'+=')+distance;animation2[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation1,speed/2,o.options.easing).animate(animation2,speed/2,o.options.easing,function(){$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});};el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.effects.clip=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','height','width'];var mode=$.effects.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'vertical';$.effects.save(el,props);el.show();var wrapper=$.effects.createWrapper(el).css({overflow:'hidden'});var animate=el[0].tagName=='IMG'?wrapper:el;var ref={size:(direction=='vertical')?'height':'width',position:(direction=='vertical')?'top':'left'};var distance=(direction=='vertical')?animate.height():animate.width();if(mode=='show'){animate.css(ref.size,0);animate.css(ref.position,distance/2);}
var animation={};animation[ref.size]=mode=='show'?distance:0;animation[ref.position]=mode=='show'?0:distance/2;animate.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(el[0],arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.drop=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','opacity'];var mode=$.effects.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'left';$.effects.save(el,props);el.show();$.effects.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true})/2:el.outerWidth({margin:true})/2);if(mode=='show')el.css('opacity',0).css(ref,motion=='pos'?-distance:distance);var animation={opacity:mode=='show'?1:0};animation[ref]=(mode=='show'?(motion=='pos'?'+=':'-='):(motion=='pos'?'-=':'+='))+distance;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.fold=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'hide');var size=o.options.size||15;var horizFirst=!(!o.options.horizFirst);$.effects.save(el,props);el.show();var wrapper=$.effects.createWrapper(el).css({overflow:'hidden'});var widthFirst=((mode=='show')!=horizFirst);var ref=widthFirst?['width','height']:['height','width'];var distance=widthFirst?[wrapper.width(),wrapper.height()]:[wrapper.height(),wrapper.width()];var percent=/([0-9]+)%/.exec(size);if(percent)size=parseInt(percent[1])/100*distance[mode=='hide'?0:1];if(mode=='show')wrapper.css(horizFirst?{height:0,width:size}:{height:size,width:0});var animation1={},animation2={};animation1[ref[0]]=mode=='show'?distance[0]:size;animation2[ref[1]]=mode=='show'?distance[1]:0;wrapper.animate(animation1,o.duration/2,o.options.easing).animate(animation2,o.duration/2,o.options.easing,function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(el[0],arguments);el.dequeue();});});};})(jQuery);;(function($){$.effects.highlight=function(o){return this.queue(function(){var el=$(this),props=['backgroundImage','backgroundColor','opacity'];var mode=$.effects.setMode(el,o.options.mode||'show');var color=o.options.color||"#ffff99";var oldColor=el.css("backgroundColor");$.effects.save(el,props);el.show();el.css({backgroundImage:'none',backgroundColor:color});var animation={backgroundColor:oldColor};if(mode=="hide")animation['opacity']=0;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=="hide")el.hide();$.effects.restore(el,props);if(mode=="show"&&jQuery.browser.msie)this.style.removeAttribute('filter');if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.pulsate=function(o){return this.queue(function(){var el=$(this);var mode=$.effects.setMode(el,o.options.mode||'show');var times=o.options.times||5;if(mode=='hide')times--;if(el.is(':hidden')){el.css('opacity',0);el.show();el.animate({opacity:1},o.duration/2,o.options.easing);times=times-2;}
for(var i=0;i<times;i++){el.animate({opacity:0},o.duration/2,o.options.easing).animate({opacity:1},o.duration/2,o.options.easing);};if(mode=='hide'){el.animate({opacity:0},o.duration/2,o.options.easing,function(){el.hide();if(o.callback)o.callback.apply(this,arguments);});}else{el.animate({opacity:0},o.duration/2,o.options.easing).animate({opacity:1},o.duration/2,o.options.easing,function(){if(o.callback)o.callback.apply(this,arguments);});};el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.effects.puff=function(o){return this.queue(function(){var el=$(this);var options=$.extend(true,{},o.options);var mode=$.effects.setMode(el,o.options.mode||'hide');var percent=parseInt(o.options.percent)||150;options.fade=true;var original={height:el.height(),width:el.width()};var factor=percent/100;el.from=(mode=='hide')?original:{height:original.height*factor,width:original.width*factor};options.from=el.from;options.percent=(mode=='hide')?percent:100;options.mode=mode;el.effect('scale',options,o.duration,o.callback);el.dequeue();});};$.effects.scale=function(o){return this.queue(function(){var el=$(this);var options=$.extend(true,{},o.options);var mode=$.effects.setMode(el,o.options.mode||'effect');var percent=parseInt(o.options.percent)||(parseInt(o.options.percent)==0?0:(mode=='hide'?0:100));var direction=o.options.direction||'both';var origin=o.options.origin;if(mode!='effect'){options.origin=origin||['middle','center'];options.restore=true;}
var original={height:el.height(),width:el.width()};el.from=o.options.from||(mode=='show'?{height:0,width:0}:original);var factor={y:direction!='horizontal'?(percent/100):1,x:direction!='vertical'?(percent/100):1};el.to={height:original.height*factor.y,width:original.width*factor.x};if(o.options.fade){if(mode=='show'){el.from.opacity=0;el.to.opacity=1;};if(mode=='hide'){el.from.opacity=1;el.to.opacity=0;};};options.from=el.from;options.to=el.to;options.mode=mode;el.effect('size',options,o.duration,o.callback);el.dequeue();});};$.effects.size=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','width','height','overflow','opacity'];var props1=['position','top','left','overflow','opacity'];var props2=['width','height','overflow'];var cProps=['fontSize'];var vProps=['borderTopWidth','borderBottomWidth','paddingTop','paddingBottom'];var hProps=['borderLeftWidth','borderRightWidth','paddingLeft','paddingRight'];var mode=$.effects.setMode(el,o.options.mode||'effect');var restore=o.options.restore||false;var scale=o.options.scale||'both';var origin=o.options.origin;var original={height:el.height(),width:el.width()};el.from=o.options.from||original;el.to=o.options.to||original;if(origin){var baseline=$.effects.getBaseline(origin,original);el.from.top=(original.height-el.from.height)*baseline.y;el.from.left=(original.width-el.from.width)*baseline.x;el.to.top=(original.height-el.to.height)*baseline.y;el.to.left=(original.width-el.to.width)*baseline.x;};var factor={from:{y:el.from.height/original.height,x:el.from.width/original.width},to:{y:el.to.height/original.height,x:el.to.width/original.width}};if(scale=='box'||scale=='both'){if(factor.from.y!=factor.to.y){props=props.concat(vProps);el.from=$.effects.setTransition(el,vProps,factor.from.y,el.from);el.to=$.effects.setTransition(el,vProps,factor.to.y,el.to);};if(factor.from.x!=factor.to.x){props=props.concat(hProps);el.from=$.effects.setTransition(el,hProps,factor.from.x,el.from);el.to=$.effects.setTransition(el,hProps,factor.to.x,el.to);};};if(scale=='content'||scale=='both'){if(factor.from.y!=factor.to.y){props=props.concat(cProps);el.from=$.effects.setTransition(el,cProps,factor.from.y,el.from);el.to=$.effects.setTransition(el,cProps,factor.to.y,el.to);};};$.effects.save(el,restore?props:props1);el.show();$.effects.createWrapper(el);el.css('overflow','hidden').css(el.from);if(scale=='content'||scale=='both'){vProps=vProps.concat(['marginTop','marginBottom']).concat(cProps);hProps=hProps.concat(['marginLeft','marginRight']);props2=props.concat(vProps).concat(hProps);el.find("*[width]").each(function(){child=$(this);if(restore)$.effects.save(child,props2);var c_original={height:child.height(),width:child.width()};child.from={height:c_original.height*factor.from.y,width:c_original.width*factor.from.x};child.to={height:c_original.height*factor.to.y,width:c_original.width*factor.to.x};if(factor.from.y!=factor.to.y){child.from=$.effects.setTransition(child,vProps,factor.from.y,child.from);child.to=$.effects.setTransition(child,vProps,factor.to.y,child.to);};if(factor.from.x!=factor.to.x){child.from=$.effects.setTransition(child,hProps,factor.from.x,child.from);child.to=$.effects.setTransition(child,hProps,factor.to.x,child.to);};child.css(child.from);child.animate(child.to,o.duration,o.options.easing,function(){if(restore)$.effects.restore(child,props2);});});};el.animate(el.to,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,restore?props:props1);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.shake=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'effect');var direction=o.options.direction||'left';var distance=o.options.distance||20;var times=o.options.times||3;var speed=o.duration||o.options.duration||140;$.effects.save(el,props);el.show();$.effects.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var animation={},animation1={},animation2={};animation[ref]=(motion=='pos'?'-=':'+=')+distance;animation1[ref]=(motion=='pos'?'+=':'-=')+distance*2;animation2[ref]=(motion=='pos'?'-=':'+=')+distance*2;el.animate(animation,speed,o.options.easing);for(var i=1;i<times;i++){el.animate(animation1,speed,o.options.easing).animate(animation2,speed,o.options.easing);};el.animate(animation1,speed,o.options.easing).animate(animation,speed/2,o.options.easing,function(){$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.effects.slide=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'show');var direction=o.options.direction||'left';$.effects.save(el,props);el.show();$.effects.createWrapper(el).css({overflow:'hidden'});var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true}):el.outerWidth({margin:true}));if(mode=='show')el.css(ref,motion=='pos'?-distance:distance);var animation={};animation[ref]=(mode=='show'?(motion=='pos'?'+=':'-='):(motion=='pos'?'-=':'+='))+distance;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);

(function($){$().ajaxSend(function(a,xhr,s){xhr.setRequestHeader("Accept","text/javascript, text/html, application/xml, text/xml, */*")})})(jQuery);(function($){$.fn.reset=function(){return this.each(function(){if(typeof this.reset=="function"||(typeof this.reset=="object"&&!this.reset.nodeType)){this.reset()}})};$.fn.enable=function(){return this.each(function(){this.disabled=false})};$.fn.disable=function(){return this.each(function(){this.disabled=true})}})(jQuery);(function($){$.extend({fieldEvent:function(el,obs){var field=el[0]||el,e="change";if(field.type=="radio"||field.type=="checkbox"){e="click"}else{if(obs&&field.type=="text"||field.type=="textarea"){e="keyup"}}return e}});$.fn.extend({delayedObserver:function(delay,callback){var el=$(this);if(typeof window.delayedObserverStack=="undefined"){window.delayedObserverStack=[]}if(typeof window.delayedObserverCallback=="undefined"){window.delayedObserverCallback=function(stackPos){observed=window.delayedObserverStack[stackPos];if(observed.timer){clearTimeout(observed.timer)}observed.timer=setTimeout(function(){observed.timer=null;observed.callback(observed.obj,observed.obj.formVal())},observed.delay*1000);observed.oldVal=observed.obj.formVal()}}window.delayedObserverStack.push({obj:el,timer:null,delay:delay,oldVal:el.formVal(),callback:callback});var stackPos=window.delayedObserverStack.length-1;if(el[0].tagName=="FORM"){$(":input",el).each(function(){var field=$(this);field.bind($.fieldEvent(field,delay),function(){observed=window.delayedObserverStack[stackPos];if(observed.obj.formVal()==observed.obj.oldVal){return}else{window.delayedObserverCallback(stackPos)}})})}else{el.bind($.fieldEvent(el,delay),function(){observed=window.delayedObserverStack[stackPos];if(observed.obj.formVal()==observed.obj.oldVal){return}else{window.delayedObserverCallback(stackPos)}})}},formVal:function(){var el=this[0];if(el.tagName=="FORM"){return this.serialize()}if(el.type=="checkbox"||self.type=="radio"){return this.filter("input:checked").val()||""}else{return this.val()}}})})(jQuery);(function($){$.fn.extend({visualEffect:function(o){e=o.replace(/\_(.)/g,function(m,l){return l.toUpperCase()});return eval("$(this)."+e+"()")},appear:function(speed,callback){return this.fadeIn(speed,callback)},blindDown:function(speed,callback){return this.show("blind",{direction:"vertical"},speed,callback)},blindUp:function(speed,callback){return this.hide("blind",{direction:"vertical"},speed,callback)},blindRight:function(speed,callback){return this.show("blind",{direction:"horizontal"},speed,callback)},blindLeft:function(speed,callback){this.hide("blind",{direction:"horizontal"},speed,callback);return this},dropOut:function(speed,callback){return this.hide("drop",{direction:"down"},speed,callback)},dropIn:function(speed,callback){return this.show("drop",{direction:"up"},speed,callback)},fade:function(speed,callback){return this.fadeOut(speed,callback)},fadeToggle:function(speed,callback){return this.animate({opacity:"toggle"},speed,callback)},fold:function(speed,callback){return this.hide("fold",{},speed,callback)},foldOut:function(speed,callback){return this.show("fold",{},speed,callback)},grow:function(speed,callback){return this.show("scale",{},speed,callback)},highlight:function(speed,callback){return this.show("highlight",{},speed,callback)},puff:function(speed,callback){return this.hide("puff",{},speed,callback)},pulsate:function(speed,callback){return this.show("pulsate",{},speed,callback)},shake:function(speed,callback){return this.show("shake",{},speed,callback)},shrink:function(speed,callback){return this.hide("scale",{},speed,callback)},squish:function(speed,callback){return this.hide("scale",{origin:["top","left"]},speed,callback)},slideUp:function(speed,callback){return this.hide("slide",{direction:"up"},speed,callback)},slideDown:function(speed,callback){return this.show("slide",{direction:"up"},speed,callback)},switchOff:function(speed,callback){return this.hide("clip",{},speed,callback)},switchOn:function(speed,callback){return this.show("clip",{},speed,callback)}})})(jQuery);

/*****************************************************************

typeface.js, version 0.11 | typefacejs.neocracy.org

Copyright (c) 2008, David Chester davidchester@gmx.net 

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

*****************************************************************/

(function() {

var _typeface_js = {

	faces: {},

	loadFace: function(typefaceData) {

		var familyName = typefaceData.familyName.toLowerCase();
		
		if (!this.faces[familyName]) {
			this.faces[familyName] = {};
		}
		if (!this.faces[familyName][typefaceData.cssFontWeight]) {
			this.faces[familyName][typefaceData.cssFontWeight] = {};
		}

		var face = this.faces[familyName][typefaceData.cssFontWeight][typefaceData.cssFontStyle] = typefaceData;
		face.loaded = true;
	},

	log: {
		debug: function(message) {
			var typefaceConsole = document.getElementById('typeface-console');
			if (typefaceConsole) 
				typefaceConsole.innerHTML += 'DEBUG: ' + message + "<br>";
		},

		error: function(message) {
			var typefaceConsole = document.getElementById('typeface-console');
			if (typefaceConsole) 
				typefaceConsole.innerHTML += 'ERROR: ' + message + "<br>";
		}
	},
	
	pixelsFromPoints: function(face, style, points, dimension) {
		var pixels = points * parseInt(style.fontSize) * 72 / (face.resolution * 100);
		if (dimension == 'horizontal' && style.fontStretchPercent) {
			pixels *= style.fontStretchPercent;
		}
		return pixels;
	},

	pointsFromPixels: function(face, style, pixels, dimension) {
		var points = pixels * face.resolution / (parseInt(style.fontSize) * 72 / 100);
		if (dimension == 'horizontal' && style.fontStretchPrecent) {
			points *= style.fontStretchPercent;
		}
		return points;
	},

	cssFontWeightMap: {
		normal: 'normal',
		bold: 'bold',
		400: 'normal',
		700: 'bold'
	},

	cssFontStretchMap: {
		'ultra-condensed': 0.55,
		'extra-condensed': 0.77,
		'condensed': 0.85,
		'semi-condensed': 0.93,
		'normal': 1,
		'semi-expanded': 1.07,
		'expanded': 1.15,
		'extra-expanded': 1.23,
		'ultra-expanded': 1.45,
		'default': 1
	},
	
	fallbackCharacter: '.',

	getTextExtents: function(face, style, text) {
		var extentX = 0;
		var extentY = 0;
		var horizontalAdvance;
	
		for (var i = 0; i < text.length; i++) {
			var glyph = face.glyphs[text.charAt(i)] ? face.glyphs[text.charAt(i)] : face.glyphs[this.fallbackCharacter];
			var letterSpacingAdjustment = this.pointsFromPixels(face, style, style.letterSpacing);
			extentX += Math.max(glyph.ha, glyph.x_max) + letterSpacingAdjustment;
			horizontalAdvance += glyph.ha + letterSpacingAdjustment;
		}
		return { 
			x: extentX, 
			y: extentY,
			ha: horizontalAdvance
			
		};
	},

	pixelsFromCssAmount: function(cssAmount, defaultValue) {

		var matches = undefined;

		if (cssAmount == 'normal') {
			return defaultValue;

		} else if (matches = cssAmount.match(/([\-\d+\.]+)px/)) {
			return matches[1];

		} else if (matches = cssAmount.match(/([\-\d\.]+)pt/)) {
			return matches[1] * 100 / 75;
		} else {
			return defaultValue;
		}
	},

	getRenderedText: function(e) {

		var browserStyle = window.getComputedStyle ? 
			document.defaultView.getComputedStyle(e.parentNode, '') : 
			e.parentNode.currentStyle ? 
				e.parentNode.currentStyle : 
				{ color: '#ff0000', fontSize: 12, fontFamily: 'arial' };

		var inlineStyleAttribute = e.parentNode.getAttribute('style');
		if (inlineStyleAttribute && typeof(inlineStyleAttribute) == 'object') {
			inlineStyleAttribute = inlineStyleAttribute.cssText;
		}

		if (inlineStyleAttribute) {

			var inlineStyleDeclarations = inlineStyleAttribute.split(/\s*\;\s*/);

			var inlineStyle = {};
			for (var i = 0; i < inlineStyleDeclarations.length; i++) {
				var declaration = inlineStyleDeclarations[i];
				var declarationOperands = declaration.split(/\s*\:\s*/);
				inlineStyle[declarationOperands[0]] = declarationOperands[1];
			}
		}

		var style = { 
			color: browserStyle.color, 
			fontFamily: browserStyle.fontFamily.split(/\s*,\s*/)[0].replace(/(^"|^'|'$|"$)/g, '').toLowerCase(), 
			fontSize: this.pixelsFromCssAmount(browserStyle.fontSize, 12),
			fontWeight: this.cssFontWeightMap[browserStyle.fontWeight],
			fontStyle: browserStyle.fontStyle ? browserStyle.fontStyle : 'normal',
			fontStretchPercent: this.cssFontStretchMap[inlineStyle && inlineStyle['font-stretch'] ? inlineStyle['font-stretch'] : 'default'],
			textDecoration: browserStyle.textDecoration,
			lineHeight: this.pixelsFromCssAmount(browserStyle.lineHeight, 'normal'),
			letterSpacing: this.pixelsFromCssAmount(browserStyle.letterSpacing, 0)
		};

		var face;
		if (
			this.faces[style.fontFamily] && 
			this.faces[style.fontFamily][style.fontWeight]
		) {
			face = this.faces[style.fontFamily][style.fontWeight][style.fontStyle];
		}

		if (!face) {
			return;
		}
	
		var text = e.nodeValue.replace(/(?:^\s+|\s+$)/g, '');
		text = text.replace(/\s+/g, ' ');
		var words = text.split(/\s/);

		var containerSpan = document.createElement('span');

		for (var i = 0; i < words.length; i++) {
			var word = words[i];
			var delimiter = i == words.length - 1 ? '' : ' ';
			var vectorElement = this.renderWord(face, style, word + delimiter);
			if (vectorElement)
				containerSpan.appendChild(vectorElement);
		}

		return containerSpan;
	},

	renderDocument: function(callback) { // args: onComplete
		
		if (this.renderDocumentLock) 
			return;

		this.renderDocumentLock = true;

		if (!callback)
			callback = function(e) { e.style.visibility = 'visible' };

		var elements = document.getElementsByTagName('*');
		
		var elementsLength = elements.length;
		for (var i = 0; i < elements.length; i++) {
			if (elements[i].className.match(/(^|\s)typeface-js(\s|$)/) || elements[i].tagName.match(/^(H1|H2|H3|H4|H5|H6)$/)) {
				this.replaceText(elements[i]);
				if (typeof callback == 'function') {
					callback(elements[i]);
				}
			}
		}
	},

	replaceText: function(e) {
		if (e.hasChildNodes()) {
			var childNodes = [];
			for (var i = 0; i < e.childNodes.length; i++) {
				childNodes[i] = e.childNodes[i];
			}
			for (var i = 0; i < childNodes.length; i++) {
				this.replaceText(childNodes[i]);
			}
		}

		if (e.nodeType == 3 && e.nodeValue.match(/\S/)) {
			var parentNode = e.parentNode;
		
			var renderedText = this.getRenderedText(e);
			
			if (renderedText) {	
				parentNode.insertBefore(renderedText, e);
				parentNode.removeChild(e);
			}	
		}
	},

	applyElementVerticalMetrics: function(face, style, e) {

		var boundingBoxAdjustmentTop = this.pixelsFromPoints(face, style, face.ascender - Math.max(face.boundingBox.yMax, face.ascender)); 
		var boundingBoxAdjustmentBottom = this.pixelsFromPoints(face, style, Math.min(face.boundingBox.yMin, face.descender) - face.descender); 
				
		var cssLineHeightAdjustment = 0;
		if (style.lineHeight != 'normal') {
			cssLineHeightAdjustment = style.lineHeight - this.pixelsFromPoints(face, style, face.lineHeight);
		}
		
		var marginTop = Math.round(boundingBoxAdjustmentTop + cssLineHeightAdjustment / 2);
		var marginBottom = Math.round(boundingBoxAdjustmentBottom + cssLineHeightAdjustment / 2);

		e.style.marginTop = marginTop + 'px';
		e.style.marginBottom = marginBottom + 'px';
	
	},

	vectorBackends: {

		canvas: {

			_initializeSurface: function(face, style, text) {

				var extents = this.getTextExtents(face, style, text);

				var canvas = document.createElement('canvas');
				canvas.innerHTML = text;

				this.applyElementVerticalMetrics(face, style, canvas);
				canvas.height = Math.round(this.pixelsFromPoints(face, style, face.lineHeight));

				canvas.width = Math.round(this.pixelsFromPoints(face, style, extents.x, 'horizontal'));
	
				if (extents.x > extents.ha) 
					canvas.style.marginRight = Math.round(this.pixelsFromPoints(face, style, extents.x - extents.ha, 'horizontal')) + 'px';

				var ctx = canvas.getContext('2d');

				var pointScale = this.pixelsFromPoints(face, style, 1);
				ctx.scale(pointScale * style.fontStretchPercent, -1 * pointScale);
				ctx.translate(0, -1 * face.ascender);
				ctx.fillStyle = style.color;

				return { context: ctx, canvas: canvas };
			},

			_renderGlyph: function(ctx, face, char, style) {

				var glyph = face.glyphs[char];

				if (!glyph) {
					//this.log.error("glyph not defined: " + char);
					return this.renderGlyph(ctx, face, this.fallbackCharacter, style);
				}

				if (glyph.o) {

					var outline;
					if (glyph.cached_outline) {
						outline = glyph.cached_outline;
					} else {
						outline = glyph.o.split(' ');
						glyph.cached_outline = outline;
					}

					for (var i = 0; i < outline.length; ) {

						var action = outline[i++];

						switch(action) {
							case 'm':
								ctx.moveTo(outline[i++], outline[i++]);
								break;
							case 'l':
								ctx.lineTo(outline[i++], outline[i++]);
								break;

							case 'q':
								var cpx = outline[i++];
								var cpy = outline[i++];
								ctx.quadraticCurveTo(outline[i++], outline[i++], cpx, cpy);
								break;
						}
					}					
				}
				if (glyph.ha) {
					var letterSpacingPoints = 
						style.letterSpacing && style.letterSpacing != 'normal' ? 
							this.pointsFromPixels(face, style, style.letterSpacing) : 
							0;

					ctx.translate(glyph.ha + letterSpacingPoints, 0);
				}
			},

			_renderWord: function(face, style, text) {
				var surface = this.initializeSurface(face, style, text);
				var ctx = surface.context;
				var canvas = surface.canvas;
				ctx.beginPath();
				ctx.save();

				var chars = text.split('');
				for (var i = 0; i < chars.length; i++) {
					var char = chars[i];
					this.renderGlyph(ctx, face, char, style);
				}

				ctx.fill();

				if (style.textDecoration == 'underline') {

					ctx.beginPath();
					ctx.moveTo(0, face.underlinePosition);
					ctx.restore();
					ctx.lineTo(0, face.underlinePosition);
					ctx.strokeStyle = style.color;
					ctx.lineWidth = face.underlineThickness;
					ctx.stroke();
				}

				return ctx.canvas;
			}
		},

		vml: {

			_initializeSurface: function(face, style, text) {

				var shape = document.createElement('v:shape');

				var extents = this.getTextExtents(face, style, text);
				
				shape.style.width = style.fontSize + 'px'; 
				shape.style.height = style.fontSize + 'px'; 

				if (extents.x > extents.ha) {
					shape.style.marginRight = this.pixelsFromPoints(face, style, extents.x - extents.ha, 'horizontal') + 'px';
				}

				this.applyElementVerticalMetrics(face, style, shape);

				shape.coordsize = (face.resolution * 100 / style.fontStretchPercent / 72 ) + "," + (face.resolution * 100 / 72);
				
				shape.coordorigin = '0,' + face.ascender;
				shape.style.flip = 'y';

				shape.fillColor = style.color;
				shape.stroked = false;

				shape.path = 'hh m 0,' + face.ascender + ' l 0,' + face.descender + ' ';

				return shape;
			},

			_renderGlyph: function(shape, face, char, offsetX, style) {

				var glyph = face.glyphs[char];

				if (!glyph) {
					//this.log.error("glyph not defined: " + char);
					this.renderGlyph(shape, face, this.fallbackCharacter, offsetX, style);
				}
				
				var vmlSegments = [];

				if (glyph.o) {
					
					var outline;
					if (glyph.cached_outline) {
						outline = glyph.cached_outline;
					} else {
						outline = glyph.o.split(' ');
						glyph.cached_outline = outline;
					}

					var prevAction, prevX, prevY;

					var i;
					for (i = 0; i < outline.length;) {

						var action = outline[i++];
						var vmlSegment = '';

						var x = Math.round(outline[i++]) + offsetX;
						var y = Math.round(outline[i++]);
	
						switch(action) {
							case 'm':
								vmlSegment = (vmlSegments.length ? 'x ' : '') + 'm ' + x + ',' + y;
								break;
	
							case 'l':
								vmlSegment = 'l ' + x + ',' + y;
								break;

							case 'q':
								var cpx = Math.round(outline[i++]) + offsetX;
								var cpy = Math.round(outline[i++]);

								var cp1x = Math.round(prevX + 2.0 / 3.0 * (cpx - prevX));
								var cp1y = Math.round(prevY + 2.0 / 3.0 * (cpy - prevY));

								var cp2x = Math.round(cp1x + (x - prevX) / 3.0);
								var cp2y = Math.round(cp1y + (y - prevY) / 3.0);

								vmlSegment = 'c ' + cp1x + ',' + cp1y + ',' + cp2x + ',' + cp2y + ',' + x + ',' + y;
								break;
						}
						
						prevAction = action;
						prevX = x;
						prevY = y;
				
						if (vmlSegment.length) {
							vmlSegments.push(vmlSegment);
						}
					}					
				}

				vmlSegments.push('x', 'e');
				return vmlSegments.join(' ');
			},

			_renderWord: function(face, style, text) {
				var offsetX = 0;
				var shape = this.initializeSurface(face, style, text);
		
				var letterSpacingPoints = 
					style.letterSpacing && style.letterSpacing != 'normal' ? 
						this.pointsFromPixels(face, style, style.letterSpacing) : 
						0;

				letterSpacingPoints = Math.round(letterSpacingPoints);
				var chars = text.split('');
				for (var i = 0; i < chars.length; i++) {
					var char = chars[i];
					shape.path += this.renderGlyph(shape, face, char, offsetX, style) + ' ';
					offsetX += face.glyphs[char].ha + letterSpacingPoints ;	
				}

				shape.style.marginRight = this.pixelsFromPoints(face, style, face.glyphs[' '].ha) + 'px';
				return shape;
			}

		}

	},

	setVectorBackend: function(backend) {

		var backendFunctions = ['renderWord', 'initializeSurface', 'renderGlyph'];

		for (var i = 0; i < backendFunctions.length; i++) {
			var backendFunction = backendFunctions[i];
			this[backendFunction] = this.vectorBackends[backend]['_' + backendFunction];
		}
	}
};

// IE won't accept real selectors...
var typefaceSelectors = ['.typeface-js', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'];

if (document.createStyleSheet) { 
	var styleSheet = document.createStyleSheet();
	for (var i = 0; i < typefaceSelectors.length; i++) {
		var selector = typefaceSelectors[i];
		styleSheet.addRule(selector, 'visibility: hidden');
	}

} else if (document.styleSheets && document.styleSheets.length) {
	var styleSheet = document.styleSheets[0];
	document.styleSheets[0].insertRule(typefaceSelectors.join(',') + ' { visibility: hidden; }', styleSheet.cssRules.length); 
}

var backend = !!(window.attachEvent && !window.opera) ? 'vml' : window.CanvasRenderingContext2D || document.createElement('canvas').getContext ? 'canvas' : null;

if (backend == 'vml') {
	
	document.namespaces.add("v");
	
	var styleSheet = document.createStyleSheet();
	styleSheet.addRule('v\\:*', "behavior: url(#default#VML); display: inline-block;");
}

_typeface_js.setVectorBackend(backend);

window._typeface_js = _typeface_js;
	
// based on code by Dean Edwards / Matthias Miller / John Resig

function typefaceInit() {

	// quit if this function has already been called
	if (arguments.callee.done) return;
	
	// flag this function so we don't do the same thing twice
	arguments.callee.done = true;

	// kill the timer
	if (window._typefaceTimer) clearInterval(_typefaceTimer);

	_typeface_js.renderDocument( function(e) { e.style.visibility = 'visible' } );
};

if (/WebKit/i.test(navigator.userAgent)) {

	var _typefaceTimer = setInterval(function() {
		if (/loaded|complete/.test(document.readyState)) {
			typefaceInit(); 
		}
	}, 10);
}

if (document.addEventListener) {
	window.addEventListener('DOMContentLoaded', function() { typefaceInit() }, false);
} 

/*@cc_on @*/
/*@if (@_win32)

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

/*@end @*/

})();


if (_typeface_js && _typeface_js.loadFace) _typeface_js.loadFace({"glyphs":{"ο":{"x_min":0,"x_max":698,"ha":799,"o":"m 349 -25 q 94 88 189 -25 q 0 368 0 201 q 91 642 0 533 q 349 761 189 761 q 605 644 507 761 q 698 368 698 533 q 606 91 698 201 q 349 -25 510 -25 m 349 84 q 517 174 455 84 q 571 369 571 255 q 518 562 571 484 q 349 651 457 651 q 185 561 244 651 q 132 369 132 481 q 183 177 132 256 q 349 84 244 84 "},"S":{"x_min":0,"x_max":772,"ha":873,"o":"m 772 292 q 649 54 772 144 q 389 -26 539 -26 q 114 68 221 -26 q 0 338 0 168 l 128 338 q 195 153 128 221 q 376 85 263 85 q 545 129 469 85 q 637 271 637 183 q 480 429 637 379 q 190 514 334 471 q 33 740 33 585 q 140 965 33 882 q 381 1042 238 1042 q 631 958 531 1042 q 740 717 740 868 l 612 717 q 549 875 612 817 q 387 934 487 934 q 238 892 303 934 q 161 760 161 842 q 318 610 161 657 q 612 526 465 568 q 772 292 772 454 "},"¦":{"x_min":336,"x_max":439,"ha":775,"o":"m 439 462 l 336 462 l 336 986 l 439 986 l 439 462 m 439 -242 l 336 -242 l 336 280 l 439 280 l 439 -242 "},"/":{"x_min":179.671875,"x_max":596.171875,"ha":776,"o":"m 596 1042 l 261 -129 l 179 -129 l 510 1042 l 596 1042 "},"Τ":{"x_min":0,"x_max":762,"ha":822,"o":"m 762 893 l 449 893 l 449 0 l 313 0 l 313 891 l 0 891 l 0 1012 l 762 1012 l 762 893 "},"y":{"x_min":-0.28125,"x_max":670.75,"ha":755,"o":"m 670 738 l 380 -83 q 304 -216 349 -167 q 169 -279 247 -279 q 95 -266 130 -279 l 95 -148 q 129 -155 107 -151 q 164 -160 152 -160 q 235 -114 209 -160 q 269 -26 243 -98 l 0 738 l 134 738 l 334 140 l 537 738 l 670 738 "},"Π":{"x_min":0,"x_max":787,"ha":899,"o":"m 787 0 l 654 0 l 654 886 l 137 886 l 137 0 l 0 0 l 0 1012 l 787 1012 l 787 0 "},"ΐ":{"x_min":-109,"x_max":332,"ha":354,"o":"m 332 800 l 224 800 l 224 925 l 332 925 l 332 800 m -1 800 l -109 800 l -109 925 l -1 925 l -1 800 m 277 3 q 227 -10 252 -5 q 177 -15 202 -15 q 82 26 116 -15 q 40 200 40 79 l 40 738 l 163 738 l 163 215 q 167 142 163 157 q 220 102 178 102 q 242 103 233 102 q 277 113 251 104 l 277 3 m 296 1040 l 111 820 l 29 820 l 161 1040 l 296 1040 "},"g":{"x_min":0,"x_max":672,"ha":820,"o":"m 672 34 q 574 -213 672 -121 q 324 -306 477 -306 q 128 -253 212 -306 q 31 -85 31 -190 l 152 -85 q 224 -175 163 -139 q 338 -207 278 -207 q 504 -109 446 -207 q 553 88 553 -28 q 452 5 511 35 q 329 -24 394 -24 q 87 99 180 -24 q 0 370 0 214 q 85 634 0 521 q 323 758 179 758 q 447 728 390 758 q 552 643 504 699 l 552 737 l 672 737 l 672 34 m 570 367 q 518 560 570 481 q 351 652 458 652 q 185 561 244 652 q 132 368 132 482 q 185 175 132 254 q 353 84 246 84 q 518 175 458 84 q 570 367 570 254 "},"²":{"x_min":0,"x_max":433,"ha":528,"o":"m 433 382 l 0 382 q 90 565 0 491 q 255 667 173 616 q 347 797 347 726 q 309 874 347 844 q 223 904 272 904 q 133 868 170 904 q 97 761 97 833 l 14 761 q 80 921 14 863 q 227 973 139 973 q 371 925 310 973 q 433 796 433 877 q 344 634 433 703 q 179 538 314 610 q 90 454 90 490 l 433 454 l 433 382 "},"–":{"x_min":0,"x_max":691,"ha":786,"o":"m 691 335 l 0 335 l 0 411 l 691 411 l 691 335 "},"Κ":{"x_min":0,"x_max":802.953125,"ha":875,"o":"m 802 0 l 636 0 l 288 509 l 136 356 l 136 0 l 0 0 l 0 1012 l 136 1012 l 136 526 l 613 1012 l 793 1012 l 387 599 l 802 0 "},"ƒ":{"x_min":-44.53125,"x_max":384,"ha":502,"o":"m 384 651 l 255 651 l 77 -279 l -44 -279 l 132 651 l 14 651 l 14 751 l 132 751 q 148 948 132 901 q 298 1040 181 1040 q 327 1040 313 1040 q 384 1034 341 1040 l 384 922 q 331 932 352 932 q 265 884 282 932 q 255 794 255 854 l 255 751 l 384 751 l 384 651 "},"e":{"x_min":0,"x_max":699.140625,"ha":796,"o":"m 699 327 l 137 327 q 196 157 137 228 q 352 86 255 86 q 478 130 422 86 q 549 246 534 175 l 682 246 q 565 48 656 123 q 350 -26 474 -26 q 95 85 191 -26 q 0 363 0 197 q 92 642 0 529 q 350 765 191 765 q 613 627 518 765 q 699 327 699 504 m 564 430 q 497 583 553 522 q 347 650 436 650 q 202 583 260 650 q 137 430 149 522 l 564 430 "},"ό":{"x_min":0,"x_max":698,"ha":799,"o":"m 349 -25 q 92 91 190 -25 q 0 368 0 202 q 91 642 0 533 q 349 761 189 761 q 605 644 507 761 q 698 368 698 533 q 606 91 698 201 q 349 -25 510 -25 m 349 84 q 517 174 455 84 q 571 369 571 255 q 518 562 571 484 q 349 651 457 651 q 185 561 244 651 q 132 369 132 481 q 183 177 132 256 q 349 84 244 84 m 564 1040 l 379 819 l 297 819 l 429 1040 l 564 1040 "},"J":{"x_min":0,"x_max":576,"ha":685,"o":"m 576 278 q 282 -27 576 -27 q 57 72 124 -27 q 0 327 0 157 l 131 327 q 158 171 131 226 q 283 95 194 95 q 418 170 384 95 q 440 335 440 218 l 440 1012 l 576 1012 l 576 278 "},"»":{"x_min":0,"x_max":494,"ha":589,"o":"m 494 302 l 276 137 l 276 256 l 420 372 l 276 486 l 276 608 l 494 440 l 494 302 m 218 302 l 0 137 l 0 256 l 143 372 l 0 486 l 0 608 l 218 440 l 218 302 "},"©":{"x_min":-3,"x_max":988,"ha":1083,"o":"m 492 -7 q 120 151 258 -7 q -3 501 -3 294 q 120 851 -3 706 q 492 1011 258 1011 q 864 851 725 1011 q 988 501 988 708 q 865 151 988 292 q 492 -7 729 -7 m 492 60 q 813 197 695 60 q 921 501 921 322 q 814 805 921 681 q 492 944 695 944 q 171 805 291 944 q 64 501 64 680 q 170 197 64 320 q 492 60 288 60 m 726 394 q 648 246 716 302 q 486 190 579 190 q 288 285 361 190 q 223 496 223 370 q 289 713 223 624 q 489 812 363 812 q 643 761 576 812 q 718 624 709 710 l 621 624 q 577 703 616 673 q 488 734 538 734 q 368 665 411 734 q 326 503 326 596 q 366 339 326 407 q 479 272 406 272 q 577 304 538 272 q 625 394 616 337 l 726 394 "},"ώ":{"x_min":0,"x_max":904,"ha":1010,"o":"m 673 1040 l 488 820 l 406 820 l 538 1040 l 673 1040 m 904 339 q 839 97 904 203 q 637 -26 765 -26 q 527 9 575 -26 q 451 103 479 44 q 379 12 427 46 q 272 -21 332 -21 q 68 97 144 -21 q 0 339 0 203 q 44 552 0 445 q 157 737 82 643 l 296 737 q 171 553 214 647 q 121 336 121 446 q 152 179 121 249 q 269 88 193 88 q 367 163 334 88 q 392 295 392 220 l 392 573 l 513 573 l 513 295 q 549 135 513 192 q 630 88 579 88 q 746 182 704 88 q 781 342 781 257 q 730 556 781 450 q 606 737 691 638 l 745 737 q 857 551 819 640 q 904 339 904 444 "},"^":{"x_min":189.1875,"x_max":586.640625,"ha":776,"o":"m 586 772 l 504 772 l 387 930 l 272 772 l 189 772 l 319 1012 l 453 1012 l 586 772 "},"«":{"x_min":0,"x_max":497,"ha":592,"o":"m 497 137 l 278 302 l 278 440 l 497 608 l 497 486 l 352 372 l 497 256 l 497 137 m 218 137 l 0 302 l 0 440 l 218 608 l 218 486 l 73 372 l 218 256 l 218 137 "},"D":{"x_min":0,"x_max":811,"ha":916,"o":"m 381 1012 q 699 866 581 1012 q 811 520 811 728 q 698 160 811 308 q 374 -1 575 -1 l 0 -1 l 0 1012 l 381 1012 m 368 123 q 594 246 513 123 q 667 509 667 354 q 594 770 667 661 q 368 895 511 895 l 136 895 l 136 123 l 368 123 "},"∙":{"x_min":0,"x_max":139,"ha":234,"o":"m 139 585 l 0 585 l 0 738 l 139 738 l 139 585 "},"ÿ":{"x_min":0.28125,"x_max":46,"ha":122,"o":"m 46 2 q 36 -7 46 -7 q 27 0 29 -7 q 37 -4 30 -4 q 43 2 43 -1 l 36 0 q 27 9 27 0 q 36 19 27 19 l 43 15 l 46 19 l 46 2 m 36 1 q 43 9 43 1 q 36 17 43 17 q 29 9 29 17 q 36 1 29 1 m 25 0 l 23 21 l 13 0 l 3 21 l 3 0 l 0 24 l 13 3 l 21 24 l 25 0 "},"w":{"x_min":0,"x_max":989.53125,"ha":1078,"o":"m 989 737 l 767 0 l 645 0 l 491 566 l 338 0 l 217 0 l 0 737 l 127 737 l 279 173 l 423 737 l 564 737 l 706 173 l 862 737 l 989 737 "},"$":{"x_min":0,"x_max":686,"ha":777,"o":"m 650 718 l 530 718 q 480 825 519 786 q 373 872 440 865 l 373 551 q 607 446 529 522 q 686 241 686 371 q 605 45 686 116 q 373 -25 525 -25 l 373 -151 l 301 -151 l 301 -24 q 79 62 159 -24 q 0 298 0 149 l 121 298 q 165 147 121 204 q 301 80 210 89 l 301 442 q 79 536 145 469 q 12 725 12 603 q 94 910 12 839 q 301 982 177 982 l 301 1077 l 373 1077 l 373 982 q 562 918 484 982 q 650 718 650 845 m 301 565 l 301 872 q 183 832 228 872 q 139 725 139 791 q 176 618 139 657 q 301 565 213 580 m 373 76 q 551 237 551 97 q 506 362 551 314 q 373 424 462 410 l 373 76 "},"\\":{"x_min":0,"x_max":416.5,"ha":512,"o":"m 416 -129 l 330 -129 l 0 1042 l 81 1042 l 416 -129 "},"µ":{"x_min":0,"x_max":683.21875,"ha":732,"o":"m 683 -4 q 616 -14 645 -14 q 488 97 503 -14 q 414 8 461 41 q 307 -24 367 -24 q 203 3 253 -24 q 117 80 153 31 l 117 -278 l 0 -278 l 0 737 l 121 737 l 121 343 q 161 172 121 245 q 302 82 212 82 q 443 177 394 82 q 483 358 483 254 l 483 737 l 604 737 l 604 214 q 610 136 604 159 q 660 92 624 92 q 683 96 670 92 l 683 -4 "},"Ι":{"x_min":41,"x_max":177,"ha":291,"o":"m 177 0 l 41 0 l 41 1012 l 177 1012 l 177 0 "},"Ύ":{"x_min":-0.328125,"x_max":1120.75,"ha":1189,"o":"m 1120 1012 l 790 416 l 790 0 l 653 0 l 653 416 l 318 1012 l 455 1012 l 720 533 l 983 1012 l 1120 1012 m 271 1040 l 81 800 l 0 800 l 137 1040 l 271 1040 "},"’":{"x_min":0,"x_max":136,"ha":231,"o":"m 136 851 q 99 737 136 784 q 0 670 63 691 l 0 734 q 58 787 42 741 q 71 872 71 820 l 0 872 l 0 1012 l 136 1012 l 136 851 "},"Ν":{"x_min":0,"x_max":785,"ha":897,"o":"m 785 0 l 637 0 l 128 821 l 128 0 l 0 0 l 0 1012 l 148 1012 l 657 191 l 657 1012 l 785 1012 l 785 0 "},"-":{"x_min":10,"x_max":345,"ha":469,"o":"m 345 317 l 10 317 l 10 428 l 345 428 l 345 317 "},"Q":{"x_min":0,"x_max":948,"ha":1050,"o":"m 934 6 l 869 -78 l 729 36 q 609 -11 673 3 q 473 -26 545 -26 q 125 130 257 -26 q 0 504 0 279 q 125 880 0 729 q 474 1042 257 1042 q 824 885 693 1042 q 948 508 948 736 q 914 294 948 399 q 816 106 881 189 l 934 6 m 708 192 q 786 331 762 249 q 811 500 811 413 q 729 791 811 674 q 473 923 636 923 q 223 792 315 923 q 139 506 139 674 q 223 221 139 338 q 477 91 317 91 q 620 124 555 91 l 510 216 l 575 302 l 708 192 "},"ς":{"x_min":1,"x_max":662.46875,"ha":725,"o":"m 662 461 l 539 461 q 487 595 531 547 q 357 651 438 651 q 195 578 258 651 q 133 401 133 505 q 260 179 133 241 q 497 106 378 142 q 627 -50 627 62 q 612 -158 627 -105 q 570 -278 598 -211 l 455 -278 q 487 -182 479 -211 q 504 -80 504 -126 q 373 12 504 -15 q 131 91 192 51 q 1 388 1 179 q 98 651 1 542 q 346 761 195 761 q 575 680 488 761 q 662 461 662 599 "},"M":{"x_min":0,"x_max":935,"ha":1045,"o":"m 935 0 l 803 0 l 803 867 l 526 0 l 397 0 l 125 864 l 125 0 l 0 0 l 0 1012 l 195 1012 l 462 158 l 743 1012 l 935 1012 l 935 0 "},"Ψ":{"x_min":0,"x_max":986,"ha":1073,"o":"m 986 677 q 896 319 986 429 q 560 200 797 200 l 560 0 l 425 0 l 425 200 q 91 319 190 200 q 0 677 0 429 l 0 1012 l 136 1012 l 136 678 q 187 417 136 492 q 425 326 250 326 l 425 1012 l 560 1012 l 560 326 l 569 326 q 797 423 732 326 q 851 678 851 502 l 851 1012 l 986 1012 l 986 677 "},"C":{"x_min":0,"x_max":869,"ha":926,"o":"m 869 379 q 745 87 869 201 q 446 -26 622 -26 q 110 136 231 -26 q 0 510 0 283 q 115 883 0 738 q 459 1042 240 1042 q 733 955 617 1042 q 861 709 861 860 l 731 709 q 636 863 710 806 q 464 921 562 921 q 214 791 306 921 q 133 509 133 676 q 213 229 133 344 q 461 99 304 99 q 658 179 579 99 q 738 379 738 259 l 869 379 "},"!":{"x_min":0,"x_max":136,"ha":231,"o":"m 136 684 q 114 409 136 628 q 104 244 104 299 l 33 244 q 16 464 33 313 q 0 684 0 616 l 0 1012 l 136 1012 l 136 684 m 136 0 l 0 0 l 0 151 l 136 151 l 136 0 "},"{":{"x_min":0,"x_max":471,"ha":566,"o":"m 471 -286 q 232 -213 297 -286 q 183 -45 183 -159 q 188 48 183 -15 q 194 141 194 112 q 158 263 194 225 q 0 314 113 314 l 0 417 q 159 471 116 417 q 193 605 193 514 q 193 665 193 644 q 193 772 193 769 q 240 941 193 887 q 471 1015 304 1015 l 471 915 q 329 866 367 915 q 303 742 303 829 q 303 662 303 718 q 303 577 303 607 q 280 453 303 500 q 172 365 251 391 q 283 275 253 337 q 306 143 306 226 q 306 84 306 106 q 306 -11 306 -5 q 333 -131 306 -94 q 471 -182 370 -182 l 471 -286 "},"X":{"x_min":0,"x_max":837.078125,"ha":921,"o":"m 837 0 l 669 0 l 415 409 l 163 0 l 0 0 l 340 519 l 17 1012 l 182 1012 l 419 637 l 661 1012 l 819 1012 l 494 520 l 837 0 "},"#":{"x_min":0,"x_max":944.609375,"ha":1040,"o":"m 944 691 l 909 591 l 705 591 l 642 410 l 858 410 l 823 310 l 605 310 l 498 -2 l 386 -2 l 495 310 l 322 310 l 210 -2 l 100 -2 l 208 310 l 0 310 l 35 410 l 243 410 l 306 591 l 84 591 l 118 691 l 341 691 l 450 1006 l 562 1006 l 454 691 l 628 691 l 736 1006 l 847 1006 l 740 691 l 944 691 m 594 591 l 416 591 l 355 410 l 532 410 l 594 591 "},"ι":{"x_min":41,"x_max":278.34375,"ha":355,"o":"m 278 3 q 228 -10 253 -5 q 178 -15 203 -15 q 83 26 117 -15 q 41 200 41 79 l 41 738 l 164 738 l 164 215 q 168 142 164 157 q 222 102 179 102 q 243 103 234 102 q 278 113 252 104 l 278 3 "},"Ά":{"x_min":0,"x_max":888.8125,"ha":962,"o":"m 277 1039 l 87 800 l 5 800 l 142 1039 l 277 1039 m 888 0 l 741 0 l 637 302 l 246 302 l 140 0 l 0 0 l 368 1012 l 518 1012 l 888 0 m 597 420 l 443 866 l 287 420 l 597 420 "},")":{"x_min":-0.1875,"x_max":312,"ha":407,"o":"m 312 365 q 252 25 312 191 q 85 -290 193 -141 l 0 -290 q 137 21 91 -128 q 189 360 189 189 q 138 704 189 537 q 0 1024 95 850 l 85 1024 q 252 706 193 871 q 312 365 312 542 "},"ε":{"x_min":0,"x_max":622.53125,"ha":700,"o":"m 622 235 q 517 38 622 111 q 294 -25 425 -25 q 96 29 179 -25 q 0 204 0 93 q 36 313 0 265 q 127 390 66 352 q 56 459 82 419 q 26 555 26 505 q 113 712 26 654 q 290 763 188 763 q 490 700 408 763 q 579 515 579 632 l 469 515 q 411 618 455 580 q 302 657 367 657 q 204 630 249 657 q 149 547 149 598 q 234 446 149 469 q 382 435 274 435 l 382 332 l 342 332 q 203 315 250 332 q 123 210 123 287 q 180 108 123 145 q 297 76 229 76 q 427 117 371 76 q 499 235 483 159 l 622 235 "},"Δ":{"x_min":0,"x_max":933.71875,"ha":1007,"o":"m 933 -1 l 0 -1 l 392 1012 l 540 1012 l 933 -1 m 747 123 l 466 866 l 183 123 l 747 123 "},"}":{"x_min":0,"x_max":471,"ha":566,"o":"m 471 314 q 311 262 356 314 q 276 136 276 222 q 278 65 276 97 q 288 -58 288 -48 q 237 -217 288 -166 q 0 -286 171 -286 l 0 -182 q 138 -130 103 -182 q 164 -2 164 -93 q 164 81 164 22 q 164 144 164 140 q 186 275 164 229 q 299 365 215 339 q 187 455 218 391 q 163 589 163 505 q 163 681 163 625 q 163 743 163 737 q 136 865 163 827 q 0 915 100 915 l 0 1015 q 237 942 172 1015 q 286 773 286 888 q 281 675 286 741 q 276 590 276 608 q 311 466 276 505 q 471 417 356 417 l 471 314 "},"‰":{"x_min":-3,"x_max":1638,"ha":1784,"o":"m 828 0 q 650 76 717 0 q 591 244 591 145 q 649 412 591 344 q 829 489 714 489 q 1007 412 940 489 q 1067 244 1067 343 q 1008 76 1067 144 q 828 0 943 0 m 827 103 q 926 143 891 103 q 961 243 961 184 q 928 340 961 301 q 827 385 891 385 q 730 342 766 385 q 694 243 694 300 q 726 147 694 186 q 827 103 764 103 m 871 986 l 278 -26 l 195 -26 l 788 986 l 871 986 m 236 468 q 56 545 123 468 q -3 714 -3 615 q 55 881 -3 813 q 233 958 122 958 q 413 881 346 958 q 473 712 473 813 q 414 544 473 612 q 236 468 349 468 m 236 855 q 134 811 171 855 q 98 710 98 768 q 133 612 98 653 q 235 572 168 572 q 337 614 300 572 q 374 713 374 656 q 340 810 374 771 q 236 855 301 855 m 1399 0 q 1221 76 1288 0 q 1162 244 1162 145 q 1220 412 1162 344 q 1400 489 1285 489 q 1578 412 1511 489 q 1638 244 1638 343 q 1579 76 1638 144 q 1399 0 1514 0 m 1398 103 q 1497 143 1462 103 q 1532 243 1532 184 q 1499 340 1532 301 q 1398 385 1462 385 q 1301 342 1337 385 q 1265 243 1265 300 q 1297 147 1265 186 q 1398 103 1335 103 "},"a":{"x_min":0,"x_max":685,"ha":779,"o":"m 685 0 q 648 -12 665 -7 q 602 -17 630 -17 q 525 12 552 -17 q 489 95 497 41 q 375 6 446 37 q 231 -25 305 -25 q 63 31 127 -25 q 0 194 0 88 q 115 390 0 334 q 321 436 176 420 q 477 483 466 451 q 484 523 484 504 q 432 619 484 584 q 318 654 380 654 q 204 617 251 654 q 149 514 157 580 l 32 514 q 120 705 32 633 q 324 772 202 772 q 516 712 439 772 q 604 532 604 645 l 604 163 q 611 108 604 126 q 650 90 619 90 l 685 94 l 685 0 m 480 262 l 480 372 q 266 329 342 347 q 125 201 125 294 q 163 113 125 144 q 258 83 201 83 q 405 130 338 83 q 480 262 480 183 "},"—":{"x_min":0,"x_max":923,"ha":1018,"o":"m 923 335 l 0 335 l 0 411 l 923 411 l 923 335 "},"=":{"x_min":10,"x_max":767,"ha":777,"o":"m 767 510 l 10 510 l 10 606 l 767 606 l 767 510 m 767 235 l 10 235 l 10 332 l 767 332 l 767 235 "},"N":{"x_min":0,"x_max":785,"ha":895,"o":"m 785 0 l 637 0 l 128 821 l 128 0 l 0 0 l 0 1012 l 148 1012 l 657 191 l 657 1012 l 785 1012 l 785 0 "},"ρ":{"x_min":0,"x_max":698,"ha":781,"o":"m 698 368 q 608 93 698 206 q 355 -27 511 -27 q 225 1 287 -27 q 117 82 164 29 l 117 -278 l 0 -278 l 0 361 q 89 642 0 531 q 348 763 186 763 q 605 646 507 763 q 698 368 698 535 m 571 366 q 519 559 571 480 q 352 651 459 651 q 186 562 247 651 q 131 370 131 482 q 185 175 131 256 q 352 84 244 84 q 518 174 457 84 q 571 366 571 253 "},"2":{"x_min":59,"x_max":718,"ha":777,"o":"m 718 0 l 59 0 q 195 313 59 188 q 449 487 196 314 q 587 691 587 580 q 533 819 587 772 q 404 867 479 867 q 268 811 323 867 q 206 630 206 747 l 81 630 q 180 901 81 805 q 402 986 267 986 q 618 909 527 986 q 718 694 718 826 q 602 449 718 541 q 372 316 486 382 q 197 122 231 234 l 718 122 l 718 0 "},"¯":{"x_min":0,"x_max":923,"ha":919,"o":"m 923 1033 l 0 1033 l 0 1109 l 923 1109 l 923 1033 "},"Z":{"x_min":0,"x_max":764,"ha":832,"o":"m 764 -1 l 0 -1 l 0 113 l 608 895 l 40 895 l 40 1012 l 764 1012 l 764 886 l 167 123 l 764 123 l 764 -1 "},"u":{"x_min":0,"x_max":604,"ha":714,"o":"m 604 0 l 488 0 l 488 109 q 383 10 450 45 q 240 -25 315 -25 q 59 58 125 -25 q 0 258 0 136 l 0 737 l 123 737 l 123 284 q 154 148 123 202 q 268 82 193 82 q 424 165 362 82 q 483 340 483 242 l 483 737 l 604 737 l 604 0 "},"k":{"x_min":0,"x_max":599.828125,"ha":683,"o":"m 599 739 l 331 465 l 595 0 l 459 0 l 245 382 l 118 251 l 118 0 l 0 0 l 0 1012 l 118 1012 l 118 402 l 447 739 l 599 739 "},"Η":{"x_min":0,"x_max":787,"ha":899,"o":"m 787 0 l 654 0 l 654 475 l 137 475 l 137 0 l 0 0 l 0 1012 l 137 1012 l 137 599 l 654 599 l 654 1012 l 787 1012 l 787 0 "},"Α":{"x_min":0,"x_max":888.8125,"ha":965,"o":"m 888 0 l 741 0 l 637 302 l 246 302 l 140 0 l 0 0 l 368 1012 l 518 1012 l 888 0 m 597 420 l 443 866 l 287 420 l 597 420 "},"s":{"x_min":0,"x_max":592,"ha":683,"o":"m 592 217 q 491 36 592 104 q 287 -23 402 -23 q 84 43 163 -23 q 0 238 0 114 l 118 238 q 171 122 118 164 q 293 85 218 85 q 406 112 356 85 q 469 207 469 147 q 353 310 469 276 q 137 372 138 371 q 20 544 20 426 q 108 708 20 647 q 292 761 185 761 q 482 705 405 761 q 571 532 571 643 l 453 532 q 404 625 453 594 q 292 657 356 657 q 195 636 237 657 q 140 558 140 608 q 257 454 140 486 q 474 394 469 397 q 592 217 592 341 "},"B":{"x_min":0,"x_max":762,"ha":859,"o":"m 569 545 q 709 468 657 534 q 762 310 762 402 q 659 82 762 170 q 423 -1 563 -1 l 0 -1 l 0 1012 l 402 1012 q 616 956 530 1012 q 717 767 717 891 q 676 632 717 692 q 569 545 636 571 m 385 898 l 136 898 l 136 587 l 371 587 q 510 623 453 587 q 580 743 580 666 q 520 858 580 818 q 385 898 461 898 m 411 123 q 555 168 494 123 q 622 302 622 218 q 548 435 622 388 q 394 476 484 476 l 136 476 l 136 123 l 411 123 "},"…":{"x_min":0,"x_max":601,"ha":694,"o":"m 139 0 l 0 0 l 0 151 l 139 151 l 139 0 m 370 0 l 231 0 l 231 151 l 370 151 l 370 0 m 601 0 l 462 0 l 462 151 l 601 151 l 601 0 "},"?":{"x_min":0,"x_max":595,"ha":690,"o":"m 595 777 q 532 599 595 674 q 413 474 472 537 q 350 271 350 391 l 232 271 q 291 487 232 395 q 402 619 293 490 q 464 762 464 691 q 413 885 464 838 q 295 933 363 933 q 175 880 223 933 q 121 707 121 819 l 0 707 q 92 963 0 872 q 296 1044 174 1044 q 501 973 415 1044 q 595 777 595 895 m 362 0 l 226 0 l 226 151 l 362 151 l 362 0 "},"H":{"x_min":0,"x_max":787,"ha":897,"o":"m 787 0 l 654 0 l 654 475 l 137 475 l 137 0 l 0 0 l 0 1012 l 137 1012 l 137 599 l 654 599 l 654 1012 l 787 1012 l 787 0 "},"ν":{"x_min":0,"x_max":661.5,"ha":746,"o":"m 661 737 l 396 0 l 266 0 l 0 737 l 130 737 l 333 147 l 530 737 l 661 737 "},"c":{"x_min":1,"x_max":687.328125,"ha":759,"o":"m 687 264 q 572 53 668 133 q 346 -26 477 -26 q 89 91 184 -26 q 1 370 1 201 q 90 645 1 537 q 346 761 186 761 q 561 688 469 761 q 676 493 653 615 l 545 493 q 477 606 534 562 q 349 650 420 650 q 183 563 242 650 q 132 372 132 487 q 185 179 132 258 q 352 88 246 88 q 483 136 428 88 q 555 264 537 185 l 687 264 "},"¶":{"x_min":-0.421875,"x_max":555,"ha":664,"o":"m 20 891 l 51 891 l 96 760 l 142 891 l 172 891 l 172 737 l 153 737 l 153 865 l 105 737 l 86 737 l 39 870 l 39 737 l 20 737 l 20 891 m 302 853 l 302 730 q 248 690 302 690 q 224 690 236 690 q 205 695 210 694 l 202 711 l 247 705 q 281 732 281 705 l 281 763 q 239 740 273 740 q 189 796 189 740 q 257 859 189 859 q 283 859 269 859 q 302 853 296 854 m 283 841 l 258 841 q 208 794 208 841 q 243 755 208 755 q 283 795 283 755 l 283 841 m 555 987 l 492 987 l 492 -1 l 429 -1 l 429 987 l 310 987 l 310 -1 l 247 -1 l 247 601 q 79 652 151 601 q 0 805 0 710 q 98 988 0 917 q 303 1052 189 1052 l 555 1052 l 555 987 "},"β":{"x_min":0,"x_max":647,"ha":730,"o":"m 462 549 q 598 449 549 521 q 647 280 647 377 q 567 64 647 151 q 360 -22 487 -22 q 234 4 294 -22 q 124 81 175 31 l 124 -278 l 0 -278 l 0 593 q 53 903 0 801 q 311 1042 125 1042 q 509 964 427 1042 q 591 770 591 887 q 556 643 591 701 q 462 549 521 585 m 330 79 q 466 138 409 79 q 524 278 524 198 q 419 436 524 385 q 222 477 337 477 l 222 583 q 391 620 322 583 q 477 762 477 667 q 427 884 477 833 q 306 935 377 935 q 166 861 215 935 q 124 698 124 797 l 124 362 q 167 169 124 242 q 330 79 220 79 "},"Μ":{"x_min":0,"x_max":935,"ha":1047,"o":"m 935 0 l 803 0 l 803 867 l 526 0 l 397 0 l 125 864 l 125 0 l 0 0 l 0 1012 l 195 1012 l 462 158 l 743 1012 l 935 1012 l 935 0 "},"Ό":{"x_min":-0.328125,"x_max":1097,"ha":1192,"o":"m 1097 505 q 974 132 1097 282 q 628 -29 843 -29 q 284 130 413 -29 q 163 505 163 280 q 288 883 163 730 q 636 1046 421 1046 q 978 882 850 1046 q 1097 505 1097 730 m 957 504 q 877 784 957 669 q 631 915 787 915 q 383 785 474 915 q 300 504 300 669 q 383 224 300 339 q 631 95 475 95 q 876 224 786 95 q 957 504 957 339 m 271 1040 l 81 800 l 0 800 l 137 1040 l 271 1040 "},"Ή":{"x_min":-0.4375,"x_max":1135,"ha":1249,"o":"m 1135 0 l 1002 0 l 1002 475 l 485 475 l 485 0 l 348 0 l 348 1012 l 485 1012 l 485 599 l 1002 599 l 1002 1012 l 1135 1012 l 1135 0 m 271 1040 l 81 800 l 0 800 l 137 1040 l 271 1040 "},"•":{"x_min":0,"x_max":651,"ha":760,"o":"m 651 529 q 555 293 651 391 q 325 196 460 196 q 95 294 190 196 q 0 529 0 393 q 94 763 0 665 q 325 861 189 861 q 555 763 460 861 q 651 529 651 665 "},"¥":{"x_min":-0.5,"x_max":802.140625,"ha":867,"o":"m 552 561 l 681 561 l 681 486 l 510 486 l 472 416 l 472 380 l 681 380 l 681 306 l 472 306 l 472 0 l 335 0 l 335 306 l 122 306 l 122 380 l 335 380 l 335 416 l 296 486 l 122 486 l 122 561 l 253 561 l 0 1012 l 137 1012 l 402 533 l 664 1012 l 802 1012 l 552 561 "},"(":{"x_min":0,"x_max":312.1875,"ha":407,"o":"m 312 -290 l 226 -290 q 60 23 120 -142 q 0 365 0 190 q 61 712 0 540 q 226 1024 117 869 l 312 1024 q 172 705 215 853 q 123 360 123 542 q 173 22 123 187 q 312 -290 219 -127 "},"U":{"x_min":0,"x_max":780,"ha":886,"o":"m 780 392 q 667 93 780 212 q 378 -25 555 -25 q 99 95 204 -25 q 0 392 0 211 l 0 1012 l 135 1012 l 135 391 q 200 191 135 270 q 386 107 271 107 q 574 191 502 107 q 643 391 643 270 l 643 1012 l 780 1012 l 780 392 "},"γ":{"x_min":0,"x_max":730.3125,"ha":807,"o":"m 730 737 l 454 53 l 454 -278 l 331 -278 l 331 53 l 151 495 q 102 596 121 569 q 12 651 65 651 l 0 651 l 0 751 l 38 751 q 164 710 118 751 q 237 594 202 675 l 395 208 l 605 737 l 730 737 "},"α":{"x_min":0,"x_max":750,"ha":792,"o":"m 750 -3 q 684 -13 711 -13 q 552 97 574 -13 q 456 7 514 40 q 330 -26 399 -26 q 87 98 182 -26 q 0 369 0 212 q 87 637 0 525 q 330 760 181 760 q 456 728 399 760 q 551 637 513 696 l 551 739 l 671 739 l 671 222 q 679 142 671 168 q 733 95 694 95 q 750 96 744 95 l 750 -3 m 572 371 q 520 562 572 484 q 352 653 460 653 q 187 566 249 653 q 132 379 132 489 q 182 180 132 261 q 351 83 242 83 q 517 176 456 83 q 572 371 572 260 "},"F":{"x_min":0,"x_max":669.203125,"ha":702,"o":"m 669 887 l 137 887 l 137 583 l 601 583 l 601 458 l 137 458 l 137 0 l 0 0 l 0 1012 l 669 1012 l 669 887 "},"­":{"x_min":0,"x_max":691,"ha":786,"o":"m 691 335 l 0 335 l 0 411 l 691 411 l 691 335 "},":":{"x_min":0,"x_max":139,"ha":234,"o":"m 139 585 l 0 585 l 0 738 l 139 738 l 139 585 m 139 0 l 0 0 l 0 151 l 139 151 l 139 0 "},"Χ":{"x_min":0,"x_max":837.078125,"ha":916,"o":"m 837 0 l 669 0 l 415 409 l 163 0 l 0 0 l 340 519 l 17 1012 l 182 1012 l 419 637 l 661 1012 l 819 1012 l 494 520 l 837 0 "},"*":{"x_min":114.140625,"x_max":661.21875,"ha":776,"o":"m 661 767 l 466 713 l 598 544 l 508 477 l 387 652 l 269 480 l 175 544 l 308 713 l 114 766 l 150 875 l 336 812 l 336 1012 l 438 1012 l 438 812 l 623 874 l 661 767 "},"†":{"x_min":0,"x_max":762,"ha":818,"o":"m 449 804 l 762 804 l 762 682 l 449 682 l 449 0 l 313 0 l 313 682 l 0 682 l 0 804 l 313 804 l 313 1014 l 449 1014 l 449 804 "},"°":{"x_min":0,"x_max":340,"ha":435,"o":"m 170 803 q 42 857 89 803 q 0 978 0 905 q 44 1101 0 1050 q 169 1153 88 1153 q 297 1098 250 1153 q 340 977 340 1050 q 297 857 340 905 q 170 803 251 803 m 170 885 q 233 911 210 885 q 257 973 257 937 q 235 1038 257 1012 q 170 1064 213 1064 q 106 1037 129 1064 q 83 973 83 1011 q 106 911 83 937 q 170 885 129 885 "},"V":{"x_min":0,"x_max":845.25,"ha":921,"o":"m 845 1012 l 495 0 l 353 0 l 0 1012 l 140 1012 l 426 165 l 703 1012 l 845 1012 "},"Ξ":{"x_min":0,"x_max":720,"ha":747,"o":"m 709 888 l 9 888 l 9 1012 l 709 1012 l 709 888 m 660 462 l 60 462 l 60 588 l 660 588 l 660 462 m 720 -1 l 0 -1 l 0 123 l 720 123 l 720 -1 "}," ":{"x_min":0,"x_max":0,"ha":836},"Ϋ":{"x_min":-0.3125,"x_max":802.3125,"ha":870,"o":"m 575 1045 l 450 1045 l 450 1188 l 575 1188 l 575 1045 m 352 1045 l 227 1045 l 227 1188 l 352 1188 l 352 1045 m 802 1012 l 472 416 l 472 0 l 335 0 l 335 416 l 0 1012 l 137 1012 l 402 532 l 664 1012 l 802 1012 "},"0":{"x_min":72,"x_max":701,"ha":776,"o":"m 386 -29 q 150 129 238 -29 q 72 479 72 272 q 149 829 72 687 q 386 989 236 989 q 622 829 534 989 q 701 479 701 684 q 623 129 701 270 q 386 -29 536 -29 m 386 89 q 536 211 480 89 q 587 479 587 322 q 537 748 587 640 q 386 871 481 871 q 236 748 292 871 q 186 479 186 637 q 235 211 186 319 q 386 89 291 89 "},"”":{"x_min":0,"x_max":340,"ha":445,"o":"m 136 851 q 99 737 136 784 q 0 670 63 691 l 0 734 q 58 787 42 741 q 71 872 71 820 l 0 872 l 0 1012 l 136 1012 l 136 851 m 340 851 q 303 737 340 784 q 204 670 267 691 l 204 734 q 262 787 246 741 q 275 872 275 820 l 204 872 l 204 1012 l 340 1012 l 340 851 "},"@":{"x_min":0,"x_max":1234,"ha":1329,"o":"m 1076 -45 q 859 -160 981 -118 q 620 -203 737 -203 q 152 -29 321 -203 q 0 360 0 127 q 172 802 0 616 q 673 1008 364 1008 q 1100 853 949 1008 q 1234 516 1234 717 q 1132 214 1234 339 q 850 80 1023 80 q 756 104 785 80 q 723 201 723 134 q 634 112 686 143 q 517 81 582 81 q 360 146 412 81 q 308 311 308 211 q 393 564 308 452 q 626 690 489 690 q 793 588 744 690 l 832 667 l 919 667 q 860 440 882 531 q 817 224 817 266 q 836 180 817 196 q 885 165 856 165 q 1065 270 992 165 q 1135 510 1135 370 q 1030 793 1135 680 q 673 925 906 925 q 243 747 406 925 q 95 361 95 586 q 221 26 95 159 q 615 -122 363 -122 q 839 -88 722 -122 q 1039 6 957 -54 l 1076 -45 m 770 488 q 724 580 762 545 q 630 615 686 615 q 474 517 538 615 q 417 321 417 430 q 448 202 417 249 q 542 155 480 155 q 708 273 652 155 q 770 488 724 309 "},"Ί":{"x_min":0.46875,"x_max":489,"ha":601,"o":"m 272 1040 l 82 800 l 0 800 l 137 1040 l 272 1040 m 489 0 l 353 0 l 353 1012 l 489 1012 l 489 0 "},"i":{"x_min":14,"x_max":134,"ha":270,"o":"m 134 872 l 14 872 l 14 1012 l 134 1012 l 134 872 m 134 0 l 14 0 l 14 737 l 134 737 l 134 0 "},"Β":{"x_min":0,"x_max":762,"ha":859,"o":"m 569 545 q 709 468 657 534 q 762 310 762 402 q 659 82 762 170 q 423 -1 563 -1 l 0 -1 l 0 1012 l 402 1012 q 616 956 530 1012 q 717 767 717 891 q 676 632 717 692 q 569 545 636 571 m 385 898 l 136 898 l 136 587 l 371 587 q 510 623 453 587 q 580 743 580 666 q 520 858 580 818 q 385 898 461 898 m 411 123 q 555 168 494 123 q 622 302 622 218 q 548 435 622 388 q 394 476 484 476 l 136 476 l 136 123 l 411 123 "},"υ":{"x_min":0,"x_max":605,"ha":711,"o":"m 605 352 q 530 93 605 199 q 302 -24 446 -24 q 74 93 158 -24 q 0 352 0 199 l 0 738 l 124 738 l 124 354 q 166 185 124 257 q 306 98 216 98 q 442 185 394 98 q 482 354 482 257 l 482 738 l 605 738 l 605 352 "},"]":{"x_min":-0.359375,"x_max":269,"ha":364,"o":"m 269 -281 l 0 -281 l 0 -187 l 148 -187 l 148 919 l 0 919 l 0 1012 l 269 1012 l 269 -281 "},"m":{"x_min":0,"x_max":999,"ha":1105,"o":"m 999 0 l 879 0 l 879 453 q 843 591 879 535 q 725 659 800 659 q 601 585 646 659 q 562 435 562 521 l 562 0 l 438 0 l 438 453 q 404 589 438 534 q 288 655 364 655 q 162 584 209 655 q 120 435 120 520 l 120 0 l 0 0 l 0 738 l 114 738 l 114 639 q 198 728 147 696 q 310 761 249 761 q 429 728 374 761 q 515 639 484 695 q 608 729 548 697 q 738 762 669 762 q 924 693 850 762 q 999 512 999 624 l 999 0 "},"χ":{"x_min":8,"x_max":765,"ha":799,"o":"m 765 -279 q 701 -295 732 -295 q 604 -258 650 -295 q 537 -176 564 -227 l 371 133 l 140 -278 l 9 -278 l 307 253 l 160 521 q 125 585 129 580 q 35 640 89 640 q 8 637 27 640 l 8 752 l 51 757 q 159 719 111 757 q 231 627 195 690 l 375 372 l 582 737 l 711 737 l 439 249 l 612 -69 q 657 -154 634 -111 q 728 -189 681 -189 q 765 -184 744 -189 l 765 -279 "},"8":{"x_min":54,"x_max":721,"ha":775,"o":"m 560 528 q 680 425 639 492 q 721 281 721 358 q 635 71 721 158 q 387 -26 539 -26 q 139 69 233 -26 q 54 279 54 157 q 94 426 54 360 q 215 528 135 492 q 118 615 150 563 q 87 726 87 668 q 168 904 87 827 q 387 986 256 986 q 606 905 519 986 q 688 728 688 830 q 656 617 688 668 q 560 528 625 565 m 387 566 q 509 611 466 566 q 552 718 552 656 q 511 823 552 782 q 384 872 464 872 q 260 824 307 872 q 220 721 220 783 q 260 614 220 657 q 387 566 307 566 m 387 91 q 534 150 478 91 q 585 281 585 204 q 535 409 585 356 q 387 466 482 466 q 239 409 293 466 q 190 281 190 357 q 239 150 190 203 q 387 91 293 91 "},"ί":{"x_min":41,"x_max":320.53125,"ha":355,"o":"m 278 3 q 228 -10 253 -5 q 178 -15 203 -15 q 83 26 117 -15 q 41 200 41 79 l 41 738 l 164 738 l 164 215 q 168 142 164 157 q 222 102 179 102 q 243 103 234 102 q 278 113 252 104 l 278 3 m 320 1040 l 135 820 l 53 820 l 185 1040 l 320 1040 "},"Ζ":{"x_min":0,"x_max":764,"ha":833,"o":"m 764 -1 l 0 -1 l 0 113 l 608 895 l 40 895 l 40 1012 l 764 1012 l 764 886 l 167 123 l 764 123 l 764 -1 "},"R":{"x_min":0,"x_max":766.203125,"ha":889,"o":"m 766 -1 l 611 -1 q 576 242 576 52 q 401 433 576 433 l 136 433 l 136 0 l 0 0 l 0 1012 l 388 1012 q 623 945 528 1012 q 734 731 734 867 q 697 596 734 659 q 596 502 660 534 q 704 370 682 474 q 715 207 715 352 q 766 25 715 61 l 766 -1 m 366 551 q 522 594 456 551 q 602 731 602 645 q 521 858 602 814 q 366 895 456 895 l 134 895 l 134 551 l 366 551 "},"o":{"x_min":0,"x_max":698,"ha":804,"o":"m 349 -25 q 92 91 190 -25 q 0 368 0 202 q 91 642 0 533 q 349 761 189 761 q 605 644 507 761 q 698 368 698 533 q 606 91 698 201 q 349 -25 510 -25 m 349 84 q 517 174 455 84 q 571 369 571 255 q 518 562 571 484 q 349 651 457 651 q 185 561 244 651 q 132 369 132 481 q 183 177 132 256 q 349 84 244 84 "},"5":{"x_min":52.71875,"x_max":722,"ha":775,"o":"m 722 313 q 613 59 722 152 q 373 -24 515 -24 q 152 46 243 -24 q 52 255 52 124 l 179 255 q 253 131 199 173 q 373 90 307 90 q 522 148 461 90 q 589 313 589 212 q 527 468 589 410 q 378 527 465 527 q 278 505 324 527 q 192 438 232 484 l 79 438 l 156 958 l 671 958 l 671 840 l 248 840 l 209 578 q 299 626 252 611 q 398 642 346 642 q 622 551 528 642 q 722 313 722 456 "},"7":{"x_min":59,"x_max":718,"ha":777,"o":"m 718 839 q 461 448 550 641 q 329 0 372 255 l 189 0 q 323 441 231 252 q 583 830 414 630 l 59 830 l 59 958 l 718 958 l 718 839 "},"K":{"x_min":0,"x_max":802.953125,"ha":887,"o":"m 802 0 l 636 0 l 288 509 l 136 356 l 136 0 l 0 0 l 0 1012 l 136 1012 l 136 526 l 613 1012 l 793 1012 l 387 599 l 802 0 "},",":{"x_min":0,"x_max":139,"ha":234,"o":"m 139 -12 q 102 -133 139 -83 q 0 -206 66 -183 l 0 -138 q 55 -83 39 -124 q 68 0 68 -51 l 0 0 l 0 151 l 139 151 l 139 -12 "},"d":{"x_min":0,"x_max":669,"ha":779,"o":"m 669 0 l 552 0 l 552 93 q 446 6 506 38 q 321 -25 387 -25 q 85 99 178 -25 q 0 365 0 215 q 88 639 0 525 q 336 762 183 762 q 552 647 476 762 l 552 1012 l 669 1012 l 669 0 m 570 373 q 518 562 570 484 q 353 653 458 653 q 186 561 247 653 q 132 365 132 479 q 185 175 132 254 q 351 84 246 84 q 518 177 458 84 q 570 373 570 258 "},"¨":{"x_min":-107,"x_max":241,"ha":227,"o":"m 241 1046 l 116 1046 l 116 1189 l 241 1189 l 241 1046 m 18 1046 l -107 1046 l -107 1189 l 18 1189 l 18 1046 "},"E":{"x_min":0,"x_max":721.28125,"ha":773,"o":"m 721 -1 l 0 -1 l 0 1012 l 710 1012 l 710 888 l 136 888 l 136 584 l 664 584 l 664 466 l 136 466 l 136 124 l 721 124 l 721 -1 "},"Y":{"x_min":0.171875,"x_max":802.75,"ha":868,"o":"m 802 1012 l 472 416 l 472 0 l 335 0 l 335 416 l 0 1012 l 137 1012 l 402 533 l 665 1012 l 802 1012 "},"\"":{"x_min":0,"x_max":293,"ha":388,"o":"m 293 605 l 199 605 l 199 987 l 293 987 l 293 605 m 94 605 l 0 605 l 0 987 l 94 987 l 94 605 "},"‹":{"x_min":18,"x_max":758,"ha":776,"o":"m 758 41 l 18 376 l 18 465 l 758 798 l 758 691 l 156 420 l 758 149 l 758 41 "},"„":{"x_min":0,"x_max":357,"ha":458,"o":"m 139 -12 q 102 -133 139 -83 q 0 -206 66 -183 l 0 -138 q 55 -83 39 -124 q 68 0 68 -51 l 0 0 l 0 151 l 139 151 l 139 -12 m 357 -12 q 320 -133 357 -83 q 218 -206 284 -183 l 218 -138 q 273 -83 257 -124 q 286 0 286 -51 l 218 0 l 218 151 l 357 151 l 357 -12 "},"δ":{"x_min":1,"x_max":695,"ha":793,"o":"m 695 360 q 603 87 695 197 q 349 -28 507 -28 q 96 82 192 -28 q 1 356 1 192 q 98 606 1 509 q 347 703 195 703 q 176 829 282 754 q 69 903 122 866 l 69 1012 l 630 1012 l 630 901 l 252 901 q 452 763 413 794 q 622 592 565 677 q 695 360 695 486 m 571 364 q 540 501 571 446 q 441 602 509 555 q 364 611 402 611 q 192 541 252 611 q 133 355 133 471 q 186 170 133 245 q 350 84 247 84 q 516 173 455 84 q 571 364 571 252 "},"έ":{"x_min":0,"x_max":622.53125,"ha":700,"o":"m 622 235 q 517 38 622 111 q 294 -25 425 -25 q 96 29 179 -25 q 0 204 0 93 q 36 313 0 265 q 127 390 66 352 q 56 459 82 419 q 26 555 26 505 q 113 712 26 654 q 290 763 188 763 q 490 700 408 763 q 579 515 579 632 l 469 515 q 411 618 455 580 q 302 657 367 657 q 204 630 249 657 q 149 547 149 598 q 234 446 149 469 q 382 435 274 435 l 382 332 l 342 332 q 203 315 250 332 q 123 210 123 287 q 180 108 123 145 q 297 76 229 76 q 427 117 371 76 q 499 235 483 159 l 622 235 m 510 1040 l 325 819 l 243 819 l 375 1040 l 510 1040 "},"ω":{"x_min":0,"x_max":904,"ha":1010,"o":"m 904 339 q 839 97 904 203 q 637 -26 765 -26 q 527 9 575 -26 q 451 103 479 44 q 379 12 427 46 q 272 -21 332 -21 q 68 97 144 -21 q 0 339 0 203 q 44 552 0 445 q 157 737 82 643 l 296 737 q 171 553 214 647 q 121 336 121 446 q 152 179 121 249 q 269 88 193 88 q 367 163 334 88 q 392 295 392 220 l 392 573 l 513 573 l 513 295 q 549 135 513 192 q 630 88 579 88 q 746 182 704 88 q 781 342 781 257 q 730 556 781 450 q 606 737 691 638 l 745 737 q 857 551 819 640 q 904 339 904 444 "},"´":{"x_min":0,"x_max":94,"ha":246,"o":"m 94 605 l 0 605 l 0 987 l 94 987 l 94 605 "},"±":{"x_min":11,"x_max":765,"ha":776,"o":"m 765 490 l 437 490 l 437 256 l 342 256 l 342 490 l 11 490 l 11 586 l 341 586 l 341 820 l 436 820 l 436 586 l 765 586 l 765 490 m 765 21 l 11 21 l 11 115 l 765 115 l 765 21 "},"|":{"x_min":336,"x_max":439,"ha":775,"o":"m 439 462 l 336 462 l 336 986 l 439 986 l 439 462 m 439 -242 l 336 -242 l 336 280 l 439 280 l 439 -242 "},"ϋ":{"x_min":0,"x_max":605,"ha":711,"o":"m 473 799 l 365 799 l 365 924 l 473 924 l 473 799 m 234 799 l 126 799 l 126 924 l 234 924 l 234 799 m 605 352 q 530 93 605 199 q 302 -24 446 -24 q 74 93 158 -24 q 0 352 0 199 l 0 738 l 124 738 l 124 354 q 166 185 124 257 q 306 98 216 98 q 442 185 394 98 q 482 354 482 257 l 482 738 l 605 738 l 605 352 "},"§":{"x_min":0,"x_max":581,"ha":676,"o":"m 581 425 q 543 311 581 369 q 457 233 505 254 q 527 83 527 172 q 450 -74 527 -12 q 283 -133 379 -133 q 113 -69 180 -133 q 46 96 46 -6 l 163 96 q 195 7 163 40 q 282 -26 228 -26 q 363 -5 325 -26 q 411 60 411 21 q 304 201 411 139 q 106 309 205 255 q 0 490 0 383 q 32 602 0 551 q 121 687 65 654 q 74 743 91 712 q 57 812 57 773 q 130 984 57 920 q 293 1043 197 1043 q 448 987 386 1043 q 518 814 518 925 l 402 814 q 362 908 396 877 q 282 939 329 939 q 207 911 240 939 q 175 841 175 883 q 280 720 175 779 q 474 612 470 615 q 581 425 581 534 m 457 409 q 348 544 457 473 q 191 630 222 612 q 142 587 158 609 q 121 525 121 558 q 233 387 121 462 q 390 298 361 315 q 438 345 420 316 q 457 409 457 375 "},"b":{"x_min":0,"x_max":671,"ha":768,"o":"m 671 372 q 585 99 671 213 q 340 -25 491 -25 q 214 5 272 -25 q 118 92 157 35 l 118 0 l 0 0 l 0 1012 l 118 1012 l 118 634 q 210 723 153 692 q 334 754 266 754 q 579 637 483 754 q 671 372 671 526 m 543 356 q 489 551 543 470 q 322 644 428 644 q 159 556 219 644 q 106 369 106 478 q 157 176 106 256 q 323 83 217 83 q 488 169 427 83 q 543 356 543 245 "},"q":{"x_min":0,"x_max":669,"ha":858,"o":"m 669 -278 l 552 -278 l 552 96 q 464 7 522 38 q 338 -24 406 -24 q 89 92 185 -24 q 0 363 0 202 q 85 634 0 521 q 330 759 180 759 q 456 727 399 759 q 552 637 512 695 l 552 737 l 669 737 l 669 -278 m 570 374 q 516 563 570 487 q 351 651 457 651 q 186 564 247 651 q 132 376 132 487 q 185 178 132 260 q 353 83 246 83 q 519 178 459 83 q 570 374 570 259 "},"Ω":{"x_min":0,"x_max":950,"ha":1047,"o":"m 950 1 l 544 1 l 544 125 q 729 310 661 195 q 798 559 798 424 q 712 813 798 710 q 475 923 620 923 q 239 821 328 923 q 151 569 151 720 q 219 317 151 434 q 404 125 287 201 l 404 1 l 0 1 l 0 125 l 213 125 q 67 328 119 211 q 15 573 15 445 q 142 912 15 782 q 475 1042 269 1042 q 806 910 678 1042 q 934 570 934 778 q 881 327 934 444 q 735 125 829 211 l 950 125 l 950 1 "},"ύ":{"x_min":0,"x_max":605,"ha":711,"o":"m 605 352 q 530 93 605 199 q 302 -24 446 -24 q 74 93 158 -24 q 0 352 0 199 l 0 738 l 124 738 l 124 354 q 166 185 124 257 q 306 98 216 98 q 442 185 394 98 q 482 354 482 257 l 482 738 l 605 738 l 605 352 m 524 1039 l 339 819 l 257 819 l 389 1039 l 524 1039 "},"z":{"x_min":0,"x_max":602,"ha":684,"o":"m 602 0 l 0 0 l 0 99 l 424 629 l 20 629 l 20 737 l 582 737 l 582 635 l 160 109 l 602 109 l 602 0 "},"™":{"x_min":0,"x_max":875,"ha":980,"o":"m 381 951 l 225 951 l 225 502 l 157 502 l 157 948 l 0 948 l 0 1011 l 381 1011 l 381 951 m 875 503 l 810 503 l 810 938 l 671 503 l 607 503 l 471 937 l 471 503 l 408 503 l 408 1011 l 506 1011 l 639 582 l 780 1011 l 875 1011 l 875 503 "},"ή":{"x_min":0,"x_max":684,"ha":794,"o":"m 684 -278 l 561 -278 l 561 453 q 529 587 561 535 q 416 650 491 650 q 266 579 331 650 q 202 420 202 509 l 202 0 l 79 0 l 79 489 q 70 588 79 562 q 0 644 54 644 l 0 741 q 66 755 36 755 q 155 721 121 755 q 196 630 189 687 q 291 726 230 692 q 426 761 353 761 q 609 692 534 761 q 684 516 684 624 l 684 -278 m 469 1040 l 284 819 l 203 819 l 335 1040 l 469 1040 "},"Θ":{"x_min":0,"x_max":940,"ha":1034,"o":"m 940 506 q 816 129 940 280 q 466 -32 684 -32 q 121 129 250 -32 q 0 506 0 280 q 121 882 0 731 q 466 1044 250 1044 q 814 882 681 1044 q 940 506 940 731 m 800 499 q 718 788 800 669 q 466 923 625 923 q 219 791 310 923 q 139 506 139 674 q 217 222 139 338 q 466 89 309 89 q 715 218 623 89 q 800 499 800 334 m 702 449 l 238 449 l 238 571 l 702 571 l 702 449 "},"®":{"x_min":-3,"x_max":988,"ha":1083,"o":"m 493 532 q 602 562 554 532 q 658 658 658 598 q 602 747 658 716 q 493 772 557 772 l 332 772 l 332 532 l 493 532 m 492 -7 q 120 151 258 -7 q -3 501 -3 294 q 120 851 -3 706 q 492 1011 258 1011 q 864 851 725 1011 q 988 501 988 708 q 865 151 988 292 q 492 -7 729 -7 m 492 60 q 813 197 695 60 q 921 501 921 322 q 814 805 921 681 q 492 944 695 944 q 171 805 291 944 q 64 501 64 680 q 170 197 64 320 q 492 60 288 60 m 773 145 l 664 145 q 641 316 641 183 q 517 449 641 449 l 332 449 l 332 145 l 237 145 l 237 854 l 508 854 q 674 808 609 854 q 751 658 751 755 q 725 563 751 606 q 654 497 699 519 q 736 331 736 472 q 773 163 736 190 l 773 145 "},"~":{"x_min":0,"x_max":817,"ha":912,"o":"m 817 958 q 763 753 817 831 q 582 665 702 665 q 394 761 492 665 q 235 857 296 857 q 129 795 163 857 q 102 665 102 745 l 0 665 q 53 867 0 789 q 232 958 114 958 q 421 861 325 958 q 582 765 517 765 q 690 827 657 765 q 715 958 715 874 l 817 958 "},"Ε":{"x_min":0,"x_max":721.28125,"ha":762,"o":"m 721 -1 l 0 -1 l 0 1012 l 710 1012 l 710 888 l 136 888 l 136 584 l 664 584 l 664 466 l 136 466 l 136 124 l 721 124 l 721 -1 "},"³":{"x_min":0,"x_max":441,"ha":536,"o":"m 441 552 q 371 414 441 465 q 216 367 307 367 q 68 415 127 367 q 0 567 0 471 l 83 567 q 123 471 83 504 q 220 438 164 438 q 314 468 275 438 q 353 553 353 499 q 312 632 353 608 q 209 657 271 657 q 192 657 200 657 q 173 654 178 654 l 173 722 q 274 733 245 722 q 328 815 328 752 q 295 881 328 856 q 216 907 262 907 q 130 875 165 907 q 95 781 95 844 l 15 781 q 77 926 15 875 q 216 972 133 972 q 358 930 298 972 q 418 817 418 888 q 337 697 418 733 q 413 643 385 681 q 441 552 441 604 "},"[":{"x_min":0,"x_max":268,"ha":363,"o":"m 268 -281 l 0 -281 l 0 1012 l 268 1012 l 268 919 l 121 919 l 121 -187 l 268 -187 l 268 -281 "},"L":{"x_min":0,"x_max":632.453125,"ha":681,"o":"m 632 0 l 0 0 l 0 1012 l 137 1012 l 137 126 l 632 126 l 632 0 "},"σ":{"x_min":0,"x_max":788,"ha":876,"o":"m 788 628 l 622 628 q 699 368 699 512 q 607 93 699 204 q 351 -25 509 -25 q 92 91 190 -25 q 0 368 0 201 q 92 644 0 533 q 349 761 190 761 q 472 750 390 761 q 597 739 553 739 l 788 739 l 788 628 m 353 84 q 519 180 458 84 q 573 374 573 262 q 517 566 573 490 q 345 651 454 651 q 183 559 242 651 q 132 368 132 479 q 185 175 132 254 q 353 84 246 84 "},"ζ":{"x_min":0,"x_max":561,"ha":629,"o":"m 561 -40 q 541 -162 561 -97 q 499 -278 532 -193 l 392 -278 q 431 -187 419 -219 q 452 -90 452 -132 q 370 -14 452 -14 q 106 45 193 -14 q 0 289 0 117 q 106 631 0 462 q 345 901 190 767 l 55 901 l 55 1012 l 550 1012 l 550 924 q 255 669 374 831 q 125 301 125 489 q 238 117 125 149 q 447 98 343 108 q 561 -40 561 80 "},"θ":{"x_min":0,"x_max":660,"ha":762,"o":"m 660 496 q 589 160 660 304 q 329 -26 498 -26 q 72 153 161 -26 q 0 484 0 296 q 70 840 0 683 q 336 1044 163 1044 q 593 844 506 1044 q 660 496 660 691 m 535 579 q 488 798 535 691 q 329 935 428 935 q 175 798 232 935 q 124 579 134 701 l 535 579 m 535 475 l 124 475 q 167 233 124 348 q 332 80 226 80 q 494 233 438 80 q 535 475 535 346 "},"Ο":{"x_min":0,"x_max":939,"ha":1033,"o":"m 476 1042 q 817 883 689 1042 q 939 511 939 735 q 817 136 939 287 q 472 -26 687 -26 q 123 130 255 -26 q 0 504 0 279 q 125 880 0 729 q 476 1042 258 1042 m 471 98 q 717 225 626 98 q 799 504 799 340 q 718 783 799 670 q 471 913 627 913 q 222 785 314 913 q 139 504 139 671 q 222 224 139 339 q 471 98 313 98 "},"Γ":{"x_min":0,"x_max":690.984375,"ha":733,"o":"m 690 886 l 137 886 l 137 0 l 0 0 l 0 1012 l 690 1012 l 690 886 "}," ":{"x_min":0,"x_max":0,"ha":368},"%":{"x_min":-3,"x_max":1067,"ha":1162,"o":"m 828 0 q 650 76 717 0 q 591 244 591 145 q 649 412 591 344 q 829 489 714 489 q 1007 412 940 489 q 1067 244 1067 343 q 1008 76 1067 144 q 828 0 943 0 m 827 103 q 926 143 891 103 q 961 243 961 184 q 928 340 961 301 q 827 385 891 385 q 730 342 766 385 q 694 243 694 300 q 726 147 694 186 q 827 103 764 103 m 871 986 l 278 -26 l 195 -26 l 788 986 l 871 986 m 236 468 q 56 545 123 468 q -3 714 -3 615 q 55 881 -3 813 q 233 958 122 958 q 413 881 346 958 q 473 712 473 813 q 414 544 473 612 q 236 468 349 468 m 236 855 q 134 811 171 855 q 98 710 98 768 q 133 612 98 653 q 235 572 168 572 q 337 614 300 572 q 374 713 374 656 q 340 810 374 771 q 236 855 301 855 "},"P":{"x_min":0,"x_max":712,"ha":790,"o":"m 416 1012 q 628 930 544 1012 q 712 719 712 849 q 624 506 712 587 q 405 426 537 426 l 137 426 l 137 0 l 0 0 l 0 1012 l 416 1012 m 371 888 l 137 888 l 137 548 l 364 548 q 511 589 450 548 q 581 720 581 636 q 517 844 581 800 q 371 888 454 888 "},"Έ":{"x_min":0.171875,"x_max":1056.28125,"ha":1096,"o":"m 1056 -1 l 335 -1 l 335 1012 l 1045 1012 l 1045 888 l 471 888 l 471 584 l 999 584 l 999 466 l 471 466 l 471 124 l 1056 124 l 1056 -1 m 272 1039 l 81 799 l 0 799 l 137 1039 l 272 1039 "},"Ώ":{"x_min":-0.328125,"x_max":1113,"ha":1210,"o":"m 1113 1 l 707 1 l 707 125 q 892 310 824 195 q 961 559 961 424 q 875 813 961 710 q 638 923 783 923 q 402 821 491 923 q 314 569 314 720 q 382 317 314 434 q 567 125 450 201 l 567 1 l 163 1 l 163 125 l 376 125 q 230 328 282 211 q 178 573 178 445 q 305 912 178 782 q 638 1042 432 1042 q 969 910 841 1042 q 1097 570 1097 778 q 1044 327 1097 444 q 898 125 992 211 l 1113 125 l 1113 1 m 271 1041 l 81 801 l 0 801 l 137 1041 l 271 1041 "},"_":{"x_min":0,"x_max":691,"ha":786,"o":"m 691 -333 l 0 -333 l 0 -233 l 691 -233 l 691 -333 "},"Ϊ":{"x_min":-107,"x_max":241,"ha":270,"o":"m 241 1046 l 116 1046 l 116 1189 l 241 1189 l 241 1046 m 18 1046 l -107 1046 l -107 1189 l 18 1189 l 18 1046 m 134 0 l 1 0 l 1 1012 l 134 1012 l 134 0 "},"+":{"x_min":23,"x_max":753,"ha":776,"o":"m 753 372 l 435 372 l 435 0 l 340 0 l 340 372 l 23 372 l 23 468 l 339 468 l 339 840 l 434 840 l 434 468 l 753 468 l 753 372 "},"½":{"x_min":0.171875,"x_max":1031,"ha":1126,"o":"m 1031 0 l 613 0 q 698 179 613 108 q 860 277 708 187 q 947 385 947 329 q 913 457 947 430 q 833 484 879 484 q 744 450 782 484 q 707 353 707 416 l 628 353 q 693 502 628 448 q 834 551 751 551 q 967 509 913 551 q 1029 386 1029 462 q 956 251 1029 301 q 812 179 884 215 q 702 68 725 133 l 1031 68 l 1031 0 m 818 984 l 210 -27 l 128 -27 l 735 984 l 818 984 m 219 422 l 139 422 l 139 811 l 0 811 l 0 867 q 102 889 61 867 q 160 973 153 916 l 219 973 l 219 422 "},"Ρ":{"x_min":0,"x_max":706,"ha":767,"o":"m 416 1012 q 625 932 544 1012 q 706 723 706 852 q 621 508 706 591 q 405 426 536 426 l 137 426 l 137 0 l 0 0 l 0 1012 l 416 1012 m 371 888 l 137 888 l 137 548 l 364 548 q 511 589 450 548 q 581 720 581 636 q 517 844 581 800 q 371 888 454 888 "},"'":{"x_min":0,"x_max":136,"ha":231,"o":"m 136 851 q 99 737 136 784 q 0 670 63 691 l 0 734 q 58 787 42 741 q 71 872 71 820 l 0 872 l 0 1012 l 136 1012 l 136 851 "},"ª":{"x_min":0,"x_max":343,"ha":389,"o":"m 343 624 q 302 616 322 616 q 263 630 277 616 q 245 672 249 645 q 189 627 223 643 q 115 612 155 612 q 32 640 64 612 q 0 721 0 668 q 71 825 0 799 q 239 865 155 844 l 242 886 q 216 933 242 915 q 159 952 190 952 q 103 933 126 952 q 75 881 79 914 l 16 881 q 59 975 16 940 q 163 1010 102 1010 q 261 978 220 1010 q 302 890 302 947 l 302 706 q 305 679 302 688 q 325 670 308 670 l 343 670 l 343 624 m 241 756 l 241 810 q 133 789 171 797 q 63 725 63 772 q 82 681 63 696 q 129 666 101 666 q 202 689 170 666 q 241 756 241 717 "},"΅":{"x_min":0,"x_max":441,"ha":542,"o":"m 441 800 l 333 800 l 333 925 l 441 925 l 441 800 m 398 1040 l 208 800 l 126 800 l 263 1040 l 398 1040 m 108 800 l 0 800 l 0 925 l 108 925 l 108 800 "},"T":{"x_min":0,"x_max":762,"ha":818,"o":"m 762 893 l 449 893 l 449 0 l 313 0 l 313 891 l 0 891 l 0 1012 l 762 1012 l 762 893 "},"Φ":{"x_min":0,"x_max":897,"ha":977,"o":"m 516 0 l 381 0 l 381 122 q 108 230 216 122 q 0 509 0 339 q 108 784 0 677 q 381 892 216 892 l 381 1012 l 516 1012 l 516 893 q 788 786 679 893 q 897 509 897 679 q 789 231 897 341 q 516 122 682 122 l 516 0 m 516 226 q 698 310 629 226 q 764 507 764 389 q 698 705 764 627 q 516 787 629 787 l 516 226 m 381 226 l 381 787 q 201 698 269 775 q 133 505 133 620 q 201 308 133 391 q 381 226 270 226 "},"⁋":{"x_min":0,"x_max":0,"ha":681},"j":{"x_min":-76.046875,"x_max":164,"ha":342,"o":"m 164 870 l 41 870 l 41 1012 l 164 1012 l 164 870 m 164 -80 q 119 -231 164 -184 q -25 -278 75 -278 l -76 -278 l -76 -163 l -40 -163 q 26 -142 11 -163 q 41 -64 41 -121 l 41 736 l 164 736 l 164 -80 "},"Σ":{"x_min":0,"x_max":742,"ha":803,"o":"m 742 -1 l 0 -1 l 0 105 l 388 522 l 22 903 l 22 1012 l 731 1012 l 731 888 l 205 888 l 555 522 l 183 124 l 742 124 l 742 -1 "},"1":{"x_min":212.140625,"x_max":563,"ha":775,"o":"m 563 0 l 434 0 l 434 697 l 212 697 l 212 796 q 379 833 325 796 q 466 986 439 875 l 563 986 l 563 0 "},"›":{"x_min":18,"x_max":758,"ha":776,"o":"m 758 376 l 18 41 l 18 149 l 617 420 l 18 691 l 18 798 l 758 465 l 758 376 "},"<":{"x_min":18,"x_max":758,"ha":776,"o":"m 758 41 l 18 376 l 18 465 l 758 798 l 758 691 l 156 420 l 758 149 l 758 41 "},"£":{"x_min":0,"x_max":689.859375,"ha":785,"o":"m 689 41 q 611 -10 650 5 q 532 -26 571 -26 q 352 15 491 -26 q 237 36 282 36 q 154 23 192 36 q 71 -20 116 11 l 5 76 q 122 196 88 150 q 171 332 171 263 q 143 444 171 384 l 0 444 l 0 513 l 105 513 q 42 735 42 623 q 118 929 42 854 q 350 1010 199 1010 q 567 936 477 1010 q 664 729 664 857 l 664 685 l 540 685 q 493 838 540 780 q 355 896 447 896 q 212 852 258 896 q 173 747 173 815 q 196 628 173 697 q 243 513 213 575 l 459 513 l 459 444 l 273 444 q 291 357 291 399 q 225 194 291 279 q 149 107 206 171 q 222 133 186 125 q 287 142 258 142 q 402 119 331 142 q 506 96 472 96 q 567 105 538 96 q 635 139 595 114 l 689 41 "},"t":{"x_min":0,"x_max":359.015625,"ha":449,"o":"m 359 0 q 305 -5 331 -2 q 257 -8 278 -8 q 142 28 179 -8 q 106 143 106 64 l 106 638 l 0 638 l 0 738 l 106 738 l 106 944 l 227 944 l 227 738 l 359 738 l 359 638 l 227 638 l 227 185 q 242 121 227 140 q 300 101 258 101 q 337 104 323 101 q 359 107 352 107 l 359 0 "},"¬":{"x_min":0.421875,"x_max":692,"ha":787,"o":"m 692 411 l 692 158 l 617 158 l 617 335 l 0 335 l 0 411 l 692 411 "},"λ":{"x_min":-0.46875,"x_max":735,"ha":787,"o":"m 735 -6 q 665 -15 702 -15 q 527 59 579 -15 q 457 213 502 97 l 329 551 l 123 0 l 0 0 l 265 705 q 218 837 241 770 q 113 900 186 900 q 88 898 97 900 l 88 1004 q 149 1011 122 1011 q 292 938 239 1011 q 365 783 319 901 l 593 192 q 636 115 616 135 q 702 96 656 96 l 721 96 q 735 97 730 97 l 735 -6 "},"W":{"x_min":0,"x_max":1238.609375,"ha":1324,"o":"m 1238 1012 l 975 0 l 842 0 l 615 835 l 397 0 l 259 0 l 0 1012 l 133 1012 l 336 202 l 545 1012 l 687 1012 l 903 208 l 1110 1012 l 1238 1012 "},">":{"x_min":18,"x_max":758,"ha":776,"o":"m 758 376 l 18 41 l 18 149 l 617 420 l 18 691 l 18 798 l 758 465 l 758 376 "},"v":{"x_min":0,"x_max":661.5,"ha":746,"o":"m 661 737 l 396 0 l 266 0 l 0 737 l 130 737 l 333 147 l 530 737 l 661 737 "},"τ":{"x_min":0,"x_max":632,"ha":689,"o":"m 632 628 l 374 628 l 374 179 q 380 120 374 137 q 427 92 393 92 q 464 94 438 92 q 494 97 491 97 l 494 0 q 444 -9 472 -5 q 393 -14 417 -14 q 271 67 301 -14 q 254 233 254 117 l 254 628 l 0 628 l 0 739 l 632 739 l 632 628 "},"ξ":{"x_min":0,"x_max":613,"ha":685,"o":"m 613 -37 q 597 -153 613 -96 q 552 -278 581 -211 l 445 -278 q 481 -183 476 -200 q 501 -83 501 -126 q 475 -24 501 -45 q 363 0 443 0 q 317 0 347 0 q 277 0 287 0 q 83 77 166 0 q 0 267 0 155 q 55 432 0 358 q 193 538 106 498 q 92 613 132 562 q 53 730 53 665 q 76 824 53 780 q 140 901 99 867 l 27 901 l 27 1012 l 565 1012 l 565 901 l 372 901 q 239 863 296 901 q 174 745 174 820 q 306 600 174 636 q 521 582 372 582 l 521 479 q 270 455 353 479 q 116 281 116 410 q 162 173 116 217 q 269 120 204 133 q 484 101 377 111 q 613 -37 613 76 "},"&":{"x_min":-3,"x_max":876.25,"ha":972,"o":"m 876 0 l 710 0 l 612 123 q 462 0 543 40 q 300 -42 382 -42 q 165 -7 227 -42 q 61 91 103 26 q 14 186 31 138 q -3 276 -3 234 q 54 433 -3 358 q 243 581 112 508 q 166 688 192 640 q 134 816 134 751 q 210 984 134 922 q 376 1040 278 1040 q 537 987 473 1040 q 610 823 610 927 q 552 666 610 738 q 423 556 506 608 l 610 326 q 637 406 627 361 q 650 493 641 426 l 766 493 q 690 229 766 352 l 876 0 m 494 818 q 459 907 494 876 q 376 939 424 939 q 287 907 324 939 q 250 818 250 875 q 284 713 250 766 q 356 627 307 677 q 468 729 438 681 q 494 818 494 770 m 545 209 l 308 499 q 175 395 218 449 q 132 283 132 341 q 143 222 132 252 q 179 158 155 191 q 326 79 236 79 q 545 209 439 79 "},"Λ":{"x_min":0,"x_max":845.25,"ha":923,"o":"m 845 0 l 705 0 l 417 846 l 140 0 l 0 0 l 349 1012 l 491 1012 l 845 0 "},"I":{"x_min":41,"x_max":177,"ha":287,"o":"m 177 0 l 41 0 l 41 1012 l 177 1012 l 177 0 "},"G":{"x_min":0,"x_max":903,"ha":991,"o":"m 903 0 l 815 0 l 785 135 q 641 14 726 57 q 461 -28 556 -28 q 123 133 254 -28 q 0 499 0 284 q 122 881 0 731 q 476 1043 254 1043 q 749 956 634 1043 q 887 708 872 863 l 756 708 q 654 866 732 806 q 476 926 577 926 q 223 795 315 926 q 139 507 139 677 q 223 224 139 342 q 473 94 317 94 q 698 195 612 94 q 780 434 780 291 l 468 434 l 468 548 l 903 548 l 903 0 "},"ΰ":{"x_min":0,"x_max":605,"ha":711,"o":"m 513 799 l 405 799 l 405 924 l 513 924 l 513 799 m 180 799 l 72 799 l 72 924 l 180 924 l 180 799 m 605 352 q 530 93 605 199 q 302 -24 446 -24 q 74 93 158 -24 q 0 352 0 199 l 0 738 l 124 738 l 124 354 q 166 185 124 257 q 306 98 216 98 q 442 185 394 98 q 482 354 482 257 l 482 738 l 605 738 l 605 352 m 479 1039 l 293 819 l 212 819 l 344 1039 l 479 1039 "},"`":{"x_min":0,"x_max":136.046875,"ha":231,"o":"m 136 699 l 0 699 l 0 861 q 35 975 0 929 q 136 1041 70 1020 l 136 977 q 80 931 93 969 q 68 839 68 893 l 136 839 l 136 699 "},"·":{"x_min":0,"x_max":139,"ha":234,"o":"m 139 585 l 0 585 l 0 738 l 139 738 l 139 585 "},"Υ":{"x_min":0.171875,"x_max":802.75,"ha":871,"o":"m 802 1012 l 472 416 l 472 0 l 335 0 l 335 416 l 0 1012 l 137 1012 l 402 533 l 665 1012 l 802 1012 "},"r":{"x_min":0,"x_max":348.65625,"ha":424,"o":"m 348 621 l 336 621 q 175 569 231 621 q 120 411 120 518 l 120 0 l 0 0 l 0 737 l 114 737 l 114 604 q 200 719 143 685 q 348 753 257 753 l 348 621 "},"x":{"x_min":0,"x_max":661.5,"ha":749,"o":"m 661 0 l 515 0 l 325 285 l 141 0 l 0 0 l 251 378 l 12 737 l 155 737 l 330 473 l 506 737 l 647 737 l 404 380 l 661 0 "},"μ":{"x_min":0,"x_max":683.21875,"ha":732,"o":"m 683 -4 q 616 -14 645 -14 q 488 97 503 -14 q 414 8 461 41 q 307 -24 367 -24 q 203 3 253 -24 q 117 80 153 31 l 117 -278 l 0 -278 l 0 737 l 121 737 l 121 343 q 161 172 121 245 q 302 82 212 82 q 443 177 394 82 q 483 358 483 254 l 483 737 l 604 737 l 604 214 q 610 136 604 159 q 660 92 624 92 q 683 96 670 92 l 683 -4 "},"h":{"x_min":0,"x_max":603,"ha":709,"o":"m 603 472 l 603 0 l 480 0 l 480 454 q 447 590 480 535 q 331 654 407 654 q 183 588 246 654 q 120 436 120 522 l 120 0 l 0 0 l 0 1012 l 120 1012 l 120 633 q 214 727 147 694 q 355 760 281 760 q 541 676 475 760 q 603 472 603 600 "},".":{"x_min":0,"x_max":139,"ha":234,"o":"m 139 0 l 0 0 l 0 151 l 139 151 l 139 0 "},"φ":{"x_min":-1,"x_max":860,"ha":954,"o":"m 486 -279 l 370 -279 l 370 -17 q 99 88 200 -17 q -1 367 -1 193 q 68 625 -1 510 q 278 757 148 757 l 278 646 q 165 536 205 625 q 131 372 131 461 q 189 177 131 253 q 370 92 254 92 l 370 757 q 436 763 417 763 q 466 763 454 763 q 749 657 639 763 q 860 376 860 552 q 756 95 860 208 q 486 -17 652 -17 l 486 -279 m 486 92 l 503 92 q 673 182 611 92 q 731 379 731 264 q 677 567 731 490 q 511 656 616 656 l 486 656 l 486 92 "},";":{"x_min":0,"x_max":139,"ha":234,"o":"m 139 585 l 0 585 l 0 738 l 139 738 l 139 585 m 139 -12 q 102 -133 139 -83 q 0 -206 66 -183 l 0 -138 q 57 -83 42 -123 q 67 0 67 -56 l 0 0 l 0 151 l 139 151 l 139 -12 "},"f":{"x_min":0,"x_max":370,"ha":463,"o":"m 370 637 l 241 637 l 241 0 l 118 0 l 118 637 l 0 637 l 0 737 l 118 737 q 134 934 118 887 q 284 1026 167 1026 q 313 1026 299 1026 q 370 1020 327 1026 l 370 908 q 317 918 338 918 q 251 870 268 918 q 241 780 241 840 l 241 737 l 370 737 l 370 637 "},"“":{"x_min":1,"x_max":341,"ha":444,"o":"m 137 669 l 1 669 l 1 829 q 37 943 1 896 q 137 1010 73 989 l 137 946 q 80 899 94 939 q 66 809 66 860 l 137 809 l 137 669 m 341 669 l 205 669 l 205 829 q 241 943 205 896 q 341 1010 277 989 l 341 946 q 284 899 298 939 q 270 809 270 860 l 341 809 l 341 669 "},"A":{"x_min":0,"x_max":888.8125,"ha":988,"o":"m 888 0 l 741 0 l 637 302 l 246 302 l 140 0 l 0 0 l 368 1012 l 518 1012 l 888 0 m 597 420 l 443 866 l 287 420 l 597 420 "},"6":{"x_min":52,"x_max":724,"ha":776,"o":"m 724 311 q 620 62 724 162 q 392 -31 524 -31 q 159 78 251 -31 q 52 439 52 206 q 174 858 52 711 q 433 985 279 985 q 630 911 548 985 q 718 713 718 832 l 589 713 q 533 829 582 785 q 417 874 484 874 q 262 792 325 874 q 189 516 189 696 q 295 596 235 569 q 419 623 355 623 q 630 539 541 623 q 724 311 724 450 m 591 298 q 529 460 591 399 q 396 515 475 515 q 262 460 317 515 q 202 299 202 401 q 263 137 202 198 q 397 83 318 83 q 531 137 476 83 q 591 298 591 196 "},"‘":{"x_min":1,"x_max":137,"ha":231,"o":"m 137 669 l 1 669 l 1 829 q 37 943 1 896 q 137 1010 73 989 l 137 946 q 80 899 94 939 q 66 809 66 860 l 137 809 l 137 669 "},"ϊ":{"x_min":-68,"x_max":278.34375,"ha":355,"o":"m 278 800 l 170 800 l 170 925 l 278 925 l 278 800 m 40 800 l -68 800 l -68 925 l 40 925 l 40 800 m 278 3 q 228 -10 253 -5 q 178 -15 203 -15 q 83 26 117 -15 q 41 200 41 79 l 41 738 l 164 738 l 164 215 q 168 142 164 157 q 221 102 179 102 q 243 103 234 102 q 278 113 252 104 l 278 3 "},"π":{"x_min":0,"x_max":758.28125,"ha":840,"o":"m 758 -10 l 694 -10 q 565 40 596 -10 q 542 174 542 77 l 542 226 l 542 626 l 218 626 l 218 0 l 95 0 l 95 626 l 0 626 l 0 737 l 758 737 l 758 626 l 663 626 l 663 171 q 682 103 663 117 q 758 90 701 90 l 758 -10 "},"ά":{"x_min":0,"x_max":750,"ha":792,"o":"m 750 -3 q 684 -13 711 -13 q 552 97 574 -13 q 456 7 514 40 q 330 -26 399 -26 q 87 98 182 -26 q 0 369 0 212 q 87 637 0 525 q 330 760 181 760 q 456 728 399 760 q 551 637 513 696 l 551 739 l 671 739 l 671 222 q 679 142 671 168 q 733 95 694 95 q 750 96 744 95 l 750 -3 m 572 371 q 520 562 572 484 q 352 653 460 653 q 187 566 249 653 q 132 379 132 489 q 182 180 132 261 q 351 83 242 83 q 517 176 456 83 q 572 371 572 260 m 592 1040 l 407 820 l 325 820 l 457 1040 l 592 1040 "},"O":{"x_min":0,"x_max":939,"ha":1036,"o":"m 476 1042 q 817 883 688 1042 q 939 512 939 735 q 817 136 939 287 q 472 -26 688 -26 q 123 130 255 -26 q 0 504 0 279 q 125 880 0 729 q 476 1042 258 1042 m 471 98 q 717 225 626 98 q 799 504 799 340 q 718 783 799 670 q 471 913 627 913 q 222 785 314 913 q 139 504 139 671 q 222 224 139 339 q 471 98 313 98 "},"n":{"x_min":0,"x_max":603,"ha":709,"o":"m 603 463 l 603 0 l 480 0 l 480 454 q 444 592 480 537 q 324 656 402 656 q 174 585 235 656 q 114 421 114 514 l 114 0 l 0 0 l 0 739 l 114 739 l 114 630 q 213 728 146 693 q 352 764 280 764 q 541 675 474 764 q 603 463 603 593 "},"3":{"x_min":53,"x_max":723,"ha":776,"o":"m 723 284 q 623 55 723 141 q 392 -25 530 -25 q 153 52 243 -25 q 53 308 53 140 l 181 308 q 240 147 181 202 q 388 96 296 96 q 529 140 475 96 q 591 280 591 190 q 500 428 591 390 q 317 454 442 454 l 317 565 q 477 584 432 565 q 554 719 554 617 q 505 835 554 791 q 388 879 457 879 q 250 824 301 879 q 199 661 199 769 l 76 661 q 163 909 76 821 q 379 991 244 991 q 591 920 503 991 q 687 723 687 843 q 655 607 687 656 q 566 524 624 558 q 682 434 642 499 q 723 284 723 369 "},"9":{"x_min":52,"x_max":724,"ha":776,"o":"m 724 524 q 607 94 724 241 q 355 -32 506 -32 q 147 47 237 -32 q 58 243 58 126 l 187 243 q 241 129 187 176 q 366 82 295 82 q 515 161 457 82 q 585 439 585 255 q 356 333 491 333 q 128 431 212 333 q 52 649 52 520 q 132 880 52 785 q 375 986 222 986 q 646 841 555 986 q 724 524 724 719 m 378 448 q 523 513 469 448 q 572 658 572 573 q 523 805 572 744 q 378 874 469 874 q 234 809 285 874 q 184 658 184 745 q 231 513 184 571 q 378 448 284 448 "},"l":{"x_min":41,"x_max":164,"ha":274,"o":"m 164 0 l 41 0 l 41 1012 l 164 1012 l 164 0 "},"¤":{"x_min":39.46875,"x_max":714.15625,"ha":808,"o":"m 714 304 l 636 225 l 501 362 q 375 332 448 332 q 251 362 304 332 l 117 225 l 39 304 l 174 441 q 147 552 147 492 q 180 673 147 620 l 39 818 l 117 897 l 262 748 q 314 767 285 760 q 376 774 344 774 q 438 767 409 774 q 490 748 467 760 l 636 897 l 714 818 l 573 675 q 599 618 591 648 q 608 552 608 587 q 579 441 608 491 l 714 304 m 376 682 q 274 643 311 682 q 238 551 238 604 q 274 460 238 498 q 375 422 310 422 q 477 460 440 422 q 514 552 514 499 q 480 641 514 605 q 376 682 441 682 "},"κ":{"x_min":0,"x_max":619.171875,"ha":665,"o":"m 619 0 l 472 0 l 220 384 l 121 288 l 121 0 l 0 0 l 0 737 l 121 737 l 121 445 l 424 737 l 583 737 l 306 466 l 619 0 "},"4":{"x_min":48,"x_max":729,"ha":777,"o":"m 729 243 l 591 243 l 591 0 l 467 0 l 467 243 l 48 243 l 48 367 l 465 958 l 591 958 l 591 354 l 729 354 l 729 243 m 467 354 l 467 794 l 160 354 l 467 354 "},"p":{"x_min":0,"x_max":671,"ha":770,"o":"m 671 363 q 586 95 671 205 q 342 -24 494 -24 q 118 88 201 -24 l 118 -278 l 0 -278 l 0 739 l 118 739 l 118 633 q 215 726 156 691 q 344 761 274 761 q 586 635 494 761 q 671 363 671 522 m 546 370 q 491 560 546 481 q 323 651 428 651 q 159 559 219 651 q 106 366 106 478 q 159 176 106 253 q 326 85 220 85 q 492 177 432 85 q 546 370 546 258 "},"‡":{"x_min":0,"x_max":762,"ha":818,"o":"m 449 238 l 449 0 l 313 0 l 313 236 l 0 236 l 0 360 l 313 360 l 313 682 l 0 682 l 0 804 l 313 804 l 313 1014 l 449 1014 l 449 804 l 762 804 l 762 682 l 449 682 l 449 360 l 762 360 l 762 238 l 449 238 "},"ψ":{"x_min":0,"x_max":792,"ha":889,"o":"m 456 -278 l 335 -278 l 335 -15 q 85 101 177 -15 q 0 377 0 209 l 0 739 l 131 739 l 131 379 q 179 194 131 274 q 335 97 238 97 l 335 922 l 456 922 l 456 97 q 610 194 552 97 q 661 381 661 277 l 661 741 l 792 741 l 792 380 q 706 103 792 212 q 456 -12 614 -12 l 456 -278 "},"η":{"x_min":0,"x_max":684,"ha":794,"o":"m 684 -278 l 561 -278 l 561 453 q 529 587 561 535 q 416 650 491 650 q 266 579 331 650 q 202 420 202 509 l 202 0 l 79 0 l 79 489 q 70 588 79 562 q 0 644 54 644 l 0 741 q 66 755 36 755 q 155 721 121 755 q 196 630 189 687 q 291 726 230 692 q 426 761 353 761 q 609 692 534 761 q 684 516 684 624 l 684 -278 "}},"cssFontWeight":"normal","ascender":1189,"underlinePosition":-100,"cssFontStyle":"normal","boundingBox":{"yMin":-333,"xMin":-109,"yMax":1189,"xMax":1638},"resolution":1000,"original_font_information":{"postscript_name":"Helvetiker-Regular","version_string":"Version 1.00 2004 initial release","vendor_url":"http://www.magenta.gr/","full_font_name":"Helvetiker","font_family_name":"Helvetiker","copyright":"Copyright (c) Μagenta ltd, 2004","description":"","trademark":"","designer":"","designer_url":"","unique_font_identifier":"Μagenta ltd:Helvetiker:22-10-104","license_url":"http://www.ellak.gr/fonts/MgOpen/license.html","license_description":"Copyright (c) 2004 by MAGENTA Ltd. All Rights Reserved.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license (\"Fonts\") and associated documentation files (the \"Font Software\"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: \r\n\r\nThe above copyright and this permission notice shall be included in all copies of one or more of the Font Software typefaces.\r\n\r\nThe Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing the word \"MgOpen\", or if the modifications are accepted for inclusion in the Font Software itself by the each appointed Administrator.\r\n\r\nThis License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the \"MgOpen\" name.\r\n\r\nThe Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. \r\n\r\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL MAGENTA OR PERSONS OR BODIES IN CHARGE OF ADMINISTRATION AND MAINTENANCE OF THE FONT SOFTWARE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.","manufacturer_name":"Μagenta ltd","font_sub_family_name":"Regular"},"descender":-334,"familyName":"Helvetiker","lineHeight":1522,"underlineThickness":50});

if (_typeface_js && _typeface_js.loadFace) _typeface_js.loadFace({"glyphs":{"ο":{"x_min":0,"x_max":764,"ha":863,"o":"m 380 -25 q 105 87 211 -25 q 0 372 0 200 q 104 660 0 545 q 380 775 209 775 q 658 659 552 775 q 764 372 764 544 q 658 87 764 200 q 380 -25 552 -25 m 379 141 q 515 216 466 141 q 557 373 557 280 q 515 530 557 465 q 379 607 466 607 q 245 530 294 607 q 204 373 204 465 q 245 218 204 283 q 379 141 294 141 "},"S":{"x_min":-0.0625,"x_max":826,"ha":915,"o":"m 826 307 q 701 55 826 148 q 423 -29 587 -29 q 138 60 255 -29 q 0 318 13 154 l 208 318 q 288 192 216 237 q 437 152 352 152 q 559 181 506 152 q 623 282 623 217 q 466 411 623 372 q 176 487 197 477 q 18 719 18 556 q 135 958 18 869 q 399 1041 244 1041 q 670 957 560 1041 q 791 714 791 865 l 591 714 q 525 827 582 787 q 392 867 469 867 q 277 839 326 867 q 218 743 218 805 q 374 618 218 655 q 667 543 646 552 q 826 307 826 472 "},"¦":{"x_min":0,"x_max":143,"ha":240,"o":"m 143 462 l 0 462 l 0 984 l 143 984 l 143 462 m 143 -242 l 0 -242 l 0 280 l 143 280 l 143 -242 "},"/":{"x_min":195.828125,"x_max":631.9375,"ha":828,"o":"m 631 1040 l 288 -129 l 195 -129 l 537 1040 l 631 1040 "},"Τ":{"x_min":0,"x_max":808,"ha":877,"o":"m 808 831 l 508 831 l 508 0 l 298 0 l 298 831 l 0 831 l 0 1013 l 808 1013 l 808 831 "},"y":{"x_min":0.171875,"x_max":739.453125,"ha":828,"o":"m 739 749 l 445 -106 q 361 -237 414 -198 q 214 -276 308 -276 q 157 -276 176 -276 q 121 -270 132 -270 l 121 -109 q 148 -112 134 -110 q 179 -115 161 -115 q 248 -90 226 -115 q 270 -16 270 -66 q 207 173 270 -3 q 84 515 162 301 q 0 748 41 632 l 218 748 l 376 207 l 529 749 l 739 749 "},"Π":{"x_min":0,"x_max":810,"ha":923,"o":"m 810 0 l 599 0 l 599 837 l 208 837 l 208 0 l 0 0 l 0 1013 l 810 1013 l 810 0 "},"ΐ":{"x_min":-162,"x_max":364,"ha":364,"o":"m 364 810 l 235 810 l 235 952 l 364 952 l 364 810 m 301 1064 l 87 810 l -11 810 l 124 1064 l 301 1064 m -33 810 l -162 810 l -162 952 l -33 952 l -33 810 m 201 0 l 1 0 l 1 749 l 201 749 l 201 0 "},"g":{"x_min":0,"x_max":723,"ha":838,"o":"m 723 48 q 636 -223 723 -142 q 356 -304 550 -304 q 140 -253 226 -304 q 23 -71 36 -192 l 242 -71 q 289 -127 255 -110 q 367 -144 323 -144 q 504 -82 469 -144 q 529 71 529 -38 l 529 104 q 440 26 495 51 q 319 0 386 0 q 79 115 166 0 q 0 377 0 219 q 77 647 0 534 q 316 775 166 775 q 533 657 455 775 l 533 749 l 723 749 l 723 48 m 367 167 q 491 237 447 167 q 529 382 529 297 q 490 529 529 466 q 363 603 444 603 q 239 532 284 603 q 201 386 201 471 q 239 239 201 300 q 367 167 285 167 "},"²":{"x_min":0,"x_max":463,"ha":560,"o":"m 463 791 q 365 627 463 706 q 151 483 258 555 l 456 483 l 456 382 l 0 382 q 84 565 0 488 q 244 672 97 576 q 331 784 331 728 q 299 850 331 824 q 228 876 268 876 q 159 848 187 876 q 132 763 132 820 l 10 763 q 78 924 10 866 q 228 976 137 976 q 392 925 322 976 q 463 791 463 874 "},"–":{"x_min":0,"x_max":704,"ha":801,"o":"m 704 297 l 0 297 l 0 450 l 704 450 l 704 297 "},"Κ":{"x_min":0,"x_max":899.671875,"ha":969,"o":"m 899 0 l 646 0 l 316 462 l 208 355 l 208 0 l 0 0 l 0 1013 l 208 1013 l 208 596 l 603 1013 l 863 1013 l 460 603 l 899 0 "},"ƒ":{"x_min":-45.71875,"x_max":440,"ha":525,"o":"m 440 608 l 316 608 l 150 -278 l -45 -278 l 121 608 l 14 608 l 14 748 l 121 748 q 159 948 121 893 q 344 1016 208 1016 l 440 1016 l 440 855 l 377 855 q 326 841 338 855 q 314 796 314 827 q 314 773 314 785 q 315 748 314 760 l 440 748 l 440 608 "},"e":{"x_min":0,"x_max":708,"ha":808,"o":"m 708 321 l 207 321 q 254 186 207 236 q 360 140 297 140 q 498 227 451 140 l 699 227 q 566 36 662 104 q 362 -26 477 -26 q 112 72 213 -26 q 0 370 0 182 q 95 684 0 574 q 358 794 191 794 q 619 677 531 794 q 708 321 708 561 m 501 453 q 460 572 501 532 q 354 613 420 613 q 248 571 288 613 q 208 453 208 529 l 501 453 "},"ό":{"x_min":0,"x_max":764,"ha":863,"o":"m 380 -25 q 105 87 211 -25 q 0 372 0 200 q 104 660 0 545 q 380 775 209 775 q 658 659 552 775 q 764 372 764 544 q 658 87 764 200 q 380 -25 552 -25 m 379 141 q 515 216 466 141 q 557 373 557 280 q 515 530 557 465 q 379 607 466 607 q 245 530 294 607 q 204 373 204 465 q 245 218 204 283 q 379 141 294 141 m 593 1038 l 391 824 l 293 824 l 415 1038 l 593 1038 "},"J":{"x_min":0,"x_max":648,"ha":759,"o":"m 648 294 q 572 48 648 125 q 327 -29 496 -29 q 61 82 135 -29 q 0 375 0 173 l 199 375 l 199 310 q 219 195 199 231 q 320 145 248 145 q 417 193 390 145 q 440 307 440 232 l 440 1013 l 648 1013 l 648 294 "},"»":{"x_min":0,"x_max":526,"ha":623,"o":"m 526 286 l 297 87 l 297 250 l 437 373 l 297 495 l 297 659 l 526 461 l 526 286 m 229 286 l 0 87 l 0 250 l 140 373 l 0 495 l 0 659 l 229 461 l 229 286 "},"©":{"x_min":3,"x_max":1007,"ha":1104,"o":"m 507 -6 q 129 153 269 -6 q 3 506 3 298 q 127 856 3 713 q 502 1016 266 1016 q 880 854 740 1016 q 1007 502 1007 710 q 882 152 1007 295 q 507 -6 743 -6 m 502 933 q 184 799 302 933 q 79 505 79 680 q 184 210 79 331 q 501 76 302 76 q 819 210 701 76 q 925 506 925 331 q 820 799 925 681 q 502 933 704 933 m 758 409 q 677 255 748 313 q 506 197 605 197 q 298 291 374 197 q 229 499 229 377 q 297 713 229 624 q 494 811 372 811 q 665 760 593 811 q 751 614 738 709 l 620 614 q 587 688 620 657 q 509 719 554 719 q 404 658 441 719 q 368 511 368 598 q 403 362 368 427 q 498 298 438 298 q 625 409 606 298 l 758 409 "},"ώ":{"x_min":0,"x_max":945,"ha":1051,"o":"m 565 528 l 372 528 l 372 323 q 372 298 372 311 q 373 271 372 285 q 360 183 373 211 q 293 142 342 142 q 219 222 243 142 q 203 365 203 279 q 241 565 203 461 q 334 748 273 650 l 130 748 q 36 553 68 650 q 0 337 0 444 q 69 96 0 204 q 276 -29 149 -29 q 390 0 337 -29 q 470 78 444 28 q 551 0 495 30 q 668 -29 608 -29 q 874 96 793 -29 q 945 337 945 205 q 910 547 945 444 q 814 748 876 650 l 609 748 q 702 565 670 650 q 742 365 742 462 q 718 189 742 237 q 651 142 694 142 q 577 190 597 142 q 565 289 565 221 l 565 323 l 565 528 m 718 1039 l 516 824 l 417 824 l 540 1039 l 718 1039 "},"^":{"x_min":197.21875,"x_max":630.5625,"ha":828,"o":"m 630 836 l 536 836 l 413 987 l 294 836 l 197 836 l 331 1090 l 493 1090 l 630 836 "},"«":{"x_min":0,"x_max":526,"ha":623,"o":"m 526 87 l 297 286 l 297 461 l 526 659 l 526 495 l 385 373 l 526 250 l 526 87 m 229 87 l 0 286 l 0 461 l 229 659 l 229 495 l 88 373 l 229 250 l 229 87 "},"D":{"x_min":0,"x_max":864,"ha":968,"o":"m 400 1013 q 736 874 608 1013 q 864 524 864 735 q 717 147 864 293 q 340 1 570 1 l 0 1 l 0 1013 l 400 1013 m 398 837 l 206 837 l 206 183 l 372 183 q 584 277 507 183 q 657 505 657 366 q 594 727 657 632 q 398 837 522 837 "},"∙":{"x_min":0,"x_max":207,"ha":304,"o":"m 207 528 l 0 528 l 0 735 l 207 735 l 207 528 "},"ÿ":{"x_min":0.21875,"x_max":47,"ha":125,"o":"m 47 2 q 37 -7 47 -7 q 28 0 30 -7 q 39 -4 31 -4 q 45 2 45 -1 l 37 0 q 28 9 28 0 q 37 19 28 19 l 45 15 l 47 19 l 47 2 m 37 1 q 45 9 45 1 q 37 17 45 17 q 30 9 30 17 q 37 1 30 1 m 26 0 l 23 21 l 14 0 l 3 21 l 3 0 l 0 24 l 14 3 l 22 24 l 26 0 "},"w":{"x_min":0,"x_max":1056.953125,"ha":1150,"o":"m 1056 749 l 848 0 l 647 0 l 527 536 l 412 0 l 211 0 l 0 749 l 202 749 l 325 227 l 429 749 l 633 749 l 740 227 l 863 749 l 1056 749 "},"$":{"x_min":-0.328125,"x_max":704,"ha":800,"o":"m 683 691 l 493 691 q 470 779 493 746 q 391 828 442 821 l 391 577 q 633 460 562 532 q 704 257 704 388 q 616 56 704 135 q 391 -22 529 -22 l 391 -156 l 308 -156 l 308 -22 q 76 69 152 -7 q 0 300 0 146 l 183 300 q 215 191 190 230 q 308 127 245 142 l 308 413 q 85 504 158 431 q 12 699 12 577 q 89 901 12 823 q 308 980 166 980 l 308 1069 l 391 1069 l 391 980 q 596 903 522 980 q 683 691 670 827 m 308 598 l 308 830 q 228 795 256 830 q 200 711 200 761 q 225 641 200 667 q 308 598 251 616 m 391 127 q 476 173 449 139 q 504 258 504 206 q 391 387 504 353 l 391 127 "},"\\":{"x_min":0,"x_max":434.71875,"ha":532,"o":"m 434 -129 l 341 -129 l 0 1040 l 91 1040 l 434 -129 "},"µ":{"x_min":0,"x_max":647,"ha":754,"o":"m 647 0 l 477 0 l 477 67 q 411 9 448 30 q 330 -12 374 -12 q 261 3 295 -12 q 199 42 226 18 l 199 -278 l 0 -278 l 0 748 l 199 748 l 199 357 q 216 221 199 267 q 322 151 244 151 q 435 239 410 151 q 448 400 448 282 l 448 749 l 647 749 l 647 0 "},"Ι":{"x_min":42,"x_max":250,"ha":413,"o":"m 250 0 l 42 0 l 42 1013 l 250 1013 l 250 0 "},"Ύ":{"x_min":-0.21875,"x_max":1211.15625,"ha":1289,"o":"m 1211 1013 l 907 377 l 907 1 l 697 1 l 697 377 l 374 1013 l 583 1013 l 802 576 l 1001 1013 l 1211 1013 m 313 1035 l 98 781 l 0 781 l 135 1035 l 313 1035 "},"’":{"x_min":0,"x_max":191,"ha":288,"o":"m 191 835 q 137 693 191 751 q 0 626 83 635 l 0 697 q 101 831 101 724 l 0 831 l 0 1013 l 191 1013 l 191 835 "},"Ν":{"x_min":0,"x_max":833.171875,"ha":946,"o":"m 833 0 l 617 0 l 206 696 l 206 0 l 0 0 l 0 1013 l 217 1013 l 629 315 l 629 1013 l 833 1013 l 833 0 "},"-":{"x_min":28,"x_max":414,"ha":525,"o":"m 414 279 l 28 279 l 28 468 l 414 468 l 414 279 "},"Q":{"x_min":0,"x_max":994,"ha":1095,"o":"m 994 47 l 881 -70 l 759 41 q 638 -12 706 4 q 495 -29 570 -29 q 135 123 270 -29 q 0 504 0 276 q 131 881 0 731 q 497 1040 270 1040 q 859 883 719 1040 q 994 506 994 731 q 966 321 994 413 q 884 152 938 229 l 994 47 m 730 298 q 767 395 755 344 q 779 504 779 445 q 713 743 779 644 q 505 857 638 857 q 284 745 366 857 q 210 501 210 644 q 279 265 210 361 q 491 157 357 157 q 615 182 556 157 l 508 287 l 620 405 l 730 298 "},"ς":{"x_min":0,"x_max":731.953125,"ha":768,"o":"m 731 449 l 547 449 q 486 571 532 533 q 369 610 440 610 q 245 537 293 610 q 204 394 204 473 q 322 186 204 239 q 540 133 430 160 q 660 -14 660 98 q 644 -141 660 -80 q 596 -277 628 -202 l 423 -277 q 458 -185 448 -214 q 475 -88 475 -133 q 352 0 475 -27 q 123 80 181 39 q 0 382 0 171 q 98 660 0 548 q 368 776 202 776 q 622 682 513 776 q 731 449 731 589 "},"M":{"x_min":0,"x_max":1020,"ha":1135,"o":"m 1020 0 l 824 0 l 824 818 l 618 0 l 402 0 l 194 818 l 194 0 l 0 0 l 0 1013 l 309 1013 l 509 241 l 708 1013 l 1020 1013 l 1020 0 "},"Ψ":{"x_min":0,"x_max":995,"ha":1085,"o":"m 995 698 q 923 340 995 437 q 590 199 841 227 l 590 0 l 404 0 l 404 199 q 71 340 153 227 q 0 698 0 437 l 0 1013 l 188 1013 l 188 694 q 212 472 188 524 q 404 383 254 383 l 404 1013 l 590 1013 l 590 383 q 781 472 740 383 q 807 694 807 524 l 807 1013 l 995 1013 l 995 698 "},"C":{"x_min":0,"x_max":970.9375,"ha":1043,"o":"m 970 346 q 802 70 933 169 q 490 -29 672 -29 q 130 130 268 -29 q 0 506 0 282 q 134 885 0 737 q 502 1040 275 1040 q 802 939 668 1040 q 965 679 936 838 l 745 679 q 649 809 716 761 q 495 857 582 857 q 283 747 361 857 q 214 508 214 648 q 282 267 214 367 q 493 154 359 154 q 651 204 584 154 q 752 346 718 255 l 970 346 "},"!":{"x_min":0,"x_max":210,"ha":307,"o":"m 210 739 q 187 515 210 686 q 157 282 172 398 l 54 282 q 13 589 27 473 q 0 739 0 704 l 0 1013 l 210 1013 l 210 739 m 207 0 l 2 0 l 2 203 l 207 203 l 207 0 "},"{":{"x_min":0,"x_max":501.171875,"ha":598,"o":"m 501 -285 q 234 -210 305 -285 q 182 -36 182 -155 q 182 46 182 -8 q 182 126 182 102 q 151 244 182 208 q 0 293 110 293 l 0 437 q 153 484 110 437 q 188 602 188 521 q 185 666 188 635 q 176 783 176 771 q 231 945 176 894 q 501 1015 306 1015 l 501 872 q 370 833 407 872 q 340 737 340 801 q 342 677 340 705 q 352 569 352 578 q 325 451 352 495 q 206 365 291 392 q 323 288 292 345 q 347 163 347 245 q 347 78 347 131 q 347 17 347 25 q 373 -95 347 -58 q 501 -141 407 -141 l 501 -285 "},"X":{"x_min":0,"x_max":894.453125,"ha":999,"o":"m 894 0 l 654 0 l 445 351 l 238 0 l 0 0 l 316 516 l 0 1013 l 238 1013 l 445 660 l 652 1013 l 894 1013 l 577 519 l 894 0 "},"#":{"x_min":0,"x_max":1019.453125,"ha":1117,"o":"m 1019 722 l 969 582 l 776 582 l 718 418 l 919 418 l 868 279 l 668 279 l 566 -5 l 413 -5 l 516 279 l 348 279 l 247 -5 l 94 -5 l 195 279 l 0 279 l 50 418 l 245 418 l 304 582 l 98 582 l 150 722 l 354 722 l 455 1005 l 606 1005 l 506 722 l 673 722 l 776 1005 l 927 1005 l 826 722 l 1019 722 m 627 582 l 454 582 l 394 417 l 568 417 l 627 582 "},"ι":{"x_min":42,"x_max":242,"ha":389,"o":"m 242 0 l 42 0 l 42 749 l 242 749 l 242 0 "},"Ά":{"x_min":0,"x_max":995.828125,"ha":1072,"o":"m 313 1035 l 98 781 l 0 781 l 136 1035 l 313 1035 m 995 0 l 776 0 l 708 209 l 315 209 l 247 0 l 29 0 l 390 1013 l 629 1013 l 995 0 m 652 377 l 509 810 l 369 377 l 652 377 "},")":{"x_min":0.109375,"x_max":389,"ha":486,"o":"m 389 357 q 319 14 389 187 q 145 -293 259 -134 l 0 -293 q 139 22 90 -142 q 189 358 189 187 q 139 689 189 525 q 0 1013 90 853 l 145 1013 q 319 703 258 857 q 389 357 389 528 "},"ε":{"x_min":17,"x_max":653,"ha":742,"o":"m 653 259 q 566 49 653 123 q 340 -25 479 -25 q 103 39 189 -25 q 17 196 17 104 q 46 298 17 249 q 135 389 75 348 q 58 456 86 418 q 25 552 25 502 q 120 717 25 653 q 322 776 208 776 q 537 710 456 776 q 625 508 625 639 l 446 508 q 416 585 446 563 q 327 608 386 608 q 253 590 292 608 q 215 544 215 573 q 252 470 215 490 q 336 455 280 455 q 369 455 347 455 q 400 455 391 455 l 400 308 l 329 308 q 247 291 280 308 q 205 223 205 269 q 255 154 205 172 q 345 143 285 143 q 426 174 398 143 q 454 259 454 206 l 653 259 "},"Δ":{"x_min":0,"x_max":981.953125,"ha":1057,"o":"m 981 1 l 0 1 l 386 1013 l 594 1013 l 981 1 m 715 176 l 490 765 l 266 176 l 715 176 "},"}":{"x_min":0,"x_max":500,"ha":597,"o":"m 500 293 q 350 245 391 293 q 317 127 317 208 q 322 41 317 101 q 328 -49 328 -18 q 272 -214 328 -161 q 0 -285 197 -285 l 0 -141 q 124 -97 90 -141 q 150 7 150 -64 q 150 91 150 37 q 150 156 150 145 q 175 280 150 234 q 294 365 207 338 q 176 451 208 389 q 150 576 150 499 q 150 655 150 602 q 150 731 150 708 q 126 831 150 799 q 0 872 90 872 l 0 1015 q 271 944 197 1015 q 326 777 326 891 q 322 706 326 746 q 313 592 313 612 q 347 481 313 517 q 500 437 390 437 l 500 293 "},"‰":{"x_min":0,"x_max":1680,"ha":1774,"o":"m 861 485 q 1048 405 979 485 q 1111 229 1111 333 q 1048 51 1111 124 q 860 -29 979 -29 q 672 50 740 -29 q 610 228 610 122 q 672 404 610 332 q 861 485 741 485 m 861 120 q 939 151 911 120 q 967 227 967 183 q 942 300 967 271 q 861 334 912 334 q 783 302 811 334 q 756 227 756 270 q 783 151 756 182 q 861 120 810 120 m 904 985 l 316 -28 l 205 -28 l 793 985 l 904 985 m 250 985 q 436 905 366 985 q 499 730 499 833 q 436 552 499 626 q 248 472 366 472 q 62 553 131 472 q 0 729 0 625 q 62 904 0 831 q 250 985 131 985 m 249 836 q 169 802 198 836 q 140 726 140 769 q 167 652 140 683 q 247 621 195 621 q 327 654 298 621 q 357 730 357 687 q 329 804 357 773 q 249 836 301 836 m 1430 485 q 1617 405 1548 485 q 1680 229 1680 333 q 1617 51 1680 124 q 1429 -29 1548 -29 q 1241 50 1309 -29 q 1179 228 1179 122 q 1241 404 1179 332 q 1430 485 1310 485 m 1430 120 q 1508 151 1480 120 q 1536 227 1536 183 q 1511 300 1536 271 q 1430 334 1481 334 q 1352 302 1380 334 q 1325 227 1325 270 q 1352 151 1325 182 q 1430 120 1379 120 "},"a":{"x_min":0,"x_max":700,"ha":786,"o":"m 700 0 l 490 0 q 466 93 470 46 q 366 5 428 37 q 234 -26 303 -26 q 65 37 130 -26 q 0 205 0 101 q 119 409 0 355 q 341 452 167 431 q 462 522 462 468 q 422 588 462 565 q 335 611 383 611 q 249 581 284 611 q 215 502 215 552 l 26 502 q 113 706 26 633 q 328 775 194 775 q 538 723 444 775 q 657 554 657 659 l 657 138 q 666 73 657 101 q 700 33 675 46 l 700 0 m 465 297 l 465 366 q 299 322 358 340 q 193 217 193 287 q 223 150 193 174 q 298 127 254 127 q 417 175 370 127 q 465 297 465 224 "},"—":{"x_min":0,"x_max":942,"ha":1039,"o":"m 942 297 l 0 297 l 0 450 l 942 450 l 942 297 "},"=":{"x_min":29,"x_max":798,"ha":827,"o":"m 798 501 l 29 501 l 29 634 l 798 634 l 798 501 m 798 204 l 29 204 l 29 339 l 798 339 l 798 204 "},"N":{"x_min":0,"x_max":833.171875,"ha":948,"o":"m 833 0 l 617 0 l 206 696 l 206 0 l 0 0 l 0 1013 l 217 1013 l 629 315 l 629 1013 l 833 1013 l 833 0 "},"ρ":{"x_min":0,"x_max":722,"ha":810,"o":"m 364 -17 q 271 0 313 -17 q 194 48 230 16 l 194 -277 l 0 -277 l 0 370 q 87 656 0 548 q 358 775 183 775 q 626 655 524 775 q 722 372 722 541 q 621 95 722 208 q 364 -17 520 -17 m 360 607 q 237 529 280 607 q 200 377 200 463 q 234 229 200 292 q 355 147 277 147 q 467 210 419 147 q 515 374 515 273 q 471 537 515 468 q 360 607 428 607 "},"2":{"x_min":64,"x_max":764,"ha":828,"o":"m 764 684 q 675 452 764 541 q 484 324 637 415 q 307 168 357 249 l 754 168 l 754 0 l 64 0 q 193 301 64 174 q 433 480 202 310 q 564 673 564 576 q 519 780 564 737 q 416 824 475 824 q 318 780 358 824 q 262 633 270 730 l 80 633 q 184 903 80 807 q 415 988 276 988 q 654 907 552 988 q 764 684 764 819 "},"¯":{"x_min":0,"x_max":775,"ha":771,"o":"m 775 958 l 0 958 l 0 1111 l 775 1111 l 775 958 "},"Z":{"x_min":0,"x_max":804,"ha":905,"o":"m 804 836 l 251 183 l 793 183 l 793 1 l 0 1 l 0 177 l 551 830 l 11 830 l 11 1013 l 804 1013 l 804 836 "},"u":{"x_min":0,"x_max":668,"ha":782,"o":"m 668 0 l 473 0 l 473 88 q 362 9 424 37 q 233 -19 301 -19 q 61 53 123 -19 q 0 239 0 126 l 0 748 l 199 748 l 199 296 q 225 193 199 233 q 316 146 257 146 q 424 193 380 146 q 469 304 469 240 l 469 749 l 668 749 l 668 0 "},"k":{"x_min":0,"x_max":689.0625,"ha":771,"o":"m 689 0 l 450 0 l 271 316 l 196 237 l 196 0 l 0 0 l 0 1013 l 196 1013 l 196 483 l 433 749 l 675 749 l 414 469 l 689 0 "},"Η":{"x_min":0,"x_max":838,"ha":951,"o":"m 838 0 l 628 0 l 628 450 l 210 450 l 210 0 l 0 0 l 0 1013 l 210 1013 l 210 635 l 628 635 l 628 1013 l 838 1013 l 838 0 "},"Α":{"x_min":0,"x_max":966.671875,"ha":1043,"o":"m 966 1 l 747 1 l 679 209 l 286 209 l 218 1 l 0 1 l 361 1013 l 600 1013 l 966 1 m 623 377 l 480 810 l 340 377 l 623 377 "},"s":{"x_min":0,"x_max":681,"ha":775,"o":"m 681 229 q 568 33 681 105 q 340 -29 471 -29 q 107 39 202 -29 q 0 245 0 114 l 201 245 q 252 155 201 189 q 358 128 295 128 q 436 144 401 128 q 482 205 482 166 q 364 285 482 256 q 142 348 181 329 q 25 533 25 408 q 129 716 25 647 q 340 778 220 778 q 554 710 465 778 q 658 522 643 643 l 463 522 q 419 596 458 570 q 327 622 380 622 q 255 606 290 622 q 221 556 221 590 q 339 473 221 506 q 561 404 527 420 q 681 229 681 344 "},"B":{"x_min":0,"x_max":835,"ha":938,"o":"m 674 547 q 791 450 747 518 q 835 304 835 383 q 717 75 835 158 q 461 0 612 0 l 0 0 l 0 1013 l 477 1013 q 697 951 609 1013 q 797 754 797 880 q 765 630 797 686 q 674 547 734 575 m 438 621 q 538 646 495 621 q 590 730 590 676 q 537 814 590 785 q 436 838 494 838 l 199 838 l 199 621 l 438 621 m 445 182 q 560 211 513 182 q 618 311 618 247 q 565 410 618 375 q 444 446 512 446 l 199 446 l 199 182 l 445 182 "},"…":{"x_min":0,"x_max":818,"ha":962,"o":"m 206 0 l 0 0 l 0 207 l 206 207 l 206 0 m 511 0 l 305 0 l 305 207 l 511 207 l 511 0 m 818 0 l 612 0 l 612 207 l 818 207 l 818 0 "},"?":{"x_min":1,"x_max":687,"ha":784,"o":"m 687 734 q 621 563 687 634 q 500 453 560 508 q 436 292 436 385 l 251 292 l 251 391 q 363 558 251 462 q 476 724 476 654 q 432 827 476 788 q 332 866 389 866 q 238 827 275 866 q 195 700 195 781 l 1 700 q 110 955 1 862 q 352 1040 210 1040 q 582 963 489 1040 q 687 734 687 878 m 446 0 l 243 0 l 243 203 l 446 203 l 446 0 "},"H":{"x_min":0,"x_max":838,"ha":953,"o":"m 838 0 l 628 0 l 628 450 l 210 450 l 210 0 l 0 0 l 0 1013 l 210 1013 l 210 635 l 628 635 l 628 1013 l 838 1013 l 838 0 "},"ν":{"x_min":0,"x_max":740.28125,"ha":828,"o":"m 740 749 l 473 0 l 266 0 l 0 749 l 222 749 l 373 211 l 529 749 l 740 749 "},"c":{"x_min":0,"x_max":751.390625,"ha":828,"o":"m 751 282 q 625 59 725 143 q 384 -25 526 -25 q 107 85 215 -25 q 0 366 0 195 q 98 651 0 536 q 370 773 204 773 q 616 700 518 773 q 751 486 715 626 l 536 486 q 477 570 516 538 q 380 607 434 607 q 248 533 298 607 q 204 379 204 466 q 243 220 204 285 q 377 140 290 140 q 483 180 438 140 q 543 282 527 220 l 751 282 "},"¶":{"x_min":0.171875,"x_max":567,"ha":678,"o":"m 21 892 l 52 892 l 98 761 l 145 892 l 176 892 l 176 738 l 157 738 l 157 866 l 108 738 l 88 738 l 40 871 l 40 738 l 21 738 l 21 892 m 308 854 l 308 731 q 253 691 308 691 q 228 691 241 691 q 209 696 214 695 l 206 712 l 253 706 q 287 733 287 706 l 287 764 q 244 741 279 741 q 193 797 193 741 q 262 860 193 860 q 289 860 275 860 q 308 854 302 855 m 289 842 l 263 842 q 212 795 212 842 q 248 756 212 756 q 289 796 289 756 l 289 842 m 567 988 l 503 988 l 503 0 l 439 0 l 439 988 l 317 988 l 317 0 l 253 0 l 253 602 q 81 653 155 602 q 0 806 0 711 q 101 989 0 918 q 309 1053 194 1053 l 567 1053 l 567 988 "},"β":{"x_min":0,"x_max":703,"ha":789,"o":"m 510 538 q 651 428 600 501 q 703 262 703 356 q 617 53 703 136 q 404 -29 532 -29 q 199 51 279 -29 l 199 -277 l 0 -277 l 0 627 q 77 911 0 812 q 343 1021 163 1021 q 551 957 464 1021 q 649 769 649 886 q 613 638 649 697 q 510 538 577 579 m 344 136 q 452 181 408 136 q 497 291 497 227 q 434 409 497 369 q 299 444 381 444 l 299 600 q 407 634 362 600 q 452 731 452 669 q 417 820 452 784 q 329 857 382 857 q 217 775 246 857 q 199 622 199 725 l 199 393 q 221 226 199 284 q 344 136 254 136 "},"Μ":{"x_min":0,"x_max":1020,"ha":1133,"o":"m 1020 0 l 824 0 l 824 818 l 618 0 l 402 0 l 194 818 l 194 0 l 0 0 l 0 1013 l 309 1013 l 509 241 l 708 1013 l 1020 1013 l 1020 0 "},"Ό":{"x_min":-0.171875,"x_max":1174,"ha":1271,"o":"m 676 -29 q 312 127 451 -29 q 179 505 179 277 q 311 883 179 733 q 676 1040 449 1040 q 1040 883 901 1040 q 1174 505 1174 733 q 1041 127 1174 277 q 676 -29 903 -29 m 676 154 q 890 266 811 154 q 961 506 961 366 q 891 745 961 648 q 676 857 812 857 q 462 747 541 857 q 392 506 392 648 q 461 266 392 365 q 676 154 540 154 m 314 1035 l 98 781 l 0 781 l 135 1035 l 314 1035 "},"Ή":{"x_min":-0.109375,"x_max":1249,"ha":1362,"o":"m 1249 0 l 1039 0 l 1039 450 l 621 450 l 621 0 l 411 0 l 411 1013 l 621 1013 l 621 635 l 1039 635 l 1039 1013 l 1249 1013 l 1249 0 m 313 1035 l 98 781 l 0 781 l 136 1035 l 313 1035 "},"•":{"x_min":-28,"x_max":691,"ha":774,"o":"m 691 508 q 588 252 691 358 q 331 147 485 147 q 77 251 182 147 q -28 508 -28 355 q 75 761 -28 655 q 331 868 178 868 q 584 763 478 868 q 691 508 691 658 "},"¥":{"x_min":-0.171875,"x_max":836.328125,"ha":931,"o":"m 195 626 l 0 1013 l 208 1013 l 427 577 l 626 1013 l 836 1013 l 650 626 l 778 626 l 778 473 l 577 473 l 537 389 l 778 389 l 778 236 l 532 236 l 532 1 l 322 1 l 322 236 l 79 236 l 79 389 l 315 389 l 273 473 l 79 473 l 79 626 l 195 626 "},"(":{"x_min":0,"x_max":388.890625,"ha":486,"o":"m 388 -293 l 243 -293 q 70 14 130 -134 q 0 357 0 189 q 69 703 0 526 q 243 1013 129 856 l 388 1013 q 248 695 297 860 q 200 358 200 530 q 248 24 200 187 q 388 -293 297 -138 "},"U":{"x_min":0,"x_max":813,"ha":927,"o":"m 813 362 q 697 79 813 187 q 405 -29 582 -29 q 114 78 229 -29 q 0 362 0 186 l 0 1013 l 210 1013 l 210 386 q 259 225 210 290 q 408 153 315 153 q 554 225 500 153 q 603 386 603 290 l 603 1013 l 813 1013 l 813 362 "},"γ":{"x_min":0.0625,"x_max":729.234375,"ha":815,"o":"m 729 748 l 457 37 l 457 -278 l 257 -278 l 257 37 q 218 155 243 95 q 170 274 194 214 l 0 748 l 207 748 l 363 284 l 522 748 l 729 748 "},"α":{"x_min":-1,"x_max":722,"ha":835,"o":"m 722 0 l 530 0 l 530 101 q 433 8 491 41 q 304 -25 375 -25 q 72 104 157 -25 q -1 372 -1 216 q 72 643 -1 530 q 308 775 158 775 q 433 744 375 775 q 528 656 491 713 l 528 750 l 722 750 l 722 0 m 361 601 q 233 527 277 601 q 196 375 196 464 q 232 224 196 288 q 358 144 277 144 q 487 217 441 144 q 528 370 528 281 q 489 523 528 457 q 361 601 443 601 "},"F":{"x_min":0,"x_max":707.390625,"ha":778,"o":"m 707 837 l 206 837 l 206 608 l 646 608 l 646 433 l 206 433 l 206 0 l 0 0 l 0 1013 l 707 1013 l 707 837 "},"­":{"x_min":0,"x_max":704,"ha":801,"o":"m 704 297 l 0 297 l 0 450 l 704 450 l 704 297 "},":":{"x_min":0,"x_max":207,"ha":304,"o":"m 207 528 l 0 528 l 0 735 l 207 735 l 207 528 m 207 0 l 0 0 l 0 207 l 207 207 l 207 0 "},"Χ":{"x_min":0,"x_max":894.453125,"ha":978,"o":"m 894 0 l 654 0 l 445 351 l 238 0 l 0 0 l 316 516 l 0 1013 l 238 1013 l 445 660 l 652 1013 l 894 1013 l 577 519 l 894 0 "},"*":{"x_min":115.21875,"x_max":712.5625,"ha":828,"o":"m 712 740 l 518 689 l 651 525 l 530 439 l 412 613 l 291 440 l 173 524 l 308 689 l 115 742 l 159 881 l 343 817 l 343 1013 l 482 1013 l 482 817 l 663 881 l 712 740 "},"†":{"x_min":0,"x_max":808,"ha":894,"o":"m 508 804 l 808 804 l 808 622 l 508 622 l 508 0 l 298 0 l 298 622 l 0 622 l 0 804 l 298 804 l 298 1011 l 508 1011 l 508 804 "},"°":{"x_min":-1,"x_max":363,"ha":460,"o":"m 181 808 q 46 862 94 808 q -1 992 -1 917 q 44 1118 -1 1066 q 181 1175 96 1175 q 317 1118 265 1175 q 363 991 363 1066 q 315 862 363 917 q 181 808 267 808 m 181 908 q 240 933 218 908 q 263 992 263 958 q 242 1051 263 1027 q 181 1075 221 1075 q 120 1050 142 1075 q 99 991 99 1026 q 120 933 99 958 q 181 908 142 908 "},"V":{"x_min":0,"x_max":895.828125,"ha":997,"o":"m 895 1013 l 550 1 l 347 1 l 0 1013 l 231 1013 l 447 256 l 666 1013 l 895 1013 "},"Ξ":{"x_min":0,"x_max":751,"ha":800,"o":"m 733 827 l 5 827 l 5 1013 l 733 1013 l 733 827 m 682 432 l 65 432 l 65 617 l 682 617 l 682 432 m 751 1 l 0 1 l 0 184 l 751 184 l 751 1 "}," ":{"x_min":0,"x_max":0,"ha":853},"Ϋ":{"x_min":-0.5,"x_max":835.390625,"ha":913,"o":"m 609 1047 l 453 1047 l 453 1216 l 609 1216 l 609 1047 m 369 1047 l 212 1047 l 212 1216 l 369 1216 l 369 1047 m 835 1013 l 532 377 l 532 1 l 322 1 l 322 377 l 0 1013 l 207 1013 l 426 577 l 625 1013 l 835 1013 "},"0":{"x_min":51,"x_max":779,"ha":828,"o":"m 415 -25 q 142 130 242 -25 q 51 476 51 272 q 141 825 51 683 q 415 984 242 984 q 687 825 585 984 q 779 476 779 682 q 688 132 779 272 q 415 -25 587 -25 m 415 138 q 529 243 485 138 q 568 478 568 339 q 530 714 568 619 q 415 821 488 821 q 303 718 344 821 q 262 478 262 616 q 301 237 262 337 q 415 138 341 138 "},"”":{"x_min":0,"x_max":469,"ha":566,"o":"m 191 835 q 137 693 191 751 q 0 626 83 635 l 0 697 q 101 831 101 724 l 0 831 l 0 1013 l 191 1013 l 191 835 m 469 835 q 414 693 469 751 q 277 626 360 635 l 277 697 q 379 831 379 724 l 277 831 l 277 1013 l 469 1013 l 469 835 "},"@":{"x_min":0,"x_max":1276,"ha":1373,"o":"m 1115 -53 q 895 -170 1015 -130 q 647 -211 776 -211 q 158 -34 334 -211 q 0 361 0 123 q 179 811 0 622 q 698 1020 377 1020 q 1138 860 981 1020 q 1276 513 1276 721 q 1173 209 1276 334 q 884 73 1062 73 q 784 89 811 73 q 737 186 750 112 q 647 104 698 133 q 533 75 597 75 q 360 144 420 75 q 308 308 308 205 q 398 568 308 451 q 638 696 497 696 q 731 671 690 696 q 805 604 772 647 l 840 673 l 963 673 q 886 372 915 490 q 857 237 857 255 q 876 199 857 212 q 920 186 895 186 q 1084 282 1019 186 q 1150 511 1150 379 q 1051 779 1150 672 q 715 906 934 906 q 271 734 438 906 q 121 363 121 580 q 250 41 121 170 q 647 -103 394 -103 q 863 -68 751 -103 q 1061 24 975 -33 l 1115 -53 m 769 483 q 770 500 770 489 q 733 567 770 539 q 651 596 695 596 q 508 504 566 596 q 457 322 457 422 q 483 215 457 256 q 561 175 509 175 q 671 221 625 175 q 733 333 718 268 l 769 483 "},"Ί":{"x_min":-0.109375,"x_max":619,"ha":732,"o":"m 313 1035 l 98 781 l 0 781 l 136 1035 l 313 1035 m 619 0 l 411 0 l 411 1013 l 619 1013 l 619 0 "},"i":{"x_min":14,"x_max":214,"ha":327,"o":"m 214 830 l 14 830 l 14 1013 l 214 1013 l 214 830 m 214 1 l 14 1 l 14 750 l 214 750 l 214 1 "},"Β":{"x_min":0,"x_max":835,"ha":961,"o":"m 674 547 q 791 450 747 518 q 835 304 835 383 q 717 75 835 158 q 461 0 612 0 l 0 0 l 0 1013 l 477 1013 q 697 951 609 1013 q 797 754 797 880 q 765 630 797 686 q 674 547 734 575 m 438 621 q 538 646 495 621 q 590 730 590 676 q 537 814 590 785 q 436 838 494 838 l 199 838 l 199 621 l 438 621 m 445 182 q 560 211 513 182 q 618 311 618 247 q 565 410 618 375 q 444 446 512 446 l 199 446 l 199 182 l 445 182 "},"υ":{"x_min":0,"x_max":656,"ha":767,"o":"m 656 416 q 568 55 656 145 q 326 -25 490 -25 q 59 97 137 -25 q 0 369 0 191 l 0 748 l 200 748 l 200 369 q 216 222 200 268 q 326 141 245 141 q 440 247 411 141 q 456 422 456 304 l 456 748 l 656 748 l 656 416 "},"]":{"x_min":0.5,"x_max":349,"ha":446,"o":"m 349 -299 l 0 -299 l 0 -153 l 163 -153 l 163 866 l 0 866 l 0 1013 l 349 1013 l 349 -299 "},"m":{"x_min":0,"x_max":1065,"ha":1173,"o":"m 1065 0 l 866 0 l 866 483 q 836 564 866 532 q 759 596 807 596 q 664 555 701 596 q 628 454 628 514 l 628 0 l 434 0 l 434 481 q 404 563 434 531 q 323 595 375 595 q 231 553 265 595 q 197 453 197 512 l 197 0 l 0 0 l 0 749 l 188 749 l 188 665 q 279 744 226 715 q 393 774 333 774 q 510 743 455 774 q 607 659 564 712 q 695 744 641 714 q 815 775 750 775 q 992 702 920 775 q 1065 523 1065 630 l 1065 0 "},"χ":{"x_min":0,"x_max":759.71875,"ha":847,"o":"m 759 -299 l 548 -299 l 379 66 l 215 -299 l 0 -299 l 261 232 l 13 748 l 230 748 l 379 399 l 527 748 l 738 748 l 500 238 l 759 -299 "},"8":{"x_min":57,"x_max":770,"ha":828,"o":"m 625 516 q 733 416 697 477 q 770 284 770 355 q 675 69 770 161 q 415 -29 574 -29 q 145 65 244 -29 q 57 273 57 150 q 93 413 57 349 q 204 516 130 477 q 112 609 142 556 q 83 717 83 662 q 177 905 83 824 q 414 986 272 986 q 650 904 555 986 q 745 715 745 822 q 716 608 745 658 q 625 516 687 558 m 414 590 q 516 624 479 590 q 553 706 553 659 q 516 791 553 755 q 414 828 480 828 q 311 792 348 828 q 275 706 275 757 q 310 624 275 658 q 414 590 345 590 m 414 135 q 527 179 487 135 q 564 279 564 218 q 525 386 564 341 q 411 436 482 436 q 298 387 341 436 q 261 282 261 344 q 300 178 261 222 q 414 135 340 135 "},"ί":{"x_min":42,"x_max":371.15625,"ha":389,"o":"m 242 0 l 42 0 l 42 749 l 242 749 l 242 0 m 371 1039 l 169 824 l 71 824 l 193 1039 l 371 1039 "},"Ζ":{"x_min":0,"x_max":804,"ha":886,"o":"m 804 836 l 251 183 l 793 183 l 793 1 l 0 1 l 0 177 l 551 830 l 11 830 l 11 1013 l 804 1013 l 804 836 "},"R":{"x_min":0,"x_max":835.78125,"ha":947,"o":"m 835 0 l 607 0 q 587 54 595 21 q 580 145 580 86 q 580 180 580 163 q 580 216 580 197 q 552 346 580 307 q 427 394 517 394 l 208 394 l 208 0 l 0 0 l 0 1013 l 491 1013 q 720 944 630 1013 q 819 735 819 870 q 778 584 819 654 q 664 486 738 514 q 757 416 727 464 q 794 232 794 359 l 794 171 q 800 84 794 117 q 835 32 806 51 l 835 0 m 462 838 l 208 838 l 208 573 l 452 573 q 562 604 517 573 q 612 704 612 640 q 568 801 612 765 q 462 838 525 838 "},"o":{"x_min":0,"x_max":764,"ha":871,"o":"m 380 -25 q 105 87 211 -25 q 0 372 0 200 q 104 660 0 545 q 380 775 209 775 q 658 659 552 775 q 764 372 764 544 q 658 87 764 200 q 380 -25 552 -25 m 379 141 q 515 216 466 141 q 557 373 557 280 q 515 530 557 465 q 379 607 466 607 q 245 530 294 607 q 204 373 204 465 q 245 218 204 283 q 379 141 294 141 "},"5":{"x_min":60,"x_max":768,"ha":828,"o":"m 768 319 q 645 59 768 158 q 383 -29 534 -29 q 159 43 248 -29 q 60 264 60 123 l 253 264 q 296 165 253 201 q 401 129 340 129 q 513 172 467 129 q 565 308 565 220 q 515 437 565 387 q 399 488 465 488 q 330 471 362 488 q 272 423 298 455 l 94 423 l 158 958 l 724 958 l 724 790 l 295 790 l 272 593 q 348 635 307 621 q 432 649 390 649 q 664 551 561 649 q 768 319 768 453 "},"7":{"x_min":65,"x_max":762,"ha":827,"o":"m 762 808 q 521 435 603 626 q 409 0 438 244 l 205 0 q 313 422 227 234 q 548 789 387 583 l 65 789 l 65 958 l 762 958 l 762 808 "},"K":{"x_min":0,"x_max":899.671875,"ha":996,"o":"m 899 0 l 646 0 l 316 462 l 208 355 l 208 0 l 0 0 l 0 1013 l 208 1013 l 208 596 l 603 1013 l 863 1013 l 460 603 l 899 0 "},",":{"x_min":0,"x_max":205,"ha":302,"o":"m 205 5 q 149 -150 205 -88 q 0 -238 94 -213 l 0 -159 q 83 -99 56 -137 q 111 -1 111 -62 l 0 -1 l 0 206 l 205 206 l 205 5 "},"d":{"x_min":0,"x_max":722,"ha":836,"o":"m 722 0 l 530 0 l 530 101 q 304 -25 450 -25 q 72 104 155 -25 q 0 373 0 215 q 72 643 0 529 q 304 775 155 775 q 431 743 372 775 q 528 656 490 712 l 528 1013 l 722 1013 l 722 0 m 361 601 q 234 524 280 601 q 196 373 196 459 q 233 221 196 287 q 358 144 277 144 q 489 217 441 144 q 529 370 529 281 q 490 523 529 457 q 361 601 443 601 "},"¨":{"x_min":212,"x_max":609,"ha":933,"o":"m 609 1046 l 453 1046 l 453 1215 l 609 1215 l 609 1046 m 369 1046 l 212 1046 l 212 1215 l 369 1215 l 369 1046 "},"E":{"x_min":0,"x_max":761.546875,"ha":824,"o":"m 761 1 l 0 1 l 0 1013 l 735 1013 l 735 837 l 206 837 l 206 622 l 690 622 l 690 447 l 206 447 l 206 187 l 761 187 l 761 1 "},"Y":{"x_min":-0.21875,"x_max":836.171875,"ha":931,"o":"m 836 1013 l 532 377 l 532 1 l 322 1 l 322 377 l 0 1013 l 208 1013 l 427 577 l 626 1013 l 836 1013 "},"\"":{"x_min":0,"x_max":357,"ha":454,"o":"m 357 604 l 225 604 l 225 987 l 357 987 l 357 604 m 132 604 l 0 604 l 0 987 l 132 987 l 132 604 "},"‹":{"x_min":36,"x_max":792,"ha":828,"o":"m 792 18 l 36 352 l 36 487 l 792 822 l 792 670 l 230 420 l 792 169 l 792 18 "},"„":{"x_min":0,"x_max":483,"ha":587,"o":"m 205 5 q 149 -150 205 -88 q 0 -238 94 -213 l 0 -159 q 83 -99 56 -137 q 111 -1 111 -62 l 0 -1 l 0 206 l 205 206 l 205 5 m 483 5 q 427 -150 483 -88 q 278 -238 372 -213 l 278 -159 q 361 -99 334 -137 q 389 -1 389 -62 l 278 -1 l 278 206 l 483 206 l 483 5 "},"δ":{"x_min":6,"x_max":733,"ha":836,"o":"m 733 353 q 631 77 733 178 q 354 -24 530 -24 q 101 75 197 -24 q 6 334 6 175 q 89 582 6 481 q 324 691 178 691 q 67 864 202 788 l 67 1013 l 670 1013 l 670 856 l 349 856 q 532 729 461 789 q 674 567 625 652 q 733 353 733 466 m 420 551 q 259 497 321 551 q 198 345 198 442 q 238 209 198 268 q 357 141 284 141 q 485 204 438 141 q 527 345 527 261 q 500 467 527 411 q 420 551 474 522 "},"έ":{"x_min":17,"x_max":653,"ha":742,"o":"m 653 259 q 566 49 653 123 q 340 -25 479 -25 q 103 39 189 -25 q 17 196 17 104 q 46 298 17 249 q 135 389 75 348 q 58 456 86 418 q 25 552 25 502 q 120 717 25 653 q 322 776 208 776 q 537 710 456 776 q 625 508 625 639 l 446 508 q 416 585 446 563 q 327 608 386 608 q 253 590 292 608 q 215 544 215 573 q 252 470 215 490 q 336 455 280 455 q 369 455 347 455 q 400 455 391 455 l 400 308 l 329 308 q 247 291 280 308 q 205 223 205 269 q 255 154 205 172 q 345 143 285 143 q 426 174 398 143 q 454 259 454 206 l 653 259 m 579 1039 l 377 824 l 278 824 l 401 1039 l 579 1039 "},"ω":{"x_min":0,"x_max":945,"ha":1051,"o":"m 565 323 l 565 289 q 577 190 565 221 q 651 142 597 142 q 718 189 694 142 q 742 365 742 237 q 702 565 742 462 q 609 748 670 650 l 814 748 q 910 547 876 650 q 945 337 945 444 q 874 96 945 205 q 668 -29 793 -29 q 551 0 608 -29 q 470 78 495 30 q 390 0 444 28 q 276 -29 337 -29 q 69 96 149 -29 q 0 337 0 204 q 36 553 0 444 q 130 748 68 650 l 334 748 q 241 565 273 650 q 203 365 203 461 q 219 222 203 279 q 293 142 243 142 q 360 183 342 142 q 373 271 373 211 q 372 298 372 285 q 372 323 372 311 l 372 528 l 565 528 l 565 323 "},"´":{"x_min":0,"x_max":132,"ha":299,"o":"m 132 604 l 0 604 l 0 987 l 132 987 l 132 604 "},"±":{"x_min":29,"x_max":798,"ha":827,"o":"m 798 480 l 484 480 l 484 254 l 344 254 l 344 480 l 29 480 l 29 615 l 343 615 l 343 842 l 483 842 l 483 615 l 798 615 l 798 480 m 798 0 l 29 0 l 29 136 l 798 136 l 798 0 "},"|":{"x_min":0,"x_max":143,"ha":240,"o":"m 143 462 l 0 462 l 0 984 l 143 984 l 143 462 m 143 -242 l 0 -242 l 0 280 l 143 280 l 143 -242 "},"ϋ":{"x_min":0,"x_max":656,"ha":767,"o":"m 535 810 l 406 810 l 406 952 l 535 952 l 535 810 m 271 810 l 142 810 l 142 952 l 271 952 l 271 810 m 656 416 q 568 55 656 145 q 326 -25 490 -25 q 59 97 137 -25 q 0 369 0 191 l 0 748 l 200 748 l 200 369 q 216 222 200 268 q 326 141 245 141 q 440 247 411 141 q 456 422 456 304 l 456 748 l 656 748 l 656 416 "},"§":{"x_min":0,"x_max":633,"ha":730,"o":"m 633 469 q 601 356 633 406 q 512 274 569 305 q 570 197 548 242 q 593 105 593 152 q 501 -76 593 -5 q 301 -142 416 -142 q 121 -82 192 -142 q 42 107 42 -15 l 212 107 q 251 27 220 53 q 321 1 283 1 q 389 23 360 1 q 419 82 419 46 q 310 194 419 139 q 108 296 111 295 q 0 476 0 372 q 33 584 0 537 q 121 659 62 626 q 72 720 91 686 q 53 789 53 755 q 133 976 53 907 q 312 1041 206 1041 q 483 984 412 1041 q 573 807 562 920 l 408 807 q 378 874 408 850 q 306 899 348 899 q 244 880 270 899 q 218 828 218 861 q 324 731 218 781 q 524 636 506 647 q 633 469 633 565 m 419 334 q 473 410 473 372 q 451 458 473 435 q 389 502 430 481 l 209 595 q 167 557 182 577 q 153 520 153 537 q 187 460 153 491 q 263 413 212 440 l 419 334 "},"b":{"x_min":0,"x_max":722,"ha":822,"o":"m 416 -25 q 288 7 345 -25 q 191 101 231 40 l 191 0 l 0 0 l 0 1013 l 194 1013 l 194 656 q 288 743 228 712 q 416 775 348 775 q 649 644 565 775 q 722 375 722 533 q 649 106 722 219 q 416 -25 565 -25 m 362 600 q 232 525 280 600 q 192 372 192 459 q 230 222 192 284 q 357 146 275 146 q 487 222 441 146 q 526 375 526 286 q 488 523 526 461 q 362 600 442 600 "},"q":{"x_min":0,"x_max":722,"ha":833,"o":"m 722 -299 l 528 -299 l 528 96 q 305 -25 447 -25 q 73 104 158 -25 q 0 372 0 216 q 72 643 0 529 q 305 775 157 775 q 430 742 372 775 q 530 653 489 709 l 530 750 l 722 750 l 722 -299 m 361 601 q 234 527 279 601 q 197 378 197 466 q 233 225 197 291 q 358 144 277 144 q 489 217 441 144 q 530 370 530 282 q 491 523 530 459 q 361 601 444 601 "},"Ω":{"x_min":0,"x_max":1010,"ha":1109,"o":"m 1010 0 l 591 0 l 591 199 q 718 368 672 264 q 765 580 765 471 q 699 778 765 706 q 505 855 630 855 q 311 773 380 855 q 243 563 243 691 q 289 359 243 457 q 419 199 335 262 l 419 0 l 0 0 l 0 176 l 202 176 q 77 355 123 250 q 32 569 32 459 q 165 908 32 776 q 505 1040 298 1040 q 845 912 712 1040 q 978 578 978 785 q 932 362 978 467 q 806 176 887 256 l 1010 176 l 1010 0 "},"ύ":{"x_min":0,"x_max":656,"ha":767,"o":"m 656 416 q 568 55 656 145 q 326 -25 490 -25 q 59 97 137 -25 q 0 369 0 191 l 0 748 l 200 748 l 200 369 q 216 222 200 269 q 325 141 244 141 q 440 247 411 141 q 456 422 456 304 l 456 748 l 656 748 l 656 416 m 579 1038 l 378 824 l 279 824 l 401 1038 l 579 1038 "},"z":{"x_min":0,"x_max":664,"ha":753,"o":"m 664 0 l 0 0 l 0 153 l 411 590 l 25 590 l 25 748 l 650 748 l 650 584 l 245 165 l 664 165 l 664 0 "},"™":{"x_min":0,"x_max":952,"ha":1063,"o":"m 404 921 l 254 921 l 254 505 l 148 505 l 148 921 l 0 921 l 0 1013 l 404 1013 l 404 921 m 952 506 l 853 506 l 853 915 l 750 506 l 643 506 l 539 915 l 539 506 l 442 506 l 442 1013 l 595 1013 l 696 626 l 796 1013 l 952 1013 l 952 506 "},"ή":{"x_min":0,"x_max":669,"ha":779,"o":"m 669 -277 l 469 -277 l 469 390 q 448 526 469 473 q 348 606 417 606 q 244 553 288 606 q 201 441 201 501 l 201 0 l 0 0 l 0 749 l 201 749 l 201 665 q 301 744 244 715 q 423 774 359 774 q 606 685 538 774 q 669 485 669 603 l 669 -277 m 495 1039 l 294 824 l 195 824 l 317 1039 l 495 1039 "},"Θ":{"x_min":0,"x_max":993,"ha":1092,"o":"m 497 -29 q 133 127 272 -29 q 0 505 0 277 q 133 883 0 733 q 497 1040 272 1040 q 861 883 722 1040 q 993 505 993 733 q 861 127 993 277 q 497 -29 722 -29 m 497 154 q 711 266 631 154 q 782 506 782 367 q 712 746 782 648 q 497 858 634 858 q 281 746 361 858 q 211 506 211 648 q 280 266 211 365 q 497 154 359 154 m 677 430 l 317 430 l 317 593 l 677 593 l 677 430 "},"®":{"x_min":3,"x_max":1007,"ha":1104,"o":"m 507 -6 q 129 153 269 -6 q 3 506 3 298 q 127 856 3 713 q 502 1016 266 1016 q 880 854 740 1016 q 1007 502 1007 710 q 882 152 1007 295 q 507 -6 743 -6 m 502 933 q 184 799 302 933 q 79 505 79 680 q 184 210 79 331 q 501 76 302 76 q 819 210 701 76 q 925 506 925 331 q 820 799 925 681 q 502 933 704 933 m 782 189 l 639 189 q 627 225 632 202 q 623 285 623 248 l 623 325 q 603 411 623 384 q 527 438 584 438 l 388 438 l 388 190 l 257 190 l 257 829 l 567 829 q 710 787 654 829 q 773 653 773 740 q 747 558 773 603 q 675 496 721 513 q 735 450 714 482 q 756 341 756 418 l 756 299 q 760 244 756 264 q 782 212 764 223 l 782 189 m 547 718 l 388 718 l 388 551 l 542 551 q 613 571 585 551 q 642 634 642 592 q 614 695 642 672 q 547 718 587 718 "},"~":{"x_min":0,"x_max":851,"ha":948,"o":"m 851 968 q 795 751 851 832 q 599 657 730 657 q 406 744 506 657 q 259 831 305 831 q 162 775 193 831 q 139 657 139 730 l 0 657 q 58 871 0 787 q 251 967 124 967 q 442 879 341 967 q 596 792 544 792 q 691 850 663 792 q 712 968 712 893 l 851 968 "},"Ε":{"x_min":0,"x_max":761.546875,"ha":824,"o":"m 761 1 l 0 1 l 0 1013 l 735 1013 l 735 837 l 206 837 l 206 622 l 690 622 l 690 447 l 206 447 l 206 187 l 761 187 l 761 1 "},"³":{"x_min":-0.171875,"x_max":467,"ha":564,"o":"m 467 555 q 393 413 467 466 q 229 365 325 365 q 70 413 134 365 q 0 565 0 467 l 124 565 q 164 484 132 512 q 229 461 190 461 q 299 486 269 461 q 329 553 329 512 q 282 627 329 607 q 188 641 249 641 l 188 722 q 269 737 238 722 q 313 804 313 758 q 286 859 313 837 q 224 882 259 882 q 163 858 188 882 q 138 783 138 834 l 12 783 q 86 930 20 878 q 230 976 145 976 q 380 931 315 976 q 445 813 445 887 q 424 744 445 773 q 365 695 403 716 q 439 640 412 675 q 467 555 467 605 "},"[":{"x_min":0,"x_max":347.71875,"ha":445,"o":"m 347 -299 l 0 -299 l 0 1013 l 347 1013 l 347 866 l 188 866 l 188 -153 l 347 -153 l 347 -299 "},"L":{"x_min":0,"x_max":703.84375,"ha":762,"o":"m 703 1 l 0 1 l 0 1013 l 208 1013 l 208 187 l 703 187 l 703 1 "},"σ":{"x_min":0,"x_max":851,"ha":940,"o":"m 851 594 l 712 594 q 761 369 761 485 q 658 83 761 191 q 379 -25 555 -25 q 104 87 208 -25 q 0 372 0 200 q 103 659 0 544 q 377 775 207 775 q 463 762 407 775 q 548 750 520 750 l 851 750 l 851 594 m 379 141 q 515 216 466 141 q 557 373 557 280 q 515 530 557 465 q 379 608 465 608 q 244 530 293 608 q 203 373 203 465 q 244 218 203 283 q 379 141 293 141 "},"ζ":{"x_min":0,"x_max":622,"ha":701,"o":"m 622 -29 q 604 -157 622 -96 q 551 -278 587 -217 l 373 -278 q 426 -180 407 -229 q 446 -81 446 -132 q 421 -23 446 -38 q 354 -9 397 -9 q 316 -9 341 -9 q 280 -9 291 -9 q 74 71 149 -9 q 0 284 0 151 q 87 596 0 438 q 291 856 162 730 l 47 856 l 47 1013 l 593 1013 l 593 904 q 318 660 422 800 q 197 318 197 497 q 306 141 197 169 q 511 128 408 128 q 622 -29 622 106 "},"θ":{"x_min":0,"x_max":714,"ha":817,"o":"m 356 1022 q 633 833 534 1022 q 714 486 714 679 q 634 148 714 288 q 354 -25 536 -25 q 79 147 175 -25 q 0 481 0 288 q 79 831 0 679 q 356 1022 177 1022 m 509 590 q 475 763 509 687 q 351 862 430 862 q 233 763 272 862 q 204 590 204 689 l 509 590 m 509 440 l 204 440 q 233 251 204 337 q 355 131 275 131 q 477 248 434 131 q 509 440 509 337 "},"Ο":{"x_min":0,"x_max":994,"ha":1091,"o":"m 497 -29 q 133 127 272 -29 q 0 505 0 277 q 131 883 0 733 q 497 1040 270 1040 q 860 883 721 1040 q 994 505 994 733 q 862 127 994 277 q 497 -29 723 -29 m 497 154 q 710 266 631 154 q 780 506 780 365 q 710 745 780 647 q 497 857 631 857 q 283 747 361 857 q 213 506 213 647 q 282 266 213 365 q 497 154 361 154 "},"Γ":{"x_min":0,"x_max":703.84375,"ha":741,"o":"m 703 837 l 208 837 l 208 0 l 0 0 l 0 1013 l 703 1013 l 703 837 "}," ":{"x_min":0,"x_max":0,"ha":375},"%":{"x_min":0,"x_max":1111,"ha":1212,"o":"m 861 485 q 1048 405 979 485 q 1111 229 1111 333 q 1048 51 1111 124 q 860 -29 979 -29 q 672 50 740 -29 q 610 228 610 122 q 672 404 610 332 q 861 485 741 485 m 861 120 q 939 151 911 120 q 967 227 967 183 q 942 300 967 271 q 861 334 912 334 q 783 302 811 334 q 756 227 756 270 q 783 151 756 182 q 861 120 810 120 m 904 985 l 316 -28 l 205 -28 l 793 985 l 904 985 m 250 985 q 436 905 366 985 q 499 730 499 833 q 436 552 499 626 q 248 472 366 472 q 62 553 131 472 q 0 729 0 625 q 62 904 0 831 q 250 985 131 985 m 249 836 q 169 802 198 836 q 140 726 140 769 q 167 652 140 683 q 247 621 195 621 q 327 654 298 621 q 357 730 357 687 q 329 804 357 773 q 249 836 301 836 "},"P":{"x_min":0,"x_max":771,"ha":838,"o":"m 208 362 l 208 0 l 0 0 l 0 1013 l 450 1013 q 682 920 593 1013 q 771 682 771 827 q 687 453 771 545 q 466 362 604 362 l 208 362 m 422 837 l 209 837 l 209 545 l 411 545 q 525 580 480 545 q 571 684 571 615 q 527 792 571 748 q 422 837 484 837 "},"Έ":{"x_min":-0.109375,"x_max":1172.546875,"ha":1235,"o":"m 1172 1 l 411 1 l 411 1013 l 1146 1013 l 1146 837 l 617 837 l 617 622 l 1101 622 l 1101 447 l 617 447 l 617 187 l 1172 187 l 1172 1 m 313 1036 l 98 781 l 0 781 l 136 1036 l 313 1036 "},"Ώ":{"x_min":0.4375,"x_max":1190,"ha":1289,"o":"m 1190 0 l 771 0 l 771 199 q 898 369 850 263 q 946 580 946 474 q 880 778 946 706 q 686 855 811 855 q 492 773 561 855 q 424 563 424 691 q 470 360 424 457 q 600 199 516 262 l 600 0 l 181 0 l 181 176 l 383 176 q 258 355 304 251 q 213 569 213 459 q 346 908 213 776 q 686 1040 479 1040 q 1026 912 893 1040 q 1159 578 1159 785 q 1113 362 1159 467 q 987 176 1068 256 l 1190 176 l 1190 0 m 314 1091 l 99 838 l 0 838 l 136 1091 l 314 1091 "},"_":{"x_min":61,"x_max":767,"ha":828,"o":"m 767 -333 l 61 -333 l 61 -190 l 767 -190 l 767 -333 "},"Ϊ":{"x_min":-55,"x_max":342,"ha":503,"o":"m 342 1046 l 186 1046 l 186 1215 l 342 1215 l 342 1046 m 102 1046 l -55 1046 l -55 1215 l 102 1215 l 102 1046 m 250 0 l 42 0 l 42 1013 l 250 1013 l 250 0 "},"+":{"x_min":43,"x_max":785,"ha":828,"o":"m 785 353 l 483 353 l 483 0 l 343 0 l 343 353 l 43 353 l 43 489 l 343 489 l 343 840 l 483 840 l 483 489 l 785 489 l 785 353 "},"½":{"x_min":-0.21875,"x_max":1090,"ha":1187,"o":"m 1090 380 q 992 230 1090 301 q 778 100 885 164 q 821 94 784 94 q 924 94 859 94 l 951 94 l 973 94 l 992 94 l 1009 94 q 1047 94 1027 94 q 1086 94 1066 94 l 1086 0 l 649 0 l 653 38 q 815 233 665 137 q 965 376 965 330 q 936 436 965 412 q 869 461 908 461 q 805 435 831 461 q 774 354 780 409 l 659 354 q 724 505 659 451 q 870 554 783 554 q 1024 506 958 554 q 1090 380 1090 459 m 867 998 l 267 -28 l 153 -28 l 756 998 l 867 998 m 272 422 l 147 422 l 147 799 l 0 799 l 0 875 q 126 900 91 875 q 170 973 162 926 l 272 973 l 272 422 "},"Ρ":{"x_min":0,"x_max":771,"ha":838,"o":"m 208 362 l 208 0 l 0 0 l 0 1013 l 450 1013 q 682 920 593 1013 q 771 682 771 827 q 687 453 771 545 q 466 362 604 362 l 208 362 m 422 837 l 209 837 l 209 545 l 411 545 q 525 580 480 545 q 571 684 571 615 q 527 792 571 748 q 422 837 484 837 "},"'":{"x_min":0,"x_max":191,"ha":288,"o":"m 191 835 q 136 693 191 752 q 0 627 81 634 l 0 698 q 101 830 101 727 l 0 830 l 0 1013 l 191 1013 l 191 835 "},"ª":{"x_min":0,"x_max":350,"ha":393,"o":"m 350 625 l 245 625 q 237 648 241 636 q 233 672 233 661 q 118 611 192 611 q 33 643 66 611 q 0 727 0 675 q 115 846 0 828 q 231 886 231 864 q 211 919 231 907 q 167 931 190 931 q 108 877 108 931 l 14 877 q 56 977 14 942 q 165 1013 98 1013 q 270 987 224 1013 q 329 903 329 956 l 329 694 q 332 661 329 675 q 350 641 336 648 l 350 625 m 233 773 l 233 808 q 151 786 180 796 q 97 733 97 768 q 111 700 97 712 q 149 689 126 689 q 210 713 187 689 q 233 773 233 737 "},"΅":{"x_min":57,"x_max":583,"ha":752,"o":"m 583 810 l 454 810 l 454 952 l 583 952 l 583 810 m 520 1064 l 305 810 l 206 810 l 342 1064 l 520 1064 m 186 810 l 57 810 l 57 952 l 186 952 l 186 810 "},"T":{"x_min":0,"x_max":808,"ha":894,"o":"m 808 831 l 508 831 l 508 0 l 298 0 l 298 831 l 0 831 l 0 1013 l 808 1013 l 808 831 "},"Φ":{"x_min":0,"x_max":949,"ha":1032,"o":"m 565 0 l 384 0 l 384 121 q 111 230 222 121 q 0 508 0 340 q 112 775 0 669 q 384 892 219 875 l 384 1013 l 565 1013 l 565 892 q 836 776 732 875 q 949 507 949 671 q 838 231 949 341 q 565 121 727 121 l 565 0 m 565 285 q 701 352 649 285 q 753 508 753 419 q 702 659 753 597 q 565 729 652 721 l 565 285 m 384 285 l 384 729 q 244 661 296 718 q 193 517 193 604 q 246 356 193 428 q 384 285 299 285 "},"j":{"x_min":-45.5,"x_max":242,"ha":361,"o":"m 242 830 l 42 830 l 42 1013 l 242 1013 l 242 830 m 242 -118 q 180 -267 242 -221 q 21 -306 128 -306 l -45 -306 l -45 -137 l -24 -137 q 25 -127 8 -137 q 42 -85 42 -117 l 42 749 l 242 749 l 242 -118 "},"Σ":{"x_min":0,"x_max":772,"ha":848,"o":"m 772 1 l 0 1 l 0 141 l 367 527 l 18 863 l 18 1013 l 740 1013 l 740 837 l 315 837 l 619 524 l 298 176 l 772 176 l 772 1 "},"1":{"x_min":198.890625,"x_max":629,"ha":828,"o":"m 629 0 l 435 0 l 435 674 l 198 674 l 198 810 q 375 837 319 810 q 469 985 451 876 l 629 985 l 629 0 "},"›":{"x_min":36,"x_max":792,"ha":828,"o":"m 792 352 l 36 18 l 36 169 l 594 420 l 36 670 l 36 822 l 792 487 l 792 352 "},"<":{"x_min":36,"x_max":792,"ha":828,"o":"m 792 18 l 36 352 l 36 487 l 792 822 l 792 670 l 230 420 l 792 169 l 792 18 "},"£":{"x_min":0,"x_max":716.28125,"ha":814,"o":"m 716 38 q 603 -9 657 5 q 502 -24 548 -24 q 398 -10 451 -24 q 238 24 266 24 q 160 11 199 24 q 77 -29 121 0 l 0 113 q 110 211 81 174 q 151 315 151 259 q 117 440 151 365 l 0 440 l 0 515 l 73 515 q 35 610 52 560 q 15 710 15 672 q 119 910 15 831 q 349 984 216 984 q 570 910 480 984 q 692 668 674 826 l 501 668 q 455 791 501 746 q 353 830 414 830 q 256 795 298 830 q 215 705 215 760 q 249 582 215 655 q 282 515 266 548 l 479 515 l 479 440 l 309 440 q 316 394 313 413 q 319 355 319 374 q 287 241 319 291 q 187 134 263 205 q 261 160 224 152 q 331 168 298 168 q 455 151 367 168 q 523 142 499 142 q 587 152 557 142 q 653 188 617 162 l 716 38 "},"t":{"x_min":0,"x_max":413,"ha":512,"o":"m 413 -8 q 350 -8 392 -8 q 287 -8 308 -8 q 137 39 177 -8 q 97 202 97 87 l 97 609 l 0 609 l 0 749 l 97 749 l 97 951 l 297 951 l 297 749 l 413 749 l 413 609 l 297 609 l 297 191 q 315 152 297 162 q 366 143 334 143 q 390 143 379 143 q 413 144 401 143 l 413 -8 "},"¬":{"x_min":-0.390625,"x_max":704,"ha":801,"o":"m 704 92 l 551 92 l 551 297 l 0 297 l 0 450 l 704 450 l 704 92 "},"λ":{"x_min":0,"x_max":701.390625,"ha":775,"o":"m 701 0 l 491 0 l 345 444 l 195 0 l 0 0 l 238 697 l 131 1013 l 334 1013 l 701 0 "},"W":{"x_min":0,"x_max":1291.671875,"ha":1399,"o":"m 1291 1013 l 1002 1 l 802 1 l 645 777 l 490 1 l 288 1 l 0 1013 l 215 1013 l 388 299 l 534 1013 l 756 1013 l 904 299 l 1076 1013 l 1291 1013 "},">":{"x_min":36,"x_max":792,"ha":828,"o":"m 792 352 l 36 18 l 36 169 l 594 420 l 36 670 l 36 822 l 792 487 l 792 352 "},"v":{"x_min":0,"x_max":740.28125,"ha":828,"o":"m 740 749 l 473 0 l 266 0 l 0 749 l 222 749 l 373 211 l 529 749 l 740 749 "},"τ":{"x_min":0,"x_max":618,"ha":699,"o":"m 618 593 l 409 593 l 409 0 l 210 0 l 210 593 l 0 593 l 0 749 l 618 749 l 618 593 "},"ξ":{"x_min":0,"x_max":640,"ha":715,"o":"m 640 -13 q 619 -157 640 -84 q 564 -298 599 -230 l 399 -298 q 443 -194 433 -223 q 468 -84 468 -126 q 440 -26 468 -42 q 368 -10 412 -10 q 333 -10 355 -10 q 302 -10 311 -10 q 91 62 179 -10 q 0 260 0 140 q 56 426 0 354 q 201 530 109 493 q 106 595 144 553 q 65 699 65 642 q 94 787 65 747 q 169 856 123 828 l 22 856 l 22 1013 l 597 1013 l 597 856 l 497 856 q 345 840 398 856 q 257 736 257 812 q 366 614 257 642 q 553 602 416 602 l 553 446 l 513 446 q 313 425 379 446 q 199 284 199 389 q 312 162 199 185 q 525 136 418 148 q 640 -13 640 105 "},"&":{"x_min":-1,"x_max":910,"ha":1007,"o":"m 910 -1 l 676 -1 l 607 83 q 291 -47 438 -47 q 50 100 135 -47 q -1 273 -1 190 q 51 431 -1 357 q 218 568 104 505 q 152 661 170 629 q 120 769 120 717 q 201 951 120 885 q 382 1013 276 1013 q 555 957 485 1013 q 635 789 635 894 q 584 644 635 710 q 467 539 548 597 l 615 359 q 664 528 654 440 l 844 528 q 725 223 823 359 l 910 -1 m 461 787 q 436 848 461 826 q 381 870 412 870 q 325 849 349 870 q 301 792 301 829 q 324 719 301 757 q 372 660 335 703 q 430 714 405 680 q 461 787 461 753 m 499 214 l 318 441 q 198 286 198 364 q 225 204 198 248 q 347 135 268 135 q 425 153 387 135 q 499 214 462 172 "},"Λ":{"x_min":0,"x_max":894.453125,"ha":974,"o":"m 894 1 l 666 1 l 447 757 l 225 1 l 0 1 l 344 1013 l 547 1013 l 894 1 "},"I":{"x_min":42,"x_max":250,"ha":365,"o":"m 250 0 l 42 0 l 42 1013 l 250 1013 l 250 0 "},"G":{"x_min":0,"x_max":971,"ha":1057,"o":"m 971 -1 l 829 -1 l 805 118 q 479 -29 671 -29 q 126 133 261 -29 q 0 509 0 286 q 130 884 0 737 q 493 1040 268 1040 q 790 948 659 1040 q 961 697 921 856 l 736 697 q 644 813 710 769 q 500 858 578 858 q 285 746 364 858 q 213 505 213 645 q 285 263 213 362 q 505 154 365 154 q 667 217 598 154 q 761 374 736 280 l 549 374 l 549 548 l 971 548 l 971 -1 "},"ΰ":{"x_min":0,"x_max":656,"ha":767,"o":"m 583 810 l 454 810 l 454 952 l 583 952 l 583 810 m 186 810 l 57 810 l 57 952 l 186 952 l 186 810 m 516 1039 l 315 824 l 216 824 l 338 1039 l 516 1039 m 656 416 q 568 55 656 145 q 326 -25 490 -25 q 59 97 137 -25 q 0 369 0 191 l 0 748 l 200 748 l 200 369 q 216 222 200 269 q 325 141 244 141 q 440 247 411 141 q 456 422 456 304 l 456 748 l 656 748 l 656 416 "},"`":{"x_min":0,"x_max":190.390625,"ha":288,"o":"m 190 654 l 0 654 l 0 830 q 55 970 0 909 q 190 1040 110 1031 l 190 969 q 111 922 134 952 q 89 836 89 892 l 190 836 l 190 654 "},"·":{"x_min":0,"x_max":207,"ha":304,"o":"m 207 528 l 0 528 l 0 735 l 207 735 l 207 528 "},"Υ":{"x_min":-0.21875,"x_max":836.171875,"ha":914,"o":"m 836 1013 l 532 377 l 532 1 l 322 1 l 322 377 l 0 1013 l 208 1013 l 427 577 l 626 1013 l 836 1013 "},"r":{"x_min":0,"x_max":431.9375,"ha":513,"o":"m 431 564 q 269 536 320 564 q 200 395 200 498 l 200 0 l 0 0 l 0 749 l 183 749 l 183 618 q 285 731 225 694 q 431 768 345 768 l 431 564 "},"x":{"x_min":0,"x_max":738.890625,"ha":826,"o":"m 738 0 l 504 0 l 366 237 l 230 0 l 0 0 l 252 382 l 11 749 l 238 749 l 372 522 l 502 749 l 725 749 l 488 384 l 738 0 "},"μ":{"x_min":0,"x_max":647,"ha":754,"o":"m 647 0 l 477 0 l 477 67 q 411 9 448 30 q 330 -12 374 -12 q 261 3 295 -12 q 199 42 226 18 l 199 -278 l 0 -278 l 0 748 l 199 748 l 199 357 q 216 221 199 267 q 322 151 244 151 q 435 239 410 151 q 448 400 448 282 l 448 749 l 647 749 l 647 0 "},"h":{"x_min":0,"x_max":669,"ha":782,"o":"m 669 0 l 469 0 l 469 390 q 449 526 469 472 q 353 607 420 607 q 248 554 295 607 q 201 441 201 501 l 201 0 l 0 0 l 0 1013 l 201 1013 l 201 665 q 303 743 245 715 q 425 772 362 772 q 609 684 542 772 q 669 484 669 605 l 669 0 "},".":{"x_min":0,"x_max":206,"ha":303,"o":"m 206 0 l 0 0 l 0 207 l 206 207 l 206 0 "},"φ":{"x_min":-1,"x_max":921,"ha":990,"o":"m 542 -277 l 367 -277 l 367 -22 q 99 92 200 -22 q -1 376 -1 207 q 72 627 -1 520 q 288 769 151 742 l 288 581 q 222 495 243 551 q 202 379 202 440 q 240 229 202 291 q 367 146 285 158 l 367 776 l 515 776 q 807 667 694 776 q 921 379 921 558 q 815 93 921 209 q 542 -22 710 -22 l 542 -277 m 542 146 q 672 225 625 146 q 713 381 713 291 q 671 536 713 470 q 542 611 624 611 l 542 146 "},";":{"x_min":0,"x_max":208,"ha":305,"o":"m 208 528 l 0 528 l 0 735 l 208 735 l 208 528 m 208 6 q 152 -150 208 -88 q 1 -237 96 -212 l 1 -158 q 88 -100 62 -136 q 114 0 114 -65 l 0 0 l 0 207 l 208 207 l 208 6 "},"f":{"x_min":0,"x_max":426,"ha":525,"o":"m 426 608 l 303 608 l 303 0 l 107 0 l 107 608 l 0 608 l 0 748 l 107 748 q 145 948 107 893 q 330 1016 194 1016 l 426 1016 l 426 855 l 363 855 q 312 841 325 855 q 300 796 300 827 q 300 773 300 785 q 301 748 300 760 l 426 748 l 426 608 "},"“":{"x_min":0,"x_max":468.390625,"ha":567,"o":"m 190 631 l 0 631 l 0 807 q 55 947 0 885 q 190 1017 110 1010 l 190 947 q 89 813 89 921 l 190 813 l 190 631 m 468 631 l 278 631 l 278 807 q 333 947 278 885 q 468 1017 388 1010 l 468 947 q 367 813 367 921 l 468 813 l 468 631 "},"A":{"x_min":0,"x_max":966.671875,"ha":1069,"o":"m 966 1 l 747 1 l 679 209 l 286 209 l 218 1 l 0 1 l 361 1013 l 600 1013 l 966 1 m 623 377 l 480 810 l 340 377 l 623 377 "},"6":{"x_min":57,"x_max":771,"ha":828,"o":"m 745 733 l 544 733 q 500 802 533 776 q 425 828 466 828 q 315 769 359 828 q 264 571 264 701 q 451 638 343 638 q 692 538 603 638 q 771 315 771 449 q 683 79 771 176 q 420 -29 586 -29 q 134 123 227 -29 q 57 455 57 250 q 184 865 57 721 q 453 988 293 988 q 658 916 571 988 q 745 733 745 844 m 427 128 q 538 178 498 128 q 578 300 578 229 q 539 422 578 372 q 416 480 494 480 q 305 431 344 480 q 266 314 266 382 q 310 184 266 240 q 427 128 354 128 "},"‘":{"x_min":0,"x_max":190.390625,"ha":289,"o":"m 190 631 l 0 631 l 0 807 q 55 947 0 885 q 190 1017 110 1010 l 190 947 q 89 813 89 921 l 190 813 l 190 631 "},"ϊ":{"x_min":-55,"x_max":338,"ha":389,"o":"m 338 810 l 209 810 l 209 952 l 338 952 l 338 810 m 74 810 l -55 810 l -55 952 l 74 952 l 74 810 m 242 0 l 42 0 l 42 749 l 242 749 l 242 0 "},"π":{"x_min":0,"x_max":839,"ha":938,"o":"m 839 593 l 750 593 l 750 0 l 549 0 l 549 593 l 286 593 l 286 0 l 87 0 l 87 593 l 0 593 l 0 749 l 839 749 l 839 593 "},"ά":{"x_min":-1,"x_max":722,"ha":835,"o":"m 722 0 l 530 0 l 530 101 q 433 8 491 41 q 304 -25 375 -25 q 72 104 157 -25 q -1 372 -1 216 q 72 643 -1 530 q 308 775 158 775 q 433 744 375 775 q 528 656 491 713 l 528 750 l 722 750 l 722 0 m 361 601 q 233 527 277 601 q 196 375 196 464 q 232 224 196 288 q 358 144 277 144 q 487 217 441 144 q 528 370 528 281 q 489 523 528 457 q 361 601 443 601 m 579 1038 l 377 824 l 279 824 l 401 1038 l 579 1038 "},"O":{"x_min":0,"x_max":994,"ha":1094,"o":"m 497 -29 q 133 127 272 -29 q 0 505 0 277 q 131 883 0 733 q 497 1040 270 1040 q 860 883 721 1040 q 994 505 994 733 q 862 127 994 277 q 497 -29 723 -29 m 497 154 q 710 266 631 154 q 780 506 780 365 q 710 745 780 647 q 497 857 631 857 q 283 747 361 857 q 213 506 213 647 q 282 266 213 365 q 497 154 361 154 "},"n":{"x_min":0,"x_max":669,"ha":782,"o":"m 669 0 l 469 0 l 469 452 q 442 553 469 513 q 352 601 412 601 q 245 553 290 601 q 200 441 200 505 l 200 0 l 0 0 l 0 749 l 194 749 l 194 659 q 290 744 230 714 q 416 775 349 775 q 600 700 531 775 q 669 509 669 626 l 669 0 "},"3":{"x_min":61,"x_max":766.171875,"ha":827,"o":"m 766 290 q 652 51 766 143 q 402 -32 548 -32 q 167 48 262 -32 q 61 300 61 140 l 250 300 q 298 173 250 219 q 405 132 342 132 q 513 169 470 132 q 562 281 562 211 q 491 405 562 369 q 343 432 438 432 l 343 568 q 471 592 424 568 q 533 701 533 626 q 492 793 533 758 q 398 829 452 829 q 306 789 344 829 q 268 669 268 749 l 80 669 q 182 909 80 823 q 410 986 274 986 q 632 916 539 986 q 734 719 734 840 q 702 608 734 656 q 614 522 671 561 q 726 427 686 486 q 766 290 766 369 "},"9":{"x_min":58,"x_max":769,"ha":827,"o":"m 769 493 q 646 90 769 232 q 384 -33 539 -33 q 187 35 271 -33 q 83 224 98 107 l 282 224 q 323 154 287 182 q 404 127 359 127 q 513 182 471 127 q 563 385 563 249 q 475 336 532 356 q 372 316 418 316 q 137 417 224 316 q 58 643 58 508 q 144 878 58 782 q 407 985 239 985 q 694 828 602 985 q 769 493 769 700 m 414 477 q 523 522 486 477 q 560 633 560 567 q 518 765 560 710 q 402 827 472 827 q 297 774 337 827 q 258 650 258 721 q 295 531 258 578 q 414 477 338 477 "},"l":{"x_min":42,"x_max":241,"ha":363,"o":"m 241 0 l 42 0 l 42 1013 l 241 1013 l 241 0 "},"¤":{"x_min":40.671875,"x_max":729.34375,"ha":825,"o":"m 729 792 l 595 660 q 621 553 621 610 q 600 460 621 504 l 727 332 l 623 225 l 492 353 q 383 331 444 331 q 275 353 323 331 l 146 225 l 42 331 l 167 459 q 149 552 149 500 q 173 658 149 608 l 40 793 l 147 897 l 285 760 q 384 777 332 777 q 483 760 435 777 l 622 897 l 729 792 m 384 645 q 310 617 336 645 q 285 552 285 590 q 311 489 285 517 q 383 462 337 462 q 457 489 431 462 q 483 554 483 516 q 456 617 483 589 q 384 645 430 645 "},"κ":{"x_min":0,"x_max":691.84375,"ha":779,"o":"m 691 0 l 479 0 l 284 343 l 196 252 l 196 0 l 0 0 l 0 749 l 196 749 l 196 490 l 440 749 l 677 749 l 416 479 l 691 0 "},"4":{"x_min":53,"x_max":775,"ha":828,"o":"m 775 213 l 660 213 l 660 0 l 470 0 l 470 213 l 53 213 l 53 385 l 417 958 l 660 958 l 660 370 l 775 370 l 775 213 m 474 364 l 474 786 l 204 364 l 474 364 "},"p":{"x_min":0,"x_max":722,"ha":823,"o":"m 416 -25 q 289 4 348 -25 q 194 91 230 34 l 194 -299 l 0 -299 l 0 750 l 191 750 l 191 647 q 288 741 230 707 q 416 775 346 775 q 649 645 566 775 q 722 376 722 534 q 649 106 722 219 q 416 -25 564 -25 m 363 603 q 232 529 278 603 q 192 376 192 465 q 231 223 192 287 q 360 147 277 147 q 487 222 441 147 q 526 372 526 286 q 488 523 526 458 q 363 603 444 603 "},"‡":{"x_min":0,"x_max":808,"ha":894,"o":"m 298 622 l 0 622 l 0 804 l 298 804 l 298 1011 l 508 1011 l 508 804 l 808 804 l 808 622 l 508 622 l 508 388 l 808 388 l 808 206 l 508 206 l 508 0 l 298 0 l 298 206 l 0 206 l 0 388 l 298 388 l 298 622 "},"ψ":{"x_min":0,"x_max":875,"ha":979,"o":"m 524 142 q 657 274 621 163 q 670 352 670 316 l 670 748 l 875 748 l 875 402 q 806 134 875 239 q 525 -22 719 -1 l 525 -278 l 349 -278 l 349 -22 q 65 135 152 -1 q 0 402 0 238 l 0 748 l 204 748 l 204 352 q 231 239 204 295 q 353 142 272 159 l 353 922 l 524 922 l 524 142 "},"η":{"x_min":0,"x_max":669,"ha":779,"o":"m 669 -277 l 469 -277 l 469 390 q 448 526 469 473 q 348 606 417 606 q 244 553 288 606 q 201 441 201 501 l 201 0 l 0 0 l 0 749 l 201 749 l 201 665 q 301 744 244 715 q 423 774 359 774 q 606 685 538 774 q 669 485 669 603 l 669 -277 "}},"cssFontWeight":"bold","ascender":1216,"underlinePosition":-100,"cssFontStyle":"normal","boundingBox":{"yMin":-333,"xMin":-162,"yMax":1216,"xMax":1680},"resolution":1000,"original_font_information":{"postscript_name":"Helvetiker-Bold","version_string":"Version 1.00 2004 initial release","vendor_url":"http://www.magenta.gr","full_font_name":"Helvetiker Bold","font_family_name":"Helvetiker","copyright":"Copyright (c) Magenta ltd, 2004.","description":"","trademark":"","designer":"","designer_url":"","unique_font_identifier":"Magenta ltd:Helvetiker Bold:22-10-104","license_url":"http://www.ellak.gr/fonts/MgOpen/license.html","license_description":"Copyright (c) 2004 by MAGENTA Ltd. All Rights Reserved.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license (\"Fonts\") and associated documentation files (the \"Font Software\"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: \r\n\r\nThe above copyright and this permission notice shall be included in all copies of one or more of the Font Software typefaces.\r\n\r\nThe Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing the word \"MgOpen\", or if the modifications are accepted for inclusion in the Font Software itself by the each appointed Administrator.\r\n\r\nThis License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the \"MgOpen\" name.\r\n\r\nThe Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. \r\n\r\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL MAGENTA OR PERSONS OR BODIES IN CHARGE OF ADMINISTRATION AND MAINTENANCE OF THE FONT SOFTWARE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.","manufacturer_name":"Magenta ltd","font_sub_family_name":"Bold"},"descender":-334,"familyName":"Helvetiker","lineHeight":1549,"underlineThickness":50});

// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(function() {

  var colors = { 
    'posts':    '#c061c0',
    'skills':   '#61c061',
    'projects': '#6161c0',
    'jobs':     '#c06161'
  };

  $('#sidebar li a').
    mouseout (function() {
      $(this).animate({
        fontSize: '1.0em',
        color:    '#303030',
        margin: '0.0em',
        lineHeight: '1.7em'
      }, 100);
    }).

    mouseover(function() {
      $(this).animate({
        fontSize: '1.25em',
        margin:   '0.5em',
        lineHeight: '1.0em',
        color:    colors[section]
      }, 100);
    });

});


