
(function(){if(window.jQuery)var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return new jQuery.prototype.init(selector,context);};if(window.$)var _$=window.$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;var isSimple=/^.[^:#\[\.]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}else if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem)if(elem.id!=match[3])return jQuery().find(selector);else{this[0]=elem;this.length=1;return this;}else
selector=[];}}else
return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"1.2.3",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;this.each(function(i){if(this==elem)ret=i;});return ret;},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],name)||undefined;else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return!selector?this:this.pushStack(jQuery.merge(this.get(),selector.constructor==String?jQuery(selector).get():selector.length!=undefined&&(!selector.nodeName||jQuery.nodeName(selector,"form"))?selector:[selector]));},is:function(selector){return selector?jQuery.multiFilter(selector,this).length>0:false;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=value.constructor==Array?value:[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.length?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value==null){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data==undefined&&this.length)data=jQuery.data(this[0],key);return data==null&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script")){scripts=scripts.add(elem);}else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.prototype.init.prototype=jQuery.prototype;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);}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==1){target=this;i=0;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){if(target===options[name])continue;if(deep&&options[name]&&typeof options[name]=="object"&&target[name]&&!options[name].nodeType)target[name]=jQuery.extend(target[name],options[name]);else if(options[name]!=undefined)target[name]=options[name];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,windowData={};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.appendChild(script);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!=undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){if(args){if(object.length==undefined){for(var name in object)if(callback.apply(object[name],args)===false)break;}else
for(var i=0,length=object.length;i<length;i++)if(callback.apply(object[i],args)===false)break;}else{if(object.length==undefined){for(var name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var i=0,length=object.length,value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret;function color(elem){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=elem.style.outline;elem.style.outline="0 solid black";elem.style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&elem.style&&elem.style[name])ret=elem.style[name];else if(document.defaultView&&document.defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var getComputedStyle=document.defaultView.getComputedStyle(elem,null);if(getComputedStyle&&!color(elem))ret=getComputedStyle.getPropertyValue(name);else{var swap=[],stack=[];for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(var i=0;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(getComputedStyle&&getComputedStyle.getPropertyValue(name))||"";for(var i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left,runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem=elem.toString();if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem.setAttribute(name,""+value);}if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(typeof array!="array")for(var i=0,length=array.length;i<length;i++)ret.push(array[i]);else
ret=array.slice(0);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){if(jQuery.browser.msie){for(var i=0;second[i];i++)if(second[i].nodeType!=8)first.push(second[i]);}else
for(var i=0;second[i];i++)first.push(second[i]);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)||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&&value!=undefined){if(value.constructor!=Array)value=[value];ret=ret.concat(value);}}return ret;}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength",selectedIndex:"selectedIndex",defaultValue:"defaultValue",tagName:"tagName",nodeName:"nodeName"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[];var cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem))r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval!=undefined)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(arguments.callee.elem,arguments);return val;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data||[]);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event)data.unshift(this.fix({type:type,target:elem}));data[0].type=type;if(exclusive)data[0].exclusive=true;if(jQuery.isFunction(jQuery.data(elem,"handle")))val=jQuery.data(elem,"handle").apply(elem,data);if(!fn&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var handlers=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in handlers){var handler=handlers[j];args[0].handler=handler;args[0].data=handler.data;if(!parts[1]&&!event.exclusive||handler.type==parts[1]){var ret=handler.apply(this,args);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}if(jQuery.browser.msie)event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=originalEvent.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;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){if(this[0])return jQuery.event.trigger(type,data,this[0],false,fn);return undefined;},toggle:function(){var args=arguments;return this.click(function(event){this.lastToggle=0==this.lastToggle?1:0;event.preventDefault();return args[this.lastToggle].apply(this,arguments)||false;});},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))return this.bind("load",url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=(new Date).getTime();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:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){var jsonp,jsre=/=\?(&|$)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="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&&s.type.toLowerCase()=="get"){var ts=(new Date()).getTime();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");if((!s.url.indexOf("http")||!s.url.indexOf("//"))&&s.dataType=="script"&&s.type.toLowerCase()=="get"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async,s.username,s.password);try{if(s.data)xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");xml.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend)s.beforeSend(xml);if(s.global)jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xml,status);complete();if(s.async)xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xml){xml.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xml,s]);}function complete(){if(s.complete)s.complete(xml,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xml;},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||r.status==1223||jQuery.browser.safari&&r.status==undefined;}catch(e){}return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.apply(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(!elem)return undefined;type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",array?jQuery.makeArray(array):[]);return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].apply(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.apply(this.elem,[this.now,this]);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=(new Date()).getTime();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done&&jQuery.isFunction(this.options.complete))this.options.complete.apply(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.fx.step={scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}};jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),fixed=jQuery.css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&jQuery.css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(jQuery.css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||jQuery.css(offsetChild,"position")=="absolute"))||(mozilla&&jQuery.css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}return results;};})();;(function(A){A.fn.overlabel=function(B){var D=A.extend({},A.fn.overlabel.defaults,B);var C=this.filter("label[for]").map(function(){var E=A(this);var J=E.attr("for");var H=document.getElementById(J);if(!H){return}var I=A.meta?A.extend({},D,E.data()):D;E.addClass(I.label_class);var F=function(){E.css(I.hide_css)};var G=function(){this.value||E.css(I.show_css)};A(H);A(H).parent().addClass(I.wrapper_class).end().focus(F).blur(G).each(F).each(G);return this});return D.filter?C:C.end()};A.fn.overlabel.defaults={label_class:"overlabel-apply",wrapper_class:"overlabel-wrapper",hide_css:{"text-indent":"-10000px"},show_css:{"text-indent":"0px","cursor":"text"},filter:false}})(jQuery);;(function(){var B;B=jQuery.fn.flash=function(G,F,D,I){var H=D||B.replace;F=B.copy(B.pluginOptions,F);if(!B.hasFlash(F.version)){if(F.expressInstall&&B.hasFlash(6,0,65)){var E={flashvars:{MMredirectURL:location,MMplayerType:"PlugIn",MMdoctitle:jQuery("title").text()}}}else{if(F.update){H=I||B.update}else{return this}}}G=B.copy(B.htmlOptions,E,G);return this.each(function(){H.call(this,B.copy(G))})};B.copy=function(){var F={},E={};for(var G=0;G<arguments.length;G++){var D=arguments[G];if(D==undefined){continue}jQuery.extend(F,D);if(D.flashvars==undefined){continue}jQuery.extend(E,D.flashvars)}F.flashvars=E;return F};B.hasFlash=function(){if(/hasFlash\=true/.test(location)){return true}if(/hasFlash\=false/.test(location)){return false}var E=B.hasFlash.playerVersion().match(/\d+/g);var F=String([arguments[0],arguments[1],arguments[2]]).match(/\d+/g)||String(B.pluginOptions.version).match(/\d+/g);for(var D=0;D<3;D++){E[D]=parseInt(E[D]||0);F[D]=parseInt(F[D]||0);if(E[D]<F[D]){return false}if(E[D]>F[D]){return true}}return true};B.hasFlash.playerVersion=function(){try{try{var D=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");try{D.AllowScriptAccess="always"}catch(E){return"6,0,0"}}catch(E){}return new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version").replace(/\D+/g,",").match(/^,?(.+),?$/)[1]}catch(E){try{if(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){return(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g,",").match(/^,?(.+),?$/)[1]}}catch(E){}}return"0,0,0"};B.htmlOptions={height:240,flashvars:{},pluginspage:"http://www.adobe.com/go/getflashplayer",src:"#",type:"application/x-shockwave-flash",width:320};B.pluginOptions={expressInstall:false,update:true,version:"6.0.65"};B.replace=function(D){this.innerHTML='<div class="alt">'+this.innerHTML+"</div>";jQuery(this).addClass("flash-replaced").prepend(B.transform(D))};B.update=function(E){var D=String(location).split("?");D.splice(1,0,"?hasFlash=true&");D=D.join("");var F='<p>This content requires the Flash Player. <a href="http://www.adobe.com/go/getflashplayer">Download Flash Player</a>. Already have Flash Player? <a href="'+D+'">Click here.</a></p>';this.innerHTML='<span class="alt">'+this.innerHTML+"</span>";jQuery(this).addClass("flash-update")};function A(){var E="";for(var D in this){if(typeof this[D]!="function"){E+=D+'="'+this[D]+'" '}}return E}function C(){var E="";for(var D in this){if(typeof this[D]!="function"){E+=D+"="+encodeURIComponent(this[D])+"&"}}return E.replace(/&$/,"")}B.transform=function(D){D.toString=A;if(D.flashvars){D.flashvars.toString=C}return"<embed "+String(D)+"/>"};if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){}})}})();;jQuery.extend(jQuery.fn,{validate:function(A){var B=new jQuery.validator(A,this[0]);var B=jQuery.data(this[0],"validator");if(B){return B}B=new jQuery.validator(A,this[0]);jQuery.data(this[0],"validator",B);if(B.settings.onsubmit){this.find("input.cancel:submit").click(function(){B.cancelSubmit=true});this.submit(function(C){if(B.settings.debug){C.preventDefault()}function D(){if(B.settings.submitHandler){B.settings.submitHandler.call(B,B.currentForm);return false}return true}if(B.cancelSubmit){B.cancelSubmit=false;return D()}if(B.form()){return D()}else{B.focusInvalid();return false}})}return B},push:function(A){return this.setArray(jQuery.merge(this.get(),A))}});jQuery.extend(jQuery.expr[":"],{blank:"!jQuery.trim(a.value)",filled:"!!jQuery.trim(a.value)",unchecked:"!a.checked"});jQuery.format=function(A,B){if(arguments.length==1){return function(){var C=jQuery.makeArray(arguments);C.unshift(A);return jQuery.format.apply(this,C)}}if(arguments.length>2&&B.constructor!=Array){B=jQuery.makeArray(arguments).slice(1)}if(B.constructor!=Array){B=[B]}jQuery.each(B,function(C,D){A=A.replace(new RegExp("\\{"+C+"\\}","g"),D)});return A};jQuery.validator=function(A,B){this.settings=jQuery.extend({},jQuery.validator.defaults,A);this.currentForm=B;this.labelContainer=jQuery(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||jQuery(B);this.containers=jQuery(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.invalid={};this.reset();this.refresh()};jQuery.extend(jQuery.validator,{defaults:{messages:{},errorClass:"error",errorElement:"label",focusInvalid:true,errorContainer:jQuery([]),errorLabelContainer:jQuery([]),onsubmit:true,ignore:[],onblur:function(A){if(!this.checkable(A)&&(A.name in this.submitted||!this.required(A))){this.element(A)}},onkeyup:function(A){if(A.name in this.submitted||A==this.lastElement){this.element(A)}},onclick:function(A){if(A.name in this.submitted){this.element(A)}}},setDefaults:function(A){jQuery.extend(jQuery.validator.defaults,A)},messages:{required:"This field is required.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",dateDE:"Bitte geben Sie ein gültiges Datum ein.",number:"Please enter a valid number.",numberDE:"Bitte geben Sie eine Nummer ein.",digits:"Please enter only digits",creditcard:"Please enter a valid credit card.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxLength:jQuery.format("Please enter a value no longer than {0} characters."),minLength:jQuery.format("Please enter a value of at least {0} characters."),rangeLength:jQuery.format("Please enter a value between {0} and {1} characters long."),rangeValue:jQuery.format("Please enter a value between {0} and {1}."),maxValue:jQuery.format("Please enter a value less than or equal to {0}."),minValue:jQuery.format("Please enter a value greater than or equal to {0}.")},prototype:{form:function(){this.prepareForm();for(var A=0;this.elements[A];A++){this.check(this.elements[A])}jQuery.extend(this.submitted,this.errorMap);this.invalid=jQuery.extend({},this.errorMap);this.settings.invalidHandler&&this.settings.invalidHandler.call(this);this.showErrors();return this.valid()},element:function(B){B=this.clean(B);this.lastElement=B;this.prepareElement(B);var A=this.check(B);if(A){delete this.invalid[B.name]}else{this.invalid[B.name]=true}if(!this.numberOfInvalids()){this.toHide.push(this.containers)}this.showErrors();return A},showErrors:function(A){if(A){jQuery.extend(this.errorMap,A);this.errorList=[];for(name in A){this.errorList.push({message:A[name],element:jQuery("[@name='"+name+"']:first",this.currentForm)[0]})}this.successList=jQuery.grep(this.successList,function(B){return!(B.name in A)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){if(jQuery.fn.resetForm){jQuery(this.currentForm).resetForm()}this.prepareForm();this.hideErrors();this.elements.removeClass(this.settings.errorClass)},numberOfInvalids:function(){var A=0;for(i in this.invalid){A++}return A},hideErrors:function(){this.addWrapper(this.toHide).hide()},valid:function(){return this.size()==0},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid){try{jQuery(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus()}catch(A){}}},findLastActive:function(){var A=this.lastActive;return A&&jQuery.grep(this.errorList,function(B){return B.element.name==A.name}).length==1&&A},refresh:function(){var B=this;B.rulesCache={};function C(){B.lastActive=this;if(B.settings.focusCleanup&&!B.blockFocusCleanup){jQuery(this).removeClass(B.settings.errorClass);B.errorsFor(this).hide()}}this.elements=jQuery(this.currentForm).find("input, select, textarea").not(":submit, :reset").not("[@disabled]").not(this.settings.ignore).filter(function(){!this.name&&B.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in B.rulesCache||!B.rules(this).length){return false}B.rulesCache[this.name]=B.rules(this);return true});this.elements.focus(C);B.settings.onblur&&B.elements.blur(function(){B.settings.onblur.call(B,this)});B.settings.onkeyup&&B.elements.keyup(function(){B.settings.onkeyup.call(B,this)});if(B.settings.onclick){var A=jQuery([]);B.elements.each(function(){if(B.checkable(this)){A.push(B.checkableGroup(this))}});A.click(function(){B.settings.onclick.call(B,this)})}},clean:function(A){return jQuery(A)[0]},errors:function(){return jQuery(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext)},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=jQuery([]);this.toHide=jQuery([])},prepareForm:function(){this.reset();this.toHide=this.errors().push(this.containers)},prepareElement:function(A){this.reset();this.toHide=this.errorsFor(this.clean(A))},check:function(C){C=this.clean(C);jQuery(C).removeClass(this.settings.errorClass);var F=this.rulesCache[C.name];for(var B=0;F[B];B++){var E=F[B];try{var A=jQuery.validator.methods[E.method].call(this,jQuery.trim(C.value),C,E.parameters);if(A===-1){break}if(!A){jQuery(C).addClass(this.settings.errorClass);this.formatAndAdd(E,C);return false}}catch(D){this.settings.debug&&window.console&&console.warn("exception occured when checking element "+C.id+", check the '"+E.method+"' method");throw D}}if(F.length&&this.settings.success){this.successList.push(C)}return true},configuredMessage:function(C,B){var A=this.settings.messages[C];return A&&(A.constructor==String?A:A[B])},defaultMessage:function(A,B){return this.configuredMessage(A.name,B)||A.title||jQuery.validator.messages[B]||"<strong>Warning: No message defined for "+A.name+"</strong>"},formatAndAdd:function(C,A){var B=this.defaultMessage(A,C.method);if(typeof B=="function"){B=B.call(this,C.parameters,A)}this.errorList.push({message:B,element:A});this.errorMap[A.name]=B;this.submitted[A.name]=B},addWrapper:function(A){if(this.settings.wrapper){A.push(A.parents(this.settings.wrapper))}return A},defaultShowErrors:function(){for(var B=0;this.errorList[B];B++){var A=this.errorList[B];this.showLabel(A.element,A.message)}if(this.errorList.length){this.toShow.push(this.containers)}for(var B=0;this.successList[B];B++){this.showLabel(this.successList[B])}this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show()},showLabel:function(B,C){var A=this.errorsFor(B);if(A.length){A.removeClass().addClass(this.settings.errorClass);if(this.settings.overrideErrors||A.attr("generated")){A.html(C)}}else{A=jQuery("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(B),generated:true}).addClass(this.settings.errorClass).html(C||"");if(this.settings.wrapper){A=A.hide().show().wrap("<"+this.settings.wrapper+">").parent()}if(!this.labelContainer.append(A).length){this.settings.errorPlacement?this.settings.errorPlacement(A,jQuery(B)):A.insertAfter(B)}}if(!C&&this.settings.success){A.text("");typeof this.settings.success=="string"?A.addClass(this.settings.success):this.settings.success(A)}this.toShow.push(A)},errorsFor:function(A){return this.errors().filter("[@for='"+this.idOrName(A)+"']")},idOrName:function(A){return this.checkable(A)?A.name:A.id||A.name},rules:function(B){var C=this.data(B);if(!C){return[]}var D=[];if(typeof C=="string"){var A={};A[C]=true;C=A}jQuery.each(C,function(E,F){D[D.length]={method:E,parameters:F}});return D},data:function(A){return this.settings.rules?this.settings.rules[A.name]:this.settings.meta?jQuery(A).metadata()[this.settings.meta]:jQuery(A).metadata()},checkable:function(A){return/radio|checkbox/i.test(A.type)},checkableGroup:function(A){return jQuery(A.form||document).find('[@name="'+A.name+'"]')},getLength:function(B,A){switch(A.nodeName.toLowerCase()){case"select":return jQuery("option:selected",A).length;case"input":if(this.checkable(A)){return this.checkableGroup(A).filter(":checked").length}}return B.length},depend:function(B,A){return this.dependTypes[typeof B]?this.dependTypes[typeof B](B,A):true},dependTypes:{"boolean":function(B,A){return B},"string":function(B,A){return!!jQuery(B,A.form).length},"function":function(B,A){return B(A)}},required:function(A){return!jQuery.validator.methods.required.call(this,jQuery.trim(A.value),A)}},methods:{required:function(C,B,D){if(!this.depend(D,B)){return-1}switch(B.nodeName.toLowerCase()){case"select":var A=jQuery("option:selected",B);return A.length>0&&(B.type=="select-multiple"||(jQuery.browser.msie&&!(A[0].attributes["value"].specified)?A[0].text:A[0].value).length>0);case"input":if(this.checkable(B)){return this.getLength(C,B)>0}default:return C.length>0}},minLength:function(B,A,C){return this.required(A)||this.getLength(B,A)>=C},maxLength:function(B,A,C){return this.required(A)||this.getLength(B,A)<=C},rangeLength:function(C,A,D){var B=this.getLength(C,A);return this.required(A)||(B>=D[0]&&B<=D[1])},minValue:function(B,A,C){return this.required(A)||B>=C},maxValue:function(B,A,C){return this.required(A)||B<=C},rangeValue:function(B,A,C){return this.required(A)||(B>=C[0]&&B<=C[1])},email:function(B,A){return this.required(A)||/^[^\s,;]+@([^\s.,;]+\.)+[\w-]{2,}$/i.test(B)},url:function(B,A){return this.required(A)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)*(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(B)},date:function(B,A){return this.required(A)||!/Invalid|NaN/.test(new Date(B))},dateISO:function(B,A){return this.required(A)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(B)},dateDE:function(B,A){return this.required(A)||/^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(B)},number:function(B,A){return this.required(A)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(B)},numberDE:function(B,A){return this.required(A)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(B)},digits:function(B,A){return this.required(A)||/^\d+$/.test(B)},creditcard:function(E,B){if(this.required(B)){return true}var F=0,D=0,A=false;E=E.replace(/\D/g,"");for(n=E.length-1;n>=0;n--){var C=E.charAt(n);var D=parseInt(C,10);if(A){if((D*=2)>9){D-=9}}F+=D;A=!A}return(F%10)==0},accept:function(B,A,C){C=typeof C=="string"?C:"png|jpe?g|gif";return this.required(A)||B.match(new RegExp(".("+C+")$","i"))},equalTo:function(B,A,C){return B==jQuery(C).val()}},addMethod:function(A,C,B){jQuery.validator.methods[A]=C;jQuery.validator.messages[A]=B}});(function($){$.fn.lightBox=function(settings){settings=jQuery.extend({overlayBgColor:'#000',overlayOpacity:0.8,imageLoading:'/fileadmin/Templates/Assets/p/i/lightbox-ico-loading.gif',imageBtnPrev:'/fileadmin/Templates/Assets/p/i/lightbox-btn-prev.gif',imageBtnNext:'/fileadmin/Templates/Assets/p/i/lightbox-btn-next.gif',imageBtnClose:'/fileadmin/Templates/Assets/p/i/lightbox-btn-close.gif',imageBlank:'/fileadmin/Templates/Assets/p/i/lightbox-blank.gif',containerBorderSize:10,containerResizeSpeed:400,txtImage:'Image',txtOf:'of',keyToClose:'c',keyToPrev:'p',keyToNext:'n',imageArray:[],activeImage:0},settings);var jQueryMatchedObj=this;function _initialize(){_start(this,jQueryMatchedObj);return false;}
function _start(objClicked,jQueryMatchedObj){$('embed, object, select').css({'visibility':'hidden'});_set_interface();settings.imageArray.length=0;settings.activeImage=0;if(jQueryMatchedObj.length==1){settings.imageArray.push(new Array(objClicked.getAttribute('href'),objClicked.getAttribute('title')));}else{for(var i=0;i<jQueryMatchedObj.length;i++){settings.imageArray.push(new Array(jQueryMatchedObj[i].getAttribute('href'),jQueryMatchedObj[i].getAttribute('title')));}}
while(settings.imageArray[settings.activeImage][0]!=objClicked.getAttribute('href')){settings.activeImage++;}
_set_image_to_view();}
function _set_interface(){$('body').append('<div id="jquery-overlay"></div><div id="jquery-lightbox"><div id="lightbox-container-image-box"><div id="lightbox-container-image"><img id="lightbox-image"><div style="" id="lightbox-nav"><a href="#" id="lightbox-nav-btnPrev"></a><a href="#" id="lightbox-nav-btnNext"></a></div><div id="lightbox-loading"><a href="#" id="lightbox-loading-link"><img src="'+settings.imageLoading+'"></a></div></div></div><div id="lightbox-container-image-data-box"><div id="lightbox-container-image-data"><div id="lightbox-image-details"><span id="lightbox-image-details-caption"></span><span id="lightbox-image-details-currentNumber"></span></div><div id="lightbox-secNav"><a href="#" id="lightbox-secNav-btnClose"><img src="'+settings.imageBtnClose+'"></a></div></div></div></div>');var arrPageSizes=___getPageSize();$('#jquery-overlay').css({backgroundColor:settings.overlayBgColor,opacity:settings.overlayOpacity,width:arrPageSizes[0],height:arrPageSizes[1]}).fadeIn();var arrPageScroll=___getPageScroll();$('#jquery-lightbox').css({top:arrPageScroll[1]+(arrPageSizes[3]/10),left:arrPageScroll[0]}).show();$('#jquery-overlay,#jquery-lightbox').click(function(){_finish();});$('#lightbox-loading-link,#lightbox-secNav-btnClose').click(function(){_finish();return false;});$(window).resize(function(){var arrPageSizes=___getPageSize();$('#jquery-overlay').css({width:arrPageSizes[0],height:arrPageSizes[1]});var arrPageScroll=___getPageScroll();$('#jquery-lightbox').css({top:arrPageScroll[1]+(arrPageSizes[3]/10),left:arrPageScroll[0]});});}
function _set_image_to_view(){$('#lightbox-loading').show();$('#lightbox-image,#lightbox-nav,#lightbox-nav-btnPrev,#lightbox-nav-btnNext,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();var objImagePreloader=new Image();objImagePreloader.onload=function(){$('#lightbox-image').attr('src',settings.imageArray[settings.activeImage][0]);_resize_container_image_box(objImagePreloader.width,objImagePreloader.height);objImagePreloader.onload=function(){};};objImagePreloader.src=settings.imageArray[settings.activeImage][0];};function _resize_container_image_box(intImageWidth,intImageHeight){var intCurrentWidth=$('#lightbox-container-image-box').width();var intCurrentHeight=$('#lightbox-container-image-box').height();var intWidth=(intImageWidth+(settings.containerBorderSize*2));var intHeight=(intImageHeight+(settings.containerBorderSize*2));var intDiffW=intCurrentWidth-intWidth;var intDiffH=intCurrentHeight-intHeight;$('#lightbox-container-image-box').animate({width:intWidth,height:intHeight},settings.containerResizeSpeed,function(){_show_image();});if((intDiffW==0)&&(intDiffH==0)){if($.browser.msie){___pause(250);}else{___pause(100);}}
$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({height:intImageHeight+(settings.containerBorderSize*2)});$('#lightbox-container-image-data-box').css({width:intImageWidth});};function _show_image(){$('#lightbox-loading').hide();$('#lightbox-image').fadeIn(function(){_show_image_data();_set_navigation();});_preload_neighbor_images();};function _show_image_data(){$('#lightbox-container-image-data-box').slideDown('fast');$('#lightbox-image-details-caption').hide();if(settings.imageArray[settings.activeImage][1]){$('#lightbox-image-details-caption').html(settings.imageArray[settings.activeImage][1]).show();}
if(settings.imageArray.length>1){$('#lightbox-image-details-currentNumber').html(settings.txtImage+' '+(settings.activeImage+1)+' '+settings.txtOf+' '+settings.imageArray.length).show();}}
function _set_navigation(){$('#lightbox-nav').show();$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({'background':'transparent url('+settings.imageBlank+') no-repeat'});if(settings.activeImage!=0){$('#lightbox-nav-btnPrev').unbind().hover(function(){$(this).css({'background':'url('+settings.imageBtnPrev+') left 15% no-repeat'});},function(){$(this).css({'background':'transparent url('+settings.imageBlank+') no-repeat'});}).show().bind('click',function(){settings.activeImage=settings.activeImage-1;_set_image_to_view();return false;});}
if(settings.activeImage!=(settings.imageArray.length-1)){$('#lightbox-nav-btnNext').unbind().hover(function(){$(this).css({'background':'url('+settings.imageBtnNext+') right 15% no-repeat'});},function(){$(this).css({'background':'transparent url('+settings.imageBlank+') no-repeat'});}).show().bind('click',function(){settings.activeImage=settings.activeImage+1;_set_image_to_view();return false;});}
_enable_keyboard_navigation();}
function _enable_keyboard_navigation(){$(document).keydown(function(objEvent){_keyboard_action(objEvent);});}
function _disable_keyboard_navigation(){$(document).unbind();}
function _keyboard_action(objEvent){if(objEvent==null){keycode=event.keyCode;escapeKey=27;}else{keycode=objEvent.keyCode;escapeKey=objEvent.DOM_VK_ESCAPE;}
key=String.fromCharCode(keycode).toLowerCase();if((key==settings.keyToClose)||(key=='x')||(keycode==escapeKey)){_finish();}
if((key==settings.keyToPrev)||(keycode==37)){if(settings.activeImage!=0){settings.activeImage=settings.activeImage-1;_set_image_to_view();_disable_keyboard_navigation();}}
if((key==settings.keyToNext)||(keycode==39)){if(settings.activeImage!=(settings.imageArray.length-1)){settings.activeImage=settings.activeImage+1;_set_image_to_view();_disable_keyboard_navigation();}}}
function _preload_neighbor_images(){if((settings.imageArray.length-1)>settings.activeImage){objNext=new Image();objNext.src=settings.imageArray[settings.activeImage+1][0];}
if(settings.activeImage>0){objPrev=new Image();objPrev.src=settings.imageArray[settings.activeImage-1][0];}}
function _finish(){$('#jquery-lightbox').remove();$('#jquery-overlay').fadeOut(function(){$('#jquery-overlay').remove();});$('embed, object, select').css({'visibility':'visible'});}
function ___getPageSize(){var xScroll,yScroll;if(window.innerHeight&&window.scrollMaxY){xScroll=window.innerWidth+window.scrollMaxX;yScroll=window.innerHeight+window.scrollMaxY;}else if(document.body.scrollHeight>document.body.offsetHeight){xScroll=document.body.scrollWidth;yScroll=document.body.scrollHeight;}else{xScroll=document.body.offsetWidth;yScroll=document.body.offsetHeight;}
var windowWidth,windowHeight;if(self.innerHeight){if(document.documentElement.clientWidth){windowWidth=document.documentElement.clientWidth;}else{windowWidth=self.innerWidth;}
windowHeight=self.innerHeight;}else if(document.documentElement&&document.documentElement.clientHeight){windowWidth=document.documentElement.clientWidth;windowHeight=document.documentElement.clientHeight;}else if(document.body){windowWidth=document.body.clientWidth;windowHeight=document.body.clientHeight;}
if(yScroll<windowHeight){pageHeight=windowHeight;}else{pageHeight=yScroll;}
if(xScroll<windowWidth){pageWidth=xScroll;}else{pageWidth=windowWidth;}
arrayPageSize=new Array(pageWidth,pageHeight,windowWidth,windowHeight);return arrayPageSize;};function ___getPageScroll(){var xScroll,yScroll;if(self.pageYOffset){yScroll=self.pageYOffset;xScroll=self.pageXOffset;}else if(document.documentElement&&document.documentElement.scrollTop){yScroll=document.documentElement.scrollTop;xScroll=document.documentElement.scrollLeft;}else if(document.body){yScroll=document.body.scrollTop;xScroll=document.body.scrollLeft;}
arrayPageScroll=new Array(xScroll,yScroll);return arrayPageScroll;};function ___pause(ms){var date=new Date();curDate=null;do{var curDate=new Date();}
while(curDate-date<ms);};return this.unbind('click').click(_initialize);};})(jQuery);var Cufon=(function(){var K=function(){return K.replace.apply(null,arguments)};var U=K.DOM={ready:(function(){var Z=false,b={loaded:1,complete:1};var Y=[],a=function(){if(Z){return}Z=true;for(var c;c=Y.shift();c()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){b[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(c){setTimeout(arguments.callee,1)}})()}O(window,"load",a);return function(c){if(!arguments.length){a()}else{Z?c():Y.push(c)}}})()};var L=K.CSS={Size:function(Z,Y){this.value=parseFloat(Z);this.unit=String(Z).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/Y*this.value};this.convertFrom=function(a){return a/this.value*Y};this.toString=function(){return this.value+this.unit}},getStyle:function(Z){var Y=document.defaultView;if(Y&&Y.getComputedStyle){return new A(Y.getComputedStyle(Z,null))}if(Z.currentStyle){return new A(Z.currentStyle)}return new A(Z.style)},ready:(function(){var a=false;var Z=[],b=function(){a=true;for(var d;d=Z.shift();d()){}};var Y=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var c=F("link");U.ready(function(){var g=0,f;for(var e=0,d=c.length;f=c[e],e<d;++e){if(!f.disabled&&f.rel.toLowerCase()=="stylesheet"){++g}}if(document.styleSheets.length>=Y.length+g){b()}else{setTimeout(arguments.callee,10)}});return function(d){if(a){d()}else{Z.push(d)}}})(),supports:function(a,Z){var Y=document.createElement("span").style;if(Y[a]===undefined){return false}Y[a]=Z;return Y[a]===Z},textAlign:function(b,a,Y,Z){if(a.get("textAlign")=="right"){if(Y>0){b=" "+b}}else{if(Y<Z-1){b+=" "}}return b},textDecoration:function(d,c){if(!c){c=this.getStyle(d)}var Z={underline:null,overline:null,"line-through":null};for(var Y=d;Y.parentNode&&Y.parentNode.nodeType==1;){var b=true;for(var a in Z){if(Z[a]){continue}if(c.get("textDecoration").indexOf(a)!=-1){Z[a]=c.get("color")}b=false}if(b){break}c=this.getStyle(Y=Y.parentNode)}return Z},textShadow:I(function(c){if(c=="none"){return null}var b=[],d={},Y,Z=0;var a=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Y=a.exec(c)){if(Y[0]==","){b.push(d);d={},Z=0}else{if(Y[1]){d.color=Y[1]}else{d[["offX","offY","blur"][Z++]]=Y[2]}}}b.push(d);return b}),color:I(function(Z){var Y={};Y.color=Z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(b,a,c){Y.opacity=parseFloat(c);return"rgb("+a+")"});return Y}),textTransform:function(Z,Y){return Z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Y.get("textTransform")]||"toString"]()}};function Q(Z){var Y=this.face=Z.face;this.glyphs=Z.glyphs;this.w=Z.w;this.baseSize=parseInt(Y["units-per-em"],10);this.family=Y["font-family"].toLowerCase();this.weight=Y["font-weight"];this.style=Y["font-style"]||"normal";this.viewBox=(function(){var b=Y.bbox.split(/\s+/);var a={minX:parseInt(b[0],10),minY:parseInt(b[1],10),maxX:parseInt(b[2],10),maxY:parseInt(b[3],10)};a.width=a.maxX-a.minX,a.height=a.maxY-a.minY;a.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return a})();this.ascent=-parseInt(Y.ascent,10);this.descent=-parseInt(Y.descent,10);this.height=-this.ascent+this.descent}function E(){var Z={},Y={oblique:"italic",italic:"oblique"};this.add=function(a){(Z[a.style]||(Z[a.style]={}))[a.weight]=a};this.get=function(e,f){var d=Z[e]||Z[Y[e]]||Z.normal||Z.italic||Z.oblique;if(!d){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(d[f]){return d[f]}var b={1:1,99:0}[f%100],h=[],c,a;if(b===undefined){b=f>400}if(f==500){f=400}for(var g in d){g=parseInt(g,10);if(!c||g<c){c=g}if(!a||g>a){a=g}h.push(g)}if(f<c){f=c}if(f>a){f=a}h.sort(function(j,i){return(b?(j>f&&i>f)?j<i:j>i:(j<f&&i<f)?j>i:j<i)?-1:1});return d[h[0]]}}function P(){function a(c,d){if(c.contains){return c.contains(d)}return c.compareDocumentPosition(d)&16}function Y(d){var c=d.relatedTarget;if(!c||a(this,c)){return}Z(this)}function b(c){Z(this)}function Z(c){setTimeout(function(){K.replace(c,D.get(c).options,true)},10)}this.attach=function(c){if(c.onmouseenter===undefined){O(c,"mouseover",Y);O(c,"mouseout",Y)}else{O(c,"mouseenter",b);O(c,"mouseleave",b)}}}function X(){var a={},Y=0;function Z(b){return b.cufid||(b.cufid=++Y)}this.get=function(b){var c=Z(b);return a[c]||(a[c]={})}}function A(Y){var a={},Z={};this.get=function(b){return a[b]!=undefined?a[b]:Y[b]};this.getSize=function(c,b){return Z[c]||(Z[c]=new L.Size(this.get(c),b))};this.extend=function(b){for(var c in b){a[c]=b[c]}return this}}function O(Z,Y,a){if(Z.addEventListener){Z.addEventListener(Y,a,false)}else{if(Z.attachEvent){Z.attachEvent("on"+Y,function(){return a.call(Z,window.event)})}}}function R(Z,Y){var a=D.get(Z);if(a.options){return Z}if(Y.hover&&Y.hoverables[Z.nodeName.toLowerCase()]){B.attach(Z)}a.options=Y;return Z}function I(Y){var Z={};return function(a){if(!Z.hasOwnProperty(a)){Z[a]=Y.apply(null,arguments)}return Z[a]}}function C(d,c){if(!c){c=L.getStyle(d)}var Z=c.get("fontFamily").split(/\s*,\s*/),b;for(var a=0,Y=Z.length;a<Y;++a){b=Z[a].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(H[b]){return H[b].get(c.get("fontStyle"),c.get("fontWeight"))}}return null}function F(Y){return document.getElementsByTagName(Y)}function G(){var Y={},b;for(var a=0,Z=arguments.length;a<Z;++a){for(b in arguments[a]){Y[b]=arguments[a][b]}}return Y}function M(b,k,Z,m,c,a){var j=m.separate;if(j=="none"){return W[m.engine].apply(null,arguments)}var h=document.createDocumentFragment(),e;var f=k.split(N[j]),Y=(j=="words");if(Y&&S){if(/^\s/.test(k)){f.unshift("")}if(/\s$/.test(k)){f.push("")}}for(var g=0,d=f.length;g<d;++g){e=W[m.engine](b,Y?L.textAlign(f[g],Z,g,d):f[g],Z,m,c,a,g<d-1);if(e){h.appendChild(e)}}return h}function J(Z,g){var a,Y,d,f;for(var b=R(Z,g).firstChild;b;b=d){d=b.nextSibling;f=false;if(b.nodeType==1){if(!b.firstChild){continue}if(!/cufon/.test(b.className)){arguments.callee(b,g);continue}else{f=true}}if(!Y){Y=L.getStyle(Z).extend(g)}if(!a){a=C(Z,Y)}if(!a){continue}if(f){W[g.engine](a,null,Y,g,b,Z);continue}var e=b.data;if(e===""){continue}var c=M(a,e,Y,g,b,Z);if(c){b.parentNode.replaceChild(c,b)}else{b.parentNode.removeChild(b)}}}var S=" ".split(/\s+/).length==0;var D=new X();var B=new P();var V=[];var W={},H={},T={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(Y){return $$(Y)})||(window.$&&function(Y){return $(Y)})||(document.querySelectorAll&&function(Y){return document.querySelectorAll(Y)})||F),separate:"words",textShadow:"none"};var N={words:/\s+/,characters:""};K.now=function(){U.ready();return K};K.refresh=function(){var a=V.splice(0,V.length);for(var Z=0,Y=a.length;Z<Y;++Z){K.replace.apply(null,a[Z])}return K};K.registerEngine=function(Z,Y){if(!Y){return K}W[Z]=Y;return K.set("engine",Z)};K.registerFont=function(a){var Y=new Q(a),Z=Y.family;if(!H[Z]){H[Z]=new E()}H[Z].add(Y);return K.set("fontFamily",Z)};K.replace=function(a,Z,Y){Z=G(T,Z);if(!Z.engine){return K}if(typeof Z.textShadow=="string"){Z.textShadow=L.textShadow(Z.textShadow)}if(!Y){V.push(arguments)}if(a.nodeType||typeof a=="string"){a=[a]}L.ready(function(){for(var c=0,b=a.length;c<b;++c){var d=a[c];if(typeof d=="string"){K.replace(Z.selector(d),Z,true)}else{J(d,Z)}}});return K};K.set=function(Y,Z){T[Y]=Z;return K};return K})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode("@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{position:absolute;left:-10000in;font-size:1px}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}function B(C,D){return A(C,/(?:em|ex|%)$/i.test(D)?"1em":D)}function A(F,G){if(/px$/i.test(G)){return parseFloat(G)}var E=F.style.left,D=F.runtimeStyle.left;F.runtimeStyle.left=F.currentStyle.left;F.style.left=G;var C=F.style.pixelLeft;F.style.left=E;F.runtimeStyle.left=D;return C}return function(r,U,m,R,Y,s,h){var F=(U===null);if(F){U=Y.alt}var W=r.viewBox;var G=m.computedFontSize||(m.computedFontSize=new Cufon.CSS.Size(B(s,m.get("fontSize"))+"px",r.baseSize));var g=m.computedLSpacing;if(g==undefined){g=m.get("letterSpacing");m.computedLSpacing=g=(g=="normal")?0:~~G.convertFrom(A(s,g))}var O,H;if(F){O=Y;H=Y.firstChild}else{O=document.createElement("span");O.className="cufon cufon-vml";O.alt=U;H=document.createElement("span");H.className="cufon-vml-canvas";O.appendChild(H);if(R.printable){var p=document.createElement("span");p.className="cufon-alt";p.appendChild(document.createTextNode(U));O.appendChild(p)}if(!h){O.appendChild(document.createElement("cvml:group"))}}var x=O.style;var b=H.style;var D=G.convert(W.height),u=Math.ceil(D);var f=u/D;var e=W.minX,d=W.minY;b.height=u;b.top=Math.round(G.convert(d-r.ascent));b.left=Math.round(G.convert(e));x.height=G.convert(r.height)+"px";var K=R.enableTextDecoration?Cufon.CSS.textDecoration(s,m):{};var T=m.get("color");var v=Cufon.CSS.textTransform(U,m).split("");var C=0,c=0,L=null;var S,M,V=R.textShadow;for(var q=0,o=0,n=v.length;q<n;++q){S=r.glyphs[v[q]]||r.missingGlyph;if(S){C+=L=~~(S.w||r.w)+g}}if(L===null){return null}var N=-e+C+(W.width-L);var w=G.convert(N*f),j=Math.round(w);var a=N+","+W.height,E;var X="r"+a+"nsnf";for(q=0;q<n;++q){S=r.glyphs[v[q]]||r.missingGlyph;if(!S){continue}if(F){M=H.childNodes[o];if(M.firstChild){M.removeChild(M.firstChild)}}else{M=document.createElement("cvml:shape");H.appendChild(M)}M.stroked="f";M.coordsize=a;M.coordorigin=E=(e-c)+","+d;M.path=(S.d?"m"+S.d+"xe":"")+"m"+E+X;M.fillcolor=T;var t=M.style;t.width=j;t.height=u;if(V){var J=V[0],I=V[1];var Q=Cufon.CSS.color(J.color),P;var Z=document.createElement("cvml:shadow");Z.on="t";Z.color=Q.color;Z.offset=J.offX+","+J.offY;if(I){P=Cufon.CSS.color(I.color);Z.type="double";Z.color2=P.color;Z.offset2=I.offX+","+I.offY}Z.opacity=Q.opacity||(P&&P.opacity)||1;M.appendChild(Z)}c+=~~(S.w||r.w)+g;++o}x.width=Math.max(Math.ceil(G.convert(C*f)),0);return O}})());Cufon.registerFont({"w":180,"face":{"font-family":"Adobe Garamond Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 2 5 2 6 5 6 2 4 3","ascent":"261","descent":"-99","x-height":"5","cap-height":"1","bbox":"-14 -309.355 360 97","underline-thickness":"18","underline-position":"-18","stemh":"14","stemv":"27","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":90,"k":{"W":5,"V":5}},"\u00a0":{"w":90,"k":{"T":16,"Y":5}},"!":{"d":"40,5v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,20,9,20,21v0,12,-8,20,-20,20xm40,-233v26,2,18,12,15,43r-11,116v-2,2,-7,2,-9,0r-13,-148v0,-9,6,-11,18,-11","w":79},"\"":{"d":"44,-252v17,0,16,6,14,23r-10,58v-3,3,-5,3,-8,0r-12,-72v0,-8,6,-9,16,-9xm102,-252v18,0,16,7,13,23r-9,58v-3,3,-6,3,-9,0r-11,-72v0,-8,6,-9,16,-9","w":145},"#":{"d":"120,-145r-42,0r-16,58r43,0xm172,-145r-37,0r-15,58r35,0r-5,18r-36,0r-18,68r-14,0r18,-68r-43,0r-18,68r-14,0r18,-68r-40,0r6,-18r39,0r15,-58r-40,0r6,-18r39,0r16,-62r16,0r-17,62r42,0r16,-62r16,0r-17,62r37,0"},"$":{"d":"90,-138r10,-82v-66,5,-47,66,-10,82xm98,-103r-11,92v24,0,47,-10,47,-39v0,-16,-4,-36,-36,-53xm117,-258r-4,28v11,0,23,2,36,5v3,8,8,28,8,41v-1,3,-6,3,-8,1v-4,-11,-12,-30,-37,-36r-10,87v28,14,58,33,58,70v0,36,-29,62,-75,62r-4,34v-3,2,-9,2,-12,0r5,-35v-50,-4,-51,-11,-54,-58v1,-2,5,-4,8,-1v5,15,17,42,47,48r12,-96v-26,-11,-54,-31,-54,-65v0,-32,25,-56,69,-57v2,-11,-2,-37,15,-28"},"%":{"d":"288,-65v0,28,-16,70,-55,70v-39,0,-56,-42,-56,-70v0,-29,17,-70,56,-70v39,0,55,41,55,70xm262,-65v0,-19,-3,-60,-29,-60v-26,0,-30,41,-30,60v0,19,4,60,30,60v26,0,29,-41,29,-60xm126,-161v0,28,-16,70,-55,70v-39,0,-55,-42,-55,-70v0,-29,16,-69,55,-69v39,0,55,40,55,69xm100,-161v0,-19,-2,-59,-28,-59v-26,0,-30,40,-30,59v0,19,4,60,30,60v26,0,28,-41,28,-60xm229,-229r-147,243v-6,0,-10,-3,-10,-8r145,-241v4,0,9,2,12,6","w":303},"&":{"d":"183,-74v10,-14,38,-59,45,-83v1,-9,-33,0,-21,-15r80,-2v8,11,-8,10,-15,12v-20,3,-30,21,-41,39v-12,19,-27,39,-42,60v22,39,59,70,96,37v3,0,5,4,4,7v-14,18,-35,24,-57,24v-38,0,-47,-22,-60,-44v-21,23,-47,44,-79,44v-51,0,-70,-37,-70,-65v0,-37,26,-59,58,-78v-13,-9,-28,-23,-28,-44v0,-57,98,-65,97,-6v0,24,-18,34,-36,44v20,12,45,35,69,70xm90,-131v-18,9,-40,31,-40,60v-1,66,87,68,115,22v-17,-30,-46,-63,-75,-82xm102,-220v-38,7,-31,56,4,69v24,-11,32,-66,-4,-69","w":294},"\u2019":{"d":"37,-252v47,11,27,78,-14,84v-3,-1,-5,-5,-3,-8v25,-4,40,-47,10,-51v-5,0,-10,-3,-10,-10v0,-5,3,-15,17,-15","w":84,"k":{"v":18,"m":25,"\u2019":17,"d":36,"t":29,"r":25,"l":4,"s":29}},"(":{"d":"108,-248v-73,65,-73,236,0,301v0,4,-1,6,-5,6v-96,-54,-97,-258,0,-312v4,0,5,1,5,5","w":115,"k":{"W":-4,"V":-4,"J":-12,"T":-4,"Y":-4}},")":{"d":"7,53v74,-65,74,-236,0,-301v0,-4,1,-5,5,-5v96,54,97,258,0,312v-4,0,-5,-2,-5,-6","w":115},"*":{"d":"76,-243r3,46r45,-22v3,0,6,4,5,7r-42,29r41,29v1,3,0,7,-4,7r-45,-23r-3,47v-2,2,-7,2,-9,0r-4,-47r-45,23v-3,0,-5,-4,-4,-7r41,-29r-41,-29v-1,-3,1,-7,4,-7r45,22r4,-46v2,-2,6,-2,9,0","w":141},"+":{"d":"101,0r-21,0r0,-65r-59,0r0,-18r59,0r0,-59r21,0r0,59r58,0r0,18r-58,0r0,65"},",":{"d":"50,4v-3,-23,-27,-15,-27,-32v0,-8,6,-16,18,-16v49,11,24,84,-19,88v-10,-17,32,-14,28,-40","w":90,"k":{"\u201d":22,"\u2019":18}},"-":{"d":"14,-81r84,-8v7,4,8,15,3,21r-84,8v-6,-5,-7,-15,-3,-21","w":115,"k":{"W":25}},"\u00ad":{"d":"14,-81r84,-8v7,4,8,15,3,21r-84,8v-6,-5,-7,-15,-3,-21","w":115},".":{"d":"45,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20","w":90,"k":{"\u201d":22,"\u2019":4}},"\/":{"d":"107,-247r-75,253r-21,0r75,-253r21,0","w":117},"0":{"d":"90,-230v102,0,101,235,0,235v-53,0,-75,-61,-75,-118v0,-54,22,-117,75,-117xm90,-220v-40,0,-42,73,-42,107v0,34,2,107,42,107v40,0,42,-73,42,-107v0,-34,-2,-107,-42,-107"},"1":{"d":"79,-44r0,-122v3,-34,-9,-34,-34,-36v-3,-1,-4,-7,-1,-8v33,-4,50,-18,63,-19r-1,185v-2,37,5,35,30,36v2,2,3,8,0,9v-30,-2,-56,-1,-86,0v-3,-1,-3,-7,-1,-9v24,-1,30,1,30,-36"},"2":{"d":"9,-4v34,-29,111,-88,111,-154v0,-33,-16,-53,-45,-53v-22,0,-37,15,-47,36v-3,2,-9,0,-9,-5v17,-64,133,-70,132,8v11,37,-83,126,-93,146v24,9,98,9,101,-19v3,-1,7,0,8,2v-5,18,-12,37,-17,44r-138,0v-1,0,-3,-2,-3,-5"},"3":{"d":"161,-82v0,52,-70,102,-111,102v-16,0,-35,-5,-35,-22v0,-7,5,-14,14,-14v18,1,16,24,36,24v23,0,65,-31,65,-71v0,-32,-16,-59,-47,-59v-18,0,-31,9,-39,18v-6,-1,-10,-6,-8,-13v26,-14,77,-23,77,-66v0,-48,-65,-30,-78,1v-4,1,-8,-1,-8,-5v13,-48,113,-64,116,-2v0,15,-6,29,-39,46v-2,4,0,5,4,5v27,2,53,22,53,56"},"4":{"d":"109,-159v0,-10,13,-12,21,-13v5,0,5,4,5,11r0,70v-3,20,43,-6,31,23v-11,2,-32,-6,-31,8v1,29,-5,58,25,52v2,2,2,8,-1,9v-30,-2,-51,-1,-82,0v-3,-1,-3,-7,-1,-9v32,4,35,-11,33,-51v0,-9,-2,-9,-11,-9r-86,0v-9,-3,-5,-12,2,-20r115,-161v3,-6,17,-8,20,-2r-116,162v-4,6,1,6,10,6r56,0v9,0,10,-2,10,-10r0,-66"},"5":{"d":"28,-149r19,-64v2,-6,4,-9,10,-10r86,-12v10,5,-6,20,-9,25r-68,10v-16,0,-14,19,-19,31v-3,7,5,7,12,7v45,0,96,24,96,79v0,62,-72,105,-129,107v-4,-1,-4,-8,-1,-11v56,-3,103,-37,103,-86v0,-51,-55,-64,-97,-65v-5,0,-6,-3,-3,-11"},"6":{"d":"14,-85v0,-31,11,-76,49,-113v37,-37,81,-48,103,-51v3,1,3,6,1,8v-23,8,-54,18,-80,46v-31,32,-41,72,-41,109v0,42,14,80,50,80v27,0,41,-24,41,-55v0,-37,-22,-70,-61,-57v-3,-13,22,-17,35,-17v35,0,57,28,57,65v0,42,-31,75,-76,75v-53,0,-78,-41,-78,-90"},"7":{"d":"129,-203v-42,0,-94,-14,-111,18v-3,1,-7,0,-8,-3v4,-10,10,-24,13,-38v33,2,114,2,147,0v1,0,2,2,2,3v-42,72,-85,168,-125,246v-6,1,-11,-2,-12,-7r101,-206v5,-11,5,-13,-7,-13"},"8":{"d":"95,-230v32,0,59,17,59,52v0,30,-24,43,-42,55v25,14,47,33,47,67v0,38,-30,61,-72,61v-32,0,-66,-16,-66,-60v0,-27,24,-46,48,-61v-21,-12,-41,-28,-41,-56v0,-37,30,-58,67,-58xm91,-6v26,0,42,-17,42,-43v0,-28,-27,-48,-53,-60v-24,16,-33,36,-33,51v0,30,17,52,44,52xm92,-220v-25,0,-38,19,-38,40v0,25,25,40,48,51v37,-18,39,-91,-10,-91"},"9":{"d":"86,-220v-23,0,-40,18,-40,50v0,34,20,71,57,59v2,10,-17,14,-31,15v-29,0,-55,-24,-55,-61v0,-43,33,-73,74,-73v45,0,71,38,71,91v0,39,-16,86,-53,119v-27,24,-61,38,-85,42v-3,-1,-4,-7,-2,-9v70,-23,105,-57,108,-154v0,-33,-9,-79,-44,-79"},":":{"d":"45,-101v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20xm45,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20","w":90},";":{"d":"50,4v-3,-23,-27,-15,-27,-32v0,-8,6,-16,18,-16v49,11,24,84,-19,88v-10,-17,32,-14,28,-40xm45,-101v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20","w":90},"<":{"d":"20,-82r140,-67r0,21r-114,54r114,54r0,20r-140,-66r0,-16"},"=":{"d":"159,-110r0,18r-138,0r0,-18r138,0xm159,-56r0,18r-138,0r0,-18r138,0"},">":{"d":"20,-149r140,67r0,16r-140,66r0,-20r114,-55r-114,-53r0,-21"},"?":{"d":"65,-144v41,-21,13,-67,-30,-60v-3,0,-12,-6,-12,-15v0,-7,5,-14,14,-14v40,0,83,75,49,106v-20,11,-52,18,-38,52v-1,3,-5,4,-7,2v-13,-18,-21,-55,6,-62xm45,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":115},"@":{"d":"163,-117v-33,3,-60,58,-61,83v7,12,12,2,33,-14v19,-14,39,-48,43,-59v-2,-5,-7,-10,-15,-10xm74,-29v2,-27,54,-106,99,-101v5,0,11,3,13,8r9,-18v6,-2,15,0,18,4v-5,11,-36,85,-42,100v-3,8,-1,12,8,12v38,-1,70,-29,70,-74v0,-51,-41,-83,-94,-83v-71,0,-114,60,-114,126v0,42,25,99,107,99v26,0,44,-8,56,-13v3,1,4,4,3,7v-81,44,-191,9,-191,-93v0,-85,68,-138,142,-138v134,0,143,179,13,180v-50,1,-16,-20,-14,-42v-22,22,-53,42,-68,42v-10,0,-15,-8,-15,-16","w":275},"A":{"d":"167,-15v-4,-21,-13,-49,-20,-69v-6,-19,-48,-5,-70,-9v-22,2,-16,33,-26,47v-5,16,-8,26,-8,30v-4,11,35,3,22,17v-16,-2,-53,-1,-72,0v-7,-18,31,-3,33,-28r68,-177v5,-13,7,-20,6,-26v12,-1,16,-18,24,-10r65,193v13,36,15,37,41,39v3,2,2,8,0,9v-25,-2,-63,-1,-85,0v-3,-1,-4,-7,-1,-9v8,-1,24,-1,23,-7xm107,-199v-10,21,-23,58,-32,83v-3,8,-2,9,8,9r44,0v10,0,11,-1,8,-11","w":224,"k":{"\u2019":32,"c":4,"C":4,"d":4,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"G":4,"o":2,"\u00f6":2,"O":4,"\u00d6":4,"t":2,"T":25,"u":6,"U":7,"Y":22,"z":-2,"Q":4,"V":29,"W":36,"b":4,"p":4,"q":2,"v":15,"w":15}},"B":{"d":"17,-236v58,-3,168,-19,166,52v0,26,-15,40,-37,50v0,4,3,4,7,5v19,4,48,21,48,60v0,56,-63,69,-139,69v-16,0,-28,1,-41,1v-4,-3,-2,-12,5,-10v19,-3,20,-7,20,-45r0,-137v1,-34,-6,-35,-29,-36v-3,-2,-3,-8,0,-9xm76,-113v1,47,-12,103,36,103v32,0,56,-14,56,-50v0,-28,-15,-62,-72,-62v-19,0,-20,2,-20,9xm97,-228v-13,0,-20,0,-21,12r0,73v0,10,0,11,18,10v37,-1,57,-12,57,-46v0,-35,-27,-49,-54,-49","w":217,"k":{"h":4,"b":2,"W":12,"V":7,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"T":4,"u":4,"U":4,"r":4,"y":6,"a":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"i":4,"\u00ef":4,"k":4,"l":4}},"C":{"d":"226,-6v-92,32,-210,-5,-210,-111v0,-105,113,-148,216,-116v0,8,2,31,5,53v-2,3,-6,2,-9,0v-5,-24,-22,-52,-74,-52v-55,0,-102,34,-102,109v0,76,48,118,107,118v46,0,67,-31,75,-52v3,-2,8,-1,9,2v-3,19,-12,42,-17,49","w":250,"k":{"u":6,"z":6,"r":2,"y":9}},"D":{"d":"264,-122v0,72,-61,129,-143,125v-44,-1,-64,-5,-104,-2v-5,-4,0,-12,7,-10v21,-3,22,-7,22,-45r0,-137v1,-30,-4,-35,-25,-36v-3,-2,-3,-9,1,-9v31,-3,59,-3,90,-3v88,0,152,43,152,117xm115,-228v-38,0,-40,-5,-39,33r0,133v-1,42,10,54,51,54v70,0,101,-46,101,-113v0,-40,-19,-107,-113,-107","w":280,"k":{"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":4,"\u00f6":4,"u":4,"Y":4,"V":7,"W":7,"r":4,"a":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"i":4,"\u00ef":4,"h":6}},"E":{"d":"76,-57v3,44,-5,46,50,46v57,0,48,-4,72,-40v3,-2,8,-1,9,2v-3,13,-12,40,-17,50r-177,0v-7,-8,3,-10,11,-10v21,-2,22,-7,22,-45r0,-130v1,-41,-3,-43,-28,-46v-2,-1,-1,-8,1,-9r159,0v2,6,5,32,6,48v-1,2,-7,3,-9,1v-3,-38,-42,-38,-89,-36v-11,0,-10,0,-10,14r0,72v-4,18,20,7,32,10v33,0,39,1,42,-29v2,-2,9,-3,10,0v-2,17,-2,54,0,71v-17,8,-7,-28,-24,-28r-49,-1v-11,0,-11,0,-11,9r0,51","w":210,"k":{"c":2,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2,"t":6,"u":6,"Y":4,"z":2,"V":4,"W":4,"b":4,"p":6,"q":2,"v":11,"w":11,"r":2,"y":15,"i":2,"\u00ef":2,"h":4,"g":2,"k":4,"l":4,"n":2,"f":4,"j":4,"m":2,"x":2}},"F":{"d":"76,-212r0,76v-3,18,23,7,36,10v33,0,39,0,43,-30v2,-2,8,-2,9,0v-1,18,-1,54,0,72v-16,6,-8,-25,-24,-28v-9,-2,-38,-2,-53,-2v-11,0,-11,1,-11,10v3,33,-12,102,22,95v8,-1,18,2,11,10r-93,0v-5,-5,0,-12,8,-10v21,-3,22,-7,22,-45r0,-130v1,-42,-3,-42,-27,-46v-2,-1,-2,-8,0,-9r157,0v0,17,0,34,1,48v-1,2,-6,3,-9,1v0,-36,-38,-38,-82,-36v-11,0,-10,0,-10,14","w":193,"k":{"\u00ef":12,".":50,",":50,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f6":13,"u":9,"r":13,"y":6,"a":17,"\u00e1":17,"\u00e2":17,"\u00e4":17,"\u00e0":17,"i":12,"l":6,"A":13,"\u00c1":13,"\u00c2":13,"\u00c0":13}},"G":{"d":"161,-5v40,0,43,-7,43,-46v0,-38,-13,-32,-39,-37v-3,-1,-3,-8,0,-9v19,1,65,2,89,0v6,3,2,11,-5,10v-28,1,-16,66,-7,80v-24,3,-58,13,-83,13v-74,0,-144,-47,-142,-122v2,-77,56,-128,146,-127v35,0,46,7,68,8v0,12,3,30,6,52v-1,3,-8,4,-10,2v-10,-39,-37,-52,-74,-52v-70,0,-100,50,-100,104v0,69,36,124,108,124","w":268,"k":{"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2,"u":4,"r":9,"y":4,"a":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"i":4,"\u00ef":4,"h":4,"l":2,"n":6}},"H":{"d":"197,-116r-103,0v-36,-4,-11,40,-18,62v-1,44,5,44,32,46v2,1,1,8,-1,9v-34,-2,-56,-1,-87,0v-4,-3,-2,-12,5,-10v20,-4,21,-7,21,-45r0,-130v1,-45,-4,-44,-31,-46v-2,-1,-1,-8,1,-9r87,0v4,5,1,12,-6,10v-32,-7,-21,56,-21,87v0,11,1,11,18,11r103,0v34,5,12,-32,18,-53v1,-43,-3,-43,-29,-46v-2,-1,-2,-8,0,-9r87,0v4,5,-1,12,-7,10v-21,2,-22,7,-22,45r0,130v-1,43,3,43,30,46v2,1,2,8,0,9r-88,0v-4,-4,1,-11,7,-10v36,5,22,-62,22,-96v0,-11,-1,-11,-18,-11","w":290,"k":{"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f6":6,"u":11,"y":9,"a":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"i":6,"\u00ef":6}},"I":{"d":"46,-55r0,-128v1,-44,-4,-45,-31,-47v-2,-1,-1,-8,1,-9r90,0v5,6,0,12,-8,10v-21,2,-22,8,-22,46r0,128v-1,43,4,44,31,47v2,1,1,8,-1,9r-90,0v-5,-5,0,-12,8,-10v21,-3,22,-8,22,-46","w":121,"k":{"c":6,"d":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f6":6,"t":9,"u":12,"z":2,"b":2,"p":12,"v":9,"w":9,"r":6,"y":4,"a":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"i":4,"\u00ef":4,"h":2,"g":2,"k":2,"l":2,"n":4,"f":2,"j":6,"m":4,"s":6}},"J":{"d":"28,53v31,-3,23,-75,23,-100r0,-136v1,-46,-5,-44,-33,-47v-2,-1,-2,-8,0,-9r90,0v4,4,1,11,-5,10v-21,3,-22,8,-22,46r0,134v4,71,-22,118,-79,121v-4,0,-16,0,-16,-7v0,-21,25,-16,42,-12","w":124,"k":{"e":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00e8":11,"o":11,"\u00f6":11,"u":13,"y":4,"a":11,"\u00e1":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"i":9,"\u00ef":9}},"K":{"d":"46,-54r0,-130v1,-44,-4,-43,-31,-46v-2,-1,-1,-8,1,-9r87,0v4,5,1,12,-6,10v-32,-7,-18,56,-21,87v-2,14,6,15,14,10r58,-56v9,-9,27,-25,30,-36v-1,-5,-27,-5,-15,-15v24,1,52,2,75,0v3,2,3,7,1,9v-49,5,-80,52,-116,83v-11,9,-13,11,-2,22r90,101v11,12,21,15,39,16v3,2,2,8,-1,9v-22,-2,-58,-1,-84,0v-3,-1,-4,-7,-2,-9v12,0,24,-4,12,-13r-58,-66v-21,-23,-26,-31,-35,-31v-12,6,-5,46,-6,64v-2,44,3,44,30,46v2,1,1,8,-1,9r-85,0v-4,-3,-1,-12,6,-10v19,-3,20,-7,20,-45","w":243,"k":{"C":13,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"G":13,"o":6,"\u00f6":6,"O":13,"\u00d6":13,"u":9,"Q":13,"v":11,"w":17,"y":9}},"L":{"d":"76,-58v4,45,-4,47,46,47v60,0,46,-4,68,-40v2,-2,9,-1,9,2v0,4,-10,40,-15,50r-170,0v-2,-1,-2,-7,0,-9v28,-2,32,-2,32,-46r0,-130v2,-44,-4,-43,-32,-46v-2,-1,-2,-8,0,-9r91,0v5,5,0,11,-7,10v-21,2,-22,7,-22,45r0,126","w":199,"k":{"\u2019":47,"C":4,"G":4,"O":4,"\u00d6":4,"T":36,"u":2,"U":6,"Y":25,"Q":4,"V":32,"W":40,"w":13,"y":17,"j":4,"A":-4,"\u00c1":-4,"\u00c2":-4,"\u00c0":-4}},"M":{"d":"65,-191v-5,47,-4,100,-7,149v-2,35,7,32,30,34v3,2,2,8,-1,9v-24,-1,-52,-2,-76,0v-5,-5,0,-11,7,-10v15,-2,20,-5,22,-30r10,-159v3,-26,-6,-29,-29,-32v-2,-2,-2,-8,1,-9v23,2,34,1,58,0v12,65,58,137,86,192v25,-57,74,-135,89,-192v25,2,35,1,59,0v5,6,-2,12,-8,10v-23,2,-25,9,-25,34v1,38,4,105,4,157v0,24,7,30,29,30v2,2,3,8,0,9r-86,0v-3,-2,-3,-7,-1,-9v22,-1,28,-4,28,-32r-2,-150r-94,192v-2,2,-5,3,-7,0","w":328,"k":{"j":6,"c":9,"d":9,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f6":9,"u":13,"y":11,"a":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"i":4,"\u00ef":4,"n":2}},"N":{"d":"245,-221v-11,64,-3,148,-4,223v-1,2,-3,4,-7,4r-172,-198v-3,51,-7,129,5,176v2,6,19,7,29,8v2,3,2,7,-1,9v-29,-1,-53,-2,-79,0v-3,-2,-3,-7,-1,-9v43,8,27,-52,30,-82v-4,-44,10,-99,-8,-130v-6,-6,-17,-9,-28,-10v-2,-2,-2,-8,1,-9v25,1,39,2,57,0v40,63,110,135,157,184v1,-51,6,-122,-6,-167v2,-6,-40,-3,-28,-17r80,0v4,4,1,11,-5,10v-12,2,-19,5,-20,8","w":281,"k":{"\u00ef":9,"e":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00e8":11,"o":11,"\u00f6":11,"u":11,"y":11,"a":11,"\u00e1":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"i":9}},"O":{"d":"145,6v-80,0,-128,-57,-128,-122v0,-72,54,-127,128,-127v83,0,125,60,125,123v0,73,-56,126,-125,126xm149,-5v43,0,85,-33,85,-104v0,-59,-26,-123,-95,-123v-37,0,-86,25,-86,104v0,53,25,123,96,123","w":286,"k":{"c":2,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2,"t":2,"T":11,"u":2,"Y":11,"z":2,"V":9,"W":19,"b":2,"p":2,"q":2,"r":2,"a":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"i":2,"\u00ef":2,"h":4,"g":2,"k":4,"l":4,"n":2,"f":2,"j":4,"m":2,"s":2,"A":11,"\u00c1":11,"\u00c2":11,"\u00c0":11,"X":11}},"P":{"d":"17,-236v69,-7,173,-10,169,66v-3,53,-43,65,-86,68v-3,-1,-2,-6,0,-7v76,-7,68,-122,-5,-119v-19,0,-19,1,-19,13r0,161v-2,44,4,43,33,46v2,2,1,8,-1,9r-90,0v-4,-4,-1,-12,6,-10v21,-3,22,-7,22,-45r0,-133v2,-40,-6,-36,-30,-40v-3,-2,-2,-8,1,-9","w":197,"k":{"h":2,"H":4,".":65,",":65,"e":19,"\u00e9":19,"\u00ea":19,"\u00eb":19,"\u00e8":19,"o":19,"\u00f6":19,"t":6,"u":11,"r":11,"y":2,"a":15,"\u00e1":15,"\u00e2":15,"\u00e4":15,"\u00e0":15,"i":4,"\u00ef":4,"l":2,"n":13,"s":13,"A":14,"\u00c1":14,"\u00c2":14,"\u00c0":14,"E":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"I":4,"\u00cf":4}},"Q":{"d":"145,-243v156,0,159,214,38,243v22,32,76,76,133,64v2,0,3,3,2,5v-60,34,-142,-24,-165,-51v-19,-20,-32,-11,-59,-22v-47,-19,-77,-61,-77,-112v0,-72,54,-127,128,-127xm149,-5v43,0,85,-33,85,-104v0,-59,-26,-123,-95,-123v-37,0,-86,25,-86,104v0,53,25,123,96,123","w":286,"k":{"X":4,"W":11,"V":6,"T":9,"u":2,"U":4,"Y":4,"a":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"A":9,"\u00c1":9,"\u00c2":9,"\u00c0":9}},"R":{"d":"19,-236v62,-4,170,-17,170,59v0,34,-27,53,-45,60v-2,2,0,5,2,8v29,46,49,75,73,96v4,8,26,6,25,15v-64,18,-97,-53,-126,-98v0,-12,-43,-18,-42,-3v4,36,-15,100,29,91v2,2,1,8,-1,9r-88,0v-2,-1,-3,-6,-1,-9v27,-3,31,-3,31,-46r0,-129v1,-42,-3,-40,-27,-44v-3,-2,-3,-8,0,-9xm102,-118v34,2,55,-14,55,-54v0,-28,-18,-56,-58,-56v-22,0,-23,2,-23,12r0,84v0,20,-1,13,26,14","w":232,"k":{"C":13,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"G":13,"o":4,"\u00f6":4,"O":13,"\u00d6":13,"T":16,"u":4,"U":9,"Y":16,"Q":13,"V":25,"W":27,"y":11}},"S":{"d":"28,-181v-4,-51,67,-74,119,-56v3,9,7,29,7,44v-1,2,-7,3,-9,1v-5,-17,-14,-40,-49,-40v-65,0,-45,70,-12,84v31,21,72,38,73,87v0,40,-29,67,-76,67v-30,0,-50,-10,-57,-14v-4,-8,-8,-33,-9,-50v2,-3,7,-3,8,-1v5,18,20,54,62,54v55,0,61,-61,16,-92v-30,-21,-69,-36,-73,-84","w":176,"k":{"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f6":4,"t":9,"u":9,"p":9,"q":4,"v":11,"w":11,"r":4,"y":4,"a":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"i":4,"\u00ef":4,"h":4,"k":4,"l":4,"n":9,"j":6,"m":9}},"T":{"d":"132,-214r0,160v-1,45,5,44,34,46v2,1,1,8,-1,9r-97,0v-7,-10,6,-9,13,-10v21,-2,22,-7,22,-45r0,-161v4,-19,-18,-9,-31,-11v-30,-4,-55,11,-60,33v-3,2,-8,1,-9,-2v6,-16,10,-40,13,-54v1,-1,6,-1,7,0v2,12,14,11,31,11r145,0v24,3,23,-10,35,-9v-4,15,-6,44,-5,55v-1,3,-8,3,-10,1v1,-38,-36,-35,-76,-35v-11,0,-11,0,-11,12","w":237,"k":{"\u00f6":43,"\u00ef":14,"\u00e8":43,"\u00eb":43,"\u00e0":40,"\u00e4":40,"\u00e2":40,"\u2019":-13,"C":9,"e":43,"\u00e9":43,"\u00ea":43,"G":9,"o":43,"O":12,"\u00d6":12,"T":-4,"u":47,"Y":-4,"z":25,"Q":12,"W":-2,"w":47,"r":47,"y":40,"a":40,"\u00e1":40,"i":14,"m":47,"s":36,"A":23,"\u00c1":23,"\u00c2":23,"\u00c0":23,".":43,"X":-6,",":43,":":29,";":29,"S":4,"}":-4,"]":-4,"\u00ad":36,")":-4}},"U":{"d":"139,6v-62,-2,-96,-31,-96,-105r0,-85v1,-43,-3,-44,-30,-46v-2,-1,-2,-8,0,-9r89,0v5,6,0,10,-8,10v-39,-2,-21,85,-21,123v0,58,18,96,73,96v91,0,77,-135,65,-212v-3,-6,-17,-7,-27,-8v-2,-3,-1,-8,1,-9v26,1,54,2,79,0v10,14,-23,7,-26,18v-6,26,-5,79,-5,114v0,60,-31,115,-94,113","w":268,"k":{"\u00ef":6,"c":9,"d":11,"t":11,"z":6,"b":2,"p":11,"v":4,"r":13,"y":4,"a":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"i":6,"g":6,"k":2,"l":2,"n":13,"f":4,"m":13,"x":4,"s":11,"A":4,"\u00c1":4,"\u00c2":4,"\u00c0":4}},"V":{"d":"116,5v-23,-70,-54,-136,-80,-204v-9,-23,-15,-29,-36,-31v-3,-2,-2,-7,1,-9v22,2,57,1,81,0v6,3,2,11,-5,10v-14,2,-17,4,-17,7v14,45,50,126,70,174r68,-160v9,-19,1,-19,-20,-22v-3,-2,-2,-8,1,-9v20,1,50,2,72,0v3,1,3,7,1,9v-15,1,-24,3,-30,14v-28,48,-76,165,-97,221v-3,2,-6,1,-9,0","w":243,"k":{"\u00f6":36,"\u00ef":4,"\u00e8":36,"\u00eb":36,"\u00e0":32,"\u00e4":32,"}":-4,"]":-9,"Q":9,";":16,":":6,".":43,"-":22,",":43,")":-4,"\u2019":-13,"C":9,"e":36,"\u00e9":36,"\u00ea":36,"G":9,"o":36,"O":9,"\u00d6":9,"u":32,"r":28,"y":25,"a":32,"\u00e1":32,"\u00e2":32,"i":4,"A":27,"\u00c1":27,"\u00c2":27,"\u00c0":27}},"W":{"d":"140,-41r33,-73v-12,-33,-28,-64,-42,-96v-6,-14,-15,-20,-32,-20v-3,-3,-2,-8,1,-9v19,2,63,1,78,0v3,1,3,6,1,9v-15,2,-28,-2,-17,20v9,17,17,41,27,63v7,-14,14,-28,22,-47v16,-39,9,-34,-12,-36v-3,-4,-2,-8,1,-9v19,2,51,1,69,0v3,1,2,6,0,9v-24,-1,-31,14,-40,33v-9,20,-37,52,-28,74r36,82v20,-41,45,-108,61,-147v5,-13,11,-29,11,-33v3,-12,-32,-3,-22,-18v24,1,48,2,68,0v7,5,0,10,-6,10v-25,-5,-54,91,-69,123v-18,36,-30,72,-45,111v-2,2,-7,1,-9,0v-12,-32,-33,-78,-44,-103v-13,26,-35,73,-45,103v-2,2,-7,1,-10,0v-6,-15,-19,-48,-24,-58r-69,-150v-8,-19,-14,-27,-35,-27v-2,-2,-2,-8,1,-9v25,2,51,1,78,0v7,5,0,11,-7,10v-28,6,-6,20,6,54v16,46,42,90,63,134","w":345,"k":{"\u00ef":4,"\u00eb":28,"\u00e4":32,"}":-4,"m":34,"]":-9,"Q":6,";":22,":":22,".":43,"-":14,",":43,")":-4,"\u2019":-13,"C":6,"d":28,"e":28,"\u00e9":28,"\u00ea":28,"\u00e8":28,"G":6,"o":28,"\u00f6":28,"O":6,"\u00d6":6,"t":27,"T":-4,"u":30,"r":30,"y":25,"a":32,"\u00e1":32,"\u00e2":32,"\u00e0":32,"i":4,"A":27,"\u00c1":27,"\u00c2":27,"\u00c0":27}},"X":{"d":"120,-139r54,-85v0,-6,-33,-3,-21,-15v23,1,51,2,73,0v5,5,-1,11,-8,10v-35,13,-65,64,-89,101v18,33,43,64,65,95v16,22,22,24,46,25v3,2,2,7,-1,9r-91,0v-2,-2,-3,-7,-1,-9v20,-2,31,-1,15,-22v-16,-21,-36,-51,-52,-72v-11,15,-45,58,-55,88v-2,7,30,2,20,15v-26,-1,-50,-2,-76,0v-3,-1,-5,-7,-2,-9v26,0,39,-16,52,-33v3,-6,36,-45,53,-73v-17,-30,-40,-57,-59,-86v-15,-22,-21,-26,-43,-30v-2,-2,-1,-8,1,-9v30,2,57,1,83,0v3,1,2,6,0,9v-24,1,-25,7,-10,26v13,16,33,49,46,65","w":231,"k":{"Q":9,"\u2019":-9,"C":9,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"G":9,"O":9,"\u00d6":9,"u":9,"y":4}},"Y":{"d":"113,-115r57,-108v0,-2,-6,-5,-15,-6v-6,1,-12,-7,-6,-10v25,1,44,2,68,0v8,6,-2,11,-9,11v-27,0,-51,68,-70,96v-21,30,-17,39,-17,77v-1,47,6,45,35,47v2,2,2,8,0,9r-97,0v-5,-7,4,-12,11,-10v26,5,21,-31,21,-64v0,-52,-36,-88,-54,-128v-13,-30,-17,-24,-38,-29v-2,-3,-2,-8,1,-9v19,1,62,2,80,0v5,3,2,11,-4,10v-32,1,-5,22,-4,34v13,27,27,55,41,80","w":206,"k":{"\u00e8":32,"\u00eb":32,"\u00e0":24,"\u2019":-13,"C":6,"d":32,"e":32,"\u00e9":32,"\u00ea":32,"G":6,"o":34,"\u00f6":34,"O":6,"\u00d6":6,"t":19,"T":-4,"u":27,"Y":-4,"Q":6,"V":-4,"W":-4,"q":32,"v":18,"a":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"l":-2,".":29,"X":-4,",":29,":":22,";":13,"}":-4,"]":-9,"\u00ad":27,")":-4}},"Z":{"d":"62,-17v18,12,101,8,130,-2v10,-6,19,-20,25,-34v3,-1,8,0,9,3v-3,17,-10,42,-16,51r-198,0v-1,-1,-2,-2,-2,-4v50,-62,116,-152,156,-221v-29,-3,-102,-6,-120,9v-11,9,-11,33,-25,22v4,-13,11,-34,15,-54v1,-1,4,-1,6,0v1,9,6,9,35,9r137,-1v1,0,2,3,2,4v-46,54,-112,150,-154,218","w":230,"k":{"C":11,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"G":11,"o":4,"\u00f6":4,"O":11,"\u00d6":11,"u":2,"Q":11,"w":13,"y":13,"a":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"i":4,"\u00ef":4,"A":-4,"\u00c1":-4,"\u00c2":-4,"\u00c0":-4}},"[":{"d":"61,-18v3,34,-6,57,14,59r32,4v2,3,3,7,0,8r-65,1r0,-301r65,1v3,1,2,5,0,8r-32,4v-21,1,-14,25,-14,59r0,157","w":115,"k":{"W":-9,"V":-4,"J":-12,"T":-4,"Y":-4}},"\\":{"d":"32,-247r68,253r-20,0r-69,-253r21,0","w":111},"]":{"d":"54,-175v-3,-34,6,-57,-14,-59r-32,-4v-2,-3,-2,-7,1,-8r64,-1r0,301r-64,-1v-3,-1,-3,-5,-1,-8r32,-4v21,-1,14,-25,14,-59r0,-157","w":115},"^":{"d":"162,-88r-22,0r-50,-112r-50,112r-22,0r63,-137r18,0"},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0"},"\u2018":{"d":"48,-170v-47,-11,-27,-78,14,-84v3,1,4,5,2,8v-25,4,-38,48,-9,51v5,0,10,3,10,10v0,5,-3,15,-17,15","w":84,"k":{"x":18,"w":14,"v":14,"q":18,"p":22,"m":22,"f":14,"\u2018":17,"X":-4,"W":-6,"V":-6,"c":18,"d":18,"e":18,"\u00e9":18,"\u00ea":18,"\u00eb":18,"\u00e8":18,"o":18,"\u00f6":18,"t":22,"T":-9,"u":22,"Y":-6,"z":18,"y":22,"a":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"g":14,"n":22,"s":15,"A":40,"\u00c1":40,"\u00c2":40,"\u00c0":40}},"a":{"d":"49,5v-40,0,-54,-54,-7,-64r43,-16v12,-13,14,-57,-19,-58v-10,0,-23,5,-24,16v5,17,-23,25,-29,14v0,-19,41,-44,67,-44v51,0,39,61,36,105v-2,25,13,38,30,27v1,0,2,1,2,4v0,2,-12,16,-30,16v-13,0,-21,-10,-29,-16v-9,2,-26,16,-40,16xm87,-63v-17,4,-51,13,-47,30v0,6,5,22,23,22v24,0,34,-28,24,-52","w":145},"b":{"d":"167,-76v0,67,-71,97,-128,72v-5,-1,-8,9,-13,3r1,-202v1,-24,-2,-26,-15,-32v-3,-16,25,-11,39,-22v1,0,3,1,4,2v2,39,-5,86,2,120v43,-29,110,0,110,59xm82,-131v-43,0,-26,45,-28,82v-2,25,12,43,36,43v34,0,47,-29,47,-60v0,-37,-19,-65,-55,-65","k":{"\u201d":18,"w":2,"v":2,".":6,",":6,"\u2019":18,"y":2}},"c":{"d":"143,-32v-31,65,-130,39,-130,-35v0,-39,27,-80,87,-80v13,1,42,2,38,21v-6,32,-27,-16,-49,-9v-25,0,-50,20,-50,58v0,28,19,62,58,62v21,0,32,-10,40,-22v3,-1,6,2,6,5","w":144,"k":{"\u201d":6,"\u2019":6}},"d":{"d":"154,-255r-1,202v0,39,1,48,26,39v3,1,2,9,-1,11v-17,0,-41,15,-51,9v-1,-6,1,-14,-2,-18v-44,38,-112,6,-112,-52v0,-58,53,-94,111,-80v1,-24,13,-84,-13,-91v-3,-16,27,-11,39,-22v1,0,3,1,4,2xm96,-12v15,0,32,-4,30,-24v-2,-43,13,-100,-34,-100v-33,0,-50,29,-50,60v0,33,19,64,54,64","w":183,"k":{"\u201d":4,"\u2019":4}},"e":{"d":"136,-104v0,16,-1,12,-23,12r-66,0v-9,0,-10,1,-10,10v-5,50,58,93,93,49v4,-1,6,2,6,5v-33,62,-123,29,-123,-38v0,-44,29,-81,72,-81v31,0,51,21,51,43xm41,-105v21,4,74,6,68,-8v0,-10,-7,-23,-28,-23v-21,0,-40,19,-40,31","w":142,"k":{"\u201d":11,"\u2019":11,"z":-1,"w":-2}},"f":{"d":"94,-243v-33,2,-33,57,-33,91v-1,23,32,4,47,10v4,4,1,14,-3,15v-15,4,-44,-11,-44,11r0,76v-1,34,5,30,26,32v3,2,3,8,0,9v-27,-1,-49,-2,-74,0v-3,-1,-4,-7,-1,-9v19,-2,22,0,22,-32r0,-76v6,-22,-22,-1,-21,-18v7,-5,21,-4,21,-14v2,-55,16,-105,76,-109v28,-2,49,26,22,34v-14,-3,-21,-22,-38,-20","w":104,"k":{"\u201d":-40,"'":-28,"}":-40,"]":-42,".":6,",":6,")":-40,"\u2019":-40,"\"":-28}},"g":{"d":"75,-147v34,0,48,18,86,13v4,2,2,14,-3,15r-26,0v8,45,-16,80,-75,74v-16,6,-27,35,9,35v41,0,93,-14,93,39v0,39,-42,68,-89,68v-50,0,-68,-28,-56,-55v8,-11,28,-19,27,-33v-14,-4,-26,-15,-26,-28v5,-11,25,-15,28,-30v-12,-6,-27,-21,-27,-44v0,-31,27,-54,59,-54xm98,12v-36,0,-61,2,-61,34v0,19,15,35,48,35v60,0,77,-69,13,-69xm45,-96v0,52,65,56,63,5v0,-24,-10,-45,-32,-45v-17,0,-31,16,-31,40","w":160,"k":{"\u201d":6,"\u2019":6,"f":-2}},"h":{"d":"94,-130v-21,1,-38,5,-36,29v3,31,-16,97,22,93v3,1,2,8,-1,9v-21,-2,-47,-1,-69,0v-3,-1,-4,-7,-1,-9v19,-2,23,0,23,-32r0,-163v1,-24,-2,-26,-15,-32v-3,-16,27,-11,39,-22v9,26,-4,91,4,129v28,-31,95,-22,95,28r0,60v-1,33,3,30,23,32v3,2,2,8,-1,9v-22,-1,-48,-2,-69,0v-7,-19,30,0,20,-41v-1,-40,9,-93,-34,-90","w":185,"k":{"\u201d":25,"\u2019":25}},"i":{"d":"14,-8v39,3,16,-64,21,-95v3,-16,-2,-20,-13,-25v0,-13,30,-15,38,-24v7,24,2,73,2,112v0,31,3,29,21,32v3,2,2,8,-1,9v-20,-2,-48,-1,-67,0v-3,-1,-4,-7,-1,-9xm47,-225v11,0,18,9,18,19v0,13,-9,19,-19,19v-11,0,-18,-8,-18,-18v0,-12,8,-20,19,-20","w":92,"k":{"\u201d":7,"\u2019":7}},"j":{"d":"-5,89v55,-19,35,-117,41,-192v2,-20,-13,-18,-13,-31v10,-1,31,-20,41,-16v-3,60,7,143,-9,188v-9,27,-30,44,-55,59v-4,-1,-6,-4,-5,-8xm48,-225v11,0,18,9,18,19v0,13,-9,19,-19,19v-11,0,-19,-9,-19,-19v0,-12,9,-19,20,-19","w":91},"k":{"d":"32,-40r0,-163v1,-24,-2,-26,-15,-32v-3,-16,27,-11,39,-22v7,39,-1,115,2,170v0,5,1,5,7,5v17,1,45,-37,52,-46v1,-6,-28,-2,-17,-14v21,0,42,-1,66,-3v3,1,2,7,0,9v-28,0,-54,35,-67,45v-8,17,11,19,22,38v24,23,27,40,58,45v3,2,2,8,-1,9v-21,-2,-53,-1,-72,0v-6,-4,-1,-11,6,-10v12,-2,11,-5,3,-14r-39,-44v-6,-6,-19,-11,-18,7v2,26,-6,59,23,52v3,2,2,8,-1,9v-22,-2,-49,-1,-70,0v-5,-19,32,1,22,-41","w":173,"k":{"\u201d":14,"\u2019":14}},"l":{"d":"59,-255r-1,215v-1,32,4,30,23,32v3,2,2,8,-1,9v-22,-2,-49,-1,-70,0v-5,-19,32,1,22,-41r0,-163v1,-24,-2,-26,-15,-32v-3,-16,27,-11,39,-22v1,0,2,1,3,2","w":88,"k":{"\u201d":4,"\u2019":4}},"m":{"d":"98,-130v-47,0,-35,47,-36,90v-1,30,3,29,20,32v3,2,2,8,-1,9v-19,-2,-47,-1,-67,0v-3,-1,-4,-7,-1,-9v38,7,17,-62,22,-95v2,-16,-2,-20,-13,-25v-1,-13,31,-15,37,-24v9,2,-4,23,7,23v25,-19,68,-29,86,3v18,-5,37,-21,58,-21v53,0,43,57,43,107v0,32,3,30,22,32v3,2,2,8,-1,9v-21,-1,-47,-2,-67,0v-7,-18,29,-1,19,-41v-1,-39,10,-90,-33,-90v-45,0,-35,48,-36,90v-1,31,3,30,22,32v3,2,2,8,-1,9v-20,-1,-48,-1,-67,0v-6,-18,29,-1,20,-41v-1,-39,9,-90,-33,-90","w":283,"k":{"\u201d":25,"\u2019":25}},"n":{"d":"98,-130v-46,0,-35,47,-36,90v-1,30,3,29,20,32v3,2,2,8,-1,9v-18,-2,-48,-1,-66,0v-7,-19,29,1,20,-41v-6,-30,13,-78,-13,-88v-1,-13,31,-15,37,-24v9,2,-4,23,7,23v30,-27,97,-24,92,27v5,31,-16,98,22,94v3,2,2,8,-1,9v-20,-1,-48,-1,-67,0v-7,-19,30,0,20,-41v-2,-40,11,-90,-34,-90","w":189,"k":{"\u201d":25,"\u2019":25}},"o":{"d":"89,-147v40,0,73,31,73,75v0,45,-31,77,-76,77v-41,0,-73,-29,-73,-74v0,-45,34,-78,76,-78xm90,-6v62,0,53,-128,-5,-130v-24,0,-41,22,-41,62v0,33,14,68,46,68","w":174,"k":{"\u201d":18,"\u2019":18,"v":6,"w":4,"y":4,"x":2,".":6}},"p":{"d":"31,51r0,-154v5,-20,-13,-18,-13,-31v9,-4,27,-13,36,-20v9,1,-3,21,6,24v5,-2,27,-17,50,-17v36,0,60,30,60,66v-1,56,-45,94,-108,85v-10,5,-4,33,-5,47v-3,35,7,29,28,33v3,2,2,8,-1,9v-28,-1,-50,-2,-74,0v-7,-5,0,-11,7,-10v13,-2,14,-6,14,-32xm92,-130v-51,0,-32,52,-35,94v-2,21,20,29,37,29v30,0,47,-28,47,-65v0,-29,-17,-58,-49,-58","w":182,"k":{"\u201d":18,"w":2,".":6,",":6,"\u2019":18}},"q":{"d":"13,-66v-1,-68,67,-93,128,-75v4,2,10,-11,14,-3v-7,52,-1,135,-3,195v-1,33,5,29,24,33v3,2,3,8,0,9v-26,-2,-48,-1,-74,0v-3,-1,-4,-7,-1,-9v37,9,22,-47,25,-79v0,-7,-1,-9,-4,-9v-9,5,-22,9,-36,9v-54,0,-73,-43,-73,-71xm100,-9v44,0,23,-40,26,-74v4,-39,-6,-53,-36,-53v-27,0,-47,25,-47,59v0,40,23,68,57,68","w":178,"k":{"\u201d":18,"\u2019":18}},"r":{"d":"103,-116v-22,-12,-46,-9,-41,27v4,30,-17,91,27,81v3,2,3,8,0,9v-27,-1,-51,-2,-74,0v-5,-19,28,0,20,-41v-6,-30,13,-78,-13,-88v0,-13,28,-15,37,-24v8,3,0,19,4,27v13,-10,27,-22,40,-22v9,0,16,6,16,15v0,12,-10,16,-16,16","w":119,"k":{"\u201d":7,"\u2019":7,"c":2,"d":5,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":2,"\u00f6":2,"t":-3,"u":-3,"z":-2,"q":2,"v":-6,"w":-6,"y":-6,"k":2,"f":-3,"x":-2,".":22,",":22}},"s":{"d":"81,-28v-2,-37,-67,-41,-63,-78v-5,-38,55,-49,81,-34v3,8,5,19,5,29v-1,3,-6,3,-8,1v-5,-29,-53,-37,-55,-4v7,35,64,32,64,78v0,42,-63,51,-90,30v-3,-7,-5,-24,-4,-36v2,-2,6,-2,8,0v6,20,17,37,38,37v13,0,24,-8,24,-23","w":116,"k":{"\u201d":14,"\u2019":14}},"t":{"d":"58,-51v-7,31,24,50,45,33v3,0,5,4,4,6v-6,8,-20,17,-38,17v-61,0,-29,-72,-37,-121v5,-21,-21,-2,-19,-18v22,-7,29,-15,38,-33v16,-6,0,25,14,25r40,0v4,3,3,13,0,15r-40,0v-6,0,-7,1,-7,9r0,67","w":110,"k":{"\u201d":6,"\u2019":6}},"u":{"d":"91,-12v17,-1,39,-7,36,-31v-4,-30,13,-88,-18,-89v-3,-1,-3,-7,0,-8v16,2,39,-10,46,-4v-2,25,-1,63,-1,91v0,37,1,44,25,38v2,2,3,9,0,10v-14,3,-36,7,-48,14v-9,-1,1,-20,-7,-23v-23,23,-102,31,-93,-26v-5,-30,14,-89,-16,-92v-2,-2,-2,-7,1,-8v19,2,34,-10,42,-4v4,41,-23,134,33,132","w":184,"k":{"\u201d":18,"\u2019":18}},"v":{"d":"86,-39v11,-19,28,-68,34,-88v1,-8,-24,-5,-15,-16v22,1,33,1,53,0v4,3,1,11,-5,10v-36,19,-49,97,-71,137v-17,5,-13,-25,-22,-37r-30,-73v-6,-16,-11,-28,-29,-28v-2,-3,-2,-8,1,-9v19,1,42,2,63,0v11,13,-25,6,-12,24v10,29,21,58,33,80","w":155,"k":{"\u201d":9,"q":2,".":27,",":27,"\u2019":9,"c":2,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2,"a":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2}},"w":{"d":"171,-39v9,-19,29,-61,33,-89v1,-7,-25,-4,-15,-15v19,1,34,2,52,0v5,16,-21,6,-25,33v-16,34,-34,81,-46,114v-17,6,-13,-24,-24,-39r-25,-60r-41,99v-15,7,-13,-22,-20,-30r-33,-81v-10,-23,-12,-24,-27,-27v-2,-2,-2,-8,1,-9v21,1,43,1,63,0v7,5,0,11,-7,10v-14,4,-9,8,-3,24r29,70v7,-23,57,-88,7,-95v-3,-2,-2,-8,1,-9v21,2,42,1,64,0v12,15,-31,5,-16,27","w":237,"k":{"\u201d":9,".":27,",":27,"\u2019":9,"c":2,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2}},"x":{"d":"64,-72v-20,-20,-27,-55,-60,-62v-2,-2,-2,-8,1,-9v27,2,35,1,62,0v11,12,-22,4,-9,23r22,31v1,-1,12,-20,21,-31v14,-16,-16,-9,-6,-23v16,1,37,1,53,0v5,3,1,12,-5,10v-31,5,-28,19,-52,47v-5,5,-4,8,1,14v20,20,27,63,63,64v2,2,2,8,-1,9v-26,-1,-46,-2,-70,0v-3,-1,-4,-7,-1,-9v9,0,25,0,17,-12r-27,-37r-22,32v-10,16,-3,16,8,17v2,2,2,8,-1,9v-18,-1,-35,-1,-53,0v-9,-16,19,-6,26,-21v7,-13,34,-35,33,-52","w":155,"k":{"\u201d":14,"v":2,"q":2,"\u2019":14,"c":4,"d":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":2,"\u00f6":2}},"y":{"d":"48,73v-9,22,-37,23,-39,1v-2,-21,27,-8,33,-21v16,-31,32,-42,18,-80r-28,-77v-6,-21,-11,-27,-30,-30v-2,-2,-2,-8,1,-9v23,1,41,2,65,0v12,12,-15,8,-16,16v10,30,20,66,33,92v8,-13,35,-76,38,-91v1,-9,-31,-4,-19,-17v23,1,37,2,59,0v6,4,0,11,-6,10v-21,2,-38,58,-50,80v-13,24,-42,87,-59,126","w":157,"k":{"\u201d":14,"\u2019":11,"c":4,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2,"q":2,".":31,",":31}},"z":{"d":"122,1r-111,0v-3,-14,21,-35,33,-56r38,-65v6,-10,2,-11,-4,-11v-31,-2,-57,0,-62,26v-2,2,-7,2,-8,-1v3,-9,3,-42,16,-42v11,13,72,4,98,5v2,14,-13,27,-24,45r-44,73v-8,13,-7,14,7,14v31,2,59,-1,66,-31v3,-1,7,-1,8,2v-3,18,-8,34,-13,41","w":135,"k":{"\u201d":14,"\u2019":14,"c":2,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2}},"{":{"d":"101,-243v-75,13,20,120,-50,147v68,15,-25,129,50,146v2,1,2,5,0,7v-18,0,-54,-3,-51,-45r5,-75v0,-12,-1,-28,-31,-30v-2,-2,-2,-5,0,-7v30,-2,31,-18,31,-30r-5,-74v0,-42,33,-46,51,-46v2,2,2,5,0,7","w":115,"k":{"W":-4,"V":-4,"J":-12,"T":-4,"Y":-4}},"|":{"d":"54,-270r0,360r-22,0r0,-360r22,0","w":86},"}":{"d":"14,50v75,-13,-19,-121,50,-147v-68,-15,25,-128,-50,-146v-2,-2,-2,-5,0,-7v18,0,54,4,51,46r-5,74v0,12,1,28,31,30v2,2,2,5,0,7v-30,2,-31,18,-31,30r5,75v0,42,-33,45,-51,45v-2,-2,-2,-6,0,-7","w":115},"~":{"d":"153,-101v-4,10,-16,39,-37,36v-36,2,-69,-9,-77,24v-5,2,-11,0,-12,-5v4,-10,17,-40,37,-37v35,-2,68,10,77,-23v5,-2,11,0,12,5"},"'":{"d":"42,-252v18,0,17,6,14,23r-9,58v-3,3,-6,3,-9,0r-11,-72v0,-8,5,-9,15,-9","w":84},"\u201c":{"d":"108,-170v-46,-12,-25,-77,15,-84v3,1,4,5,2,8v-25,4,-38,48,-9,51v5,0,10,3,10,10v0,5,-4,15,-18,15xm48,-170v-47,-11,-27,-78,14,-84v3,1,4,5,2,8v-25,4,-38,48,-9,51v5,0,10,3,10,10v0,5,-3,15,-17,15","w":145,"k":{"x":18,"w":14,"v":14,"q":18,"p":22,"m":22,"f":14,"W":-6,"V":-6,"c":18,"d":18,"e":18,"\u00e9":18,"\u00ea":18,"\u00eb":18,"\u00e8":18,"o":18,"\u00f6":18,"t":22,"T":-6,"u":22,"Y":-4,"z":18,"r":18,"y":14,"a":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"g":14,"n":22,"s":18,"A":32,"\u00c1":32,"\u00c2":32,"\u00c0":32}},"\u2013":{"d":"0,-83r180,0r0,18r-180,0r0,-18"},"\u201d":{"d":"98,-252v47,11,27,78,-14,84v-3,-1,-5,-5,-3,-8v25,-4,38,-48,9,-51v-5,0,-9,-3,-9,-10v0,-5,3,-15,17,-15xm37,-252v47,11,27,78,-14,84v-3,-1,-5,-5,-3,-8v25,-4,40,-47,10,-51v-5,0,-10,-3,-10,-10v0,-5,3,-15,17,-15","w":145},"\u2026":{"d":"180,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20xm300,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20xm60,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20","w":360},"`":{"d":"29,-214v-15,-12,3,-23,13,-25v4,0,6,4,8,9r28,58v0,3,-5,4,-7,4","w":129},"\u2014":{"d":"0,-83r360,0r0,18r-360,0r0,-18","w":360},"\u2122":{"d":"28,-175v20,0,9,-33,12,-51v1,-6,-6,-3,-10,-4v-12,-3,-13,10,-19,10v4,-17,0,-25,17,-18v20,-1,41,3,55,-4v-3,6,2,25,-6,23v1,-11,-8,-11,-20,-11v-5,9,-10,55,8,55v1,1,1,5,0,5v-12,-1,-25,-1,-36,0v-1,-1,-2,-3,-1,-5xm158,-175v18,-3,5,-30,8,-47r-26,52v-14,-8,-20,-42,-30,-54v3,16,-10,47,8,49v2,8,-5,3,-15,4v-4,1,-20,1,-12,-4v15,-5,8,-35,11,-51v2,-7,-13,-4,-10,-12r26,0v4,14,17,33,23,45v8,-12,19,-28,24,-45v8,1,28,-4,24,5v-19,-1,-7,32,-9,47v-2,15,12,5,10,16v-11,-1,-21,-1,-32,0v-1,-1,-1,-4,0,-5","w":198},"\u00d7":{"d":"157,-126r-53,54r53,54r-13,14r-54,-54r-53,54r-14,-14r53,-54r-53,-53r14,-14r53,54r54,-54"},"\u00c1":{"d":"167,-15v-4,-21,-13,-49,-20,-69v-6,-19,-48,-5,-70,-9v-22,2,-16,33,-26,47v-5,16,-8,26,-8,30v-4,11,35,3,22,17v-16,-2,-53,-1,-72,0v-7,-18,31,-3,33,-28r68,-177v5,-13,7,-20,6,-26v12,-1,16,-18,24,-10r65,193v13,36,15,37,41,39v3,2,2,8,0,9v-25,-2,-63,-1,-85,0v-3,-1,-4,-7,-1,-9v8,-1,24,-1,23,-7xm107,-199v-10,21,-23,58,-32,83v-3,8,-2,9,8,9r44,0v10,0,11,-1,8,-11xm165,-284v-19,13,-47,21,-69,32v-3,-1,-5,-5,-4,-9v20,-15,38,-34,61,-46v7,-2,16,18,12,23","w":224,"k":{"\u2019":32,"c":4,"C":4,"d":4,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"G":4,"o":2,"\u00f6":2,"O":4,"\u00d6":4,"t":2,"T":25,"u":6,"U":7,"Y":22,"z":-2,"Q":4,"V":29,"W":36,"b":4,"p":4,"q":2,"v":15,"w":15}},"\u00c2":{"d":"167,-15v-4,-21,-13,-49,-20,-69v-6,-19,-48,-5,-70,-9v-22,2,-16,33,-26,47v-5,16,-8,26,-8,30v-4,11,35,3,22,17v-16,-2,-53,-1,-72,0v-7,-18,31,-3,33,-28r68,-177v5,-13,7,-20,6,-26v12,-1,16,-18,24,-10r65,193v13,36,15,37,41,39v3,2,2,8,0,9v-25,-2,-63,-1,-85,0v-3,-1,-4,-7,-1,-9v8,-1,24,-1,23,-7xm107,-199v-10,21,-23,58,-32,83v-3,8,-2,9,8,9r44,0v10,0,11,-1,8,-11xm66,-258r43,-42v5,-5,11,-5,16,0r43,42v0,3,-2,7,-4,7v-18,-5,-33,-24,-53,-21r-41,21v-3,0,-4,-4,-4,-7","w":224,"k":{"\u2019":32,"c":4,"C":4,"d":4,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"G":4,"o":2,"\u00f6":2,"O":4,"\u00d6":4,"t":2,"T":25,"u":6,"U":7,"Y":22,"z":-2,"Q":4,"V":29,"W":36,"b":4,"p":4,"q":2,"v":15,"w":15}},"\u00c0":{"d":"167,-15v-4,-21,-13,-49,-20,-69v-6,-19,-48,-5,-70,-9v-22,2,-16,33,-26,47v-5,16,-8,26,-8,30v-4,11,35,3,22,17v-16,-2,-53,-1,-72,0v-7,-18,31,-3,33,-28r68,-177v5,-13,7,-20,6,-26v12,-1,16,-18,24,-10r65,193v13,36,15,37,41,39v3,2,2,8,0,9v-25,-2,-63,-1,-85,0v-3,-1,-4,-7,-1,-9v8,-1,24,-1,23,-7xm107,-199v-10,21,-23,58,-32,83v-3,8,-2,9,8,9r44,0v10,0,11,-1,8,-11xm129,-254v-22,-11,-49,-19,-69,-32v-2,-10,10,-34,22,-18r51,41v1,4,-1,8,-4,9","w":224,"k":{"\u2019":32,"c":4,"C":4,"d":4,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"G":4,"o":2,"\u00f6":2,"O":4,"\u00d6":4,"t":2,"T":25,"u":6,"U":7,"Y":22,"z":-2,"Q":4,"V":29,"W":36,"b":4,"p":4,"q":2,"v":15,"w":15}},"\u00c9":{"d":"76,-57v3,44,-5,46,50,46v57,0,48,-4,72,-40v3,-2,8,-1,9,2v-3,13,-12,40,-17,50r-177,0v-7,-8,3,-10,11,-10v21,-2,22,-7,22,-45r0,-130v1,-41,-3,-43,-28,-46v-2,-1,-1,-8,1,-9r159,0v2,6,5,32,6,48v-1,2,-7,3,-9,1v-3,-38,-42,-38,-89,-36v-11,0,-10,0,-10,14r0,72v-4,18,20,7,32,10v33,0,39,1,42,-29v2,-2,9,-3,10,0v-2,17,-2,54,0,71v-17,8,-7,-28,-24,-28r-49,-1v-11,0,-11,0,-11,9r0,51xm162,-286v-20,13,-48,21,-70,32v-3,-1,-4,-5,-3,-9v20,-15,37,-35,60,-46v6,-2,17,18,13,23","w":210,"k":{"c":2,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2,"t":6,"u":6,"Y":4,"z":2,"V":4,"W":4,"b":4,"p":6,"q":2,"v":11,"w":11,"r":2,"y":15,"i":2,"\u00ef":2,"h":4,"g":2,"k":4,"l":4,"n":2,"f":4,"j":4,"m":2,"x":2}},"\u00ca":{"d":"76,-57v3,44,-5,46,50,46v57,0,48,-4,72,-40v3,-2,8,-1,9,2v-3,13,-12,40,-17,50r-177,0v-7,-8,3,-10,11,-10v21,-2,22,-7,22,-45r0,-130v1,-41,-3,-43,-28,-46v-2,-1,-1,-8,1,-9r159,0v2,6,5,32,6,48v-1,2,-7,3,-9,1v-3,-38,-42,-38,-89,-36v-11,0,-10,0,-10,14r0,72v-4,18,20,7,32,10v33,0,39,1,42,-29v2,-2,9,-3,10,0v-2,17,-2,54,0,71v-17,8,-7,-28,-24,-28r-49,-1v-11,0,-11,0,-11,9r0,51xm56,-262r44,-41v5,-5,10,-5,15,0r44,41v0,3,-2,7,-4,7v-18,-5,-33,-24,-53,-21r-41,21v-3,0,-5,-4,-5,-7","w":210,"k":{"c":2,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2,"t":6,"u":6,"Y":4,"z":2,"V":4,"W":4,"b":4,"p":6,"q":2,"v":11,"w":11,"r":2,"y":15,"i":2,"\u00ef":2,"h":4,"g":2,"k":4,"l":4,"n":2,"f":4,"j":4,"m":2,"x":2}},"\u00cb":{"d":"76,-57v3,44,-5,46,50,46v57,0,48,-4,72,-40v3,-2,8,-1,9,2v-3,13,-12,40,-17,50r-177,0v-7,-8,3,-10,11,-10v21,-2,22,-7,22,-45r0,-130v1,-41,-3,-43,-28,-46v-2,-1,-1,-8,1,-9r159,0v2,6,5,32,6,48v-1,2,-7,3,-9,1v-3,-38,-42,-38,-89,-36v-11,0,-10,0,-10,14r0,72v-4,18,20,7,32,10v33,0,39,1,42,-29v2,-2,9,-3,10,0v-2,17,-2,54,0,71v-17,8,-7,-28,-24,-28r-49,-1v-11,0,-11,0,-11,9r0,51xm71,-255v-11,0,-18,-7,-18,-19v0,-10,7,-20,18,-20v23,1,24,39,0,39xm142,-255v-11,0,-19,-7,-19,-19v0,-10,8,-20,19,-20v22,1,23,39,0,39","w":210,"k":{"c":2,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2,"t":6,"u":6,"Y":4,"z":2,"V":4,"W":4,"b":4,"p":6,"q":2,"v":11,"w":11,"r":2,"y":15,"i":2,"\u00ef":2,"h":4,"g":2,"k":4,"l":4,"n":2,"f":4,"j":4,"m":2,"x":2}},"\u00c8":{"d":"76,-57v3,44,-5,46,50,46v57,0,48,-4,72,-40v3,-2,8,-1,9,2v-3,13,-12,40,-17,50r-177,0v-7,-8,3,-10,11,-10v21,-2,22,-7,22,-45r0,-130v1,-41,-3,-43,-28,-46v-2,-1,-1,-8,1,-9r159,0v2,6,5,32,6,48v-1,2,-7,3,-9,1v-3,-38,-42,-38,-89,-36v-11,0,-10,0,-10,14r0,72v-4,18,20,7,32,10v33,0,39,1,42,-29v2,-2,9,-3,10,0v-2,17,-2,54,0,71v-17,8,-7,-28,-24,-28r-49,-1v-11,0,-11,0,-11,9r0,51xm120,-254r-69,-31v-4,-10,9,-35,22,-19r51,42v1,4,-1,7,-4,8","w":210,"k":{"c":2,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2,"t":6,"u":6,"Y":4,"z":2,"V":4,"W":4,"b":4,"p":6,"q":2,"v":11,"w":11,"r":2,"y":15,"i":2,"\u00ef":2,"h":4,"g":2,"k":4,"l":4,"n":2,"f":4,"j":4,"m":2,"x":2}},"\u00cf":{"d":"46,-55r0,-128v1,-44,-4,-45,-31,-47v-2,-1,-1,-8,1,-9r90,0v5,6,0,12,-8,10v-21,2,-22,8,-22,46r0,128v-1,43,4,44,31,47v2,1,1,8,-1,9r-90,0v-5,-5,0,-12,8,-10v21,-3,22,-8,22,-46xm30,-254v-11,0,-17,-6,-17,-18v0,-10,6,-20,17,-20v24,0,25,38,0,38xm97,-254v-11,0,-19,-6,-19,-18v0,-10,8,-20,19,-20v22,0,23,38,0,38","w":121,"k":{"c":6,"d":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f6":6,"t":9,"u":12,"z":2,"b":2,"p":12,"v":9,"w":9,"r":6,"y":4,"a":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"i":4,"\u00ef":4,"h":2,"g":2,"k":2,"l":2,"n":4,"f":2,"j":6,"m":4,"s":6}},"\u00d6":{"d":"145,6v-80,0,-128,-57,-128,-122v0,-72,54,-127,128,-127v83,0,125,60,125,123v0,73,-56,126,-125,126xm149,-5v43,0,85,-33,85,-104v0,-59,-26,-123,-95,-123v-37,0,-86,25,-86,104v0,53,25,123,96,123xm110,-257v-11,0,-18,-7,-18,-19v0,-10,7,-20,18,-20v23,1,24,39,0,39xm179,-257v-11,0,-19,-7,-19,-19v0,-10,8,-20,19,-20v22,1,23,39,0,39","w":286,"k":{"c":2,"d":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f6":2,"t":2,"T":11,"u":2,"Y":11,"z":2,"V":9,"W":19,"b":2,"p":2,"q":2,"r":2,"a":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"i":2,"\u00ef":2,"h":4,"g":2,"k":4,"l":4,"n":2,"f":2,"j":4,"m":2,"s":2,"A":11,"\u00c1":11,"\u00c2":11,"\u00c0":11,"X":11}},"\u00e1":{"d":"49,5v-40,0,-54,-54,-7,-64r43,-16v12,-13,14,-57,-19,-58v-10,0,-23,5,-24,16v5,17,-23,25,-29,14v0,-19,41,-44,67,-44v51,0,39,61,36,105v-2,25,13,38,30,27v1,0,2,1,2,4v0,2,-12,16,-30,16v-13,0,-21,-10,-29,-16v-9,2,-26,16,-40,16xm87,-63v-17,4,-51,13,-47,30v0,6,5,22,23,22v24,0,34,-28,24,-52xm94,-229v5,-16,25,-4,26,7v-13,21,-35,38,-51,56v-3,0,-6,-1,-6,-4","w":145},"\u00e2":{"d":"49,5v-40,0,-54,-54,-7,-64r43,-16v12,-13,14,-57,-19,-58v-10,0,-23,5,-24,16v5,17,-23,25,-29,14v0,-19,41,-44,67,-44v51,0,39,61,36,105v-2,25,13,38,30,27v1,0,2,1,2,4v0,2,-12,16,-30,16v-13,0,-21,-10,-29,-16v-9,2,-26,16,-40,16xm87,-63v-17,4,-51,13,-47,30v0,6,5,22,23,22v24,0,34,-28,24,-52xm102,-164r-27,-33v-4,-5,-5,-5,-9,0r-27,33v-2,1,-7,-1,-7,-3r32,-62v4,-7,9,-7,13,0r32,62v0,2,-5,4,-7,3","w":145},"\u00e4":{"d":"49,5v-40,0,-54,-54,-7,-64r43,-16v12,-13,14,-57,-19,-58v-10,0,-23,5,-24,16v5,17,-23,25,-29,14v0,-19,41,-44,67,-44v51,0,39,61,36,105v-2,25,13,38,30,27v1,0,2,1,2,4v0,2,-12,16,-30,16v-13,0,-21,-10,-29,-16v-9,2,-26,16,-40,16xm87,-63v-17,4,-51,13,-47,30v0,6,5,22,23,22v24,0,34,-28,24,-52xm39,-181v-10,0,-18,-6,-18,-17v0,-10,8,-19,18,-19v10,0,18,8,18,17v0,11,-8,19,-18,19xm102,-181v-10,0,-18,-7,-18,-18v0,-10,8,-18,18,-18v10,0,17,9,17,17v0,11,-7,19,-17,19","w":145},"\u00e0":{"d":"49,5v-40,0,-54,-54,-7,-64r43,-16v12,-13,14,-57,-19,-58v-10,0,-23,5,-24,16v5,17,-23,25,-29,14v0,-19,41,-44,67,-44v51,0,39,61,36,105v-2,25,13,38,30,27v1,0,2,1,2,4v0,2,-12,16,-30,16v-13,0,-21,-10,-29,-16v-9,2,-26,16,-40,16xm87,-63v-17,4,-51,13,-47,30v0,6,5,22,23,22v24,0,34,-28,24,-52xm33,-212v-16,-13,3,-25,14,-27v4,0,7,4,9,9r29,61v0,3,-5,4,-8,4","w":145},"\u00e9":{"d":"136,-104v0,16,-1,12,-23,12r-66,0v-9,0,-10,1,-10,10v-5,50,58,93,93,49v4,-1,6,2,6,5v-33,62,-123,29,-123,-38v0,-44,29,-81,72,-81v31,0,51,21,51,43xm41,-105v21,4,74,6,68,-8v0,-10,-7,-23,-28,-23v-21,0,-40,19,-40,31xm95,-226v4,-17,24,-5,26,6v-12,22,-35,38,-51,57v-3,0,-6,-1,-6,-4","w":142,"k":{"\u201d":11,"\u2019":11,"z":-1,"w":-2}},"\u00ea":{"d":"136,-104v0,16,-1,12,-23,12r-66,0v-9,0,-10,1,-10,10v-5,50,58,93,93,49v4,-1,6,2,6,5v-33,62,-123,29,-123,-38v0,-44,29,-81,72,-81v31,0,51,21,51,43xm41,-105v21,4,74,6,68,-8v0,-10,-7,-23,-28,-23v-21,0,-40,19,-40,31xm114,-164r-27,-33v-4,-5,-5,-5,-9,0r-27,33v-2,1,-7,-1,-7,-3r32,-64v4,-8,9,-8,13,0r33,64v0,2,-6,4,-8,3","w":142,"k":{"\u201d":11,"\u2019":11,"z":-1,"w":-2}},"\u00eb":{"d":"136,-104v0,16,-1,12,-23,12r-66,0v-9,0,-10,1,-10,10v-5,50,58,93,93,49v4,-1,6,2,6,5v-33,62,-123,29,-123,-38v0,-44,29,-81,72,-81v31,0,51,21,51,43xm41,-105v21,4,74,6,68,-8v0,-10,-7,-23,-28,-23v-21,0,-40,19,-40,31xm52,-181v-10,0,-17,-6,-17,-17v0,-10,7,-17,17,-17v10,0,17,8,17,16v0,10,-7,18,-17,18xm112,-181v-10,0,-18,-6,-18,-17v0,-9,8,-17,18,-17v10,0,16,8,16,16v0,10,-6,18,-16,18","w":142,"k":{"\u201d":11,"\u2019":11,"z":-1,"w":-2}},"\u00e8":{"d":"136,-104v0,16,-1,12,-23,12r-66,0v-9,0,-10,1,-10,10v-5,50,58,93,93,49v4,-1,6,2,6,5v-33,62,-123,29,-123,-38v0,-44,29,-81,72,-81v31,0,51,21,51,43xm41,-105v21,4,74,6,68,-8v0,-10,-7,-23,-28,-23v-21,0,-40,19,-40,31xm47,-212v-15,-12,3,-23,13,-25v4,0,6,3,8,8r28,58v0,3,-5,5,-7,5","w":142,"k":{"\u201d":11,"\u2019":11,"z":-1,"w":-2}},"\u00ef":{"d":"14,-8v39,3,16,-64,21,-95v3,-16,-2,-20,-13,-25v0,-13,30,-15,38,-24v7,24,2,73,2,112v0,31,3,29,21,32v3,2,2,8,-1,9v-20,-2,-48,-1,-67,0v-3,-1,-4,-7,-1,-9xm15,-181v-10,0,-17,-6,-17,-17v0,-10,7,-19,17,-19v10,0,18,8,18,17v0,11,-8,19,-18,19xm78,-181v-10,0,-18,-7,-18,-18v0,-10,8,-18,18,-18v10,0,18,9,18,17v0,11,-8,19,-18,19","w":92,"k":{"\u201d":7,"\u2019":7}},"\u00f6":{"d":"89,-147v40,0,73,31,73,75v0,45,-31,77,-76,77v-41,0,-73,-29,-73,-74v0,-45,34,-78,76,-78xm90,-6v62,0,53,-128,-5,-130v-24,0,-41,22,-41,62v0,33,14,68,46,68xm54,-181v-10,0,-18,-6,-18,-17v0,-10,8,-19,18,-19v10,0,18,8,18,17v0,11,-8,19,-18,19xm117,-181v-10,0,-18,-7,-18,-18v0,-10,8,-18,18,-18v10,0,17,9,17,17v0,11,-7,19,-17,19","w":174,"k":{"\u201d":18,"\u2019":18,"v":6,"w":4,"y":4,"x":2,".":6}}}});$(document).ready(function(){$('html').addClass('j');var div=jQuery('<div></div>').addClass('g1');div.prependTo('#bs .hs');$("#bs .cn .ix form label").text("Search Mansfield...");$("#bs .cn .ix form label").overlabel({label_class:'s1',wrapper_class:'s2'});$(function(){$('#cs .g4').lightBox();});$("#bs .u li.ix a.g3, #cs .c1 .sn .ix a.g3").click(function(){var fontMessage=$(this).attr("title");alert(fontMessage);return false;});var validator=$("#search").validate({errorElement:"label",errorClass:"s2",errorContainer:$("#bs .hs .g1"),errorLabelContainer:$("#bs .hs .g1"),rules:{'tx_indexedsearch[sword]':"required"},messages:{'tx_indexedsearch[sword]':"Enter keywords!"}});});Cufon.replace('#ns h3,#cs .c1 h1,#fs .c2 h3,#t0 #cs .lc h2,#cs .c2 .fb2 h2,#cs .c2 .fb1 h2,#gw #iw #ns .im h1,#cs .c1 .ct h2,#cs .c1 .ct h2,#cs .n3 h3, .c2 .lc2 h2, .c2 .lc4 h2');
