(function(){var
window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;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&&elem.id!=match[3])
return jQuery().find(selector);var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret;}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))
return jQuery(document).ready(selector);if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context;}
return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num];},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find")
ret.selector=this.selector+(this.selector?" ":"")+selector;else if(name)
ret.selector=this.selector+"."+name+"("+selector+")";return ret;},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){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(typeof name==="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]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode)
wrap.insertBefore(this[0]);wrap.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,function(elem){if(this.nodeType==1)
this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)
this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,function(elem){if(this.parentNode)
this.parentNode.insertBefore(elem,this);else
null;});},after:function(){return this.domManip(arguments,false,function(elem){if(this.parentNode)
this.parentNode.insertBefore(elem,this.nextSibling);else
null;});},end:function(){return this.prevObject||jQuery([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret;}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem);})),"find",selector);}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else
return this.cloneNode(true);});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName)
return;var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}
i++;});}
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,jQuery.grep(this,function(elem){return elem.nodeType===1;})),"filter",selector);},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur;}
cur=cur.parentNode;closer++;}});},not:function(selector){if(typeof selector==="string")
if(isSimple.test(selector))
return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector);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!!selector&&this.is("."+selector);},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,'option'))
return(elem.attributes.value||{}).specified?elem.value:elem.text;if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)
return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one)
return value;values.push(value);}}
return values;}
return(elem.value||"").replace(/\r/g,"");}
return undefined;}
if(typeof value==="number")
value+='';return this.each(function(){if(this.nodeType!=1)
return;if(jQuery.isArray(value)&&/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?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):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),"slice",Array.prototype.slice.call(arguments).join(","));},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);},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first)
for(var i=0,l=this.length;i<l;i++)
callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment);if(scripts)
jQuery.each(scripts,evalScript);}
return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}};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(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target))
target={};if(length==i){target=this;--i;}
for(;i<length;i++)
if((options=arguments[i])!=null)
for(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 exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)
window.jQuery=_jQuery;return jQuery;},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument);},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval)
script.appendChild(document.createTextNode(data));else
script.text=data;head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length;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 typeof value==="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 elem&&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,extra){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;if(extra==="border")
return;jQuery.each(which,function(){if(!extra)
val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;if(extra==="margin")
val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;else
val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});}
if(elem.offsetWidth!==0)
getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,Math.round(val));}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}
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)
ret=computedStyle.getPropertyValue(name);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,fragment){context=context||document;if(typeof context.createElement==="undefined")
context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match)
return[context.createElement(match[1])];}
var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number")
elem+='';if(!elem)
return;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=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();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.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)
div=div.lastChild;if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)
if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)
tbody[j].parentNode.removeChild(tbody[j]);}
if(!jQuery.support.leadingWhitespace&&/^\s/.test(elem))
div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType)
ret.push(elem);else
ret=jQuery.merge(ret,elem);});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1)
ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));fragment.appendChild(ret[i]);}}
return scripts;}
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;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode)
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;if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name=="style")
return jQuery.attr(elem.style,"cssText",value);if(set)
elem.setAttribute(name,""+value);var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
if(!jQuery.support.opacity&&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||typeof array==="string"||jQuery.isFunction(array)||array.setInterval)
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.support.getAll){while((elem=second[i++])!=null)
if(elem.nodeType!=8)
first[pos++]=elem;}else
while((elem=second[i++])!=null)
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.]+)/)||[0,'0'])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};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),name,selector);};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,selector);};});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,state){if(typeof state!=="boolean")
state=!jQuery.className.has(this,classNames);jQuery.className[state?"add":"remove"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).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).children().remove();while(this.firstChild)
this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}
var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({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];}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data))
q=jQuery.data(elem,type,jQuery.makeArray(data));else if(data)
q.push(data);}
return q;},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx")
fn=queue[0];if(fn!==undefined)
fn.call(elem);}});jQuery.fn.extend({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);});},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined)
return jQuery.queue(this[0],type);return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1)
queue[0].call(this);});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});}});(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9)
return[];if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector])
selector+=parts.shift();set=posProcess(selector,set);}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,isXML(context));}}
if(!checkSet){checkSet=set;}
if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace)
result.push(elem);}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}
return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase();},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return/h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON";},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0==i;},eq:function(elem,i,match){return match[3]-0==i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while(node=node.previousSibling){if(node.nodeType===1)return false;}
if(type=='first')return true;node=elem;case'last':while(node=node.nextSibling){if(node.nodeType===1)return false;}
return true;case'nth':var first=match[2],last=match[3];if(first==1&&last==0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first==0){return diff==0;}else{return(diff%first==0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);}
var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches;})();if(document.getElementsByClassName&&document.documentElement.getElementsByClassName)(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0)
return;div.lastChild.className="e";if(div.getElementsByClassName("e").length===1)
return;Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument);};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0;};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0;};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")";}
return Sizzle.matches(expr,elems);};jQuery.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;};jQuery.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;};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)
r.push(n);}
return r;};return;window.Sizzle=Sizzle;})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)
return;if(elem.setInterval&&elem!=window)
elem=window;if(!handler.guid)
handler.guid=this.guid++;if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].setup.call(elem,data,namespaces);if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===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 namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler)
delete events[type][handler.guid];else
for(var handle in events[type])
if(namespace.test(events[type][handle].type))
delete events[type][handle];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].teardown.call(elem,namespaces);for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===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(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type])
jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type])
jQuery.event.trigger(event,data,this.handle.elem);});}
if(!elem||elem.nodeType==3||elem.nodeType==8)
return undefined;event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle)
handle.apply(elem,data);if((!elem[type]||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)
event.result=false;if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}
this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent)
jQuery.event.trigger(event,data,parent,true);}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped())
break;}}},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 toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando])
return event;var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
if(!event.target)
event.target=event.srcElement||document;if(event.target.nodeType==3)
event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)
event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.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=proxy||function(){return fn.apply(this,arguments);};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler);},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type))
remove++;});if(remove<1)
jQuery.event.remove(this,namespaces[0],liveHandler);}}}}};jQuery.Event=function(src){if(!this.preventDefault)
return new jQuery.Event(src);if(src&&src.type){this.originalEvent=src;this.type=src.type;}else
this.type=src;this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.preventDefault)
e.preventDefault();e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.stopPropagation)
e.stopPropagation();e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this)
try{parent=parent.parentNode;}
catch(e){parent=this;}
if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}};jQuery.each({mouseover:'mouseenter',mouseout:'mouseleave'},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix);},teardown:function(){jQuery.event.remove(this,orig,withinElement);}};});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){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length)
jQuery.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.mouseenter(fnOver).mouseleave(fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)
fn.call(document,jQuery);else
jQuery.readyList.push(fn);return this;},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this;},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this;}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem)
elems.push({elem:elem,fn:fn});}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest");});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false)
return(stop=false);});return stop;}
function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".");}
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);});jQuery.readyList=null;}
jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready();},false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready();}});if(document.documentElement.doScroll&&window==window.top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){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,mouseenter,mouseleave,"+"change,select,submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});jQuery(window).bind('unload',function(){for(var id in jQuery.cache)
if(id!=1&&jQuery.cache[id].handle)
jQuery.event.remove(jQuery.cache[id].handle.elem);});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee);});div.cloneNode(true).fireEvent("onclick");}
jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';});})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};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);}
var type="GET";if(params)
if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){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);if(callback)
self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});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",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},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 parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=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();script.onload=script.onreadystatechange=null;head.removeChild(script);}};}
head.appendChild(script);return undefined;}
var requestDone=false;var xhr=s.xhr();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){if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");xhr.abort();return false;}
if(s.global)
jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}}else 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);}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(isTimeout)
xhr.abort();if(s.async)
xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)
setTimeout(function(){if(xhr&&!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;}catch(e){}
return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url];}catch(e){}
return false;},httpData:function(xhr,type,s){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(s&&s.dataFilter)
data=s.dataFilter(data,type);if(typeof data==="string"){if(type=="script")
jQuery.globalEval(data);if(type=="json")
data=window["eval"]("("+data+")");}
return data;},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+'='+encodeURIComponent(value);};if(jQuery.isArray(a)||a.jquery)
jQuery.each(a,function(){add(this.name,this.value);});else
for(var j in a)
if(jQuery.isArray(a[j]))
jQuery.each(a[j],function(){add(j,this);});else
add(j,jQuery.isFunction(a[j])?a[j]():a[j]);return s.join("&").replace(/%20/g,"+");}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName];}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none")
display="block";elem.remove();elemdisplay[tagName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none")
jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));}
for(var i=0,l=this.length;i<l;i++){this[i].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();}):this.animate(genFx("toggle",3),fn,fn2);},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(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&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")&&this.style){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;});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)
this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)
if(timers[i].elem==this){if(gotoEnd)
timers[i](true);timers.splice(i,1);}});if(!gotoEnd)
this.dequeue();return this;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)
jQuery(this).dequeue();if(jQuery.isFunction(opt.old))
opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)
options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)
this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style)
this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))
return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)
if(!timers[i]())
timers.splice(i--,1);if(!timers.length){clearInterval(timerId);timerId=undefined;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.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)
jQuery(this.elem).hide();if(this.options.hide||this.options.show)
for(var p in this.options.curAnim)
jQuery.attr(this.elem.style,p,this.options.orig[p]);this.options.complete.call(this.elem);}
return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;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,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null)
fx.elem.style[fx.prop]=fx.now+fx.unit;else
fx.elem[fx.prop]=fx.now;}}});if(document.documentElement["getBoundingClientRect"])
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};else
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName)))
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible")
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static")
top+=body.offsetTop,left+=body.offsetLeft;if(prevComputedStyle.position==="fixed")
top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft);return{top:top,left:left};};jQuery.offset={initialize:function(){if(this.initialized)return;var body=document.body,container=document.createElement('div'),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:'absolute',top:0,left:0,margin:0,border:0,width:'1px',height:'1px',visibility:'hidden'};for(prop in rules)container.style[prop]=rules[prop];container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow='hidden',innerDiv.style.position='relative';this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop='1px';this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true;},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset)
top+=parseInt(jQuery.curCSS(body,'marginTop',true),10)||0,left+=parseInt(jQuery.curCSS(body,'marginLeft',true),10)||0;return{top:top,left:left};}};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||document.body;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 null;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",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null;};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px");};});})();;jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return!!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return!(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return!this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;(function(a){a.widget("ui.draggable",a.extend({},a.ui.mouse,{_init:function(){if(this.options.helper=="original"&&!(/^(?:r|a|f)/).test(this.element.css("position"))){this.element[0].style.position="relative"}(this.options.addClasses&&this.element.addClass("ui-draggable"));(this.options.disabled&&this.element.addClass("ui-draggable-disabled"));this._mouseInit()},destroy:function(){if(!this.element.data("draggable")){return}this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled");this._mouseDestroy()},_mouseCapture:function(b){var c=this.options;if(this.helper||c.disabled||a(b.target).is(".ui-resizable-handle")){return false}this.handle=this._getHandle(b);if(!this.handle){return false}return true},_mouseStart:function(b){var c=this.options;this.helper=this._createHelper(b);this._cacheHelperProportions();if(a.ui.ddmanager){a.ui.ddmanager.current=this}this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.element.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(b);this.originalPageX=b.pageX;this.originalPageY=b.pageY;if(c.cursorAt){this._adjustOffsetFromHelper(c.cursorAt)}if(c.containment){this._setContainment()}this._trigger("start",b);this._cacheHelperProportions();if(a.ui.ddmanager&&!c.dropBehaviour){a.ui.ddmanager.prepareOffsets(this,b)}this.helper.addClass("ui-draggable-dragging");this._mouseDrag(b,true);return true},_mouseDrag:function(b,d){this.position=this._generatePosition(b);this.positionAbs=this._convertPositionTo("absolute");if(!d){var c=this._uiHash();this._trigger("drag",b,c);this.position=c.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(a.ui.ddmanager){a.ui.ddmanager.drag(this,b)}return false},_mouseStop:function(c){var d=false;if(a.ui.ddmanager&&!this.options.dropBehaviour){d=a.ui.ddmanager.drop(this,c)}if(this.dropped){d=this.dropped;this.dropped=false}if((this.options.revert=="invalid"&&!d)||(this.options.revert=="valid"&&d)||this.options.revert===true||(a.isFunction(this.options.revert)&&this.options.revert.call(this.element,d))){var b=this;a(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){b._trigger("stop",c);b._clear()})}else{this._trigger("stop",c);this._clear()}return false},_getHandle:function(b){var c=!this.options.handle||!a(this.options.handle,this.element).length?true:false;a(this.options.handle,this.element).find("*").andSelf().each(function(){if(this==b.target){c=true}});return c},_createHelper:function(c){var d=this.options;var b=a.isFunction(d.helper)?a(d.helper.apply(this.element[0],[c])):(d.helper=="clone"?this.element.clone():this.element);if(!b.parents("body").length){b.appendTo((d.appendTo=="parent"?this.element[0].parentNode:d.appendTo))}if(b[0]!=this.element[0]&&!(/(fixed|absolute)/).test(b.css("position"))){b.css("position","absolute")}return b},_adjustOffsetFromHelper:function(b){if(b.left!=undefined){this.offset.click.left=b.left+this.margins.left}if(b.right!=undefined){this.offset.click.left=this.helperProportions.width-b.right+this.margins.left}if(b.top!=undefined){this.offset.click.top=b.top+this.margins.top}if(b.bottom!=undefined){this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top}},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])){b.left+=this.scrollParent.scrollLeft();b.top+=this.scrollParent.scrollTop()}if((this.offsetParent[0]==document.body)||(this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)){b={top:0,left:0}}return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var b=this.element.position();return{top:b.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:b.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else{return{top:0,left:0}}},_cacheMargins:function(){this.margins={left:(parseInt(this.element.css("marginLeft"),10)||0),top:(parseInt(this.element.css("marginTop"),10)||0)}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e=this.options;if(e.containment=="parent"){e.containment=this.helper[0].parentNode}if(e.containment=="document"||e.containment=="window"){this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,a(e.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a(e.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]}if(!(/^(document|window|parent)$/).test(e.containment)&&e.containment.constructor!=Array){var c=a(e.containment)[0];if(!c){return}var d=a(e.containment).offset();var b=(a(c).css("overflow")!="hidden");this.containment=[d.left+(parseInt(a(c).css("borderLeftWidth"),10)||0)+(parseInt(a(c).css("paddingLeft"),10)||0)-this.margins.left,d.top+(parseInt(a(c).css("borderTopWidth"),10)||0)+(parseInt(a(c).css("paddingTop"),10)||0)-this.margins.top,d.left+(b?Math.max(c.scrollWidth,c.offsetWidth):c.offsetWidth)-(parseInt(a(c).css("borderLeftWidth"),10)||0)-(parseInt(a(c).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,d.top+(b?Math.max(c.scrollHeight,c.offsetHeight):c.offsetHeight)-(parseInt(a(c).css("borderTopWidth"),10)||0)-(parseInt(a(c).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}else{if(e.containment.constructor==Array){this.containment=e.containment}}},_convertPositionTo:function(f,h){if(!h){h=this.position}var c=f=="absolute"?1:-1;var e=this.options,b=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=(/(html|body)/i).test(b[0].tagName);return{top:(h.top+this.offset.relative.top*c+this.offset.parent.top*c-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():(g?0:b.scrollTop()))*c)),left:(h.left+this.offset.relative.left*c+this.offset.parent.left*c-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:b.scrollLeft())*c))}},_generatePosition:function(e){var h=this.options,b=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,i=(/(html|body)/i).test(b[0].tagName);if(this.cssPosition=="relative"&&!(this.scrollParent[0]!=document&&this.scrollParent[0]!=this.offsetParent[0])){this.offset.relative=this._getRelativeOffset()}var d=e.pageX;var c=e.pageY;if(this.originalPosition){if(this.containment){if(e.pageX-this.offset.click.left<this.containment[0]){d=this.containment[0]+this.offset.click.left}if(e.pageY-this.offset.click.top<this.containment[1]){c=this.containment[1]+this.offset.click.top}if(e.pageX-this.offset.click.left>this.containment[2]){d=this.containment[2]+this.offset.click.left}if(e.pageY-this.offset.click.top>this.containment[3]){c=this.containment[3]+this.offset.click.top}}if(h.grid){var g=this.originalPageY+Math.round((c-this.originalPageY)/h.grid[1])*h.grid[1];c=this.containment?(!(g-this.offset.click.top<this.containment[1]||g-this.offset.click.top>this.containment[3])?g:(!(g-this.offset.click.top<this.containment[1])?g-h.grid[1]:g+h.grid[1])):g;var f=this.originalPageX+Math.round((d-this.originalPageX)/h.grid[0])*h.grid[0];d=this.containment?(!(f-this.offset.click.left<this.containment[0]||f-this.offset.click.left>this.containment[2])?f:(!(f-this.offset.click.left<this.containment[0])?f-h.grid[0]:f+h.grid[0])):f}}return{top:(c-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():(i?0:b.scrollTop())))),left:(d-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():i?0:b.scrollLeft())))}},_clear:function(){this.helper.removeClass("ui-draggable-dragging");if(this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval){this.helper.remove()}this.helper=null;this.cancelHelperRemoval=false},_trigger:function(b,c,d){d=d||this._uiHash();a.ui.plugin.call(this,b,[c,d]);if(b=="drag"){this.positionAbs=this._convertPositionTo("absolute")}return a.widget.prototype._trigger.call(this,b,c,d)},plugins:{},_uiHash:function(b){return{helper:this.helper,position:this.position,absolutePosition:this.positionAbs,offset:this.positionAbs}}}));a.extend(a.ui.draggable,{version:"1.7.2",eventPrefix:"drag",defaults:{addClasses:true,appendTo:"parent",axis:false,cancel:":input,option",connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,delay:0,distance:1,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false}});a.ui.plugin.add("draggable","connectToSortable",{start:function(c,e){var d=a(this).data("draggable"),f=d.options,b=a.extend({},e,{item:d.element});d.sortables=[];a(f.connectToSortable).each(function(){var g=a.data(this,"sortable");if(g&&!g.options.disabled){d.sortables.push({instance:g,shouldRevert:g.options.revert});g._refreshItems();g._trigger("activate",c,b)}})},stop:function(c,e){var d=a(this).data("draggable"),b=a.extend({},e,{item:d.element});a.each(d.sortables,function(){if(this.instance.isOver){this.instance.isOver=0;d.cancelHelperRemoval=true;this.instance.cancelHelperRemoval=false;if(this.shouldRevert){this.instance.options.revert=true}this.instance._mouseStop(c);this.instance.options.helper=this.instance.options._helper;if(d.options.helper=="original"){this.instance.currentItem.css({top:"auto",left:"auto"})}}else{this.instance.cancelHelperRemoval=false;this.instance._trigger("deactivate",c,b)}})},drag:function(c,f){var e=a(this).data("draggable"),b=this;var d=function(i){var n=this.offset.click.top,m=this.offset.click.left;var g=this.positionAbs.top,k=this.positionAbs.left;var j=i.height,l=i.width;var p=i.top,h=i.left;return a.ui.isOver(g+n,k+m,p,h,j,l)};a.each(e.sortables,function(g){this.instance.positionAbs=e.positionAbs;this.instance.helperProportions=e.helperProportions;this.instance.offset.click=e.offset.click;if(this.instance._intersectsWith(this.instance.containerCache)){if(!this.instance.isOver){this.instance.isOver=1;this.instance.currentItem=a(b).clone().appendTo(this.instance.element).data("sortable-item",true);this.instance.options._helper=this.instance.options.helper;this.instance.options.helper=function(){return f.helper[0]};c.target=this.instance.currentItem[0];this.instance._mouseCapture(c,true);this.instance._mouseStart(c,true,true);this.instance.offset.click.top=e.offset.click.top;this.instance.offset.click.left=e.offset.click.left;this.instance.offset.parent.left-=e.offset.parent.left-this.instance.offset.parent.left;this.instance.offset.parent.top-=e.offset.parent.top-this.instance.offset.parent.top;e._trigger("toSortable",c);e.dropped=this.instance.element;e.currentItem=e.element;this.instance.fromOutside=e}if(this.instance.currentItem){this.instance._mouseDrag(c)}}else{if(this.instance.isOver){this.instance.isOver=0;this.instance.cancelHelperRemoval=true;this.instance.options.revert=false;this.instance._trigger("out",c,this.instance._uiHash(this.instance));this.instance._mouseStop(c,true);this.instance.options.helper=this.instance.options._helper;this.instance.currentItem.remove();if(this.instance.placeholder){this.instance.placeholder.remove()}e._trigger("fromSortable",c);e.dropped=false}}})}});a.ui.plugin.add("draggable","cursor",{start:function(c,d){var b=a("body"),e=a(this).data("draggable").options;if(b.css("cursor")){e._cursor=b.css("cursor")}b.css("cursor",e.cursor)},stop:function(b,c){var d=a(this).data("draggable").options;if(d._cursor){a("body").css("cursor",d._cursor)}}});a.ui.plugin.add("draggable","iframeFix",{start:function(b,c){var d=a(this).data("draggable").options;a(d.iframeFix===true?"iframe":d.iframeFix).each(function(){a('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1000}).css(a(this).offset()).appendTo("body")})},stop:function(b,c){a("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)})}});a.ui.plugin.add("draggable","opacity",{start:function(c,d){var b=a(d.helper),e=a(this).data("draggable").options;if(b.css("opacity")){e._opacity=b.css("opacity")}b.css("opacity",e.opacity)},stop:function(b,c){var d=a(this).data("draggable").options;if(d._opacity){a(c.helper).css("opacity",d._opacity)}}});a.ui.plugin.add("draggable","scroll",{start:function(c,d){var b=a(this).data("draggable");if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!="HTML"){b.overflowOffset=b.scrollParent.offset()}},drag:function(d,e){var c=a(this).data("draggable"),f=c.options,b=false;if(c.scrollParent[0]!=document&&c.scrollParent[0].tagName!="HTML"){if(!f.axis||f.axis!="x"){if((c.overflowOffset.top+c.scrollParent[0].offsetHeight)-d.pageY<f.scrollSensitivity){c.scrollParent[0].scrollTop=b=c.scrollParent[0].scrollTop+f.scrollSpeed}else{if(d.pageY-c.overflowOffset.top<f.scrollSensitivity){c.scrollParent[0].scrollTop=b=c.scrollParent[0].scrollTop-f.scrollSpeed}}}if(!f.axis||f.axis!="y"){if((c.overflowOffset.left+c.scrollParent[0].offsetWidth)-d.pageX<f.scrollSensitivity){c.scrollParent[0].scrollLeft=b=c.scrollParent[0].scrollLeft+f.scrollSpeed}else{if(d.pageX-c.overflowOffset.left<f.scrollSensitivity){c.scrollParent[0].scrollLeft=b=c.scrollParent[0].scrollLeft-f.scrollSpeed}}}}else{if(!f.axis||f.axis!="x"){if(d.pageY-a(document).scrollTop()<f.scrollSensitivity){b=a(document).scrollTop(a(document).scrollTop()-f.scrollSpeed)}else{if(a(window).height()-(d.pageY-a(document).scrollTop())<f.scrollSensitivity){b=a(document).scrollTop(a(document).scrollTop()+f.scrollSpeed)}}}if(!f.axis||f.axis!="y"){if(d.pageX-a(document).scrollLeft()<f.scrollSensitivity){b=a(document).scrollLeft(a(document).scrollLeft()-f.scrollSpeed)}else{if(a(window).width()-(d.pageX-a(document).scrollLeft())<f.scrollSensitivity){b=a(document).scrollLeft(a(document).scrollLeft()+f.scrollSpeed)}}}}if(b!==false&&a.ui.ddmanager&&!f.dropBehaviour){a.ui.ddmanager.prepareOffsets(c,d)}}});a.ui.plugin.add("draggable","snap",{start:function(c,d){var b=a(this).data("draggable"),e=b.options;b.snapElements=[];a(e.snap.constructor!=String?(e.snap.items||":data(draggable)"):e.snap).each(function(){var g=a(this);var f=g.offset();if(this!=b.element[0]){b.snapElements.push({item:this,width:g.outerWidth(),height:g.outerHeight(),top:f.top,left:f.left})}})},drag:function(u,p){var g=a(this).data("draggable"),q=g.options;var y=q.snapTolerance;var x=p.offset.left,w=x+g.helperProportions.width,f=p.offset.top,e=f+g.helperProportions.height;for(var v=g.snapElements.length-1;v>=0;v--){var s=g.snapElements[v].left,n=s+g.snapElements[v].width,m=g.snapElements[v].top,A=m+g.snapElements[v].height;if(!((s-y<x&&x<n+y&&m-y<f&&f<A+y)||(s-y<x&&x<n+y&&m-y<e&&e<A+y)||(s-y<w&&w<n+y&&m-y<f&&f<A+y)||(s-y<w&&w<n+y&&m-y<e&&e<A+y))){if(g.snapElements[v].snapping){(g.options.snap.release&&g.options.snap.release.call(g.element,u,a.extend(g._uiHash(),{snapItem:g.snapElements[v].item})))}g.snapElements[v].snapping=false;continue}if(q.snapMode!="inner"){var c=Math.abs(m-e)<=y;var z=Math.abs(A-f)<=y;var j=Math.abs(s-w)<=y;var k=Math.abs(n-x)<=y;if(c){p.position.top=g._convertPositionTo("relative",{top:m-g.helperProportions.height,left:0}).top-g.margins.top}if(z){p.position.top=g._convertPositionTo("relative",{top:A,left:0}).top-g.margins.top}if(j){p.position.left=g._convertPositionTo("relative",{top:0,left:s-g.helperProportions.width}).left-g.margins.left}if(k){p.position.left=g._convertPositionTo("relative",{top:0,left:n}).left-g.margins.left}}var h=(c||z||j||k);if(q.snapMode!="outer"){var c=Math.abs(m-f)<=y;var z=Math.abs(A-e)<=y;var j=Math.abs(s-x)<=y;var k=Math.abs(n-w)<=y;if(c){p.position.top=g._convertPositionTo("relative",{top:m,left:0}).top-g.margins.top}if(z){p.position.top=g._convertPositionTo("relative",{top:A-g.helperProportions.height,left:0}).top-g.margins.top}if(j){p.position.left=g._convertPositionTo("relative",{top:0,left:s}).left-g.margins.left}if(k){p.position.left=g._convertPositionTo("relative",{top:0,left:n-g.helperProportions.width}).left-g.margins.left}}if(!g.snapElements[v].snapping&&(c||z||j||k||h)){(g.options.snap.snap&&g.options.snap.snap.call(g.element,u,a.extend(g._uiHash(),{snapItem:g.snapElements[v].item})))}g.snapElements[v].snapping=(c||z||j||k||h)}}});a.ui.plugin.add("draggable","stack",{start:function(b,c){var e=a(this).data("draggable").options;var d=a.makeArray(a(e.stack.group)).sort(function(g,f){return(parseInt(a(g).css("zIndex"),10)||e.stack.min)-(parseInt(a(f).css("zIndex"),10)||e.stack.min)});a(d).each(function(f){this.style.zIndex=e.stack.min+f});this[0].style.zIndex=e.stack.min+d.length}});a.ui.plugin.add("draggable","zIndex",{start:function(c,d){var b=a(d.helper),e=a(this).data("draggable").options;if(b.css("zIndex")){e._zIndex=b.css("zIndex")}b.css("zIndex",e.zIndex)},stop:function(b,c){var d=a(this).data("draggable").options;if(d._zIndex){a(c.helper).css("zIndex",d._zIndex)}}})})(jQuery);;(function(a){a.widget("ui.droppable",{_init:function(){var c=this.options,b=c.accept;this.isover=0;this.isout=1;this.options.accept=this.options.accept&&a.isFunction(this.options.accept)?this.options.accept:function(e){return e.is(b)};this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};a.ui.ddmanager.droppables[this.options.scope]=a.ui.ddmanager.droppables[this.options.scope]||[];a.ui.ddmanager.droppables[this.options.scope].push(this);(this.options.addClasses&&this.element.addClass("ui-droppable"))},destroy:function(){var b=a.ui.ddmanager.droppables[this.options.scope];for(var c=0;c<b.length;c++){if(b[c]==this){b.splice(c,1)}}this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable")},_setData:function(b,c){if(b=="accept"){this.options.accept=c&&a.isFunction(c)?c:function(e){return e.is(c)}}else{a.widget.prototype._setData.apply(this,arguments)}},_activate:function(c){var b=a.ui.ddmanager.current;if(this.options.activeClass){this.element.addClass(this.options.activeClass)}(b&&this._trigger("activate",c,this.ui(b)))},_deactivate:function(c){var b=a.ui.ddmanager.current;if(this.options.activeClass){this.element.removeClass(this.options.activeClass)}(b&&this._trigger("deactivate",c,this.ui(b)))},_over:function(c){var b=a.ui.ddmanager.current;if(!b||(b.currentItem||b.element)[0]==this.element[0]){return}if(this.options.accept.call(this.element[0],(b.currentItem||b.element))){if(this.options.hoverClass){this.element.addClass(this.options.hoverClass)}this._trigger("over",c,this.ui(b))}},_out:function(c){var b=a.ui.ddmanager.current;if(!b||(b.currentItem||b.element)[0]==this.element[0]){return}if(this.options.accept.call(this.element[0],(b.currentItem||b.element))){if(this.options.hoverClass){this.element.removeClass(this.options.hoverClass)}this._trigger("out",c,this.ui(b))}},_drop:function(c,d){var b=d||a.ui.ddmanager.current;if(!b||(b.currentItem||b.element)[0]==this.element[0]){return false}var e=false;this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var f=a.data(this,"droppable");if(f.options.greedy&&a.ui.intersect(b,a.extend(f,{offset:f.element.offset()}),f.options.tolerance)){e=true;return false}});if(e){return false}if(this.options.accept.call(this.element[0],(b.currentItem||b.element))){if(this.options.activeClass){this.element.removeClass(this.options.activeClass)}if(this.options.hoverClass){this.element.removeClass(this.options.hoverClass)}this._trigger("drop",c,this.ui(b));return this.element}return false},ui:function(b){return{draggable:(b.currentItem||b.element),helper:b.helper,position:b.position,absolutePosition:b.positionAbs,offset:b.positionAbs}}});a.extend(a.ui.droppable,{version:"1.7.2",eventPrefix:"drop",defaults:{accept:"*",activeClass:false,addClasses:true,greedy:false,hoverClass:false,scope:"default",tolerance:"intersect"}});a.ui.intersect=function(q,j,o){if(!j.offset){return false}var e=(q.positionAbs||q.position.absolute).left,d=e+q.helperProportions.width,n=(q.positionAbs||q.position.absolute).top,m=n+q.helperProportions.height;var g=j.offset.left,c=g+j.proportions.width,p=j.offset.top,k=p+j.proportions.height;switch(o){case"fit":return(g<e&&d<c&&p<n&&m<k);break;case"intersect":return(g<e+(q.helperProportions.width/2)&&d-(q.helperProportions.width/2)<c&&p<n+(q.helperProportions.height/2)&&m-(q.helperProportions.height/2)<k);break;case"pointer":var h=((q.positionAbs||q.position.absolute).left+(q.clickOffset||q.offset.click).left),i=((q.positionAbs||q.position.absolute).top+(q.clickOffset||q.offset.click).top),f=a.ui.isOver(i,h,p,g,j.proportions.height,j.proportions.width);return f;break;case"touch":return((n>=p&&n<=k)||(m>=p&&m<=k)||(n<p&&m>k))&&((e>=g&&e<=c)||(d>=g&&d<=c)||(e<g&&d>c));break;default:return false;break}};a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(e,g){var b=a.ui.ddmanager.droppables[e.options.scope];var f=g?g.type:null;var h=(e.currentItem||e.element).find(":data(droppable)").andSelf();droppablesLoop:for(var d=0;d<b.length;d++){if(b[d].options.disabled||(e&&!b[d].options.accept.call(b[d].element[0],(e.currentItem||e.element)))){continue}for(var c=0;c<h.length;c++){if(h[c]==b[d].element[0]){b[d].proportions.height=0;continue droppablesLoop}}b[d].visible=b[d].element.css("display")!="none";if(!b[d].visible){continue}b[d].offset=b[d].element.offset();b[d].proportions={width:b[d].element[0].offsetWidth,height:b[d].element[0].offsetHeight};if(f=="mousedown"){b[d]._activate.call(b[d],g)}}},drop:function(b,c){var d=false;a.each(a.ui.ddmanager.droppables[b.options.scope],function(){if(!this.options){return}if(!this.options.disabled&&this.visible&&a.ui.intersect(b,this,this.options.tolerance)){d=this._drop.call(this,c)}if(!this.options.disabled&&this.visible&&this.options.accept.call(this.element[0],(b.currentItem||b.element))){this.isout=1;this.isover=0;this._deactivate.call(this,c)}});return d},drag:function(b,c){if(b.options.refreshPositions){a.ui.ddmanager.prepareOffsets(b,c)}a.each(a.ui.ddmanager.droppables[b.options.scope],function(){if(this.options.disabled||this.greedyChild||!this.visible){return}var e=a.ui.intersect(b,this,this.options.tolerance);var g=!e&&this.isover==1?"isout":(e&&this.isover==0?"isover":null);if(!g){return}var f;if(this.options.greedy){var d=this.element.parents(":data(droppable):eq(0)");if(d.length){f=a.data(d[0],"droppable");f.greedyChild=(g=="isover"?1:0)}}if(f&&g=="isover"){f.isover=0;f.isout=1;f._out.call(f,c)}this[g]=1;this[g=="isout"?"isover":"isout"]=0;this[g=="isover"?"_over":"_out"].call(this,c);if(f&&g=="isout"){f.isout=0;f.isover=1;f._over.call(f,c)}})}}})(jQuery);;(function(c){c.widget("ui.resizable",c.extend({},c.ui.mouse,{_init:function(){var e=this,j=this.options;this.element.addClass("ui-resizable");c.extend(this,{_aspectRatio:!!(j.aspectRatio),aspectRatio:j.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:j.helper||j.ghost||j.animate?j.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){if(/relative/.test(this.element.css("position"))&&c.browser.opera){this.element.css({position:"relative",top:"auto",left:"auto"})}this.element.wrap(c('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=j.handles||(!c(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all"){this.handles="n,e,s,w,se,sw,ne,nw"}var k=this.handles.split(",");this.handles={};for(var f=0;f<k.length;f++){var h=c.trim(k[f]),d="ui-resizable-"+h;var g=c('<div class="ui-resizable-handle '+d+'"></div>');if(/sw|se|ne|nw/.test(h)){g.css({zIndex:++j.zIndex})}if("se"==h){g.addClass("ui-icon ui-icon-gripsmall-diagonal-se")}this.handles[h]=".ui-resizable-"+h;this.element.append(g)}}this._renderAxis=function(p){p=p||this.element;for(var m in this.handles){if(this.handles[m].constructor==String){this.handles[m]=c(this.handles[m],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var n=c(this.handles[m],this.element),o=0;o=/sw|ne|nw|se|n|s/.test(m)?n.outerHeight():n.outerWidth();var l=["padding",/ne|nw|n/.test(m)?"Top":/se|sw|s/.test(m)?"Bottom":/^e$/.test(m)?"Right":"Left"].join("");p.css(l,o);this._proportionallyResize()}if(!c(this.handles[m]).length){continue}}};this._renderAxis(this.element);this._handles=c(".ui-resizable-handle",this.element).disableSelection();this._handles.mouseover(function(){if(!e.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}e.axis=i&&i[1]?i[1]:"se"}});if(j.autoHide){this._handles.hide();c(this.element).addClass("ui-resizable-autohide").hover(function(){c(this).removeClass("ui-resizable-autohide");e._handles.show()},function(){if(!e.resizing){c(this).addClass("ui-resizable-autohide");e._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var d=function(f){c(f).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){d(this.element);var e=this.element;e.parent().append(this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")})).end().remove()}this.originalElement.css("resize",this.originalResizeStyle);d(this.originalElement)},_mouseCapture:function(e){var f=false;for(var d in this.handles){if(c(this.handles[d])[0]==e.target){f=true}}return this.options.disabled||!!f},_mouseStart:function(f){var i=this.options,e=this.element.position(),d=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(d.is(".ui-draggable")||(/absolute/).test(d.css("position"))){d.css({position:"absolute",top:e.top,left:e.left})}if(c.browser.opera&&(/relative/).test(d.css("position"))){d.css({position:"relative",top:"auto",left:"auto"})}this._renderProxy();var j=b(this.helper.css("left")),g=b(this.helper.css("top"));if(i.containment){j+=c(i.containment).scrollLeft()||0;g+=c(i.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:j,top:g};this.size=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalSize=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalPosition={left:j,top:g};this.sizeDiff={width:d.outerWidth()-d.width(),height:d.outerHeight()-d.height()};this.originalMousePosition={left:f.pageX,top:f.pageY};this.aspectRatio=(typeof i.aspectRatio=="number")?i.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var h=c(".ui-resizable-"+this.axis).css("cursor");c("body").css("cursor",h=="auto"?this.axis+"-resize":h);d.addClass("ui-resizable-resizing");this._propagate("start",f);return true},_mouseDrag:function(d){var g=this.helper,f=this.options,l={},p=this,i=this.originalMousePosition,m=this.axis;var q=(d.pageX-i.left)||0,n=(d.pageY-i.top)||0;var h=this._change[m];if(!h){return false}var k=h.apply(this,[d,q,n]),j=c.browser.msie&&c.browser.version<7,e=this.sizeDiff;if(this._aspectRatio||d.shiftKey){k=this._updateRatio(k,d)}k=this._respectSize(k,d);this._propagate("resize",d);g.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(k);this._trigger("resize",d,this.ui());return false},_mouseStop:function(g){this.resizing=false;var h=this.options,l=this;if(this._helper){var f=this._proportionallyResizeElements,d=f.length&&(/textarea/i).test(f[0].nodeName),e=d&&c.ui.hasScroll(f[0],"left")?0:l.sizeDiff.height,j=d?0:l.sizeDiff.width;var m={width:(l.size.width-j),height:(l.size.height-e)},i=(parseInt(l.element.css("left"),10)+(l.position.left-l.originalPosition.left))||null,k=(parseInt(l.element.css("top"),10)+(l.position.top-l.originalPosition.top))||null;if(!h.animate){this.element.css(c.extend(m,{top:k,left:i}))}l.helper.height(l.size.height);l.helper.width(l.size.width);if(this._helper&&!h.animate){this._proportionallyResize()}}c("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",g);if(this._helper){this.helper.remove()}return false},_updateCache:function(d){var e=this.options;this.offset=this.helper.offset();if(a(d.left)){this.position.left=d.left}if(a(d.top)){this.position.top=d.top}if(a(d.height)){this.size.height=d.height}if(a(d.width)){this.size.width=d.width}},_updateRatio:function(g,f){var h=this.options,i=this.position,e=this.size,d=this.axis;if(g.height){g.width=(e.height*this.aspectRatio)}else{if(g.width){g.height=(e.width/this.aspectRatio)}}if(d=="sw"){g.left=i.left+(e.width-g.width);g.top=null}if(d=="nw"){g.top=i.top+(e.height-g.height);g.left=i.left+(e.width-g.width)}return g},_respectSize:function(k,f){var i=this.helper,h=this.options,q=this._aspectRatio||f.shiftKey,p=this.axis,s=a(k.width)&&h.maxWidth&&(h.maxWidth<k.width),l=a(k.height)&&h.maxHeight&&(h.maxHeight<k.height),g=a(k.width)&&h.minWidth&&(h.minWidth>k.width),r=a(k.height)&&h.minHeight&&(h.minHeight>k.height);if(g){k.width=h.minWidth}if(r){k.height=h.minHeight}if(s){k.width=h.maxWidth}if(l){k.height=h.maxHeight}var e=this.originalPosition.left+this.originalSize.width,n=this.position.top+this.size.height;var j=/sw|nw|w/.test(p),d=/nw|ne|n/.test(p);if(g&&j){k.left=e-h.minWidth}if(s&&j){k.left=e-h.maxWidth}if(r&&d){k.top=n-h.minHeight}if(l&&d){k.top=n-h.maxHeight}var m=!k.width&&!k.height;if(m&&!k.left&&k.top){k.top=null}else{if(m&&!k.top&&k.left){k.left=null}}return k},_proportionallyResize:function(){var j=this.options;if(!this._proportionallyResizeElements.length){return}var f=this.helper||this.element;for(var e=0;e<this._proportionallyResizeElements.length;e++){var g=this._proportionallyResizeElements[e];if(!this.borderDif){var d=[g.css("borderTopWidth"),g.css("borderRightWidth"),g.css("borderBottomWidth"),g.css("borderLeftWidth")],h=[g.css("paddingTop"),g.css("paddingRight"),g.css("paddingBottom"),g.css("paddingLeft")];this.borderDif=c.map(d,function(k,m){var l=parseInt(k,10)||0,n=parseInt(h[m],10)||0;return l+n})}if(c.browser.msie&&!(!(c(f).is(":hidden")||c(f).parents(":hidden").length))){continue}g.css({height:(f.height()-this.borderDif[0]-this.borderDif[2])||0,width:(f.width()-this.borderDif[1]-this.borderDif[3])||0})}},_renderProxy:function(){var e=this.element,h=this.options;this.elementOffset=e.offset();if(this._helper){this.helper=this.helper||c('<div style="overflow:hidden;"></div>');var d=c.browser.msie&&c.browser.version<7,f=(d?1:0),g=(d?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+g,height:this.element.outerHeight()+g,position:"absolute",left:this.elementOffset.left-f+"px",top:this.elementOffset.top-f+"px",zIndex:++h.zIndex});this.helper.appendTo("body").disableSelection()}else{this.helper=this.element}},_change:{e:function(f,e,d){return{width:this.originalSize.width+e}},w:function(g,e,d){var i=this.options,f=this.originalSize,h=this.originalPosition;return{left:h.left+e,width:f.width-e}},n:function(g,e,d){var i=this.options,f=this.originalSize,h=this.originalPosition;return{top:h.top+d,height:f.height-d}},s:function(f,e,d){return{height:this.originalSize.height+d}},se:function(f,e,d){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[f,e,d]))},sw:function(f,e,d){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[f,e,d]))},ne:function(f,e,d){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[f,e,d]))},nw:function(f,e,d){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[f,e,d]))}},_propagate:function(e,d){c.ui.plugin.call(this,e,[d,this.ui()]);(e!="resize"&&this._trigger(e,d,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}));c.extend(c.ui.resizable,{version:"1.7.2",eventPrefix:"resize",defaults:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,cancel:":input,option",containment:false,delay:0,distance:1,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000}});c.ui.plugin.add("resizable","alsoResize",{start:function(e,f){var d=c(this).data("resizable"),g=d.options;_store=function(h){c(h).each(function(){c(this).data("resizable-alsoresize",{width:parseInt(c(this).width(),10),height:parseInt(c(this).height(),10),left:parseInt(c(this).css("left"),10),top:parseInt(c(this).css("top"),10)})})};if(typeof(g.alsoResize)=="object"&&!g.alsoResize.parentNode){if(g.alsoResize.length){g.alsoResize=g.alsoResize[0];_store(g.alsoResize)}else{c.each(g.alsoResize,function(h,i){_store(h)})}}else{_store(g.alsoResize)}},resize:function(f,h){var e=c(this).data("resizable"),i=e.options,g=e.originalSize,k=e.originalPosition;var j={height:(e.size.height-g.height)||0,width:(e.size.width-g.width)||0,top:(e.position.top-k.top)||0,left:(e.position.left-k.left)||0},d=function(l,m){c(l).each(function(){var p=c(this),q=c(this).data("resizable-alsoresize"),o={},n=m&&m.length?m:["width","height","top","left"];c.each(n||["width","height","top","left"],function(r,t){var s=(q[t]||0)+(j[t]||0);if(s&&s>=0){o[t]=s||null}});if(/relative/.test(p.css("position"))&&c.browser.opera){e._revertToRelativePosition=true;p.css({position:"absolute",top:"auto",left:"auto"})}p.css(o)})};if(typeof(i.alsoResize)=="object"&&!i.alsoResize.nodeType){c.each(i.alsoResize,function(l,m){d(l,m)})}else{d(i.alsoResize)}},stop:function(e,f){var d=c(this).data("resizable");if(d._revertToRelativePosition&&c.browser.opera){d._revertToRelativePosition=false;el.css({position:"relative"})}c(this).removeData("resizable-alsoresize-start")}});c.ui.plugin.add("resizable","animate",{stop:function(h,m){var n=c(this).data("resizable"),i=n.options;var g=n._proportionallyResizeElements,d=g.length&&(/textarea/i).test(g[0].nodeName),e=d&&c.ui.hasScroll(g[0],"left")?0:n.sizeDiff.height,k=d?0:n.sizeDiff.width;var f={width:(n.size.width-k),height:(n.size.height-e)},j=(parseInt(n.element.css("left"),10)+(n.position.left-n.originalPosition.left))||null,l=(parseInt(n.element.css("top"),10)+(n.position.top-n.originalPosition.top))||null;n.element.animate(c.extend(f,l&&j?{top:l,left:j}:{}),{duration:i.animateDuration,easing:i.animateEasing,step:function(){var o={width:parseInt(n.element.css("width"),10),height:parseInt(n.element.css("height"),10),top:parseInt(n.element.css("top"),10),left:parseInt(n.element.css("left"),10)};if(g&&g.length){c(g[0]).css({width:o.width,height:o.height})}n._updateCache(o);n._propagate("resize",h)}})}});c.ui.plugin.add("resizable","containment",{start:function(e,q){var s=c(this).data("resizable"),i=s.options,k=s.element;var f=i.containment,j=(f instanceof c)?f.get(0):(/parent/.test(f))?k.parent().get(0):f;if(!j){return}s.containerElement=c(j);if(/document/.test(f)||f==document){s.containerOffset={left:0,top:0};s.containerPosition={left:0,top:0};s.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var m=c(j),h=[];c(["Top","Right","Left","Bottom"]).each(function(p,o){h[p]=b(m.css("padding"+o))});s.containerOffset=m.offset();s.containerPosition=m.position();s.containerSize={height:(m.innerHeight()-h[3]),width:(m.innerWidth()-h[1])};var n=s.containerOffset,d=s.containerSize.height,l=s.containerSize.width,g=(c.ui.hasScroll(j,"left")?j.scrollWidth:l),r=(c.ui.hasScroll(j)?j.scrollHeight:d);s.parentData={element:j,left:n.left,top:n.top,width:g,height:r}}},resize:function(f,p){var s=c(this).data("resizable"),h=s.options,e=s.containerSize,n=s.containerOffset,l=s.size,m=s.position,q=s._aspectRatio||f.shiftKey,d={top:0,left:0},g=s.containerElement;if(g[0]!=document&&(/static/).test(g.css("position"))){d=n}if(m.left<(s._helper?n.left:0)){s.size.width=s.size.width+(s._helper?(s.position.left-n.left):(s.position.left-d.left));if(q){s.size.height=s.size.width/h.aspectRatio}s.position.left=h.helper?n.left:0}if(m.top<(s._helper?n.top:0)){s.size.height=s.size.height+(s._helper?(s.position.top-n.top):s.position.top);if(q){s.size.width=s.size.height*h.aspectRatio}s.position.top=s._helper?n.top:0}s.offset.left=s.parentData.left+s.position.left;s.offset.top=s.parentData.top+s.position.top;var k=Math.abs((s._helper?s.offset.left-d.left:(s.offset.left-d.left))+s.sizeDiff.width),r=Math.abs((s._helper?s.offset.top-d.top:(s.offset.top-n.top))+s.sizeDiff.height);var j=s.containerElement.get(0)==s.element.parent().get(0),i=/relative|absolute/.test(s.containerElement.css("position"));if(j&&i){k-=s.parentData.left}if(k+s.size.width>=s.parentData.width){s.size.width=s.parentData.width-k;if(q){s.size.height=s.size.width/s.aspectRatio}}if(r+s.size.height>=s.parentData.height){s.size.height=s.parentData.height-r;if(q){s.size.width=s.size.height*s.aspectRatio}}},stop:function(e,m){var p=c(this).data("resizable"),f=p.options,k=p.position,l=p.containerOffset,d=p.containerPosition,g=p.containerElement;var i=c(p.helper),q=i.offset(),n=i.outerWidth()-p.sizeDiff.width,j=i.outerHeight()-p.sizeDiff.height;if(p._helper&&!f.animate&&(/relative/).test(g.css("position"))){c(this).css({left:q.left-d.left-l.left,width:n,height:j})}if(p._helper&&!f.animate&&(/static/).test(g.css("position"))){c(this).css({left:q.left-d.left-l.left,width:n,height:j})}}});c.ui.plugin.add("resizable","ghost",{start:function(f,g){var d=c(this).data("resizable"),h=d.options,e=d.size;d.ghost=d.originalElement.clone();d.ghost.css({opacity:0.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof h.ghost=="string"?h.ghost:"");d.ghost.appendTo(d.helper)},resize:function(e,f){var d=c(this).data("resizable"),g=d.options;if(d.ghost){d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})}},stop:function(e,f){var d=c(this).data("resizable"),g=d.options;if(d.ghost&&d.helper){d.helper.get(0).removeChild(d.ghost.get(0))}}});c.ui.plugin.add("resizable","grid",{resize:function(d,l){var n=c(this).data("resizable"),g=n.options,j=n.size,h=n.originalSize,i=n.originalPosition,m=n.axis,k=g._aspectRatio||d.shiftKey;g.grid=typeof g.grid=="number"?[g.grid,g.grid]:g.grid;var f=Math.round((j.width-h.width)/(g.grid[0]||1))*(g.grid[0]||1),e=Math.round((j.height-h.height)/(g.grid[1]||1))*(g.grid[1]||1);if(/^(se|s|e)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e}else{if(/^(ne)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e;n.position.top=i.top-e}else{if(/^(sw)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e;n.position.left=i.left-f}else{n.size.width=h.width+f;n.size.height=h.height+e;n.position.top=i.top-e;n.position.left=i.left-f}}}}});var b=function(d){return parseInt(d,10)||0};var a=function(d){return!isNaN(parseInt(d,10))}})(jQuery);;(function(a){a.widget("ui.selectable",a.extend({},a.ui.mouse,{_init:function(){var b=this;this.element.addClass("ui-selectable");this.dragged=false;var c;this.refresh=function(){c=a(b.options.filter,b.element[0]);c.each(function(){var d=a(this);var e=d.offset();a.data(this,"selectable-item",{element:this,$element:d,left:e.left,top:e.top,right:e.left+d.outerWidth(),bottom:e.top+d.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"),selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecting")})})};this.refresh();this.selectees=c.addClass("ui-selectee");this._mouseInit();this.helper=a(document.createElement("div")).css({border:"1px dotted black"}).addClass("ui-selectable-helper")},destroy:function(){this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy()},_mouseStart:function(d){var b=this;this.opos=[d.pageX,d.pageY];if(this.options.disabled){return}var c=this.options;this.selectees=a(c.filter,this.element[0]);this._trigger("start",d);a(c.appendTo).append(this.helper);this.helper.css({"z-index":100,position:"absolute",left:d.clientX,top:d.clientY,width:0,height:0});if(c.autoRefresh){this.refresh()}this.selectees.filter(".ui-selected").each(function(){var e=a.data(this,"selectable-item");e.startselected=true;if(!d.metaKey){e.$element.removeClass("ui-selected");e.selected=false;e.$element.addClass("ui-unselecting");e.unselecting=true;b._trigger("unselecting",d,{unselecting:e.element})}});a(d.target).parents().andSelf().each(function(){var e=a.data(this,"selectable-item");if(e){e.$element.removeClass("ui-unselecting").addClass("ui-selecting");e.unselecting=false;e.selecting=true;e.selected=true;b._trigger("selecting",d,{selecting:e.element});return false}})},_mouseDrag:function(i){var c=this;this.dragged=true;if(this.options.disabled){return}var e=this.options;var d=this.opos[0],h=this.opos[1],b=i.pageX,g=i.pageY;if(d>b){var f=b;b=d;d=f}if(h>g){var f=g;g=h;h=f}this.helper.css({left:d,top:h,width:b-d,height:g-h});this.selectees.each(function(){var j=a.data(this,"selectable-item");if(!j||j.element==c.element[0]){return}var k=false;if(e.tolerance=="touch"){k=(!(j.left>b||j.right<d||j.top>g||j.bottom<h))}else{if(e.tolerance=="fit"){k=(j.left>d&&j.right<b&&j.top>h&&j.bottom<g)}}if(k){if(j.selected){j.$element.removeClass("ui-selected");j.selected=false}if(j.unselecting){j.$element.removeClass("ui-unselecting");j.unselecting=false}if(!j.selecting){j.$element.addClass("ui-selecting");j.selecting=true;c._trigger("selecting",i,{selecting:j.element})}}else{if(j.selecting){if(i.metaKey&&j.startselected){j.$element.removeClass("ui-selecting");j.selecting=false;j.$element.addClass("ui-selected");j.selected=true}else{j.$element.removeClass("ui-selecting");j.selecting=false;if(j.startselected){j.$element.addClass("ui-unselecting");j.unselecting=true}c._trigger("unselecting",i,{unselecting:j.element})}}if(j.selected){if(!i.metaKey&&!j.startselected){j.$element.removeClass("ui-selected");j.selected=false;j.$element.addClass("ui-unselecting");j.unselecting=true;c._trigger("unselecting",i,{unselecting:j.element})}}}});return false},_mouseStop:function(d){var b=this;this.dragged=false;var c=this.options;a(".ui-unselecting",this.element[0]).each(function(){var e=a.data(this,"selectable-item");e.$element.removeClass("ui-unselecting");e.unselecting=false;e.startselected=false;b._trigger("unselected",d,{unselected:e.element})});a(".ui-selecting",this.element[0]).each(function(){var e=a.data(this,"selectable-item");e.$element.removeClass("ui-selecting").addClass("ui-selected");e.selecting=false;e.selected=true;e.startselected=true;b._trigger("selected",d,{selected:e.element})});this._trigger("stop",d);this.helper.remove();return false}}));a.extend(a.ui.selectable,{version:"1.7.2",defaults:{appendTo:"body",autoRefresh:true,cancel:":input,option",delay:0,distance:0,filter:"*",tolerance:"touch"}})})(jQuery);;(function(a){a.widget("ui.sortable",a.extend({},a.ui.mouse,{_init:function(){var b=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;this.offset=this.element.offset();this._mouseInit()},destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable");this._mouseDestroy();for(var b=this.items.length-1;b>=0;b--){this.items[b].item.removeData("sortable-item")}},_mouseCapture:function(e,f){if(this.reverting){return false}if(this.options.disabled||this.options.type=="static"){return false}this._refreshItems(e);var d=null,c=this,b=a(e.target).parents().each(function(){if(a.data(this,"sortable-item")==c){d=a(this);return false}});if(a.data(e.target,"sortable-item")==c){d=a(e.target)}if(!d){return false}if(this.options.handle&&!f){var g=false;a(this.options.handle,d).find("*").andSelf().each(function(){if(this==e.target){g=true}});if(!g){return false}}this.currentItem=d;this._removeCurrentsFromItems();return true},_mouseStart:function(e,f,b){var g=this.options,c=this;this.currentContainer=this;this.refreshPositions();this.helper=this._createHelper(e);this._cacheHelperProportions();this._cacheMargins();this.scrollParent=this.helper.scrollParent();this.offset=this.currentItem.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};this.helper.css("position","absolute");this.cssPosition=this.helper.css("position");a.extend(this.offset,{click:{left:e.pageX-this.offset.left,top:e.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(e);this.originalPageX=e.pageX;this.originalPageY=e.pageY;if(g.cursorAt){this._adjustOffsetFromHelper(g.cursorAt)}this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]};if(this.helper[0]!=this.currentItem[0]){this.currentItem.hide()}this._createPlaceholder();if(g.containment){this._setContainment()}if(g.cursor){if(a("body").css("cursor")){this._storedCursor=a("body").css("cursor")}a("body").css("cursor",g.cursor)}if(g.opacity){if(this.helper.css("opacity")){this._storedOpacity=this.helper.css("opacity")}this.helper.css("opacity",g.opacity)}if(g.zIndex){if(this.helper.css("zIndex")){this._storedZIndex=this.helper.css("zIndex")}this.helper.css("zIndex",g.zIndex)}if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){this.overflowOffset=this.scrollParent.offset()}this._trigger("start",e,this._uiHash());if(!this._preserveHelperProportions){this._cacheHelperProportions()}if(!b){for(var d=this.containers.length-1;d>=0;d--){this.containers[d]._trigger("activate",e,c._uiHash(this))}}if(a.ui.ddmanager){a.ui.ddmanager.current=this}if(a.ui.ddmanager&&!g.dropBehaviour){a.ui.ddmanager.prepareOffsets(this,e)}this.dragging=true;this.helper.addClass("ui-sortable-helper");this._mouseDrag(e);return true},_mouseDrag:function(f){this.position=this._generatePosition(f);this.positionAbs=this._convertPositionTo("absolute");if(!this.lastPositionAbs){this.lastPositionAbs=this.positionAbs}if(this.options.scroll){var g=this.options,b=false;if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){if((this.overflowOffset.top+this.scrollParent[0].offsetHeight)-f.pageY<g.scrollSensitivity){this.scrollParent[0].scrollTop=b=this.scrollParent[0].scrollTop+g.scrollSpeed}else{if(f.pageY-this.overflowOffset.top<g.scrollSensitivity){this.scrollParent[0].scrollTop=b=this.scrollParent[0].scrollTop-g.scrollSpeed}}if((this.overflowOffset.left+this.scrollParent[0].offsetWidth)-f.pageX<g.scrollSensitivity){this.scrollParent[0].scrollLeft=b=this.scrollParent[0].scrollLeft+g.scrollSpeed}else{if(f.pageX-this.overflowOffset.left<g.scrollSensitivity){this.scrollParent[0].scrollLeft=b=this.scrollParent[0].scrollLeft-g.scrollSpeed}}}else{if(f.pageY-a(document).scrollTop()<g.scrollSensitivity){b=a(document).scrollTop(a(document).scrollTop()-g.scrollSpeed)}else{if(a(window).height()-(f.pageY-a(document).scrollTop())<g.scrollSensitivity){b=a(document).scrollTop(a(document).scrollTop()+g.scrollSpeed)}}if(f.pageX-a(document).scrollLeft()<g.scrollSensitivity){b=a(document).scrollLeft(a(document).scrollLeft()-g.scrollSpeed)}else{if(a(window).width()-(f.pageX-a(document).scrollLeft())<g.scrollSensitivity){b=a(document).scrollLeft(a(document).scrollLeft()+g.scrollSpeed)}}}if(b!==false&&a.ui.ddmanager&&!g.dropBehaviour){a.ui.ddmanager.prepareOffsets(this,f)}}this.positionAbs=this._convertPositionTo("absolute");if(!this.options.axis||this.options.axis!="y"){this.helper[0].style.left=this.position.left+"px"}if(!this.options.axis||this.options.axis!="x"){this.helper[0].style.top=this.position.top+"px"}for(var d=this.items.length-1;d>=0;d--){var e=this.items[d],c=e.item[0],h=this._intersectsWithPointer(e);if(!h){continue}if(c!=this.currentItem[0]&&this.placeholder[h==1?"next":"prev"]()[0]!=c&&!a.ui.contains(this.placeholder[0],c)&&(this.options.type=="semi-dynamic"?!a.ui.contains(this.element[0],c):true)){this.direction=h==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(e)){this._rearrange(f,e)}else{break}this._trigger("change",f,this._uiHash());break}}this._contactContainers(f);if(a.ui.ddmanager){a.ui.ddmanager.drag(this,f)}this._trigger("sort",f,this._uiHash());this.lastPositionAbs=this.positionAbs;return false},_mouseStop:function(c,d){if(!c){return}if(a.ui.ddmanager&&!this.options.dropBehaviour){a.ui.ddmanager.drop(this,c)}if(this.options.revert){var b=this;var e=b.placeholder.offset();b.reverting=true;a(this.helper).animate({left:e.left-this.offset.parent.left-b.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:e.top-this.offset.parent.top-b.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){b._clear(c)})}else{this._clear(c,d)}return false},cancel:function(){var b=this;if(this.dragging){this._mouseUp();if(this.options.helper=="original"){this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else{this.currentItem.show()}for(var c=this.containers.length-1;c>=0;c--){this.containers[c]._trigger("deactivate",null,b._uiHash(this));if(this.containers[c].containerCache.over){this.containers[c]._trigger("out",null,b._uiHash(this));this.containers[c].containerCache.over=0}}}if(this.placeholder[0].parentNode){this.placeholder[0].parentNode.removeChild(this.placeholder[0])}if(this.options.helper!="original"&&this.helper&&this.helper[0].parentNode){this.helper.remove()}a.extend(this,{helper:null,dragging:false,reverting:false,_noFinalSort:null});if(this.domPosition.prev){a(this.domPosition.prev).after(this.currentItem)}else{a(this.domPosition.parent).prepend(this.currentItem)}return true},serialize:function(d){var b=this._getItemsAsjQuery(d&&d.connected);var c=[];d=d||{};a(b).each(function(){var e=(a(d.item||this).attr(d.attribute||"id")||"").match(d.expression||(/(.+)[-=_](.+)/));if(e){c.push((d.key||e[1]+"[]")+"="+(d.key&&d.expression?e[1]:e[2]))}});return c.join("&")},toArray:function(d){var b=this._getItemsAsjQuery(d&&d.connected);var c=[];d=d||{};b.each(function(){c.push(a(d.item||this).attr(d.attribute||"id")||"")});return c},_intersectsWith:function(m){var e=this.positionAbs.left,d=e+this.helperProportions.width,k=this.positionAbs.top,j=k+this.helperProportions.height;var f=m.left,c=f+m.width,n=m.top,i=n+m.height;var o=this.offset.click.top,h=this.offset.click.left;var g=(k+o)>n&&(k+o)<i&&(e+h)>f&&(e+h)<c;if(this.options.tolerance=="pointer"||this.options.forcePointerForContainers||(this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>m[this.floating?"width":"height"])){return g}else{return(f<e+(this.helperProportions.width/2)&&d-(this.helperProportions.width/2)<c&&n<k+(this.helperProportions.height/2)&&j-(this.helperProportions.height/2)<i)}},_intersectsWithPointer:function(d){var e=a.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,d.top,d.height),c=a.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,d.left,d.width),g=e&&c,b=this._getDragVerticalDirection(),f=this._getDragHorizontalDirection();if(!g){return false}return this.floating?(((f&&f=="right")||b=="down")?2:1):(b&&(b=="down"?2:1))},_intersectsWithSides:function(e){var c=a.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,e.top+(e.height/2),e.height),d=a.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,e.left+(e.width/2),e.width),b=this._getDragVerticalDirection(),f=this._getDragHorizontalDirection();if(this.floating&&f){return((f=="right"&&d)||(f=="left"&&!d))}else{return b&&((b=="down"&&c)||(b=="up"&&!c))}},_getDragVerticalDirection:function(){var b=this.positionAbs.top-this.lastPositionAbs.top;return b!=0&&(b>0?"down":"up")},_getDragHorizontalDirection:function(){var b=this.positionAbs.left-this.lastPositionAbs.left;return b!=0&&(b>0?"right":"left")},refresh:function(b){this._refreshItems(b);this.refreshPositions()},_connectWith:function(){var b=this.options;return b.connectWith.constructor==String?[b.connectWith]:b.connectWith},_getItemsAsjQuery:function(b){var l=this;var g=[];var e=[];var h=this._connectWith();if(h&&b){for(var d=h.length-1;d>=0;d--){var k=a(h[d]);for(var c=k.length-1;c>=0;c--){var f=a.data(k[c],"sortable");if(f&&f!=this&&!f.options.disabled){e.push([a.isFunction(f.options.items)?f.options.items.call(f.element):a(f.options.items,f.element).not(".ui-sortable-helper"),f])}}}}e.push([a.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):a(this.options.items,this.element).not(".ui-sortable-helper"),this]);for(var d=e.length-1;d>=0;d--){e[d][0].each(function(){g.push(this)})}return a(g)},_removeCurrentsFromItems:function(){var d=this.currentItem.find(":data(sortable-item)");for(var c=0;c<this.items.length;c++){for(var b=0;b<d.length;b++){if(d[b]==this.items[c].item[0]){this.items.splice(c,1)}}}},_refreshItems:function(b){this.items=[];this.containers=[this];var h=this.items;var p=this;var f=[[a.isFunction(this.options.items)?this.options.items.call(this.element[0],b,{item:this.currentItem}):a(this.options.items,this.element),this]];var l=this._connectWith();if(l){for(var e=l.length-1;e>=0;e--){var m=a(l[e]);for(var d=m.length-1;d>=0;d--){var g=a.data(m[d],"sortable");if(g&&g!=this&&!g.options.disabled){f.push([a.isFunction(g.options.items)?g.options.items.call(g.element[0],b,{item:this.currentItem}):a(g.options.items,g.element),g]);this.containers.push(g)}}}}for(var e=f.length-1;e>=0;e--){var k=f[e][1];var c=f[e][0];for(var d=0,n=c.length;d<n;d++){var o=a(c[d]);o.data("sortable-item",k);h.push({item:o,instance:k,width:0,height:0,left:0,top:0})}}},refreshPositions:function(b){if(this.offsetParent&&this.helper){this.offset.parent=this._getParentOffset()}for(var d=this.items.length-1;d>=0;d--){var e=this.items[d];if(e.instance!=this.currentContainer&&this.currentContainer&&e.item[0]!=this.currentItem[0]){continue}var c=this.options.toleranceElement?a(this.options.toleranceElement,e.item):e.item;if(!b){e.width=c.outerWidth();e.height=c.outerHeight()}var f=c.offset();e.left=f.left;e.top=f.top}if(this.options.custom&&this.options.custom.refreshContainers){this.options.custom.refreshContainers.call(this)}else{for(var d=this.containers.length-1;d>=0;d--){var f=this.containers[d].element.offset();this.containers[d].containerCache.left=f.left;this.containers[d].containerCache.top=f.top;this.containers[d].containerCache.width=this.containers[d].element.outerWidth();this.containers[d].containerCache.height=this.containers[d].element.outerHeight()}}},_createPlaceholder:function(d){var b=d||this,e=b.options;if(!e.placeholder||e.placeholder.constructor==String){var c=e.placeholder;e.placeholder={element:function(){var f=a(document.createElement(b.currentItem[0].nodeName)).addClass(c||b.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];if(!c){f.style.visibility="hidden"}return f},update:function(f,g){if(c&&!e.forcePlaceholderSize){return}if(!g.height()){g.height(b.currentItem.innerHeight()-parseInt(b.currentItem.css("paddingTop")||0,10)-parseInt(b.currentItem.css("paddingBottom")||0,10))}if(!g.width()){g.width(b.currentItem.innerWidth()-parseInt(b.currentItem.css("paddingLeft")||0,10)-parseInt(b.currentItem.css("paddingRight")||0,10))}}}}b.placeholder=a(e.placeholder.element.call(b.element,b.currentItem));b.currentItem.after(b.placeholder);e.placeholder.update(b,b.placeholder)},_contactContainers:function(d){for(var c=this.containers.length-1;c>=0;c--){if(this._intersectsWith(this.containers[c].containerCache)){if(!this.containers[c].containerCache.over){if(this.currentContainer!=this.containers[c]){var h=10000;var g=null;var e=this.positionAbs[this.containers[c].floating?"left":"top"];for(var b=this.items.length-1;b>=0;b--){if(!a.ui.contains(this.containers[c].element[0],this.items[b].item[0])){continue}var f=this.items[b][this.containers[c].floating?"left":"top"];if(Math.abs(f-e)<h){h=Math.abs(f-e);g=this.items[b]}}if(!g&&!this.options.dropOnEmpty){continue}this.currentContainer=this.containers[c];g?this._rearrange(d,g,null,true):this._rearrange(d,null,this.containers[c].element,true);this._trigger("change",d,this._uiHash());this.containers[c]._trigger("change",d,this._uiHash(this));this.options.placeholder.update(this.currentContainer,this.placeholder)}this.containers[c]._trigger("over",d,this._uiHash(this));this.containers[c].containerCache.over=1}}else{if(this.containers[c].containerCache.over){this.containers[c]._trigger("out",d,this._uiHash(this));this.containers[c].containerCache.over=0}}}},_createHelper:function(c){var d=this.options;var b=a.isFunction(d.helper)?a(d.helper.apply(this.element[0],[c,this.currentItem])):(d.helper=="clone"?this.currentItem.clone():this.currentItem);if(!b.parents("body").length){a(d.appendTo!="parent"?d.appendTo:this.currentItem[0].parentNode)[0].appendChild(b[0])}if(b[0]==this.currentItem[0]){this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}}if(b[0].style.width==""||d.forceHelperSize){b.width(this.currentItem.width())}if(b[0].style.height==""||d.forceHelperSize){b.height(this.currentItem.height())}return b},_adjustOffsetFromHelper:function(b){if(b.left!=undefined){this.offset.click.left=b.left+this.margins.left}if(b.right!=undefined){this.offset.click.left=this.helperProportions.width-b.right+this.margins.left}if(b.top!=undefined){this.offset.click.top=b.top+this.margins.top}if(b.bottom!=undefined){this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top}},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])){b.left+=this.scrollParent.scrollLeft();b.top+=this.scrollParent.scrollTop()}if((this.offsetParent[0]==document.body)||(this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)){b={top:0,left:0}}return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var b=this.currentItem.position();return{top:b.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:b.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else{return{top:0,left:0}}},_cacheMargins:function(){this.margins={left:(parseInt(this.currentItem.css("marginLeft"),10)||0),top:(parseInt(this.currentItem.css("marginTop"),10)||0)}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e=this.options;if(e.containment=="parent"){e.containment=this.helper[0].parentNode}if(e.containment=="document"||e.containment=="window"){this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,a(e.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a(e.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]}if(!(/^(document|window|parent)$/).test(e.containment)){var c=a(e.containment)[0];var d=a(e.containment).offset();var b=(a(c).css("overflow")!="hidden");this.containment=[d.left+(parseInt(a(c).css("borderLeftWidth"),10)||0)+(parseInt(a(c).css("paddingLeft"),10)||0)-this.margins.left,d.top+(parseInt(a(c).css("borderTopWidth"),10)||0)+(parseInt(a(c).css("paddingTop"),10)||0)-this.margins.top,d.left+(b?Math.max(c.scrollWidth,c.offsetWidth):c.offsetWidth)-(parseInt(a(c).css("borderLeftWidth"),10)||0)-(parseInt(a(c).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,d.top+(b?Math.max(c.scrollHeight,c.offsetHeight):c.offsetHeight)-(parseInt(a(c).css("borderTopWidth"),10)||0)-(parseInt(a(c).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(f,h){if(!h){h=this.position}var c=f=="absolute"?1:-1;var e=this.options,b=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=(/(html|body)/i).test(b[0].tagName);return{top:(h.top+this.offset.relative.top*c+this.offset.parent.top*c-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():(g?0:b.scrollTop()))*c)),left:(h.left+this.offset.relative.left*c+this.offset.parent.left*c-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:b.scrollLeft())*c))}},_generatePosition:function(e){var h=this.options,b=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,i=(/(html|body)/i).test(b[0].tagName);if(this.cssPosition=="relative"&&!(this.scrollParent[0]!=document&&this.scrollParent[0]!=this.offsetParent[0])){this.offset.relative=this._getRelativeOffset()}var d=e.pageX;var c=e.pageY;if(this.originalPosition){if(this.containment){if(e.pageX-this.offset.click.left<this.containment[0]){d=this.containment[0]+this.offset.click.left}if(e.pageY-this.offset.click.top<this.containment[1]){c=this.containment[1]+this.offset.click.top}if(e.pageX-this.offset.click.left>this.containment[2]){d=this.containment[2]+this.offset.click.left}if(e.pageY-this.offset.click.top>this.containment[3]){c=this.containment[3]+this.offset.click.top}}if(h.grid){var g=this.originalPageY+Math.round((c-this.originalPageY)/h.grid[1])*h.grid[1];c=this.containment?(!(g-this.offset.click.top<this.containment[1]||g-this.offset.click.top>this.containment[3])?g:(!(g-this.offset.click.top<this.containment[1])?g-h.grid[1]:g+h.grid[1])):g;var f=this.originalPageX+Math.round((d-this.originalPageX)/h.grid[0])*h.grid[0];d=this.containment?(!(f-this.offset.click.left<this.containment[0]||f-this.offset.click.left>this.containment[2])?f:(!(f-this.offset.click.left<this.containment[0])?f-h.grid[0]:f+h.grid[0])):f}}return{top:(c-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():(i?0:b.scrollTop())))),left:(d-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():i?0:b.scrollLeft())))}},_rearrange:function(g,f,c,e){c?c[0].appendChild(this.placeholder[0]):f.item[0].parentNode.insertBefore(this.placeholder[0],(this.direction=="down"?f.item[0]:f.item[0].nextSibling));this.counter=this.counter?++this.counter:1;var d=this,b=this.counter;window.setTimeout(function(){if(b==d.counter){d.refreshPositions(!e)}},0)},_clear:function(d,e){this.reverting=false;var f=[],b=this;if(!this._noFinalSort&&this.currentItem[0].parentNode){this.placeholder.before(this.currentItem)}this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){for(var c in this._storedCSS){if(this._storedCSS[c]=="auto"||this._storedCSS[c]=="static"){this._storedCSS[c]=""}}this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else{this.currentItem.show()}if(this.fromOutside&&!e){f.push(function(g){this._trigger("receive",g,this._uiHash(this.fromOutside))})}if((this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!e){f.push(function(g){this._trigger("update",g,this._uiHash())})}if(!a.ui.contains(this.element[0],this.currentItem[0])){if(!e){f.push(function(g){this._trigger("remove",g,this._uiHash())})}for(var c=this.containers.length-1;c>=0;c--){if(a.ui.contains(this.containers[c].element[0],this.currentItem[0])&&!e){f.push((function(g){return function(h){g._trigger("receive",h,this._uiHash(this))}}).call(this,this.containers[c]));f.push((function(g){return function(h){g._trigger("update",h,this._uiHash(this))}}).call(this,this.containers[c]))}}}for(var c=this.containers.length-1;c>=0;c--){if(!e){f.push((function(g){return function(h){g._trigger("deactivate",h,this._uiHash(this))}}).call(this,this.containers[c]))}if(this.containers[c].containerCache.over){f.push((function(g){return function(h){g._trigger("out",h,this._uiHash(this))}}).call(this,this.containers[c]));this.containers[c].containerCache.over=0}}if(this._storedCursor){a("body").css("cursor",this._storedCursor)}if(this._storedOpacity){this.helper.css("opacity",this._storedOpacity)}if(this._storedZIndex){this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex)}this.dragging=false;if(this.cancelHelperRemoval){if(!e){this._trigger("beforeStop",d,this._uiHash());for(var c=0;c<f.length;c++){f[c].call(this,d)}this._trigger("stop",d,this._uiHash())}return false}if(!e){this._trigger("beforeStop",d,this._uiHash())}this.placeholder[0].parentNode.removeChild(this.placeholder[0]);if(this.helper[0]!=this.currentItem[0]){this.helper.remove()}this.helper=null;if(!e){for(var c=0;c<f.length;c++){f[c].call(this,d)}this._trigger("stop",d,this._uiHash())}this.fromOutside=false;return true},_trigger:function(){if(a.widget.prototype._trigger.apply(this,arguments)===false){this.cancel()}},_uiHash:function(c){var b=c||this;return{helper:b.helper,placeholder:b.placeholder||a([]),position:b.position,absolutePosition:b.positionAbs,offset:b.positionAbs,item:b.currentItem,sender:c?c.element:null}}}));a.extend(a.ui.sortable,{getter:"serialize toArray",version:"1.7.2",eventPrefix:"sort",defaults:{appendTo:"parent",axis:false,cancel:":input,option",connectWith:false,containment:false,cursor:"auto",cursorAt:false,delay:0,distance:1,dropOnEmpty:true,forcePlaceholderSize:false,forceHelperSize:false,grid:false,handle:false,helper:"original",items:"> *",opacity:false,placeholder:false,revert:false,scroll:true,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1000}})})(jQuery);;(function(a){a.widget("ui.accordion",{_init:function(){var d=this.options,b=this;this.running=0;if(d.collapsible==a.ui.accordion.defaults.collapsible&&d.alwaysOpen!=a.ui.accordion.defaults.alwaysOpen){d.collapsible=!d.alwaysOpen}if(d.navigation){var c=this.element.find("a").filter(d.navigationFilter);if(c.length){if(c.filter(d.header).length){this.active=c}else{this.active=c.parent().parent().prev();c.addClass("ui-accordion-content-active")}}}this.element.addClass("ui-accordion ui-widget ui-helper-reset");if(this.element[0].nodeName=="UL"){this.element.children("li").addClass("ui-accordion-li-fix")}this.headers=this.element.find(d.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){a(this).removeClass("ui-state-focus")});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");this.active=this._findActive(this.active||d.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass("ui-accordion-content-active");a("<span/>").addClass("ui-icon "+d.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(d.icons.header).toggleClass(d.icons.headerSelected);if(a.browser.msie){this.element.find("a").css("zoom","1")}this.resize();this.element.attr("role","tablist");this.headers.attr("role","tab").bind("keydown",function(e){return b._keydown(e)}).next().attr("role","tabpanel");this.headers.not(this.active||"").attr("aria-expanded","false").attr("tabIndex","-1").next().hide();if(!this.active.length){this.headers.eq(0).attr("tabIndex","0")}else{this.active.attr("aria-expanded","true").attr("tabIndex","0")}if(!a.browser.safari){this.headers.find("a").attr("tabIndex","-1")}if(d.event){this.headers.bind((d.event)+".accordion",function(e){return b._clickHandler.call(b,e,this)})}},destroy:function(){var c=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind(".accordion").removeData("accordion");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex");this.headers.find("a").removeAttr("tabindex");this.headers.children(".ui-icon").remove();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(c.autoHeight||c.fillHeight){b.css("height","")}},_setData:function(b,c){if(b=="alwaysOpen"){b="collapsible";c=!c}a.widget.prototype._setData.apply(this,arguments)},_keydown:function(e){var g=this.options,f=a.ui.keyCode;if(g.disabled||e.altKey||e.ctrlKey){return}var d=this.headers.length;var b=this.headers.index(e.target);var c=false;switch(e.keyCode){case f.RIGHT:case f.DOWN:c=this.headers[(b+1)%d];break;case f.LEFT:case f.UP:c=this.headers[(b-1+d)%d];break;case f.SPACE:case f.ENTER:return this._clickHandler({target:e.target},e.target)}if(c){a(e.target).attr("tabIndex","-1");a(c).attr("tabIndex","0");c.focus();return false}return true},resize:function(){var e=this.options,d;if(e.fillSpace){if(a.browser.msie){var b=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}d=this.element.parent().height();if(a.browser.msie){this.element.parent().css("overflow",b)}this.headers.each(function(){d-=a(this).outerHeight()});var c=0;this.headers.next().each(function(){c=Math.max(c,a(this).innerHeight()-a(this).height())}).height(Math.max(0,d-c)).css("overflow","auto")}else{if(e.autoHeight){d=0;this.headers.next().each(function(){d=Math.max(d,a(this).outerHeight())}).height(d)}}},activate:function(b){var c=this._findActive(b)[0];this._clickHandler({target:c},c)},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===false?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,f){var d=this.options;if(d.disabled){return false}if(!b.target&&d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var h=this.active.next(),e={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:h},c=(this.active=a([]));this._toggle(c,h,e);return false}var g=a(b.currentTarget||f);var i=g[0]==this.active[0];if(this.running||(!d.collapsible&&i)){return false}this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");if(!i){g.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);g.next().addClass("ui-accordion-content-active")}var c=g.next(),h=this.active.next(),e={options:d,newHeader:i&&d.collapsible?a([]):g,oldHeader:this.active,newContent:i&&d.collapsible?a([]):c.find("> *"),oldContent:h.find("> *")},j=this.headers.index(this.active[0])>this.headers.index(g[0]);this.active=i?a([]):g;this._toggle(c,h,e,i,j);return false},_toggle:function(b,i,g,j,k){var d=this.options,m=this;this.toShow=b;this.toHide=i;this.data=g;var c=function(){if(!m){return}return m._completed.apply(m,arguments)};this._trigger("changestart",null,this.data);this.running=i.size()===0?b.size():i.size();if(d.animated){var f={};if(d.collapsible&&j){f={toShow:a([]),toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}else{f={toShow:b,toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}if(!d.proxied){d.proxied=d.animated}if(!d.proxiedDuration){d.proxiedDuration=d.duration}d.animated=a.isFunction(d.proxied)?d.proxied(f):d.proxied;d.duration=a.isFunction(d.proxiedDuration)?d.proxiedDuration(f):d.proxiedDuration;var l=a.ui.accordion.animations,e=d.duration,h=d.animated;if(!l[h]){l[h]=function(n){this.slide(n,{easing:h,duration:e||700})}}l[h](f)}else{if(d.collapsible&&j){b.toggle()}else{i.hide();b.show()}c(true)}i.prev().attr("aria-expanded","false").attr("tabIndex","-1").blur();b.prev().attr("aria-expanded","true").attr("tabIndex","0").focus()},_completed:function(b){var c=this.options;this.running=b?0:--this.running;if(this.running){return}if(c.clearStyle){this.toShow.add(this.toHide).css({height:"",overflow:""})}this._trigger("change",null,this.data)}});a.extend(a.ui.accordion,{version:"1.7.2",defaults:{active:null,alwaysOpen:true,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase()}},animations:{slide:function(j,h){j=a.extend({easing:"swing",duration:300},j,h);if(!j.toHide.size()){j.toShow.animate({height:"show"},j);return}if(!j.toShow.size()){j.toHide.animate({height:"hide"},j);return}var c=j.toShow.css("overflow"),g,d={},f={},e=["height","paddingTop","paddingBottom"],b;var i=j.toShow;b=i[0].style.width;i.width(parseInt(i.parent().width(),10)-parseInt(i.css("paddingLeft"),10)-parseInt(i.css("paddingRight"),10)-(parseInt(i.css("borderLeftWidth"),10)||0)-(parseInt(i.css("borderRightWidth"),10)||0));a.each(e,function(k,m){f[m]="hide";var l=(""+a.css(j.toShow[0],m)).match(/^([\d+-.]+)(.*)$/);d[m]={value:l[1],unit:l[2]||"px"}});j.toShow.css({height:0,overflow:"hidden"}).show();j.toHide.filter(":hidden").each(j.complete).end().filter(":visible").animate(f,{step:function(k,l){if(l.prop=="height"){g=(l.now-l.start)/(l.end-l.start)}j.toShow[0].style[l.prop]=(g*d[l.prop].value)+d[l.prop].unit},duration:j.duration,easing:j.easing,complete:function(){if(!j.autoHeight){j.toShow.css("height","")}j.toShow.css("width",b);j.toShow.css({overflow:c});j.complete()}})},bounceslide:function(b){this.slide(b,{easing:b.down?"easeOutBounce":"swing",duration:b.down?1000:200})},easeslide:function(b){this.slide(b,{easing:"easeinout",duration:700})}}})})(jQuery);;(function(c){var b={dragStart:"start.draggable",drag:"drag.draggable",dragStop:"stop.draggable",maxHeight:"maxHeight.resizable",minHeight:"minHeight.resizable",maxWidth:"maxWidth.resizable",minWidth:"minWidth.resizable",resizeStart:"start.resizable",resize:"drag.resizable",resizeStop:"stop.resizable"},a="ui-dialog ui-widget ui-widget-content ui-corner-all ";c.widget("ui.dialog",{_init:function(){this.originalTitle=this.element.attr("title");var l=this,m=this.options,j=m.title||this.originalTitle||"&nbsp;",e=c.ui.dialog.getTitleId(this.element),k=(this.uiDialog=c("<div/>")).appendTo(document.body).hide().addClass(a+m.dialogClass).css({position:"absolute",overflow:"hidden",zIndex:m.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(n){(m.closeOnEscape&&n.keyCode&&n.keyCode==c.ui.keyCode.ESCAPE&&l.close(n))}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(n){l.moveToTop(false,n)}),g=this.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(k),f=(this.uiDialogTitlebar=c("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(k),i=c('<a href="#"/>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){i.addClass("ui-state-hover")},function(){i.removeClass("ui-state-hover")}).focus(function(){i.addClass("ui-state-focus")}).blur(function(){i.removeClass("ui-state-focus")}).mousedown(function(n){n.stopPropagation()}).click(function(n){l.close(n);return false}).appendTo(f),h=(this.uiDialogTitlebarCloseText=c("<span/>")).addClass("ui-icon ui-icon-closethick").text(m.closeText).appendTo(i),d=c("<span/>").addClass("ui-dialog-title").attr("id",e).html(j).prependTo(f);f.find("*").add(f).disableSelection();(m.draggable&&c.fn.draggable&&this._makeDraggable());(m.resizable&&c.fn.resizable&&this._makeResizable());this._createButtons(m.buttons);this._isOpen=false;(m.bgiframe&&c.fn.bgiframe&&k.bgiframe());(m.autoOpen&&this.open())},destroy:function(){(this.overlay&&this.overlay.destroy());this.uiDialog.hide();this.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");this.uiDialog.remove();(this.originalTitle&&this.element.attr("title",this.originalTitle))},close:function(f){var d=this;if(false===d._trigger("beforeclose",f)){return}(d.overlay&&d.overlay.destroy());d.uiDialog.unbind("keypress.ui-dialog");(d.options.hide?d.uiDialog.hide(d.options.hide,function(){d._trigger("close",f)}):d.uiDialog.hide()&&d._trigger("close",f));c.ui.dialog.overlay.resize();d._isOpen=false;if(d.options.modal){var e=0;c(".ui-dialog").each(function(){if(this!=d.uiDialog[0]){e=Math.max(e,c(this).css("z-index"))}});c.ui.dialog.maxZ=e}},isOpen:function(){return this._isOpen},moveToTop:function(f,e){if((this.options.modal&&!f)||(!this.options.stack&&!this.options.modal)){return this._trigger("focus",e)}if(this.options.zIndex>c.ui.dialog.maxZ){c.ui.dialog.maxZ=this.options.zIndex}(this.overlay&&this.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=++c.ui.dialog.maxZ));var d={scrollTop:this.element.attr("scrollTop"),scrollLeft:this.element.attr("scrollLeft")};this.uiDialog.css("z-index",++c.ui.dialog.maxZ);this.element.attr(d);this._trigger("focus",e)},open:function(){if(this._isOpen){return}var e=this.options,d=this.uiDialog;this.overlay=e.modal?new c.ui.dialog.overlay(this):null;(d.next().length&&d.appendTo("body"));this._size();this._position(e.position);d.show(e.show);this.moveToTop(true);(e.modal&&d.bind("keypress.ui-dialog",function(h){if(h.keyCode!=c.ui.keyCode.TAB){return}var g=c(":tabbable",this),i=g.filter(":first")[0],f=g.filter(":last")[0];if(h.target==f&&!h.shiftKey){setTimeout(function(){i.focus()},1)}else{if(h.target==i&&h.shiftKey){setTimeout(function(){f.focus()},1)}}}));c([]).add(d.find(".ui-dialog-content :tabbable:first")).add(d.find(".ui-dialog-buttonpane :tabbable:first")).add(d).filter(":first").focus();this._trigger("open");this._isOpen=true},_createButtons:function(g){var f=this,d=false,e=c("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix");this.uiDialog.find(".ui-dialog-buttonpane").remove();(typeof g=="object"&&g!==null&&c.each(g,function(){return!(d=true)}));if(d){c.each(g,function(h,i){c('<button type="button"></button>').addClass("ui-state-default ui-corner-all").text(h).click(function(){i.apply(f.element[0],arguments)}).hover(function(){c(this).addClass("ui-state-hover")},function(){c(this).removeClass("ui-state-hover")}).focus(function(){c(this).addClass("ui-state-focus")}).blur(function(){c(this).removeClass("ui-state-focus")}).appendTo(e)});e.appendTo(this.uiDialog)}},_makeDraggable:function(){var d=this,f=this.options,e;this.uiDialog.draggable({cancel:".ui-dialog-content",handle:".ui-dialog-titlebar",containment:"document",start:function(){e=f.height;c(this).height(c(this).height()).addClass("ui-dialog-dragging");(f.dragStart&&f.dragStart.apply(d.element[0],arguments))},drag:function(){(f.drag&&f.drag.apply(d.element[0],arguments))},stop:function(){c(this).removeClass("ui-dialog-dragging").height(e);(f.dragStop&&f.dragStop.apply(d.element[0],arguments));c.ui.dialog.overlay.resize()}})},_makeResizable:function(g){g=(g===undefined?this.options.resizable:g);var d=this,f=this.options,e=typeof g=="string"?g:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",alsoResize:this.element,maxWidth:f.maxWidth,maxHeight:f.maxHeight,minWidth:f.minWidth,minHeight:f.minHeight,start:function(){c(this).addClass("ui-dialog-resizing");(f.resizeStart&&f.resizeStart.apply(d.element[0],arguments))},resize:function(){(f.resize&&f.resize.apply(d.element[0],arguments))},handles:e,stop:function(){c(this).removeClass("ui-dialog-resizing");f.height=c(this).height();f.width=c(this).width();(f.resizeStop&&f.resizeStop.apply(d.element[0],arguments));c.ui.dialog.overlay.resize()}}).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_position:function(i){var e=c(window),f=c(document),g=f.scrollTop(),d=f.scrollLeft(),h=g;if(c.inArray(i,["center","top","right","bottom","left"])>=0){i=[i=="right"||i=="left"?i:"center",i=="top"||i=="bottom"?i:"middle"]}if(i.constructor!=Array){i=["center","middle"]}if(i[0].constructor==Number){d+=i[0]}else{switch(i[0]){case"left":d+=0;break;case"right":d+=e.width()-this.uiDialog.outerWidth();break;default:case"center":d+=(e.width()-this.uiDialog.outerWidth())/2}}if(i[1].constructor==Number){g+=i[1]}else{switch(i[1]){case"top":g+=0;break;case"bottom":g+=e.height()-this.uiDialog.outerHeight();break;default:case"middle":g+=(e.height()-this.uiDialog.outerHeight())/2}}g=Math.max(g,h);this.uiDialog.css({top:g,left:d})},_setData:function(e,f){(b[e]&&this.uiDialog.data(b[e],f));switch(e){case"buttons":this._createButtons(f);break;case"closeText":this.uiDialogTitlebarCloseText.text(f);break;case"dialogClass":this.uiDialog.removeClass(this.options.dialogClass).addClass(a+f);break;case"draggable":(f?this._makeDraggable():this.uiDialog.draggable("destroy"));break;case"height":this.uiDialog.height(f);break;case"position":this._position(f);break;case"resizable":var d=this.uiDialog,g=this.uiDialog.is(":data(resizable)");(g&&!f&&d.resizable("destroy"));(g&&typeof f=="string"&&d.resizable("option","handles",f));(g||this._makeResizable(f));break;case"title":c(".ui-dialog-title",this.uiDialogTitlebar).html(f||"&nbsp;");break;case"width":this.uiDialog.width(f);break}c.widget.prototype._setData.apply(this,arguments)},_size:function(){var e=this.options;this.element.css({height:0,minHeight:0,width:"auto"});var d=this.uiDialog.css({height:"auto",width:e.width}).height();this.element.css({minHeight:Math.max(e.minHeight-d,0),height:e.height=="auto"?"auto":Math.max(e.height-d,0)})}});c.extend(c.ui.dialog,{version:"1.7.2",defaults:{autoOpen:true,bgiframe:false,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:"center",resizable:true,show:null,stack:true,title:"",width:300,zIndex:1000},getter:"isOpen",uuid:0,maxZ:0,getTitleId:function(d){return"ui-dialog-title-"+(d.attr("id")||++this.uuid)},overlay:function(d){this.$el=c.ui.dialog.overlay.create(d)}});c.extend(c.ui.dialog.overlay,{instances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(d){return d+".dialog-overlay"}).join(" "),create:function(e){if(this.instances.length===0){setTimeout(function(){if(c.ui.dialog.overlay.instances.length){c(document).bind(c.ui.dialog.overlay.events,function(f){var g=c(f.target).parents(".ui-dialog").css("zIndex")||0;return(g>c.ui.dialog.overlay.maxZ)})}},1);c(document).bind("keydown.dialog-overlay",function(f){(e.options.closeOnEscape&&f.keyCode&&f.keyCode==c.ui.keyCode.ESCAPE&&e.close(f))});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var d=c("<div></div>").appendTo(document.body).addClass("ui-widget-overlay").css({width:this.width(),height:this.height()});(e.options.bgiframe&&c.fn.bgiframe&&d.bgiframe());this.instances.push(d);return d},destroy:function(d){this.instances.splice(c.inArray(this.instances,d),1);if(this.instances.length===0){c([document,window]).unbind(".dialog-overlay")}d.remove();var e=0;c.each(this.instances,function(){e=Math.max(e,this.css("z-index"))});this.maxZ=e},height:function(){if(c.browser.msie&&c.browser.version<7){var e=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);var d=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);if(e<d){return c(window).height()+"px"}else{return e+"px"}}else{return c(document).height()+"px"}},width:function(){if(c.browser.msie&&c.browser.version<7){var d=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth);var e=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);if(d<e){return c(window).width()+"px"}else{return d+"px"}}else{return c(document).width()+"px"}},resize:function(){var d=c([]);c.each(c.ui.dialog.overlay.instances,function(){d=d.add(this)});d.css({width:0,height:0}).css({width:c.ui.dialog.overlay.width(),height:c.ui.dialog.overlay.height()})}});c.extend(c.ui.dialog.overlay.prototype,{destroy:function(){c.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);;(function(a){a.widget("ui.slider",a.extend({},a.ui.mouse,{_init:function(){var b=this,c=this.options;this._keySliding=false;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget ui-widget-content ui-corner-all");this.range=a([]);if(c.range){if(c.range===true){this.range=a("<div></div>");if(!c.values){c.values=[this._valueMin(),this._valueMin()]}if(c.values.length&&c.values.length!=2){c.values=[c.values[0],c.values[0]]}}else{this.range=a("<div></div>")}this.range.appendTo(this.element).addClass("ui-slider-range");if(c.range=="min"||c.range=="max"){this.range.addClass("ui-slider-range-"+c.range)}this.range.addClass("ui-widget-header")}if(a(".ui-slider-handle",this.element).length==0){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}if(c.values&&c.values.length){while(a(".ui-slider-handle",this.element).length<c.values.length){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}}this.handles=a(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(d){d.preventDefault()}).hover(function(){if(!c.disabled){a(this).addClass("ui-state-hover")}},function(){a(this).removeClass("ui-state-hover")}).focus(function(){if(!c.disabled){a(".ui-slider .ui-state-focus").removeClass("ui-state-focus");a(this).addClass("ui-state-focus")}else{a(this).blur()}}).blur(function(){a(this).removeClass("ui-state-focus")});this.handles.each(function(d){a(this).data("index.ui-slider-handle",d)});this.handles.keydown(function(i){var f=true;var e=a(this).data("index.ui-slider-handle");if(b.options.disabled){return}switch(i.keyCode){case a.ui.keyCode.HOME:case a.ui.keyCode.END:case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:f=false;if(!b._keySliding){b._keySliding=true;a(this).addClass("ui-state-active");b._start(i,e)}break}var g,d,h=b._step();if(b.options.values&&b.options.values.length){g=d=b.values(e)}else{g=d=b.value()}switch(i.keyCode){case a.ui.keyCode.HOME:d=b._valueMin();break;case a.ui.keyCode.END:d=b._valueMax();break;case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:if(g==b._valueMax()){return}d=g+h;break;case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:if(g==b._valueMin()){return}d=g-h;break}b._slide(i,e,d);return f}).keyup(function(e){var d=a(this).data("index.ui-slider-handle");if(b._keySliding){b._stop(e,d);b._change(e,d);b._keySliding=false;a(this).removeClass("ui-state-active")}});this._refreshValue()},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy()},_mouseCapture:function(d){var e=this.options;if(e.disabled){return false}this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();var h={x:d.pageX,y:d.pageY};var j=this._normValueFromMouse(h);var c=this._valueMax()-this._valueMin()+1,f;var k=this,i;this.handles.each(function(l){var m=Math.abs(j-k.values(l));if(c>m){c=m;f=a(this);i=l}});if(e.range==true&&this.values(1)==e.min){f=a(this.handles[++i])}this._start(d,i);k._handleIndex=i;f.addClass("ui-state-active").focus();var g=f.offset();var b=!a(d.target).parents().andSelf().is(".ui-slider-handle");this._clickOffset=b?{left:0,top:0}:{left:d.pageX-g.left-(f.width()/2),top:d.pageY-g.top-(f.height()/2)-(parseInt(f.css("borderTopWidth"),10)||0)-(parseInt(f.css("borderBottomWidth"),10)||0)+(parseInt(f.css("marginTop"),10)||0)};j=this._normValueFromMouse(h);this._slide(d,i,j);return true},_mouseStart:function(b){return true},_mouseDrag:function(d){var b={x:d.pageX,y:d.pageY};var c=this._normValueFromMouse(b);this._slide(d,this._handleIndex,c);return false},_mouseStop:function(b){this.handles.removeClass("ui-state-active");this._stop(b,this._handleIndex);this._change(b,this._handleIndex);this._handleIndex=null;this._clickOffset=null;return false},_detectOrientation:function(){this.orientation=this.options.orientation=="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(d){var c,h;if("horizontal"==this.orientation){c=this.elementSize.width;h=d.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{c=this.elementSize.height;h=d.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}var f=(h/c);if(f>1){f=1}if(f<0){f=0}if("vertical"==this.orientation){f=1-f}var e=this._valueMax()-this._valueMin(),i=f*e,b=i%this.options.step,g=this._valueMin()+i-b;if(b>(this.options.step/2)){g+=this.options.step}return parseFloat(g.toFixed(5))},_start:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("start",d,b)},_slide:function(f,e,d){var g=this.handles[e];if(this.options.values&&this.options.values.length){var b=this.values(e?0:1);if((this.options.values.length==2&&this.options.range===true)&&((e==0&&d>b)||(e==1&&d<b))){d=b}if(d!=this.values(e)){var c=this.values();c[e]=d;var h=this._trigger("slide",f,{handle:this.handles[e],value:d,values:c});var b=this.values(e?0:1);if(h!==false){this.values(e,d,(f.type=="mousedown"&&this.options.animate),true)}}}else{if(d!=this.value()){var h=this._trigger("slide",f,{handle:this.handles[e],value:d});if(h!==false){this._setData("value",d,(f.type=="mousedown"&&this.options.animate))}}}},_stop:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("stop",d,b)},_change:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("change",d,b)},value:function(b){if(arguments.length){this._setData("value",b);this._change(null,0)}return this._value()},values:function(b,e,c,d){if(arguments.length>1){this.options.values[b]=e;this._refreshValue(c);if(!d){this._change(null,b)}}if(arguments.length){if(this.options.values&&this.options.values.length){return this._values(b)}else{return this.value()}}else{return this._values()}},_setData:function(b,d,c){a.widget.prototype._setData.apply(this,arguments);switch(b){case"disabled":if(d){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled")}else{this.handles.removeAttr("disabled")}case"orientation":this._detectOrientation();this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue(c);break;case"value":this._refreshValue(c);break}},_step:function(){var b=this.options.step;return b},_value:function(){var b=this.options.value;if(b<this._valueMin()){b=this._valueMin()}if(b>this._valueMax()){b=this._valueMax()}return b},_values:function(b){if(arguments.length){var c=this.options.values[b];if(c<this._valueMin()){c=this._valueMin()}if(c>this._valueMax()){c=this._valueMax()}return c}else{return this.options.values}},_valueMin:function(){var b=this.options.min;return b},_valueMax:function(){var b=this.options.max;return b},_refreshValue:function(c){var f=this.options.range,d=this.options,l=this;if(this.options.values&&this.options.values.length){var i,h;this.handles.each(function(p,n){var o=(l.values(p)-l._valueMin())/(l._valueMax()-l._valueMin())*100;var m={};m[l.orientation=="horizontal"?"left":"bottom"]=o+"%";a(this).stop(1,1)[c?"animate":"css"](m,d.animate);if(l.options.range===true){if(l.orientation=="horizontal"){(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({left:o+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({width:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}else{(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({bottom:(o)+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({height:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}}lastValPercent=o})}else{var j=this.value(),g=this._valueMin(),k=this._valueMax(),e=k!=g?(j-g)/(k-g)*100:0;var b={};b[l.orientation=="horizontal"?"left":"bottom"]=e+"%";this.handle.stop(1,1)[c?"animate":"css"](b,d.animate);(f=="min")&&(this.orientation=="horizontal")&&this.range.stop(1,1)[c?"animate":"css"]({width:e+"%"},d.animate);(f=="max")&&(this.orientation=="horizontal")&&this.range[c?"animate":"css"]({width:(100-e)+"%"},{queue:false,duration:d.animate});(f=="min")&&(this.orientation=="vertical")&&this.range.stop(1,1)[c?"animate":"css"]({height:e+"%"},d.animate);(f=="max")&&(this.orientation=="vertical")&&this.range[c?"animate":"css"]({height:(100-e)+"%"},{queue:false,duration:d.animate})}}}));a.extend(a.ui.slider,{getter:"value values",version:"1.7.2",eventPrefix:"slide",defaults:{animate:false,delay:0,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null}})})(jQuery);;(function(a){a.widget("ui.tabs",{_init:function(){if(this.options.deselectable!==undefined){this.options.collapsible=this.options.deselectable}this._tabify(true)},_setData:function(b,c){if(b=="selected"){if(this.options.collapsible&&c==this.options.selected){return}this.select(c)}else{this.options[b]=c;if(b=="deselectable"){this.options.collapsible=c}this._tabify()}},_tabId:function(b){return b.title&&b.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+a.data(b)},_sanitizeSelector:function(b){return b.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+a.data(this.list[0]));return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(c,b){return{tab:c,panel:b,index:this.anchors.index(c)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(n){this.list=this.element.children("ul:first");this.lis=a("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return a("a",this)[0]});this.panels=a([]);var p=this,d=this.options;var c=/^#.+/;this.anchors.each(function(r,o){var q=a(o).attr("href");var s=q.split("#")[0],u;if(s&&(s===location.toString().split("#")[0]||(u=a("base")[0])&&s===u.href)){q=o.hash;o.href=q}if(c.test(q)){p.panels=p.panels.add(p._sanitizeSelector(q))}else{if(q!="#"){a.data(o,"href.tabs",q);a.data(o,"load.tabs",q.replace(/#.*$/,""));var w=p._tabId(o);o.href="#"+w;var v=a("#"+w);if(!v.length){v=a(d.panelTemplate).attr("id",w).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(p.panels[r-1]||p.list);v.data("destroy.tabs",true)}p.panels=p.panels.add(v)}else{d.disabled.push(r)}}});if(n){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(d.selected===undefined){if(location.hash){this.anchors.each(function(q,o){if(o.hash==location.hash){d.selected=q;return false}})}if(typeof d.selected!="number"&&d.cookie){d.selected=parseInt(p._cookie(),10)}if(typeof d.selected!="number"&&this.lis.filter(".ui-tabs-selected").length){d.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}d.selected=d.selected||0}else{if(d.selected===null){d.selected=-1}}d.selected=((d.selected>=0&&this.anchors[d.selected])||d.selected<0)?d.selected:0;d.disabled=a.unique(d.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(q,o){return p.lis.index(q)}))).sort();if(a.inArray(d.selected,d.disabled)!=-1){d.disabled.splice(a.inArray(d.selected,d.disabled),1)}this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");if(d.selected>=0&&this.anchors.length){this.panels.eq(d.selected).removeClass("ui-tabs-hide");this.lis.eq(d.selected).addClass("ui-tabs-selected ui-state-active");p.element.queue("tabs",function(){p._trigger("show",null,p._ui(p.anchors[d.selected],p.panels[d.selected]))});this.load(d.selected)}a(window).bind("unload",function(){p.lis.add(p.anchors).unbind(".tabs");p.lis=p.anchors=p.panels=null})}else{d.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}this.element[d.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");if(d.cookie){this._cookie(d.selected,d.cookie)}for(var g=0,m;(m=this.lis[g]);g++){a(m)[a.inArray(g,d.disabled)!=-1&&!a(m).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")}if(d.cache===false){this.anchors.removeData("cache.tabs")}this.lis.add(this.anchors).unbind(".tabs");if(d.event!="mouseover"){var f=function(o,i){if(i.is(":not(.ui-state-disabled)")){i.addClass("ui-state-"+o)}};var j=function(o,i){i.removeClass("ui-state-"+o)};this.lis.bind("mouseover.tabs",function(){f("hover",a(this))});this.lis.bind("mouseout.tabs",function(){j("hover",a(this))});this.anchors.bind("focus.tabs",function(){f("focus",a(this).closest("li"))});this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var b,h;if(d.fx){if(a.isArray(d.fx)){b=d.fx[0];h=d.fx[1]}else{b=h=d.fx}}function e(i,o){i.css({display:""});if(a.browser.msie&&o.opacity){i[0].style.removeAttribute("filter")}}var k=h?function(i,o){a(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.hide().removeClass("ui-tabs-hide").animate(h,h.duration||"normal",function(){e(o,h);p._trigger("show",null,p._ui(i,o[0]))})}:function(i,o){a(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.removeClass("ui-tabs-hide");p._trigger("show",null,p._ui(i,o[0]))};var l=b?function(o,i){i.animate(b,b.duration||"normal",function(){p.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");e(i,b);p.element.dequeue("tabs")})}:function(o,i,q){p.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");p.element.dequeue("tabs")};this.anchors.bind(d.event+".tabs",function(){var o=this,r=a(this).closest("li"),i=p.panels.filter(":not(.ui-tabs-hide)"),q=a(p._sanitizeSelector(this.hash));if((r.hasClass("ui-tabs-selected")&&!d.collapsible)||r.hasClass("ui-state-disabled")||r.hasClass("ui-state-processing")||p._trigger("select",null,p._ui(this,q[0]))===false){this.blur();return false}d.selected=p.anchors.index(this);p.abort();if(d.collapsible){if(r.hasClass("ui-tabs-selected")){d.selected=-1;if(d.cookie){p._cookie(d.selected,d.cookie)}p.element.queue("tabs",function(){l(o,i)}).dequeue("tabs");this.blur();return false}else{if(!i.length){if(d.cookie){p._cookie(d.selected,d.cookie)}p.element.queue("tabs",function(){k(o,q)});p.load(p.anchors.index(this));this.blur();return false}}}if(d.cookie){p._cookie(d.selected,d.cookie)}if(q.length){if(i.length){p.element.queue("tabs",function(){l(o,i)})}p.element.queue("tabs",function(){k(o,q)});p.load(p.anchors.index(this))}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(a.browser.msie){this.blur()}});this.anchors.bind("click.tabs",function(){return false})},destroy:function(){var b=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var c=a.data(this,"href.tabs");if(c){this.href=c}var d=a(this).unbind(".tabs");a.each(["href","load","cache"],function(e,f){d.removeData(f+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){if(a.data(this,"destroy.tabs")){a(this).remove()}else{a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}});if(b.cookie){this._cookie(null,b.cookie)}},add:function(e,d,c){if(c===undefined){c=this.anchors.length}var b=this,g=this.options,i=a(g.tabTemplate.replace(/#\{href\}/g,e).replace(/#\{label\}/g,d)),h=!e.indexOf("#")?e.replace("#",""):this._tabId(a("a",i)[0]);i.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var f=a("#"+h);if(!f.length){f=a(g.panelTemplate).attr("id",h).data("destroy.tabs",true)}f.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(c>=this.lis.length){i.appendTo(this.list);f.appendTo(this.list[0].parentNode)}else{i.insertBefore(this.lis[c]);f.insertBefore(this.panels[c])}g.disabled=a.map(g.disabled,function(k,j){return k>=c?++k:k});this._tabify();if(this.anchors.length==1){i.addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){b._trigger("show",null,b._ui(b.anchors[0],b.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[c],this.panels[c]))},remove:function(b){var d=this.options,e=this.lis.eq(b).remove(),c=this.panels.eq(b).remove();if(e.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(b+(b+1<this.anchors.length?1:-1))}d.disabled=a.map(a.grep(d.disabled,function(g,f){return g!=b}),function(g,f){return g>=b?--g:g});this._tabify();this._trigger("remove",null,this._ui(e.find("a")[0],c[0]))},enable:function(b){var c=this.options;if(a.inArray(b,c.disabled)==-1){return}this.lis.eq(b).removeClass("ui-state-disabled");c.disabled=a.grep(c.disabled,function(e,d){return e!=b});this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b]))},disable:function(c){var b=this,d=this.options;if(c!=d.selected){this.lis.eq(c).addClass("ui-state-disabled");d.disabled.push(c);d.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[c],this.panels[c]))}},select:function(b){if(typeof b=="string"){b=this.anchors.index(this.anchors.filter("[href$="+b+"]"))}else{if(b===null){b=-1}}if(b==-1&&this.options.collapsible){b=this.options.selected}this.anchors.eq(b).trigger(this.options.event+".tabs")},load:function(e){var c=this,g=this.options,b=this.anchors.eq(e)[0],d=a.data(b,"load.tabs");this.abort();if(!d||this.element.queue("tabs").length!==0&&a.data(b,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(e).addClass("ui-state-processing");if(g.spinner){var f=a("span",b);f.data("label.tabs",f.html()).html(g.spinner)}this.xhr=a.ajax(a.extend({},g.ajaxOptions,{url:d,success:function(i,h){a(c._sanitizeSelector(b.hash)).html(i);c._cleanup();if(g.cache){a.data(b,"cache.tabs",true)}c._trigger("load",null,c._ui(c.anchors[e],c.panels[e]));try{g.ajaxOptions.success(i,h)}catch(j){}c.element.dequeue("tabs")}}))},abort:function(){this.element.queue([]);this.panels.stop(false,true);if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup()},url:function(c,b){this.anchors.eq(c).removeData("cache.tabs").data("load.tabs",b)},length:function(){return this.anchors.length}});a.extend(a.ui.tabs,{version:"1.7.2",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,collapsible:false,disabled:[],event:"click",fx:null,idPrefix:"ui-tabs-",panelTemplate:"<div></div>",spinner:"<em>Loading&#8230;</em>",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'}});a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(d,f){var b=this,g=this.options;var c=b._rotate||(b._rotate=function(h){clearTimeout(b.rotation);b.rotation=setTimeout(function(){var i=g.selected;b.select(++i<b.anchors.length?i:0)},d);if(h){h.stopPropagation()}});var e=b._unrotate||(b._unrotate=!f?function(h){if(h.clientX){b.rotate(null)}}:function(h){t=g.selected;c()});if(d){this.element.bind("tabsshow",c);this.anchors.bind(g.event+".tabs",e);c()}else{clearTimeout(b.rotation);this.element.unbind("tabsshow",c);this.anchors.unbind(g.event+".tabs",e);delete this._rotate;delete this._unrotate}}})})(jQuery);;(function($){$.extend($.ui,{datepicker:{version:"1.7.2"}});var PROP_NAME="datepicker";function Datepicker(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._datepickerShowing=false;this._inDialog=false;this._mainDivId="ui-datepicker-div";this._inlineClass="ui-datepicker-inline";this._appendClass="ui-datepicker-append";this._triggerClass="ui-datepicker-trigger";this._dialogClass="ui-datepicker-dialog";this._disableClass="ui-datepicker-disabled";this._unselectableClass="ui-datepicker-unselectable";this._currentClass="ui-datepicker-current-day";this._dayOverClass="ui-datepicker-days-cell-over";this.regional=[];this.regional[""]={closeText:"Done",prevText:"",nextText:"",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],dateFormat:"mm/dd/yy",firstDay:0,isRTL:false};this._defaults={showOn:"focus",showAnim:"show",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,showMonthAfterYear:false,yearRange:"-10:+10",showOtherMonths:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"normal",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false};$.extend(this._defaults,this.regional[""]);this.dpDiv=$('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-helper-hidden-accessible"></div>')}$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",log:function(){if(this.debug){console.log.apply("",arguments)}},setDefaults:function(settings){extendRemove(this._defaults,settings||{});return this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase();var inline=(nodeName=="div"||nodeName=="span");if(!target.id){target.id="dp"+(++this.uuid)}var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{});if(nodeName=="input"){this._connectDatepicker(target,inst)}else{if(inline){this._inlineDatepicker(target,inst)}}},_newInst:function(target,inline){var id=target[0].id.replace(/([:\[\]\.])/g,"\\\\$1");return{id:id,input:target,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:inline,dpDiv:(!inline?this.dpDiv:$('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(target,inst){var input=$(target);inst.append=$([]);inst.trigger=$([]);if(input.hasClass(this.markerClassName)){return}var appendText=this._get(inst,"appendText");var isRTL=this._get(inst,"isRTL");if(appendText){inst.append=$('<span class="'+this._appendClass+'">'+appendText+"</span>");input[isRTL?"before":"after"](inst.append)}var showOn=this._get(inst,"showOn");if(showOn=="focus"||showOn=="both"){input.focus(this._showDatepicker)}if(showOn=="button"||showOn=="both"){var buttonText=this._get(inst,"buttonText");var buttonImage=this._get(inst,"buttonImage");inst.trigger=$(this._get(inst,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:buttonImage,alt:buttonText,title:buttonText}):$('<button type="button"></button>').addClass(this._triggerClass).html(buttonImage==""?buttonText:$("<img/>").attr({src:buttonImage,alt:buttonText,title:buttonText})));input[isRTL?"before":"after"](inst.trigger);inst.trigger.click(function(){if($.datepicker._datepickerShowing&&$.datepicker._lastInput==target){$.datepicker._hideDatepicker()}else{$.datepicker._showDatepicker(target)}return false})}input.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst)},_inlineDatepicker:function(target,inst){var divSpan=$(target);if(divSpan.hasClass(this.markerClassName)){return}divSpan.addClass(this.markerClassName).append(inst.dpDiv).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst);this._setDate(inst,this._getDefaultDate(inst));this._updateDatepicker(inst);this._updateAlternate(inst)},_dialogDatepicker:function(input,dateText,onSelect,settings,pos){var inst=this._dialogInst;if(!inst){var id="dp"+(++this.uuid);this._dialogInput=$('<input type="text" id="'+id+'" size="1" style="position: absolute; top: -100px;"/>');this._dialogInput.keydown(this._doKeyDown);$("body").append(this._dialogInput);inst=this._dialogInst=this._newInst(this._dialogInput,false);inst.settings={};$.data(this._dialogInput[0],PROP_NAME,inst)}extendRemove(inst.settings,settings||{});this._dialogInput.val(dateText);this._pos=(pos?(pos.length?pos:[pos.pageX,pos.pageY]):null);if(!this._pos){var browserWidth=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth;var browserHeight=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var scrollX=document.documentElement.scrollLeft||document.body.scrollLeft;var scrollY=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[(browserWidth/2)-100+scrollX,(browserHeight/2)-150+scrollY]}this._dialogInput.css("left",this._pos[0]+"px").css("top",this._pos[1]+"px");inst.settings.onSelect=onSelect;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);if($.blockUI){$.blockUI(this.dpDiv)}$.data(this._dialogInput[0],PROP_NAME,inst);return this},_destroyDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();$.removeData(target,PROP_NAME);if(nodeName=="input"){inst.append.remove();inst.trigger.remove();$target.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress)}else{if(nodeName=="div"||nodeName=="span"){$target.removeClass(this.markerClassName).empty()}}},_enableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=false;inst.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().removeClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)})},_disableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=true;inst.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().addClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)});this._disabledInputs[this._disabledInputs.length]=target},_isDisabledDatepicker:function(target){if(!target){return false}for(var i=0;i<this._disabledInputs.length;i++){if(this._disabledInputs[i]==target){return true}}return false},_getInst:function(target){try{return $.data(target,PROP_NAME)}catch(err){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(target,name,value){var inst=this._getInst(target);if(arguments.length==2&&typeof name=="string"){return(name=="defaults"?$.extend({},$.datepicker._defaults):(inst?(name=="all"?$.extend({},inst.settings):this._get(inst,name)):null))}var settings=name||{};if(typeof name=="string"){settings={};settings[name]=value}if(inst){if(this._curInst==inst){this._hideDatepicker(null)}var date=this._getDateDatepicker(target);extendRemove(inst.settings,settings);this._setDateDatepicker(target,date);this._updateDatepicker(inst)}},_changeDatepicker:function(target,name,value){this._optionDatepicker(target,name,value)},_refreshDatepicker:function(target){var inst=this._getInst(target);if(inst){this._updateDatepicker(inst)}},_setDateDatepicker:function(target,date,endDate){var inst=this._getInst(target);if(inst){this._setDate(inst,date,endDate);this._updateDatepicker(inst);this._updateAlternate(inst)}},_getDateDatepicker:function(target){var inst=this._getInst(target);if(inst&&!inst.inline){this._setDateFromField(inst)}return(inst?this._getDate(inst):null)},_doKeyDown:function(event){var inst=$.datepicker._getInst(event.target);var handled=true;var isRTL=inst.dpDiv.is(".ui-datepicker-rtl");inst._keyEvent=true;if($.datepicker._datepickerShowing){switch(event.keyCode){case 9:$.datepicker._hideDatepicker(null,"");break;case 13:var sel=$("td."+$.datepicker._dayOverClass+", td."+$.datepicker._currentClass,inst.dpDiv);if(sel[0]){$.datepicker._selectDay(event.target,inst.selectedMonth,inst.selectedYear,sel[0])}else{$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"))}return false;break;case 27:$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"));break;case 33:$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M");break;case 34:$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M");break;case 35:if(event.ctrlKey||event.metaKey){$.datepicker._clearDate(event.target)}handled=event.ctrlKey||event.metaKey;break;case 36:if(event.ctrlKey||event.metaKey){$.datepicker._gotoToday(event.target)}handled=event.ctrlKey||event.metaKey;break;case 37:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?+1:-1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M")}break;case 38:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,-7,"D")}handled=event.ctrlKey||event.metaKey;break;case 39:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?-1:+1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M")}break;case 40:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,+7,"D")}handled=event.ctrlKey||event.metaKey;break;default:handled=false}}else{if(event.keyCode==36&&event.ctrlKey){$.datepicker._showDatepicker(this)}else{handled=false}}if(handled){event.preventDefault();event.stopPropagation()}},_doKeyPress:function(event){var inst=$.datepicker._getInst(event.target);if($.datepicker._get(inst,"constrainInput")){var chars=$.datepicker._possibleChars($.datepicker._get(inst,"dateFormat"));var chr=String.fromCharCode(event.charCode==undefined?event.keyCode:event.charCode);return event.ctrlKey||(chr<" "||!chars||chars.indexOf(chr)>-1)}},_showDatepicker:function(input){input=input.target||input;if(input.nodeName.toLowerCase()!="input"){input=$("input",input.parentNode)[0]}if($.datepicker._isDisabledDatepicker(input)||$.datepicker._lastInput==input){return}var inst=$.datepicker._getInst(input);var beforeShow=$.datepicker._get(inst,"beforeShow");extendRemove(inst.settings,(beforeShow?beforeShow.apply(input,[input,inst]):{}));$.datepicker._hideDatepicker(null,"");$.datepicker._lastInput=input;$.datepicker._setDateFromField(inst);if($.datepicker._inDialog){input.value=""}if(!$.datepicker._pos){$.datepicker._pos=$.datepicker._findPos(input);$.datepicker._pos[1]+=input.offsetHeight}var isFixed=false;$(input).parents().each(function(){isFixed|=$(this).css("position")=="fixed";return!isFixed});if(isFixed&&$.browser.opera){$.datepicker._pos[0]-=document.documentElement.scrollLeft;$.datepicker._pos[1]-=document.documentElement.scrollTop}var offset={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null;inst.rangeStart=null;inst.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});$.datepicker._updateDatepicker(inst);offset=$.datepicker._checkOffset(inst,offset,isFixed);inst.dpDiv.css({position:($.datepicker._inDialog&&$.blockUI?"static":(isFixed?"fixed":"absolute")),display:"none",left:offset.left+"px",top:offset.top+"px"});if(!inst.inline){var showAnim=$.datepicker._get(inst,"showAnim")||"show";var duration=$.datepicker._get(inst,"duration");var postProcess=function(){$.datepicker._datepickerShowing=true;if($.browser.msie&&parseInt($.browser.version,10)<7){$("iframe.ui-datepicker-cover").css({width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4})}};if($.effects&&$.effects[showAnim]){inst.dpDiv.show(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[showAnim](duration,postProcess)}if(duration==""){postProcess()}if(inst.input[0].type!="hidden"){inst.input[0].focus()}$.datepicker._curInst=inst}},_updateDatepicker:function(inst){var dims={width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4};var self=this;inst.dpDiv.empty().append(this._generateHTML(inst)).find("iframe.ui-datepicker-cover").css({width:dims.width,height:dims.height}).end().find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){$(this).removeClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).removeClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).removeClass("ui-datepicker-next-hover")}}).bind("mouseover",function(){if(!self._isDisabledDatepicker(inst.inline?inst.dpDiv.parent()[0]:inst.input[0])){$(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");$(this).addClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).addClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).addClass("ui-datepicker-next-hover")}}}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end();var numMonths=this._getNumberOfMonths(inst);var cols=numMonths[1];var width=17;if(cols>1){inst.dpDiv.addClass("ui-datepicker-multi-"+cols).css("width",(width*cols)+"em")}else{inst.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("")}inst.dpDiv[(numMonths[0]!=1||numMonths[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");inst.dpDiv[(this._get(inst,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");if(inst.input&&inst.input[0].type!="hidden"&&inst==$.datepicker._curInst){$(inst.input[0]).focus()}},_checkOffset:function(inst,offset,isFixed){var dpWidth=inst.dpDiv.outerWidth();var dpHeight=inst.dpDiv.outerHeight();var inputWidth=inst.input?inst.input.outerWidth():0;var inputHeight=inst.input?inst.input.outerHeight():0;var viewWidth=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)+$(document).scrollLeft();var viewHeight=(window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight)+$(document).scrollTop();offset.left-=(this._get(inst,"isRTL")?(dpWidth-inputWidth):0);offset.left-=(isFixed&&offset.left==inst.input.offset().left)?$(document).scrollLeft():0;offset.top-=(isFixed&&offset.top==(inst.input.offset().top+inputHeight))?$(document).scrollTop():0;offset.left-=(offset.left+dpWidth>viewWidth&&viewWidth>dpWidth)?Math.abs(offset.left+dpWidth-viewWidth):0;offset.top-=(offset.top+dpHeight>viewHeight&&viewHeight>dpHeight)?Math.abs(offset.top+dpHeight+inputHeight*2-viewHeight):0;return offset},_findPos:function(obj){while(obj&&(obj.type=="hidden"||obj.nodeType!=1)){obj=obj.nextSibling}var position=$(obj).offset();return[position.left,position.top]},_hideDatepicker:function(input,duration){var inst=this._curInst;if(!inst||(input&&inst!=$.data(input,PROP_NAME))){return}if(inst.stayOpen){this._selectDate("#"+inst.id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear))}inst.stayOpen=false;if(this._datepickerShowing){duration=(duration!=null?duration:this._get(inst,"duration"));var showAnim=this._get(inst,"showAnim");var postProcess=function(){$.datepicker._tidyDialog(inst)};if(duration!=""&&$.effects&&$.effects[showAnim]){inst.dpDiv.hide(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[(duration==""?"hide":(showAnim=="slideDown"?"slideUp":(showAnim=="fadeIn"?"fadeOut":"hide")))](duration,postProcess)}if(duration==""){this._tidyDialog(inst)}var onClose=this._get(inst,"onClose");if(onClose){onClose.apply((inst.input?inst.input[0]:null),[(inst.input?inst.input.val():""),inst])}this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if($.blockUI){$.unblockUI();$("body").append(this.dpDiv)}}this._inDialog=false}this._curInst=null},_tidyDialog:function(inst){inst.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(event){if(!$.datepicker._curInst){return}var $target=$(event.target);if(($target.parents("#"+$.datepicker._mainDivId).length==0)&&!$target.hasClass($.datepicker.markerClassName)&&!$target.hasClass($.datepicker._triggerClass)&&$.datepicker._datepickerShowing&&!($.datepicker._inDialog&&$.blockUI)){$.datepicker._hideDatepicker(null,"")}},_adjustDate:function(id,offset,period){var target=$(id);var inst=this._getInst(target[0]);if(this._isDisabledDatepicker(target[0])){return}this._adjustInstDate(inst,offset+(period=="M"?this._get(inst,"showCurrentAtPos"):0),period);this._updateDatepicker(inst)},_gotoToday:function(id){var target=$(id);var inst=this._getInst(target[0]);if(this._get(inst,"gotoCurrent")&&inst.currentDay){inst.selectedDay=inst.currentDay;inst.drawMonth=inst.selectedMonth=inst.currentMonth;inst.drawYear=inst.selectedYear=inst.currentYear}else{var date=new Date();inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear()}this._notifyChange(inst);this._adjustDate(target)},_selectMonthYear:function(id,select,period){var target=$(id);var inst=this._getInst(target[0]);inst._selectingMonthYear=false;inst["selected"+(period=="M"?"Month":"Year")]=inst["draw"+(period=="M"?"Month":"Year")]=parseInt(select.options[select.selectedIndex].value,10);this._notifyChange(inst);this._adjustDate(target)},_clickMonthYear:function(id){var target=$(id);var inst=this._getInst(target[0]);if(inst.input&&inst._selectingMonthYear&&!$.browser.msie){inst.input[0].focus()}inst._selectingMonthYear=!inst._selectingMonthYear},_selectDay:function(id,month,year,td){var target=$(id);if($(td).hasClass(this._unselectableClass)||this._isDisabledDatepicker(target[0])){return}var inst=this._getInst(target[0]);inst.selectedDay=inst.currentDay=$("a",td).html();inst.selectedMonth=inst.currentMonth=month;inst.selectedYear=inst.currentYear=year;if(inst.stayOpen){inst.endDay=inst.endMonth=inst.endYear=null}this._selectDate(id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear));if(inst.stayOpen){inst.rangeStart=this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay));this._updateDatepicker(inst)}},_clearDate:function(id){var target=$(id);var inst=this._getInst(target[0]);inst.stayOpen=false;inst.endDay=inst.endMonth=inst.endYear=inst.rangeStart=null;this._selectDate(target,"")},_selectDate:function(id,dateStr){var target=$(id);var inst=this._getInst(target[0]);dateStr=(dateStr!=null?dateStr:this._formatDate(inst));if(inst.input){inst.input.val(dateStr)}this._updateAlternate(inst);var onSelect=this._get(inst,"onSelect");if(onSelect){onSelect.apply((inst.input?inst.input[0]:null),[dateStr,inst])}else{if(inst.input){inst.input.trigger("change")}}if(inst.inline){this._updateDatepicker(inst)}else{if(!inst.stayOpen){this._hideDatepicker(null,this._get(inst,"duration"));this._lastInput=inst.input[0];if(typeof(inst.input[0])!="object"){inst.input[0].focus()}this._lastInput=null}}},_updateAlternate:function(inst){var altField=this._get(inst,"altField");if(altField){var altFormat=this._get(inst,"altFormat")||this._get(inst,"dateFormat");var date=this._getDate(inst);dateStr=this.formatDate(altFormat,date,this._getFormatConfig(inst));$(altField).each(function(){$(this).val(dateStr)})}},noWeekends:function(date){var day=date.getDay();return[(day>0&&day<6),""]},iso8601Week:function(date){var checkDate=new Date(date.getFullYear(),date.getMonth(),date.getDate());var firstMon=new Date(checkDate.getFullYear(),1-1,4);var firstDay=firstMon.getDay()||7;firstMon.setDate(firstMon.getDate()+1-firstDay);if(firstDay<4&&checkDate<firstMon){checkDate.setDate(checkDate.getDate()-3);return $.datepicker.iso8601Week(checkDate)}else{if(checkDate>new Date(checkDate.getFullYear(),12-1,28)){firstDay=new Date(checkDate.getFullYear()+1,1-1,4).getDay()||7;if(firstDay>4&&(checkDate.getDay()||7)<firstDay-3){return 1}}}return Math.floor(((checkDate-firstMon)/86400000)/7)+1},parseDate:function(format,value,settings){if(format==null||value==null){throw"Invalid arguments"}value=(typeof value=="object"?value.toString():value+"");if(value==""){return null}var shortYearCutoff=(settings?settings.shortYearCutoff:null)||this._defaults.shortYearCutoff;var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var year=-1;var month=-1;var day=-1;var doy=-1;var literal=false;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var getNumber=function(match){lookAhead(match);var origSize=(match=="@"?14:(match=="y"?4:(match=="o"?3:2)));var size=origSize;var num=0;while(size>0&&iValue<value.length&&value.charAt(iValue)>="0"&&value.charAt(iValue)<="9"){num=num*10+parseInt(value.charAt(iValue++),10);size--}if(size==origSize){throw"Missing number at position "+iValue}return num};var getName=function(match,shortNames,longNames){var names=(lookAhead(match)?longNames:shortNames);var size=0;for(var j=0;j<names.length;j++){size=Math.max(size,names[j].length)}var name="";var iInit=iValue;while(size>0&&iValue<value.length){name+=value.charAt(iValue++);for(var i=0;i<names.length;i++){if(name==names[i]){return i+1}}size--}throw"Unknown name at position "+iInit};var checkLiteral=function(){if(value.charAt(iValue)!=format.charAt(iFormat)){throw"Unexpected literal at position "+iValue}iValue++};var iValue=0;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{checkLiteral()}}else{switch(format.charAt(iFormat)){case"d":day=getNumber("d");break;case"D":getName("D",dayNamesShort,dayNames);break;case"o":doy=getNumber("o");break;case"m":month=getNumber("m");break;case"M":month=getName("M",monthNamesShort,monthNames);break;case"y":year=getNumber("y");break;case"@":var date=new Date(getNumber("@"));year=date.getFullYear();month=date.getMonth()+1;day=date.getDate();break;case"'":if(lookAhead("'")){checkLiteral()}else{literal=true}break;default:checkLiteral()}}}if(year==-1){year=new Date().getFullYear()}else{if(year<100){year+=new Date().getFullYear()-new Date().getFullYear()%100+(year<=shortYearCutoff?0:-100)}}if(doy>-1){month=1;day=doy;do{var dim=this._getDaysInMonth(year,month-1);if(day<=dim){break}month++;day-=dim}while(true)}var date=this._daylightSavingAdjust(new Date(year,month-1,day));if(date.getFullYear()!=year||date.getMonth()+1!=month||date.getDate()!=day){throw"Invalid date"}return date},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TIMESTAMP:"@",W3C:"yy-mm-dd",formatDate:function(format,date,settings){if(!date){return""}var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var formatNumber=function(match,value,len){var num=""+value;if(lookAhead(match)){while(num.length<len){num="0"+num}}return num};var formatName=function(match,value,shortNames,longNames){return(lookAhead(match)?longNames[value]:shortNames[value])};var output="";var literal=false;if(date){for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{output+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":output+=formatNumber("d",date.getDate(),2);break;case"D":output+=formatName("D",date.getDay(),dayNamesShort,dayNames);break;case"o":var doy=date.getDate();for(var m=date.getMonth()-1;m>=0;m--){doy+=this._getDaysInMonth(date.getFullYear(),m)}output+=formatNumber("o",doy,3);break;case"m":output+=formatNumber("m",date.getMonth()+1,2);break;case"M":output+=formatName("M",date.getMonth(),monthNamesShort,monthNames);break;case"y":output+=(lookAhead("y")?date.getFullYear():(date.getYear()%100<10?"0":"")+date.getYear()%100);break;case"@":output+=date.getTime();break;case"'":if(lookAhead("'")){output+="'"}else{literal=true}break;default:output+=format.charAt(iFormat)}}}}return output},_possibleChars:function(format){var chars="";var literal=false;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{chars+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":case"m":case"y":case"@":chars+="0123456789";break;case"D":case"M":return null;case"'":if(lookAhead("'")){chars+="'"}else{literal=true}break;default:chars+=format.charAt(iFormat)}}}return chars},_get:function(inst,name){return inst.settings[name]!==undefined?inst.settings[name]:this._defaults[name]},_setDateFromField:function(inst){var dateFormat=this._get(inst,"dateFormat");var dates=inst.input?inst.input.val():null;inst.endDay=inst.endMonth=inst.endYear=null;var date=defaultDate=this._getDefaultDate(inst);var settings=this._getFormatConfig(inst);try{date=this.parseDate(dateFormat,dates,settings)||defaultDate}catch(event){this.log(event);date=defaultDate}inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();inst.currentDay=(dates?date.getDate():0);inst.currentMonth=(dates?date.getMonth():0);inst.currentYear=(dates?date.getFullYear():0);this._adjustInstDate(inst)},_getDefaultDate:function(inst){var date=this._determineDate(this._get(inst,"defaultDate"),new Date());var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);return date},_determineDate:function(date,defaultDate){var offsetNumeric=function(offset){var date=new Date();date.setDate(date.getDate()+offset);return date};var offsetString=function(offset,getDaysInMonth){var date=new Date();var year=date.getFullYear();var month=date.getMonth();var day=date.getDate();var pattern=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g;var matches=pattern.exec(offset);while(matches){switch(matches[2]||"d"){case"d":case"D":day+=parseInt(matches[1],10);break;case"w":case"W":day+=parseInt(matches[1],10)*7;break;case"m":case"M":month+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break;case"y":case"Y":year+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break}matches=pattern.exec(offset)}return new Date(year,month,day)};date=(date==null?defaultDate:(typeof date=="string"?offsetString(date,this._getDaysInMonth):(typeof date=="number"?(isNaN(date)?defaultDate:offsetNumeric(date)):date)));date=(date&&date.toString()=="Invalid Date"?defaultDate:date);if(date){date.setHours(0);date.setMinutes(0);date.setSeconds(0);date.setMilliseconds(0)}return this._daylightSavingAdjust(date)},_daylightSavingAdjust:function(date){if(!date){return null}date.setHours(date.getHours()>12?date.getHours()+2:0);return date},_setDate:function(inst,date,endDate){var clear=!(date);var origMonth=inst.selectedMonth;var origYear=inst.selectedYear;date=this._determineDate(date,new Date());inst.selectedDay=inst.currentDay=date.getDate();inst.drawMonth=inst.selectedMonth=inst.currentMonth=date.getMonth();inst.drawYear=inst.selectedYear=inst.currentYear=date.getFullYear();if(origMonth!=inst.selectedMonth||origYear!=inst.selectedYear){this._notifyChange(inst)}this._adjustInstDate(inst);if(inst.input){inst.input.val(clear?"":this._formatDate(inst))}},_getDate:function(inst){var startDate=(!inst.currentYear||(inst.input&&inst.input.val()=="")?null:this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return startDate},_generateHTML:function(inst){var today=new Date();today=this._daylightSavingAdjust(new Date(today.getFullYear(),today.getMonth(),today.getDate()));var isRTL=this._get(inst,"isRTL");var showButtonPanel=this._get(inst,"showButtonPanel");var hideIfNoPrevNext=this._get(inst,"hideIfNoPrevNext");var navigationAsDateFormat=this._get(inst,"navigationAsDateFormat");var numMonths=this._getNumberOfMonths(inst);var showCurrentAtPos=this._get(inst,"showCurrentAtPos");var stepMonths=this._get(inst,"stepMonths");var stepBigMonths=this._get(inst,"stepBigMonths");var isMultiMonth=(numMonths[0]!=1||numMonths[1]!=1);var currentDate=this._daylightSavingAdjust((!inst.currentDay?new Date(9999,9,9):new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");var drawMonth=inst.drawMonth-showCurrentAtPos;var drawYear=inst.drawYear;if(drawMonth<0){drawMonth+=12;drawYear--}if(maxDate){var maxDraw=this._daylightSavingAdjust(new Date(maxDate.getFullYear(),maxDate.getMonth()-numMonths[1]+1,maxDate.getDate()));maxDraw=(minDate&&maxDraw<minDate?minDate:maxDraw);while(this._daylightSavingAdjust(new Date(drawYear,drawMonth,1))>maxDraw){drawMonth--;if(drawMonth<0){drawMonth=11;drawYear--}}}inst.drawMonth=drawMonth;inst.drawYear=drawYear;var prevText=this._get(inst,"prevText");prevText=(!navigationAsDateFormat?prevText:this.formatDate(prevText,this._daylightSavingAdjust(new Date(drawYear,drawMonth-stepMonths,1)),this._getFormatConfig(inst)));var prev=(this._canAdjustMonth(inst,-1,drawYear,drawMonth)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', -"+stepMonths+", 'M');\" title=\""+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>"));var nextText=this._get(inst,"nextText");nextText=(!navigationAsDateFormat?nextText:this.formatDate(nextText,this._daylightSavingAdjust(new Date(drawYear,drawMonth+stepMonths,1)),this._getFormatConfig(inst)));var next=(this._canAdjustMonth(inst,+1,drawYear,drawMonth)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', +"+stepMonths+", 'M');\" title=\""+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>"));var currentText=this._get(inst,"currentText");var gotoDate=(this._get(inst,"gotoCurrent")&&inst.currentDay?currentDate:today);currentText=(!navigationAsDateFormat?currentText:this.formatDate(currentText,gotoDate,this._getFormatConfig(inst)));var controls=(!inst.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery.datepicker._hideDatepicker();">'+this._get(inst,"closeText")+"</button>":"");var buttonPanel=(showButtonPanel)?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(isRTL?controls:"")+(this._isInRange(inst,gotoDate)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery.datepicker._gotoToday(\'#'+inst.id+"');\">"+currentText+"</button>":"")+(isRTL?"":controls)+"</div>":"";var firstDay=parseInt(this._get(inst,"firstDay"),10);firstDay=(isNaN(firstDay)?0:firstDay);var dayNames=this._get(inst,"dayNames");var dayNamesShort=this._get(inst,"dayNamesShort");var dayNamesMin=this._get(inst,"dayNamesMin");var monthNames=this._get(inst,"monthNames");var monthNamesShort=this._get(inst,"monthNamesShort");var beforeShowDay=this._get(inst,"beforeShowDay");var showOtherMonths=this._get(inst,"showOtherMonths");var calculateWeek=this._get(inst,"calculateWeek")||this.iso8601Week;var endDate=inst.endDay?this._daylightSavingAdjust(new Date(inst.endYear,inst.endMonth,inst.endDay)):currentDate;var defaultDate=this._getDefaultDate(inst);var html="";for(var row=0;row<numMonths[0];row++){var group="";for(var col=0;col<numMonths[1];col++){var selectedDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,inst.selectedDay));var cornerClass=" ui-corner-all";var calender="";if(isMultiMonth){calender+='<div class="ui-datepicker-group ui-datepicker-group-';switch(col){case 0:calender+="first";cornerClass=" ui-corner-"+(isRTL?"right":"left");break;case numMonths[1]-1:calender+="last";cornerClass=" ui-corner-"+(isRTL?"left":"right");break;default:calender+="middle";cornerClass="";break}calender+='">'}calender+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+cornerClass+'">'+(/all|left/.test(cornerClass)&&row==0?(isRTL?next:prev):"")+(/all|right/.test(cornerClass)&&row==0?(isRTL?prev:next):"")+this._generateMonthYearHeader(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,row>0||col>0,monthNames,monthNamesShort)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var thead="";for(var dow=0;dow<7;dow++){var day=(dow+firstDay)%7;thead+="<th"+((dow+firstDay+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+dayNames[day]+'">'+dayNamesMin[day]+"</span></th>"}calender+=thead+"</tr></thead><tbody>";var daysInMonth=this._getDaysInMonth(drawYear,drawMonth);if(drawYear==inst.selectedYear&&drawMonth==inst.selectedMonth){inst.selectedDay=Math.min(inst.selectedDay,daysInMonth)}var leadDays=(this._getFirstDayOfMonth(drawYear,drawMonth)-firstDay+7)%7;var numRows=(isMultiMonth?6:Math.ceil((leadDays+daysInMonth)/7));var printDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,1-leadDays));for(var dRow=0;dRow<numRows;dRow++){calender+="<tr>";var tbody="";for(var dow=0;dow<7;dow++){var daySettings=(beforeShowDay?beforeShowDay.apply((inst.input?inst.input[0]:null),[printDate]):[true,""]);var otherMonth=(printDate.getMonth()!=drawMonth);var unselectable=otherMonth||!daySettings[0]||(minDate&&printDate<minDate)||(maxDate&&printDate>maxDate);tbody+='<td class="'+((dow+firstDay+6)%7>=5?" ui-datepicker-week-end":"")+(otherMonth?" ui-datepicker-other-month":"")+((printDate.getTime()==selectedDate.getTime()&&drawMonth==inst.selectedMonth&&inst._keyEvent)||(defaultDate.getTime()==printDate.getTime()&&defaultDate.getTime()==selectedDate.getTime())?" "+this._dayOverClass:"")+(unselectable?" "+this._unselectableClass+" ui-state-disabled":"")+(otherMonth&&!showOtherMonths?"":" "+daySettings[1]+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" "+this._currentClass:"")+(printDate.getTime()==today.getTime()?" ui-datepicker-today":""))+'"'+((!otherMonth||showOtherMonths)&&daySettings[2]?' title="'+daySettings[2]+'"':"")+(unselectable?"":" onclick=\"DP_jQuery.datepicker._selectDay('#"+inst.id+"',"+drawMonth+","+drawYear+', this);return false;"')+">"+(otherMonth?(showOtherMonths?printDate.getDate():"&#xa0;"):(unselectable?'<span class="ui-state-default">'+printDate.getDate()+"</span>":'<a class="ui-state-default'+(printDate.getTime()==today.getTime()?" ui-state-highlight":"")+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" ui-state-active":"")+'" href="#">'+printDate.getDate()+"</a>"))+"</td>";printDate.setDate(printDate.getDate()+1);printDate=this._daylightSavingAdjust(printDate)}calender+=tbody+"</tr>"}drawMonth++;if(drawMonth>11){drawMonth=0;drawYear++}calender+="</tbody></table>"+(isMultiMonth?"</div>"+((numMonths[0]>0&&col==numMonths[1]-1)?'<div class="ui-datepicker-row-break"></div>':""):"");group+=calender}html+=group}html+=buttonPanel+($.browser.msie&&parseInt($.browser.version,10)<7&&!inst.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':"");inst._keyEvent=false;return html},_generateMonthYearHeader:function(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,secondary,monthNames,monthNamesShort){minDate=(inst.rangeStart&&minDate&&selectedDate<minDate?selectedDate:minDate);var changeMonth=this._get(inst,"changeMonth");var changeYear=this._get(inst,"changeYear");var showMonthAfterYear=this._get(inst,"showMonthAfterYear");var html='<div class="ui-datepicker-title">';var monthHtml="";if(secondary||!changeMonth){monthHtml+='<span class="ui-datepicker-month">'+monthNames[drawMonth]+"</span> "}else{var inMinYear=(minDate&&minDate.getFullYear()==drawYear);var inMaxYear=(maxDate&&maxDate.getFullYear()==drawYear);monthHtml+='<select class="ui-datepicker-month" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'M');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(var month=0;month<12;month++){if((!inMinYear||month>=minDate.getMonth())&&(!inMaxYear||month<=maxDate.getMonth())){monthHtml+='<option value="'+month+'"'+(month==drawMonth?' selected="selected"':"")+">"+monthNamesShort[month]+"</option>"}}monthHtml+="</select>"}if(!showMonthAfterYear){html+=monthHtml+((secondary||changeMonth||changeYear)&&(!(changeMonth&&changeYear))?"&#xa0;":"")}if(secondary||!changeYear){html+='<span class="ui-datepicker-year">'+drawYear+"</span>"}else{var years=this._get(inst,"yearRange").split(":");var year=0;var endYear=0;if(years.length!=2){year=drawYear-10;endYear=drawYear+10}else{if(years[0].charAt(0)=="+"||years[0].charAt(0)=="-"){year=drawYear+parseInt(years[0],10);endYear=drawYear+parseInt(years[1],10)}else{year=parseInt(years[0],10);endYear=parseInt(years[1],10)}}year=(minDate?Math.max(year,minDate.getFullYear()):year);endYear=(maxDate?Math.min(endYear,maxDate.getFullYear()):endYear);html+='<select class="ui-datepicker-year" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'Y');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(;year<=endYear;year++){html+='<option value="'+year+'"'+(year==drawYear?' selected="selected"':"")+">"+year+"</option>"}html+="</select>"}if(showMonthAfterYear){html+=(secondary||changeMonth||changeYear?"&#xa0;":"")+monthHtml}html+="</div>";return html},_adjustInstDate:function(inst,offset,period){var year=inst.drawYear+(period=="Y"?offset:0);var month=inst.drawMonth+(period=="M"?offset:0);var day=Math.min(inst.selectedDay,this._getDaysInMonth(year,month))+(period=="D"?offset:0);var date=this._daylightSavingAdjust(new Date(year,month,day));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();if(period=="M"||period=="Y"){this._notifyChange(inst)}},_notifyChange:function(inst){var onChange=this._get(inst,"onChangeMonthYear");if(onChange){onChange.apply((inst.input?inst.input[0]:null),[inst.selectedYear,inst.selectedMonth+1,inst])}},_getNumberOfMonths:function(inst){var numMonths=this._get(inst,"numberOfMonths");return(numMonths==null?[1,1]:(typeof numMonths=="number"?[1,numMonths]:numMonths))},_getMinMaxDate:function(inst,minMax,checkRange){var date=this._determineDate(this._get(inst,minMax+"Date"),null);return(!checkRange||!inst.rangeStart?date:(!date||inst.rangeStart>date?inst.rangeStart:date))},_getDaysInMonth:function(year,month){return 32-new Date(year,month,32).getDate()},_getFirstDayOfMonth:function(year,month){return new Date(year,month,1).getDay()},_canAdjustMonth:function(inst,offset,curYear,curMonth){var numMonths=this._getNumberOfMonths(inst);var date=this._daylightSavingAdjust(new Date(curYear,curMonth+(offset<0?offset:numMonths[1]),1));if(offset<0){date.setDate(this._getDaysInMonth(date.getFullYear(),date.getMonth()))}return this._isInRange(inst,date)},_isInRange:function(inst,date){var newMinDate=(!inst.rangeStart?null:this._daylightSavingAdjust(new Date(inst.selectedYear,inst.selectedMonth,inst.selectedDay)));newMinDate=(newMinDate&&inst.rangeStart<newMinDate?inst.rangeStart:newMinDate);var minDate=newMinDate||this._getMinMaxDate(inst,"min");var maxDate=this._getMinMaxDate(inst,"max");return((!minDate||date>=minDate)&&(!maxDate||date<=maxDate))},_getFormatConfig:function(inst){var shortYearCutoff=this._get(inst,"shortYearCutoff");shortYearCutoff=(typeof shortYearCutoff!="string"?shortYearCutoff:new Date().getFullYear()%100+parseInt(shortYearCutoff,10));return{shortYearCutoff:shortYearCutoff,dayNamesShort:this._get(inst,"dayNamesShort"),dayNames:this._get(inst,"dayNames"),monthNamesShort:this._get(inst,"monthNamesShort"),monthNames:this._get(inst,"monthNames")}},_formatDate:function(inst,day,month,year){if(!day){inst.currentDay=inst.selectedDay;inst.currentMonth=inst.selectedMonth;inst.currentYear=inst.selectedYear}var date=(day?(typeof day=="object"?day:this._daylightSavingAdjust(new Date(year,month,day))):this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return this.formatDate(this._get(inst,"dateFormat"),date,this._getFormatConfig(inst))}});function extendRemove(target,props){$.extend(target,props);for(var name in props){if(props[name]==null||props[name]==undefined){target[name]=props[name]}}return target}function isArray(a){return(a&&(($.browser.safari&&typeof a=="object"&&a.length)||(a.constructor&&a.constructor.toString().match(/\Array\(\)/))))}$.fn.datepicker=function(options){if(!$.datepicker.initialized){$(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv);$.datepicker.initialized=true}var otherArgs=Array.prototype.slice.call(arguments,1);if(typeof options=="string"&&(options=="isDisabled"||options=="getDate")){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}if(options=="option"&&arguments.length==2&&typeof arguments[1]=="string"){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}return this.each(function(){typeof options=="string"?$.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this].concat(otherArgs)):$.datepicker._attachDatepicker(this,options)})};$.datepicker=new Datepicker();$.datepicker.initialized=false;$.datepicker.uuid=new Date().getTime();$.datepicker.version="1.7.2";window.DP_jQuery=$})(jQuery);;(function(a){a.widget("ui.progressbar",{_init:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this._valueMin(),"aria-valuemax":this._valueMax(),"aria-valuenow":this._value()});this.valueDiv=a('<div class="ui-progressbar-value ui-widget-header ui-corner-left"></div>').appendTo(this.element);this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow").removeData("progressbar").unbind(".progressbar");this.valueDiv.remove();a.widget.prototype.destroy.apply(this,arguments)},value:function(b){if(b===undefined){return this._value()}this._setData("value",b);return this},_setData:function(b,c){switch(b){case"value":this.options.value=c;this._refreshValue();this._trigger("change",null,{});break}a.widget.prototype._setData.apply(this,arguments)},_value:function(){var b=this.options.value;if(b<this._valueMin()){b=this._valueMin()}if(b>this._valueMax()){b=this._valueMax()}return b},_valueMin:function(){var b=0;return b},_valueMax:function(){var b=100;return b},_refreshValue:function(){var b=this.value();this.valueDiv[b==this._valueMax()?"addClass":"removeClass"]("ui-corner-right");this.valueDiv.width(b+"%");this.element.attr("aria-valuenow",b)}});a.extend(a.ui.progressbar,{version:"1.7.2",defaults:{value:0}})})(jQuery);;jQuery.effects||(function(d){d.effects={version:"1.7.2",save:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.data("ec.storage."+h[f],g[0].style[h[f]])}}},restore:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.css(h[f],g.data("ec.storage."+h[f]))}}},setMode:function(f,g){if(g=="toggle"){g=f.is(":hidden")?"show":"hide"}return g},getBaseline:function(g,h){var i,f;switch(g[0]){case"top":i=0;break;case"middle":i=0.5;break;case"bottom":i=1;break;default:i=g[0]/h.height}switch(g[1]){case"left":f=0;break;case"center":f=0.5;break;case"right":f=1;break;default:f=g[1]/h.width}return{x:f,y:i}},createWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent()}var g={width:f.outerWidth(true),height:f.outerHeight(true),"float":f.css("float")};f.wrap('<div class="ui-effects-wrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var j=f.parent();if(f.css("position")=="static"){j.css({position:"relative"});f.css({position:"relative"})}else{var i=f.css("top");if(isNaN(parseInt(i,10))){i="auto"}var h=f.css("left");if(isNaN(parseInt(h,10))){h="auto"}j.css({position:f.css("position"),top:i,left:h,zIndex:f.css("z-index")}).show();f.css({position:"relative",top:0,left:0})}j.css(g);return j},removeWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent().replaceWith(f)}return f},setTransition:function(g,i,f,h){h=h||{};d.each(i,function(k,j){unit=g.cssUnit(j);if(unit[0]>0){h[j]=unit[0]*f+unit[1]}});return h},animateClass:function(h,i,k,j){var f=(typeof k=="function"?k:(j?j:null));var g=(typeof k=="string"?k:null);return this.each(function(){var q={};var o=d(this);var p=o.attr("style")||"";if(typeof p=="object"){p=p.cssText}if(h.toggle){o.hasClass(h.toggle)?h.remove=h.toggle:h.add=h.toggle}var l=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.addClass(h.add)}if(h.remove){o.removeClass(h.remove)}var m=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.removeClass(h.add)}if(h.remove){o.addClass(h.remove)}for(var r in m){if(typeof m[r]!="function"&&m[r]&&r.indexOf("Moz")==-1&&r.indexOf("length")==-1&&m[r]!=l[r]&&(r.match(/color/i)||(!r.match(/color/i)&&!isNaN(parseInt(m[r],10))))&&(l.position!="static"||(l.position=="static"&&!r.match(/left|top|bottom|right/)))){q[r]=m[r]}}o.animate(q,i,g,function(){if(typeof d(this).attr("style")=="object"){d(this).attr("style")["cssText"]="";d(this).attr("style")["cssText"]=p}else{d(this).attr("style",p)}if(h.add){d(this).addClass(h.add)}if(h.remove){d(this).removeClass(h.remove)}if(f){f.apply(this,arguments)}})})}};function c(g,f){var i=g[1]&&g[1].constructor==Object?g[1]:{};if(f){i.mode=f}var h=g[1]&&g[1].constructor!=Object?g[1]:(i.duration?i.duration:g[2]);h=d.fx.off?0:typeof h==="number"?h:d.fx.speeds[h]||d.fx.speeds._default;var j=i.callback||(d.isFunction(g[1])&&g[1])||(d.isFunction(g[2])&&g[2])||(d.isFunction(g[3])&&g[3]);return[g[0],i,h,j]}d.fn.extend({_show:d.fn.show,_hide:d.fn.hide,__toggle:d.fn.toggle,_addClass:d.fn.addClass,_removeClass:d.fn.removeClass,_toggleClass:d.fn.toggleClass,effect:function(g,f,h,i){return d.effects[g]?d.effects[g].call(this,{method:g,options:f||{},duration:h,callback:i}):null},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._show.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"show"))}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._hide.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"hide"))}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))||(d.isFunction(arguments[0])||typeof arguments[0]=="boolean")){return this.__toggle.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"toggle"))}},addClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{add:g},f,i,h]):this._addClass(g)},removeClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{remove:g},f,i,h]):this._removeClass(g)},toggleClass:function(g,f,i,h){return((typeof f!=="boolean")&&f)?d.effects.animateClass.apply(this,[{toggle:g},f,i,h]):this._toggleClass(g,f)},morph:function(f,h,g,j,i){return d.effects.animateClass.apply(this,[{add:h,remove:f},g,j,i])},switchClass:function(){return this.morph.apply(this,arguments)},cssUnit:function(f){var g=this.css(f),h=[];d.each(["em","px","%","pt"],function(j,k){if(g.indexOf(k)>0){h=[parseFloat(g),k]}});return h}});d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(g,f){d.fx.step[f]=function(h){if(h.state==0){h.start=e(h.elem,f);h.end=b(h.end)}h.elem.style[f]="rgb("+[Math.max(Math.min(parseInt((h.pos*(h.end[0]-h.start[0]))+h.start[0],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[1]-h.start[1]))+h.start[1],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[2]-h.start[2]))+h.start[2],10),255),0)].join(",")+")"}});function b(g){var f;if(g&&g.constructor==Array&&g.length==3){return g}if(f=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(g)){return[parseInt(f[1],10),parseInt(f[2],10),parseInt(f[3],10)]}if(f=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(g)){return[parseFloat(f[1])*2.55,parseFloat(f[2])*2.55,parseFloat(f[3])*2.55]}if(f=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(g)){return[parseInt(f[1],16),parseInt(f[2],16),parseInt(f[3],16)]}if(f=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(g)){return[parseInt(f[1]+f[1],16),parseInt(f[2]+f[2],16),parseInt(f[3]+f[3],16)]}if(f=/rgba\(0, 0, 0, 0\)/.exec(g)){return a.transparent}return a[d.trim(g).toLowerCase()]}function e(h,f){var g;do{g=d.curCSS(h,f);if(g!=""&&g!="transparent"||d.nodeName(h,"body")){break}f="backgroundColor"}while(h=h.parentNode);return b(g)}var a={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]};d.easing.jswing=d.easing.swing;d.extend(d.easing,{def:"easeOutQuad",swing:function(g,h,f,j,i){return d.easing[d.easing.def](g,h,f,j,i)},easeInQuad:function(g,h,f,j,i){return j*(h/=i)*h+f},easeOutQuad:function(g,h,f,j,i){return-j*(h/=i)*(h-2)+f},easeInOutQuad:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h+f}return-j/2*((--h)*(h-2)-1)+f},easeInCubic:function(g,h,f,j,i){return j*(h/=i)*h*h+f},easeOutCubic:function(g,h,f,j,i){return j*((h=h/i-1)*h*h+1)+f},easeInOutCubic:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h+f}return j/2*((h-=2)*h*h+2)+f},easeInQuart:function(g,h,f,j,i){return j*(h/=i)*h*h*h+f},easeOutQuart:function(g,h,f,j,i){return-j*((h=h/i-1)*h*h*h-1)+f},easeInOutQuart:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h+f}return-j/2*((h-=2)*h*h*h-2)+f},easeInQuint:function(g,h,f,j,i){return j*(h/=i)*h*h*h*h+f},easeOutQuint:function(g,h,f,j,i){return j*((h=h/i-1)*h*h*h*h+1)+f},easeInOutQuint:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h*h+f}return j/2*((h-=2)*h*h*h*h+2)+f},easeInSine:function(g,h,f,j,i){return-j*Math.cos(h/i*(Math.PI/2))+j+f},easeOutSine:function(g,h,f,j,i){return j*Math.sin(h/i*(Math.PI/2))+f},easeInOutSine:function(g,h,f,j,i){return-j/2*(Math.cos(Math.PI*h/i)-1)+f},easeInExpo:function(g,h,f,j,i){return(h==0)?f:j*Math.pow(2,10*(h/i-1))+f},easeOutExpo:function(g,h,f,j,i){return(h==i)?f+j:j*(-Math.pow(2,-10*h/i)+1)+f},easeInOutExpo:function(g,h,f,j,i){if(h==0){return f}if(h==i){return f+j}if((h/=i/2)<1){return j/2*Math.pow(2,10*(h-1))+f}return j/2*(-Math.pow(2,-10*--h)+2)+f},easeInCirc:function(g,h,f,j,i){return-j*(Math.sqrt(1-(h/=i)*h)-1)+f},easeOutCirc:function(g,h,f,j,i){return j*Math.sqrt(1-(h=h/i-1)*h)+f},easeInOutCirc:function(g,h,f,j,i){if((h/=i/2)<1){return-j/2*(Math.sqrt(1-h*h)-1)+f}return j/2*(Math.sqrt(1-(h-=2)*h)+1)+f},easeInElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return-(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f},easeOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return h*Math.pow(2,-10*i)*Math.sin((i*l-j)*(2*Math.PI)/k)+m+f},easeInOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l/2)==2){return f+m}if(!k){k=l*(0.3*1.5)}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}if(i<1){return-0.5*(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f}return h*Math.pow(2,-10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k)*0.5+m+f},easeInBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*(h/=j)*h*((i+1)*h-i)+f},easeOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*((h=h/j-1)*h*((i+1)*h+i)+1)+f},easeInOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}if((h/=j/2)<1){return k/2*(h*h*(((i*=(1.525))+1)*h-i))+f}return k/2*((h-=2)*h*(((i*=(1.525))+1)*h+i)+2)+f},easeInBounce:function(g,h,f,j,i){return j-d.easing.easeOutBounce(g,i-h,0,j,i)+f},easeOutBounce:function(g,h,f,j,i){if((h/=i)<(1/2.75)){return j*(7.5625*h*h)+f}else{if(h<(2/2.75)){return j*(7.5625*(h-=(1.5/2.75))*h+0.75)+f}else{if(h<(2.5/2.75)){return j*(7.5625*(h-=(2.25/2.75))*h+0.9375)+f}else{return j*(7.5625*(h-=(2.625/2.75))*h+0.984375)+f}}}},easeInOutBounce:function(g,h,f,j,i){if(h<i/2){return d.easing.easeInBounce(g,h*2,0,j,i)*0.5+f}return d.easing.easeOutBounce(g,h*2-i,0,j,i)*0.5+j*0.5+f}})})(jQuery);;(function(a){a.effects.blind=function(b){return this.queue(function(){var d=a(this),c=["position","top","left"];var h=a.effects.setMode(d,b.options.mode||"hide");var g=b.options.direction||"vertical";a.effects.save(d,c);d.show();var j=a.effects.createWrapper(d).css({overflow:"hidden"});var e=(g=="vertical")?"height":"width";var i=(g=="vertical")?j.height():j.width();if(h=="show"){j.css(e,0)}var f={};f[e]=h=="show"?i:0;j.animate(f,b.duration,b.options.easing,function(){if(h=="hide"){d.hide()}a.effects.restore(d,c);a.effects.removeWrapper(d);if(b.callback){b.callback.apply(d[0],arguments)}d.dequeue()})})}})(jQuery);;(function(a){a.effects.bounce=function(b){return this.queue(function(){var e=a(this),l=["position","top","left"];var k=a.effects.setMode(e,b.options.mode||"effect");var n=b.options.direction||"up";var c=b.options.distance||20;var d=b.options.times||5;var g=b.duration||250;if(/show|hide/.test(k)){l.push("opacity")}a.effects.save(e,l);e.show();a.effects.createWrapper(e);var f=(n=="up"||n=="down")?"top":"left";var p=(n=="up"||n=="left")?"pos":"neg";var c=b.options.distance||(f=="top"?e.outerHeight({margin:true})/3:e.outerWidth({margin:true})/3);if(k=="show"){e.css("opacity",0).css(f,p=="pos"?-c:c)}if(k=="hide"){c=c/(d*2)}if(k!="hide"){d--}if(k=="show"){var h={opacity:1};h[f]=(p=="pos"?"+=":"-=")+c;e.animate(h,g/2,b.options.easing);c=c/2;d--}for(var j=0;j<d;j++){var o={},m={};o[f]=(p=="pos"?"-=":"+=")+c;m[f]=(p=="pos"?"+=":"-=")+c;e.animate(o,g/2,b.options.easing).animate(m,g/2,b.options.easing);c=(k=="hide")?c*2:c/2}if(k=="hide"){var h={opacity:0};h[f]=(p=="pos"?"-=":"+=")+c;e.animate(h,g/2,b.options.easing,function(){e.hide();a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}})}else{var o={},m={};o[f]=(p=="pos"?"-=":"+=")+c;m[f]=(p=="pos"?"+=":"-=")+c;e.animate(o,g/2,b.options.easing).animate(m,g/2,b.options.easing,function(){a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}})}e.queue("fx",function(){e.dequeue()});e.dequeue()})}})(jQuery);;(function(a){a.effects.clip=function(b){return this.queue(function(){var f=a(this),j=["position","top","left","height","width"];var i=a.effects.setMode(f,b.options.mode||"hide");var k=b.options.direction||"vertical";a.effects.save(f,j);f.show();var c=a.effects.createWrapper(f).css({overflow:"hidden"});var e=f[0].tagName=="IMG"?c:f;var g={size:(k=="vertical")?"height":"width",position:(k=="vertical")?"top":"left"};var d=(k=="vertical")?e.height():e.width();if(i=="show"){e.css(g.size,0);e.css(g.position,d/2)}var h={};h[g.size]=i=="show"?d:0;h[g.position]=i=="show"?0:d/2;e.animate(h,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){f.hide()}a.effects.restore(f,j);a.effects.removeWrapper(f);if(b.callback){b.callback.apply(f[0],arguments)}f.dequeue()}})})}})(jQuery);;(function(a){a.effects.drop=function(b){return this.queue(function(){var e=a(this),d=["position","top","left","opacity"];var i=a.effects.setMode(e,b.options.mode||"hide");var h=b.options.direction||"left";a.effects.save(e,d);e.show();a.effects.createWrapper(e);var f=(h=="up"||h=="down")?"top":"left";var c=(h=="up"||h=="left")?"pos":"neg";var j=b.options.distance||(f=="top"?e.outerHeight({margin:true})/2:e.outerWidth({margin:true})/2);if(i=="show"){e.css("opacity",0).css(f,c=="pos"?-j:j)}var g={opacity:i=="show"?1:0};g[f]=(i=="show"?(c=="pos"?"+=":"-="):(c=="pos"?"-=":"+="))+j;e.animate(g,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){e.hide()}a.effects.restore(e,d);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;(function(a){a.effects.explode=function(b){return this.queue(function(){var k=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3;var e=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3;b.options.mode=b.options.mode=="toggle"?(a(this).is(":visible")?"hide":"show"):b.options.mode;var h=a(this).show().css("visibility","hidden");var l=h.offset();l.top-=parseInt(h.css("marginTop"),10)||0;l.left-=parseInt(h.css("marginLeft"),10)||0;var g=h.outerWidth(true);var c=h.outerHeight(true);for(var f=0;f<k;f++){for(var d=0;d<e;d++){h.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-d*(g/e),top:-f*(c/k)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:g/e,height:c/k,left:l.left+d*(g/e)+(b.options.mode=="show"?(d-Math.floor(e/2))*(g/e):0),top:l.top+f*(c/k)+(b.options.mode=="show"?(f-Math.floor(k/2))*(c/k):0),opacity:b.options.mode=="show"?0:1}).animate({left:l.left+d*(g/e)+(b.options.mode=="show"?0:(d-Math.floor(e/2))*(g/e)),top:l.top+f*(c/k)+(b.options.mode=="show"?0:(f-Math.floor(k/2))*(c/k)),opacity:b.options.mode=="show"?1:0},b.duration||500)}}setTimeout(function(){b.options.mode=="show"?h.css({visibility:"visible"}):h.css({visibility:"visible"}).hide();if(b.callback){b.callback.apply(h[0])}h.dequeue();a("div.ui-effects-explode").remove()},b.duration||500)})}})(jQuery);;(function(a){a.effects.fold=function(b){return this.queue(function(){var e=a(this),k=["position","top","left"];var h=a.effects.setMode(e,b.options.mode||"hide");var o=b.options.size||15;var n=!(!b.options.horizFirst);var g=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(e,k);e.show();var d=a.effects.createWrapper(e).css({overflow:"hidden"});var i=((h=="show")!=n);var f=i?["width","height"]:["height","width"];var c=i?[d.width(),d.height()]:[d.height(),d.width()];var j=/([0-9]+)%/.exec(o);if(j){o=parseInt(j[1],10)/100*c[h=="hide"?0:1]}if(h=="show"){d.css(n?{height:0,width:o}:{height:o,width:0})}var m={},l={};m[f[0]]=h=="show"?c[0]:o;l[f[1]]=h=="show"?c[1]:0;d.animate(m,g,b.options.easing).animate(l,g,b.options.easing,function(){if(h=="hide"){e.hide()}a.effects.restore(e,k);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(e[0],arguments)}e.dequeue()})})}})(jQuery);;(function(a){a.effects.highlight=function(b){return this.queue(function(){var e=a(this),d=["backgroundImage","backgroundColor","opacity"];var h=a.effects.setMode(e,b.options.mode||"show");var c=b.options.color||"#ffff99";var g=e.css("backgroundColor");a.effects.save(e,d);e.show();e.css({backgroundImage:"none",backgroundColor:c});var f={backgroundColor:g};if(h=="hide"){f.opacity=0}e.animate(f,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(h=="hide"){e.hide()}a.effects.restore(e,d);if(h=="show"&&a.browser.msie){this.style.removeAttribute("filter")}if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;(function(a){a.effects.pulsate=function(b){return this.queue(function(){var d=a(this);var g=a.effects.setMode(d,b.options.mode||"show");var f=b.options.times||5;var e=b.duration?b.duration/2:a.fx.speeds._default/2;if(g=="hide"){f--}if(d.is(":hidden")){d.css("opacity",0);d.show();d.animate({opacity:1},e,b.options.easing);f=f-2}for(var c=0;c<f;c++){d.animate({opacity:0},e,b.options.easing).animate({opacity:1},e,b.options.easing)}if(g=="hide"){d.animate({opacity:0},e,b.options.easing,function(){d.hide();if(b.callback){b.callback.apply(this,arguments)}})}else{d.animate({opacity:0},e,b.options.easing).animate({opacity:1},e,b.options.easing,function(){if(b.callback){b.callback.apply(this,arguments)}})}d.queue("fx",function(){d.dequeue()});d.dequeue()})}})(jQuery);;(function(a){a.effects.puff=function(b){return this.queue(function(){var f=a(this);var c=a.extend(true,{},b.options);var h=a.effects.setMode(f,b.options.mode||"hide");var g=parseInt(b.options.percent,10)||150;c.fade=true;var e={height:f.height(),width:f.width()};var d=g/100;f.from=(h=="hide")?e:{height:e.height*d,width:e.width*d};c.from=f.from;c.percent=(h=="hide")?g:100;c.mode=h;f.effect("scale",c,b.duration,b.callback);f.dequeue()})};a.effects.scale=function(b){return this.queue(function(){var g=a(this);var d=a.extend(true,{},b.options);var j=a.effects.setMode(g,b.options.mode||"effect");var h=parseInt(b.options.percent,10)||(parseInt(b.options.percent,10)==0?0:(j=="hide"?0:100));var i=b.options.direction||"both";var c=b.options.origin;if(j!="effect"){d.origin=c||["middle","center"];d.restore=true}var f={height:g.height(),width:g.width()};g.from=b.options.from||(j=="show"?{height:0,width:0}:f);var e={y:i!="horizontal"?(h/100):1,x:i!="vertical"?(h/100):1};g.to={height:f.height*e.y,width:f.width*e.x};if(b.options.fade){if(j=="show"){g.from.opacity=0;g.to.opacity=1}if(j=="hide"){g.from.opacity=1;g.to.opacity=0}}d.from=g.from;d.to=g.to;d.mode=j;g.effect("size",d,b.duration,b.callback);g.dequeue()})};a.effects.size=function(b){return this.queue(function(){var c=a(this),n=["position","top","left","width","height","overflow","opacity"];var m=["position","top","left","overflow","opacity"];var j=["width","height","overflow"];var p=["fontSize"];var k=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"];var f=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"];var g=a.effects.setMode(c,b.options.mode||"effect");var i=b.options.restore||false;var e=b.options.scale||"both";var o=b.options.origin;var d={height:c.height(),width:c.width()};c.from=b.options.from||d;c.to=b.options.to||d;if(o){var h=a.effects.getBaseline(o,d);c.from.top=(d.height-c.from.height)*h.y;c.from.left=(d.width-c.from.width)*h.x;c.to.top=(d.height-c.to.height)*h.y;c.to.left=(d.width-c.to.width)*h.x}var l={from:{y:c.from.height/d.height,x:c.from.width/d.width},to:{y:c.to.height/d.height,x:c.to.width/d.width}};if(e=="box"||e=="both"){if(l.from.y!=l.to.y){n=n.concat(k);c.from=a.effects.setTransition(c,k,l.from.y,c.from);c.to=a.effects.setTransition(c,k,l.to.y,c.to)}if(l.from.x!=l.to.x){n=n.concat(f);c.from=a.effects.setTransition(c,f,l.from.x,c.from);c.to=a.effects.setTransition(c,f,l.to.x,c.to)}}if(e=="content"||e=="both"){if(l.from.y!=l.to.y){n=n.concat(p);c.from=a.effects.setTransition(c,p,l.from.y,c.from);c.to=a.effects.setTransition(c,p,l.to.y,c.to)}}a.effects.save(c,i?n:m);c.show();a.effects.createWrapper(c);c.css("overflow","hidden").css(c.from);if(e=="content"||e=="both"){k=k.concat(["marginTop","marginBottom"]).concat(p);f=f.concat(["marginLeft","marginRight"]);j=n.concat(k).concat(f);c.find("*[width]").each(function(){child=a(this);if(i){a.effects.save(child,j)}var q={height:child.height(),width:child.width()};child.from={height:q.height*l.from.y,width:q.width*l.from.x};child.to={height:q.height*l.to.y,width:q.width*l.to.x};if(l.from.y!=l.to.y){child.from=a.effects.setTransition(child,k,l.from.y,child.from);child.to=a.effects.setTransition(child,k,l.to.y,child.to)}if(l.from.x!=l.to.x){child.from=a.effects.setTransition(child,f,l.from.x,child.from);child.to=a.effects.setTransition(child,f,l.to.x,child.to)}child.css(child.from);child.animate(child.to,b.duration,b.options.easing,function(){if(i){a.effects.restore(child,j)}})})}c.animate(c.to,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(g=="hide"){c.hide()}a.effects.restore(c,i?n:m);a.effects.removeWrapper(c);if(b.callback){b.callback.apply(this,arguments)}c.dequeue()}})})}})(jQuery);;(function(a){a.effects.shake=function(b){return this.queue(function(){var e=a(this),l=["position","top","left"];var k=a.effects.setMode(e,b.options.mode||"effect");var n=b.options.direction||"left";var c=b.options.distance||20;var d=b.options.times||3;var g=b.duration||b.options.duration||140;a.effects.save(e,l);e.show();a.effects.createWrapper(e);var f=(n=="up"||n=="down")?"top":"left";var p=(n=="up"||n=="left")?"pos":"neg";var h={},o={},m={};h[f]=(p=="pos"?"-=":"+=")+c;o[f]=(p=="pos"?"+=":"-=")+c*2;m[f]=(p=="pos"?"-=":"+=")+c*2;e.animate(h,g,b.options.easing);for(var j=1;j<d;j++){e.animate(o,g,b.options.easing).animate(m,g,b.options.easing)}e.animate(o,g,b.options.easing).animate(h,g/2,b.options.easing,function(){a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}});e.queue("fx",function(){e.dequeue()});e.dequeue()})}})(jQuery);;(function(a){a.effects.slide=function(b){return this.queue(function(){var e=a(this),d=["position","top","left"];var i=a.effects.setMode(e,b.options.mode||"show");var h=b.options.direction||"left";a.effects.save(e,d);e.show();a.effects.createWrapper(e).css({overflow:"hidden"});var f=(h=="up"||h=="down")?"top":"left";var c=(h=="up"||h=="left")?"pos":"neg";var j=b.options.distance||(f=="top"?e.outerHeight({margin:true}):e.outerWidth({margin:true}));if(i=="show"){e.css(f,c=="pos"?-j:j)}var g={};g[f]=(i=="show"?(c=="pos"?"+=":"-="):(c=="pos"?"-=":"+="))+j;e.animate(g,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){e.hide()}a.effects.restore(e,d);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;(function(a){a.effects.transfer=function(b){return this.queue(function(){var f=a(this),h=a(b.options.to),e=h.offset(),g={top:e.top,left:e.left,height:h.innerHeight(),width:h.innerWidth()},d=f.offset(),c=a('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(b.options.className).css({top:d.top,left:d.left,height:f.innerHeight(),width:f.innerWidth(),position:"absolute"}).animate(g,b.duration,b.options.easing,function(){c.remove();(b.callback&&b.callback.apply(f[0],arguments));f.dequeue()})})}})(jQuery);;;function css_browser_selector(u){var ua=u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1;},g='gecko',w='webkit',s='safari',h=document.getElementsByTagName('html')[0],b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?g+' ff2':is('firefox/3')?g+' ff3':is('gecko/')?g:/opera(\s|\/)(\d+)/.test(ua)?'opera opera'+RegExp.$2:is('konqueror')?'konqueror':is('chrome')?w+' chrome':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):is('mozilla/')?g:'',is('j2me')?'mobile':is('iphone')?'iphone':is('ipod')?'ipod':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win':is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js'];c=b.join(' ');h.className+=' '+c;return c;};css_browser_selector(navigator.userAgent);;(function(){jQuery.fn.prevWrap=function(){var prev=jQuery(this).prev();if(prev.length)return prev;return jQuery(this).siblings().filter(':last-child');};jQuery.fn.nextWrap=function(){var next=jQuery(this).next();if(next.length)return next;return jQuery(this).siblings().filter(':first-child');};})();(function(){jQuery.fn.i3Tabs=function(){var container=$(this);var tabHeaders=container.children('.mainTabs').children('li');var tabs=container.find('.MSTabs_container');tabs.hide();tabHeaders.children('a').click(function(e){e.preventDefault();tabHeaders.removeClass('active');jQuery(this).parent().addClass('active');tabs.filter('.active').hide().removeClass('active');jQuery(this.hash).addClass('active').show();});var current=tabHeaders.filter('.active');if(current.length)
{jQuery(current).children('a').click();}else{tabHeaders.filter(':first-child').children('a').click();}
container.children('.mainTabs').wheel(function(e,d){if(d>0)
{tabHeaders.filter('.active').prevWrap().children('a').click();}
else
{tabHeaders.filter('.active').nextWrap().children('a').click();}
return false;});};$('a','div.banner').attr('target','_blank');$('div.banner').click(function(){$.post('/pages_actions/cms_banner_click.php',{id:$(this).attr('rel')});});})();$(document).ready(function(){jQuery.fn.countyAutocomplete=function(){$(this).each(function()
{var ref=this;$.ajax({url:'/pages_actions/system_counties.php',dataType:'json',success:function(data)
{data[0]="N/A";var options="";for(var i in data)
options+="<option"+(data[i]==$(ref).val()?" selected='selected'":"")+">"+data[i]+"</option>";var select=$('<select>'+options+'</select>').insertAfter(ref);select.attr('name',$(ref).attr('name')).attr('class',$(ref).attr('class'));$(ref).remove();}});});}
jQuery.fn.countryAutocomplete=function(){$(this).each(function()
{var ref=this;$.ajax({url:'/pages_actions/system_countries.php',dataType:'json',success:function(data)
{var options="";if(!$(ref).val())
$(ref).val("United Kingdom");for(var i in data)
options+="<option"+(data[i]==$(ref).val()?" selected='selected'":"")+">"+data[i]+"</option>";var select=$('<select>'+options+'</select>').insertAfter(ref);select.attr('name',$(ref).attr('name')).attr('class',$(ref).attr('class'));$(ref).remove();}});});}
$('.date-pick').datepicker({dateFormat:'dd/mm/yy',yearRange:"-90:+15"});$('.show_media').hide();$('.enable_preview').click(function(){$('.show_media').hide();$('#media-'+$(this).attr('rel')).toggle();});$('.slider').slider({min:1,max:10,steps:10,change:function()
{rel=$(this).attr('rel');$('#attribute'+rel).val($('#slider'+rel).slider('value'));}});$('#a_toggle').click(function(){$('#CMS-ANNOUNCEMENTS').slideToggle();});$('#a_infoToggle').click(function(){$('#imageInfo').slideToggle();});$.fn.media.defaults={preferMeta:1,autoplay:1,bgColor:'#ffffff',params:{'wmode':'transparent','allowfullscreen':'true'},attrs:{},flashvars:{},flashVersion:'8',flvPlayer:'/_ui/flash/mediaplayer.swf',mp3Player:'/_ui/flash/mediaplayer.swf',silverlight:{inplaceInstallPrompt:'true',isWindowless:'true',framerate:'24',version:'0.9',onError:null,onLoad:null,initParams:null,userContext:null}};$("input:text, textarea, input:password").each(function(){if(this.value=='')
this.value=this.title;});$("input:text, textarea, input:password").click(function(){if(this.value==this.title)
this.value='';});$("input:text, textarea, input:password").blur(function(){if(this.value=='')
this.value=this.title;});$("input:image, input:button, button:submit, input[type=submit]").click(function(){$(this.form.elements).each(function(){if(this.type=='text'||this.type=='textarea'||this.type=='password'){if(this.value==this.title&&this.title!=''){this.value='';}}});});function serialize(s)
{serial=$.SortSerialize(s);alert(serial.hash);};$('.toggleLink').click(function(e){e.preventDefault();$(this.hash).slideToggle();});$('.select_all').click(function(e){e.preventDefault();$('input:checkbox').attr('checked',true);});$('.select_invert').click(function(e){e.preventDefault();$('input:checkbox').each(function(){if($(this).attr('checked'))
$(this).attr('checked',false);else
{if(!$(this).attr('disabled'))
$(this).attr('checked',true);}})});$(".showCalendar").click(function(e){e.preventDefault();$("#calendar_container").toggle();});window.getCart=function(callback)
{$.get('/pages_actions/ecom_cart.php',{mode:'view'},function(cart){callback(cart);},'json');}
window.repopulateCart=function(callback)
{getCart(function(cart){var contents=cart.products_count+' items / &pound;'+cart.overall_price;var container=document.createElement('div');container.innerHTML=contents;$('#siteCart').html('( '+container.innerHTML+' )');if(String(window.location).indexOf('/cart/')!=-1)
document.title='Your basket contents - '+container.innerHTML;if(callback)
callback(cart);});}
$('#releaseSlides').serialScroll({items:'div',prev:'.prevSlide',next:'.nextSlide',axis:'x',start:0,duration:700,force:false,interval:0,constant:true,step:5,exclude:4,stop:true,lock:false,cycle:false,jump:false});$('#albumPicker').serialScroll({items:'ul li',prev:'.prevSlide',next:'.nextSlide',axis:'x',start:0,duration:700,force:false,interval:0,constant:true,step:2,stop:true,lock:false,cycle:false,jump:false});var news_loaded_counter=0;var current_news=1;$('#moreNewsSlider').serialScroll({items:'div.moreNews',prev:'.prevSlide',next:'.nextSlide',axis:'xy',start:0,duration:500,force:false,interval:0,constant:true,step:4,stop:true,lazy:true,lock:false,exclude:1,cycle:false,jump:false});$('#loadMoreNews').click(function(){if(news_loaded_counter<=current_news-1)
{window.fetchContent({p:current_news+5,rpp:4,content_type:'CmsPage',sort:'is_featured DESC, published DESC',params:'cms_sections_id=1'},function(data){dressMoreNews(data)});news_loaded_counter++;}
current_news++;}).click();$('#revertMoreNews').click(function(){$('#loadMoreNews').show();current_news--;});});function dressMoreNews(news)
{for(i in news)
{var html='<div class="moreNews left"><ul><li class="thumb"><img src="/resize/?img='+news[i]['image']+'&amp;w=75&amp;h=75&amp;crop=true"></li><li class="date">Posted on: '+news[i]['dateFormatted']+'</li><li class="title"><a href="'+news[i]['shortname']+'">'+news[i]['title']+'</a></li><li class="readMore"><a href="'+news[i]['shortname']+'">Read More</a></li></ul></div>';$('div#moreNewsList').append(html)}}
window.fetchContent=function(params,decorator)
{$.ajax({url:'/pages_actions/cms_fetch_content.php',type:'POST',dataType:'json',data:params,async:false,success:function(data)
{if(data.error)
{alert(data.error_message);}
else
{if(data.results)
{if(decorator)
{decorator(data.results);}}}}});}
function updateHiddenField(field,theValue){$('#'+field).val(theValue).change();}
function popUp(URL)
{day=new Date();id=day.getTime();eval("page"+id+" = window.open(URL, '"+id+"', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=700,left = 440,top = 250');");}
function GetValueFromChild(myVal)
{document.getElementById('cms_templates_id').value=myVal;}
(function(){jQuery.fn.stepsRollover=function(){var containers=$(this).children();for(var i=0;i<containers.length;i++)
{if(containers[i].parentNode.offsetHeight<containers[i].offsetHeight-5)
$(containers[i]).addClass('more');$(containers[i]).each(function()
{this.__height=this.parentNode.offsetHeight;if(this.parentNode.offsetHeight<this.offsetHeight-5)
{$(this.parentNode).attr("title","header=[] cssheader=[tooltipHeader] cssbody=[tooltipBody] body=['"+$(this.parentNode).text()+"']");}});}};})();function findPos(obj){var curleft=curtop=0;if(obj&&obj.offsetParent){do{curleft+=obj.offsetLeft;curtop+=obj.offsetTop;}while(obj=obj.offsetParent);}
return{x:curleft,y:curtop};}
function displayQuestions(data,callback)
{var container=$('#question');if(container.length==0)
{$(document).find('body').append("<div id='question' style='display: none'></div>");container=$('#question');}
container.dialog({autoOpen:true,show:'drop',title:data.title||"<img src='/_ui/media/ihouseu_media/topheader/logos/ihouseu.gif' class='activeLogo'/>",hide:'explode',modal:true,width:data.width,height:data.height,open:data.open,beforeclose:function(ev)
{container.dialog('destroy');if(data.close)
data.close();},buttons:data.buttons});container.html(data.message?data.message:'');if(callback)
callback();}
function displaySubmit(data,callback)
{data.buttons={'Submit':function()
{$('#question').dialog('destroy');if(data.submit)
data.submit();}};displayQuestions(data,callback);}
function displaySimpleQuestion(data,callback)
{data.buttons={'Yes':function()
{$('#question').dialog('destroy');if(data.yes)
data.yes();},'No':function()
{$('#question').dialog('destroy');if(data.no)
data.no();}};displayQuestions(data,callback);}
function displayOptions(data,callback)
{data.message+="<br/><br/><select name='options'>";if(data.options)
for(var i in data.options)
data.message+="<option value='"+i+"'>"+data.options[i]+"</option>";data.message+="</select>";displaySubmit(data,callback);}
function tagFile(path,additional)
{$.getJSON('/pages_actions/cms_files_get_info.php',{src:path},function(data)
{for(var index in additional)
data[index]=additional[index];displayDescribeForm(path,data);});}
function displayDescribeForm(file,data)
{var tagData={title:'Please describe your file',height:400,width:800}
tagData.message="<form class='popUpForm'><div id='tagForm'><div class='tabs'><span class='tab selected' rel='describe'><span class='transLightDarkktopLeft'></span><span class='transLightDarkktopRight'></span>Describe</span><span class='tab' rel='categorise'><span class='transLightDarkktopLeft'></span><span class='transLightDarkktopRight'></span>Categorise</span><span class='tab' rel='tag'><span class='transLightDarkktopLeft'></span><span class='transLightDarkktopRight'></span>Tag</span><span class='clearAll'></span></div><div class='content'>";var describe="<div id='describe' class='hidden'><p><label class='bWidth'>File title: </label><input class='txtF' type='text' name='title' value='"+data.title+"'></p><p><label class='bWidth'>File description: </label><textarea style='height: 200px;' class='txtA' name='description'>"+data.description+"</textarea></p></div>";tagData.message+=describe;var categorise="<div id='categorise' class='hidden'><p><label class='bWidth'>Category: <br /><small>Hold ctrl+click to select multiple</small></label> <div style='overflow: auto; height: 300px'>"+data.categories+"</div></p></div>";tagData.message+=categorise;var tag="<div id='tag' class='hidden'><p><label class='bWidth'>Tag: </label><textarea name='tags' style='height:200px;' class='txtA'>"+data.tags+"</textarea></div></p>";tagData.message+=tag;tagData.message+="</div></div></form>";tagData.submit=function()
{var title=$('#tagForm').find('[name=title]').val();var description=$('#tagForm').find('[name=description]').val();var tags=$('#tagForm').find('[name=tags]').val();var categories=$('#tagForm').find('[name^=categories]').val();var category="";if(title!=data.title||description!=data.description||data.changed)
updateFileInfo({title:title,description:description,"categories[]":categories,tags:tags},file,function()
{if(data.submit)
data.submit();});};tagData.close=function()
{if(data.close)
data.close();}
displaySubmit(tagData);$('#tagForm').find('[name^=categories], [name=tags]').change(function()
{data.changed=true;});$('#tagForm').find('.tab').click(function()
{$('#tagForm').find('.tab.selected').removeClass('selected');$(this).addClass('selected');$('#tagForm .content > div').hide();$('#tagForm').find("#"+$(this).attr('rel')).show();});$('#tagForm .tab.selected').click();}
function updateFileInfo(data,path,callback)
{var args="";for(var index in data)
if(typeof data[index]!="object")
args+="&"+index+"="+escape(data[index]);else
for(var sub in data[index])
args+="&"+index+"="+escape(data[index][sub]);$.ajax({url:'/admin/magicfm/',type:'POST',dataType:'json',data:'action=update_file_info&path='+path+args,success:function(data)
{if(callback)
callback(data)}});}
window.confirmPopup=function(e,handler,callback)
{try
{if(e)
e.preventDefault();$(handler).after('<div class="confirm_dialog" id="DelDialog" style="display:none"><p></p></div>');var path=ihouseu.def(handler._href,$(handler).attr('href'));var dialog=$(handler).siblings('.confirm_dialog');dialog.attr('title',handler.title);var cancel=$(handler).attr('cancel')?$(handler).attr('cancel'):'Cancel';var confirm=$(handler).attr('confirm')?$(handler).attr('confirm'):'Confirm';var question=$(handler).attr('question')?$(handler).attr('question'):'Do you want to delete '+($(handler).attr('rel')?$(handler).attr('rel'):'')+'?';dialog.children().append(question);var buttons={};buttons[confirm]=function(){if(callback)
callback();if(path)
{var loc=String(window.location);if(loc.indexOf('#')!=-1)
loc=loc.substring(0,loc.indexOf('#')-1);var sub=escape(loc.substring(loc.indexOf('/',7)));var where=path+(path.indexOf('?')==-1?'?':'&')+'location='+sub;window.location=where;}};buttons[cancel]=function(){$(this).dialog('close');$(this).remove();$('.confirm_dialog').remove();};dialog.dialog({autoOpen:true,show:'drop',resizable:false,minHeight:140,modal:true,title:this.title||"<span class='logoAlert'></span>",overlay:{backgroundColor:'#000',opacity:0.5},buttons:buttons});$('.ui-dialog-content').show();}
catch(ex)
{}}
window.contextPopup=function(e,handler)
{if(e)e.preventDefault();var question=$(handler).attr('question')||"";var content=$(handler).attr('content')||"";var name=$(handler).attr('name')||"contextForm";var variables=$(handler).attr('variables')?eval($(handler).attr('variables')):null;var vars="";for(var i=0;i<variables.length;i++)
for(var index in variables[i])
vars+="<input type='hidden' name='"+index+"' value='"+variables[i][index]+"'/>";var data={title:$(handler).attr('title'),message:"<div>"+question+"</div><form name='contextForm' method='post'><textarea name='content'>"+content+"</textarea><input type='hidden' name='"+name+"' value='true'/>"+vars+"</form>",submit:function()
{$("[name=contextForm]").submit();}};displaySubmit(data);}
window.formSubmit=function(form,handler)
{var f=function()
{if(handler)
{if($(handler)[0].nodeName=='FORM')
{$(handler).find('input, select').each(function()
{if($(this).val()&&($(this).attr('type')=='checkbox'?$(this).attr('checked'):true))
$(form).append("<input type='hidden' name='"+this.name+"' value='"+$(this).val()+"'/>");});}
else
{if($(form).find('#js_additional').length==0)
{if($(handler).attr('name'))
$(form).append("<input id='js_additional' type='hidden' name='"+$(handler).attr('name')+"' value='"+$(handler).val()+"'/>");else
$(form).append("<input id='js_additional' type='hidden' name='"+$(handler).val()+"' value='true'/>");}
else
{if($(handler).attr('name'))
$(form).find('#js_additional').attr('name',$(handler).attr('name')).val($(handler).val());else
$(form).find('#js_additional').attr('name',$(handler).val());}}}
if($(form).find('submit, button[type=submit]').length>0)
$(form).find('submit, button[type=submit]').click();else
{$(form).submit();}}
if(handler)
{if($(handler).val()=='delete_selected'||$(handler).val()=='delete')
{window.confirmPopup(null,handler,function()
{f();});return;}
else if($(handler).find(':selected').attr('confirm')||$(handler).find(':selected').attr('question'))
{window.confirmPopup(null,$(handler).find(':selected'),function()
{if($(handler).find(':selected').attr('action'))
{eval($(handler).find(':selected').attr('action'));return;}
else
f();});return;}
else
if($(handler).find(':selected').attr('action'))
{eval($(handler).find(':selected').attr('action'));return;}}
f();}
window.formSelect=function(form,handler)
{var value=$(handler).find(':selected').val();switch(value)
{case'All':$(form).find('[type=checkbox]').attr('checked','checked');break;case'Invert':$(form).find('[type=checkbox]').each(function()
{if($(this).attr('checked'))
$(this).removeAttr('checked');else
$(this).attr('checked','checked');});break;case'None':$(form).find('[type=checkbox]').removeAttr('checked');break;}}
window.editImage=function(path)
{var container=$('#edit_image');if(container.length==0)
{$(document).find('body').append("<div id='edit_image' style='display: none'></div>");container=$('#edit_image');}
container.html('<iframe style="width:100%; height:100%; border: 0px" src="/account/magic_images/?src='+path+'"></iframe>');container.dialog({autoOpen:true,width:1000,height:720,title:'<span class="logo"></span><span class="popUpTitle"> | &nbsp;&nbsp;MagicFM Images Editor</span>',modal:true,close:function(){container.remove();$(this).dialog('destroy');}});}
window.loadComments=function(container,cms_content,cms_content_id,rpp,p)
{$.ajax({url:'/pages_actions/cms_content_paginate_comments.php',data:{'cms_content':cms_content,'cms_content_id':cms_content_id,'rpp':rpp,'p':p},success:function(data)
{container.html(data);}})};;(function($){$.fn.media=function(options,f1,f2){return this.each(function(){if(typeof options=='function'){f2=f1;f1=options;options={};}
var o=getSettings(this,options);if(typeof f1=='function')f1(this,o);var r=getTypesRegExp();var m=r.exec(o.src)||[''];o.type?m[0]=o.type:m.shift();for(var i=0;i<m.length;i++){fn=m[i].toLowerCase();if(isDigit(fn[0]))fn='fn'+fn;if(!$.fn.media[fn])
continue;var player=$.fn.media[fn+'_player'];if(!o.params)o.params={};if(player){var num=player.autoplayAttr=='autostart';o.params[player.autoplayAttr||'autoplay']=num?(o.autoplay?1:0):o.autoplay?true:false;}
var $div=$.fn.media[fn](this,o);$div.css('backgroundColor',o.bgColor).width(o.width);if(typeof f2=='function')f2(this,$div[0],o,player.name);break;}});};$.fn.media.mapFormat=function(format,player){if(!format||!player||!$.fn.media.defaults.players[player])return;format=format.toLowerCase();if(isDigit(format[0]))format='fn'+format;$.fn.media[format]=$.fn.media[player];$.fn.media[format+'_player']=$.fn.media.defaults.players[player];};$.fn.media.setDefaults=function()
{this.defaults={autoplay:0,bgColor:'#ffffff',params:{wmode:'transparent'},attrs:{allowfullscreen:true},flashvars:{},flashVersion:'7',expressInstaller:null,flvPlayer:'/_ui/flash/mediaplayer.swf',mp3Player:'/_ui/flash/mediaplayer.swf',silverlight:{inplaceInstallPrompt:'true',isWindowless:'true',framerate:'24',version:'0.9',onError:null,onLoad:null,initParams:null,userContext:null}};this.defaults.players={flash:{name:'flash',types:'flv,mp3,swf',oAttrs:{classid:'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000',type:'application/x-oleobject',codebase:'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+$.fn.media.defaults.flashVersion},eAttrs:{type:'application/x-shockwave-flash',pluginspage:'http://www.adobe.com/go/getflashplayer'}},quicktime:{name:'quicktime',types:'aif,aiff,aac,au,bmp,gsm,mov,mid,midi,mpg,mpeg,mp4,m4a,psd,qt,qtif,qif,qti,snd,tif,tiff,wav,3g2,3gp',oAttrs:{classid:'clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B',codebase:'http://www.apple.com/qtactivex/qtplugin.cab'},eAttrs:{pluginspage:'http://www.apple.com/quicktime/download/'}},realplayer:{name:'real',types:'ra,ram,rm,rpm,rv,smi,smil',autoplayAttr:'autostart',oAttrs:{classid:'clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA'},eAttrs:{type:'audio/x-pn-realaudio-plugin',pluginspage:'http://www.real.com/player/'}},winmedia:{name:'winmedia',types:'asf,avi,wma,wmv',autoplayAttr:'autostart',oUrl:'url',oAttrs:{classid:'clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6',type:'application/x-oleobject'},eAttrs:{type:$.browser.mozilla&&isFirefoxWMPPluginInstalled()?'application/x-ms-wmp':'application/x-mplayer2',pluginspage:'http://www.microsoft.com/Windows/MediaPlayer/'}},iframe:{name:'iframe',types:'html,pdf'},silverlight:{name:'silverlight',types:'xaml'}};};$.fn.media.setDefaults();function isFirefoxWMPPluginInstalled(){var plugs=navigator.plugins;for(i=0;i<plugs.length;i++){var plugin=plugs[i];if(plugin['filename']=='np-mswmp.dll')
return true;}
return false;}
var counter=1;for(var player in $.fn.media.defaults.players){var types=$.fn.media.defaults.players[player].types;$.each(types.split(','),function(i,o){if(isDigit(o[0]))o='fn'+o;$.fn.media[o]=$.fn.media[player]=getGenerator(player);$.fn.media[o+'_player']=$.fn.media.defaults.players[player];});};function getTypesRegExp(){var types='';if(!$.fn.media.defaults.players)
$.fn.media.setDefaults();for(var player in $.fn.media.defaults.players){if(types.length)types+=',';types+=$.fn.media.defaults.players[player].types;};return new RegExp('\\.('+types.replace(/,/g,'|')+')\\b');};function getGenerator(player){return function(el,options){return generate(el,options,player);};};function isDigit(c){return'0123456789'.indexOf(c)>-1;};function getSettings(el,options){options=options||{};var $el=$(el);var cls=el.className||'';var meta=$.metadata?$el.metadata():$.meta?$el.data():{};meta=meta||{};var w=el.getAttribute('width')||meta.width||parseInt(((cls.match(/w:(\d+)/)||[])[1]||0));var h=el.getAttribute('height')||meta.height||parseInt(((cls.match(/h:(\d+)/)||[])[1]||0));if(w)meta.width=w;if(h)meta.height=h;if(cls)meta.cls=cls;var a=$.fn.media.defaults;var b=options;var c=meta;var p={params:{bgColor:options.bgColor||$.fn.media.defaults.bgColor}};var opts=$.extend({},a,b,c);$.each(['attrs','params','flashvars','silverlight'],function(i,o){opts[o]=$.extend({},p[o]||{},a[o]||{},b[o]||{},c[o]||{});});if(typeof opts.caption=='undefined')opts.caption=$el.text();opts.src=opts.src||$el.attr('href')||$el.attr('src')||'unknown';return opts;};$.fn.media.swf=function(el,opts){if(!window.SWFObject&&!window.swfobject){if(opts.flashvars){var a=[];for(var f in opts.flashvars)
a.push(f+'='+opts.flashvars[f]);if(!opts.params)opts.params={};opts.params.flashvars=a.join('&');}
return generate(el,opts,'flash');}
var id=el.id?(' id="'+el.id+'"'):'';var cls=opts.cls?(' class="'+opts.cls+'"'):'';var $div=$('<div'+id+cls+'>');if(window.swfobject){$(el).after($div).appendTo($div);if(!el.id)el.id='movie_player_'+counter++;swfobject.embedSWF(opts.src,el.id,opts.width,opts.height,opts.flashVersion,opts.expressInstaller,opts.flashvars,opts.params,opts.attrs);}
else{$(el).after($div).remove();var so=new SWFObject(opts.src,'movie_player_'+counter++,opts.width,opts.height,opts.flashVersion,opts.bgColor);if(opts.expressInstaller)so.useExpressInstall(opts.expressInstaller);for(var p in opts.params)
if(p!='bgColor')so.addParam(p,opts.params[p]);for(var f in opts.flashvars)
so.addVariable(f,opts.flashvars[f]);so.write($div[0]);}
if(opts.caption)$('<div>').appendTo($div).html(opts.caption);return $div;};$.fn.media.flv=$.fn.media.mp3=function(el,opts){var src=opts.src;var image=el.getAttribute('image');var player=/\.mp3\b/i.test(src)?$.fn.media.defaults.mp3Player:$.fn.media.defaults.flvPlayer;opts.src=player;opts.src=opts.src+'?file='+src;opts.flashvars=$.extend({},{file:src,image:image},opts.flashvars);return $.fn.media.swf(el,opts);};$.fn.media.xaml=function(el,opts){if(!window.Sys||!window.Sys.Silverlight){if($.fn.media.xaml.warning)return;$.fn.media.xaml.warning=1;alert('You must include the Silverlight.js script.');return;}
var props={width:opts.width,height:opts.height,background:opts.bgColor,inplaceInstallPrompt:opts.silverlight.inplaceInstallPrompt,isWindowless:opts.silverlight.isWindowless,framerate:opts.silverlight.framerate,version:opts.silverlight.version};var events={onError:opts.silverlight.onError,onLoad:opts.silverlight.onLoad};var id1=el.id?(' id="'+el.id+'"'):'';var id2=opts.id||'AG'+counter++;var cls=opts.cls?(' class="'+opts.cls+'"'):'';var $div=$('<div'+id1+cls+'>');$(el).after($div).remove();Sys.Silverlight.createObjectEx({source:opts.src,initParams:opts.silverlight.initParams,userContext:opts.silverlight.userContext,id:id2,parentElement:$div[0],properties:props,events:events});if(opts.caption)$('<div>').appendTo($div).html(opts.caption);return $div;};function generate(el,opts,player){var $el=$(el);var o=$.fn.media.defaults.players[player];if(player=='iframe'){var o=$('<iframe'+' width="'+opts.width+'" height="'+opts.height+'" >');o.attr('src',opts.src);o.css('backgroundColor',o.bgColor);}
else if($.browser.msie){var a=['<object width="'+opts.width+'" height="'+opts.height+'" '];for(var key in opts.attrs)
a.push(key+'="'+opts.attrs[key]+'" ');for(var key in o.oAttrs||{})
a.push(key+'="'+o.oAttrs[key]+'" ');a.push('></ob'+'ject'+'>');var p=['<param name="'+(o.oUrl||'src')+'" value="'+opts.src+'">'];for(var key in opts.params)
p.push('<param name="'+key+'" value="'+opts.params[key]+'">');var o=document.createElement(a.join(''));for(var i=0;i<p.length;i++)
o.appendChild(document.createElement(p[i]));}
else{var a=['<embed width="'+opts.width+'" height="'+opts.height+'" style="display:block"'];if(opts.src)a.push(' src="'+opts.src+'" ');for(var key in opts.attrs)
a.push(key+'="'+opts.attrs[key]+'" ');for(var key in o.eAttrs||{})
a.push(key+'="'+o.eAttrs[key]+'" ');for(var key in opts.params)
a.push(key+'="'+opts.params[key]+'" ');a.push('></em'+'bed'+'>');}
var id=el.id?(' id="'+el.id+'"'):'';var cls=opts.cls?(' class="'+opts.cls+'"'):'';var $div=$('<div'+id+cls+'>');$el.after($div).remove();($.browser.msie||player=='iframe')?$div.append(o):$div.html(a.join(''));if(opts.caption)$('<div>').appendTo($div).html(opts.caption);return $div;};})(jQuery);;if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return"";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;;var swfobject=function(){var Z="undefined",P="object",B="Shockwave Flash",h="ShockwaveFlash.ShockwaveFlash",W="application/x-shockwave-flash",K="SWFObjectExprInst",G=window,g=document,N=navigator,f=[],H=[],Q=null,L=null,T=null,S=false,C=false;var a=function(){var l=typeof g.getElementById!=Z&&typeof g.getElementsByTagName!=Z&&typeof g.createElement!=Z&&typeof g.appendChild!=Z&&typeof g.replaceChild!=Z&&typeof g.removeChild!=Z&&typeof g.cloneNode!=Z,t=[0,0,0],n=null;if(typeof N.plugins!=Z&&typeof N.plugins[B]==P){n=N.plugins[B].description;if(n){n=n.replace(/^.*\s+(\S+\s+\S+$)/,"$1");t[0]=parseInt(n.replace(/^(.*)\..*$/,"$1"),10);t[1]=parseInt(n.replace(/^.*\.(.*)\s.*$/,"$1"),10);t[2]=/r/.test(n)?parseInt(n.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof G.ActiveXObject!=Z){var o=null,s=false;try{o=new ActiveXObject(h+".7")}catch(k){try{o=new ActiveXObject(h+".6");t=[6,0,21];o.AllowScriptAccess="always"}catch(k){if(t[0]==6){s=true}}if(!s){try{o=new ActiveXObject(h)}catch(k){}}}if(!s&&o){try{n=o.GetVariable("$version");if(n){n=n.split(" ")[1].split(",");t=[parseInt(n[0],10),parseInt(n[1],10),parseInt(n[2],10)]}}catch(k){}}}}var v=N.userAgent.toLowerCase(),j=N.platform.toLowerCase(),r=/webkit/.test(v)?parseFloat(v.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,i=false,q=j?/win/.test(j):/win/.test(v),m=j?/mac/.test(j):/mac/.test(v);return{w3cdom:l,pv:t,webkit:r,ie:i,win:q,mac:m}}();var e=function(){if(!a.w3cdom){return}J(I);if(a.ie&&a.win){try{g.write("<script id=__ie_ondomload defer=true src=//:><\/script>");var i=c("__ie_ondomload");if(i){i.onreadystatechange=function(){if(this.readyState=="complete"){this.parentNode.removeChild(this);V()}}}}catch(j){}}if(a.webkit&&typeof g.readyState!=Z){Q=setInterval(function(){if(/loaded|complete/.test(g.readyState)){V()}},10)}if(typeof g.addEventListener!=Z){g.addEventListener("DOMContentLoaded",V,null)}M(V)}();function V(){if(S){return}if(a.ie&&a.win){var m=Y("span");try{var l=g.getElementsByTagName("body")[0].appendChild(m);l.parentNode.removeChild(l)}catch(n){return}}S=true;if(Q){clearInterval(Q);Q=null}var j=f.length;for(var k=0;k<j;k++){f[k]()}}function J(i){if(S){i()}else{f[f.length]=i}}function M(j){if(typeof G.addEventListener!=Z){G.addEventListener("load",j,false)}else{if(typeof g.addEventListener!=Z){g.addEventListener("load",j,false)}else{if(typeof G.attachEvent!=Z){G.attachEvent("onload",j)}else{if(typeof G.onload=="function"){var i=G.onload;G.onload=function(){i();j()}}else{G.onload=j}}}}}function I(){var l=H.length;for(var j=0;j<l;j++){var m=H[j].id;if(a.pv[0]>0){var k=c(m);if(k){H[j].width=k.getAttribute("width")?k.getAttribute("width"):"0";H[j].height=k.getAttribute("height")?k.getAttribute("height"):"0";if(O(H[j].swfVersion)){if(a.webkit&&a.webkit<312){U(k)}X(m,true)}else{if(H[j].expressInstall&&!C&&O("6.0.65")&&(a.win||a.mac)){D(H[j])}else{d(k)}}}}else{X(m,true)}}}function U(m){var k=m.getElementsByTagName(P)[0];if(k){var p=Y("embed"),r=k.attributes;if(r){var o=r.length;for(var n=0;n<o;n++){if(r[n].nodeName.toLowerCase()=="data"){p.setAttribute("src",r[n].nodeValue)}else{p.setAttribute(r[n].nodeName,r[n].nodeValue)}}}var q=k.childNodes;if(q){var s=q.length;for(var l=0;l<s;l++){if(q[l].nodeType==1&&q[l].nodeName.toLowerCase()=="param"){p.setAttribute(q[l].getAttribute("name"),q[l].getAttribute("value"))}}}m.parentNode.replaceChild(p,m)}}function F(i){if(a.ie&&a.win&&O("8.0.0")){G.attachEvent("onunload",function(){var k=c(i);if(k){for(var j in k){if(typeof k[j]=="function"){k[j]=function(){}}}k.parentNode.removeChild(k)}})}}function D(j){C=true;var o=c(j.id);if(o){if(j.altContentId){var l=c(j.altContentId);if(l){L=l;T=j.altContentId}}else{L=b(o)}if(!(/%$/.test(j.width))&&parseInt(j.width,10)<310){j.width="310"}if(!(/%$/.test(j.height))&&parseInt(j.height,10)<137){j.height="137"}g.title=g.title.slice(0,47)+" - Flash Player Installation";var n=a.ie&&a.win?"ActiveX":"PlugIn",k=g.title,m="MMredirectURL="+G.location+"&MMplayerType="+n+"&MMdoctitle="+k,p=j.id;if(a.ie&&a.win&&o.readyState!=4){var i=Y("div");p+="SWFObjectNew";i.setAttribute("id",p);o.parentNode.insertBefore(i,o);o.style.display="none";G.attachEvent("onload",function(){o.parentNode.removeChild(o)})}R({data:j.expressInstall,id:K,width:j.width,height:j.height},{flashvars:m},p)}}function d(j){if(a.ie&&a.win&&j.readyState!=4){var i=Y("div");j.parentNode.insertBefore(i,j);i.parentNode.replaceChild(b(j),i);j.style.display="none";G.attachEvent("onload",function(){j.parentNode.removeChild(j)})}else{j.parentNode.replaceChild(b(j),j)}}function b(n){var m=Y("div");if(a.win&&a.ie){m.innerHTML=n.innerHTML}else{var k=n.getElementsByTagName(P)[0];if(k){var o=k.childNodes;if(o){var j=o.length;for(var l=0;l<j;l++){if(!(o[l].nodeType==1&&o[l].nodeName.toLowerCase()=="param")&&!(o[l].nodeType==8)){m.appendChild(o[l].cloneNode(true))}}}}}return m}function R(AE,AC,q){var p,t=c(q);if(typeof AE.id==Z){AE.id=q}if(a.ie&&a.win){var AD="";for(var z in AE){if(AE[z]!=Object.prototype[z]){if(z=="data"){AC.movie=AE[z]}else{if(z.toLowerCase()=="styleclass"){AD+=' class="'+AE[z]+'"'}else{if(z!="classid"){AD+=" "+z+'="'+AE[z]+'"'}}}}}var AB="";for(var y in AC){if(AC[y]!=Object.prototype[y]){AB+='<param name="'+y+'" value="'+AC[y]+'" />'}}t.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AD+">"+AB+"</object>";F(AE.id);p=c(AE.id)}else{if(a.webkit&&a.webkit<312){var AA=Y("embed");AA.setAttribute("type",W);for(var x in AE){if(AE[x]!=Object.prototype[x]){if(x=="data"){AA.setAttribute("src",AE[x])}else{if(x.toLowerCase()=="styleclass"){AA.setAttribute("class",AE[x])}else{if(x!="classid"){AA.setAttribute(x,AE[x])}}}}}for(var w in AC){if(AC[w]!=Object.prototype[w]){if(w!="movie"){AA.setAttribute(w,AC[w])}}}t.parentNode.replaceChild(AA,t);p=AA}else{var s=Y(P);s.setAttribute("type",W);for(var v in AE){if(AE[v]!=Object.prototype[v]){if(v.toLowerCase()=="styleclass"){s.setAttribute("class",AE[v])}else{if(v!="classid"){s.setAttribute(v,AE[v])}}}}for(var u in AC){if(AC[u]!=Object.prototype[u]&&u!="movie"){E(s,u,AC[u])}}t.parentNode.replaceChild(s,t);p=s}}return p}function E(k,i,j){var l=Y("param");l.setAttribute("name",i);l.setAttribute("value",j);k.appendChild(l)}function c(i){return g.getElementById(i)}function Y(i){return g.createElement(i)}function O(k){var j=a.pv,i=k.split(".");i[0]=parseInt(i[0],10);i[1]=parseInt(i[1],10);i[2]=parseInt(i[2],10);return(j[0]>i[0]||(j[0]==i[0]&&j[1]>i[1])||(j[0]==i[0]&&j[1]==i[1]&&j[2]>=i[2]))?true:false}function A(m,j){if(a.ie&&a.mac){return}var l=g.getElementsByTagName("head")[0],k=Y("style");k.setAttribute("type","text/css");k.setAttribute("media","screen");if(!(a.ie&&a.win)&&typeof g.createTextNode!=Z){k.appendChild(g.createTextNode(m+" {"+j+"}"))}l.appendChild(k);if(a.ie&&a.win&&typeof g.styleSheets!=Z&&g.styleSheets.length>0){var i=g.styleSheets[g.styleSheets.length-1];if(typeof i.addRule==P){i.addRule(m,j)}}}function X(k,i){var j=i?"visible":"hidden";if(S){c(k).style.visibility=j}else{A("#"+k,"visibility:"+j)}}return{registerObject:function(l,i,k){if(!a.w3cdom||!l||!i){return}var j={};j.id=l;j.swfVersion=i;j.expressInstall=k?k:false;H[H.length]=j;X(l,false)},getObjectById:function(l){var i=null;if(a.w3cdom&&S){var j=c(l);if(j){var k=j.getElementsByTagName(P)[0];if(!k||(k&&typeof j.SetVariable!=Z)){i=j}else{if(typeof k.SetVariable!=Z){i=k}}}}return i},embedSWF:function(n,u,r,t,j,m,k,p,s){if(!a.w3cdom||!n||!u||!r||!t||!j){return}r+="";t+="";if(O(j)){X(u,false);var q=(typeof s==P)?s:{};q.data=n;q.width=r;q.height=t;var o=(typeof p==P)?p:{};if(typeof k==P){for(var l in k){if(k[l]!=Object.prototype[l]){if(typeof o.flashvars!=Z){o.flashvars+="&"+l+"="+k[l]}else{o.flashvars=l+"="+k[l]}}}}J(function(){R(q,o,u);if(q.id==u){X(u,true)}})}else{if(m&&!C&&O("6.0.65")&&(a.win||a.mac)){X(u,false);J(function(){var i={};i.id=i.altContentId=u;i.width=r;i.height=t;i.expressInstall=m;D(i)})}}},getFlashPlayerVersion:function(){return{major:a.pv[0],minor:a.pv[1],release:a.pv[2]}},hasFlashPlayerVersion:O,createSWF:function(k,j,i){if(a.w3cdom&&S){return R(k,j,i)}else{return undefined}},createCSS:function(j,i){if(a.w3cdom){A(j,i)}},addDomLoadEvent:J,addLoadEvent:M,getQueryParamValue:function(m){var l=g.location.search||g.location.hash;if(m==null){return l}if(l){var k=l.substring(1).split("&");for(var j=0;j<k.length;j++){if(k[j].substring(0,k[j].indexOf("="))==m){return k[j].substring((k[j].indexOf("=")+1))}}}return""},expressInstallCallback:function(){if(C&&L){var i=c(K);if(i){i.parentNode.replaceChild(L,i);if(T){X(T,true);if(a.ie&&a.win){L.style.display="block"}}L=null;T=null;C=false}}}}}();;;(function($){var a='serialScroll',b='.'+a,c='bind',C=$[a]=function(b){$.scrollTo.window()[a](b)};C.defaults={duration:1e3,axis:'x',event:'click',start:0,step:1,lock:1,cycle:1,constant:1};$.fn[a]=function(y){y=$.extend({},C.defaults,y);var z=y.event,A=y.step,B=y.lazy;return this.each(function(){var j=y.target?this:document,k=$(y.target||this,j),l=k[0],m=y.items,o=y.start,p=y.interval,q=y.navigation,r;if(!B)m=w();if(y.force)t({},o);$(y.prev||[],j)[c](z,-A,s);$(y.next||[],j)[c](z,A,s);if(!l.ssbound)k[c]('prev'+b,-A,s)[c]('next'+b,A,s)[c]('goto'+b,t);if(p)k[c]('start'+b,function(e){if(!p){v();p=1;u()}})[c]('stop'+b,function(){v();p=0});k[c]('notify'+b,function(e,a){var i=x(a);if(i>-1)o=i});l.ssbound=1;if(y.jump)(B?k:w())[c](z,function(e){t(e,x(e.target))});if(q)q=$(q,j)[c](z,function(e){e.data=Math.round(w().length/q.length)*q.index(this);t(e,this)});function s(e){e.data+=o;t(e,this)};function t(e,a){if(!isNaN(a)){e.data=a;a=l}var c=e.data,n,d=e.type,f=y.exclude?w().slice(0,-y.exclude):w(),g=f.length,h=f[c],i=y.duration;if(d)e.preventDefault();if(p){v();r=setTimeout(u,y.interval)}if(!h){n=c<0?0:n=g-1;if(o!=n)c=n;else if(!y.cycle)return;else c=g-n-1;h=f[c]}if(!h||d&&o==c||y.lock&&k.is(':animated')||d&&y.onBefore&&y.onBefore.call(a,e,h,k,w(),c)===!1)return;if(y.stop)k.queue('fx',[]).stop();if(y.constant)i=Math.abs(i/A*(o-c));k.scrollTo(h,i,y).trigger('notify'+b,[c])};function u(){k.trigger('next'+b)};function v(){clearTimeout(r)};function w(){return $(m,l)};function x(a){if(!isNaN(a))return a;var b=w(),i;while((i=b.index(a))==-1&&a!=l)a=a.parentNode;return i}})}})(jQuery);;;(function($){var o=$.scrollTo=function(a,b,c){o.window().scrollTo(a,b,c)};o.defaults={axis:'y',duration:1};o.window=function(){return $($.browser.safari?'body':'html')};$.fn.scrollTo=function(l,m,n){if(typeof m=='object'){n=m;m=0}n=$.extend({},o.defaults,n);m=m||n.speed||n.duration;n.queue=n.queue&&n.axis.length>1;if(n.queue)m/=2;n.offset=j(n.offset);n.over=j(n.over);return this.each(function(){var a=this,b=$(a),t=l,c,d={},w=b.is('html,body');switch(typeof t){case'number':case'string':if(/^([+-]=)?\d+(px)?$/.test(t)){t=j(t);break}t=$(t,this);case'object':if(t.is||t.style)c=(t=$(t)).offset()}$.each(n.axis.split(''),function(i,f){var P=f=='x'?'Left':'Top',p=P.toLowerCase(),k='scroll'+P,e=a[k],D=f=='x'?'Width':'Height';if(c){d[k]=c[p]+(w?0:e-b.offset()[p]);if(n.margin){d[k]-=parseInt(t.css('margin'+P))||0;d[k]-=parseInt(t.css('border'+P+'Width'))||0}d[k]+=n.offset[p]||0;if(n.over[p])d[k]+=t[D.toLowerCase()]()*n.over[p]}else d[k]=t[p];if(/^\d+$/.test(d[k]))d[k]=d[k]<=0?0:Math.min(d[k],h(D));if(!i&&n.queue){if(e!=d[k])g(n.onAfterFirst);delete d[k]}});g(n.onAfter);function g(a){b.animate(d,m,n.easing,a&&function(){a.call(this,l)})};function h(D){var b=w?$.browser.opera?document.body:document.documentElement:a;return b['scroll'+D]-b['client'+D]}})};function j(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);;eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}(';(7($){$.b.2Q=7(){u B.2t(7(){9 1J=$(B).n(\'2Z\');5(1J.1c(/^3w\\(["\']?(.*\\.2p)["\']?\\)$/i)){1J=3t.$1;$(B).n({\'2Z\':\'45\',\'2o\':"3W:3R.4m.4d(3h=F, 3T="+($(B).n(\'41\')==\'2J-3Z\'?\'4c\':\'3N\')+", Q=\'"+1J+"\')"}).2t(7(){9 1b=$(B).n(\'1b\');5(1b!=\'2e\'&&1b!=\'2n\')$(B).n(\'1b\',\'2n\')})}})};9 A,4,16=D,s=1t 1o,1w,1v=1,1y=/\\.(3A|3Y|2p|3c|3d)(.*)?$/i;9 P=($.2q.3K&&2f($.2q.3z.2k(0,1))<8);$.b.c=7(Y){Y=$.3x({},$.b.c.2R,Y);9 2s=B;7 2h(){A=B;4=Y;2r();u D};7 2r(){5(16)u;5($.1O(4.2c)){4.2c()}4.j=[];4.h=0;5(Y.j.N>0){4.j=Y.j}t{9 O={};5(!A.1H||A.1H==\'\'){9 O={d:A.d,X:A.X};5($(A).1G("1m:1D").N){O.1a=$(A).1G("1m:1D")}4.j.2j(O)}t{9 Z=$(2s).2o("a[1H="+A.1H+"]");9 O={};3C(9 i=0;i<Z.N;i++){O={d:Z[i].d,X:Z[i].X};5($(Z[i]).1G("1m:1D").N){O.1a=$(Z[i]).1G("1m:1D")}4.j.2j(O)}3F(4.j[4.h].d!=A.d){4.h++}}}5(4.23){5(P){$(\'1U, 1Q, 1P\').n(\'1S\',\'3s\')}$("#1i").n(\'25\',4.2U).J()}1d()};7 1d(){$("#1f, #1e, #V, #G").S();9 d=4.j[4.h].d;5(d.1c(/#/)){9 U=11.3r.d.3f(\'#\')[0];U=d.3g(U,\'\');U=U.2k(U.2l(\'#\'));1k(\'<6 l="3e">\'+$(U).o()+\'</6>\',4.1I,4.1x)}t 5(d.1c(1y)){s=1t 1o;s.Q=d;5(s.3a){1K()}t{$.b.c.34();$(s).x().14(\'3b\',7(){$(".I").S();1K()})}}t 5(d.1c("17")||A.3j.2l("17")>=0){1k(\'<17 l="35" 3q="$.b.c.38()" 3o="3n\'+C.T(C.3l()*3m)+\'" 2K="0" 3E="0" Q="\'+d+\'"></17>\',4.1I,4.1x)}t{$.4p(d,7(2m){1k(\'<6 l="3L">\'+2m+\'</6>\',4.1I,4.1x)})}};7 1K(){5(4.30){9 w=$.b.c.1n();9 r=C.1M(C.1M(w[0]-36,s.g)/s.g,C.1M(w[1]-4b,s.f)/s.f);9 g=C.T(r*s.g);9 f=C.T(r*s.f)}t{9 g=s.g;9 f=s.f}1k(\'<1m 48="" l="49" Q="\'+s.Q+\'" />\',g,f)};7 2F(){5((4.j.N-1)>4.h){9 d=4.j[4.h+1].d;5(d.1c(1y)){1A=1t 1o();1A.Q=d}}5(4.h>0){9 d=4.j[4.h-1].d;5(d.1c(1y)){1A=1t 1o();1A.Q=d}}};7 1k(1j,g,f){16=F;9 L=4.2Y;5(P){$("#q")[0].1E.2u("f");$("#q")[0].1E.2u("g")}5(L>0){g+=L*2;f+=L*2;$("#q").n({\'v\':L+\'z\',\'2E\':L+\'z\',\'2i\':L+\'z\',\'y\':L+\'z\',\'g\':\'2B\',\'f\':\'2B\'});5(P){$("#q")[0].1E.2C(\'f\',\'(B.2D.4j - 20)\');$("#q")[0].1E.2C(\'g\',\'(B.2D.3S - 20)\')}}t{$("#q").n({\'v\':0,\'2E\':0,\'2i\':0,\'y\':0,\'g\':\'2z%\',\'f\':\'2z%\'})}5($("#k").1u(":19")&&g==$("#k").g()&&f==$("#k").f()){$("#q").1Z("2N",7(){$("#q").1C().1F($(1j)).21("1s",7(){1g()})});u}9 w=$.b.c.1n();9 2v=(g+36)>w[0]?w[2]:(w[2]+C.T((w[0]-g-36)/2));9 2w=(f+1z)>w[1]?w[3]:(w[3]+C.T((w[1]-f-1z)/2));9 K={\'y\':2v,\'v\':2w,\'g\':g+\'z\',\'f\':f+\'z\'};5($("#k").1u(":19")){$("#q").1Z("1s",7(){$("#q").1C();$("#k").24(K,4.2X,4.2T,7(){$("#q").1F($(1j)).21("1s",7(){1g()})})})}t{5(4.1W>0&&4.j[4.h].1a!==1L){$("#q").1C().1F($(1j));9 M=4.j[4.h].1a;9 15=$.b.c.1R(M);$("#k").n({\'y\':(15.y-18)+\'z\',\'v\':(15.v-18)+\'z\',\'g\':$(M).g(),\'f\':$(M).f()});5(4.1X){K.25=\'J\'}$("#k").24(K,4.1W,4.2W,7(){1g()})}t{$("#q").S().1C().1F($(1j)).J();$("#k").n(K).21("1s",7(){1g()})}}};7 2y(){5(4.h!=0){$("#1e, #2O").x().14("R",7(e){e.2x();4.h--;1d();u D});$("#1e").J()}5(4.h!=(4.j.N-1)){$("#1f, #2M").x().14("R",7(e){e.2x();4.h++;1d();u D});$("#1f").J()}};7 1g(){2y();2F();$(W).1B(7(e){5(e.29==27){$.b.c.1l();$(W).x("1B")}t 5(e.29==37&&4.h!=0){4.h--;1d();$(W).x("1B")}t 5(e.29==39&&4.h!=(4.j.N-1)){4.h++;1d();$(W).x("1B")}});5(4.1r){$(11).14("1N 1T",$.b.c.2g)}t{$("6#k").n("1b","2e")}5(4.2b){$("#22").R($.b.c.1l)}$("#1i, #V").14("R",$.b.c.1l);$("#V").J();5(4.j[4.h].X!==1L&&4.j[4.h].X.N>0){$(\'#G 6\').o(4.j[4.h].X);$(\'#G\').J()}5(4.23&&P){$(\'1U, 1Q, 1P\',$(\'#q\')).n(\'1S\',\'19\')}5($.1O(4.2a)){4.2a()}16=D};u B.x(\'R\').R(2h)};$.b.c.2g=7(){9 m=$.b.c.1n();$("#k").n(\'y\',(($("#k").g()+36)>m[0]?m[2]:m[2]+C.T((m[0]-$("#k").g()-36)/2)));$("#k").n(\'v\',(($("#k").f()+1z)>m[1]?m[3]:m[3]+C.T((m[1]-$("#k").f()-1z)/2)))};$.b.c.1h=7(H,2A){u 2f($.3I(H.3u?H[0]:H,2A,F))||0};$.b.c.1R=7(H){9 m=H.4g();m.v+=$.b.c.1h(H,\'3k\');m.v+=$.b.c.1h(H,\'3J\');m.y+=$.b.c.1h(H,\'3H\');m.y+=$.b.c.1h(H,\'3D\');u m};$.b.c.38=7(){$(".I").S();$("#35").J()};$.b.c.1n=7(){u[$(11).g(),$(11).f(),$(W).3i(),$(W).3p()]};$.b.c.2G=7(){5(!$("#I").1u(\':19\')){33(1w);u}$("#I > 6").n(\'v\',(1v*-40)+\'z\');1v=(1v+1)%12};$.b.c.34=7(){33(1w);9 m=$.b.c.1n();$("#I").n({\'y\':((m[0]-40)/2+m[2]),\'v\':((m[1]-40)/2+m[3])}).J();$("#I").14(\'R\',$.b.c.1l);1w=3Q($.b.c.2G,3X)};$.b.c.1l=7(){16=F;$(s).x();$("#1i, #V").x();5(4.2b){$("#22").x()}$("#V, .I, #1e, #1f, #G").S();5(4.1r){$(11).x("1N 1T")}1q=7(){$("#1i, #k").S();5(4.1r){$(11).x("1N 1T")}5(P){$(\'1U, 1Q, 1P\').n(\'1S\',\'19\')}5($.1O(4.1V)){4.1V()}16=D};5($("#k").1u(":19")!==D){5(4.26>0&&4.j[4.h].1a!==1L){9 M=4.j[4.h].1a;9 15=$.b.c.1R(M);9 K={\'y\':(15.y-18)+\'z\',\'v\':(15.v-18)+\'z\',\'g\':$(M).g(),\'f\':$(M).f()};5(4.1X){K.25=\'S\'}$("#k").31(D,F).24(K,4.26,4.2S,1q)}t{$("#k").31(D,F).1Z("2N",1q)}}t{1q()}u D};$.b.c.2V=7(){9 o=\'\';o+=\'<6 l="1i"></6>\';o+=\'<6 l="22">\';o+=\'<6 p="I" l="I"><6></6></6>\';o+=\'<6 l="k">\';o+=\'<6 l="2I">\';o+=\'<6 l="V"></6>\';o+=\'<6 l="E"><6 p="E 44"></6><6 p="E 43"></6><6 p="E 42"></6><6 p="E 3V"></6><6 p="E 3U"></6><6 p="E 3O"></6><6 p="E 3M"></6><6 p="E 3P"></6></6>\';o+=\'<a d="2P:;" l="1e"><1p p="1Y" l="2O"></1p></a><a d="2P:;" l="1f"><1p p="1Y" l="2M"></1p></a>\';o+=\'<6 l="q"></6>\';o+=\'<6 l="G"></6>\';o+=\'</6>\';o+=\'</6>\';o+=\'</6>\';$(o).2H("46");$(\'<32 4i="0" 4h="0" 4k="0"><2L><13 p="G" l="4l"></13><13 p="G" l="4o"><6></6></13><13 p="G" l="4n"></13></2L></32>\').2H(\'#G\');5(P){$("#2I").47(\'<17 p="4a" 4e="2J" 2K="0"></17>\');$("#V, .E, .G, .1Y").2Q()}};$.b.c.2R={2Y:10,30:F,1X:D,1W:0,26:0,2X:3G,2W:\'28\',2S:\'28\',2T:\'28\',1I:3B,1x:3v,23:F,2U:0.3,2b:F,1r:F,j:[],2c:2d,2a:2d,1V:2d};$(W).3y(7(){$.b.c.2V()})})(4f);',62,274,'||||opts|if|div|function||var||fn|fancybox|href||height|width|itemCurrent||itemArray|fancy_outer|id|pos|css|html|class|fancy_content||imagePreloader|else|return|top||unbind|left|px|elem|this|Math|false|fancy_bg|true|fancy_title|el|fancy_loading|show|itemOpts|pad|orig_item|length|item|isIE|src|click|hide|round|target|fancy_close|document|title|settings|subGroup||window||td|bind|orig_pos|busy|iframe||visible|orig|position|match|_change_item|fancy_left|fancy_right|_finish|getNumeric|fancy_overlay|value|_set_content|close|img|getViewport|Image|span|__cleanup|centerOnScroll|normal|new|is|loadingFrame|loadingTimer|frameHeight|imageRegExp|50|objNext|keydown|empty|first|style|append|children|rel|frameWidth|image|_proceed_image|undefined|min|resize|isFunction|select|object|getPosition|visibility|scroll|embed|callbackOnClose|zoomSpeedIn|zoomOpacity|fancy_ico|fadeOut||fadeIn|fancy_wrap|overlayShow|animate|opacity|zoomSpeedOut||swing|keyCode|callbackOnShow|hideOnContentClick|callbackOnStart|null|absolute|parseInt|scrollBox|_initialize|bottom|push|substr|indexOf|data|relative|filter|png|browser|_start|matchedGroup|each|removeExpression|itemLeft|itemTop|stopPropagation|_set_navigation|100|prop|auto|setExpression|parentNode|right|_preload_neighbor_images|animateLoading|appendTo|fancy_inner|no|frameborder|tr|fancy_right_ico|fast|fancy_left_ico|javascript|fixPNG|defaults|easingOut|easingChange|overlayOpacity|build|easingIn|zoomSpeedChange|padding|backgroundImage|imageScale|stop|table|clearInterval|showLoading|fancy_frame|||showIframe||complete|load|bmp|jpeg|fancy_div|split|replace|enabled|scrollLeft|className|paddingTop|random|1000|fancy_iframe|name|scrollTop|onload|location|hidden|RegExp|jquery|355|url|extend|ready|version|jpg|425|for|borderLeftWidth|hspace|while|300|paddingLeft|curCSS|borderTopWidth|msie|fancy_ajax|fancy_bg_w|scale|fancy_bg_sw|fancy_bg_nw|setInterval|DXImageTransform|clientWidth|sizingMethod|fancy_bg_s|fancy_bg_se|progid|66|gif|repeat||backgroundRepeat|fancy_bg_e|fancy_bg_ne|fancy_bg_n|none|body|prepend|alt|fancy_img|fancy_bigIframe|60|crop|AlphaImageLoader|scrolling|jQuery|offset|cellpadding|cellspacing|clientHeight|border|fancy_title_left|Microsoft|fancy_title_right|fancy_title_main|get'.split('|'),0,{}));window.ihouseu=new Object();window.ihouseu.unserialize=function(string)
{var ret=new Object();var vars=string.split('&');for(var j=0;j<vars.length;j++)
{var array=vars[j].split('=');ret[ihouseu.trim(array[0])]=ihouseu.trim(array[1]);}
return ret;}
window.ihouseu.trim=function(string)
{var trimmed=string.replace(/^[\t\n ]/g,'').replace(/[\t\n ]$/g,'');return string==trimmed?string:ihouseu.trim(trimmed);}
window.ihouseu.serialize=function(object)
{var string="";for(var index in object)
string+=(string?"&":'')+index+"="+object[index];return string;}
window.ihouseu.copy=function(object1,object2)
{for(var index in object2)
object1[index]=object2[index];}
window.ihouseu.def=function()
{for(var i=0;i<arguments.length;i++)
if(arguments[i]!=null&&arguments[i]!="")
return arguments[i];}
window.ihouseu.toObject=function(string)
{return ihouseu.unserialize(string.replace(/[;,]/g,'&').replace(/:/g,'='));}
window.ihouseu.alert=function(string)
{$("<div id='dialog' class='ihouseualert'>"+string+"</div>'").dialog({autoOpen:true,show:'drop',closeText:'x',hide:'drop',modal:true,title:'Alert',close:function()
{$('#dialog').dialog('destroy').remove();}});}
window.ihouseu.assignPopup=function(object,params,options)
{try
{for(var i=0;i<object.length;i++)
{var url=$(object[i]).attr('href');if(!url)
return;if(url.indexOf('?')!=-1)
object[i].url=url.split('?')[0];else
object[i].url=url;object[i].data=new Object();if(url.indexOf('?')!=-1)
ihouseu.copy(object[i].data,ihouseu.unserialize(url.split('?').pop()));if($(object[i]).attr('params'))
ihouseu.copy(object[i].data,ihouseu.toObject($(object[i]).attr('params').replace(/,/g,';')));if(params)
ihouseu.copy(object[i].data,params);object[i].options=new Object();if($(object[i]).attr('rel'))
ihouseu.copy(object[i].options,ihouseu.toObject($(object[i]).attr('rel').replace(/,/g,';')));if(options)
ihouseu.copy(object[i].options,options);$(object[i]).attr('href','#').removeAttr('params').removeAttr('rel');$(object[i]).unbind('click').click(function(ev)
{ev.preventDefault();ihouseu.displayPopup(this.url,this.data,this.options);});}}
catch(e)
{ihouseu.alert(e);}}
window.ihouseu.popup={active:false,form:null,data:{}}
window.ihouseu.displayPopup=function(url,params,options)
{if(!params)
params=new Object();if(!options)
options=new Object();if(options.onbeforeopen)
options.onbeforeopen();if($('#dialog').dialog)
$('#dialog').dialog('close');params.popup=true;window.ihouseu.popup.active=true;$.ajax({url:url,type:'GET',dataType:'html',data:ihouseu.serialize(params),success:function(response){var html=null;window.ihouseu.popup.active=false;if(response)
switch(response)
{case'permission_denied':case'session_timeout':default:html=response;}
else
html="No response";var buffer=document.createElement('span');buffer.innerHTML=html;var form=$(buffer).find('form');if(form.length>0)
{window.ihouseu.popup.form=form;form.append("<input type='hidden' value='true' name='popup'/>");if(options.onsubmit)
form.onaftersubmit=options.onsubmit;}
var title=$(buffer).find('h1:first, h2:first, h3:first')[0];var title_val="";if(title)
{title_val=$(title).html();$(title).remove();}
html=buffer.innerHTML;$("<div id='dialog' style='background: #ffffff'>"+html+"</div>'").dialog({autoOpen:true,show:'drop',closeText:'x',hide:'drop',modal:true,title:"<span class='logo'></span>"+"<span class='popUpTitle'> | &nbsp;&nbsp;"+(options.title==false||options.title=="false"?null:title_val)+"</span>",width:options&&ihouseu.def(options.w,options.width)?parseInt(ihouseu.def(options.w,options.width)):'auto',height:options&&ihouseu.def(options.h,options.height)?parseInt(ihouseu.def(options.h,options.height)):'auto',beforeclose:function()
{if(options.onbeforeclose)
options.onbeforeclose();},close:function()
{if($('#dialog').dialog)
{$('#dialog *').remove();$('#dialog').dialog('destroy').remove();if(options.onclose)
options.onclose();}},open:function()
{window.setTimeout(function()
{$("#dialog").html(html);ihouseu.assignPopup($("#dialog .displayPopup"));if($("#dialog form").attr('redirect'))
{$("#dialog form").attr('action',$("#dialog form").attr('redirect')).removeAttr('redirect');}
$("#dialog form").submit(function(ev)
{ihouseu.ajaxValidate(this,ev,(options.type?options.type:null));});if(options.onopen)
options.onopen();},500);}});}});}
ihouseu.ajaxValidate=function(obj,ev,type)
{if(ev.preventDefault)
ev.preventDefault();var params=new Object();$(obj).find("[name]").each(function()
{if(!$(this).attr('disabled'))
params[$(this).attr('name')]=$(this).val();});var url=String($(obj).attr('action')?$(obj).attr('action'):window.location);$.ajax({url:url.substring(0,url.indexOf('#')!=-1?url.indexOf('#'):url.length),data:params,type:"POST",dataType:'json',success:function(data)
{$(obj).find('input, textarea, select').each(function()
{if($(this).hasClass('error_red'))
{$(this).removeClass('error_red');$(this).next().remove();}});if(data.error==1)
for(var index in data)
{var msg=new Array();var sug=new Array();for(var error in data[index])
{if(error!='__suggestion')
msg.push(data[index][error]);else
sug.push(data[index][error]);}
$(obj).find('input[name='+index+'], textarea[name='+index+'], select[name='+index+']').each(function()
{$(this).addClass('error_red').after('<p class="error err">* '+msg.join(", ")+'</p>');if(sug.length>0)
$(this).val(sug.join(", "));});}
else
{$(obj).unbind('submit');$(obj).find("input[name=popup]").remove();var submit=$(obj).find("[type=submit]");$(obj).append("<input type='hidden' name='"+submit.attr('name')+"' value='"+submit.val()+"'/>");if(type=='post')
{delete params['popup'];$.ajax({url:url.substring(0,url.indexOf('#')!=-1?url.indexOf('#'):url.length),data:params,type:"POST",dataType:'json',success:function(data)
{if(window.ihouseu.popup.form.onaftersubmit)
{window.ihouseu.popup.form.onaftersubmit(data);window.ihouseu.popup.form.onaftersubmit=null;$('#dialog').dialog('close');}
else
$(obj).submit();}});}
else
$(obj).submit();}}})};jQuery.fn.confirm=function(options){options=jQuery.extend({msg:'Are you sure?',stopAfter:'never',wrapper:'<span></span>',eventType:'click',dialogShow:'show',dialogSpeed:'',timeout:0},options);options.stopAfter=options.stopAfter.toLowerCase();if(!options.stopAfter in['never','once','ok','cancel']){options.stopAfter='never';}
options.buttons=jQuery.extend({ok:'Yes',cancel:'No',wrapper:'<a href="#"></a>',separator:'/'},options.buttons);var type=options.eventType;return this.each(function(){var target=this;var $target=jQuery(target);var timer;var saveHandlers=function(){var events=jQuery.data(target,'events');if(!events){return;}
target._handlers=new Array();for(var i in events[type]){target._handlers.push(events[type][i]);}}
var $ok=jQuery(options.buttons.wrapper).append(options.buttons.ok).click(function(){if(options.timeout!=0){clearTimeout(timer);}
$target.unbind(type,handler);$target.show();$dialog.hide();if(target._handlers!=undefined){jQuery.each(target._handlers,function(){$target.click(this);});}
$target.click();if(options.stopAfter!='ok'&&options.stopAfter!='once'){$target.unbind(type);$target.one(type,handler);}
return false;})
var $cancel=jQuery(options.buttons.wrapper).append(options.buttons.cancel).click(function(){if(options.timeout!=0){clearTimeout(timer);}
if(options.stopAfter!='cancel'&&options.stopAfter!='once'){$target.one(type,handler);}
$target.show();$dialog.hide();return false;});if(options.buttons.cls){$ok.addClass(options.buttons.cls);$cancel.addClass(options.buttons.cls);}
var $dialog=jQuery(options.wrapper).append(options.msg).append($ok).append(options.buttons.separator).append($cancel);var handler=function(){jQuery(this).hide();if(options.dialogShow!='show'){$dialog.hide();}
$dialog.insertBefore(this);$dialog[options.dialogShow](options.dialogSpeed);if(options.timeout!=0){clearTimeout(timer);timer=setTimeout(function(){$cancel.click();$target.one(type,handler);},options.timeout);}
return false;};saveHandlers();$target.unbind(type);target._confirm=handler
target._confirmEvent=type;$target.one(type,handler);});};(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:function(message){if(this.quiet){return;}
message="typeface.js: "+message;if(this.customLogFn){this.customLogFn(message);}else if(window.console&&window.console.log){window.console.log(message);}},pixelsFromPoints:function(face,style,points,dimension){var pixels=points*parseInt(style.fontSize)*72/(face.resolution*100);if(dimension=='horizontal'&&style.fontStretchPercent){pixels*=style.fontStretchPercent;}
return pixels;},pointsFromPixels:function(face,style,pixels,dimension){var points=pixels*face.resolution/(parseInt(style.fontSize)*72/100);if(dimension=='horizontal'&&style.fontStretchPrecent){points*=style.fontStretchPercent;}
return points;},cssFontWeightMap:{normal:'normal',bold:'bold',400:'normal',700:'bold'},cssFontStretchMap:{'ultra-condensed':0.55,'extra-condensed':0.77,'condensed':0.85,'semi-condensed':0.93,'normal':1,'semi-expanded':1.07,'expanded':1.15,'extra-expanded':1.23,'ultra-expanded':1.45,'default':1},fallbackCharacter:'.',configure:function(args){var configurableOptionNames=['customLogFn','customClassNameRegex','customTypefaceElementsList','quiet','verbose','disableSelection'];for(var i=0;i<configurableOptionNames.length;i++){var optionName=configurableOptionNames[i];if(args[optionName]){if(optionName=='customLogFn'){if(typeof args[optionName]!='function'){throw"customLogFn is not a function";}else{this.customLogFn=args.customLogFn;}}else{this[optionName]=args[optionName];}}}},getTextExtents:function(face,style,text){var extentX=0;var extentY=0;var horizontalAdvance;var textLength=text.length;for(var i=0;i<textLength;i++){var glyph=face.glyphs[text.charAt(i)]?face.glyphs[text.charAt(i)]:face.glyphs[this.fallbackCharacter];var letterSpacingAdjustment=this.pointsFromPixels(face,style,style.letterSpacing);extentX+=i+1==textLength?Math.max(glyph.x_max,glyph.ha):glyph.ha;extentX+=letterSpacingAdjustment;horizontalAdvance+=glyph.ha+letterSpacingAdjustment;}
return{x:extentX,y:extentY,ha:horizontalAdvance};},pixelsFromCssAmount:function(cssAmount,defaultValue,element){var matches=undefined;if(cssAmount=='normal'){return defaultValue;}else if(matches=cssAmount.match(/([\-\d+\.]+)px/)){return matches[1];}else{var pixelAmount;var leftInlineStyle=element.style.left;var leftRuntimeStyle=element.runtimeStyle.left;element.runtimeStyle.left=element.currentStyle.left;if(!cssAmount.match(/\d(px|pt)$/)){element.style.left='1em';}else{element.style.left=cssAmount||0;}
pixelAmount=element.style.pixelLeft;element.style.left=leftInlineStyle;element.runtimeStyle.left=leftRuntimeStyle;return pixelAmount||defaultValue;}},capitalizeText:function(text){return text.replace(/(^|\s)[a-z]/g,function(match){return match.toUpperCase()});},getElementStyle:function(e){if(window.getComputedStyle){return window.getComputedStyle(e,'');}else if(e.currentStyle){return e.currentStyle;}},getRenderedText:function(e){var browserStyle=this.getElementStyle(e.parentNode);var inlineStyleAttribute=e.parentNode.getAttribute('style');if(inlineStyleAttribute&&typeof(inlineStyleAttribute)=='object'){inlineStyleAttribute=inlineStyleAttribute.cssText;}
if(inlineStyleAttribute){var inlineStyleDeclarations=inlineStyleAttribute.split(/\s*\;\s*/);var inlineStyle={};for(var i=0;i<inlineStyleDeclarations.length;i++){var declaration=inlineStyleDeclarations[i];var declarationOperands=declaration.split(/\s*\:\s*/);inlineStyle[declarationOperands[0]]=declarationOperands[1];}}
var style={color:browserStyle.color,fontFamily:browserStyle.fontFamily.split(/\s*,\s*/)[0].replace(/(^"|^'|'$|"$)/g,'').toLowerCase(),fontSize:this.pixelsFromCssAmount(browserStyle.fontSize,12,e.parentNode),fontWeight:this.cssFontWeightMap[browserStyle.fontWeight],fontStyle:browserStyle.fontStyle?browserStyle.fontStyle:'normal',fontStretchPercent:this.cssFontStretchMap[inlineStyle&&inlineStyle['font-stretch']?inlineStyle['font-stretch']:'default'],textDecoration:browserStyle.textDecoration,lineHeight:this.pixelsFromCssAmount(browserStyle.lineHeight,'normal',e.parentNode),letterSpacing:this.pixelsFromCssAmount(browserStyle.letterSpacing,0,e.parentNode),textTransform:browserStyle.textTransform};var face;if(this.faces[style.fontFamily]&&this.faces[style.fontFamily][style.fontWeight]){face=this.faces[style.fontFamily][style.fontWeight][style.fontStyle];}
var text=e.nodeValue;if(e.previousSibling&&e.previousSibling.nodeType==1&&e.previousSibling.tagName!='BR'&&this.getElementStyle(e.previousSibling).display.match(/inline/)){text=text.replace(/^\s+/,' ');}else{text=text.replace(/^\s+/,'');}
if(e.nextSibling&&e.nextSibling.nodeType==1&&e.nextSibling.tagName!='BR'&&this.getElementStyle(e.nextSibling).display.match(/inline/)){text=text.replace(/\s+$/,' ');}else{text=text.replace(/\s+$/,'');}
text=text.replace(/\s+/g,' ');if(style.textTransform&&style.textTransform!='none'){switch(style.textTransform){case'capitalize':text=this.capitalizeText(text);break;case'uppercase':text=text.toUpperCase();break;case'lowercase':text=text.toLowerCase();break;}}
if(!face){var excerptLength=12;var textExcerpt=text.substring(0,excerptLength);if(text.length>excerptLength){textExcerpt+='...';}
var fontDescription=style.fontFamily;if(style.fontWeight!='normal')fontDescription+=' '+style.fontWeight;if(style.fontStyle!='normal')fontDescription+=' '+style.fontStyle;this.log("couldn't find typeface font: "+fontDescription+' for text "'+textExcerpt+'"');return;}
var words=text.split(/\b(?=\w)/);var containerSpan=document.createElement('span');containerSpan.className='typeface-js-vector-container';var wordsLength=words.length;for(var i=0;i<wordsLength;i++){var word=words[i];var vector=this.renderWord(face,style,word);if(vector){containerSpan.appendChild(vector.element);if(!this.disableSelection){var selectableSpan=document.createElement('span');selectableSpan.className='typeface-js-selected-text';var wordNode=document.createTextNode(word);selectableSpan.appendChild(wordNode);if(this.vectorBackend!='vml'){selectableSpan.style.marginLeft=-1*(vector.width+1)+'px';}
selectableSpan.targetWidth=vector.width;if(this.vectorBackend=='vml'){vector.element.appendChild(selectableSpan);}else{containerSpan.appendChild(selectableSpan);}}}}
return containerSpan;},renderDocument:function(callback){if(!callback)
callback=function(e){e.style.visibility='visible'};var elements=document.getElementsByTagName('*');var elementsLength=elements.length;for(var i=0;i<elements.length;i++){if(elements[i].className.match(/(^|\s)typeface-js(\s|$)/)||elements[i].tagName.match(/^(H1|H2|H3|H4|H5|H6)$/)){this.replaceText(elements[i]);if(typeof callback=='function'){callback(elements[i]);}}}
if(this.vectorBackend=='vml'){var dummyShape=document.createElement('v:shape');dummyShape.style.display='none';document.body.appendChild(dummyShape);}},replaceText:function(e){var childNodes=[];var childNodesLength=e.childNodes.length;for(var i=0;i<childNodesLength;i++){this.replaceText(e.childNodes[i]);}
if(e.nodeType==3&&e.nodeValue.match(/\S/)){var parentNode=e.parentNode;if(parentNode.className=='typeface-js-selected-text'){return;}
var renderedText=this.getRenderedText(e);if(parentNode.tagName=='A'&&this.vectorBackend=='vml'&&this.getElementStyle(parentNode).display=='inline'){parentNode.style.display='inline-block';parentNode.style.cursor='pointer';}
if(this.getElementStyle(parentNode).display=='inline'){parentNode.style.display='inline-block';}
if(renderedText){if(parentNode.replaceChild){parentNode.replaceChild(renderedText,e);}else{parentNode.insertBefore(renderedText,e);parentNode.removeChild(e);}
if(this.vectorBackend=='vml'){renderedText.innerHTML=renderedText.innerHTML;}
var childNodesLength=renderedText.childNodes.length
for(var i;i<childNodesLength;i++){var e=renderedText.childNodes[i];if(e.hasChildNodes()&&!e.targetWidth){e=e.childNodes[0];}
if(e&&e.targetWidth){var letterSpacingCount=e.innerHTML.length;var wordSpaceDelta=e.targetWidth-e.offsetWidth;var letterSpacing=wordSpaceDelta/(letterSpacingCount||1);if(this.vectorBackend=='vml'){letterSpacing=Math.ceil(letterSpacing);}
e.style.letterSpacing=letterSpacing+'px';e.style.width=e.targetWidth+'px';}}}}},applyElementVerticalMetrics:function(face,style,e){if(style.lineHeight=='normal'){style.lineHeight=this.pixelsFromPoints(face,style,face.lineHeight);}
var cssLineHeightAdjustment=style.lineHeight-this.pixelsFromPoints(face,style,face.lineHeight);e.style.marginTop=Math.round(cssLineHeightAdjustment/2)+'px';e.style.marginBottom=Math.round(cssLineHeightAdjustment/2)+'px';},vectorBackends:{canvas:{_initializeSurface:function(face,style,text){var extents=this.getTextExtents(face,style,text);var canvas=document.createElement('canvas');if(this.disableSelection){canvas.innerHTML=text;}
canvas.height=Math.round(this.pixelsFromPoints(face,style,face.lineHeight));canvas.width=Math.round(this.pixelsFromPoints(face,style,extents.x,'horizontal'));this.applyElementVerticalMetrics(face,style,canvas);if(extents.x>extents.ha)
canvas.style.marginRight=Math.round(this.pixelsFromPoints(face,style,extents.x-extents.ha,'horizontal'))+'px';var ctx=canvas.getContext('2d');var pointScale=this.pixelsFromPoints(face,style,1);ctx.scale(pointScale*style.fontStretchPercent,-1*pointScale);ctx.translate(0,-1*face.ascender);ctx.fillStyle=style.color;return{context:ctx,canvas:canvas};},_renderGlyph:function(ctx,face,char,style){var glyph=face.glyphs[char];if(!glyph){return this.renderGlyph(ctx,face,this.fallbackCharacter,style);}
if(glyph.o){var outline;if(glyph.cached_outline){outline=glyph.cached_outline;}else{outline=glyph.o.split(' ');glyph.cached_outline=outline;}
var outlineLength=outline.length;for(var i=0;i<outlineLength;){var action=outline[i++];switch(action){case'm':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;case'b':var x=outline[i++];var y=outline[i++];ctx.bezierCurveTo(outline[i++],outline[i++],outline[i++],outline[i++],x,y);break;}}}
if(glyph.ha){var letterSpacingPoints=style.letterSpacing&&style.letterSpacing!='normal'?this.pointsFromPixels(face,style,style.letterSpacing):0;ctx.translate(glyph.ha+letterSpacingPoints,0);}},_renderWord:function(face,style,text){var surface=this.initializeSurface(face,style,text);var ctx=surface.context;var canvas=surface.canvas;ctx.beginPath();ctx.save();var chars=text.split('');var charsLength=chars.length;for(var i=0;i<charsLength;i++){this.renderGlyph(ctx,face,chars[i],style);}
ctx.fill();if(style.textDecoration=='underline'){ctx.beginPath();ctx.moveTo(0,face.underlinePosition);ctx.restore();ctx.lineTo(0,face.underlinePosition);ctx.strokeStyle=style.color;ctx.lineWidth=face.underlineThickness;ctx.stroke();}
return{element:ctx.canvas,width:Math.floor(canvas.width)};}},vml:{_initializeSurface:function(face,style,text){var shape=document.createElement('v:shape');var extents=this.getTextExtents(face,style,text);shape.style.width=shape.style.height=style.fontSize+'px';shape.style.marginLeft='-1px';if(extents.x>extents.ha){shape.style.marginRight=this.pixelsFromPoints(face,style,extents.x-extents.ha,'horizontal')+'px';}
this.applyElementVerticalMetrics(face,style,shape);var resolutionScale=face.resolution*100/72;shape.coordsize=(resolutionScale/style.fontStretchPercent)+","+resolutionScale;shape.coordorigin='0,'+face.ascender;shape.style.flip='y';shape.fillColor=style.color;shape.stroked=false;shape.path='hh m 0,'+face.ascender+' l 0,'+face.descender+' ';return shape;},_renderGlyph:function(shape,face,char,offsetX,style,vmlSegments){var glyph=face.glyphs[char];if(!glyph){this.log("glyph not defined: "+char);this.renderGlyph(shape,face,this.fallbackCharacter,offsetX,style);return;}
vmlSegments.push('m');if(glyph.o){var outline,outlineLength;if(glyph.cached_outline){outline=glyph.cached_outline;outlineLength=outline.length;}else{outline=glyph.o.split(' ');outlineLength=outline.length;for(var i=0;i<outlineLength;){switch(outline[i++]){case'q':outline[i]=Math.round(outline[i++]);outline[i]=Math.round(outline[i++]);case'm':case'l':outline[i]=Math.round(outline[i++]);outline[i]=Math.round(outline[i++]);break;}}
glyph.cached_outline=outline;}
var prevX,prevY;for(var i=0;i<outlineLength;){var action=outline[i++];var x=Math.round(outline[i++])+offsetX;var y=Math.round(outline[i++]);switch(action){case'm':vmlSegments.push('xm ',x,',',y);break;case'l':vmlSegments.push('l ',x,',',y);break;case'q':var cpx=outline[i++]+offsetX;var cpy=outline[i++];var cp1x=Math.round(prevX+2.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);vmlSegments.push('c ',cp1x,',',cp1y,',',cp2x,',',cp2y,',',x,',',y);break;case'b':var cp1x=Math.round(outline[i++])+offsetX;var cp1y=outline[i++];var cp2x=Math.round(outline[i++])+offsetX;var cp2y=outline[i++];vmlSegments.push('c ',cp1x,',',cp1y,',',cp2x,',',cp2y,',',x,',',y);break;}
prevX=x;prevY=y;}}
vmlSegments.push('x e');return vmlSegments;},_renderWord:function(face,style,text){var offsetX=0;var shape=this.initializeSurface(face,style,text);var letterSpacingPoints=style.letterSpacing&&style.letterSpacing!='normal'?this.pointsFromPixels(face,style,style.letterSpacing):0;letterSpacingPoints=Math.round(letterSpacingPoints);var chars=text.split('');var vmlSegments=[];for(var i=0;i<chars.length;i++){var char=chars[i];vmlSegments=this.renderGlyph(shape,face,char,offsetX,style,vmlSegments);offsetX+=face.glyphs[char].ha+letterSpacingPoints;}
if(style.textDecoration=='underline'){var posY=face.underlinePosition-(face.underlineThickness/2);vmlSegments.push('xm ',0,',',posY);vmlSegments.push('l ',offsetX,',',posY);vmlSegments.push('l ',offsetX,',',posY+face.underlineThickness);vmlSegments.push('l ',0,',',posY+face.underlineThickness);vmlSegments.push('l ',0,',',posY);vmlSegments.push('x e');}
shape.path+=vmlSegments.join('')+'m '+offsetX+' 0 l '+offsetX+' '+face.ascender;return{element:shape,width:Math.floor(this.pixelsFromPoints(face,style,offsetX,'horizontal'))};}}},setVectorBackend:function(backend){this.vectorBackend=backend;var backendFunctions=['renderWord','initializeSurface','renderGlyph'];for(var i=0;i<backendFunctions.length;i++){var backendFunction=backendFunctions[i];this[backendFunction]=this.vectorBackends[backend]['_'+backendFunction];}},initialize:function(){if(arguments.callee.done)return;arguments.callee.done=true;if(window._typefaceTimer)clearInterval(_typefaceTimer);this.renderDocument(function(e){e.style.visibility='visible'});}};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');}
styleSheet.addRule('.typeface-js-selected-text','-ms-filter: \
            "Chroma(color=black) \
            progid:DXImageTransform.Microsoft.MaskFilter(Color=white) \
            progid:DXImageTransform.Microsoft.MaskFilter(Color=blue) \
            alpha(opacity=30)" !important; \
        color: black; \
        font-family: Modern; \
        position: absolute; \
        white-space: pre; \
        filter: alpha(opacity=0) !important;');styleSheet.addRule('.typeface-js-vector-container','position: relative');}else if(document.styleSheets){if(!document.styleSheets.length){(function(){var styleSheet=document.createElement('style');styleSheet.type='text/css';document.getElementsByTagName('head')[0].appendChild(styleSheet);})()}
var styleSheet=document.styleSheets[0];document.styleSheets[0].insertRule(typefaceSelectors.join(',')+' { visibility: hidden; }',styleSheet.cssRules.length);document.styleSheets[0].insertRule('.typeface-js-selected-text { \
            color: rgba(128, 128, 128, 0); \
            opacity: 0.30; \
            position: absolute; \
            font-family: Arial, sans-serif; \
            white-space: pre \
        }',styleSheet.cssRules.length);try{document.styleSheets[0].insertRule('.typeface-js-selected-text::-moz-selection { background: blue; }',styleSheet.cssRules.length);}catch(e){};try{document.styleSheets[0].insertRule('.typeface-js-selected-text::selection { background: blue; }',styleSheet.cssRules.length);}catch(e){};if(/WebKit/i.test(navigator.userAgent)){document.styleSheets[0].insertRule('.typeface-js-vector-container { position: relative }',styleSheet.cssRules.length);}}
var backend=window.CanvasRenderingContext2D||document.createElement('canvas').getContext?'canvas':!!(window.attachEvent&&!window.opera)?'vml':null;if(backend=='vml'){document.namespaces.add("v","urn:schemas-microsoft-com:vml","#default#VML");var styleSheet=document.createStyleSheet();styleSheet.addRule('v\\:shape',"display: inline-block;");}
_typeface_js.setVectorBackend(backend);window._typeface_js=_typeface_js;if(/WebKit/i.test(navigator.userAgent)){var _typefaceTimer=setInterval(function(){if(/loaded|complete/.test(document.readyState)){_typeface_js.initialize();}},10);}
if(document.addEventListener){window.addEventListener('DOMContentLoaded',function(){_typeface_js.initialize()},false);}
try{console.log('initializing typeface.js')}catch(e){};})();;if(_typeface_js&&_typeface_js.loadFace)_typeface_js.loadFace({"glyphs":{"S":{"x_min":62.609375,"x_max":702.328125,"ha":772,"o":"m 168 0 l 168 105 l 172 105 b 402 -13 221 22 303 -13 b 702 244 573 -13 702 79 b 424 513 702 413 594 459 b 190 676 274 560 190 599 b 363 832 190 787 277 832 b 571 608 502 832 577 753 l 676 608 l 676 907 l 573 907 l 573 820 l 568 820 b 363 921 530 887 442 921 b 62 676 205 921 62 842 b 356 410 62 513 182 460 b 574 244 495 370 574 338 b 387 74 574 124 473 74 b 171 306 251 74 171 165 l 65 306 l 65 0 l 168 0 "},"¦":{"x_min":99.359375,"x_max":202.8125,"ha":308,"o":"m 99 937 l 99 451 l 202 451 l 202 937 l 99 937 m 99 242 l 99 -242 l 202 -242 l 202 242 l 99 242 "},"/":{"x_min":27,"x_max":502,"ha":540,"o":"m 27 -13 l 130 -13 l 502 921 l 398 921 l 27 -13 "},"y":{"x_min":22.78125,"x_max":740.78125,"ha":772,"o":"m 740 633 l 447 633 l 447 544 l 567 544 l 391 119 l 213 544 l 333 544 l 333 633 l 22 633 l 22 544 l 90 544 l 331 0 b 195 -154 293 -74 289 -154 b 130 -148 172 -154 150 -149 l 130 -234 b 216 -242 158 -238 187 -242 b 417 -59 342 -242 372 -167 l 672 544 l 740 544 l 740 633 "},"≈":{"x_min":60,"x_max":691.5625,"ha":769,"o":"m 650 566 b 521 466 612 501 575 466 b 394 513 472 466 442 487 b 246 568 358 534 310 568 b 60 441 168 568 100 519 l 103 402 b 236 501 137 454 175 501 b 362 456 283 501 321 480 b 518 400 426 420 464 400 b 691 526 599 400 653 455 l 650 566 m 650 335 b 521 236 611 269 577 236 b 394 283 471 236 438 259 b 246 337 358 303 311 337 b 60 209 168 337 100 287 l 103 170 b 238 270 137 222 174 270 b 362 224 283 270 321 248 b 518 169 426 189 462 169 b 691 294 600 169 654 224 l 650 335 "},"Á":{"x_min":20.0625,"x_max":1037.09375,"ha":1081,"o":"m 685 388 l 360 388 l 524 789 l 685 388 m 20 0 l 373 0 l 373 84 l 235 84 l 323 299 l 721 299 l 807 88 l 671 88 l 671 0 l 1037 0 l 1037 88 l 939 88 l 601 907 l 459 907 l 118 88 l 20 88 l 20 0 m 707 1171 l 558 1171 l 441 971 l 528 971 l 707 1171 "},"g":{"x_min":50.359375,"x_max":800.328125,"ha":849,"o":"m 800 633 l 579 633 l 579 517 l 578 517 b 348 646 537 609 445 646 b 50 330 157 646 50 515 b 352 8 50 137 164 8 b 577 140 443 8 541 48 l 579 140 l 579 69 b 371 -154 579 -86 528 -154 b 209 -55 296 -154 209 -141 l 81 -55 b 372 -242 76 -217 236 -242 b 658 -112 490 -242 608 -211 b 691 206 702 -24 691 109 l 691 544 l 800 544 l 800 633 m 170 330 b 387 558 170 474 240 558 b 579 330 515 558 579 452 b 377 97 579 202 514 97 b 170 330 238 97 170 198 "},"²":{"x_min":50.359375,"x_max":442.359375,"ha":501,"o":"m 50 367 l 442 367 l 442 510 l 371 510 l 371 440 l 141 440 b 432 755 206 505 438 628 b 251 921 434 875 347 921 b 59 744 137 921 62 862 l 147 744 b 251 849 148 802 183 849 b 337 755 308 849 337 810 b 50 455 337 669 125 524 l 50 367 "},"–":{"x_min":0,"x_max":680.5625,"ha":694,"o":"m 0 329 l 680 329 l 680 417 l 0 417 l 0 329 "},"ë":{"x_min":65.328125,"x_max":695.53125,"ha":772,"o":"m 695 284 b 396 646 694 487 616 646 b 65 316 194 646 65 523 b 396 -13 65 109 194 -13 b 690 197 526 -13 686 41 l 586 197 b 411 74 579 115 481 74 b 185 284 265 74 185 138 l 695 284 m 185 373 b 387 558 185 490 280 558 b 583 373 509 558 577 488 l 185 373 m 185 781 l 313 781 l 313 920 l 185 920 l 185 781 m 571 920 l 443 920 l 443 781 l 571 781 l 571 920 "},"ƒ":{"x_min":105,"x_max":670,"ha":772,"o":"m 218 544 l 345 544 l 256 59 b 168 -112 238 -18 226 -112 b 121 -108 156 -112 140 -111 l 105 -194 b 179 -201 132 -199 156 -201 b 367 38 329 -201 340 -104 l 463 544 l 603 544 l 620 633 l 480 633 l 497 721 b 599 832 510 796 537 832 b 652 820 616 832 635 827 l 670 905 b 566 921 635 913 601 921 b 380 726 441 921 397 827 l 363 633 l 235 633 l 218 544 "},"Î":{"x_min":21.78125,"x_max":432.828125,"ha":463,"o":"m 31 0 l 423 0 l 423 89 l 287 89 l 287 819 l 423 819 l 423 908 l 31 908 l 31 819 l 167 819 l 167 89 l 31 89 l 31 0 m 21 972 l 140 972 l 232 1099 l 326 972 l 432 972 l 292 1171 l 163 1171 l 21 972 "},"e":{"x_min":65.328125,"x_max":695.53125,"ha":772,"o":"m 695 284 b 396 646 694 487 616 646 b 65 316 194 646 65 523 b 396 -13 65 109 194 -13 b 690 197 526 -13 686 41 l 586 197 b 411 74 579 115 481 74 b 185 284 265 74 185 138 l 695 284 m 185 373 b 387 558 185 490 280 558 b 583 373 509 558 577 488 l 185 373 "},"Ã":{"x_min":20.0625,"x_max":1038.09375,"ha":1081,"o":"m 686 388 l 360 388 l 525 789 l 686 388 m 20 0 l 374 0 l 374 84 l 235 84 l 323 299 l 722 299 l 808 88 l 672 88 l 672 0 l 1038 0 l 1038 88 l 940 88 l 602 907 l 459 907 l 118 88 l 20 88 l 20 0 m 376 1010 b 442 1074 384 1043 403 1074 b 513 1055 458 1074 485 1064 l 552 1041 b 642 1020 583 1030 612 1020 b 776 1171 713 1020 769 1091 l 704 1171 b 646 1106 700 1139 681 1106 b 576 1124 621 1106 599 1114 l 534 1141 b 447 1160 507 1152 480 1160 b 307 1010 365 1160 318 1084 l 376 1010 "},"J":{"x_min":25.859375,"x_max":660.140625,"ha":694,"o":"m 660 907 l 299 907 l 299 819 l 431 819 l 431 291 b 296 74 431 227 427 74 b 153 281 182 74 153 181 l 25 281 b 288 -13 25 97 95 -13 b 551 263 496 -13 551 126 l 551 819 l 660 819 l 660 907 "},"»":{"x_min":148,"x_max":608,"ha":772,"o":"m 608 319 l 496 594 l 397 594 l 503 319 l 392 44 l 496 44 l 608 319 m 363 319 l 251 594 l 152 594 l 258 319 l 148 44 l 251 44 l 363 319 "},"∆":{"x_min":39,"x_max":837.96875,"ha":897,"o":"m 39 0 l 837 0 l 837 72 l 504 925 l 377 925 l 39 70 l 39 0 m 150 87 l 353 592 b 433 812 376 660 421 766 l 439 812 b 527 570 455 753 504 638 l 720 87 l 150 87 "},"©":{"x_min":85.75,"x_max":1003.140625,"ha":1111,"o":"m 705 366 b 559 245 694 295 638 245 b 379 456 447 245 379 344 b 556 663 379 573 442 663 b 705 548 634 663 690 616 l 788 548 b 555 744 770 676 673 744 b 284 455 387 744 284 621 b 559 165 284 291 393 165 b 789 366 673 165 764 241 l 705 366 m 544 -13 b 1003 453 797 -13 1003 195 b 544 921 1003 712 797 921 b 85 453 291 921 85 712 b 544 -13 85 195 291 -13 m 544 66 b 181 453 328 66 181 233 b 544 841 181 674 328 841 b 907 453 760 841 907 674 b 544 66 907 233 760 66 "},"≥":{"x_min":69.421875,"x_max":684.640625,"ha":769,"o":"m 76 791 l 76 710 l 611 456 l 611 453 l 76 199 l 76 119 l 683 419 l 683 491 l 76 791 m 684 -2 l 684 66 l 69 66 l 69 -2 l 684 -2 "},"ò":{"x_min":50.359375,"x_max":706.421875,"ha":772,"o":"m 170 316 b 381 558 170 446 240 558 b 586 316 521 558 586 446 b 381 74 586 186 521 74 b 170 316 240 74 170 186 m 50 316 b 381 -13 50 109 179 -13 b 706 316 582 -13 706 109 b 381 646 706 523 582 646 b 50 316 179 646 50 523 m 198 927 l 378 727 l 465 727 l 348 927 l 198 927 "},"^":{"x_min":74,"x_max":744,"ha":833,"o":"m 74 319 l 178 319 l 409 797 l 639 319 l 744 319 l 456 908 l 361 908 l 74 319 "},"«":{"x_min":148,"x_max":608,"ha":772,"o":"m 148 319 l 259 44 l 358 44 l 252 319 l 363 594 l 259 594 l 148 319 m 392 319 l 504 44 l 603 44 l 497 319 l 608 594 l 504 594 l 392 319 "},"D":{"x_min":40.828125,"x_max":920.109375,"ha":1003,"o":"m 40 0 l 368 0 b 920 455 692 0 920 77 b 368 907 920 832 692 907 l 40 907 l 40 819 l 176 819 l 176 88 l 40 88 l 40 0 m 296 819 l 368 819 b 792 453 620 819 792 748 b 368 88 792 159 620 88 l 296 88 l 296 819 "},"∙":{"x_min":96.640625,"x_max":281.75,"ha":386,"o":"m 96 363 b 189 269 96 312 140 269 b 281 363 240 269 281 312 b 189 458 281 415 240 458 b 96 363 140 458 96 415 "},"ÿ":{"x_min":23.03125,"x_max":739.78125,"ha":772,"o":"m 739 633 l 447 633 l 447 544 l 566 544 l 391 119 l 213 544 l 333 544 l 333 633 l 23 633 l 23 544 l 91 544 l 331 0 b 195 -154 293 -74 289 -154 b 130 -148 172 -154 150 -149 l 130 -234 b 216 -242 159 -238 187 -242 b 417 -59 342 -242 372 -167 l 671 544 l 739 544 l 739 633 m 185 781 l 312 781 l 312 920 l 185 920 l 185 781 m 571 920 l 443 920 l 443 781 l 571 781 l 571 920 "},"í":{"x_min":38.109375,"x_max":368.859375,"ha":386,"o":"m 38 0 l 364 0 l 364 88 l 257 88 l 257 633 l 38 633 l 38 544 l 145 544 l 145 88 l 38 88 l 38 0 m 368 927 l 219 927 l 102 727 l 189 727 l 368 927 "},"w":{"x_min":20.265625,"x_max":1188.765625,"ha":1235,"o":"m 1188 633 l 881 633 l 881 544 l 1003 544 l 859 105 l 856 105 l 688 633 l 535 633 l 362 105 l 359 105 l 220 544 l 342 544 l 342 633 l 20 633 l 20 544 l 101 544 l 281 0 l 426 0 l 604 528 l 607 528 l 778 0 l 923 0 l 1107 544 l 1188 544 l 1188 633 "},"$":{"x_min":62.609375,"x_max":702.328125,"ha":772,"o":"m 408 394 b 574 243 515 360 574 325 b 408 74 574 133 490 80 l 408 394 m 329 547 b 190 676 238 582 190 618 b 329 834 190 774 257 824 l 329 547 m 329 80 b 171 306 230 101 171 185 l 65 306 l 65 0 l 168 0 l 168 104 l 172 104 b 329 -7 209 43 262 7 l 329 -143 l 408 -143 l 408 -14 b 702 243 575 -13 702 79 b 424 513 702 413 594 459 b 408 519 419 515 412 518 l 408 834 b 571 608 518 817 577 737 l 676 608 l 676 908 l 573 908 l 573 821 l 568 821 b 408 922 537 875 475 907 l 408 1042 l 329 1042 l 329 922 b 62 676 189 922 62 832 b 329 420 62 523 168 467 l 329 80 "},"∫":{"x_min":14.96875,"x_max":455.96875,"ha":486,"o":"m 455 1084 b 382 1102 442 1092 411 1102 b 255 1050 336 1102 289 1086 b 183 775 202 998 183 917 b 201 122 183 569 201 335 b 156 -98 201 -8 182 -65 b 93 -127 141 -118 117 -127 b 32 -111 68 -127 44 -116 l 14 -187 b 104 -209 31 -197 69 -209 b 240 -138 157 -209 210 -187 b 296 120 269 -94 296 -16 b 277 764 296 333 277 562 b 322 993 277 884 288 955 b 389 1024 340 1016 367 1024 b 439 1010 408 1024 428 1017 l 455 1084 "},"\\":{"x_min":27,"x_max":502.03125,"ha":540,"o":"m 130 921 l 27 921 l 398 -13 l 502 -13 l 130 921 "},"Ì":{"x_min":31.3125,"x_max":423.3125,"ha":463,"o":"m 31 0 l 423 0 l 423 88 l 287 88 l 287 819 l 423 819 l 423 907 l 31 907 l 31 819 l 167 819 l 167 88 l 31 88 l 31 0 m 47 1171 l 227 971 l 314 971 l 197 1171 l 47 1171 "},"µ":{"x_min":28.578125,"x_max":786.71875,"ha":849,"o":"m 679 633 l 460 633 l 460 544 l 567 544 l 567 273 b 390 74 567 158 511 74 b 247 240 279 74 247 138 l 247 633 l 28 633 l 28 544 l 136 544 l 136 -229 l 247 -229 l 247 9 b 362 -13 274 -5 311 -13 b 564 109 451 -13 540 31 l 567 109 l 567 0 l 786 0 l 786 88 l 679 88 l 679 633 "},"Ç":{"x_min":77.578125,"x_max":905.140625,"ha":1003,"o":"m 901 908 l 797 908 l 797 795 l 794 795 b 529 922 744 884 609 922 b 77 454 232 922 77 745 b 466 -10 77 184 210 12 l 389 -114 l 411 -138 b 475 -128 431 -134 453 -128 b 530 -182 502 -128 530 -149 b 462 -244 530 -220 503 -244 b 366 -221 434 -244 392 -231 l 340 -270 b 483 -296 386 -287 434 -296 b 634 -175 549 -296 634 -253 b 532 -76 634 -107 590 -76 b 476 -82 509 -76 492 -80 l 525 -13 l 529 -13 b 905 308 726 -13 905 78 l 777 308 b 529 75 777 159 661 75 b 205 454 314 75 205 236 b 529 833 205 709 325 833 b 797 583 686 833 782 748 l 901 583 l 901 908 "},"’":{"x_min":121,"x_max":257.0625,"ha":386,"o":"m 121 769 l 179 769 l 121 588 l 199 588 l 257 769 l 257 907 l 121 907 l 121 769 "},"-":{"x_min":65.328125,"x_max":387.921875,"ha":463,"o":"m 65 320 l 387 320 l 387 426 l 65 426 l 65 320 "},"Q":{"x_min":77.578125,"x_max":1037.171875,"ha":1081,"o":"m 529 74 b 205 453 325 74 205 235 b 529 832 205 709 325 832 b 853 453 733 832 853 709 b 529 74 853 235 733 74 m 529 -13 b 613 -9 555 -13 582 -12 b 720 0 645 -6 680 -2 l 1037 0 l 1037 88 l 819 88 l 819 91 b 981 453 939 163 981 317 b 529 921 981 745 826 921 b 77 453 232 921 77 745 b 529 -13 77 162 232 -13 "},"M":{"x_min":38.109375,"x_max":1246.78125,"ha":1311,"o":"m 38 0 l 416 0 l 416 88 l 294 88 l 294 819 l 296 819 l 588 0 l 696 0 l 988 819 l 990 819 l 990 88 l 868 88 l 868 0 l 1246 0 l 1246 88 l 1110 88 l 1110 819 l 1246 819 l 1246 907 l 913 907 l 643 147 l 641 147 l 383 907 l 38 907 l 38 819 l 174 819 l 174 88 l 38 88 l 38 0 "},"C":{"x_min":77.578125,"x_max":905.140625,"ha":1003,"o":"m 901 907 l 797 907 l 797 795 l 794 795 b 529 921 744 884 609 921 b 77 453 232 921 77 745 b 529 -13 77 162 232 -13 b 905 308 726 -13 905 77 l 777 308 b 529 74 777 159 661 74 b 205 453 314 74 205 235 b 529 832 205 709 325 832 b 797 583 686 832 782 748 l 901 583 l 901 907 "},"!":{"x_min":197.359375,"x_max":333.46875,"ha":540,"o":"m 333 907 l 197 907 l 220 216 l 310 216 l 333 907 m 201 0 l 329 0 l 329 130 l 201 130 l 201 0 "},"ç":{"x_min":50.359375,"x_max":645.171875,"ha":694,"o":"m 637 633 l 549 633 l 549 554 l 547 554 b 372 647 511 618 442 647 b 50 316 179 647 50 523 b 317 -9 50 132 153 12 l 238 -114 l 259 -138 b 323 -128 280 -134 302 -128 b 379 -182 351 -128 379 -149 b 311 -244 379 -220 352 -244 b 215 -221 283 -244 240 -231 l 189 -270 b 332 -296 235 -287 283 -296 b 483 -175 398 -296 483 -253 b 381 -76 483 -107 439 -76 b 325 -82 357 -76 341 -80 l 374 -13 b 645 212 511 -13 639 58 l 541 212 b 372 75 529 119 460 75 b 170 316 240 75 170 186 b 372 558 170 447 240 558 b 548 394 472 558 539 494 l 637 394 l 637 633 "},"È":{"x_min":55.046875,"x_max":830.09375,"ha":926,"o":"m 55 0 l 830 0 l 830 283 l 726 283 l 726 88 l 310 88 l 310 413 l 508 413 l 508 283 l 612 283 l 612 633 l 508 633 l 508 502 l 310 502 l 310 819 l 726 819 l 726 633 l 830 633 l 830 907 l 55 907 l 55 819 l 191 819 l 191 88 l 55 88 l 55 0 m 275 1171 l 454 971 l 541 971 l 424 1171 l 275 1171 "},"{":{"x_min":76.21875,"x_max":416.5,"ha":463,"o":"m 416 1002 l 325 1002 b 185 823 255 1002 185 937 l 185 635 b 76 462 185 534 138 462 l 76 373 b 185 195 138 373 185 298 l 185 12 b 325 -166 185 -101 255 -166 l 416 -166 l 416 -77 l 349 -77 b 288 37 302 -77 287 -23 l 288 217 b 174 416 288 362 201 408 l 174 419 b 288 613 201 426 288 477 l 288 798 b 349 913 288 860 302 913 l 416 913 l 416 1002 "},"X":{"x_min":22.546875,"x_max":958.0625,"ha":1003,"o":"m 22 0 l 392 0 l 392 88 l 243 88 l 482 398 l 723 88 l 576 88 l 576 0 l 958 0 l 958 88 l 869 88 l 565 478 l 828 819 l 926 819 l 926 907 l 567 907 l 567 819 l 695 819 l 493 558 l 292 819 l 426 819 l 426 907 l 55 907 l 55 819 l 153 819 l 416 478 l 115 88 l 22 88 l 22 0 "},"ô":{"x_min":50.359375,"x_max":706.421875,"ha":772,"o":"m 170 316 b 381 557 170 446 240 557 b 586 316 521 557 586 446 b 381 74 586 185 521 74 b 170 316 240 74 170 185 m 50 316 b 381 -14 50 109 179 -14 b 706 316 582 -14 706 109 b 381 646 706 523 582 646 b 50 316 179 646 50 523 m 172 727 l 291 727 l 383 854 l 477 727 l 583 727 l 443 926 l 314 926 l 172 727 "},"¼":{"x_min":80.578125,"x_max":1019.109375,"ha":1158,"o":"m 767 0 l 1019 0 l 1019 72 l 936 72 l 936 137 l 1019 137 l 1019 209 l 936 209 l 936 545 l 836 545 l 589 224 l 589 137 l 848 137 l 848 72 l 767 72 l 767 0 m 848 209 l 649 209 l 846 463 l 848 463 l 848 209 m 237 -24 l 318 -24 l 872 932 l 790 932 l 237 -24 m 125 367 l 383 367 l 383 440 l 301 440 l 301 913 l 216 913 b 80 810 164 871 143 852 l 80 734 b 213 833 128 767 178 798 l 213 440 l 125 440 l 125 367 "},"#":{"x_min":44.046875,"x_max":713.953125,"ha":772,"o":"m 140 0 l 233 0 l 275 283 l 444 283 l 402 0 l 493 0 l 535 283 l 673 283 l 673 363 l 546 363 l 573 546 l 713 546 l 713 627 l 585 627 l 626 909 l 535 909 l 494 627 l 325 627 l 366 909 l 275 909 l 234 627 l 83 627 l 83 546 l 222 546 l 195 363 l 44 363 l 44 283 l 184 283 l 140 0 m 313 546 l 482 546 l 455 363 l 286 363 l 313 546 "},"Ê":{"x_min":55,"x_max":830.828125,"ha":926,"o":"m 55 0 l 830 0 l 830 283 l 727 283 l 727 89 l 310 89 l 310 414 l 509 414 l 509 283 l 613 283 l 613 633 l 509 633 l 509 502 l 310 502 l 310 819 l 727 819 l 727 633 l 830 633 l 830 908 l 55 908 l 55 819 l 191 819 l 191 89 l 55 89 l 55 0 m 249 972 l 368 972 l 460 1099 l 554 972 l 660 972 l 520 1171 l 391 1171 l 249 972 "},")":{"x_min":73.5,"x_max":389.28125,"ha":463,"o":"m 78 1002 b 261 422 190 839 261 626 b 73 -166 261 216 197 1 l 174 -166 b 389 422 302 -6 389 199 b 181 1002 389 599 302 832 l 78 1002 "},"Å":{"x_min":20.0625,"x_max":1038.09375,"ha":1081,"o":"m 686 388 l 360 388 l 525 789 l 686 388 m 20 0 l 374 0 l 374 84 l 235 84 l 323 299 l 722 299 l 808 88 l 672 88 l 672 0 l 1038 0 l 1038 88 l 940 88 l 602 907 l 459 907 l 118 88 l 20 88 l 20 0 m 390 1081 b 529 939 390 1002 451 939 b 667 1081 605 939 667 1002 b 529 1222 667 1159 605 1222 b 390 1081 451 1222 390 1159 m 450 1081 b 529 1161 447 1124 486 1161 b 608 1081 569 1159 608 1127 b 529 1000 608 1036 569 1000 b 450 1081 486 1000 450 1036 "},"ø":{"x_min":50.03125,"x_max":706.96875,"ha":772,"o":"m 210 166 b 169 316 183 206 169 259 b 381 558 169 447 240 558 b 507 513 433 558 475 542 l 210 166 m 547 469 b 587 316 574 427 587 374 b 381 74 587 186 521 74 b 247 122 325 74 280 93 l 547 469 m 66 0 l 108 -36 l 178 43 b 381 -13 229 5 299 -13 b 706 316 582 -13 706 109 b 622 556 706 417 676 499 l 692 635 l 649 677 l 577 594 b 381 646 525 628 458 646 b 50 316 179 646 50 523 b 135 80 50 216 80 134 l 66 0 "},"â":{"x_min":56.203125,"x_max":730.75,"ha":772,"o":"m 510 0 l 730 0 l 730 88 l 621 88 l 621 450 b 345 646 621 614 492 646 b 79 449 212 646 87 595 l 199 449 b 360 557 207 539 276 557 b 510 423 458 557 510 524 l 510 385 l 390 385 b 56 181 241 385 56 374 b 299 -14 56 39 175 -14 b 507 130 398 -14 480 30 l 510 130 l 510 0 m 175 181 b 416 296 175 296 336 296 l 510 296 b 313 74 510 175 450 74 b 175 181 246 74 175 98 m 173 727 l 291 727 l 383 854 l 477 727 l 583 727 l 443 926 l 314 926 l 173 727 "},"}":{"x_min":36.75,"x_max":377.03125,"ha":463,"o":"m 36 -166 l 127 -166 b 268 12 197 -166 268 -101 l 268 199 b 377 373 268 301 314 373 l 377 462 b 268 639 314 462 268 537 l 268 823 b 127 1002 268 937 197 1002 l 36 1002 l 36 913 l 103 913 b 164 798 151 913 166 859 l 164 617 b 279 419 164 473 251 427 l 279 416 b 164 222 251 409 164 358 l 164 37 b 103 -77 164 -24 151 -77 l 36 -77 l 36 -166 "},"‰":{"x_min":13.609375,"x_max":1347.5,"ha":1389,"o":"m 498 216 b 690 -13 498 91 553 -13 b 880 216 819 -13 880 91 b 690 446 880 331 819 446 b 498 216 553 446 498 331 m 593 216 b 690 374 593 277 608 374 b 785 216 774 374 785 277 b 690 58 785 144 774 58 b 593 216 608 58 593 144 m 13 691 b 205 460 13 566 69 460 b 396 691 334 460 396 566 b 205 921 396 806 334 921 b 13 691 69 921 13 806 m 108 691 b 205 849 108 752 123 849 b 300 691 289 849 300 752 b 205 533 300 619 289 533 b 108 691 123 533 108 619 m 965 216 b 1156 -13 965 91 1020 -13 b 1347 216 1286 -13 1347 91 b 1156 446 1347 331 1286 446 b 965 216 1020 446 965 331 m 1060 216 b 1156 374 1060 277 1075 374 b 1252 216 1241 374 1252 277 b 1156 58 1252 144 1241 58 b 1060 216 1075 58 1060 144 m 147 -24 l 231 -24 l 748 932 l 661 932 l 147 -24 "},"Ä":{"x_min":20.0625,"x_max":1038.09375,"ha":1081,"o":"m 686 388 l 360 388 l 525 789 l 686 388 m 20 0 l 374 0 l 374 84 l 235 84 l 323 299 l 722 299 l 808 88 l 672 88 l 672 0 l 1038 0 l 1038 88 l 940 88 l 602 907 l 459 907 l 118 88 l 20 88 l 20 0 m 335 1025 l 463 1025 l 463 1164 l 335 1164 l 335 1025 m 722 1164 l 594 1164 l 594 1025 l 722 1025 l 722 1164 "},"¸":{"x_min":38.421875,"x_max":332.421875,"ha":386,"o":"m 87 -114 l 109 -138 b 173 -128 129 -134 151 -128 b 228 -182 200 -128 228 -149 b 160 -244 228 -220 201 -244 b 64 -221 132 -244 90 -231 l 38 -270 b 181 -296 84 -287 132 -296 b 332 -175 248 -296 332 -253 b 230 -76 332 -107 288 -76 b 174 -82 207 -76 190 -80 l 233 0 l 173 0 l 87 -114 "},"a":{"x_min":55.8125,"x_max":730.921875,"ha":772,"o":"m 510 0 l 730 0 l 730 88 l 622 88 l 622 451 b 345 646 622 614 492 646 b 78 449 212 646 87 595 l 198 449 b 360 558 206 540 276 558 b 510 423 458 558 510 524 l 510 385 l 390 385 b 55 181 240 385 55 374 b 299 -13 55 40 175 -13 b 507 130 398 -13 480 30 l 510 130 l 510 0 m 175 181 b 416 297 175 297 336 297 l 510 297 b 313 74 510 176 450 74 b 175 181 246 74 175 98 "},"—":{"x_min":0,"x_max":1361.109375,"ha":1389,"o":"m 0 329 l 1361 329 l 1361 417 l 0 417 l 0 329 "},"=":{"x_min":63.96875,"x_max":752.703125,"ha":833,"o":"m 752 545 l 63 545 l 63 440 l 752 440 l 752 545 m 752 262 l 63 262 l 63 156 l 752 156 l 752 262 "},"N":{"x_min":35.390625,"x_max":1023.5625,"ha":1081,"o":"m 1023 907 l 634 907 l 634 819 l 770 819 l 770 141 l 767 141 l 355 907 l 35 907 l 35 819 l 176 819 l 176 88 l 35 88 l 35 0 l 424 0 l 424 88 l 288 88 l 288 794 l 291 794 l 721 0 l 882 0 l 882 819 l 1023 819 l 1023 907 "},"ú":{"x_min":29.109375,"x_max":787.25,"ha":849,"o":"m 679 633 l 460 633 l 460 544 l 568 544 l 568 273 b 391 74 568 158 512 74 b 248 240 279 74 248 138 l 248 633 l 29 633 l 29 544 l 136 544 l 136 216 b 362 -13 136 68 201 -13 b 565 109 452 -13 540 31 l 568 109 l 568 0 l 787 0 l 787 88 l 679 88 l 679 633 m 596 927 l 446 927 l 329 727 l 417 727 l 596 927 "},"⁄":{"x_min":-204,"x_max":432,"ha":232,"o":"m -204 -24 l -122 -24 l 432 932 l 350 932 l -204 -24 "},"2":{"x_min":67.875,"x_max":668.125,"ha":772,"o":"m 67 0 l 668 0 l 668 238 l 564 238 l 564 88 l 169 88 b 655 677 289 198 655 438 b 378 921 655 842 523 921 b 76 644 202 921 85 827 l 203 644 b 378 832 203 759 272 832 b 527 677 466 832 527 774 b 67 145 527 498 183 259 l 67 0 "},"ü":{"x_min":28.578125,"x_max":786.71875,"ha":849,"o":"m 679 633 l 460 633 l 460 544 l 567 544 l 567 273 b 390 74 567 158 511 74 b 247 240 279 74 247 138 l 247 633 l 28 633 l 28 544 l 136 544 l 136 216 b 362 -13 136 68 201 -13 b 564 109 451 -13 540 31 l 567 109 l 567 0 l 786 0 l 786 88 l 679 88 l 679 633 m 202 781 l 330 781 l 330 920 l 202 920 l 202 781 m 589 920 l 461 920 l 461 781 l 589 781 l 589 920 "},"¯":{"x_min":0,"x_max":378.390625,"ha":386,"o":"m 0 789 l 378 789 l 378 878 l 0 878 l 0 789 "},"Z":{"x_min":53.078125,"x_max":777.203125,"ha":849,"o":"m 777 0 l 777 283 l 673 283 l 673 88 l 175 88 l 763 794 l 763 907 l 62 907 l 62 628 l 166 628 l 166 819 l 637 819 l 53 119 l 53 0 l 777 0 "},"u":{"x_min":28.578125,"x_max":786.71875,"ha":849,"o":"m 679 633 l 460 633 l 460 544 l 567 544 l 567 273 b 390 74 567 158 511 74 b 247 240 279 74 247 138 l 247 633 l 28 633 l 28 544 l 136 544 l 136 216 b 362 -13 136 68 201 -13 b 564 109 451 -13 540 31 l 567 109 l 567 0 l 786 0 l 786 88 l 679 88 l 679 633 "},"Ó":{"x_min":77.578125,"x_max":981.359375,"ha":1081,"o":"m 853 453 b 529 74 853 235 733 74 b 205 453 325 74 205 235 b 529 832 205 709 325 832 b 853 453 733 832 853 709 m 981 453 b 529 921 981 745 826 921 b 77 453 232 921 77 745 b 529 -13 77 162 232 -13 b 981 453 826 -13 981 162 m 709 1171 l 559 1171 l 442 971 l 529 971 l 709 1171 "},"k":{"x_min":37.3125,"x_max":732.890625,"ha":772,"o":"m 37 0 l 354 0 l 354 88 l 256 88 l 256 230 l 376 331 l 528 88 l 447 88 l 447 0 l 732 0 l 732 88 l 656 88 l 459 401 l 628 544 l 717 544 l 717 633 l 403 633 l 403 544 l 501 544 l 501 541 l 256 334 l 256 907 l 37 907 l 37 819 l 144 819 l 144 88 l 37 88 l 37 0 "},"Ù":{"x_min":20.421875,"x_max":960.953125,"ha":1003,"o":"m 960 907 l 592 907 l 592 819 l 725 819 l 725 347 b 494 74 725 184 661 74 b 261 347 300 74 261 222 l 261 819 l 404 819 l 404 907 l 20 907 l 20 819 l 141 819 l 141 347 b 491 -13 141 165 205 -13 b 845 347 725 -13 845 106 l 845 819 l 960 819 l 960 907 m 311 1171 l 491 971 l 578 971 l 461 1171 l 311 1171 "},"€":{"x_min":19.0625,"x_max":714.578125,"ha":772,"o":"m 19 310 l 118 310 b 441 -11 148 113 251 -11 b 714 239 666 -11 714 164 l 714 243 l 598 243 b 438 86 596 146 532 86 b 239 310 322 86 262 185 l 466 310 l 492 397 l 230 397 b 227 460 227 418 227 439 b 228 487 227 469 228 478 l 507 487 l 533 575 l 238 575 b 446 821 262 716 343 821 b 598 654 472 821 593 811 l 703 654 l 703 655 l 703 908 l 600 908 l 600 836 b 446 919 568 891 515 919 b 117 575 265 919 148 778 l 44 575 l 19 487 l 108 487 b 106 455 108 476 106 465 b 108 397 106 435 107 417 l 44 397 l 19 310 "},"¢":{"x_min":92.5625,"x_max":686,"ha":772,"o":"m 368 81 b 212 319 264 105 212 202 b 368 553 212 435 264 532 l 368 81 m 439 557 b 589 394 524 548 581 485 l 677 394 l 677 632 l 590 632 l 590 548 l 588 548 b 439 646 556 609 502 637 l 439 752 l 368 752 l 368 646 b 92 319 193 634 92 496 b 368 -9 92 134 196 9 l 368 -118 l 439 -118 l 439 -12 b 686 212 573 -4 680 70 l 582 212 b 439 76 573 130 517 81 l 439 557 "},"Ω":{"x_min":65.328125,"x_max":914.671875,"ha":1001,"o":"m 266 87 l 65 87 l 65 0 l 396 0 l 396 65 b 191 466 292 124 191 273 b 494 827 191 666 310 827 b 788 470 686 827 786 639 b 583 65 788 262 687 127 l 583 0 l 914 0 l 914 87 l 710 87 l 710 90 b 895 490 803 162 895 302 b 494 916 895 709 740 916 b 84 484 259 916 84 734 b 266 90 84 304 171 169 l 266 87 "},"ß":{"x_min":23.140625,"x_max":705.0625,"ha":772,"o":"m 23 0 l 308 0 l 308 88 l 242 88 l 242 627 b 408 832 242 745 276 832 b 552 694 492 832 552 784 b 385 535 552 583 483 535 l 385 446 b 585 265 500 446 585 394 b 394 88 585 129 521 88 l 394 0 b 705 265 589 0 705 48 b 470 495 705 405 609 484 l 470 498 b 672 694 589 503 672 566 b 400 921 672 866 556 921 b 130 627 208 921 130 809 l 130 88 l 23 88 l 23 0 "},"é":{"x_min":65.328125,"x_max":695.53125,"ha":772,"o":"m 695 284 b 396 646 694 487 616 646 b 65 316 194 646 65 523 b 396 -13 65 109 194 -13 b 690 197 526 -13 686 41 l 586 197 b 411 74 579 115 481 74 b 185 284 265 74 185 138 l 695 284 m 185 373 b 387 558 185 490 280 558 b 583 373 509 558 577 488 l 185 373 m 558 927 l 408 927 l 291 727 l 378 727 l 558 927 "},"s":{"x_min":73.5,"x_max":611.140625,"ha":694,"o":"m 160 0 l 160 87 l 163 87 b 352 -13 191 15 279 -13 b 611 190 479 -13 611 43 b 377 370 611 333 487 351 b 190 459 296 385 190 387 b 341 558 190 540 276 558 b 461 533 389 558 431 552 b 511 424 492 513 511 480 l 598 424 l 598 633 l 511 633 l 511 556 l 509 556 b 319 646 475 620 400 646 b 78 448 205 646 78 583 b 332 267 78 301 217 287 b 491 173 400 258 491 259 b 363 74 491 105 416 74 b 224 102 313 74 262 80 b 160 220 187 123 161 159 l 73 220 l 73 0 l 160 0 "},"B":{"x_min":39.46875,"x_max":815.3125,"ha":926,"o":"m 296 819 l 442 819 b 660 666 532 819 660 816 b 439 502 660 523 553 502 l 296 502 l 296 819 m 296 413 l 442 413 b 687 255 574 413 687 392 b 442 88 687 109 568 88 l 296 88 l 296 413 m 39 0 l 442 0 b 815 255 638 0 815 31 b 611 465 815 390 737 466 l 611 467 b 788 666 721 484 788 569 b 442 907 788 902 589 907 l 39 907 l 39 819 l 176 819 l 176 88 l 39 88 l 39 0 "},"…":{"x_min":159.25,"x_max":1201.859375,"ha":1389,"o":"m 159 0 l 295 0 l 295 138 l 159 138 l 159 0 m 612 0 l 748 0 l 748 138 l 612 138 l 612 0 m 1065 0 l 1201 0 l 1201 138 l 1065 138 l 1065 0 "},"?":{"x_min":50.359375,"x_max":615.21875,"ha":694,"o":"m 178 671 b 334 824 182 763 236 824 b 487 681 430 824 487 773 b 398 516 487 605 451 564 b 239 216 292 419 239 381 l 360 216 b 428 397 360 298 364 337 b 615 699 533 494 615 544 b 344 921 615 855 487 921 b 50 671 189 921 55 835 l 178 671 m 236 0 l 364 0 l 364 130 l 236 130 l 236 0 "},"H":{"x_min":40.828125,"x_max":1018.109375,"ha":1081,"o":"m 882 88 l 882 819 l 1018 819 l 1018 907 l 626 907 l 626 819 l 762 819 l 762 502 l 296 502 l 296 819 l 432 819 l 432 907 l 40 907 l 40 819 l 176 819 l 176 88 l 40 88 l 40 0 l 432 0 l 432 88 l 296 88 l 296 413 l 762 413 l 762 88 l 626 88 l 626 0 l 1018 0 l 1018 88 l 882 88 "},"î":{"x_min":-16.328125,"x_max":394.71875,"ha":386,"o":"m 38 0 l 364 0 l 364 88 l 257 88 l 257 632 l 38 632 l 38 543 l 145 543 l 145 88 l 38 88 l 38 0 m -16 727 l 102 727 l 194 854 l 288 727 l 394 727 l 254 926 l 125 926 l -16 727 "},"c":{"x_min":50.359375,"x_max":645.171875,"ha":694,"o":"m 637 633 l 549 633 l 549 553 l 547 553 b 372 646 511 617 442 646 b 50 316 179 646 50 523 b 372 -13 50 109 179 -13 b 645 212 511 -13 639 58 l 541 212 b 372 74 529 119 460 74 b 170 316 240 74 170 186 b 372 558 170 446 240 558 b 548 394 472 558 539 494 l 637 394 l 637 633 "},"¶":{"x_min":38.109375,"x_max":692.8125,"ha":833,"o":"m 328 -166 l 431 -166 l 431 819 l 589 819 l 589 -166 l 692 -166 l 692 907 l 352 907 b 38 644 161 907 38 827 b 328 388 38 499 155 388 l 328 -166 "},"−":{"x_min":63.96875,"x_max":752.703125,"ha":833,"o":"m 752 298 l 752 403 l 63 403 l 63 298 l 752 298 "},"≠":{"x_min":68.015625,"x_max":685.984375,"ha":769,"o":"m 537 663 l 483 688 l 412 531 l 68 531 l 68 463 l 385 463 l 296 267 l 68 267 l 68 201 l 268 201 l 206 65 l 259 40 l 332 201 l 685 201 l 685 267 l 360 267 l 449 463 l 685 463 l 685 531 l 477 531 l 537 663 "},"•":{"x_min":117.0625,"x_max":562.140625,"ha":694,"o":"m 117 453 b 338 227 117 330 216 227 b 562 453 461 227 562 330 b 338 681 562 580 461 681 b 117 453 216 681 117 580 "},"¥":{"x_min":-12.265625,"x_max":769.015625,"ha":772,"o":"m 279 907 l -12 907 l -12 819 l 59 819 l 270 465 l 85 465 l 85 392 l 313 392 l 322 377 l 322 285 l 85 285 l 85 213 l 322 213 l 322 88 l 186 88 l 186 0 l 562 0 l 562 88 l 426 88 l 426 213 l 662 213 l 662 285 l 426 285 l 426 377 l 435 392 l 662 392 l 662 465 l 479 465 l 696 819 l 769 819 l 769 907 l 489 907 l 489 819 l 593 819 l 382 480 l 178 819 l 279 819 l 279 907 "},"(":{"x_min":63.96875,"x_max":379.75,"ha":463,"o":"m 374 -166 b 191 413 262 -4 191 209 b 379 1002 191 619 255 834 l 279 1002 b 63 413 151 842 63 635 b 272 -166 63 235 151 2 l 374 -166 "},"U":{"x_min":20.421875,"x_max":960.953125,"ha":1003,"o":"m 960 907 l 592 907 l 592 819 l 725 819 l 725 347 b 494 74 725 184 661 74 b 261 347 300 74 261 222 l 261 819 l 404 819 l 404 907 l 20 907 l 20 819 l 141 819 l 141 347 b 491 -13 141 165 205 -13 b 845 347 725 -13 845 106 l 845 819 l 960 819 l 960 907 "},"◊":{"x_min":72,"x_max":697,"ha":785,"o":"m 697 449 l 427 963 l 342 963 l 72 449 l 340 -62 l 424 -62 l 697 449 m 600 446 l 411 86 b 386 23 401 69 390 38 l 382 23 b 357 87 378 38 370 62 l 167 452 l 355 809 b 381 875 366 832 375 855 l 385 875 b 409 809 389 857 400 830 l 600 446 "},"Ñ":{"x_min":35.015625,"x_max":1023.1875,"ha":1081,"o":"m 1023 907 l 633 907 l 633 819 l 770 819 l 770 141 l 767 141 l 354 907 l 35 907 l 35 819 l 176 819 l 176 88 l 35 88 l 35 0 l 424 0 l 424 88 l 288 88 l 288 794 l 290 794 l 721 0 l 881 0 l 881 819 l 1023 819 l 1023 907 m 376 1010 b 441 1074 384 1043 403 1074 b 512 1055 458 1074 485 1064 l 552 1041 b 642 1020 583 1030 612 1020 b 775 1171 712 1020 768 1091 l 704 1171 b 646 1106 700 1139 681 1106 b 576 1124 621 1106 599 1114 l 534 1141 b 447 1160 507 1152 480 1160 b 307 1010 365 1160 318 1084 l 376 1010 "},"F":{"x_min":39.46875,"x_max":792.171875,"ha":849,"o":"m 40 0 l 458 0 l 458 88 l 296 88 l 296 413 l 491 413 l 491 280 l 594 280 l 594 620 l 491 620 l 491 502 l 296 502 l 296 819 l 688 819 l 688 620 l 792 620 l 792 907 l 39 907 l 39 819 l 176 819 l 176 88 l 40 88 l 40 0 "},"­":{"x_min":65.328125,"x_max":387.921875,"ha":463,"o":"m 65 320 l 387 320 l 387 426 l 65 426 l 65 320 "},":":{"x_min":121.140625,"x_max":257.25,"ha":386,"o":"m 121 0 l 257 0 l 257 138 l 121 138 l 121 0 m 257 633 l 121 633 l 121 494 l 257 494 l 257 633 "},"Û":{"x_min":20.421875,"x_max":960.953125,"ha":1003,"o":"m 960 908 l 592 908 l 592 819 l 725 819 l 725 347 b 494 75 725 184 661 75 b 261 347 300 75 261 222 l 261 819 l 404 819 l 404 908 l 20 908 l 20 819 l 141 819 l 141 347 b 491 -13 141 165 205 -13 b 845 347 725 -13 845 107 l 845 819 l 960 819 l 960 908 m 285 972 l 404 972 l 496 1099 l 590 972 l 696 972 l 556 1171 l 427 1171 l 285 972 "},"*":{"x_min":158,"x_max":599,"ha":772,"o":"m 431 907 l 322 907 l 348 730 l 190 812 l 158 705 l 328 670 l 202 545 l 292 478 l 377 634 l 450 474 l 545 540 l 426 670 l 599 699 l 566 806 l 408 730 l 431 907 "},"†":{"x_min":93.921875,"x_max":662.859375,"ha":772,"o":"m 322 0 l 434 0 l 434 558 l 662 558 l 662 655 l 434 655 l 434 907 l 322 907 l 322 655 l 93 655 l 93 558 l 322 558 l 322 0 "},"∕":{"x_min":-204,"x_max":432,"ha":232,"o":"m -204 -24 l -122 -24 l 432 932 l 350 932 l -204 -24 "},"°":{"x_min":70.78125,"x_max":473.671875,"ha":556,"o":"m 141 716 b 272 849 141 789 200 849 b 402 716 344 849 402 789 b 272 583 402 642 344 583 b 141 716 200 583 141 642 m 70 716 b 272 510 70 598 156 510 b 473 716 387 510 473 598 b 272 921 473 834 387 921 b 70 716 156 921 70 834 "},"V":{"x_min":22.171875,"x_max":962.0625,"ha":1003,"o":"m 962 908 l 630 908 l 630 819 l 767 819 l 496 124 l 230 819 l 367 819 l 367 908 l 22 908 l 22 819 l 98 819 l 423 0 l 559 0 l 884 819 l 962 819 l 962 908 "},"å":{"x_min":55.8125,"x_max":730.921875,"ha":772,"o":"m 510 0 l 730 0 l 730 88 l 622 88 l 622 451 b 345 646 622 614 492 646 b 78 449 212 646 87 595 l 198 449 b 360 558 206 540 276 558 b 510 423 458 558 510 524 l 510 385 l 390 385 b 55 181 240 385 55 374 b 299 -13 55 40 175 -13 b 507 130 398 -13 480 30 l 510 130 l 510 0 m 175 181 b 416 297 175 297 336 297 l 510 297 b 313 74 510 176 450 74 b 175 181 246 74 175 98 m 239 855 b 378 713 239 775 300 713 b 517 855 454 713 517 775 b 378 996 517 932 454 996 b 239 855 300 996 239 932 m 299 855 b 378 935 296 898 336 935 b 457 855 419 932 457 900 b 378 774 457 810 419 774 b 299 855 336 774 299 810 "}," ":{"x_min":0,"x_max":0,"ha":386},"0":{"x_min":63.96875,"x_max":692.8125,"ha":772,"o":"m 63 453 b 381 -13 63 224 119 -13 b 692 453 641 -13 692 224 b 381 921 692 659 641 921 b 63 453 119 921 63 659 m 191 453 b 381 832 191 601 208 832 b 564 453 552 832 564 601 b 381 74 564 284 552 74 b 191 453 208 74 191 284 "},"”":{"x_min":182,"x_max":574.0625,"ha":772,"o":"m 438 769 l 496 769 l 438 588 l 516 588 l 574 769 l 574 907 l 438 907 l 438 769 m 182 769 l 240 769 l 182 588 l 260 588 l 318 769 l 318 907 l 182 907 l 182 769 "},"¾":{"x_min":47.65625,"x_max":1022.09375,"ha":1158,"o":"m 770 0 l 1022 0 l 1022 72 l 939 72 l 939 137 l 1022 137 l 1022 209 l 939 209 l 939 545 l 839 545 l 592 224 l 592 137 l 851 137 l 851 72 l 770 72 l 770 0 m 851 209 l 652 209 l 849 463 l 851 463 l 851 209 m 246 -24 l 328 -24 l 881 932 l 800 932 l 246 -24 m 210 610 b 338 520 284 613 338 591 b 242 431 338 471 299 431 b 134 544 171 431 137 469 l 47 544 b 242 359 47 402 129 359 b 434 515 352 359 434 409 b 294 645 434 602 371 644 l 294 648 b 427 775 375 655 427 703 b 242 921 427 882 337 921 b 53 745 136 921 51 860 l 140 745 b 242 849 144 809 178 849 b 332 770 306 849 332 810 b 210 682 332 706 279 682 l 210 610 "},"@":{"x_min":103.984375,"x_max":985.984375,"ha":1111,"o":"m 489 266 b 389 385 433 266 389 315 b 572 631 389 491 467 631 b 671 515 625 631 671 577 b 489 266 671 416 593 266 m 709 623 b 569 720 678 692 628 720 b 286 376 399 720 286 544 b 467 177 286 267 361 177 b 613 254 523 177 579 215 l 615 254 b 693 177 618 201 652 177 b 985 535 802 177 985 310 b 565 923 985 763 792 923 b 103 458 313 923 103 717 b 572 -12 103 192 309 -12 b 953 204 727 -12 873 68 l 871 204 b 574 68 800 120 689 68 b 191 451 357 68 191 234 b 565 842 191 664 346 842 b 907 526 751 842 907 721 b 732 258 907 392 818 258 b 706 288 715 258 706 270 b 719 351 706 306 712 329 l 817 699 l 734 699 l 709 623 "},"ö":{"x_min":50.359375,"x_max":706.421875,"ha":772,"o":"m 170 316 b 381 558 170 446 240 558 b 586 316 521 558 586 446 b 381 74 586 186 521 74 b 170 316 240 74 170 186 m 50 316 b 381 -13 50 109 179 -13 b 706 316 582 -13 706 109 b 381 646 706 523 582 646 b 50 316 179 646 50 523 m 185 781 l 313 781 l 313 920 l 185 920 l 185 781 m 571 920 l 443 920 l 443 781 l 571 781 l 571 920 "},"i":{"x_min":38.109375,"x_max":364.78125,"ha":386,"o":"m 38 0 l 364 0 l 364 88 l 257 88 l 257 633 l 38 633 l 38 544 l 145 544 l 145 88 l 38 88 l 38 0 m 257 907 l 129 907 l 129 777 l 257 777 l 257 907 "},"≤":{"x_min":68.0625,"x_max":686,"ha":769,"o":"m 683 119 l 683 199 l 147 455 l 147 458 l 683 710 l 683 791 l 74 491 l 74 419 l 683 119 m 686 -2 l 686 66 l 68 66 l 68 -2 l 686 -2 "},"Õ":{"x_min":77.75,"x_max":981.53125,"ha":1081,"o":"m 853 453 b 529 74 853 235 733 74 b 205 453 325 74 205 235 b 529 832 205 709 325 832 b 853 453 733 832 853 709 m 981 453 b 529 921 981 745 826 921 b 77 453 232 921 77 745 b 529 -13 77 162 232 -13 b 981 453 826 -13 981 162 m 377 1010 b 442 1074 385 1043 404 1074 b 513 1055 458 1074 486 1064 l 552 1041 b 642 1020 584 1030 612 1020 b 776 1171 713 1020 769 1091 l 705 1171 b 646 1106 701 1139 682 1106 b 577 1124 622 1106 600 1114 l 535 1141 b 447 1160 507 1152 480 1160 b 307 1010 366 1160 318 1084 l 377 1010 "},"þ":{"x_min":31.3125,"x_max":775.828125,"ha":849,"o":"m 31 -229 l 360 -229 l 360 -140 l 251 -140 l 251 122 l 254 122 b 469 -13 295 31 372 -13 b 775 316 666 -13 775 118 b 485 646 775 519 661 646 b 254 506 367 646 285 588 l 251 506 l 251 907 l 31 907 l 31 819 l 140 819 l 140 -140 l 31 -140 l 31 -229 m 251 316 b 469 558 251 444 318 558 b 656 316 590 558 656 444 b 469 74 656 173 588 74 b 251 316 321 74 251 173 "},"]":{"x_min":121.140625,"x_max":332.109375,"ha":463,"o":"m 121 -166 l 332 -166 l 332 1002 l 121 1002 l 121 921 l 228 921 l 228 -86 l 121 -86 l 121 -166 "},"m":{"x_min":39.46875,"x_max":1185.53125,"ha":1235,"o":"m 39 0 l 366 0 l 366 88 l 258 88 l 258 348 b 426 558 258 455 304 558 b 556 355 558 558 560 463 l 556 88 l 449 88 l 449 0 l 775 0 l 775 88 l 668 88 l 668 355 b 833 558 668 462 711 558 b 966 355 962 558 966 452 l 966 88 l 858 88 l 858 0 l 1185 0 l 1185 88 l 1078 88 l 1078 426 b 854 646 1078 571 997 646 b 657 520 767 646 692 601 b 457 646 619 609 553 646 b 261 520 363 646 287 601 l 258 520 l 258 633 l 39 633 l 39 544 l 147 544 l 147 88 l 39 88 l 39 0 "},"8":{"x_min":78.9375,"x_max":677.828125,"ha":772,"o":"m 89 682 b 284 470 89 559 170 488 l 284 469 b 78 238 157 453 78 372 b 381 -13 78 54 220 -13 b 677 244 543 -13 677 65 b 473 467 677 384 602 446 l 473 470 b 669 691 593 490 669 562 b 381 921 669 855 525 921 b 89 682 239 921 89 845 m 209 671 b 381 832 209 770 279 832 b 549 674 473 832 549 782 b 381 509 549 569 475 509 b 209 671 287 509 209 570 m 198 249 b 381 420 198 362 279 420 b 558 254 492 420 558 358 b 381 74 558 144 492 74 b 198 249 273 74 198 133 "},"R":{"x_min":40.828125,"x_max":892.890625,"ha":926,"o":"m 296 819 l 396 819 b 661 663 514 819 661 819 b 396 484 661 484 530 484 l 296 484 l 296 819 m 40 0 l 432 0 l 432 88 l 296 88 l 296 395 l 402 395 b 634 201 571 395 586 363 l 694 0 l 892 0 l 892 88 l 789 88 l 751 222 b 702 360 732 273 722 322 b 588 433 681 398 650 426 l 588 435 b 789 663 715 446 789 534 b 419 907 789 896 600 907 l 40 907 l 40 819 l 176 819 l 176 88 l 40 88 l 40 0 "},"á":{"x_min":55.5625,"x_max":730.671875,"ha":772,"o":"m 510 0 l 730 0 l 730 88 l 621 88 l 621 451 b 345 646 621 614 492 646 b 78 449 212 646 86 595 l 198 449 b 360 558 206 540 276 558 b 510 423 458 558 510 524 l 510 385 l 390 385 b 55 181 240 385 55 374 b 299 -13 55 40 175 -13 b 507 130 398 -13 480 30 l 510 130 l 510 0 m 175 181 b 416 297 175 297 335 297 l 510 297 b 312 74 510 176 450 74 b 175 181 246 74 175 98 m 557 927 l 408 927 l 291 727 l 378 727 l 557 927 "},"×":{"x_min":97,"x_max":720,"ha":833,"o":"m 339 351 l 97 103 l 166 33 l 407 281 l 650 33 l 720 103 l 476 351 l 720 598 l 650 669 l 407 421 l 166 669 l 97 598 l 339 351 "},"o":{"x_min":50.359375,"x_max":706.421875,"ha":772,"o":"m 170 316 b 381 558 170 446 240 558 b 586 316 521 558 586 446 b 381 74 586 186 521 74 b 170 316 240 74 170 186 m 50 316 b 381 -13 50 109 179 -13 b 706 316 582 -13 706 109 b 381 646 706 523 582 646 b 50 316 179 646 50 523 "},"5":{"x_min":92.5625,"x_max":687.359375,"ha":772,"o":"m 649 907 l 121 907 l 106 369 l 217 369 b 386 491 239 448 313 491 b 567 291 510 491 567 409 b 379 74 567 152 502 74 b 220 242 279 74 220 151 l 92 242 b 379 -13 92 63 217 -13 b 687 291 574 -13 687 95 b 402 580 687 481 585 580 b 220 477 330 580 245 544 l 217 477 l 232 819 l 649 819 l 649 907 "},"õ":{"x_min":50.796875,"x_max":706.859375,"ha":772,"o":"m 170 316 b 381 558 170 446 241 558 b 587 316 521 558 587 446 b 381 74 587 186 521 74 b 170 316 241 74 170 186 m 50 316 b 381 -13 50 109 180 -13 b 706 316 583 -13 706 109 b 381 646 706 523 583 646 b 50 316 180 646 50 523 m 226 766 b 291 830 234 799 253 830 b 362 810 308 830 335 820 l 401 796 b 491 775 433 785 461 775 b 625 927 562 775 618 846 l 554 927 b 495 862 550 895 531 862 b 426 880 471 862 449 870 l 384 896 b 297 916 357 907 329 916 b 156 766 215 916 167 839 l 226 766 "},"7":{"x_min":76.21875,"x_max":696.890625,"ha":772,"o":"m 696 907 l 76 907 l 76 644 l 179 644 l 179 819 l 583 819 b 220 0 473 591 330 280 l 348 0 b 696 802 451 272 566 542 l 696 907 "},"K":{"x_min":40.28125,"x_max":897.78125,"ha":926,"o":"m 40 0 l 432 0 l 432 88 l 296 88 l 296 478 l 648 88 l 537 88 l 537 0 l 897 0 l 897 88 l 802 88 l 440 483 l 794 819 l 867 819 l 867 907 l 528 907 l 528 819 l 641 819 l 296 487 l 296 819 l 432 819 l 432 907 l 40 907 l 40 819 l 176 819 l 176 88 l 40 88 l 40 0 "},",":{"x_min":121,"x_max":257.0625,"ha":386,"o":"m 121 0 l 179 0 l 121 -180 l 199 -180 l 257 0 l 257 138 l 121 138 l 121 0 "},"d":{"x_min":55.8125,"x_max":800.328125,"ha":849,"o":"m 579 0 l 800 0 l 800 88 l 691 88 l 691 907 l 469 907 l 469 819 l 579 819 l 579 516 l 577 516 b 356 646 543 602 445 646 b 55 316 171 646 55 510 b 356 -13 55 127 149 -13 b 577 120 453 -13 544 40 l 579 120 l 579 0 m 579 316 b 381 74 579 191 517 74 b 175 316 239 74 175 191 b 381 558 175 451 239 558 b 579 316 517 558 579 451 "},"¨":{"x_min":-4.078125,"x_max":382.46875,"ha":386,"o":"m -4 781 l 123 781 l 123 920 l -4 920 l -4 781 m 382 920 l 254 920 l 254 781 l 382 781 l 382 920 "},"Ô":{"x_min":77.578125,"x_max":981.359375,"ha":1081,"o":"m 853 454 b 529 75 853 236 733 75 b 205 454 325 75 205 236 b 529 833 205 709 325 833 b 853 454 733 833 853 709 m 981 454 b 529 922 981 745 826 922 b 77 454 232 922 77 745 b 529 -13 77 162 232 -13 b 981 454 826 -13 981 162 m 323 972 l 442 972 l 534 1099 l 628 972 l 735 972 l 594 1171 l 465 1171 l 323 972 "},"E":{"x_min":54.4375,"x_max":830.28125,"ha":926,"o":"m 54 0 l 830 0 l 830 283 l 726 283 l 726 88 l 310 88 l 310 413 l 509 413 l 509 283 l 612 283 l 612 633 l 509 633 l 509 502 l 310 502 l 310 819 l 726 819 l 726 633 l 830 633 l 830 907 l 54 907 l 54 819 l 190 819 l 190 88 l 54 88 l 54 0 "},"Y":{"x_min":20.125,"x_max":888.90625,"ha":926,"o":"m 237 0 l 660 0 l 660 88 l 509 88 l 509 376 l 814 819 l 888 819 l 888 907 l 553 907 l 553 819 l 694 819 l 458 476 l 229 819 l 370 819 l 370 907 l 20 907 l 20 819 l 94 819 l 389 376 l 389 88 l 237 88 l 237 0 "},"\"":{"x_min":215.0625,"x_max":541.71875,"ha":772,"o":"m 215 588 l 318 588 l 318 907 l 215 907 l 215 588 m 438 588 l 541 588 l 541 907 l 438 907 l 438 588 "},"‹":{"x_min":82,"x_max":297,"ha":386,"o":"m 82 319 l 193 44 l 292 44 l 186 319 l 297 594 l 193 594 l 82 319 "},"ê":{"x_min":65.203125,"x_max":695.609375,"ha":772,"o":"m 695 284 b 396 646 694 486 616 646 b 65 316 194 646 65 523 b 396 -14 65 109 194 -14 b 690 196 526 -14 686 41 l 586 196 b 411 74 579 114 481 74 b 184 284 265 74 184 138 l 695 284 m 184 373 b 387 557 184 489 280 557 b 584 373 509 557 577 488 l 184 373 m 172 727 l 291 727 l 383 854 l 477 727 l 584 727 l 443 926 l 314 926 l 172 727 "},"Ï":{"x_min":31.3125,"x_max":423.3125,"ha":463,"o":"m 31 0 l 423 0 l 423 88 l 287 88 l 287 819 l 423 819 l 423 907 l 31 907 l 31 819 l 167 819 l 167 88 l 31 88 l 31 0 m 34 1025 l 161 1025 l 161 1164 l 34 1164 l 34 1025 m 420 1164 l 292 1164 l 292 1025 l 420 1025 l 420 1164 "},"„":{"x_min":182,"x_max":574.0625,"ha":772,"o":"m 438 0 l 496 0 l 438 -180 l 516 -180 l 574 0 l 574 138 l 438 138 l 438 0 m 182 0 l 240 0 l 182 -180 l 260 -180 l 318 0 l 318 138 l 182 138 l 182 0 "},"Â":{"x_min":20.0625,"x_max":1037.09375,"ha":1081,"o":"m 685 389 l 360 389 l 524 790 l 685 389 m 20 0 l 373 0 l 373 85 l 235 85 l 323 300 l 721 300 l 807 89 l 671 89 l 671 0 l 1037 0 l 1037 89 l 939 89 l 601 908 l 459 908 l 118 89 l 20 89 l 20 0 m 323 972 l 441 972 l 534 1099 l 627 972 l 733 972 l 593 1171 l 464 1171 l 323 972 "},"Í":{"x_min":31.3125,"x_max":423.3125,"ha":463,"o":"m 31 0 l 423 0 l 423 88 l 287 88 l 287 819 l 423 819 l 423 907 l 31 907 l 31 819 l 167 819 l 167 88 l 31 88 l 31 0 m 406 1171 l 257 1171 l 140 971 l 227 971 l 406 1171 "},"´":{"x_min":102,"x_max":369,"ha":386,"o":"m 369 927 l 219 927 l 102 727 l 189 727 l 369 927 "},"ì":{"x_min":9.53125,"x_max":364.78125,"ha":386,"o":"m 38 0 l 364 0 l 364 88 l 257 88 l 257 633 l 38 633 l 38 544 l 145 544 l 145 88 l 38 88 l 38 0 m 9 927 l 189 727 l 276 727 l 159 927 l 9 927 "},"±":{"x_min":63.96875,"x_max":752.703125,"ha":833,"o":"m 356 480 l 63 480 l 63 374 l 356 374 l 356 152 l 460 152 l 460 374 l 752 374 l 752 480 l 460 480 l 460 702 l 356 702 l 356 480 m 63 0 l 752 0 l 752 105 l 63 105 l 63 0 "},"Ú":{"x_min":20.421875,"x_max":960.953125,"ha":1003,"o":"m 960 907 l 592 907 l 592 819 l 725 819 l 725 347 b 494 74 725 184 661 74 b 261 347 300 74 261 222 l 261 819 l 404 819 l 404 907 l 20 907 l 20 819 l 141 819 l 141 347 b 491 -13 141 165 205 -13 b 845 347 725 -13 845 106 l 845 819 l 960 819 l 960 907 m 671 1171 l 521 1171 l 404 971 l 491 971 l 671 1171 "},"|":{"x_min":99.359375,"x_max":202.8125,"ha":308,"o":"m 99 1041 l 99 -347 l 202 -347 l 202 1041 l 99 1041 "},"§":{"x_min":103.4375,"x_max":653.328125,"ha":772,"o":"m 106 79 b 382 -154 103 -98 228 -154 b 645 54 513 -154 645 -95 b 537 219 645 138 612 194 l 537 222 b 653 385 609 245 653 308 b 485 566 653 484 575 531 l 378 605 b 234 727 298 634 234 664 b 371 832 234 810 313 832 b 507 689 469 832 507 795 l 635 689 b 368 921 635 887 536 921 b 114 727 253 921 114 862 b 225 560 114 641 151 588 l 225 558 b 103 408 153 541 103 478 b 264 213 103 284 171 245 b 525 54 406 161 525 148 b 382 -65 525 -33 449 -65 b 234 79 284 -65 234 -33 l 106 79 m 435 463 b 533 358 485 442 533 427 b 469 259 533 315 502 277 l 303 319 b 223 408 258 335 223 349 b 289 519 223 453 251 499 l 435 463 "},"Ý":{"x_min":20.125,"x_max":888.90625,"ha":926,"o":"m 237 0 l 660 0 l 660 88 l 508 88 l 508 376 l 814 819 l 888 819 l 888 907 l 553 907 l 553 819 l 694 819 l 458 476 l 229 819 l 370 819 l 370 907 l 20 907 l 20 819 l 94 819 l 389 376 l 389 88 l 237 88 l 237 0 m 634 1171 l 484 1171 l 367 971 l 454 971 l 634 1171 "},"b":{"x_min":31.3125,"x_max":775.828125,"ha":849,"o":"m 31 0 l 251 0 l 251 129 l 254 129 b 469 -13 284 36 382 -13 b 775 316 666 -13 775 118 b 469 646 775 519 661 646 b 254 517 385 646 289 599 l 251 517 l 251 907 l 31 907 l 31 819 l 140 819 l 140 88 l 31 88 l 31 0 m 251 316 b 469 558 251 444 318 558 b 656 316 590 558 656 444 b 469 74 656 173 588 74 b 251 316 321 74 251 173 "},"q":{"x_min":55.8125,"x_max":800.328125,"ha":849,"o":"m 175 306 b 379 558 175 444 228 558 b 579 313 515 558 579 437 b 379 74 579 187 514 74 b 175 306 245 74 175 176 m 800 633 l 579 633 l 579 506 l 577 506 b 353 646 545 592 447 646 b 55 306 151 646 55 502 b 345 -13 55 131 167 -13 b 577 106 443 -13 532 26 l 579 106 l 579 -140 l 472 -140 l 472 -229 l 800 -229 l 800 -140 l 691 -140 l 691 544 l 800 544 l 800 633 "},"Ö":{"x_min":77.578125,"x_max":981.359375,"ha":1081,"o":"m 853 453 b 529 74 853 235 733 74 b 205 453 325 74 205 235 b 529 832 205 709 325 832 b 853 453 733 832 853 709 m 981 453 b 529 921 981 745 826 921 b 77 453 232 921 77 745 b 529 -13 77 162 232 -13 b 981 453 826 -13 981 162 m 336 1025 l 464 1025 l 464 1164 l 336 1164 l 336 1025 m 722 1164 l 594 1164 l 594 1025 l 722 1025 l 722 1164 "},"z":{"x_min":66.6875,"x_max":616.578125,"ha":694,"o":"m 66 0 l 616 0 l 616 226 l 521 226 l 521 88 l 198 88 l 609 544 l 609 633 l 77 633 l 77 420 l 172 420 l 172 544 l 473 544 l 66 88 l 66 0 "},"™":{"x_min":87.109375,"x_max":1260.390625,"ha":1375,"o":"m 1260 907 l 1103 907 l 945 487 l 785 907 l 628 907 l 628 335 l 732 335 l 732 802 l 735 802 l 910 335 l 978 335 l 1154 802 l 1156 802 l 1156 335 l 1260 335 l 1260 907 m 536 907 l 87 907 l 87 819 l 259 819 l 259 335 l 363 335 l 363 819 l 536 819 l 536 907 "},"ã":{"x_min":56.0625,"x_max":731.171875,"ha":772,"o":"m 510 0 l 731 0 l 731 88 l 622 88 l 622 451 b 345 646 622 614 492 646 b 79 449 212 646 87 595 l 198 449 b 360 558 207 540 276 558 b 510 423 458 558 510 524 l 510 385 l 390 385 b 56 181 241 385 56 374 b 299 -13 56 40 175 -13 b 507 130 399 -13 480 30 l 510 130 l 510 0 m 175 181 b 416 297 175 297 336 297 l 510 297 b 313 74 510 176 450 74 b 175 181 246 74 175 98 m 226 766 b 291 830 234 799 253 830 b 362 810 307 830 335 820 l 401 796 b 491 775 433 785 461 775 b 625 927 562 775 618 846 l 554 927 b 495 862 550 895 531 862 b 426 880 471 862 449 870 l 384 896 b 296 916 356 907 329 916 b 156 766 215 916 167 839 l 226 766 "},"æ":{"x_min":49,"x_max":1015.515625,"ha":1081,"o":"m 1015 284 b 751 646 1018 495 980 646 b 547 541 660 646 588 613 b 326 646 509 627 431 646 b 73 455 215 646 78 601 l 193 455 b 334 558 201 530 259 558 b 473 427 441 558 473 512 l 473 373 l 329 373 b 49 184 198 373 49 351 b 276 -13 49 48 152 -13 b 510 141 377 -13 480 37 l 513 141 b 748 -13 540 40 647 -13 b 1007 202 891 -13 1001 47 l 903 202 b 763 74 903 123 837 74 b 577 284 635 74 577 165 l 1015 284 m 577 373 b 756 558 578 474 642 558 b 903 373 876 558 903 474 l 577 373 m 473 284 b 294 74 473 179 424 74 b 168 180 224 74 168 102 b 330 284 168 280 255 283 l 473 284 "},"®":{"x_min":85.75,"x_max":1003.140625,"ha":1111,"o":"m 544 -13 b 1003 453 797 -13 1003 195 b 544 921 1003 712 797 921 b 85 453 291 921 85 712 b 544 -13 85 195 291 -13 m 544 66 b 181 453 328 66 181 233 b 544 841 181 674 328 841 b 907 453 760 841 907 674 b 544 66 907 233 760 66 m 366 180 l 445 180 l 445 415 l 537 415 l 680 180 l 771 180 l 619 417 b 756 570 711 431 756 467 b 568 726 756 677 700 726 l 366 726 l 366 180 m 445 487 l 445 653 l 556 653 b 677 576 624 656 677 644 b 543 487 677 492 620 487 l 445 487 "},"É":{"x_min":54.4375,"x_max":830.28125,"ha":926,"o":"m 54 0 l 830 0 l 830 283 l 726 283 l 726 88 l 310 88 l 310 413 l 509 413 l 509 283 l 612 283 l 612 633 l 509 633 l 509 502 l 310 502 l 310 819 l 726 819 l 726 633 l 830 633 l 830 907 l 54 907 l 54 819 l 190 819 l 190 88 l 54 88 l 54 0 m 634 1171 l 484 1171 l 367 971 l 454 971 l 634 1171 "},"~":{"x_min":94.171875,"x_max":723,"ha":833,"o":"m 143 249 b 258 349 164 298 197 349 b 378 319 295 349 348 335 l 443 284 b 554 255 479 266 516 255 b 723 374 637 255 682 316 l 674 452 b 554 349 642 403 608 349 b 445 388 509 349 479 373 l 389 413 b 258 446 343 434 303 446 b 94 327 173 446 124 385 l 143 249 "},"³":{"x_min":53.078125,"x_max":439.640625,"ha":501,"o":"m 216 610 b 344 520 289 613 344 591 b 247 431 344 471 304 431 b 140 544 176 431 142 469 l 53 544 b 247 359 53 402 134 359 b 439 515 357 359 439 409 b 299 645 439 602 377 644 l 299 648 b 432 775 381 655 432 703 b 247 921 432 882 343 921 b 58 745 141 921 57 860 l 145 745 b 247 849 149 809 183 849 b 337 770 311 849 337 810 b 216 682 337 706 284 682 l 216 610 "},"¡":{"x_min":196,"x_max":332.109375,"ha":540,"o":"m 196 -229 l 332 -229 l 308 462 l 219 462 l 196 -229 m 328 678 l 200 678 l 200 548 l 328 548 l 328 678 "},"[":{"x_min":121.140625,"x_max":332.109375,"ha":463,"o":"m 332 1002 l 121 1002 l 121 -166 l 332 -166 l 332 -86 l 224 -86 l 224 921 l 332 921 l 332 1002 "},"L":{"x_min":40.828125,"x_max":774.46875,"ha":849,"o":"m 40 0 l 774 0 l 774 306 l 671 306 l 671 88 l 296 88 l 296 819 l 457 819 l 457 907 l 40 907 l 40 819 l 176 819 l 176 88 l 40 88 l 40 0 "}," ":{"x_min":0,"x_max":0,"ha":386},"∑":{"x_min":30.140625,"x_max":718.921875,"ha":763,"o":"m 718 -124 l 718 -24 l 168 -24 l 168 -20 l 510 401 l 194 803 l 194 807 l 698 807 l 698 900 l 45 900 l 45 827 l 388 385 l 30 -55 l 30 -124 l 718 -124 "},"%":{"x_min":156.53125,"x_max":1053.5,"ha":1235,"o":"m 251 681 b 360 849 251 760 270 849 b 455 681 445 849 455 760 b 360 512 455 610 445 512 b 251 681 270 512 251 610 m 156 681 b 360 440 156 546 213 440 b 551 681 500 440 551 546 b 360 921 551 807 502 921 b 156 681 215 921 156 807 m 658 227 b 862 -13 658 93 715 -13 b 1053 227 1003 -13 1053 93 b 862 467 1053 353 1004 467 b 658 227 717 467 658 353 m 754 227 b 862 395 754 306 773 395 b 958 227 947 395 958 306 b 862 58 958 156 947 58 b 754 227 773 58 754 156 m 306 -24 l 392 -24 l 909 932 l 823 932 l 306 -24 "},"P":{"x_min":40.828125,"x_max":786.71875,"ha":849,"o":"m 296 819 l 428 819 b 658 637 544 819 658 807 b 428 453 658 467 544 453 l 296 453 l 296 819 m 40 0 l 460 0 l 460 88 l 296 88 l 296 365 l 428 365 b 786 637 616 365 786 405 b 428 907 786 869 616 907 l 40 907 l 40 819 l 176 819 l 176 88 l 40 88 l 40 0 "},"∏":{"x_min":32.671875,"x_max":911.953125,"ha":965,"o":"m 911 805 l 911 900 l 32 900 l 32 805 l 182 805 l 182 -124 l 287 -124 l 287 805 l 658 805 l 658 -124 l 763 -124 l 763 805 l 911 805 "},"À":{"x_min":20.0625,"x_max":1037.09375,"ha":1081,"o":"m 685 388 l 360 388 l 524 789 l 685 388 m 20 0 l 374 0 l 374 84 l 235 84 l 323 299 l 721 299 l 807 88 l 671 88 l 671 0 l 1037 0 l 1037 88 l 939 88 l 602 907 l 459 907 l 118 88 l 20 88 l 20 0 m 349 1171 l 529 971 l 616 971 l 499 1171 l 349 1171 "},"_":{"x_min":0,"x_max":680.5625,"ha":694,"o":"m 0 -173 l 680 -173 l 680 -104 l 0 -104 l 0 -173 "},"ñ":{"x_min":53.25,"x_max":811.390625,"ha":849,"o":"m 53 0 l 379 0 l 379 88 l 272 88 l 272 359 b 449 558 272 471 329 558 b 592 392 558 558 592 494 l 592 88 l 484 88 l 484 0 l 811 0 l 811 88 l 703 88 l 703 416 b 483 646 703 567 638 646 b 275 517 390 646 305 598 l 272 517 l 272 633 l 53 633 l 53 544 l 160 544 l 160 88 l 53 88 l 53 0 m 264 766 b 329 830 272 799 291 830 b 400 810 345 830 373 820 l 439 796 b 529 775 471 785 499 775 b 663 927 600 775 656 846 l 592 927 b 533 862 588 895 569 862 b 464 880 509 862 487 870 l 422 896 b 335 916 394 907 367 916 b 194 766 253 916 205 839 l 264 766 "},"+":{"x_min":63.96875,"x_max":752.703125,"ha":833,"o":"m 356 403 l 63 403 l 63 298 l 356 298 l 356 0 l 460 0 l 460 298 l 752 298 l 752 403 l 460 403 l 460 702 l 356 702 l 356 403 "},"‚":{"x_min":121,"x_max":257.0625,"ha":386,"o":"m 121 0 l 179 0 l 121 -180 l 199 -180 l 257 0 l 257 138 l 121 138 l 121 0 "},"½":{"x_min":50.578125,"x_max":1063.25,"ha":1158,"o":"m 209 -24 l 291 -24 l 845 932 l 763 932 l 209 -24 m 95 367 l 354 367 l 354 440 l 271 440 l 271 913 l 186 913 b 50 810 134 871 113 852 l 50 734 b 183 833 98 767 148 798 l 183 440 l 95 440 l 95 367 m 671 0 l 1063 0 l 1063 143 l 992 143 l 992 72 l 762 72 b 1053 387 827 137 1059 261 b 872 553 1055 508 967 553 b 680 376 758 553 683 494 l 767 376 b 872 481 769 434 804 481 b 958 387 929 481 958 442 b 671 87 958 301 746 156 l 671 0 "},"Æ":{"x_min":18.171875,"x_max":1279.921875,"ha":1389,"o":"m 694 388 l 372 388 l 629 819 l 632 819 l 694 388 m 18 0 l 329 0 l 329 88 l 192 88 l 318 299 l 706 299 l 738 88 l 603 88 l 603 0 l 1279 0 l 1279 283 l 1176 283 l 1176 88 l 855 88 l 807 413 l 972 413 l 972 283 l 1075 283 l 1075 633 l 972 633 l 972 502 l 795 502 l 749 819 l 1176 819 l 1176 633 l 1279 633 l 1279 907 l 559 907 l 73 88 l 18 88 l 18 0 "},"Ë":{"x_min":54.4375,"x_max":830.28125,"ha":926,"o":"m 54 0 l 830 0 l 830 283 l 726 283 l 726 88 l 310 88 l 310 413 l 509 413 l 509 283 l 612 283 l 612 633 l 509 633 l 509 502 l 310 502 l 310 819 l 726 819 l 726 633 l 830 633 l 830 907 l 54 907 l 54 819 l 190 819 l 190 88 l 54 88 l 54 0 m 261 1025 l 389 1025 l 389 1164 l 261 1164 l 261 1025 m 647 1164 l 519 1164 l 519 1025 l 647 1025 l 647 1164 "},"'":{"x_min":137.46875,"x_max":240.921875,"ha":386,"o":"m 137 588 l 240 588 l 240 907 l 137 907 l 137 588 "},"ª":{"x_min":40.828125,"x_max":479.109375,"ha":501,"o":"m 333 538 l 479 538 l 479 599 l 412 599 l 412 806 b 230 921 412 903 325 921 b 57 807 142 921 61 892 l 136 807 b 239 860 140 849 185 860 b 333 794 308 860 333 831 l 333 770 b 261 777 313 770 291 777 b 40 649 172 777 40 767 b 200 530 40 564 119 530 b 330 619 264 530 317 559 l 333 619 l 333 538 m 119 649 b 279 716 119 716 223 716 b 333 714 298 716 317 714 b 208 591 333 624 274 594 b 119 649 166 591 119 609 "},"ð":{"x_min":50.734375,"x_max":706.78125,"ha":772,"o":"m 170 316 b 381 558 170 446 241 558 b 587 316 521 558 587 460 b 381 74 587 179 521 74 b 170 316 241 74 170 186 m 399 867 b 267 952 356 899 312 925 l 190 893 b 301 820 227 871 267 849 l 177 755 l 226 703 l 362 773 b 546 580 435 719 498 656 l 543 580 b 381 646 495 621 444 646 b 50 316 180 646 50 523 b 381 -13 50 109 180 -13 b 706 316 582 -13 706 123 b 459 820 706 583 585 721 l 593 889 l 544 943 l 399 867 "},"T":{"x_min":55.8125,"x_max":850.703125,"ha":926,"o":"m 246 0 l 660 0 l 660 88 l 513 88 l 513 819 l 747 819 l 747 610 l 850 610 l 850 907 l 55 907 l 55 610 l 159 610 l 159 819 l 393 819 l 393 88 l 246 88 l 246 0 "},"℮":{"x_min":41.796875,"x_max":1061.28125,"ha":1129,"o":"m 1061 441 l 1061 453 b 550 921 1061 712 833 921 b 41 453 270 921 41 712 b 550 -12 41 195 270 -12 b 953 167 715 -12 863 58 l 881 167 b 552 12 801 73 684 12 b 240 151 431 12 320 66 b 229 180 233 159 229 169 l 229 435 b 236 441 229 440 232 441 l 1061 441 m 874 473 b 869 465 874 470 873 465 l 236 465 b 229 473 232 465 229 470 l 229 724 b 241 756 229 737 233 748 b 552 893 322 839 432 893 b 862 760 673 893 782 841 b 874 730 870 752 874 741 l 874 473 "},"Þ":{"x_min":40.828125,"x_max":786.71875,"ha":849,"o":"m 296 638 l 428 638 b 658 456 544 638 658 627 b 428 273 658 287 544 273 l 296 273 l 296 638 m 40 0 l 457 0 l 457 88 l 296 88 l 296 184 l 428 184 b 786 456 616 184 786 224 b 428 727 786 688 616 727 l 296 727 l 296 819 l 457 819 l 457 907 l 40 907 l 40 819 l 176 819 l 176 88 l 40 88 l 40 0 "},"j":{"x_min":1.359375,"x_max":266.78125,"ha":386,"o":"m 266 633 l 40 633 l 40 544 l 155 544 l 155 -20 b 84 -154 155 -136 130 -154 b 1 -142 55 -154 27 -149 l 1 -230 b 98 -242 31 -235 61 -242 b 266 -20 231 -242 266 -183 l 266 633 m 266 907 l 138 907 l 138 777 l 266 777 l 266 907 "},"1":{"x_min":137.46875,"x_max":604.328125,"ha":772,"o":"m 216 0 l 604 0 l 604 89 l 469 89 l 469 908 l 347 908 b 137 733 266 834 234 802 l 137 605 b 349 779 210 661 288 712 l 349 89 l 216 89 l 216 0 "},"›":{"x_min":82,"x_max":297,"ha":386,"o":"m 297 319 l 185 594 l 86 594 l 192 319 l 82 44 l 185 44 l 297 319 "},"ℓ":{"x_min":38.109375,"x_max":627.46875,"ha":674,"o":"m 577 208 b 393 77 543 147 477 77 b 247 266 318 77 249 134 l 247 306 b 526 781 415 465 526 617 b 355 995 526 896 472 995 b 145 678 250 995 145 917 l 145 330 b 38 241 112 299 76 273 l 70 179 b 147 240 96 199 122 222 l 147 224 b 370 -8 155 101 220 -8 b 627 162 476 -8 566 45 l 577 208 m 247 691 b 356 916 247 862 307 916 b 451 778 426 916 451 859 b 247 409 451 655 362 531 l 247 691 "},"ä":{"x_min":55.8125,"x_max":730.921875,"ha":772,"o":"m 510 0 l 730 0 l 730 88 l 622 88 l 622 451 b 345 646 622 614 492 646 b 78 449 212 646 87 595 l 198 449 b 360 558 206 540 276 558 b 510 423 458 558 510 524 l 510 385 l 390 385 b 55 181 240 385 55 374 b 299 -13 55 40 175 -13 b 507 130 398 -13 480 30 l 510 130 l 510 0 m 175 181 b 416 297 175 297 336 297 l 510 297 b 313 74 510 176 450 74 b 175 181 246 74 175 98 m 185 781 l 313 781 l 313 920 l 185 920 l 185 781 m 571 920 l 443 920 l 443 781 l 571 781 l 571 920 "},"<":{"x_min":62.921875,"x_max":754.359375,"ha":833,"o":"m 754 93 l 189 351 l 754 609 l 754 713 l 62 398 l 62 304 l 754 -11 l 754 93 "},"£":{"x_min":42.1875,"x_max":677.828125,"ha":772,"o":"m 47 0 l 668 0 l 668 230 l 564 230 l 564 88 l 272 88 l 272 445 l 443 445 l 443 534 l 272 534 l 272 638 b 432 832 272 749 315 832 b 566 699 513 832 566 789 l 677 699 b 432 921 666 864 589 921 b 160 617 231 921 160 805 l 160 534 l 42 534 l 42 445 l 160 445 l 160 88 l 47 88 l 47 0 "},"¹":{"x_min":73.5,"x_max":377.03125,"ha":501,"o":"m 118 367 l 377 367 l 377 440 l 294 440 l 294 913 l 209 913 b 73 810 157 871 136 852 l 73 734 b 206 833 121 767 171 798 l 206 440 l 118 440 l 118 367 "},"t":{"x_min":24.5,"x_max":491.359375,"ha":540,"o":"m 460 633 l 257 633 l 257 810 l 145 771 l 145 633 l 24 633 l 24 544 l 145 544 l 145 224 b 308 -13 145 95 151 -13 b 491 194 442 -13 491 63 l 396 194 b 325 74 396 141 392 74 b 257 174 266 74 257 122 l 257 544 l 460 544 l 460 633 "},"¬":{"x_min":63.96875,"x_max":752.703125,"ha":833,"o":"m 649 148 l 752 148 l 752 545 l 63 545 l 63 440 l 649 440 l 649 148 "},"ù":{"x_min":28.75,"x_max":786.890625,"ha":849,"o":"m 679 633 l 460 633 l 460 544 l 567 544 l 567 273 b 390 74 567 158 511 74 b 247 240 279 74 247 138 l 247 633 l 28 633 l 28 544 l 136 544 l 136 216 b 362 -13 136 68 201 -13 b 565 109 452 -13 540 31 l 567 109 l 567 0 l 786 0 l 786 88 l 679 88 l 679 633 m 216 927 l 396 727 l 483 727 l 366 927 l 216 927 "},"W":{"x_min":26.265625,"x_max":1339.96875,"ha":1389,"o":"m 1339 907 l 1015 907 l 1015 819 l 1156 819 l 988 122 l 986 122 l 777 907 l 607 907 l 392 122 l 389 122 l 223 819 l 363 819 l 363 907 l 26 907 l 26 819 l 106 819 l 302 0 l 463 0 l 683 805 l 686 805 l 901 0 l 1062 0 l 1259 819 l 1339 819 l 1339 907 "},"ï":{"x_min":-4.078125,"x_max":382.46875,"ha":386,"o":"m 38 0 l 364 0 l 364 88 l 257 88 l 257 633 l 38 633 l 38 544 l 145 544 l 145 88 l 38 88 l 38 0 m -4 781 l 123 781 l 123 920 l -4 920 l -4 781 m 382 920 l 254 920 l 254 781 l 382 781 l 382 920 "},">":{"x_min":62.609375,"x_max":754.0625,"ha":833,"o":"m 62 92 l 62 -12 l 754 303 l 754 397 l 62 712 l 62 608 l 627 350 l 62 92 "},"v":{"x_min":18.0625,"x_max":737.21875,"ha":772,"o":"m 737 633 l 442 633 l 442 544 l 554 544 l 378 106 l 209 544 l 322 544 l 322 633 l 18 633 l 18 544 l 94 544 l 306 0 l 442 0 l 661 544 l 737 544 l 737 633 "},"û":{"x_min":28.671875,"x_max":787.25,"ha":849,"o":"m 679 632 l 460 632 l 460 543 l 568 543 l 568 273 b 390 74 568 157 512 74 b 247 239 279 74 247 138 l 247 632 l 28 632 l 28 543 l 136 543 l 136 216 b 362 -14 136 67 201 -14 b 565 109 452 -14 540 31 l 568 109 l 568 0 l 787 0 l 787 88 l 679 88 l 679 632 m 190 727 l 309 727 l 401 854 l 495 727 l 602 727 l 461 926 l 332 926 l 190 727 "},"Ò":{"x_min":77.578125,"x_max":981.359375,"ha":1081,"o":"m 853 453 b 529 74 853 235 733 74 b 205 453 325 74 205 235 b 529 832 205 709 325 832 b 853 453 733 832 853 709 m 981 453 b 529 921 981 745 826 921 b 77 453 232 921 77 745 b 529 -13 77 162 232 -13 b 981 453 826 -13 981 162 m 349 1171 l 529 971 l 616 971 l 499 1171 l 349 1171 "},"&":{"x_min":77.828125,"x_max":982.5625,"ha":1081,"o":"m 964 534 l 628 534 l 628 445 l 738 445 b 680 256 740 378 717 312 l 454 492 b 640 728 552 535 640 612 b 401 921 640 871 530 921 b 154 728 275 921 154 863 b 280 513 154 630 218 571 b 77 247 169 465 77 380 b 383 -13 77 68 216 -13 b 677 95 489 -13 604 12 l 770 0 l 982 0 l 982 88 l 846 88 l 756 181 b 842 445 809 259 842 352 l 964 445 l 964 534 m 608 166 b 387 74 549 108 469 74 b 205 247 287 74 205 140 b 351 435 205 340 272 399 l 608 166 m 282 728 b 400 832 282 800 336 832 b 521 728 470 832 521 805 b 386 560 521 644 445 602 b 282 728 347 605 282 664 "},"Ð":{"x_min":40.828125,"x_max":920.109375,"ha":1003,"o":"m 296 819 l 368 819 b 792 453 620 819 792 748 b 368 88 792 159 620 88 l 296 88 l 296 428 l 530 428 l 530 517 l 296 517 l 296 819 m 40 0 l 368 0 b 920 455 692 0 920 77 b 368 907 920 832 692 907 l 40 907 l 40 819 l 176 819 l 176 517 l 40 517 l 40 428 l 176 428 l 176 88 l 40 88 l 40 0 "},"I":{"x_min":31.3125,"x_max":423.3125,"ha":463,"o":"m 31 0 l 423 0 l 423 88 l 287 88 l 287 819 l 423 819 l 423 907 l 31 907 l 31 819 l 167 819 l 167 88 l 31 88 l 31 0 "},"G":{"x_min":77.578125,"x_max":1022.203125,"ha":1081,"o":"m 888 907 l 785 907 l 785 794 l 782 794 b 529 921 737 878 619 921 b 77 453 232 921 77 745 b 529 -13 77 162 232 -13 b 786 129 626 -13 735 45 l 789 129 l 789 0 l 901 0 l 901 358 l 1022 358 l 1022 446 l 639 446 l 639 358 l 790 358 b 529 74 792 197 692 74 b 205 453 314 74 205 235 b 529 832 205 709 325 832 b 786 584 686 832 775 742 l 888 584 l 888 907 "},"`":{"x_min":10,"x_max":277,"ha":386,"o":"m 10 927 l 189 727 l 277 727 l 159 927 l 10 927 "},"·":{"x_min":96.640625,"x_max":281.75,"ha":386,"o":"m 96 363 b 189 269 96 312 140 269 b 281 363 240 269 281 312 b 189 458 281 415 240 458 b 96 363 140 458 96 415 "},"r":{"x_min":47.640625,"x_max":510.421875,"ha":540,"o":"m 47 0 l 394 0 l 394 88 l 266 88 l 266 260 b 443 557 266 389 287 557 b 510 550 469 557 492 553 l 510 643 b 460 646 495 645 480 646 b 269 503 366 646 288 599 l 266 503 l 266 632 l 47 632 l 47 544 l 155 544 l 155 88 l 47 88 l 47 0 "},"¿":{"x_min":65.328125,"x_max":630.203125,"ha":694,"o":"m 502 6 b 345 -145 498 -84 443 -145 b 193 -2 250 -145 193 -94 b 281 162 193 73 228 113 b 441 462 387 259 441 297 l 319 462 b 251 281 319 380 315 341 b 65 -20 147 184 65 134 b 336 -242 65 -176 193 -242 b 630 6 491 -242 624 -156 l 502 6 m 443 678 l 315 678 l 315 548 l 443 548 l 443 678 "},"ý":{"x_min":22.78125,"x_max":740.78125,"ha":772,"o":"m 740 633 l 447 633 l 447 544 l 567 544 l 391 119 l 213 544 l 333 544 l 333 633 l 22 633 l 22 544 l 90 544 l 331 0 b 195 -154 293 -74 289 -154 b 130 -148 172 -154 150 -149 l 130 -234 b 216 -242 158 -238 187 -242 b 417 -59 342 -242 372 -167 l 672 544 l 740 544 l 740 633 m 558 927 l 408 927 l 290 727 l 378 727 l 558 927 "},"x":{"x_min":19.875,"x_max":735.46875,"ha":772,"o":"m 19 0 l 320 0 l 320 88 l 209 88 l 369 262 l 524 88 l 422 88 l 422 0 l 735 0 l 735 88 l 666 88 l 452 323 l 657 544 l 725 544 l 725 633 l 436 633 l 436 544 l 539 544 l 387 381 l 241 544 l 332 544 l 332 633 l 32 633 l 32 544 l 100 544 l 308 323 l 90 88 l 19 88 l 19 0 "},"è":{"x_min":65.328125,"x_max":695.53125,"ha":772,"o":"m 695 284 b 396 646 694 487 616 646 b 65 316 194 646 65 523 b 396 -13 65 109 194 -13 b 690 197 526 -13 686 41 l 586 197 b 411 74 579 115 481 74 b 185 284 265 74 185 138 l 695 284 m 185 373 b 387 558 185 490 280 558 b 583 373 509 558 577 488 l 185 373 m 198 927 l 378 727 l 465 727 l 348 927 l 198 927 "},"º":{"x_min":32.671875,"x_max":458.6875,"ha":501,"o":"m 119 728 b 246 860 119 796 164 860 b 371 728 330 860 371 796 b 247 591 371 658 330 591 b 119 728 164 591 119 658 m 32 728 b 247 530 32 603 117 530 b 458 728 378 530 458 603 b 247 921 458 841 378 921 b 32 728 117 921 32 841 "},"Ø":{"x_min":78.015625,"x_max":980.984375,"ha":1081,"o":"m 102 0 l 152 -41 l 245 66 b 529 -13 316 13 411 -13 b 980 454 825 -13 980 162 b 867 794 980 601 944 715 l 964 907 l 914 949 l 819 838 b 529 921 748 892 650 921 b 78 454 233 921 78 745 b 196 109 78 311 117 191 l 102 0 m 275 201 b 205 454 228 269 205 359 b 529 833 205 709 325 833 b 749 758 621 833 696 808 l 275 201 m 793 706 b 853 454 832 646 853 566 b 529 74 853 236 744 74 b 317 151 439 74 369 102 l 793 706 "},"∞":{"x_min":66.6875,"x_max":958.21875,"ha":1047,"o":"m 958 374 b 764 581 958 496 879 581 b 518 422 653 581 585 498 b 274 581 449 506 374 581 b 66 367 155 581 66 491 b 265 158 66 248 157 158 b 514 317 372 158 443 235 b 755 158 605 209 673 158 b 958 373 860 158 958 241 l 958 374 m 273 223 b 134 366 190 223 136 288 b 266 519 134 448 183 519 b 477 365 360 519 419 438 b 276 223 423 306 359 223 l 273 223 m 758 519 b 890 367 833 519 890 462 b 760 223 890 298 842 223 b 552 372 690 223 639 273 b 756 519 598 420 668 519 l 758 519 "},"÷":{"x_min":63.96875,"x_max":752.703125,"ha":833,"o":"m 63 298 l 752 298 l 752 403 l 63 403 l 63 298 m 315 638 b 409 544 315 587 359 544 b 500 638 458 544 500 591 b 408 732 500 689 458 732 b 315 638 359 732 315 691 m 315 63 b 409 -30 315 12 359 -30 b 500 63 458 -30 500 16 b 408 158 500 115 458 158 b 315 63 359 158 315 116 "},"h":{"x_min":53.078125,"x_max":811.21875,"ha":849,"o":"m 53 0 l 379 0 l 379 88 l 272 88 l 272 359 b 449 558 272 471 329 558 b 592 392 558 558 592 494 l 592 88 l 484 88 l 484 0 l 811 0 l 811 88 l 703 88 l 703 416 b 483 646 703 567 638 646 b 274 517 390 646 304 598 l 272 517 l 272 907 l 53 907 l 53 819 l 160 819 l 160 88 l 53 88 l 53 0 "},".":{"x_min":121.140625,"x_max":257.25,"ha":386,"o":"m 121 0 l 257 0 l 257 138 l 121 138 l 121 0 "},";":{"x_min":121,"x_max":257.0625,"ha":386,"o":"m 121 0 l 179 0 l 121 -180 l 199 -180 l 257 0 l 257 138 l 121 138 l 121 0 m 257 633 l 121 633 l 121 494 l 257 494 l 257 633 "},"f":{"x_min":32.671875,"x_max":484.5625,"ha":463,"o":"m 46 0 l 400 0 l 400 88 l 265 88 l 265 544 l 413 544 l 413 633 l 265 633 l 265 701 b 378 832 265 769 279 832 b 484 821 413 832 449 825 l 484 910 b 381 921 449 914 415 921 b 153 701 212 921 153 852 l 153 633 l 32 633 l 32 544 l 153 544 l 153 88 l 46 88 l 46 0 "},"“":{"x_min":181.9375,"x_max":574,"ha":772,"o":"m 574 727 l 515 727 l 574 907 l 495 907 l 437 727 l 437 588 l 574 588 l 574 727 m 318 727 l 259 727 l 318 907 l 239 907 l 181 727 l 181 588 l 318 588 l 318 727 "},"A":{"x_min":20.0625,"x_max":1037.09375,"ha":1081,"o":"m 685 388 l 360 388 l 524 789 l 685 388 m 20 0 l 373 0 l 373 84 l 235 84 l 323 299 l 721 299 l 807 88 l 671 88 l 671 0 l 1037 0 l 1037 88 l 939 88 l 601 907 l 459 907 l 118 88 l 20 88 l 20 0 "},"6":{"x_min":72.140625,"x_max":684.640625,"ha":772,"o":"m 387 -13 b 684 299 574 -13 684 111 b 411 580 684 467 578 580 b 194 419 306 580 219 516 l 191 419 b 235 702 191 491 204 626 b 415 832 269 780 328 832 b 549 692 509 832 549 784 l 669 692 b 431 921 669 841 575 921 b 72 433 140 921 72 680 b 387 -13 72 212 129 -13 m 387 74 b 212 283 273 74 212 172 b 387 491 212 381 280 491 b 556 283 504 491 556 402 b 387 74 556 177 503 74 "},"‘":{"x_min":120.9375,"x_max":257,"ha":386,"o":"m 257 727 l 198 727 l 257 907 l 178 907 l 120 727 l 120 588 l 257 588 l 257 727 "},"O":{"x_min":77.578125,"x_max":981.359375,"ha":1081,"o":"m 853 453 b 529 74 853 235 733 74 b 205 453 325 74 205 235 b 529 832 205 709 325 832 b 853 453 733 832 853 709 m 981 453 b 529 921 981 745 826 921 b 77 453 232 921 77 745 b 529 -13 77 162 232 -13 b 981 453 826 -13 981 162 "},"n":{"x_min":53.078125,"x_max":811.21875,"ha":849,"o":"m 53 0 l 379 0 l 379 88 l 272 88 l 272 359 b 449 558 272 471 329 558 b 592 392 558 558 592 494 l 592 88 l 484 88 l 484 0 l 811 0 l 811 88 l 703 88 l 703 416 b 483 646 703 567 638 646 b 274 517 390 646 304 598 l 272 517 l 272 633 l 53 633 l 53 544 l 160 544 l 160 88 l 53 88 l 53 0 "},"3":{"x_min":72.140625,"x_max":671.03125,"ha":772,"o":"m 328 417 b 543 238 446 417 543 374 b 377 74 543 141 464 74 b 200 251 268 74 204 137 l 72 251 b 377 -13 72 52 200 -13 b 671 238 545 -13 671 63 b 457 456 671 372 575 455 l 457 459 b 661 682 581 471 661 553 b 377 921 661 862 522 921 b 78 662 213 921 81 824 l 206 662 b 377 832 213 763 279 832 b 533 667 476 832 533 767 b 328 506 533 542 432 506 l 328 417 "},"9":{"x_min":72.140625,"x_max":684.640625,"ha":772,"o":"m 368 921 b 72 608 182 921 72 796 b 345 327 72 440 178 327 b 562 488 450 327 537 391 l 564 488 b 521 205 564 416 552 281 b 341 74 487 127 428 74 b 206 215 247 74 206 123 l 87 215 b 325 -13 87 66 181 -13 b 684 474 616 -13 684 227 b 368 921 684 695 627 921 m 353 416 b 181 624 238 416 181 505 b 372 832 181 730 239 832 b 534 624 481 832 534 721 b 353 416 534 521 461 416 "},"l":{"x_min":38.109375,"x_max":364.78125,"ha":386,"o":"m 38 0 l 364 0 l 364 88 l 257 88 l 257 907 l 38 907 l 38 819 l 145 819 l 145 88 l 38 88 l 38 0 "},"¤":{"x_min":35.25,"x_max":723.09375,"ha":772,"o":"m 35 168 l 97 104 l 174 182 b 378 109 230 136 302 109 b 584 183 457 109 529 137 l 660 107 l 723 170 l 646 247 b 716 454 691 305 716 376 b 645 663 716 533 690 606 l 723 741 l 660 805 l 581 727 b 378 798 524 773 454 798 b 174 727 302 798 231 771 l 97 805 l 35 741 l 111 663 b 40 454 66 606 40 533 b 111 245 40 374 66 302 l 35 168 m 144 454 b 378 700 144 602 249 700 b 612 454 507 700 612 602 b 378 207 612 305 507 207 b 144 454 249 207 144 305 "},"∂":{"x_min":54.4375,"x_max":672.390625,"ha":756,"o":"m 136 862 b 317 924 172 891 231 924 b 568 548 454 924 568 773 b 566 490 568 531 568 505 l 564 490 b 340 620 544 528 466 620 b 54 291 187 620 54 492 b 317 -8 54 151 137 -8 b 672 521 549 -8 672 229 b 328 1013 672 848 507 1013 b 99 938 215 1013 142 973 l 136 862 m 326 79 b 160 292 227 79 160 172 b 359 534 160 426 250 534 b 553 391 464 534 534 445 b 328 79 534 231 454 79 l 326 79 "},"4":{"x_min":35.25,"x_max":698.109375,"ha":772,"o":"m 310 0 l 698 0 l 698 88 l 564 88 l 564 234 l 698 234 l 698 323 l 564 323 l 564 907 l 416 907 l 35 367 l 35 234 l 444 234 l 444 88 l 310 88 l 310 0 m 444 323 l 121 323 l 442 782 l 444 782 l 444 323 "},"p":{"x_min":31.3125,"x_max":775.828125,"ha":849,"o":"m 31 -229 l 360 -229 l 360 -140 l 251 -140 l 251 122 l 254 122 b 469 -13 295 31 372 -13 b 775 316 666 -13 775 118 b 469 646 775 519 661 646 b 254 506 367 646 285 588 l 251 506 l 251 633 l 31 633 l 31 544 l 140 544 l 140 -140 l 31 -140 l 31 -229 m 251 316 b 469 558 251 444 318 558 b 656 316 590 558 656 444 b 469 74 656 173 588 74 b 251 316 321 74 251 173 "},"‡":{"x_min":96.640625,"x_max":660.140625,"ha":772,"o":"m 322 0 l 434 0 l 434 212 l 660 212 l 660 309 l 434 309 l 434 594 l 660 594 l 660 691 l 434 691 l 434 907 l 322 907 l 322 691 l 96 691 l 96 594 l 322 594 l 322 309 l 96 309 l 96 212 l 322 212 l 322 0 "},"à":{"x_min":55.8125,"x_max":730.921875,"ha":772,"o":"m 510 0 l 730 0 l 730 88 l 622 88 l 622 451 b 345 646 622 614 492 646 b 78 449 212 646 87 595 l 198 449 b 360 558 206 540 276 558 b 510 423 458 558 510 524 l 510 385 l 390 385 b 55 181 240 385 55 374 b 299 -13 55 40 175 -13 b 507 130 398 -13 480 30 l 510 130 l 510 0 m 175 181 b 416 297 175 297 336 297 l 510 297 b 313 74 510 176 450 74 b 175 181 246 74 175 98 m 198 927 l 378 727 l 465 727 l 348 927 l 198 927 "},"Ü":{"x_min":20.421875,"x_max":960.953125,"ha":1003,"o":"m 960 907 l 592 907 l 592 819 l 725 819 l 725 347 b 494 74 725 184 661 74 b 261 347 300 74 261 222 l 261 819 l 404 819 l 404 907 l 20 907 l 20 819 l 141 819 l 141 347 b 491 -13 141 165 205 -13 b 845 347 725 -13 845 106 l 845 819 l 960 819 l 960 907 m 298 1025 l 426 1025 l 426 1164 l 298 1164 l 298 1025 m 684 1164 l 556 1164 l 556 1025 l 684 1025 l 684 1164 "},"ó":{"x_min":50.359375,"x_max":706.421875,"ha":772,"o":"m 170 316 b 381 558 170 446 240 558 b 586 316 521 558 586 446 b 381 74 586 186 521 74 b 170 316 240 74 170 186 m 50 316 b 381 -13 50 109 179 -13 b 706 316 582 -13 706 109 b 381 646 706 523 582 646 b 50 316 179 646 50 523 m 558 927 l 408 927 l 291 727 l 378 727 l 558 927 "},"√":{"x_min":44,"x_max":774,"ha":783,"o":"m 774 1069 l 695 1069 l 445 20 b 426 -72 438 -11 430 -47 l 425 -72 b 402 17 419 -46 410 -11 l 230 500 l 44 425 l 65 363 l 166 401 l 380 -193 l 473 -193 l 774 1069 "}},"cssFontWeight":"normal","ascender":909,"underlinePosition":-75,"cssFontStyle":"normal","boundingBox":{"yMin":-347.046875,"xMin":-204,"yMax":1222.984375,"xMax":1361.109375},"resolution":1000,"original_font_information":{"postscript_name":"SerifaStd-Roman","version_string":"OTF 1.029;PS 001.003;Core 1.0.33;makeotf.lib1.4.1585","vendor_url":"http://www.adobe.com/type","full_font_name":"SerifaStd-Roman","font_family_name":"Serifa Std 55 Roman","copyright":"Copyright © 1989, 1995, 2002 Adobe Systems Incorporated.  All Rights Reserved.","description":"","trademark":"Serifa is a registered trademark of Bauer Types, S.A.","designer":"Adrian Frutiger","designer_url":"","unique_font_identifier":"1.029;ADBE;SerifaStd-Roman","license_url":"http://www.adobe.com/type/legal.html","license_description":"","manufacturer_name":"","font_sub_family_name":"Regular"},"descender":-481,"familyName":"Serifa Std","lineHeight":1667,"underlineThickness":50});;if(_typeface_js&&_typeface_js.loadFace)_typeface_js.loadFace({"glyphs":{"S":{"x_min":73.609375,"x_max":776.390625,"ha":850,"o":"m 73 0 l 233 0 l 233 75 l 236 75 b 480 -19 295 -7 386 -19 b 776 254 645 -19 776 83 b 262 684 776 629 262 473 b 406 802 262 769 329 802 b 540 759 469 802 512 788 b 586 625 569 730 583 686 l 752 625 l 752 908 l 593 908 l 593 834 l 590 834 b 372 927 534 911 461 927 b 77 663 206 927 77 840 b 584 222 77 292 584 499 b 434 105 584 147 501 105 b 286 151 366 105 318 119 b 240 305 254 185 240 235 l 73 305 l 73 0 "},"¦":{"x_min":84.71875,"x_max":223.609375,"ha":308,"o":"m 84 937 l 84 451 l 223 451 l 223 937 l 84 937 m 84 243 l 84 -243 l 223 -243 l 223 243 l 84 243 "},"/":{"x_min":25,"x_max":515,"ha":540,"o":"m 25 -19 l 163 -19 l 515 927 l 376 927 l 25 -19 "},"y":{"x_min":21.078125,"x_max":826.875,"ha":849,"o":"m 826 650 l 481 650 l 481 525 l 578 525 l 430 193 l 287 525 l 384 525 l 384 650 l 21 650 l 21 525 l 83 525 l 334 -4 b 228 -123 314 -69 280 -123 b 130 -113 187 -123 158 -118 l 130 -245 b 236 -255 165 -251 200 -255 b 455 -106 356 -255 406 -213 l 764 525 l 826 525 l 826 650 "},"≈":{"x_min":53,"x_max":698.828125,"ha":756,"o":"m 641 589 b 516 494 604 530 569 494 b 396 541 472 494 444 513 b 250 591 358 561 315 591 b 53 458 166 591 93 534 l 111 405 b 241 501 146 454 180 501 b 361 456 286 501 322 480 b 516 403 423 420 459 403 b 698 537 593 403 655 458 l 641 589 m 641 344 b 516 248 603 284 569 248 b 394 297 469 248 437 272 b 250 346 358 316 315 346 b 53 212 168 346 93 289 l 111 158 b 241 255 146 208 179 255 b 361 211 286 255 319 236 b 515 157 422 176 459 157 b 698 290 594 157 655 212 l 641 344 "},"Á":{"x_min":25.84375,"x_max":1053.203125,"ha":1081,"o":"m 25 0 l 398 0 l 398 131 l 284 131 l 341 277 l 717 277 l 776 131 l 663 131 l 663 0 l 1053 0 l 1053 131 l 976 131 l 658 908 l 423 908 l 102 131 l 25 131 l 25 0 m 392 409 l 531 758 l 667 409 l 392 409 m 439 994 l 557 994 l 744 1195 l 553 1195 l 439 994 "},"g":{"x_min":38.890625,"x_max":809.71875,"ha":849,"o":"m 809 650 l 551 650 l 551 550 l 548 550 b 336 666 504 618 440 666 b 38 325 126 666 38 516 b 316 10 38 160 141 10 b 534 104 429 10 473 37 l 534 30 b 394 -130 534 -51 476 -130 b 313 -114 365 -130 336 -127 b 273 -39 291 -102 276 -78 l 72 -39 b 375 -255 81 -194 183 -255 b 719 60 636 -255 719 -105 l 719 525 l 809 525 l 809 650 m 230 332 b 390 535 230 435 273 535 b 545 339 505 535 545 439 b 387 141 545 233 501 141 b 230 332 283 141 230 232 "},"²":{"x_min":31.9375,"x_max":468.0625,"ha":500,"o":"m 31 368 l 468 368 l 468 527 l 350 527 l 350 458 l 175 458 b 455 768 243 518 459 652 b 262 927 455 870 372 927 b 37 747 138 927 41 891 l 169 747 b 250 837 172 793 186 837 b 323 772 293 837 323 813 b 200 606 326 720 268 663 b 31 476 137 552 69 504 l 31 368 "},"–":{"x_min":0,"x_max":694.453125,"ha":694,"o":"m 0 318 l 694 318 l 694 429 l 0 429 l 0 318 "},"ë":{"x_min":53.09375,"x_max":716.984375,"ha":772,"o":"m 244 390 b 389 544 244 477 296 544 b 532 390 485 544 532 483 l 244 390 m 716 272 b 708 419 716 318 716 368 b 397 669 680 579 554 669 b 53 333 191 669 53 537 b 401 -19 53 116 173 -19 b 708 201 550 -19 678 44 l 535 201 b 407 105 516 131 471 105 b 244 272 304 105 244 169 l 716 272 m 603 925 l 450 925 l 450 765 l 603 765 l 603 925 m 319 925 l 166 925 l 166 765 l 319 765 l 319 925 "},"ƒ":{"x_min":57,"x_max":715,"ha":772,"o":"m 656 618 l 517 618 l 544 738 b 635 788 555 786 591 788 b 688 781 653 787 671 784 l 715 913 b 602 927 678 922 641 927 b 356 745 465 927 386 887 l 330 618 l 205 618 l 180 486 l 305 486 l 211 -2 b 133 -116 201 -45 190 -109 b 81 -113 115 -116 100 -116 l 57 -245 b 148 -255 87 -248 118 -255 b 383 -81 279 -255 358 -212 l 492 486 l 631 486 l 656 618 "},"Î":{"x_min":50,"x_max":488.890625,"ha":539,"o":"m 59 0 l 479 0 l 479 131 l 365 131 l 365 775 l 479 775 l 479 907 l 59 907 l 59 775 l 173 775 l 173 131 l 59 131 l 59 0 m 50 993 l 175 993 l 270 1111 l 363 993 l 488 993 l 343 1195 l 201 1195 l 50 993 "},"e":{"x_min":54.09375,"x_max":717.984375,"ha":772,"o":"m 245 390 b 390 544 245 477 297 544 b 533 390 486 544 533 483 l 245 390 m 717 272 b 709 419 717 318 717 368 b 398 669 681 579 555 669 b 54 333 192 669 54 537 b 402 -19 54 116 174 -19 b 709 201 551 -19 679 44 l 536 201 b 408 105 517 131 472 105 b 245 272 305 105 245 169 l 717 272 "},"Ã":{"x_min":25.84375,"x_max":1054.671875,"ha":1081,"o":"m 25 0 l 398 0 l 398 131 l 284 131 l 341 277 l 718 277 l 778 131 l 664 131 l 664 0 l 1054 0 l 1054 131 l 978 131 l 659 908 l 423 908 l 102 131 l 25 131 l 25 0 m 392 409 l 531 758 l 668 409 l 392 409 m 361 1002 b 430 1066 373 1034 391 1066 b 526 1040 463 1066 494 1052 b 637 1012 559 1026 594 1012 b 788 1183 728 1012 781 1102 l 718 1183 b 655 1116 711 1154 689 1116 b 554 1144 622 1116 588 1130 b 448 1170 520 1156 485 1170 b 292 1002 352 1170 305 1087 l 361 1002 "},"J":{"x_min":45.828125,"x_max":733.328125,"ha":772,"o":"m 733 908 l 291 908 l 291 776 l 437 776 l 437 244 b 344 112 437 155 397 112 b 237 276 244 112 237 197 l 237 304 l 45 304 l 45 272 b 319 -19 45 97 100 -19 b 629 275 611 -19 629 152 l 629 776 l 733 776 l 733 908 "},"»":{"x_min":133,"x_max":638.875,"ha":772,"o":"m 522 595 l 383 595 l 499 323 l 383 51 l 522 51 l 638 323 l 522 595 m 272 595 l 133 595 l 249 323 l 133 51 l 272 51 l 388 323 l 272 595 "},"∆":{"x_min":36.046875,"x_max":863.828125,"ha":903,"o":"m 36 0 l 863 0 l 863 94 l 549 933 l 358 933 l 36 93 l 36 0 m 202 126 l 372 556 b 444 770 394 626 433 726 l 449 770 b 529 537 465 713 506 605 l 690 126 l 202 126 "},"©":{"x_min":81.9375,"x_max":1029.171875,"ha":1111,"o":"m 213 454 b 555 823 213 672 355 823 b 897 454 754 823 897 672 b 555 84 897 248 765 84 b 213 454 355 84 213 236 m 797 537 b 570 731 779 665 687 731 b 308 455 406 731 308 613 b 573 177 308 298 412 177 b 801 376 686 177 781 248 l 697 376 b 577 281 691 315 643 281 b 433 456 488 281 433 359 b 570 627 433 558 483 627 b 693 537 630 627 681 598 l 797 537 m 81 454 b 555 -19 81 193 294 -19 b 1029 454 816 -19 1029 193 b 555 927 1029 715 816 927 b 81 454 294 927 81 715 "},"≥":{"x_min":68.0625,"x_max":687.5,"ha":756,"o":"m 75 823 l 75 716 l 591 477 l 591 475 l 75 236 l 75 129 l 687 426 l 687 526 l 75 823 m 687 -13 l 687 79 l 68 79 l 68 -13 l 687 -13 "},"ò":{"x_min":39.234375,"x_max":733.671875,"ha":772,"o":"m 230 325 b 386 537 230 427 268 537 b 542 325 504 537 542 427 b 386 112 542 222 504 112 b 230 325 268 112 230 222 m 386 669 b 39 325 182 669 39 541 b 386 -19 39 108 182 -19 b 733 325 590 -19 733 108 b 386 669 733 541 590 669 m 367 937 l 175 937 l 362 736 l 480 736 l 367 937 "},"^":{"x_min":108,"x_max":725,"ha":833,"o":"m 355 907 l 108 399 l 240 399 l 417 769 l 592 399 l 725 399 l 480 907 l 355 907 "},"«":{"x_min":133.125,"x_max":639,"ha":772,"o":"m 249 51 l 388 51 l 272 323 l 388 595 l 249 595 l 133 323 l 249 51 m 500 51 l 639 51 l 522 323 l 639 595 l 500 595 l 383 323 l 500 51 "},"D":{"x_min":38.890625,"x_max":998.609375,"ha":1081,"o":"m 38 0 l 512 0 b 998 455 806 0 998 152 b 534 908 998 894 625 908 l 38 908 l 38 776 l 152 776 l 152 131 l 38 131 l 38 0 m 344 776 l 498 776 b 795 454 701 776 795 650 b 498 131 795 256 695 131 l 344 131 l 344 776 "},"∙":{"x_min":91.671875,"x_max":294.4375,"ha":386,"o":"m 91 361 b 193 259 91 305 137 259 b 294 361 248 259 294 305 b 193 462 294 416 248 462 b 91 361 137 462 91 416 "},"ÿ":{"x_min":21,"x_max":828.625,"ha":849,"o":"m 828 650 l 482 650 l 482 525 l 580 525 l 431 193 l 287 525 l 385 525 l 385 650 l 21 650 l 21 525 l 83 525 l 334 -4 b 227 -123 314 -69 280 -123 b 130 -113 187 -123 158 -118 l 130 -245 b 236 -255 165 -251 200 -255 b 456 -106 357 -255 407 -213 l 766 525 l 828 525 l 828 650 m 643 925 l 490 925 l 490 765 l 643 765 l 643 925 m 360 925 l 207 925 l 207 765 l 360 765 l 360 925 "},"í":{"x_min":48.609375,"x_max":437.5,"ha":463,"o":"m 48 0 l 413 0 l 413 125 l 323 125 l 323 650 l 48 650 l 48 525 l 138 525 l 138 125 l 48 125 l 48 0 m 131 736 l 250 736 l 437 937 l 245 937 l 131 736 "},"w":{"x_min":19.078125,"x_max":1215.15625,"ha":1235,"o":"m 1215 650 l 892 650 l 892 525 l 983 525 l 884 145 l 881 145 l 753 650 l 496 650 l 369 145 l 366 145 l 267 525 l 358 525 l 358 650 l 19 650 l 19 525 l 81 525 l 239 0 l 483 0 l 616 520 l 619 520 l 747 0 l 990 0 l 1152 525 l 1215 525 l 1215 650 "},"$":{"x_min":34.71875,"x_max":737.5,"ha":772,"o":"m 713 908 l 554 908 l 554 834 l 551 834 b 450 911 522 874 488 898 l 450 1036 l 318 1036 l 318 927 b 38 663 159 922 38 834 b 545 222 38 292 545 499 b 395 105 545 147 462 105 b 201 305 258 105 201 162 l 34 305 l 34 0 l 194 0 l 194 75 l 197 75 b 318 -5 229 30 270 5 l 318 -124 l 450 -124 l 450 -19 b 737 254 611 -14 737 86 b 223 684 737 629 223 473 b 368 802 223 769 290 802 b 547 625 493 802 540 747 l 713 625 l 713 908 "},"∫":{"x_min":22.21875,"x_max":495.828125,"ha":521,"o":"m 495 1109 b 413 1126 480 1116 447 1126 b 262 1068 359 1126 301 1108 b 183 776 205 1009 183 926 b 204 127 183 555 204 361 b 163 -79 204 6 188 -45 b 102 -105 148 -97 125 -105 b 43 -91 76 -105 55 -97 l 22 -201 b 125 -223 41 -212 83 -223 b 290 -131 187 -223 254 -197 b 341 129 319 -81 341 1 b 320 759 341 358 320 550 b 359 981 320 872 330 944 b 429 1015 376 1005 402 1015 b 477 1002 447 1015 465 1009 l 495 1109 "},"\\":{"x_min":24.71875,"x_max":515,"ha":540,"o":"m 376 -19 l 515 -19 l 163 927 l 24 927 l 376 -19 "},"Ì":{"x_min":59.71875,"x_max":479.171875,"ha":539,"o":"m 59 0 l 479 0 l 479 131 l 365 131 l 365 776 l 479 776 l 479 908 l 59 908 l 59 776 l 173 776 l 173 131 l 59 131 l 59 0 m 266 1195 l 75 1195 l 262 994 l 380 994 l 266 1195 "},"µ":{"x_min":22.21875,"x_max":826.390625,"ha":849,"o":"m 736 650 l 468 650 l 468 525 l 551 525 l 551 287 b 411 112 551 204 511 112 b 297 243 336 112 297 176 l 297 650 l 22 650 l 22 525 l 112 525 l 112 -235 l 297 -235 l 297 -15 l 344 -19 b 565 110 437 -19 520 26 l 568 110 l 568 0 l 826 0 l 826 125 l 736 125 l 736 650 "},"Ç":{"x_min":61.109375,"x_max":933.328125,"ha":1003,"o":"m 930 907 l 756 907 l 756 801 l 754 804 b 494 926 693 896 602 926 b 61 446 204 926 61 724 b 462 -15 61 203 191 12 l 386 -117 l 412 -152 b 470 -141 430 -144 451 -141 b 530 -194 498 -141 530 -159 b 454 -240 530 -233 490 -240 b 356 -216 422 -240 386 -233 l 327 -273 b 469 -302 372 -294 420 -302 b 641 -183 551 -302 641 -270 b 529 -79 641 -122 593 -79 b 473 -87 509 -79 490 -83 l 470 -84 l 525 -19 l 534 -19 b 933 313 713 -19 929 59 l 748 313 b 541 112 744 194 654 112 b 263 431 348 112 263 256 b 527 795 263 611 323 795 b 756 571 662 795 755 709 l 930 571 l 930 907 "},"’":{"x_min":92.015625,"x_max":294.859375,"ha":386,"o":"m 92 705 l 169 705 l 100 525 l 225 525 l 294 705 l 294 908 l 92 908 l 92 705 "},"-":{"x_min":68.0625,"x_max":394.4375,"ha":463,"o":"m 68 304 l 394 304 l 394 443 l 68 443 l 68 304 "},"Q":{"x_min":61.109375,"x_max":1058.328125,"ha":1081,"o":"m 883 132 b 813 120 855 132 840 132 l 813 122 b 1019 454 975 187 1019 352 b 540 927 1019 727 847 927 b 61 454 233 927 61 727 b 540 -19 61 180 233 -19 b 626 -9 568 -19 597 -13 b 716 0 655 -4 686 0 l 1058 0 l 1058 132 l 883 132 m 263 454 b 540 795 263 648 344 795 b 816 454 736 795 816 648 b 540 112 816 259 736 112 b 263 454 344 112 263 259 "},"M":{"x_min":40.28125,"x_max":1270.828125,"ha":1311,"o":"m 40 0 l 418 0 l 418 131 l 313 131 l 313 776 l 316 776 l 544 0 l 741 0 l 969 776 l 972 776 l 972 131 l 868 131 l 868 0 l 1270 0 l 1270 131 l 1156 131 l 1156 776 l 1270 776 l 1270 908 l 845 908 l 656 234 l 654 234 l 462 908 l 40 908 l 40 776 l 154 776 l 154 131 l 40 131 l 40 0 "},"C":{"x_min":61.109375,"x_max":933.328125,"ha":1003,"o":"m 930 907 l 756 907 l 756 801 l 754 804 b 494 926 693 896 602 926 b 61 446 204 926 61 724 b 534 -20 61 182 215 -20 b 933 313 713 -20 929 58 l 748 313 b 541 111 744 193 654 111 b 263 431 348 111 263 256 b 527 795 263 611 323 795 b 756 571 662 795 755 708 l 930 571 l 930 907 "},"!":{"x_min":166.671875,"x_max":375,"ha":542,"o":"m 375 908 l 166 908 l 208 261 l 333 261 l 375 908 m 169 0 l 372 0 l 372 184 l 169 184 l 169 0 "},"ç":{"x_min":39.234375,"x_max":667.015625,"ha":694,"o":"m 654 650 l 515 650 l 515 575 l 512 575 b 336 669 476 636 408 669 b 39 311 123 669 39 513 b 310 -13 39 182 105 16 l 232 -117 l 258 -152 b 317 -141 276 -144 297 -141 b 376 -194 344 -141 376 -159 b 300 -240 376 -233 336 -240 b 203 -216 268 -240 232 -233 l 173 -273 b 315 -302 218 -294 267 -302 b 487 -183 397 -302 487 -270 b 375 -79 487 -122 439 -79 b 319 -87 355 -79 336 -83 l 317 -84 l 371 -19 l 378 -19 b 667 226 528 -19 653 61 l 500 226 b 379 112 494 155 444 112 b 230 327 258 112 230 222 b 375 544 230 430 260 544 b 476 505 423 544 455 530 b 508 398 497 480 507 444 l 654 398 l 654 650 "},"È":{"x_min":39.28125,"x_max":864.28125,"ha":926,"o":"m 39 0 l 864 0 l 864 297 l 704 297 l 704 131 l 344 131 l 344 404 l 482 404 l 482 281 l 628 281 l 628 652 l 482 652 l 482 529 l 344 529 l 344 776 l 704 776 l 704 636 l 864 636 l 864 908 l 39 908 l 39 776 l 153 776 l 153 131 l 39 131 l 39 0 m 444 1195 l 253 1195 l 440 994 l 558 994 l 444 1195 "},"{":{"x_min":26.390625,"x_max":448.609375,"ha":463,"o":"m 448 1002 l 327 1002 b 156 815 265 1002 156 941 l 156 602 b 26 477 156 509 73 477 l 26 359 b 156 234 73 359 156 327 l 156 20 b 327 -166 156 -105 265 -166 l 448 -166 l 448 -62 l 370 -62 b 295 38 304 -62 295 -5 l 295 252 b 161 416 295 388 200 411 l 161 419 b 295 583 200 425 295 447 l 295 797 b 370 898 295 841 304 898 l 448 898 l 448 1002 "},"X":{"x_min":24.109375,"x_max":980.90625,"ha":1003,"o":"m 24 0 l 420 0 l 420 131 l 301 131 l 491 350 l 679 131 l 561 131 l 561 0 l 980 0 l 980 131 l 918 131 l 621 466 l 901 776 l 964 776 l 964 908 l 580 908 l 580 776 l 685 776 l 512 581 l 344 776 l 449 776 l 449 908 l 40 908 l 40 776 l 103 776 l 382 466 l 86 131 l 24 131 l 24 0 "},"ô":{"x_min":39.21875,"x_max":733.78125,"ha":772,"o":"m 230 324 b 386 537 230 427 268 537 b 542 324 504 537 542 427 b 386 112 542 221 504 112 b 230 324 268 112 230 221 m 386 669 b 39 324 182 669 39 541 b 386 -19 39 108 182 -19 b 733 324 590 -19 733 108 b 386 669 733 541 590 669 m 167 735 l 292 735 l 387 853 l 480 735 l 606 735 l 460 937 l 318 937 l 167 735 "},"¼":{"x_min":69.4375,"x_max":1090.28125,"ha":1160,"o":"m 887 237 l 722 237 l 884 437 l 887 437 l 887 237 m 806 0 l 1086 0 l 1086 90 l 1019 90 l 1019 160 l 1090 160 l 1090 237 l 1019 237 l 1019 548 l 866 548 l 619 242 l 619 160 l 887 160 l 887 90 l 806 90 l 806 0 m 108 367 l 413 367 l 413 458 l 327 458 l 327 919 l 194 919 b 69 838 151 891 111 863 l 69 728 b 195 822 113 756 159 785 l 195 458 l 108 458 l 108 367 m 333 -28 l 438 -28 l 809 935 l 704 935 l 333 -28 "},"#":{"x_min":68,"x_max":704,"ha":772,"o":"m 142 1 l 254 1 l 290 262 l 427 262 l 391 1 l 502 1 l 538 262 l 649 262 l 665 373 l 554 373 l 579 537 l 687 537 l 704 648 l 592 648 l 629 909 l 517 909 l 481 648 l 344 648 l 380 909 l 269 909 l 233 648 l 122 648 l 106 537 l 217 537 l 194 373 l 83 373 l 68 262 l 179 262 l 142 1 m 329 537 l 466 537 l 442 373 l 305 373 l 329 537 "},"Ê":{"x_min":39.265625,"x_max":864.265625,"ha":926,"o":"m 39 0 l 864 0 l 864 296 l 704 296 l 704 131 l 344 131 l 344 403 l 482 403 l 482 281 l 628 281 l 628 652 l 482 652 l 482 528 l 344 528 l 344 775 l 704 775 l 704 635 l 864 635 l 864 907 l 39 907 l 39 775 l 153 775 l 153 131 l 39 131 l 39 0 m 244 993 l 369 993 l 465 1111 l 558 993 l 683 993 l 537 1195 l 396 1195 l 244 993 "},")":{"x_min":37.5,"x_max":369.4375,"ha":463,"o":"m 176 -166 b 369 434 288 13 369 222 b 176 1002 369 637 287 834 l 37 1002 b 209 434 154 843 209 627 b 37 -166 209 208 155 29 l 176 -166 "},"Å":{"x_min":25.84375,"x_max":1053.203125,"ha":1081,"o":"m 25 0 l 397 0 l 397 131 l 284 131 l 341 277 l 717 277 l 776 131 l 663 131 l 663 0 l 1053 0 l 1053 131 l 976 131 l 658 908 l 422 908 l 102 131 l 25 131 l 25 0 m 392 409 l 531 758 l 667 409 l 392 409 m 390 1122 b 539 973 390 1038 457 973 b 687 1122 622 973 687 1038 b 539 1270 687 1204 622 1270 b 390 1122 458 1270 390 1202 m 460 1122 b 539 1201 460 1165 497 1201 b 618 1122 583 1201 618 1165 b 539 1043 618 1079 583 1043 b 460 1122 497 1043 460 1079 "},"ø":{"x_min":19.6875,"x_max":735.234375,"ha":772,"o":"m 682 706 l 594 611 b 386 669 537 650 467 669 b 39 325 182 669 39 542 b 118 96 39 233 68 156 l 19 -9 l 71 -57 l 169 49 b 386 -18 228 4 301 -18 b 733 325 601 -18 733 119 b 650 565 733 425 703 507 l 735 657 l 682 706 m 243 232 b 230 325 235 261 230 293 b 386 538 230 428 268 538 b 487 496 430 538 464 522 l 243 232 m 525 431 b 542 325 536 399 542 361 b 386 112 542 222 504 112 b 276 164 336 112 300 132 l 525 431 "},"â":{"x_min":51.25,"x_max":750.1875,"ha":772,"o":"m 495 0 l 750 0 l 750 124 l 666 124 l 666 384 b 388 669 666 581 598 669 b 72 452 236 669 83 638 l 245 452 b 368 558 251 527 295 558 b 493 458 436 558 493 534 l 493 408 l 427 408 b 51 188 265 408 51 402 b 277 -19 51 49 156 -19 b 493 94 376 -19 436 6 l 495 94 l 495 0 m 493 296 b 323 105 495 185 433 105 b 224 194 266 105 224 133 b 404 296 224 281 309 296 l 493 296 m 166 735 l 291 735 l 387 853 l 480 735 l 605 735 l 459 937 l 318 937 l 166 735 "},"}":{"x_min":13.890625,"x_max":436.109375,"ha":463,"o":"m 13 -166 l 134 -166 b 305 20 197 -166 305 -105 l 305 233 b 436 358 305 326 388 358 l 436 476 b 305 601 388 476 305 508 l 305 815 b 134 1002 305 941 197 1002 l 13 1002 l 13 898 l 91 898 b 166 797 158 898 166 841 l 166 583 b 301 419 166 447 262 425 l 301 416 b 166 252 262 411 166 388 l 166 38 b 91 -62 166 -5 158 -62 l 13 -62 l 13 -166 "},"‰":{"x_min":6.953125,"x_max":1381.9375,"ha":1389,"o":"m 6 700 b 211 472 6 573 70 472 b 415 700 350 472 415 575 b 211 927 415 830 355 927 b 6 700 68 927 6 829 m 125 700 b 211 837 125 754 136 837 b 297 700 290 837 297 758 b 211 562 297 645 286 562 b 125 700 129 562 125 644 m 509 208 b 713 -19 509 81 573 -19 b 918 208 852 -19 918 83 b 713 436 918 338 858 436 b 509 208 570 436 509 337 m 627 208 b 713 345 627 262 638 345 b 800 208 793 345 800 266 b 713 70 800 154 788 70 b 627 208 631 70 627 152 m 973 208 b 1177 -19 973 81 1037 -19 b 1381 208 1316 -19 1381 83 b 1177 436 1381 338 1322 436 b 973 208 1034 436 973 337 m 1091 208 b 1177 345 1091 262 1102 345 b 1263 208 1256 345 1263 266 b 1177 70 1263 154 1252 70 b 1091 208 1095 70 1091 152 m 115 -27 l 233 -27 l 800 936 l 681 936 l 115 -27 "},"Ä":{"x_min":25.84375,"x_max":1054.203125,"ha":1081,"o":"m 25 0 l 398 0 l 398 131 l 284 131 l 341 277 l 718 277 l 777 131 l 663 131 l 663 0 l 1054 0 l 1054 131 l 977 131 l 659 908 l 423 908 l 102 131 l 25 131 l 25 0 m 392 409 l 531 758 l 668 409 l 392 409 m 758 1183 l 605 1183 l 605 1023 l 758 1023 l 758 1183 m 474 1183 l 321 1183 l 321 1023 l 474 1023 l 474 1183 "},"¸":{"x_min":19.21875,"x_max":333.109375,"ha":386,"o":"m 19 -273 b 160 -302 63 -294 112 -302 b 333 -183 242 -302 333 -270 b 220 -79 333 -122 284 -79 b 165 -87 201 -79 181 -83 l 162 -84 l 231 0 l 165 0 l 77 -117 l 103 -152 b 162 -141 122 -144 142 -141 b 222 -194 190 -141 222 -159 b 145 -240 222 -233 181 -240 b 48 -216 113 -240 77 -233 l 19 -273 "},"a":{"x_min":51.390625,"x_max":750,"ha":772,"o":"m 495 0 l 750 0 l 750 125 l 666 125 l 666 384 b 388 669 666 581 598 669 b 72 452 236 669 83 638 l 245 452 b 368 558 251 527 295 558 b 493 458 436 558 493 534 l 493 408 l 427 408 b 51 188 265 408 51 402 b 277 -19 51 50 156 -19 b 493 94 376 -19 436 6 l 495 94 l 495 0 m 493 297 b 323 105 495 186 433 105 b 225 194 266 105 225 133 b 404 297 225 281 309 297 l 493 297 "},"—":{"x_min":0,"x_max":1388.890625,"ha":1389,"o":"m 0 318 l 1388 318 l 1388 429 l 0 429 l 0 318 "},"=":{"x_min":65.28125,"x_max":768.0625,"ha":833,"o":"m 65 433 l 768 433 l 768 572 l 65 572 l 65 433 m 65 130 l 768 130 l 768 269 l 65 269 l 65 130 "},"N":{"x_min":27.78125,"x_max":1054.171875,"ha":1082,"o":"m 27 0 l 429 0 l 429 131 l 315 131 l 315 701 l 318 701 l 687 0 l 940 0 l 940 776 l 1054 776 l 1054 908 l 652 908 l 652 776 l 766 776 l 766 233 l 763 233 l 413 908 l 27 908 l 27 776 l 141 776 l 141 131 l 27 131 l 27 0 "},"ú":{"x_min":21.953125,"x_max":826.109375,"ha":849,"o":"m 735 650 l 467 650 l 467 525 l 551 525 l 551 287 b 410 112 551 204 510 112 b 296 243 335 112 296 176 l 296 650 l 21 650 l 21 525 l 112 525 l 112 236 b 344 -19 112 72 171 -19 b 565 109 437 -19 520 26 l 567 109 l 567 0 l 826 0 l 826 125 l 735 125 l 735 650 m 324 736 l 442 736 l 630 937 l 438 937 l 324 736 "},"⁄":{"x_min":-122,"x_max":354,"ha":232,"o":"m -122 -27 l -16 -27 l 354 936 l 248 936 l -122 -27 "},"2":{"x_min":48.609375,"x_max":704.171875,"ha":772,"o":"m 48 0 l 704 0 l 704 250 l 537 250 l 537 131 l 254 131 b 690 659 363 244 695 469 b 398 927 690 838 566 927 b 59 631 208 927 65 873 l 251 631 b 380 795 255 716 280 795 b 498 681 448 795 498 750 b 306 401 501 590 412 494 b 48 176 211 311 106 229 l 48 0 "},"ü":{"x_min":22.21875,"x_max":826.390625,"ha":849,"o":"m 736 650 l 468 650 l 468 525 l 551 525 l 551 287 b 411 112 551 204 511 112 b 297 243 336 112 297 176 l 297 650 l 22 650 l 22 525 l 112 525 l 112 236 b 344 -19 112 72 172 -19 b 565 109 437 -19 520 26 l 568 109 l 568 0 l 826 0 l 826 125 l 736 125 l 736 650 m 643 925 l 490 925 l 490 765 l 643 765 l 643 925 m 359 925 l 206 925 l 206 765 l 359 765 l 359 925 "},"¯":{"x_min":-41.671875,"x_max":427.78125,"ha":386,"o":"m -41 801 l 427 801 l 427 891 l -41 891 l -41 801 "},"Z":{"x_min":61.109375,"x_max":866.671875,"ha":928,"o":"m 61 0 l 866 0 l 866 315 l 706 315 l 706 131 l 284 131 l 851 741 l 851 908 l 76 908 l 76 609 l 236 609 l 236 776 l 620 776 l 61 169 l 61 0 "},"u":{"x_min":22.21875,"x_max":826.390625,"ha":849,"o":"m 736 650 l 468 650 l 468 525 l 551 525 l 551 287 b 411 112 551 204 511 112 b 297 243 336 112 297 176 l 297 650 l 22 650 l 22 525 l 112 525 l 112 236 b 344 -19 112 72 172 -19 b 565 109 437 -19 520 26 l 568 109 l 568 0 l 826 0 l 826 125 l 736 125 l 736 650 "},"Ó":{"x_min":61.109375,"x_max":1019.453125,"ha":1081,"o":"m 540 -19 b 1019 454 847 -19 1019 180 b 540 927 1019 727 847 927 b 61 454 233 927 61 727 b 540 -19 61 180 233 -19 m 540 112 b 263 454 344 112 263 259 b 540 795 263 648 344 795 b 816 454 736 795 816 648 b 540 112 816 259 736 112 m 440 994 l 558 994 l 745 1195 l 554 1195 l 440 994 "},"k":{"x_min":34.5,"x_max":817.828125,"ha":850,"o":"m 34 0 l 385 0 l 385 125 l 309 125 l 309 212 l 426 304 l 541 125 l 465 125 l 465 0 l 817 0 l 817 125 l 741 125 l 555 408 l 712 525 l 781 525 l 781 650 l 413 650 l 413 525 l 501 525 l 501 522 l 309 373 l 309 927 l 34 927 l 34 802 l 124 802 l 124 125 l 34 125 l 34 0 "},"Ù":{"x_min":22.0625,"x_max":980.875,"ha":1003,"o":"m 980 908 l 584 908 l 584 776 l 710 776 l 710 379 b 509 112 710 308 730 112 b 310 379 302 112 310 301 l 310 776 l 436 776 l 436 908 l 22 908 l 22 776 l 119 776 l 119 315 b 509 -19 119 202 170 -19 b 883 315 729 -19 883 130 l 883 776 l 980 776 l 980 908 m 482 1195 l 290 1195 l 477 994 l 596 994 l 482 1195 "},"€":{"x_min":20.71875,"x_max":729.0625,"ha":772,"o":"m 479 405 l 290 405 b 288 472 288 427 288 451 l 290 491 l 495 491 l 517 612 l 299 612 b 442 792 322 731 372 792 b 522 747 473 792 501 776 b 559 619 544 716 558 673 l 727 619 l 727 908 l 561 908 l 561 860 b 442 926 538 903 483 926 b 124 612 269 926 159 808 l 44 612 l 20 491 l 112 491 b 111 453 112 480 111 466 b 112 405 111 437 111 422 l 44 405 l 20 287 l 126 287 b 434 -18 158 108 254 -18 b 729 295 616 -18 729 101 l 559 295 b 434 122 559 188 509 122 b 301 287 352 122 311 194 l 456 287 l 479 405 "},"¢":{"x_min":72.21875,"x_max":700,"ha":772,"o":"m 687 650 l 548 650 l 548 575 l 545 575 b 450 652 523 612 490 638 l 450 775 l 338 775 l 338 669 b 72 311 148 654 72 504 b 338 -16 72 181 138 18 l 338 -125 l 450 -125 l 450 -19 b 700 226 581 -4 687 75 l 533 226 b 412 112 527 155 477 112 b 263 327 291 112 263 222 b 408 544 263 430 293 544 b 541 398 504 544 537 490 l 687 398 l 687 650 "},"Ω":{"x_min":55.5625,"x_max":929.171875,"ha":986,"o":"m 247 126 l 55 126 l 55 0 l 416 0 l 416 94 b 236 470 322 147 236 283 b 495 797 236 658 340 797 b 747 477 658 797 747 640 b 568 94 747 270 661 151 l 568 0 l 929 0 l 929 126 l 733 126 l 733 130 b 909 509 822 202 909 334 b 495 926 909 712 759 926 b 73 502 247 926 73 737 b 247 130 73 330 161 204 l 247 126 "},"ß":{"x_min":41.671875,"x_max":805.5625,"ha":849,"o":"m 41 0 l 393 0 l 393 125 l 316 125 l 316 675 b 438 822 316 776 365 822 b 562 701 513 822 562 783 b 409 570 562 602 501 568 l 409 431 b 613 268 530 438 613 398 b 458 125 613 177 547 119 l 458 0 b 805 269 651 -12 805 52 b 552 508 805 423 693 495 l 552 511 b 754 706 656 525 754 584 b 462 947 754 877 612 947 b 131 691 284 947 131 879 l 131 125 l 41 125 l 41 0 "},"é":{"x_min":53.921875,"x_max":717.984375,"ha":772,"o":"m 245 390 b 390 544 245 477 296 544 b 533 390 485 544 533 483 l 245 390 m 717 272 b 709 419 717 318 717 368 b 398 669 681 579 555 669 b 53 333 192 669 53 537 b 402 -19 53 116 174 -19 b 709 201 551 -19 679 44 l 535 201 b 408 105 517 131 471 105 b 245 272 305 105 245 169 l 717 272 m 285 736 l 403 736 l 591 937 l 399 937 l 285 736 "},"s":{"x_min":62.5,"x_max":631.9375,"ha":694,"o":"m 65 0 l 204 0 l 204 69 l 206 69 b 400 -19 244 16 302 -19 b 631 188 540 -19 631 73 b 247 475 631 475 247 343 b 347 544 247 536 309 544 b 466 434 415 544 466 511 l 612 434 l 612 650 l 473 650 l 473 582 l 470 582 b 295 669 427 648 370 669 b 62 469 177 669 62 605 b 447 180 62 180 447 316 b 350 105 447 119 390 105 b 211 229 275 105 211 147 l 65 229 l 65 0 "},"B":{"x_min":38.890625,"x_max":862.5,"ha":926,"o":"m 344 404 l 473 404 b 670 273 570 404 670 404 b 472 131 670 151 590 131 l 344 131 l 344 404 m 344 776 l 459 776 b 643 659 544 776 643 769 b 454 529 643 547 545 529 l 344 529 l 344 776 m 38 0 l 466 0 b 862 265 609 0 862 -8 b 648 476 862 386 765 472 l 648 479 b 834 686 772 494 834 565 b 475 908 834 904 640 908 l 38 908 l 38 776 l 152 776 l 152 131 l 38 131 l 38 0 "},"…":{"x_min":130.5625,"x_max":1258.328125,"ha":1389,"o":"m 130 0 l 333 0 l 333 202 l 130 202 l 130 0 m 593 0 l 795 0 l 795 202 l 593 202 l 593 0 m 1055 0 l 1258 0 l 1258 202 l 1055 202 l 1055 0 "},"?":{"x_min":48.609375,"x_max":645.828125,"ha":694,"o":"m 247 261 l 420 261 l 420 291 b 533 484 420 381 476 431 b 645 693 588 537 645 591 b 356 927 645 850 506 927 b 48 650 158 927 48 850 l 240 650 b 352 802 244 741 258 802 b 454 708 415 802 454 766 b 338 525 454 634 415 602 b 247 309 254 437 247 391 l 247 261 m 231 0 l 434 0 l 434 184 l 231 184 l 231 0 "},"H":{"x_min":38.890625,"x_max":1041.671875,"ha":1081,"o":"m 38 0 l 476 0 l 476 131 l 344 131 l 344 397 l 736 397 l 736 131 l 604 131 l 604 0 l 1041 0 l 1041 131 l 927 131 l 927 776 l 1041 776 l 1041 908 l 604 908 l 604 776 l 736 776 l 736 529 l 344 529 l 344 776 l 476 776 l 476 908 l 38 908 l 38 776 l 152 776 l 152 131 l 38 131 l 38 0 "},"î":{"x_min":12.5,"x_max":451.390625,"ha":463,"o":"m 48 0 l 413 0 l 413 124 l 323 124 l 323 649 l 48 649 l 48 524 l 138 524 l 138 124 l 48 124 l 48 0 m 12 735 l 137 735 l 233 853 l 326 735 l 451 735 l 305 937 l 163 937 l 12 735 "},"c":{"x_min":38.890625,"x_max":666.671875,"ha":694,"o":"m 654 650 l 515 650 l 515 575 l 512 575 b 336 669 476 636 408 669 b 38 311 123 669 38 513 b 377 -19 38 168 120 -19 b 666 226 527 -19 652 61 l 500 226 b 379 112 494 155 444 112 b 230 327 258 112 230 222 b 375 544 230 430 259 544 b 476 505 423 544 455 530 b 508 398 497 480 506 444 l 654 398 l 654 650 "},"¶":{"x_min":59.71875,"x_max":787.5,"ha":861,"o":"m 787 908 l 393 908 b 59 655 200 908 59 850 b 363 412 59 508 170 412 l 363 -166 l 502 -166 l 502 797 l 648 797 l 648 -166 l 787 -166 l 787 908 "},"−":{"x_min":65.28125,"x_max":768.0625,"ha":833,"o":"m 65 281 l 768 281 l 768 420 l 65 420 l 65 281 "},"≠":{"x_min":65.09375,"x_max":688.921875,"ha":756,"o":"m 551 675 l 477 706 l 409 554 l 65 554 l 65 462 l 373 462 l 291 279 l 65 279 l 65 186 l 254 186 l 198 62 l 270 31 l 340 186 l 688 186 l 688 279 l 377 279 l 459 462 l 688 462 l 688 554 l 495 554 l 551 675 "},"•":{"x_min":119.4375,"x_max":573.609375,"ha":694,"o":"m 119 455 b 345 227 119 336 227 227 b 573 455 465 227 573 337 b 345 681 573 573 465 681 b 119 455 226 681 119 573 "},"¥":{"x_min":3.203125,"x_max":767.890625,"ha":772,"o":"m 447 908 l 447 776 l 541 776 l 407 513 l 384 513 l 250 776 l 344 776 l 344 908 l 3 908 l 3 776 l 65 776 l 200 526 l 65 526 l 65 415 l 260 415 l 293 352 l 293 326 l 65 326 l 65 215 l 293 215 l 293 131 l 161 131 l 161 0 l 609 0 l 609 131 l 477 131 l 477 215 l 705 215 l 705 326 l 477 326 l 477 352 l 511 415 l 705 415 l 705 526 l 570 526 l 705 776 l 767 776 l 767 908 l 447 908 "},"(":{"x_min":93.0625,"x_max":425,"ha":463,"o":"m 286 1002 b 93 401 173 822 93 613 b 286 -166 93 198 175 1 l 425 -166 b 252 401 308 -6 252 208 b 425 1002 252 627 306 806 l 286 1002 "},"U":{"x_min":22.546875,"x_max":980.875,"ha":1003,"o":"m 980 908 l 585 908 l 585 776 l 710 776 l 710 379 b 510 112 710 308 730 112 b 311 379 303 112 311 301 l 311 776 l 436 776 l 436 908 l 22 908 l 22 776 l 119 776 l 119 315 b 510 -19 119 202 171 -19 b 883 315 729 -19 883 130 l 883 776 l 980 776 l 980 908 "},"◊":{"x_min":68,"x_max":736,"ha":804,"o":"m 736 455 l 467 976 l 341 976 l 68 455 l 336 -65 l 462 -65 l 736 455 m 595 451 l 427 126 b 404 58 420 111 409 76 l 398 58 b 376 127 395 75 386 102 l 208 458 l 373 777 b 399 851 384 802 392 829 l 404 851 b 429 777 408 830 419 800 l 595 451 "},"Ñ":{"x_min":26.15625,"x_max":1052.546875,"ha":1082,"o":"m 26 0 l 427 0 l 427 131 l 313 131 l 313 701 l 316 701 l 685 0 l 938 0 l 938 776 l 1052 776 l 1052 908 l 651 908 l 651 776 l 765 776 l 765 233 l 762 233 l 412 908 l 26 908 l 26 776 l 140 776 l 140 131 l 26 131 l 26 0 m 362 1002 b 430 1066 373 1034 391 1066 b 526 1040 463 1066 494 1052 b 637 1012 559 1026 594 1012 b 787 1183 727 1012 780 1102 l 717 1183 b 655 1116 710 1154 688 1116 b 553 1144 622 1116 588 1130 b 448 1170 520 1156 485 1170 b 292 1002 352 1170 305 1087 l 362 1002 "},"F":{"x_min":38.890625,"x_max":863.890625,"ha":926,"o":"m 38 908 l 38 776 l 152 776 l 152 131 l 38 131 l 38 0 l 479 0 l 479 131 l 344 131 l 344 386 l 472 386 l 472 261 l 618 261 l 618 631 l 472 631 l 472 511 l 344 511 l 344 776 l 704 776 l 704 604 l 863 604 l 863 908 l 38 908 "},"­":{"x_min":68.0625,"x_max":394.4375,"ha":463,"o":"m 68 304 l 394 304 l 394 443 l 68 443 l 68 304 "},":":{"x_min":91.671875,"x_max":294.4375,"ha":386,"o":"m 294 0 l 294 202 l 91 202 l 91 0 l 294 0 m 294 650 l 91 650 l 91 447 l 294 447 l 294 650 "},"Û":{"x_min":22.0625,"x_max":980.875,"ha":1003,"o":"m 980 907 l 584 907 l 584 775 l 710 775 l 710 378 b 509 111 710 307 730 111 b 310 378 302 111 310 300 l 310 775 l 436 775 l 436 907 l 22 907 l 22 775 l 119 775 l 119 314 b 509 -20 119 202 170 -20 b 883 314 729 -20 883 129 l 883 775 l 980 775 l 980 907 m 281 993 l 406 993 l 502 1111 l 596 993 l 721 993 l 575 1195 l 433 1195 l 281 993 "},"*":{"x_min":145.65625,"x_max":626.171875,"ha":772,"o":"m 304 650 l 195 533 l 299 455 l 384 590 l 469 455 l 574 533 l 466 650 l 626 687 l 584 812 l 438 748 l 455 908 l 322 908 l 335 748 l 184 812 l 145 687 l 304 650 "},"†":{"x_min":94.4375,"x_max":677.78125,"ha":772,"o":"m 302 0 l 469 0 l 469 547 l 677 547 l 677 679 l 469 679 l 469 908 l 302 908 l 302 679 l 94 679 l 94 547 l 302 547 l 302 0 "},"∕":{"x_min":-122,"x_max":354,"ha":232,"o":"m -122 -27 l -16 -27 l 354 936 l 248 936 l -122 -27 "},"°":{"x_min":68.0625,"x_max":487.5,"ha":556,"o":"m 151 718 b 277 844 151 787 208 844 b 404 718 347 844 404 787 b 277 591 404 648 347 591 b 151 718 208 591 151 648 m 68 718 b 277 508 68 602 162 508 b 487 718 393 508 487 602 b 277 927 487 833 393 927 b 68 718 162 927 68 833 "},"V":{"x_min":25.796875,"x_max":1054.84375,"ha":1081,"o":"m 1054 908 l 651 908 l 651 776 l 777 776 l 547 188 l 316 776 l 441 776 l 441 908 l 25 908 l 25 776 l 109 776 l 426 0 l 650 0 l 971 776 l 1054 776 l 1054 908 "},"å":{"x_min":51.390625,"x_max":750,"ha":772,"o":"m 495 0 l 750 0 l 750 125 l 666 125 l 666 384 b 388 669 666 581 598 669 b 72 452 236 669 83 638 l 245 452 b 368 558 251 527 295 558 b 493 458 436 558 493 534 l 493 408 l 427 408 b 51 188 265 408 51 402 b 277 -19 51 50 156 -19 b 493 94 376 -19 436 6 l 495 94 l 495 0 m 493 297 b 323 105 495 186 433 105 b 225 194 266 105 225 133 b 404 297 225 281 309 297 l 493 297 m 237 863 b 386 715 237 780 304 715 b 534 863 469 715 534 780 b 386 1012 534 945 469 1012 b 237 863 305 1012 237 944 m 306 863 b 386 943 306 906 344 943 b 465 863 430 943 465 906 b 386 784 465 820 430 784 b 306 863 344 784 306 820 "}," ":{"x_min":0,"x_max":0,"ha":386},"0":{"x_min":51.390625,"x_max":720.828125,"ha":772,"o":"m 243 454 b 386 795 243 638 261 795 b 529 454 511 795 529 638 b 386 112 529 269 511 112 b 243 454 261 112 243 269 m 51 454 b 386 -19 51 227 118 -19 b 720 454 654 -19 720 227 b 386 927 720 680 654 927 b 51 454 118 927 51 680 "},"”":{"x_min":111.015625,"x_max":660.859375,"ha":772,"o":"m 111 705 l 188 705 l 119 525 l 244 525 l 313 705 l 313 908 l 111 908 l 111 705 m 458 705 l 535 705 l 466 525 l 591 525 l 660 705 l 660 908 l 458 908 l 458 705 "},"¾":{"x_min":32.390625,"x_max":1127.296875,"ha":1158,"o":"m 924 237 l 759 237 l 921 437 l 924 437 l 924 237 m 843 0 l 1123 0 l 1123 90 l 1056 90 l 1056 161 l 1127 161 l 1127 237 l 1056 237 l 1056 548 l 903 548 l 656 243 l 656 161 l 924 161 l 924 90 l 843 90 l 843 0 m 204 601 b 336 525 256 601 336 597 b 246 450 336 477 299 450 b 164 531 187 450 162 481 l 32 531 b 245 359 32 401 131 359 b 468 526 373 359 468 415 b 336 645 468 591 413 641 l 336 648 l 335 648 b 463 772 414 655 463 700 b 256 927 463 883 366 927 b 39 758 143 927 39 873 l 171 758 b 249 837 172 802 193 837 b 331 770 301 837 331 818 b 204 691 331 701 269 691 l 204 601 m 357 -27 l 463 -27 l 834 936 l 728 936 l 357 -27 "},"@":{"x_min":95.703125,"x_max":1015.125,"ha":1111,"o":"m 572 587 b 670 475 630 587 670 543 b 524 296 670 386 612 296 b 416 412 454 296 416 342 b 572 587 416 497 476 587 m 726 687 l 709 621 b 559 706 673 679 622 706 b 291 393 398 706 291 550 b 492 178 291 276 384 178 b 624 244 541 178 591 208 l 627 244 b 697 178 627 200 660 178 b 1015 543 783 178 1015 272 b 576 928 1015 776 802 928 b 95 454 313 928 95 724 b 584 -18 95 179 315 -18 b 963 181 740 -18 876 54 l 852 181 b 591 78 787 117 694 78 b 213 451 369 78 213 225 b 573 831 213 669 354 831 b 917 512 770 831 917 719 b 773 289 917 372 842 289 b 763 367 744 289 755 339 l 834 687 l 726 687 "},"ö":{"x_min":38.890625,"x_max":733.328125,"ha":772,"o":"m 230 325 b 386 537 230 427 268 537 b 541 325 504 537 541 427 b 386 112 541 222 504 112 b 230 325 268 112 230 222 m 386 669 b 38 325 181 669 38 541 b 386 -19 38 108 181 -19 b 733 325 590 -19 733 108 b 386 669 733 541 590 669 m 604 925 l 451 925 l 451 765 l 604 765 l 604 925 m 320 925 l 168 925 l 168 765 l 320 765 l 320 925 "},"i":{"x_min":48.609375,"x_max":413.890625,"ha":463,"o":"m 48 0 l 413 0 l 413 125 l 323 125 l 323 650 l 48 650 l 48 525 l 138 525 l 138 125 l 48 125 l 48 0 m 323 927 l 131 927 l 131 743 l 323 743 l 323 927 "},"≤":{"x_min":66.671875,"x_max":688.890625,"ha":756,"o":"m 684 129 l 684 236 l 166 476 l 166 479 l 684 716 l 684 823 l 72 526 l 72 426 l 684 129 m 688 -13 l 688 79 l 66 79 l 66 -13 l 688 -13 "},"Õ":{"x_min":60.609375,"x_max":1018.9375,"ha":1081,"o":"m 539 -19 b 1018 454 846 -19 1018 180 b 539 927 1018 727 846 927 b 60 454 232 927 60 727 b 539 -19 60 180 232 -19 m 539 112 b 263 454 343 112 263 259 b 539 795 263 648 343 795 b 816 454 735 795 816 648 b 539 112 816 259 735 112 m 362 1002 b 430 1066 373 1034 391 1066 b 525 1040 463 1066 493 1052 b 637 1012 559 1026 593 1012 b 787 1183 727 1012 780 1102 l 717 1183 b 655 1116 710 1154 688 1116 b 553 1144 621 1116 588 1130 b 448 1170 520 1156 485 1170 b 292 1002 352 1170 305 1087 l 362 1002 "},"þ":{"x_min":38.890625,"x_max":809.71875,"ha":849,"o":"m 480 112 b 302 334 341 112 302 197 b 463 537 302 441 350 537 b 618 325 581 537 618 431 b 480 112 618 184 559 112 m 38 -236 l 413 -236 l 413 -111 l 313 -111 l 313 90 l 316 90 b 529 -19 376 4 431 -19 b 809 315 718 -19 809 140 b 518 669 809 554 687 669 b 316 562 422 669 352 629 l 313 562 l 313 927 l 38 927 l 38 802 l 129 802 l 129 -111 l 38 -111 l 38 -236 "},"]":{"x_min":56.9375,"x_max":348.609375,"ha":463,"o":"m 56 -166 l 348 -166 l 348 1002 l 56 1002 l 56 898 l 202 898 l 202 -62 l 56 -62 l 56 -166 "},"m":{"x_min":34.71875,"x_max":1277.78125,"ha":1313,"o":"m 34 0 l 393 0 l 393 124 l 309 124 l 309 362 b 450 537 309 445 350 537 b 563 406 525 537 563 473 l 563 124 l 480 124 l 480 0 l 831 0 l 831 124 l 748 124 l 748 368 b 891 537 748 456 791 537 b 1002 406 975 537 1002 477 l 1002 124 l 919 124 l 919 0 l 1277 0 l 1277 124 l 1187 124 l 1187 457 b 943 668 1183 609 1086 668 b 733 548 851 668 777 630 b 516 668 684 639 616 668 b 295 539 423 668 340 623 l 293 539 l 293 649 l 34 649 l 34 524 l 125 524 l 125 124 l 34 124 l 34 0 "},"8":{"x_min":61.109375,"x_max":711.109375,"ha":772,"o":"m 252 665 b 387 802 252 756 297 802 b 522 665 475 802 522 755 b 387 530 522 577 476 530 b 252 665 298 530 252 576 m 79 665 b 254 470 79 551 145 490 l 254 468 b 61 254 147 458 61 365 b 387 -19 61 40 194 -19 b 711 254 577 -19 711 51 b 516 468 711 377 631 447 l 516 469 b 695 665 625 488 695 550 b 387 927 695 848 556 927 b 79 665 218 927 79 848 m 245 256 b 387 405 245 347 294 405 b 526 256 479 405 526 345 b 387 105 526 168 477 105 b 245 256 294 105 245 163 "},"R":{"x_min":38.890625,"x_max":970.828125,"ha":1003,"o":"m 38 0 l 469 0 l 469 131 l 355 131 l 355 376 l 498 376 b 644 252 593 376 623 325 l 719 0 l 970 0 l 970 131 l 880 131 l 847 241 b 662 437 818 337 783 430 l 662 440 b 870 651 781 450 870 527 b 558 908 870 883 720 908 l 38 908 l 38 776 l 163 776 l 163 131 l 38 131 l 38 0 m 355 776 l 530 776 b 686 645 611 776 686 754 b 502 508 686 530 583 508 l 355 508 l 355 776 "},"á":{"x_min":51.546875,"x_max":750.15625,"ha":772,"o":"m 496 0 l 750 0 l 750 125 l 666 125 l 666 384 b 389 669 666 581 598 669 b 72 452 236 669 83 638 l 246 452 b 368 558 251 527 296 558 b 493 458 436 558 493 534 l 493 408 l 427 408 b 51 188 265 408 51 402 b 277 -19 51 50 157 -19 b 493 94 376 -19 436 6 l 496 94 l 496 0 m 493 297 b 323 105 496 186 433 105 b 225 194 266 105 225 133 b 404 297 225 281 309 297 l 493 297 m 286 736 l 404 736 l 591 937 l 400 937 l 286 736 "},"×":{"x_min":63,"x_max":710,"ha":772,"o":"m 63 577 l 289 351 l 63 124 l 161 26 l 386 252 l 612 26 l 710 124 l 485 351 l 710 577 l 612 676 l 386 448 l 161 676 l 63 577 "},"o":{"x_min":38.890625,"x_max":733.328125,"ha":772,"o":"m 230 325 b 386 537 230 427 268 537 b 541 325 504 537 541 427 b 386 112 541 222 504 112 b 230 325 268 112 230 222 m 386 669 b 38 325 181 669 38 541 b 386 -19 38 108 181 -19 b 733 325 590 -19 733 108 b 386 669 733 541 590 669 "},"5":{"x_min":80.53125,"x_max":722.21875,"ha":772,"o":"m 677 908 l 87 908 l 87 356 l 272 356 b 394 480 272 426 323 480 b 530 294 498 480 530 386 b 397 112 530 200 497 112 b 272 236 313 112 277 155 l 80 236 b 383 -19 77 61 223 -19 b 722 298 648 -19 722 145 b 459 612 722 463 638 612 b 275 529 384 612 319 587 l 272 529 l 272 776 l 677 776 l 677 908 "},"õ":{"x_min":38.5625,"x_max":733,"ha":772,"o":"m 230 325 b 385 537 230 427 267 537 b 541 325 503 537 541 427 b 385 112 541 222 503 112 b 230 325 267 112 230 222 m 385 669 b 38 325 181 669 38 541 b 385 -19 38 108 181 -19 b 733 325 589 -19 733 108 b 385 669 733 541 589 669 m 208 744 b 276 808 219 776 237 808 b 371 781 309 808 339 794 b 483 754 405 768 439 754 b 633 925 573 754 626 844 l 563 925 b 501 858 556 895 534 858 b 399 886 467 858 434 872 b 294 912 366 898 331 912 b 138 744 198 912 151 829 l 208 744 "},"7":{"x_min":64.25,"x_max":715.640625,"ha":772,"o":"m 715 908 l 64 908 l 64 616 l 230 616 l 230 776 l 544 776 b 186 0 405 526 292 263 l 389 0 b 715 755 482 268 580 504 l 715 908 "},"K":{"x_min":38.65625,"x_max":965.03125,"ha":1004,"o":"m 38 0 l 458 0 l 458 131 l 344 131 l 344 463 l 642 131 l 538 131 l 538 0 l 965 0 l 965 131 l 881 131 l 565 481 l 856 776 l 940 776 l 940 908 l 546 908 l 546 776 l 630 776 l 344 488 l 344 776 l 458 776 l 458 908 l 38 908 l 38 776 l 152 776 l 152 131 l 38 131 l 38 0 "},",":{"x_min":92.015625,"x_max":294.859375,"ha":386,"o":"m 92 0 l 169 0 l 100 -180 l 225 -180 l 294 0 l 294 202 l 92 202 l 92 0 "},"d":{"x_min":38.890625,"x_max":809.71875,"ha":849,"o":"m 719 927 l 444 927 l 444 802 l 534 802 l 534 554 l 531 554 b 330 669 501 616 440 669 b 38 315 161 669 38 554 b 319 -19 38 140 130 -19 b 550 108 434 -19 491 16 l 552 108 l 552 0 l 809 0 l 809 125 l 719 125 l 719 927 m 368 112 b 230 325 288 112 230 184 b 384 537 230 431 266 537 b 545 334 498 537 545 441 b 368 112 545 197 506 112 "},"¨":{"x_min":-25,"x_max":411.109375,"ha":386,"o":"m 411 925 l 258 925 l 258 765 l 411 765 l 411 925 m 127 925 l -25 925 l -25 765 l 127 765 l 127 925 "},"Ô":{"x_min":61.109375,"x_max":1019.453125,"ha":1081,"o":"m 540 -20 b 1019 453 847 -20 1019 179 b 540 927 1019 727 847 927 b 61 453 233 927 61 727 b 540 -20 61 179 233 -20 m 540 111 b 263 453 344 111 263 259 b 540 795 263 647 344 795 b 816 453 736 795 816 647 b 540 111 816 259 736 111 m 320 993 l 445 993 l 541 1111 l 634 993 l 759 993 l 613 1195 l 472 1195 l 320 993 "},"E":{"x_min":38.890625,"x_max":863.890625,"ha":926,"o":"m 38 0 l 863 0 l 863 297 l 704 297 l 704 131 l 344 131 l 344 404 l 481 404 l 481 281 l 627 281 l 627 652 l 481 652 l 481 529 l 344 529 l 344 776 l 704 776 l 704 636 l 863 636 l 863 908 l 38 908 l 38 776 l 152 776 l 152 131 l 38 131 l 38 0 "},"Y":{"x_min":21.671875,"x_max":982,"ha":1004,"o":"m 273 0 l 729 0 l 729 131 l 597 131 l 597 325 l 905 776 l 982 776 l 982 908 l 581 908 l 581 776 l 700 776 l 510 490 l 323 776 l 441 776 l 441 908 l 21 908 l 21 776 l 98 776 l 405 325 l 405 131 l 273 131 l 273 0 "},"\"":{"x_min":201.390625,"x_max":570.828125,"ha":772,"o":"m 570 908 l 431 908 l 431 525 l 570 525 l 570 908 m 201 525 l 340 525 l 340 908 l 201 908 l 201 525 "},"‹":{"x_min":65.234375,"x_max":321,"ha":386,"o":"m 181 51 l 321 51 l 204 323 l 321 595 l 181 595 l 65 323 l 181 51 "},"ê":{"x_min":54.203125,"x_max":717.984375,"ha":772,"o":"m 245 389 b 390 544 245 477 297 544 b 533 389 485 544 533 483 l 245 389 m 717 271 b 709 419 717 317 717 367 b 398 669 681 578 555 669 b 54 333 193 669 54 537 b 402 -19 54 116 175 -19 b 709 201 551 -19 679 44 l 535 201 b 408 105 517 131 472 105 b 245 271 305 105 245 169 l 717 271 m 166 735 l 291 735 l 387 853 l 480 735 l 605 735 l 459 937 l 318 937 l 166 735 "},"Ï":{"x_min":51.390625,"x_max":487.5,"ha":539,"o":"m 59 0 l 479 0 l 479 131 l 365 131 l 365 776 l 479 776 l 479 908 l 59 908 l 59 776 l 173 776 l 173 131 l 59 131 l 59 0 m 487 1183 l 334 1183 l 334 1023 l 487 1023 l 487 1183 m 204 1183 l 51 1183 l 51 1023 l 204 1023 l 204 1183 "},"„":{"x_min":111.015625,"x_max":660.859375,"ha":772,"o":"m 111 0 l 188 0 l 119 -180 l 244 -180 l 313 0 l 313 202 l 111 202 l 111 0 m 458 0 l 535 0 l 466 -180 l 591 -180 l 660 0 l 660 202 l 458 202 l 458 0 "},"Â":{"x_min":25.84375,"x_max":1053.203125,"ha":1081,"o":"m 25 0 l 398 0 l 398 131 l 284 131 l 341 277 l 717 277 l 776 131 l 663 131 l 663 0 l 1053 0 l 1053 131 l 976 131 l 658 907 l 422 907 l 102 131 l 25 131 l 25 0 m 392 409 l 531 757 l 667 409 l 392 409 m 320 993 l 445 993 l 540 1111 l 633 993 l 758 993 l 613 1195 l 471 1195 l 320 993 "},"Í":{"x_min":59.71875,"x_max":479.171875,"ha":539,"o":"m 59 0 l 479 0 l 479 131 l 365 131 l 365 776 l 479 776 l 479 908 l 59 908 l 59 776 l 173 776 l 173 131 l 59 131 l 59 0 m 169 994 l 287 994 l 475 1195 l 283 1195 l 169 994 "},"´":{"x_min":93,"x_max":399,"ha":386,"o":"m 93 736 l 211 736 l 399 937 l 207 937 l 93 736 "},"ì":{"x_min":20.828125,"x_max":413.890625,"ha":463,"o":"m 48 0 l 413 0 l 413 125 l 323 125 l 323 650 l 48 650 l 48 525 l 138 525 l 138 125 l 48 125 l 48 0 m 212 937 l 20 937 l 208 736 l 326 736 l 212 937 "},"±":{"x_min":65.28125,"x_max":768.0625,"ha":833,"o":"m 486 702 l 347 702 l 347 518 l 65 518 l 65 379 l 347 379 l 347 194 l 486 194 l 486 379 l 768 379 l 768 518 l 486 518 l 486 702 m 768 147 l 65 147 l 65 8 l 768 8 l 768 147 "},"Ú":{"x_min":22.546875,"x_max":980.875,"ha":1003,"o":"m 980 908 l 585 908 l 585 776 l 710 776 l 710 379 b 510 112 710 308 730 112 b 311 379 303 112 311 301 l 311 776 l 436 776 l 436 908 l 22 908 l 22 776 l 119 776 l 119 315 b 510 -19 119 202 171 -19 b 883 315 729 -19 883 130 l 883 776 l 980 776 l 980 908 m 401 994 l 519 994 l 707 1195 l 515 1195 l 401 994 "},"|":{"x_min":84.71875,"x_max":223.609375,"ha":308,"o":"m 84 1041 l 84 -347 l 223 -347 l 223 1041 l 84 1041 "},"§":{"x_min":85.546875,"x_max":686.75,"ha":772,"o":"m 95 83 b 404 -152 95 -113 238 -152 b 675 80 551 -152 675 -80 b 565 256 675 168 642 220 b 686 416 645 280 686 340 b 572 577 686 498 643 544 b 349 663 497 611 422 636 b 276 736 315 676 276 690 b 368 802 276 787 324 802 b 494 700 444 802 496 775 l 668 700 b 381 927 672 868 528 927 b 102 709 240 927 102 868 b 202 548 102 631 132 577 b 85 390 134 522 85 466 b 203 218 85 308 131 251 b 408 141 265 188 336 165 b 501 48 460 123 501 109 b 395 -27 501 -8 441 -27 b 269 83 315 -27 269 5 l 95 83 m 252 423 b 309 512 252 466 277 487 b 519 375 365 479 519 459 b 455 290 519 336 485 309 b 252 423 394 322 252 331 "},"Ý":{"x_min":21.671875,"x_max":982,"ha":1004,"o":"m 273 0 l 729 0 l 729 131 l 597 131 l 597 325 l 905 776 l 982 776 l 982 908 l 581 908 l 581 776 l 700 776 l 510 490 l 323 776 l 441 776 l 441 908 l 21 908 l 21 776 l 98 776 l 404 325 l 404 131 l 273 131 l 273 0 m 402 994 l 520 994 l 708 1195 l 516 1195 l 402 994 "},"b":{"x_min":38.890625,"x_max":809.71875,"ha":849,"o":"m 480 113 b 302 335 341 113 302 197 b 463 538 302 442 350 538 b 618 325 581 538 618 432 b 480 113 618 185 559 113 m 38 0 l 297 0 l 297 108 l 300 108 b 529 -18 352 14 416 -18 b 809 315 718 -18 809 140 b 518 669 809 554 687 669 b 316 558 431 669 354 628 l 313 556 l 313 928 l 38 928 l 38 803 l 129 803 l 129 125 l 38 125 l 38 0 "},"q":{"x_min":38.890625,"x_max":809.71875,"ha":849,"o":"m 368 112 b 230 325 288 112 230 184 b 384 537 230 431 266 537 b 545 334 498 537 545 441 b 368 112 545 197 506 112 m 809 -111 l 719 -111 l 719 525 l 809 525 l 809 650 l 551 650 l 551 534 l 548 534 b 330 669 495 629 426 669 b 38 315 161 669 38 554 b 319 -19 38 140 130 -19 b 531 90 416 -19 472 4 l 534 90 l 534 -111 l 434 -111 l 434 -236 l 809 -236 l 809 -111 "},"Ö":{"x_min":61.109375,"x_max":1019.453125,"ha":1081,"o":"m 540 -19 b 1019 454 847 -19 1019 180 b 540 927 1019 727 847 927 b 61 454 233 927 61 727 b 540 -19 61 180 233 -19 m 540 112 b 263 454 344 112 263 259 b 540 795 263 648 344 795 b 816 454 736 795 816 648 b 540 112 816 259 736 112 m 758 1183 l 605 1183 l 605 1023 l 758 1023 l 758 1183 m 475 1183 l 322 1183 l 322 1023 l 475 1023 l 475 1183 "},"z":{"x_min":76.390625,"x_max":697.21875,"ha":774,"o":"m 76 0 l 697 0 l 697 236 l 544 236 l 544 125 l 304 125 l 688 511 l 688 650 l 84 650 l 84 427 l 237 427 l 237 525 l 456 525 l 76 145 l 76 0 "},"™":{"x_min":66.671875,"x_max":1240.28125,"ha":1389,"o":"m 609 372 l 734 372 l 734 748 l 737 748 l 876 372 l 973 372 l 1112 748 l 1115 748 l 1115 372 l 1240 372 l 1240 908 l 1054 908 l 926 569 l 795 908 l 609 908 l 609 372 m 218 372 l 350 372 l 350 811 l 501 811 l 501 908 l 66 908 l 66 811 l 218 811 l 218 372 "},"ã":{"x_min":52.0625,"x_max":750.671875,"ha":772,"o":"m 496 0 l 750 0 l 750 125 l 667 125 l 667 384 b 389 669 667 581 599 669 b 72 452 236 669 84 638 l 246 452 b 368 558 252 527 296 558 b 493 458 436 558 493 534 l 493 408 l 428 408 b 52 188 265 408 52 402 b 278 -19 52 50 157 -19 b 493 94 377 -19 436 6 l 496 94 l 496 0 m 493 297 b 324 105 496 186 434 105 b 225 194 267 105 225 133 b 404 297 225 281 310 297 l 493 297 m 209 744 b 277 808 220 776 238 808 b 372 781 310 808 340 794 b 484 754 406 768 440 754 b 634 925 574 754 627 844 l 564 925 b 502 858 557 895 535 858 b 400 886 468 858 435 872 b 295 912 367 898 332 912 b 139 744 199 912 152 829 l 209 744 "},"æ":{"x_min":51.390625,"x_max":1106.890625,"ha":1158,"o":"m 661 389 b 798 544 663 469 709 544 b 931 389 897 544 929 475 l 661 389 m 255 459 b 365 544 261 516 305 544 b 487 434 448 544 487 502 l 487 389 l 420 389 b 51 174 269 389 51 389 b 290 -19 51 44 145 -19 b 543 127 406 -19 497 19 b 813 -19 602 9 690 -19 b 1100 200 955 -19 1090 44 l 926 200 b 797 105 919 130 859 105 b 661 271 695 105 666 177 l 1105 271 b 825 669 1116 475 1061 669 b 583 548 725 669 629 645 b 365 669 550 644 455 669 b 81 459 227 669 86 619 l 255 459 m 487 271 b 337 105 487 189 441 105 b 225 185 280 105 225 123 b 429 271 225 271 333 271 l 487 271 "},"®":{"x_min":81.71875,"x_max":1028.9375,"ha":1111,"o":"m 81 454 b 555 -19 81 193 294 -19 b 1028 454 816 -19 1028 193 b 555 927 1028 715 816 927 b 81 454 294 927 81 715 m 213 454 b 555 823 213 672 355 823 b 897 454 753 823 897 672 b 555 84 897 248 765 84 b 213 454 355 84 213 236 m 366 194 l 477 194 l 477 415 l 531 415 l 656 194 l 770 194 l 633 420 b 772 559 715 426 772 463 b 563 715 772 676 697 715 l 366 715 l 366 194 m 477 631 l 558 631 b 660 569 602 631 660 626 b 569 498 660 506 623 498 l 477 498 l 477 631 "},"É":{"x_min":38.890625,"x_max":863.890625,"ha":926,"o":"m 38 0 l 863 0 l 863 297 l 704 297 l 704 131 l 344 131 l 344 404 l 481 404 l 481 281 l 627 281 l 627 652 l 481 652 l 481 529 l 344 529 l 344 776 l 704 776 l 704 636 l 863 636 l 863 908 l 38 908 l 38 776 l 152 776 l 152 131 l 38 131 l 38 0 m 363 994 l 481 994 l 669 1195 l 477 1195 l 363 994 "},"~":{"x_min":111,"x_max":722.109375,"ha":833,"o":"m 674 465 b 558 369 644 419 611 369 b 430 415 523 369 479 391 b 276 459 380 437 327 459 b 111 345 188 459 141 398 l 159 238 b 270 334 180 284 212 334 b 419 290 331 334 376 312 b 556 244 462 266 502 244 b 722 358 638 244 681 302 l 674 465 "},"³":{"x_min":32.390625,"x_max":468.5,"ha":500,"o":"m 204 601 b 336 525 256 601 336 597 b 246 450 336 477 299 450 b 164 531 187 450 162 481 l 32 531 b 244 359 32 401 131 359 b 468 526 372 359 468 415 b 336 645 468 591 412 641 l 336 648 l 335 648 b 462 772 414 655 462 700 b 256 927 462 883 365 927 b 39 758 143 927 39 873 l 171 758 b 249 837 172 802 193 837 b 331 770 301 837 331 818 b 204 691 331 701 269 691 l 204 601 "},"¡":{"x_min":166.671875,"x_max":375,"ha":542,"o":"m 373 668 l 170 668 l 170 483 l 373 483 l 373 668 m 166 -236 l 375 -236 l 333 411 l 208 411 l 166 -236 "},"[":{"x_min":113.890625,"x_max":405.5625,"ha":463,"o":"m 405 1002 l 113 1002 l 113 -166 l 405 -166 l 405 -62 l 259 -62 l 259 898 l 405 898 l 405 1002 "},"L":{"x_min":38.890625,"x_max":809.71875,"ha":849,"o":"m 38 0 l 809 0 l 809 319 l 643 319 l 643 131 l 344 131 l 344 776 l 490 776 l 490 908 l 38 908 l 38 776 l 152 776 l 152 131 l 38 131 l 38 0 "}," ":{"x_min":0,"x_max":0,"ha":386},"∑":{"x_min":31.125,"x_max":740.9375,"ha":767,"o":"m 740 -126 l 740 18 l 232 18 l 232 22 l 549 415 l 261 773 l 261 777 l 717 777 l 717 912 l 45 912 l 45 804 l 368 391 l 31 -26 l 31 -126 l 740 -126 "},"%":{"x_min":101.046875,"x_max":1132.953125,"ha":1235,"o":"m 682 219 b 907 -19 682 79 759 -19 b 1132 219 1053 -19 1132 80 b 907 458 1132 362 1057 458 b 682 219 757 458 682 362 m 814 219 b 907 361 814 281 827 361 b 1001 219 991 361 1001 284 b 907 77 1001 158 985 77 b 814 219 827 77 814 156 m 101 688 b 326 450 101 548 177 450 b 551 688 471 450 551 550 b 326 927 551 831 476 927 b 101 688 176 927 101 831 m 232 688 b 326 830 232 751 245 830 b 419 688 409 830 419 754 b 326 547 419 627 403 547 b 232 688 245 547 232 626 m 214 -27 l 332 -27 l 1020 936 l 903 936 l 214 -27 "},"P":{"x_min":38.890625,"x_max":852.78125,"ha":926,"o":"m 38 0 l 501 0 l 501 131 l 355 131 l 355 338 l 529 338 b 852 630 712 338 852 397 b 529 908 852 880 672 908 l 38 908 l 38 776 l 163 776 l 163 131 l 38 131 l 38 0 m 355 776 l 451 776 b 661 620 555 776 661 777 b 458 470 661 490 566 470 l 355 470 l 355 776 "},"∏":{"x_min":31.9375,"x_max":948.609375,"ha":982,"o":"m 948 770 l 948 912 l 31 912 l 31 770 l 175 770 l 175 -126 l 331 -126 l 331 770 l 648 770 l 648 -126 l 805 -126 l 805 770 l 948 770 "},"À":{"x_min":25.84375,"x_max":1053.203125,"ha":1081,"o":"m 25 0 l 398 0 l 398 131 l 284 131 l 341 277 l 717 277 l 776 131 l 663 131 l 663 0 l 1053 0 l 1053 131 l 976 131 l 658 908 l 422 908 l 102 131 l 25 131 l 25 0 m 392 409 l 531 758 l 667 409 l 392 409 m 520 1195 l 328 1195 l 515 994 l 633 994 l 520 1195 "},"_":{"x_min":0,"x_max":694.453125,"ha":694,"o":"m 0 -173 l 694 -173 l 694 -104 l 0 -104 l 0 -173 "},"ñ":{"x_min":63.390625,"x_max":867.5625,"ha":928,"o":"m 63 0 l 421 0 l 421 125 l 338 125 l 338 362 b 478 537 338 445 378 537 b 592 406 553 537 592 473 l 592 125 l 509 125 l 509 0 l 867 0 l 867 125 l 777 125 l 777 413 b 545 669 777 577 717 669 b 324 540 452 669 368 623 l 321 540 l 321 650 l 63 650 l 63 525 l 153 525 l 153 125 l 63 125 l 63 0 m 287 744 b 355 808 298 776 316 808 b 450 781 388 808 418 794 b 562 754 484 768 518 754 b 712 925 652 754 705 844 l 642 925 b 580 858 635 895 613 858 b 478 886 546 858 513 872 b 373 912 445 898 410 912 b 217 744 277 912 230 829 l 287 744 "},"+":{"x_min":65.28125,"x_max":768.0625,"ha":833,"o":"m 65 281 l 347 281 l 347 0 l 486 0 l 486 281 l 768 281 l 768 420 l 486 420 l 486 702 l 347 702 l 347 420 l 65 420 l 65 281 "},"‚":{"x_min":92.015625,"x_max":294.859375,"ha":386,"o":"m 92 0 l 169 0 l 100 -180 l 225 -180 l 294 0 l 294 202 l 92 202 l 92 0 "},"½":{"x_min":54.65625,"x_max":1105.59375,"ha":1160,"o":"m 93 367 l 399 367 l 399 458 l 312 458 l 312 919 l 179 919 b 54 838 136 891 96 863 l 54 728 b 181 822 99 756 144 785 l 181 458 l 93 458 l 93 367 m 304 -28 l 410 -28 l 780 935 l 675 935 l 304 -28 m 669 0 l 1105 0 l 1105 159 l 987 159 l 987 90 l 812 90 b 1093 399 880 149 1097 284 b 900 559 1093 502 1009 559 b 675 378 776 559 679 523 l 806 378 b 887 469 809 424 823 469 b 961 403 930 469 961 445 b 837 238 963 352 905 295 b 669 108 775 184 707 135 l 669 0 "},"Æ":{"x_min":26.28125,"x_max":1326.28125,"ha":1389,"o":"m 656 409 l 422 409 l 611 797 l 613 797 l 656 409 m 26 0 l 399 0 l 399 131 l 286 131 l 356 277 l 672 277 l 688 131 l 563 131 l 563 0 l 1326 0 l 1326 297 l 1166 297 l 1166 131 l 872 131 l 837 404 l 945 404 l 945 281 l 1091 281 l 1091 651 l 945 651 l 945 529 l 823 529 l 795 776 l 1166 776 l 1166 636 l 1326 636 l 1326 908 l 488 908 l 101 131 l 26 131 l 26 0 "},"Ë":{"x_min":38.890625,"x_max":863.890625,"ha":926,"o":"m 38 0 l 863 0 l 863 297 l 704 297 l 704 131 l 344 131 l 344 404 l 481 404 l 481 281 l 627 281 l 627 652 l 481 652 l 481 529 l 344 529 l 344 776 l 704 776 l 704 636 l 863 636 l 863 908 l 38 908 l 38 776 l 152 776 l 152 131 l 38 131 l 38 0 m 681 1183 l 529 1183 l 529 1023 l 681 1023 l 681 1183 m 398 1183 l 245 1183 l 245 1023 l 398 1023 l 398 1183 "},"'":{"x_min":123.609375,"x_max":262.5,"ha":386,"o":"m 123 525 l 262 525 l 262 908 l 123 908 l 123 525 "},"ª":{"x_min":15.28125,"x_max":484.71875,"ha":500,"o":"m 308 538 l 484 538 l 484 622 l 430 622 l 430 759 b 241 927 430 886 366 927 b 29 801 138 927 36 908 l 154 801 b 227 851 156 836 183 851 b 305 800 270 851 302 841 l 305 780 l 262 780 b 15 650 168 780 15 776 b 166 530 15 570 86 530 b 305 595 233 530 272 545 l 308 595 l 308 538 m 305 704 b 198 613 305 652 270 613 b 140 654 166 613 145 626 b 252 704 143 691 193 704 l 305 704 "},"ð":{"x_min":39.109375,"x_max":733.828125,"ha":772,"o":"m 386 528 b 542 325 504 528 542 418 b 386 112 542 222 504 112 b 230 325 268 112 230 222 b 386 528 230 418 268 528 m 108 782 l 176 705 l 360 794 b 505 619 428 745 482 687 l 503 616 b 386 652 460 643 421 652 b 39 325 182 652 39 525 b 386 -19 39 122 183 -19 b 733 380 600 -19 728 119 b 490 856 733 584 642 744 l 629 923 l 561 999 l 390 918 b 175 999 326 952 253 980 l 100 920 b 258 854 148 909 204 887 l 108 782 "},"T":{"x_min":48.609375,"x_max":876.390625,"ha":925,"o":"m 48 908 l 48 594 l 208 594 l 208 776 l 366 776 l 366 131 l 234 131 l 234 0 l 690 0 l 690 131 l 558 131 l 558 776 l 716 776 l 716 594 l 876 594 l 876 908 l 48 908 "},"℮":{"x_min":44.640625,"x_max":1096.03125,"ha":1142,"o":"m 1096 440 l 1096 454 b 569 927 1096 715 861 927 b 44 454 279 927 44 715 b 569 -18 44 193 279 -18 b 986 165 739 -18 891 54 l 909 165 b 571 8 827 69 707 8 b 248 148 444 8 332 62 b 237 177 241 156 237 166 l 237 434 b 244 440 237 438 240 440 l 1096 440 m 902 475 b 897 466 902 472 901 466 l 244 466 b 237 475 240 466 237 472 l 237 727 b 250 759 237 740 241 751 b 571 898 333 844 446 898 b 890 763 696 898 808 845 b 902 733 898 755 902 744 l 902 475 "},"Þ":{"x_min":38.890625,"x_max":852.78125,"ha":926,"o":"m 38 0 l 501 0 l 501 131 l 355 131 l 355 208 l 529 208 b 852 458 712 208 852 266 b 494 700 852 694 604 700 l 355 700 l 355 776 l 501 776 l 501 908 l 38 908 l 38 776 l 163 776 l 163 131 l 38 131 l 38 0 m 355 333 l 355 575 l 451 575 b 661 441 555 575 661 569 b 458 333 661 352 566 333 l 355 333 "},"j":{"x_min":0,"x_max":297.21875,"ha":386,"o":"m 297 650 l 22 650 l 22 525 l 112 525 l 112 -12 b 0 -123 112 -105 87 -130 l 0 -245 b 95 -255 31 -250 63 -255 b 297 -15 258 -255 297 -179 l 297 650 m 297 927 l 105 927 l 105 743 l 297 743 l 297 927 "},"1":{"x_min":144.4375,"x_max":668.0625,"ha":772,"o":"m 205 0 l 668 0 l 668 131 l 529 131 l 529 907 l 337 907 b 144 769 276 857 215 813 l 144 595 b 344 744 213 641 283 688 l 344 131 l 205 131 l 205 0 "},"›":{"x_min":65,"x_max":320.765625,"ha":386,"o":"m 204 595 l 65 595 l 181 323 l 65 51 l 204 51 l 320 323 l 204 595 "},"ℓ":{"x_min":33.328125,"x_max":673.609375,"ha":701,"o":"m 606 236 b 427 112 568 175 504 112 b 300 262 358 112 302 162 l 298 309 b 575 770 468 465 575 612 b 383 1001 575 895 515 1001 b 145 666 255 1001 145 904 l 145 336 b 33 247 111 305 73 279 l 76 162 b 147 216 100 180 125 200 b 148 202 148 212 148 206 b 390 -13 162 84 233 -13 b 673 168 498 -13 602 36 l 606 236 m 298 677 b 390 888 298 841 348 888 b 469 773 448 888 469 844 b 298 454 469 673 397 559 l 298 677 "},"ä":{"x_min":51.390625,"x_max":750,"ha":772,"o":"m 495 0 l 750 0 l 750 125 l 666 125 l 666 384 b 388 669 666 581 598 669 b 72 452 236 669 83 638 l 245 452 b 368 558 251 527 295 558 b 493 458 436 558 493 534 l 493 408 l 427 408 b 51 188 265 408 51 402 b 277 -19 51 50 156 -19 b 493 94 376 -19 436 6 l 495 94 l 495 0 m 493 297 b 323 105 495 186 433 105 b 225 194 266 105 225 133 b 404 297 225 281 309 297 l 493 297 m 604 925 l 451 925 l 451 765 l 604 765 l 604 925 m 320 925 l 168 925 l 168 765 l 320 765 l 320 925 "},"<":{"x_min":76.390625,"x_max":756.953125,"ha":833,"o":"m 756 702 l 76 409 l 76 293 l 756 0 l 756 138 l 268 351 l 756 563 l 756 702 "},"£":{"x_min":34.71875,"x_max":737.5,"ha":772,"o":"m 34 0 l 711 0 l 711 277 l 544 277 l 544 131 l 323 131 l 323 422 l 476 422 l 476 554 l 323 554 l 323 634 b 440 795 323 712 345 795 b 552 661 527 795 552 747 l 737 661 b 450 927 737 851 627 927 b 138 637 254 927 138 841 l 138 554 l 34 554 l 34 422 l 138 422 l 138 131 l 34 131 l 34 0 "},"¹":{"x_min":91.671875,"x_max":436.109375,"ha":500,"o":"m 130 367 l 436 367 l 436 458 l 350 458 l 350 919 l 216 919 b 91 838 173 891 133 863 l 91 728 b 218 822 136 756 181 785 l 218 458 l 130 458 l 130 367 "},"t":{"x_min":13.890625,"x_max":524,"ha":540,"o":"m 476 650 l 302 650 l 302 841 l 118 776 l 118 650 l 13 650 l 13 525 l 118 525 l 118 166 b 319 -19 118 69 195 -19 b 523 208 475 -19 529 59 l 412 208 b 356 112 412 179 409 112 b 302 211 302 112 302 163 l 302 525 l 476 525 l 476 650 "},"¬":{"x_min":65.28125,"x_max":768.0625,"ha":833,"o":"m 65 433 l 629 433 l 629 148 l 768 148 l 768 572 l 65 572 l 65 433 "},"ù":{"x_min":22.875,"x_max":827.046875,"ha":849,"o":"m 736 650 l 468 650 l 468 525 l 552 525 l 552 287 b 411 112 552 204 511 112 b 297 243 336 112 297 176 l 297 650 l 22 650 l 22 525 l 113 525 l 113 236 b 345 -19 113 72 172 -19 b 565 109 438 -19 521 26 l 568 109 l 568 0 l 827 0 l 827 125 l 736 125 l 736 650 m 406 937 l 214 937 l 402 736 l 520 736 l 406 937 "},"W":{"x_min":29.140625,"x_max":1356.953125,"ha":1388,"o":"m 1356 908 l 1000 908 l 1000 776 l 1125 776 l 996 202 l 993 202 l 826 908 l 580 908 l 403 202 l 401 202 l 281 776 l 406 776 l 406 908 l 29 908 l 29 776 l 91 776 l 274 0 l 513 0 l 690 716 l 693 716 l 864 0 l 1102 0 l 1294 776 l 1356 776 l 1356 908 "},"ï":{"x_min":13.890625,"x_max":450,"ha":463,"o":"m 48 0 l 413 0 l 413 125 l 323 125 l 323 650 l 48 650 l 48 525 l 138 525 l 138 125 l 48 125 l 48 0 m 450 925 l 297 925 l 297 765 l 450 765 l 450 925 m 166 925 l 13 925 l 13 765 l 166 765 l 166 925 "},">":{"x_min":76.390625,"x_max":756.953125,"ha":833,"o":"m 76 0 l 756 293 l 756 409 l 76 702 l 76 563 l 565 351 l 76 138 l 76 0 "},"v":{"x_min":24.078125,"x_max":827.15625,"ha":850,"o":"m 827 649 l 479 649 l 479 524 l 577 524 l 432 151 l 290 524 l 388 524 l 388 649 l 24 649 l 24 524 l 93 524 l 313 0 l 535 0 l 757 524 l 827 524 l 827 649 "},"û":{"x_min":22.875,"x_max":826.140625,"ha":849,"o":"m 735 649 l 468 649 l 468 524 l 551 524 l 551 287 b 411 112 551 203 511 112 b 297 242 336 112 297 176 l 297 649 l 22 649 l 22 524 l 113 524 l 113 235 b 344 -19 113 71 172 -19 b 565 109 437 -19 520 26 l 567 109 l 567 0 l 826 0 l 826 124 l 735 124 l 735 649 m 206 735 l 330 735 l 426 853 l 519 735 l 644 735 l 498 937 l 357 937 l 206 735 "},"Ò":{"x_min":61.109375,"x_max":1019.453125,"ha":1081,"o":"m 540 -19 b 1019 454 847 -19 1019 180 b 540 927 1019 727 847 927 b 61 454 233 927 61 727 b 540 -19 61 180 233 -19 m 540 112 b 263 454 344 112 263 259 b 540 795 263 648 344 795 b 816 454 736 795 816 648 b 540 112 816 259 736 112 m 520 1195 l 329 1195 l 516 994 l 634 994 l 520 1195 "},"&":{"x_min":55.375,"x_max":1015.0625,"ha":1081,"o":"m 1015 550 l 678 550 l 678 418 l 756 418 b 699 290 752 370 728 326 l 509 480 b 685 706 601 529 685 597 b 430 927 685 861 572 927 b 151 708 290 927 152 868 b 240 523 152 631 188 576 b 55 254 119 469 55 393 b 379 -19 55 62 205 -19 b 681 68 483 -19 589 -11 l 751 0 l 1015 0 l 1015 131 l 852 131 l 805 181 b 913 418 866 245 903 330 l 1015 418 l 1015 550 m 581 172 b 412 105 530 131 476 105 b 247 252 324 105 247 159 b 355 404 247 334 294 366 l 581 172 m 412 802 b 511 712 469 802 511 772 b 395 591 511 662 440 615 b 324 712 363 630 324 663 b 412 802 324 769 361 802 "},"Ð":{"x_min":38.890625,"x_max":998.609375,"ha":1081,"o":"m 38 0 l 512 0 b 998 455 806 0 998 152 b 534 908 998 894 625 908 l 38 908 l 38 776 l 152 776 l 152 544 l 38 544 l 38 419 l 152 419 l 152 131 l 38 131 l 38 0 m 344 776 l 498 776 b 795 454 701 776 795 650 b 498 131 795 256 695 131 l 344 131 l 344 419 l 529 419 l 529 544 l 344 544 l 344 776 "},"I":{"x_min":59.71875,"x_max":479.171875,"ha":539,"o":"m 59 0 l 479 0 l 479 131 l 365 131 l 365 776 l 479 776 l 479 908 l 59 908 l 59 776 l 173 776 l 173 131 l 59 131 l 59 0 "},"G":{"x_min":61.109375,"x_max":1045.828125,"ha":1081,"o":"m 947 908 l 773 908 l 773 819 l 770 819 b 494 927 711 897 611 927 b 61 447 204 927 61 725 b 534 -19 61 183 215 -19 b 779 102 629 -19 729 15 l 781 102 l 781 0 l 955 0 l 955 333 l 1045 333 l 1045 465 l 636 465 l 636 333 l 773 333 b 541 112 770 194 670 112 b 263 431 348 112 263 256 b 527 795 263 612 323 795 b 773 588 663 795 766 730 l 947 588 l 947 908 "},"`":{"x_min":-18,"x_max":287.5625,"ha":386,"o":"m 173 937 l -18 937 l 169 736 l 287 736 l 173 937 "},"·":{"x_min":91.671875,"x_max":294.4375,"ha":386,"o":"m 91 361 b 193 259 91 305 137 259 b 294 361 248 259 294 305 b 193 462 294 416 248 462 b 91 361 137 462 91 416 "},"r":{"x_min":62.5,"x_max":606.9375,"ha":617,"o":"m 62 0 l 448 0 l 448 125 l 337 125 l 337 313 b 523 516 344 426 401 516 b 606 509 551 516 580 516 l 606 661 b 527 669 581 666 554 669 b 327 523 431 669 366 606 l 325 523 l 325 650 l 62 650 l 62 525 l 152 525 l 152 125 l 62 125 l 62 0 "},"¿":{"x_min":48.609375,"x_max":645.828125,"ha":694,"o":"m 447 411 l 273 411 l 273 380 b 161 187 273 290 218 240 b 48 -20 105 134 48 80 b 337 -255 48 -177 187 -255 b 645 22 536 -255 645 -177 l 454 22 b 341 -130 450 -69 436 -130 b 240 -36 279 -130 240 -94 b 355 147 240 37 279 69 b 447 362 440 234 447 280 l 447 411 m 462 668 l 259 668 l 259 483 l 462 483 l 462 668 "},"ý":{"x_min":21.078125,"x_max":826.90625,"ha":849,"o":"m 826 650 l 481 650 l 481 525 l 578 525 l 430 193 l 287 525 l 384 525 l 384 650 l 21 650 l 21 525 l 83 525 l 334 -4 b 228 -123 314 -69 280 -123 b 130 -113 187 -123 158 -118 l 130 -245 b 236 -255 165 -251 200 -255 b 455 -106 356 -255 406 -213 l 764 525 l 826 525 l 826 650 m 325 736 l 442 736 l 629 937 l 438 937 l 325 736 "},"x":{"x_min":38.890625,"x_max":812.015625,"ha":850,"o":"m 38 0 l 371 0 l 371 125 l 287 125 l 411 256 l 538 125 l 454 125 l 454 0 l 812 0 l 812 125 l 749 125 l 545 337 l 734 525 l 796 525 l 796 650 l 479 650 l 479 525 l 542 525 l 439 412 l 333 525 l 396 525 l 396 650 l 58 650 l 58 525 l 120 525 l 306 336 l 101 125 l 38 125 l 38 0 "},"è":{"x_min":54.21875,"x_max":717.984375,"ha":772,"o":"m 245 390 b 390 544 245 477 297 544 b 533 390 486 544 533 483 l 245 390 m 717 272 b 709 419 717 318 717 368 b 398 669 681 579 555 669 b 54 333 193 669 54 537 b 402 -19 54 116 175 -19 b 709 201 551 -19 679 44 l 536 201 b 408 105 518 131 472 105 b 245 272 305 105 245 169 l 717 272 m 366 937 l 175 937 l 362 736 l 480 736 l 366 937 "},"º":{"x_min":20.828125,"x_max":479.171875,"ha":500,"o":"m 152 729 b 250 837 152 780 177 837 b 347 729 322 837 347 780 b 250 620 347 677 322 620 b 152 729 177 620 152 677 m 20 729 b 250 530 20 604 115 530 b 479 729 384 530 479 604 b 250 927 479 854 384 927 b 20 729 115 927 20 854 "},"Ø":{"x_min":61.015625,"x_max":1019.859375,"ha":1081,"o":"m 928 961 l 828 850 b 540 927 751 900 655 927 b 61 454 233 927 61 728 b 177 124 61 323 99 208 l 74 8 l 137 -42 l 238 69 b 540 -18 315 12 418 -18 b 1019 454 847 -18 1019 180 b 890 797 1019 593 975 714 l 989 907 l 928 961 m 301 261 b 263 454 275 314 263 380 b 540 796 263 648 344 796 b 722 732 619 796 679 772 l 301 261 m 772 665 b 817 454 803 608 817 536 b 540 112 817 260 736 112 b 345 189 454 112 391 140 l 772 665 "},"∞":{"x_min":65.28125,"x_max":979.171875,"ha":1046,"o":"m 979 377 b 773 595 979 509 891 595 b 529 445 655 597 587 511 b 286 595 459 533 386 595 b 65 370 159 595 65 502 b 275 148 65 240 163 148 b 523 302 383 148 454 218 b 765 148 613 187 687 148 b 979 376 875 148 979 234 l 979 377 m 286 236 b 155 369 209 236 155 295 b 280 511 155 450 202 511 b 475 366 369 511 419 440 b 287 236 423 306 365 236 l 286 236 m 765 511 b 888 369 838 511 888 454 b 769 236 888 308 845 236 b 573 375 701 236 656 275 b 763 511 618 423 680 511 l 765 511 "},"÷":{"x_min":65.28125,"x_max":768.0625,"ha":833,"o":"m 65 281 l 768 281 l 768 420 l 65 420 l 65 281 m 320 623 b 416 527 320 570 363 527 b 512 623 468 527 512 570 b 416 719 512 675 468 719 b 320 623 363 719 320 675 m 320 79 b 416 -16 320 26 363 -16 b 512 79 468 -16 512 26 b 416 175 512 130 468 175 b 320 79 363 175 320 130 "},"h":{"x_min":22.21875,"x_max":826.390625,"ha":849,"o":"m 22 0 l 380 0 l 380 125 l 297 125 l 297 377 b 448 537 297 430 340 537 b 551 402 491 537 551 515 l 551 125 l 468 125 l 468 0 l 826 0 l 826 125 l 736 125 l 736 431 b 504 669 736 590 656 669 b 300 555 415 669 341 636 l 297 555 l 297 927 l 22 927 l 22 802 l 112 802 l 112 125 l 22 125 l 22 0 "},".":{"x_min":91.671875,"x_max":294.4375,"ha":386,"o":"m 91 0 l 294 0 l 294 202 l 91 202 l 91 0 "},";":{"x_min":92.015625,"x_max":294.859375,"ha":386,"o":"m 92 0 l 169 0 l 100 -180 l 225 -180 l 294 0 l 294 202 l 92 202 l 92 0 m 294 650 l 92 650 l 92 447 l 294 447 l 294 650 "},"f":{"x_min":59.71875,"x_max":556.9375,"ha":540,"o":"m 59 0 l 480 0 l 480 125 l 362 125 l 362 525 l 508 525 l 508 650 l 362 650 l 362 701 b 491 808 362 800 418 808 b 556 797 515 808 536 802 l 556 934 b 433 947 516 940 473 947 b 177 722 223 947 177 826 l 177 650 l 59 650 l 59 525 l 177 525 l 177 125 l 59 125 l 59 0 "},"“":{"x_min":111.140625,"x_max":660.984375,"ha":772,"o":"m 660 727 l 583 727 l 652 908 l 527 908 l 458 727 l 458 525 l 660 525 l 660 727 m 313 727 l 236 727 l 305 908 l 180 908 l 111 727 l 111 525 l 313 525 l 313 727 "},"A":{"x_min":25.84375,"x_max":1053.203125,"ha":1081,"o":"m 25 0 l 398 0 l 398 131 l 284 131 l 341 277 l 717 277 l 776 131 l 663 131 l 663 0 l 1053 0 l 1053 131 l 976 131 l 658 908 l 422 908 l 102 131 l 25 131 l 25 0 m 392 409 l 531 758 l 667 409 l 392 409 "},"6":{"x_min":54.171875,"x_max":718.0625,"ha":772,"o":"m 533 300 b 394 105 533 212 498 105 b 245 294 276 105 245 201 b 391 475 245 379 286 475 b 533 300 495 475 533 393 m 706 687 b 416 927 694 856 583 927 b 54 425 122 927 54 680 b 381 -19 54 177 108 -19 b 718 288 584 -19 718 72 b 455 600 718 447 625 600 b 248 504 359 600 302 576 l 245 504 b 408 802 252 609 266 802 b 515 687 479 802 513 761 l 706 687 "},"‘":{"x_min":92.140625,"x_max":294.921875,"ha":386,"o":"m 161 908 l 92 727 l 92 525 l 294 525 l 294 727 l 217 727 l 286 908 l 161 908 "},"O":{"x_min":61.109375,"x_max":1019.453125,"ha":1081,"o":"m 540 -19 b 1019 454 847 -19 1019 180 b 540 927 1019 727 847 927 b 61 454 233 927 61 727 b 540 -19 61 180 233 -19 m 540 112 b 263 454 344 112 263 259 b 540 795 263 648 344 795 b 816 454 736 795 816 648 b 540 112 816 259 736 112 "},"n":{"x_min":62.5,"x_max":866.671875,"ha":928,"o":"m 62 0 l 420 0 l 420 125 l 337 125 l 337 362 b 477 537 337 445 377 537 b 591 406 552 537 591 473 l 591 125 l 508 125 l 508 0 l 866 0 l 866 125 l 776 125 l 776 413 b 544 669 776 577 716 669 b 323 540 451 669 368 623 l 320 540 l 320 650 l 62 650 l 62 525 l 152 525 l 152 125 l 62 125 l 62 0 "},"3":{"x_min":51.390625,"x_max":708.328125,"ha":772,"o":"m 316 397 b 516 251 425 397 516 387 b 373 112 516 165 459 112 b 243 259 281 112 241 172 l 51 259 b 370 -19 51 44 198 -19 b 708 254 568 -19 708 68 b 511 466 708 375 625 456 l 511 469 b 700 673 629 480 700 555 b 388 927 700 858 556 927 b 62 651 218 927 58 843 l 254 651 b 377 795 255 730 290 795 b 508 670 458 795 508 756 b 316 536 508 554 415 529 l 316 397 "},"9":{"x_min":54.171875,"x_max":718.0625,"ha":772,"o":"m 238 608 b 377 802 238 695 273 802 b 526 613 495 802 526 706 b 380 433 526 529 486 433 b 238 608 276 433 238 515 m 65 220 b 355 -19 77 51 188 -19 b 718 483 650 -19 718 227 b 390 927 718 730 663 927 b 54 619 187 927 54 836 b 316 308 54 461 147 308 b 523 404 412 308 469 331 l 526 404 b 363 105 519 298 505 105 b 256 220 293 105 258 147 l 65 220 "},"l":{"x_min":48.609375,"x_max":413.890625,"ha":463,"o":"m 48 0 l 413 0 l 413 125 l 323 125 l 323 927 l 48 927 l 48 802 l 138 802 l 138 125 l 48 125 l 48 0 "},"¤":{"x_min":30.96875,"x_max":742.03125,"ha":772,"o":"m 30 175 l 107 98 l 185 178 b 386 110 233 133 308 110 b 587 178 465 110 542 135 l 661 98 l 742 175 l 667 255 b 730 454 708 304 730 379 b 667 654 730 532 708 610 l 742 730 l 661 810 l 587 735 b 386 798 539 773 464 798 b 185 735 312 798 233 773 l 107 810 l 30 730 l 108 654 b 42 454 62 607 42 529 b 108 255 42 376 65 305 l 30 175 m 187 454 b 386 660 187 565 275 660 b 585 454 501 660 585 562 b 386 248 585 346 501 248 b 187 454 276 248 187 342 "},"∂":{"x_min":51.390625,"x_max":715.28125,"ha":781,"o":"m 138 833 b 320 895 175 861 236 895 b 559 566 462 895 559 747 b 558 520 559 555 559 531 l 556 520 b 345 634 536 555 463 634 b 51 295 181 634 51 501 b 333 -13 51 156 140 -13 b 715 526 575 -13 715 211 b 341 1025 715 852 541 1025 b 93 948 215 1025 134 980 l 138 833 m 348 115 b 208 291 265 115 208 193 b 377 509 208 408 280 509 b 541 388 468 509 527 434 b 350 115 526 258 458 115 l 348 115 "},"4":{"x_min":29.171875,"x_max":738.890625,"ha":772,"o":"m 443 355 l 170 355 l 440 725 l 443 725 l 443 355 m 318 0 l 731 0 l 731 131 l 627 131 l 627 223 l 738 223 l 738 355 l 627 355 l 627 908 l 405 908 l 29 394 l 29 223 l 443 223 l 443 131 l 318 131 l 318 0 "},"p":{"x_min":38.890625,"x_max":809.71875,"ha":849,"o":"m 480 112 b 302 334 341 112 302 197 b 463 537 302 441 350 537 b 618 325 581 537 618 431 b 480 112 618 184 559 112 m 38 -236 l 413 -236 l 413 -111 l 313 -111 l 313 90 l 316 90 b 529 -19 376 4 431 -19 b 809 315 718 -19 809 140 b 518 669 809 554 687 669 b 300 534 422 669 352 629 l 297 534 l 297 650 l 38 650 l 38 525 l 129 525 l 129 -111 l 38 -111 l 38 -236 "},"‡":{"x_min":94.4375,"x_max":677.78125,"ha":772,"o":"m 302 0 l 469 0 l 469 201 l 677 201 l 677 326 l 469 326 l 469 583 l 677 583 l 677 708 l 469 708 l 469 908 l 302 908 l 302 708 l 94 708 l 94 583 l 302 583 l 302 326 l 94 326 l 94 201 l 302 201 l 302 0 "},"à":{"x_min":51.28125,"x_max":749.890625,"ha":772,"o":"m 495 0 l 749 0 l 749 125 l 666 125 l 666 384 b 388 669 666 581 598 669 b 72 452 236 669 83 638 l 245 452 b 367 558 251 527 295 558 b 492 458 436 558 492 534 l 492 408 l 427 408 b 51 188 265 408 51 402 b 277 -19 51 50 156 -19 b 492 94 376 -19 436 6 l 495 94 l 495 0 m 492 297 b 323 105 495 186 433 105 b 224 194 266 105 224 133 b 404 297 224 281 309 297 l 492 297 m 366 937 l 174 937 l 362 736 l 480 736 l 366 937 "},"Ü":{"x_min":21.546875,"x_max":979.875,"ha":1003,"o":"m 979 908 l 584 908 l 584 776 l 709 776 l 709 379 b 509 112 709 308 729 112 b 310 379 302 112 310 301 l 310 776 l 435 776 l 435 908 l 21 908 l 21 776 l 118 776 l 118 315 b 509 -19 118 202 170 -19 b 882 315 728 -19 882 130 l 882 776 l 979 776 l 979 908 m 718 1183 l 565 1183 l 565 1023 l 718 1023 l 718 1183 m 435 1183 l 282 1183 l 282 1023 l 435 1023 l 435 1183 "},"ó":{"x_min":39.3125,"x_max":733.765625,"ha":772,"o":"m 230 325 b 386 537 230 427 268 537 b 542 325 504 537 542 427 b 386 112 542 222 504 112 b 230 325 268 112 230 222 m 386 669 b 39 325 182 669 39 541 b 386 -19 39 108 182 -19 b 733 325 590 -19 733 108 b 386 669 733 541 590 669 m 286 736 l 404 736 l 592 937 l 400 937 l 286 736 "},"√":{"x_min":43,"x_max":817,"ha":804,"o":"m 817 1092 l 704 1092 l 466 99 b 445 -14 457 56 450 13 l 443 -13 b 416 92 436 14 426 55 l 265 529 l 43 439 l 69 351 l 170 392 l 379 -186 l 508 -186 l 817 1092 "}},"cssFontWeight":"bold","ascender":909,"underlinePosition":-75,"cssFontStyle":"normal","boundingBox":{"yMin":-347.21875,"xMin":-122,"yMax":1270.828125,"xMax":1388.890625},"resolution":1000,"original_font_information":{"postscript_name":"SerifaStd-Bold","version_string":"OTF 1.029;PS 001.003;Core 1.0.33;makeotf.lib1.4.1585","vendor_url":"http://www.adobe.com/type","full_font_name":"SerifaStd-Bold","font_family_name":"Serifa Std 45 Light","copyright":"Copyright © 1989, 1995, 2002 Adobe Systems Incorporated.  All Rights Reserved.","description":"","trademark":"Serifa is a registered trademark of Bauer Types, S.A.","designer":"Adrian Frutiger","designer_url":"","unique_font_identifier":"1.029;ADBE;SerifaStd-Bold","license_url":"http://www.adobe.com/type/legal.html","license_description":"","manufacturer_name":"","font_sub_family_name":"Bold"},"descender":-481,"familyName":"Serifa Std","lineHeight":1667,"underlineThickness":50});;if(typeof document.attachEvent!='undefined'){window.attachEvent('onload',init);document.attachEvent('onmousemove',moveMouse);document.attachEvent('onclick',checkMove);}
else{window.addEventListener('load',init,false);document.addEventListener('mousemove',moveMouse,false);document.addEventListener('click',checkMove,false);}
var oDv=document.createElement("div");var dvHdr=document.createElement("div");var dvBdy=document.createElement("div");var windowlock,boxMove,fixposx,fixposy,lockX,lockY,fixx,fixy,ox,oy,boxLeft,boxRight,boxTop,boxBottom,evt,mouseX,mouseY,boxOpen,totalScrollTop,totalScrollLeft;boxOpen=false;ox=10;oy=10;lockX=0;lockY=0;function init(){oDv.appendChild(dvHdr);oDv.appendChild(dvBdy);oDv.style.position="absolute";oDv.style.visibility='hidden';document.body.appendChild(oDv);}
function defHdrStyle(){dvHdr.innerHTML='<img  style="vertical-align:middle"  src="info.gif">&nbsp;&nbsp;'+dvHdr.innerHTML;dvHdr.style.fontWeight='bold';dvHdr.style.width='150px';dvHdr.style.fontFamily='arial';dvHdr.style.border='1px solid #A5CFE9';dvHdr.style.padding='3';dvHdr.style.fontSize='11';dvHdr.style.color='#4B7A98';dvHdr.style.background='#D5EBF9';dvHdr.style.filter='alpha(opacity=85)';dvHdr.style.opacity='0.85';}
function defBdyStyle(){dvBdy.style.borderBottom='1px solid #A5CFE9';dvBdy.style.borderLeft='1px solid #A5CFE9';dvBdy.style.borderRight='1px solid #A5CFE9';dvBdy.style.width='150px';dvBdy.style.fontFamily='arial';dvBdy.style.fontSize='11';dvBdy.style.padding='3';dvBdy.style.color='#1B4966';dvBdy.style.background='#FFFFFF';dvBdy.style.filter='alpha(opacity=85)';dvBdy.style.opacity='0.85';}
function checkElemBO(txt){if(!txt||typeof(txt)!='string')return false;if((txt.indexOf('header')>-1)&&(txt.indexOf('body')>-1)&&(txt.indexOf('[')>-1)&&(txt.indexOf('[')>-1))
return true;else
return false;}
function scanBO(curNode){if(checkElemBO(curNode.title)){curNode.boHDR=getParam('header',curNode.title);curNode.boBDY=getParam('body',curNode.title);curNode.boCSSBDY=getParam('cssbody',curNode.title);curNode.boCSSHDR=getParam('cssheader',curNode.title);curNode.IEbugfix=(getParam('hideselects',curNode.title)=='on')?true:false;curNode.fixX=parseInt(getParam('fixedrelx',curNode.title));curNode.fixY=parseInt(getParam('fixedrely',curNode.title));curNode.absX=parseInt(getParam('fixedabsx',curNode.title));curNode.absY=parseInt(getParam('fixedabsy',curNode.title));curNode.offY=(getParam('offsety',curNode.title)!='')?parseInt(getParam('offsety',curNode.title)):10;curNode.offX=(getParam('offsetx',curNode.title)!='')?parseInt(getParam('offsetx',curNode.title)):10;curNode.fade=(getParam('fade',curNode.title)=='on')?true:false;curNode.fadespeed=(getParam('fadespeed',curNode.title)!='')?getParam('fadespeed',curNode.title):0.04;curNode.delay=(getParam('delay',curNode.title)!='')?parseInt(getParam('delay',curNode.title)):0;if(getParam('requireclick',curNode.title)=='on'){curNode.requireclick=true;document.all?curNode.attachEvent('onclick',showHideBox):curNode.addEventListener('click',showHideBox,false);document.all?curNode.attachEvent('onmouseover',hideBox):curNode.addEventListener('mouseover',hideBox,false);}
else{if(getParam('doubleclickstop',curNode.title)!='off'){document.all?curNode.attachEvent('ondblclick',pauseBox):curNode.addEventListener('dblclick',pauseBox,false);}
if(getParam('singleclickstop',curNode.title)=='on'){document.all?curNode.attachEvent('onclick',pauseBox):curNode.addEventListener('click',pauseBox,false);}}
curNode.windowLock=getParam('windowlock',curNode.title).toLowerCase()=='off'?false:true;curNode.title='';curNode.hasbox=1;}
else
curNode.hasbox=2;}
function getParam(param,list){var reg=new RegExp('([^a-zA-Z]'+param+'|^'+param+')\\s*=\\s*\\[\\s*(((\\[\\[)|(\\]\\])|([^\\]\\[]))*)\\s*\\]');var res=reg.exec(list);var returnvar;if(res)
return res[2].replace('[[','[').replace(']]',']');else
return'';}
function Left(elem){var x=0;if(elem.calcLeft)
return elem.calcLeft;var oElem=elem;while(elem){if((elem.currentStyle)&&(!isNaN(parseInt(elem.currentStyle.borderLeftWidth)))&&(x!=0))
x+=parseInt(elem.currentStyle.borderLeftWidth);x+=elem.offsetLeft;elem=elem.offsetParent;}
oElem.calcLeft=x;return x;}
function Top(elem){var x=0;if(elem.calcTop)
return elem.calcTop;var oElem=elem;while(elem){if((elem.currentStyle)&&(!isNaN(parseInt(elem.currentStyle.borderTopWidth)))&&(x!=0))
x+=parseInt(elem.currentStyle.borderTopWidth);x+=elem.offsetTop;elem=elem.offsetParent;}
oElem.calcTop=x;return x;}
var ah,ab;function applyStyles(){if(ab)
oDv.removeChild(dvBdy);if(ah)
oDv.removeChild(dvHdr);dvHdr=document.createElement("div");dvBdy=document.createElement("div");CBE.boCSSBDY?dvBdy.className=CBE.boCSSBDY:defBdyStyle();CBE.boCSSHDR?dvHdr.className=CBE.boCSSHDR:defHdrStyle();dvHdr.innerHTML=CBE.boHDR;dvBdy.innerHTML=CBE.boBDY;ah=false;ab=false;if(CBE.boHDR!=''){oDv.appendChild(dvHdr);ah=true;}
if(CBE.boBDY!=''){oDv.appendChild(dvBdy);ab=true;}}
var CSE,iterElem,LSE,CBE,LBE,totalScrollLeft,totalScrollTop,width,height;var ini=false;function SHW(){if(document.body&&(document.body.clientWidth!=0)){width=document.body.clientWidth;height=document.body.clientHeight;}
if(document.documentElement&&(document.documentElement.clientWidth!=0)&&(document.body.clientWidth+20>=document.documentElement.clientWidth)){width=document.documentElement.clientWidth;height=document.documentElement.clientHeight;}
return[width,height];}
var ID=null;function moveMouse(e){e?evt=e:evt=event;CSE=evt.target?evt.target:evt.srcElement;if(!CSE.hasbox){iElem=CSE;while((iElem.parentNode)&&(!iElem.hasbox)){scanBO(iElem);iElem=iElem.parentNode;}}
if((CSE!=LSE)&&(!isChild(CSE,dvHdr))&&(!isChild(CSE,dvBdy))){if(!CSE.boxItem){iterElem=CSE;while((iterElem.hasbox==2)&&(iterElem.parentNode))
iterElem=iterElem.parentNode;CSE.boxItem=iterElem;}
iterElem=CSE.boxItem;if(CSE.boxItem&&(CSE.boxItem.hasbox==1)){LBE=CBE;CBE=iterElem;if(CBE!=LBE){applyStyles();if(!CBE.requireclick)
if(CBE.fade){if(ID!=null)
clearTimeout(ID);ID=setTimeout("fadeIn("+CBE.fadespeed+")",CBE.delay);}
else{if(ID!=null)
clearTimeout(ID);COL=1;ID=setTimeout("oDv.style.visibility='visible';ID=null;",CBE.delay);}
if(CBE.IEbugfix){hideSelects();}
fixposx=!isNaN(CBE.fixX)?Left(CBE)+CBE.fixX:CBE.absX;fixposy=!isNaN(CBE.fixY)?Top(CBE)+CBE.fixY:CBE.absY;lockX=0;lockY=0;boxMove=true;ox=CBE.offX?CBE.offX:10;oy=CBE.offY?CBE.offY:10;}}
else if(!isChild(CSE,dvHdr)&&!isChild(CSE,dvBdy)&&(boxMove)){if((!isChild(CBE,CSE))||(CSE.tagName!='TABLE')){CBE=null;if(ID!=null)
clearTimeout(ID);fadeOut();showSelects();}}
LSE=CSE;}
else if(((isChild(CSE,dvHdr)||isChild(CSE,dvBdy))&&(boxMove))){totalScrollLeft=0;totalScrollTop=0;iterElem=CSE;while(iterElem){if(!isNaN(parseInt(iterElem.scrollTop)))
totalScrollTop+=parseInt(iterElem.scrollTop);if(!isNaN(parseInt(iterElem.scrollLeft)))
totalScrollLeft+=parseInt(iterElem.scrollLeft);iterElem=iterElem.parentNode;}
if(CBE!=null){boxLeft=Left(CBE)-totalScrollLeft;boxRight=parseInt(Left(CBE)+CBE.offsetWidth)-totalScrollLeft;boxTop=Top(CBE)-totalScrollTop;boxBottom=parseInt(Top(CBE)+CBE.offsetHeight)-totalScrollTop;doCheck();}}
if(boxMove&&CBE){bodyScrollTop=document.documentElement&&document.documentElement.scrollTop?document.documentElement.scrollTop:document.body.scrollTop;bodyScrollLet=document.documentElement&&document.documentElement.scrollLeft?document.documentElement.scrollLeft:document.body.scrollLeft;mouseX=evt.pageX?evt.pageX-bodyScrollLet:evt.clientX-document.body.clientLeft;mouseY=evt.pageY?evt.pageY-bodyScrollTop:evt.clientY-document.body.clientTop;if((CBE)&&(CBE.windowLock)){mouseY<-oy?lockY=-mouseY-oy:lockY=0;mouseX<-ox?lockX=-mouseX-ox:lockX=0;mouseY>(SHW()[1]-oDv.offsetHeight-oy)?lockY=-mouseY+SHW()[1]-oDv.offsetHeight-oy:lockY=lockY;mouseX>(SHW()[0]-dvBdy.offsetWidth-ox)?lockX=-mouseX-ox+SHW()[0]-dvBdy.offsetWidth:lockX=lockX;}
oDv.style.left=((fixposx)||(fixposx==0))?fixposx:bodyScrollLet+mouseX+ox+lockX+"px";oDv.style.top=((fixposy)||(fixposy==0))?fixposy:bodyScrollTop+mouseY+oy+lockY+"px";}}
function doCheck(){if((mouseX<boxLeft)||(mouseX>boxRight)||(mouseY<boxTop)||(mouseY>boxBottom)){if(!CBE.requireclick)
fadeOut();if(CBE.IEbugfix){showSelects();}
CBE=null;}}
function pauseBox(e){e?evt=e:evt=event;boxMove=false;evt.cancelBubble=true;}
function showHideBox(e){oDv.style.visibility=(oDv.style.visibility!='visible')?'visible':'hidden';}
function hideBox(e){oDv.style.visibility='hidden';}
var COL=0;var stopfade=false;function fadeIn(fs){ID=null;COL=0;oDv.style.visibility='visible';fadeIn2(fs);}
function fadeIn2(fs){COL=COL+fs;COL=(COL>1)?1:COL;oDv.style.filter='alpha(opacity='+parseInt(100*COL)+')';oDv.style.opacity=COL;if(COL<1)
setTimeout("fadeIn2("+fs+")",20);}
function fadeOut(){oDv.style.visibility='hidden';}
function isChild(s,d){while(s){if(s==d)
return true;s=s.parentNode;}
return false;}
var cSrc;function checkMove(e){e?evt=e:evt=event;cSrc=evt.target?evt.target:evt.srcElement;if((!boxMove)&&(!isChild(cSrc,oDv))){fadeOut();if(CBE&&CBE.IEbugfix){showSelects();}
boxMove=true;CBE=null;}}
function showSelects(){var elements=document.getElementsByTagName("select");for(i=0;i<elements.length;i++){elements[i].style.visibility='visible';}}
function hideSelects(){var elements=document.getElementsByTagName("select");for(i=0;i<elements.length;i++){elements[i].style.visibility='hidden';}};function resizeColumns()
{var leftColumn=document.getElementById("lCol");var rightColumn=document.getElementById("rCol");var leftVisualPadding=document.getElementById("left-visualPadding");var rightVisualPadding=document.getElementById("right-visualPadding");if(leftVisualPadding)
leftVisualPadding.style.height="auto";if(rightVisualPadding)
rightVisualPadding.style.height="auto";var maxHeight=0;if(leftColumn&&rightColumn)
maxHeight=Math.max(leftColumn.offsetHeight,rightColumn.offsetHeight);var IE_left=0;var IE_right=0;if(msieversion()==6)
{IE_left=19;}
if(leftVisualPadding)
leftVisualPadding.style.height=(maxHeight-leftColumn.offsetHeight+IE_left)+"px";if(rightVisualPadding)
rightVisualPadding.style.height=(maxHeight-rightColumn.offsetHeight+IE_right)+"px";}
function msieversion()
{var ua=window.navigator.userAgent
var msie=ua.indexOf("MSIE ")
if(msie>0)
return parseInt(ua.substring(msie+5,ua.indexOf(".",msie)))
else
return 0}
function init()
{resizeColumns();window.onresize=function(){resizeColumns();}}
