(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem){if(elem.id!=match[3])return jQuery().find(selector);return jQuery(elem);}selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value===undefined)return this[0]&&jQuery[type||"attr"](this[0],name);else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=='string'?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}if(value.constructor==Number)value+='';return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value==undefined?(this[0]?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script"))scripts=scripts.add(elem);else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}function now(){return+new Date;}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==i){target=this;--i;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){var src=target[name],copy=options[name];if(target===copy)continue;if(deep&&copy&&typeof copy=="object"&&!copy.nodeType)target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)target[name]=copy;}return target;};var expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/^[\s[]?function/.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!==undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length==undefined){for(name in object)if(callback.apply(object[name],args)===false)break;}else
for(;i<length;)if(callback.apply(object[i++],args)===false)break;}else{if(length==undefined){for(name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem+='';if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem[name]=value;}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;return elem[name];}if(msie&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call)ret[0]=array;else
while(i)ret[--i]=array[i];}return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]===elem)return i;return-1;},merge:function(first,second){var i=0,elem,pos=first.length;if(jQuery.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else
while(elem=second[i++])first[pos++]=elem;return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv!=!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null)ret[ret.length]=value;}return ret.concat.apply([],ret);}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false,re=quickChild,m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event){data.unshift({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var props="altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(fn){var args=arguments,i=1;while(i<args.length)jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!='string')return this._load(url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");var remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();if(s.username)xhr.open(type,s.url,s.async,s.username,s.password);else
xhr.open(type,s.url,s.async);try{if(s.data)xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xhr)&&"error"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xhr,status);complete();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xhr,s]);}function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(filter)data=filter(data,type);if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(jQuery.isFunction(a[j])?a[j]():a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall),p,hidden=jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return opt.complete.call(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.call(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(elem){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",jQuery.makeArray(array));}return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].call(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done)this.options.complete.call(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,def:400},step:{scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}}});jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),css=jQuery.curCSS,fixed=css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l,10)||0;top+=parseInt(t,10)||0;}return results;};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};});})();;$(document).ready(function(){$("a").bind("focus",function(){if(this.blur)this.blur();});});;;(function($){var ver="2.54";if($.support==undefined){$.support={opacity:!($.browser.msie&&/MSIE 6.0/.test(navigator.userAgent))};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments,""));}}$.fn.cycle=function(options,arg2){if(this.length==0&&options!="stop"){if(!$.isReady&&this.selector){log("DOM not ready, queuing slideshow");var o={s:this.selector,c:this.context};$(function(){$(o.s,o.c).cycle(options,arg2);});return;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(this.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function buildOptions($cont,$slides,els,options){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){this.style.removeAttribute("filter");});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();if(!$.support.opacity&&opts.cleartype){els[first].style.removeAttribute("filter");}if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}supportMultiTransitions(opts);if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();});opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknowtn transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){var tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){var fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||curr.offsetHeight;curr.cycleW=curr.cycleW||curr.offsetWidth;next.cycleH=next.cycleH||next.offsetHeight;next.cycleW=next.cycleW||next.offsetWidth;if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<a href="#">'+(i+1)+"</a>";if(!a){return;}var $a=$(a);if($a.parents("body").length==0){$a.appendTo($p);}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){var s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0};})(jQuery);;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;jQuery.fn.vjustify=function(){var maxHeight=0;this.each(function(){if(this.offsetHeight>maxHeight){maxHeight=this.offsetHeight;}});this.each(function(){$(this).height(maxHeight+"px");if(this.offsetHeight>maxHeight){$(this).height((maxHeight-(this.offsetHeight-maxHeight))+"px");}});};;$(document).ready(function(){$("body").addClass("js");$("a[@href^=http]").not("[@href*='ss.la-sports.de']").attr('target','_blank');$("a[@href^=http]").not("[@href*='www.la-sports.de']").attr('target','_blank');$(".equalheights").vjustify();});;var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var W=L.DOM={ready:(function(){var b=false,d={loaded:1,complete:1};var a=[],c=function(){if(b){return}b=true;for(var e;e=a.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",c,false);window.addEventListener("pageshow",c,false)}if(!window.opera&&document.readyState){(function(){d[document.readyState]?c():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");c()}catch(f){setTimeout(arguments.callee,1)}})()}P(window,"load",c);return function(e){if(!arguments.length){c()}else{b?e():a.push(e)}}})()};var M=L.CSS={Size:function(b,a){this.value=parseFloat(b);this.unit=String(b).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/a*this.value};this.convertFrom=function(c){return c/this.value*a};this.toString=function(){return this.value+this.unit}},color:I(function(b){var a={};a.color=b.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,c,e){a.opacity=parseFloat(e);return"rgb("+c+")"});return a}),fontStretch:I(function(a){if(typeof a=="number"){return a}if(/%$/.test(a)){return parseFloat(a)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[a]||1}),getStyle:function(b){var a=document.defaultView;if(a&&a.getComputedStyle){return new A(a.getComputedStyle(b,null))}if(b.currentStyle){return new A(b.currentStyle)}return new A(b.style)},gradient:I(function(e){var f={id:e,type:e.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},b=e.substr(e.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,a=b.length,c;d<a;++d){c=b[d].split("=",2).reverse();f.stops.push([c[1]||d/(a-1),c[0]])}return f}),quotedList:I(function(d){var c=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,a;while(a=b.exec(d)){c.push(a[3]||a[1])}return c}),recognizesMedia:I(function(g){var d=document.createElement("style"),c,b,a;d.type="text/css";d.media=g;try{d.appendChild(document.createTextNode("/**/"))}catch(f){}b=F("head")[0];b.insertBefore(d,b.firstChild);c=(d.sheet||d.styleSheet);a=c&&!c.disabled;b.removeChild(d);return a}),supports:function(c,b){var a=document.createElement("span").style;if(a[c]===undefined){return false}a[c]=b;return a[c]===b},textAlign:function(d,c,a,b){if(c.get("textAlign")=="right"){if(a>0){d=" "+d}}else{if(a<b-1){d+=" "}}return d},textDecoration:function(f,e){if(!e){e=this.getStyle(f)}var b={underline:null,overline:null,"line-through":null};for(var a=f;a.parentNode&&a.parentNode.nodeType==1;){var d=true;for(var c in b){if(!J(b,c)||b[c]){continue}if(e.get("textDecoration").indexOf(c)!=-1){b[c]=e.get("color")}d=false}if(d){break}e=this.getStyle(a=a.parentNode)}return b},textShadow:I(function(e){if(e=="none"){return null}var d=[],f={},a,b=0;var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(a=c.exec(e)){if(a[0]==","){d.push(f);f={};b=0}else{if(a[1]){f.color=a[1]}else{f[["offX","offY","blur"][b++]]=a[2]}}}d.push(f);return d}),textTransform:function(b,a){return b[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[a.get("textTransform")]||"toString"]()},whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};return function(d,b,c){if(a[b.get("display")]){return d}if(!c.previousSibling){d=d.replace(/^\s+/,"")}if(!c.nextSibling){d=d.replace(/\s+$/,"")}return d}})()};M.ready=(function(){var a=!M.recognizesMedia("all"),d=false;var c=[],g=function(){a=true;for(var j;j=c.shift();j()){}};var h=F("link"),i=F("style");function b(j){return j.disabled||f(j.sheet,j.media||"screen")}function f(m,p){if(!M.recognizesMedia(p||"all")){return true}if(!m||m.disabled){return false}try{var q=m.cssRules,o;if(q){search:for(var k=0,j=q.length;o=q[k],k<j;++k){switch(o.type){case 2:break;case 3:if(!f(o.styleSheet,o.media.mediaText)){return false}break;default:break search}}}}catch(n){}return true}function e(){if(document.createStyleSheet){return true}var k,j;for(j=0;k=h[j];++j){if(k.rel.toLowerCase()=="stylesheet"&&!b(k)){return false}}for(j=0;k=i[j];++j){if(!b(k)){return false}}return true}W.ready(function(){if(!d){d=M.getStyle(document.body).isUsable()}if(a||(d&&e())){g()}else{setTimeout(arguments.callee,10)}});return function(j){if(a){j()}else{c.push(j)}}})();function R(b){var a=this.face=b.face;this.glyphs=b.glyphs;this.w=b.w;this.baseSize=parseInt(a["units-per-em"],10);this.family=a["font-family"].toLowerCase();this.weight=a["font-weight"];this.style=a["font-style"]||"normal";this.viewBox=(function(){var d=a.bbox.split(/\s+/);var c={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};c.width=c.maxX-c.minX;c.height=c.maxY-c.minY;c.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return c})();this.ascent=-parseInt(a.ascent,10);this.descent=-parseInt(a.descent,10);this.height=-this.ascent+this.descent}function E(){var b={},a={oblique:"italic",italic:"oblique"};this.add=function(c){(b[c.style]||(b[c.style]={}))[c.weight]=c};this.get=function(g,h){var f=b[g]||b[a[g]]||b.normal||b.italic||b.oblique;if(!f){return null}h={normal:400,bold:700}[h]||parseInt(h,10);if(f[h]){return f[h]}var d={1:1,99:0}[h%100],j=[],e,c;if(d===undefined){d=h>400}if(h==500){h=400}for(var i in f){if(!J(f,i)){continue}i=parseInt(i,10);if(!e||i<e){e=i}if(!c||i>c){c=i}j.push(i)}if(h<e){h=e}if(h>c){h=c}j.sort(function(l,k){return(d?(l>h&&k>h)?l<k:l>k:(l<h&&k<h)?l>k:l<k)?-1:1});return f[j[0]]}}function Q(){function c(e,f){if(e.contains){return e.contains(f)}return e.compareDocumentPosition(f)&16}function a(g){var f=g.relatedTarget;if(!f||c(this,f)){return}b(this)}function d(f){b(this)}function b(e){setTimeout(function(){L.replace(e,D.get(e).options,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){P(e,"mouseover",a);P(e,"mouseout",a)}else{P(e,"mouseenter",d);P(e,"mouseleave",d)}}}function T(){var b=[],c={};function a(g){var d=[],f;for(var e=0;f=g[e];++e){d[e]=b[c[f]]}return d}this.add=function(e,d){c[e]=b.push(d)-1};this.repeat=function(){var d=arguments.length?a(arguments):b,e;for(var f=0;e=d[f++];){L.replace(e[0],e[1],true)}}}function Z(){var c={},a=0;function b(d){return d.cufid||(d.cufid=++a)}this.get=function(d){var e=b(d);return c[e]||(c[e]={})}}function A(a){var c={},b={};this.extend=function(d){for(var e in d){if(J(d,e)){c[e]=d[e]}}return this};this.get=function(d){return c[d]!=undefined?c[d]:a[d]};this.getSize=function(e,d){return b[e]||(b[e]=new M.Size(this.get(e),d))};this.isUsable=function(){return!!a}}function P(b,a,c){if(b.addEventListener){b.addEventListener(a,c,false)}else{if(b.attachEvent){b.attachEvent("on"+a,function(){return c.call(b,window.event)})}}}function U(b,a){var c=D.get(b);if(c.options){return b}if(a.hover&&a.hoverables[b.nodeName.toLowerCase()]){B.attach(b)}c.options=a;return b}function I(a){var b={};return function(c){if(!J(b,c)){b[c]=a.apply(null,arguments)}return b[c]}}function C(f,e){if(!e){e=M.getStyle(f)}var b=M.quotedList(e.get("fontFamily").toLowerCase()),d;for(var c=0,a=b.length;c<a;++c){d=b[c];if(H[d]){return H[d].get(e.get("fontStyle"),e.get("fontWeight"))}}return null}function F(a){return document.getElementsByTagName(a)}function J(b,a){return b.hasOwnProperty(a)}function G(){var a={},c,e;for(var d=0,b=arguments.length;c=arguments[d],d<b;++d){for(e in c){if(J(c,e)){a[e]=c[e]}}}return a}function N(d,n,b,o,e,c){var m=o.separate;if(m=="none"){return Y[o.engine].apply(null,arguments)}var k=document.createDocumentFragment(),g;var h=n.split(O[m]),a=(m=="words");if(a&&S){if(/^\s/.test(n)){h.unshift("")}if(/\s$/.test(n)){h.push("")}}for(var j=0,f=h.length;j<f;++j){g=Y[o.engine](d,a?M.textAlign(h[j],b,j,f):h[j],b,o,e,c,j<f-1);if(g){k.appendChild(g)}}return k}function K(b,j){var c,a,d,g,f,i;for(d=U(b,j).firstChild;d;d=f){g=d.nodeType;f=d.nextSibling;i=false;if(g==1){if(!d.firstChild){continue}if(!/cufon/.test(d.className)){arguments.callee(d,j);continue}else{i=true}}else{if(g!=3){continue}}if(!a){a=M.getStyle(b).extend(j)}if(!c){c=C(b,a)}if(!c){continue}if(i){Y[j.engine](c,null,a,j,d,b);continue}var h=M.whiteSpace(d.data,a,d);if(h===""){continue}var e=N(c,h,a,j,d,b);if(e){d.parentNode.replaceChild(e,d)}else{d.parentNode.removeChild(d)}}}var S=" ".split(/\s+/).length==0;var D=new Z();var B=new Q();var X=new T();var Y={},H={},V={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){W.ready();return L};L.refresh=function(){X.repeat.apply(X,arguments);return L};L.registerEngine=function(b,a){if(!a){return L}Y[b]=a;return L.set("engine",b)};L.registerFont=function(c){var a=new R(c),b=a.family;if(!H[b]){H[b]=new E()}H[b].add(a);return L.set("fontFamily",'"'+b+'"')};L.replace=function(c,b,a){b=G(V,b);if(!b.engine){return L}if(b.hover){b.forceHitArea=true}if(typeof b.textShadow=="string"){b.textShadow=M.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=M.gradient(b.color)}if(!a){X.add(c,arguments)}if(c.nodeType||typeof c=="string"){c=[c]}M.ready(function(){for(var e=0,d=c.length;e<d;++e){var f=c[e];if(typeof f=="string"){L.replace(b.selector(f),b,true)}else{K(f,b)}}});return L};L.set=function(a,b){V[a]=b;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}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((".cufon-canvas{text-indent:0;}@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{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));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(AF,Z,w,V,d,AG){var I=(Z===null);if(I){Z=d.alt}var b=AF.viewBox;var K=w.getSize("fontSize",AF.baseSize);var u=w.get("letterSpacing");u=(u=="normal")?0:K.convertFrom(parseInt(u,10));var c=0,v=0,t=0,X=0;var a=V.textShadow,r=[];if(a){for(var AE=a.length;AE--;){var h=a[AE];var q=K.convertFrom(parseFloat(h.offX));var o=K.convertFrom(parseFloat(h.offY));r[AE]=[q,o];if(o<c){c=o}if(q>v){v=q}if(o>t){t=o}if(q<X){X=q}}}var AJ=Cufon.CSS.textTransform(Z,w).split(""),T;var J=AF.glyphs,W,M,AA;var G=0,P,f=[];for(var AE=0,AC=0,z=AJ.length;AE<z;++AE){W=J[T=AJ[AE]]||AF.missingGlyph;if(!W){continue}if(M){G-=AA=M[T]||0;f[AC-1]-=AA}G+=P=f[AC++]=~~(W.w||AF.w)+u;M=W.k}if(P===undefined){return null}v+=b.width-P;X+=b.minX;var U,L;if(I){U=d;L=d.firstChild}else{U=document.createElement("span");U.className="cufon cufon-canvas";U.alt=Z;L=document.createElement("canvas");U.appendChild(L);if(V.printable){var AB=document.createElement("span");AB.className="cufon-alt";AB.appendChild(document.createTextNode(Z));U.appendChild(AB)}}var AK=U.style;var n=L.style;var H=K.convert(b.height);var AI=Math.ceil(H);var s=AI/H;var m=s*Cufon.CSS.fontStretch(w.get("fontStretch"));var p=G*m;L.width=Math.ceil(K.convert(p+v-X));L.height=Math.ceil(K.convert(b.height-c+t));c+=b.minY;n.top=Math.round(K.convert(c-AF.ascent))+"px";n.left=Math.round(K.convert(X))+"px";var S=Math.ceil(K.convert(p))+"px";if(A){AK.width=S;AK.height=K.convert(AF.height)+"px"}else{AK.paddingLeft=S;AK.paddingBottom=(K.convert(AF.height)-1)+"px"}var AH=L.getContext("2d"),e=H/b.height;AH.scale(e,e*s);AH.translate(-X,-c);AH.lineWidth=AF.face["underline-thickness"];AH.save();function N(i,g){AH.strokeStyle=g;AH.beginPath();AH.moveTo(0,i);AH.lineTo(G,i);AH.stroke()}var O=V.enableTextDecoration?Cufon.CSS.textDecoration(AG,w):{};if(O.underline){N(-AF.face["underline-position"],O.underline)}if(O.overline){N(AF.ascent,O.overline)}function AD(){AH.scale(m,1);for(var x=0,k=0,g=AJ.length;x<g;++x){var y=J[AJ[x]]||AF.missingGlyph;if(!y){continue}if(y.d){AH.beginPath();if(y.code){C(y.code,AH)}else{y.code=D("m"+y.d,AH)}AH.fill()}AH.translate(f[k++],0)}AH.restore()}if(a){for(var AE=a.length;AE--;){var h=a[AE];AH.save();AH.fillStyle=h.color;AH.translate.apply(AH,r[AE]);AD()}}var R=V.textGradient;if(R){var Y=R.stops,Q=AH.createLinearGradient(0,b.minY,0,b.maxY);for(var AE=0,z=Y.length;AE<z;++AE){Q.addColorStop.apply(Q,Y[AE])}AH.fillStyle=Q}else{AH.fillStyle=w.get("color")}AD();if(O["line-through"]){N(-AF.descent,O["line-through"])}return U}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;var F=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,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:'+(F?"middle":"text-bottom")+";}.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>").replace(/;/g,"!important;"));function C(G,H){return A(G,/(?:em|ex|%)$/i.test(H)?"1em":H)}function A(J,K){if(/px$/i.test(K)){return parseFloat(K)}var I=J.style.left,H=J.runtimeStyle.left;J.runtimeStyle.left=J.currentStyle.left;J.style.left=K.replace("%","em");var G=J.style.pixelLeft;J.style.left=I;J.runtimeStyle.left=H;return G}var E={};function D(L){var M=L.id;if(!E[M]){var J=L.stops,K=document.createElement("cvml:fill"),G=[];K.type="gradient";K.angle=180;K.focus="0";K.method="sigma";K.color=J[0][1];for(var I=1,H=J.length-1;I<H;++I){G.push(J[I][0]*100+"% "+J[I][1])}K.colors=G.join(",");K.color2=J[H][1];E[M]=K}return E[M]}return function(AI,f,AC,b,n,AJ,AA){var J=(f===null);if(J){f=n.alt}var h=AI.viewBox;var L=AC.computedFontSize||(AC.computedFontSize=new Cufon.CSS.Size(C(AJ,AC.get("fontSize"))+"px",AI.baseSize));var z=AC.computedLSpacing;if(z==undefined){z=AC.get("letterSpacing");AC.computedLSpacing=z=(z=="normal")?0:~~L.convertFrom(A(AJ,z))}var X,M;if(J){X=n;M=n.firstChild}else{X=document.createElement("span");X.className="cufon cufon-vml";X.alt=f;M=document.createElement("span");M.className="cufon-vml-canvas";X.appendChild(M);if(b.printable){var AF=document.createElement("span");AF.className="cufon-alt";AF.appendChild(document.createTextNode(f));X.appendChild(AF)}if(!AA){X.appendChild(document.createElement("cvml:shape"))}}var AO=X.style;var u=M.style;var H=L.convert(h.height),AL=Math.ceil(H);var y=AL/H;var s=y*Cufon.CSS.fontStretch(AC.get("fontStretch"));var x=h.minX,w=h.minY;u.height=AL;u.top=Math.round(L.convert(w-AI.ascent));u.left=Math.round(L.convert(x));AO.height=L.convert(AI.height)+"px";var Q=b.enableTextDecoration?Cufon.CSS.textDecoration(AJ,AC):{};var e=AC.get("color");var AN=Cufon.CSS.textTransform(f,AC).split(""),W;var K=AI.glyphs,c,N,AE;var G=0,o=[],v=0,S;var U,g=b.textShadow;for(var AH=0,AG=0,AD=AN.length;AH<AD;++AH){c=K[W=AN[AH]]||AI.missingGlyph;if(!c){continue}if(N){G-=AE=N[W]||0;o[AG-1]-=AE}G+=S=o[AG++]=~~(c.w||AI.w)+z;N=c.k}if(S===undefined){return null}var V=-x+G+(h.width-S);var AM=L.convert(V*s),AB=Math.round(AM);var r=V+","+h.height,I;var m="r"+r+"ns";var T=b.textGradient&&D(b.textGradient);for(AH=0,AG=0;AH<AD;++AH){c=K[AN[AH]]||AI.missingGlyph;if(!c){continue}if(J){U=M.childNodes[AG];while(U.firstChild){U.removeChild(U.firstChild)}}else{U=document.createElement("cvml:shape");M.appendChild(U)}U.stroked="f";U.coordsize=r;U.coordorigin=I=(x-v)+","+w;U.path=(c.d?"m"+c.d+"xe":"")+"m"+I+m;U.fillcolor=e;if(T){U.appendChild(T.cloneNode(false))}var AK=U.style;AK.width=AB;AK.height=AL;if(g){var P=g[0],O=g[1];var a=Cufon.CSS.color(P.color),Y;var q=document.createElement("cvml:shadow");q.on="t";q.color=a.color;q.offset=P.offX+","+P.offY;if(O){Y=Cufon.CSS.color(O.color);q.type="double";q.color2=Y.color;q.offset2=O.offX+","+O.offY}q.opacity=a.opacity||(Y&&Y.opacity)||1;U.appendChild(q)}v+=o[AG++]}var p=U.nextSibling,R,Z;if(b.forceHitArea){if(!p){p=document.createElement("cvml:rect");p.stroked="f";p.className="cufon-vml-cover";R=document.createElement("cvml:fill");R.opacity=0;p.appendChild(R);M.appendChild(p)}Z=p.style;Z.width=AB;Z.height=AL}else{if(p){M.removeChild(p)}}AO.width=Math.max(Math.ceil(L.convert(G*s)),0);if(F){var t=AC.computedYAdjust;if(t===undefined){var d=AC.get("lineHeight");if(d=="normal"){d="1em"}else{if(!isNaN(d)){d+="em"}}AC.computedYAdjust=t=0.5*(A(AJ,d)-parseFloat(AO.height))}if(t){AO.marginTop=Math.ceil(t)+"px";AO.marginBottom=t+"px"}}return X}})());;Cufon.registerFont({"w":1069,"face":{"font-family":"regular","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 0 5 3 3 0 0 2 0 4","ascent":"1565","descent":"-483","x-height":"12","bbox":"-31 -1798 1716 463","underline-thickness":"104.448","underline-position":"-174.08","stemh":"139","stemv":"147","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":509},"!":{"d":"440,-1458r-22,1048r-127,0r-21,-1048r170,0xm442,0r-176,0r0,-172r176,0r0,172","w":647},"\"":{"d":"686,-1110r-162,0r0,-348r162,0r0,348xm342,-1110r-162,0r0,-348r162,0r0,348","w":866},"#":{"d":"1233,-885r-197,0r-47,289r182,0r0,131r-202,0r-74,465r-152,0r74,-465r-328,0r-71,465r-152,0r74,-465r-182,0r0,-131r204,0r48,-289r-189,0r0,-135r207,0r70,-440r153,0r-71,440r325,0r70,-440r149,0r-69,440r178,0r0,135xm885,-885r-326,0r-47,289r326,0","w":1337},"$":{"d":"1106,-401v0,237,-176,391,-447,409r0,225r-122,0r0,-221v-193,-8,-324,-65,-451,-192r107,-107v108,109,213,152,352,158r0,-543v-249,-20,-420,-140,-420,-387v0,-231,156,-389,412,-409r0,-183r122,0r0,183v158,8,269,57,381,157r-100,101v-78,-70,-162,-115,-287,-123r0,530v140,19,265,55,328,113v77,71,125,168,125,289xm950,-397v0,-76,-24,-142,-71,-183v-68,-59,-140,-63,-226,-75r0,526v185,-12,297,-111,297,-268xm545,-817r0,-516v-170,14,-266,116,-266,268v0,72,20,129,65,168v57,47,131,70,201,80","w":1220},"%":{"d":"1575,-262v0,168,-119,276,-277,276v-159,0,-276,-108,-276,-276r0,-215v0,-168,117,-277,276,-277v158,0,277,109,277,277r0,215xm686,-981v0,166,-119,274,-276,274v-160,0,-277,-108,-277,-274r0,-215v0,-168,117,-277,277,-277v157,0,276,109,276,277r0,215xm1257,-1458r-684,1458r-122,0r684,-1458r122,0xm1458,-266r0,-207v0,-109,-49,-178,-160,-178v-112,0,-159,67,-159,178r0,207v0,110,47,178,159,178v111,0,160,-70,160,-178xm569,-985r0,-207v0,-108,-49,-178,-159,-178v-113,0,-160,67,-160,178r0,207v0,111,49,176,160,176v110,0,159,-68,159,-176","w":1705},"&":{"d":"954,-1163v0,176,-133,241,-270,334r373,448v59,-90,80,-170,82,-334r147,0v-2,185,-41,334,-135,447r223,268r-194,0r-131,-160v-60,56,-197,172,-431,172v-282,0,-460,-170,-460,-424v0,-219,155,-329,315,-436v-72,-86,-158,-186,-158,-317v0,-174,136,-305,322,-305v182,0,317,133,317,307xm961,-266r-402,-484v-125,86,-250,168,-250,334v0,174,127,291,307,291v109,0,220,-29,345,-141xm600,-928v97,-69,209,-111,209,-235v0,-99,-74,-174,-172,-174v-100,0,-168,71,-168,170v0,67,35,123,131,239","w":1513},"'":{"d":"342,-1110r-162,0r0,-348r162,0r0,348","w":522},"(":{"d":"336,-207v0,158,59,219,143,299r-100,101v-66,-66,-111,-109,-148,-177v-36,-67,-43,-139,-43,-211r0,-1069v0,-71,7,-143,43,-211v37,-67,82,-110,148,-176r100,101v-84,81,-143,140,-143,299r0,1044","w":610},")":{"d":"268,-1251v4,-159,-58,-217,-141,-295r104,-105v66,66,111,109,148,176v37,68,41,140,41,211r0,1069v0,72,-4,144,-41,211v-37,68,-82,111,-148,177r-104,-105v83,-79,141,-135,141,-295r0,-1044","w":610},"*":{"d":"834,-967r-58,101r-239,-146r8,281r-119,0r8,-281r-237,146r-60,-101r246,-133r-246,-135r60,-98r237,145r-8,-280r119,0r-8,280r239,-145r58,98r-246,135","w":970},"+":{"d":"963,-479r-359,0r0,360r-137,0r0,-360r-361,0r0,-137r361,0r0,-357r137,0r0,357r359,0r0,137"},",":{"d":"360,133r-180,162r0,-475r180,0r0,313","w":540},"-":{"d":"717,-483r-561,0r0,-138r561,0r0,138","w":872},".":{"d":"373,0r-193,0r0,-193r193,0r0,193","w":552},"\/":{"d":"729,-1610r-584,1762r-145,0r584,-1762r145,0","w":727},"0":{"d":"934,-389v0,242,-172,401,-399,401v-228,0,-400,-159,-400,-401r0,-680v0,-242,172,-401,400,-401v227,0,399,159,399,401r0,680xm786,-397r0,-664v0,-160,-90,-278,-251,-278v-162,0,-252,118,-252,278r0,664v0,159,90,278,252,278v161,0,251,-119,251,-278"},"1":{"d":"676,0r-148,0r0,-1294r-272,239r0,-168r272,-235r148,0r0,1458"},"2":{"d":"944,0r-805,0r0,-131r576,-731v55,-72,82,-135,82,-215v0,-158,-95,-262,-254,-262v-135,0,-254,75,-254,264r-148,0v0,-230,158,-395,402,-395v239,0,401,153,401,393v0,116,-37,192,-117,295r-510,651r627,0r0,131"},"3":{"d":"942,-397v0,268,-190,411,-428,411v-229,0,-416,-120,-428,-385r147,0v13,183,142,254,281,254v158,0,281,-104,281,-282v0,-186,-102,-293,-318,-283r0,-129v196,9,291,-89,291,-264v0,-174,-113,-266,-254,-266v-154,0,-248,94,-262,243r-148,0v17,-235,189,-375,410,-375v238,0,401,158,401,396v0,153,-65,264,-196,323v147,56,223,174,223,357"},"4":{"d":"987,-231r-178,0r0,231r-145,0r0,-231r-582,0r0,-134r526,-1093r158,0r-526,1093r424,0r0,-413r145,0r0,413r178,0r0,134"},"5":{"d":"946,-481v0,145,-12,282,-117,387v-67,67,-161,108,-290,108v-244,0,-381,-137,-396,-358r148,0v18,145,94,227,248,227v71,0,137,-24,180,-67v76,-76,80,-193,80,-297v0,-178,-35,-355,-246,-355v-127,0,-213,58,-242,144r-133,0r0,-766r737,0r0,131r-604,0r0,463v58,-64,148,-101,262,-101v109,0,195,35,252,93v107,106,121,254,121,391"},"6":{"d":"942,-420v0,248,-156,432,-403,432v-248,0,-406,-168,-406,-420v0,-104,31,-204,92,-327r359,-723r151,0r-325,655v45,-20,96,-31,153,-31v228,0,379,175,379,414xm795,-414v0,-161,-90,-295,-258,-295v-156,0,-256,115,-256,295v0,178,100,295,256,295v155,0,258,-117,258,-295"},"7":{"d":"965,-1327r-506,1327r-156,0r506,-1327r-508,0r0,229r-145,0r0,-360r809,0r0,131"},"8":{"d":"965,-401v0,245,-189,413,-430,413v-242,0,-431,-168,-431,-413v0,-170,97,-285,220,-355v-115,-65,-191,-172,-191,-323v0,-228,170,-391,402,-391v231,0,401,163,401,391v0,151,-74,258,-188,323v122,70,217,185,217,355xm817,-403v0,-162,-123,-285,-282,-285v-160,0,-283,123,-283,285v0,161,123,284,283,284v159,0,282,-123,282,-284xm788,-1077v0,-152,-104,-262,-253,-262v-150,0,-254,110,-254,262v0,153,104,260,254,260v149,0,253,-107,253,-260"},"9":{"d":"936,-1051v0,105,-31,205,-92,328r-359,723r-153,0r327,-655v-45,20,-98,30,-155,30v-228,0,-377,-174,-377,-413v0,-248,156,-432,403,-432v248,0,406,167,406,419xm788,-1044v0,-179,-102,-295,-258,-295v-155,0,-256,116,-256,295v0,161,88,294,256,294v156,0,258,-114,258,-294"},":":{"d":"428,-616r-192,0r0,-193r192,0r0,193xm428,0r-192,0r0,-193r192,0r0,193","w":608},";":{"d":"420,133r-180,162r0,-475r180,0r0,313xm428,-616r-192,0r0,-193r192,0r0,193","w":608},"<":{"d":"872,-139r-677,-344r0,-135r677,-345r0,158r-512,254r512,254r0,158"},"=":{"d":"963,-655r-857,0r0,-138r857,0r0,138xm963,-309r-857,0r0,-135r857,0r0,135"},">":{"d":"872,-483r-677,344r0,-158r512,-254r-512,-254r0,-158r677,345r0,135"},"?":{"d":"924,-1098v0,97,-39,170,-93,248r-167,242v-40,62,-38,113,-37,198r-148,0v-4,-122,8,-194,64,-274r166,-240v39,-57,67,-104,67,-174v0,-137,-98,-241,-235,-241v-146,0,-238,114,-238,243r-147,0v0,-209,163,-374,385,-374v215,0,383,153,383,372xm641,0r-176,0r0,-172r176,0r0,172","w":1017},"@":{"d":"881,-1460v267,-4,432,174,432,444r0,1018r-142,-2r0,-113v-67,86,-149,127,-274,127v-115,0,-215,-45,-279,-125v-69,-86,-90,-190,-90,-376v0,-181,21,-291,84,-375v60,-80,164,-127,283,-127v119,0,205,43,274,129r0,-160v9,-201,-117,-315,-307,-315r-266,0v-96,0,-164,22,-223,82v-62,61,-82,120,-82,233r0,690v0,129,22,178,117,248r-101,100v-125,-92,-160,-163,-160,-346r0,-688v-4,-272,158,-444,431,-444r303,0xm1169,-487v0,-191,-32,-375,-247,-375v-215,0,-248,184,-248,375v0,190,33,374,248,374v215,0,247,-184,247,-374","w":1460},"A":{"d":"1227,0r-166,0r-117,-330r-637,0r-117,330r-165,0r536,-1458r131,0xm899,-465r-270,-770r-275,770r545,0","w":1251,"k":{"\u00d6":20,"y":35,"v":35,"Y":72,"W":29,"V":72,"T":123,"Q":20,"O":20,"J":-25,"G":20,"C":20}},"B":{"d":"1212,-403v0,264,-176,403,-434,403r-567,0r0,-1458r549,0v254,0,430,145,430,389v0,154,-92,274,-215,319v139,52,237,172,237,347xm1057,-408v0,-163,-113,-266,-293,-266r-397,0r0,535r397,0v180,0,293,-105,293,-269xm1034,-1067v0,-174,-125,-252,-286,-252r-381,0r0,506r381,0v161,0,286,-80,286,-254","w":1368,"k":{"J":55}},"C":{"d":"1171,-422v-47,275,-245,434,-505,434v-144,0,-275,-53,-373,-151v-137,-137,-137,-281,-137,-590v0,-309,0,-453,137,-590v98,-98,229,-151,373,-151v262,0,456,159,505,434r-159,0v-39,-178,-164,-295,-346,-295v-97,0,-189,37,-252,102v-92,94,-103,195,-103,500v0,305,11,405,103,500v63,65,155,102,252,102v182,0,311,-117,350,-295r155,0","w":1304,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":70,"A":20}},"D":{"d":"1223,-745v0,202,8,458,-144,610v-88,88,-217,135,-368,135r-500,0r0,-1458r500,0v151,0,280,47,368,135v152,152,144,375,144,578xm1067,-745v0,-179,1,-361,-96,-467v-132,-144,-359,-100,-604,-107r0,1180r317,0v113,0,211,-29,287,-107v100,-104,96,-321,96,-499","w":1378,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":74,"A":20}},"E":{"d":"1116,0r-905,0r0,-1458r905,0r0,139r-749,0r0,514r639,0r0,139r-639,0r0,527r749,0r0,139","w":1228,"k":{"J":16}},"F":{"d":"1116,-1319r-749,0r0,537r639,0r0,139r-639,0r0,643r-156,0r0,-1458r905,0r0,139","w":1187,"k":{"\u00fc":61,"\u00f6":78,"\u00e4":78,"\u00d6":41,"\u00c4":123,"z":61,"x":61,"u":61,"r":61,"p":61,"o":78,"n":61,"m":61,"e":78,"c":78,"a":78,"S":20,"Q":41,"O":41,"J":279,"G":41,"C":41,"A":123,".":201}},"G":{"d":"666,-127v202,1,372,-159,358,-389r0,-111r-358,0r0,-137r514,0r0,232v0,167,-37,278,-125,376v-193,215,-562,222,-762,17v-136,-138,-137,-281,-137,-590v0,-309,0,-453,137,-590v98,-98,227,-151,373,-151v278,0,467,180,510,436r-156,0v-41,-185,-172,-297,-354,-297v-97,0,-189,39,-252,104v-92,94,-103,193,-103,498v0,305,11,405,103,500v63,65,155,102,252,102","w":1331,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":78,"A":20}},"H":{"d":"1214,0r-155,0r0,-666r-692,0r0,666r-156,0r0,-1458r156,0r0,653r692,0r0,-653r155,0r0,1458","w":1425},"I":{"d":"367,0r-156,0r0,-1458r156,0r0,1458","w":577},"J":{"d":"836,-442v0,280,-189,454,-455,454v-139,0,-244,-41,-334,-131r105,-104v53,53,108,96,229,96v190,0,299,-121,299,-336r0,-995r156,0r0,1016","w":1026,"k":{"\u00c4":20,"A":20}},"K":{"d":"1303,0r-185,0r-444,-776r-307,368r0,408r-156,0r0,-1458r156,0r0,837r680,-837r190,0r-459,563","w":1331,"k":{"\u00d6":20,"y":63,"Q":20,"O":20,"J":-25,"G":20,"C":20}},"L":{"d":"1112,0r-901,0r0,-1458r156,0r0,1319r745,0r0,139","w":1173,"k":{"\u00dc":66,"\u00d6":74,"y":123,"Y":164,"W":82,"V":143,"U":66,"T":164,"Q":74,"O":74,"J":-25,"G":74,"C":74}},"M":{"d":"1460,0r-155,0r0,-1108r-400,879r-133,0r-405,-879r0,1108r-156,0r0,-1458r156,0r475,1034r463,-1034r155,0r0,1458","w":1671},"N":{"d":"1288,0r-147,0r-774,-1169r0,1169r-156,0r0,-1458r147,0r775,1165r0,-1165r155,0r0,1458","w":1499},"O":{"d":"1176,-729v0,309,-3,450,-138,590v-190,197,-555,197,-745,0v-134,-140,-137,-281,-137,-590v0,-309,3,-450,137,-590v190,-197,555,-198,745,0v135,140,138,281,138,590xm1020,-729v0,-305,-12,-402,-102,-498v-127,-135,-378,-135,-504,0v-90,96,-103,193,-103,498v0,305,13,401,103,498v126,135,377,135,504,0v90,-97,102,-193,102,-498","w":1331,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":78,"A":20}},"P":{"d":"1204,-1030v0,262,-184,430,-450,430r-387,0r0,600r-156,0r0,-1458r543,0v266,0,450,166,450,428xm1049,-1030v0,-193,-127,-289,-310,-289r-372,0r0,580r372,0v183,0,310,-99,310,-291","w":1290,"k":{"\u00f6":20,"\u00e4":20,"\u00c4":102,"s":20,"q":20,"o":20,"g":20,"e":20,"d":20,"c":20,"a":20,"J":246,"A":102,".":225}},"Q":{"d":"1235,-23r-94,95r-162,-162v-199,155,-518,125,-686,-49v-134,-140,-137,-281,-137,-590v0,-309,3,-450,137,-590v190,-197,555,-198,745,0v135,140,138,281,138,590v0,278,0,422,-101,547xm1020,-729v0,-305,-12,-402,-102,-498v-127,-135,-378,-135,-504,0v-90,96,-103,193,-103,498v0,305,12,402,103,498v110,117,326,142,458,34r-184,-184r94,-94r179,178v53,-86,59,-199,59,-432","w":1329},"R":{"d":"1231,0r-182,0r-332,-647r-350,0r0,647r-156,0r0,-1458r559,0v254,0,432,153,432,405v0,213,-129,353,-317,391xm1047,-1051v0,-178,-121,-268,-291,-268r-389,0r0,535r389,0v170,0,291,-88,291,-267","w":1343,"k":{"J":49}},"S":{"d":"1090,-401v0,256,-201,413,-504,413v-219,0,-363,-55,-500,-192r107,-107v120,121,233,160,397,160v213,0,344,-100,344,-270v0,-165,-81,-230,-260,-252v-164,-20,-347,-51,-438,-137v-72,-68,-111,-156,-111,-273v0,-248,178,-411,467,-411v186,0,309,47,434,159r-100,101v-90,-82,-187,-125,-340,-125v-195,0,-307,108,-307,270v0,225,221,243,421,272v138,20,205,50,267,103v80,67,123,168,123,289","w":1204,"k":{"Y":41,"S":33,"J":41}},"T":{"d":"1061,-1319r-422,0r0,1319r-156,0r0,-1319r-422,0r0,-139r1000,0r0,139","w":1122,"k":{"\u00fc":111,"\u00f6":156,"\u00e4":156,"\u00d6":41,"\u00c4":123,"z":111,"y":111,"x":111,"w":111,"v":111,"u":111,"s":156,"r":111,"q":156,"p":111,"o":156,"n":111,"m":111,"g":156,"e":156,"d":156,"c":156,"a":156,"Q":41,"O":41,"J":164,"G":41,"C":41,"A":123,".":164}},"U":{"d":"1208,-481v0,291,-215,493,-510,493v-295,0,-508,-202,-508,-493r0,-977r156,0r0,964v0,222,139,367,352,367v213,0,355,-145,355,-367r0,-964r155,0r0,977","w":1398,"k":{"J":66}},"V":{"d":"1102,-1458r-479,1458r-127,0r-480,-1458r164,0r379,1179r379,-1179r164,0","w":1118,"k":{"\u00fc":41,"\u00f6":82,"\u00e4":82,"\u00d6":20,"\u00c4":72,"z":41,"y":20,"x":41,"u":41,"s":82,"r":41,"q":82,"p":41,"o":82,"n":41,"m":41,"g":82,"e":82,"d":82,"c":82,"a":82,"Q":20,"O":20,"G":20,"C":20,"A":72,".":164}},"W":{"d":"1716,-1458r-373,1458r-145,0r-324,-1167r-323,1167r-145,0r-373,-1458r166,0r284,1175r322,-1175r139,0r322,1175r284,-1175r166,0","w":1748,"k":{"\u00f6":82,"\u00e4":82,"\u00d6":20,"\u00c4":23,"s":82,"q":82,"o":82,"g":82,"e":82,"d":82,"c":82,"a":82,"Q":20,"O":20,"G":20,"C":20,"A":23,".":102}},"X":{"d":"1098,0r-180,0r-355,-612r-356,612r-176,0r446,-748r-418,-710r181,0r323,575r324,-575r180,0r-420,710","w":1128,"k":{"\u00d6":20,"y":39,"Q":20,"O":20,"J":-25,"G":20,"C":20}},"Y":{"d":"1036,-1458r-430,856r0,602r-155,0r0,-602r-435,-856r168,0r344,698r340,-698r168,0","w":1052,"k":{"\u00fc":82,"\u00f6":164,"\u00e4":164,"\u00d6":20,"\u00c4":82,"z":82,"x":82,"u":82,"s":164,"r":82,"q":164,"p":82,"o":164,"n":82,"m":82,"g":164,"e":164,"d":164,"c":164,"a":164,"Q":20,"O":20,"J":82,"G":20,"C":20,"A":82,".":164}},"Z":{"d":"1022,0r-905,0r0,-147r729,-1172r-701,0r0,-139r877,0r0,131r-735,1188r735,0r0,139","w":1138},"[":{"d":"551,152r-363,0r0,-1762r363,0r0,131r-215,0r0,1499r215,0r0,132","w":641},"\\":{"d":"727,152r-145,0r-582,-1756r145,0","w":727},"]":{"d":"453,152r-363,0r0,-127r221,0r0,-1508r-221,0r0,-127r363,0r0,1762","w":641},"^":{"d":"952,-846r-151,0r-250,-467r-252,467r-152,0r336,-624r135,0","w":1099},"_":{"d":"1100,338r-1100,0r0,-105r1100,0r0,105","w":1099},"`":{"d":"612,-1217r-135,0r-221,-313r176,0","w":1024},"a":{"d":"465,12v-230,0,-361,-96,-361,-297v0,-176,123,-290,349,-290r303,0r0,-97v0,-147,-74,-221,-258,-221v-129,0,-195,31,-254,115r-101,-92v90,-117,193,-150,357,-150v270,0,403,117,403,336r0,684r-147,0r0,-96v-82,82,-156,108,-291,108xm705,-182v52,-45,53,-173,51,-283r-283,0v-151,0,-225,62,-225,178v0,117,71,172,231,172v86,0,159,-9,226,-67","w":1077},"b":{"d":"985,-504v0,158,-20,326,-123,428v-53,53,-143,88,-246,88v-110,0,-202,-26,-284,-133r0,121r-148,0r0,-1458r148,0r0,567v82,-104,174,-129,284,-129v103,0,193,35,246,88v103,103,123,270,123,428xm838,-504v0,-196,-33,-385,-252,-385v-219,0,-254,189,-254,385v0,197,35,385,254,385v219,0,252,-188,252,-385","w":1116},"c":{"d":"276,-504v0,239,98,385,299,385v97,0,156,-31,232,-114r100,96v-104,112,-192,149,-332,149v-253,0,-446,-172,-446,-516v0,-344,193,-516,446,-516v140,0,228,37,332,150r-100,94v-76,-84,-135,-113,-232,-113v-200,0,-299,147,-299,385","w":1003,"k":{"\u00f6":31,"\u00e4":25,"w":41,"o":31,"e":31,"d":20,"c":31,"a":25}},"d":{"d":"932,0r-146,0r0,-121v-81,107,-176,133,-286,133v-103,0,-193,-35,-246,-88v-102,-102,-123,-270,-123,-428v0,-158,21,-325,123,-428v53,-53,143,-88,246,-88v110,0,202,25,284,129r0,-567r148,0r0,1458xm784,-504v0,-196,-32,-385,-252,-385v-219,0,-253,189,-253,385v0,197,34,385,253,385v220,0,252,-188,252,-385","w":1116},"e":{"d":"956,-465r-680,0v0,221,105,348,297,348v117,0,185,-35,265,-114r100,88v-102,102,-197,155,-369,155v-266,0,-440,-159,-440,-516v0,-325,158,-516,414,-516v281,-1,431,220,413,555xm809,-575v3,-196,-99,-320,-266,-320v-168,0,-269,127,-267,320r533,0","w":1085,"k":{"y":20,"x":33,"w":10,"v":20}},"f":{"d":"580,-889r-215,0r0,889r-148,0r0,-889r-129,0r0,-112r129,0r0,-191v0,-149,84,-270,256,-270r107,0r0,127r-80,0v-94,0,-135,55,-135,147r0,187r215,0r0,112","w":643,"k":{"\u00f6":39,"\u00e4":39,"o":39,"e":39,"c":39,"a":39,".":102}},"g":{"d":"928,31v0,250,-156,432,-420,432v-152,0,-236,-39,-342,-135r96,-95v74,66,125,101,242,101v194,0,276,-137,276,-309r0,-158v-82,104,-174,131,-282,131v-103,0,-191,-37,-244,-90v-100,-101,-123,-256,-123,-420v0,-164,23,-319,123,-420v53,-53,143,-88,246,-88v110,0,200,25,282,131r0,-119r146,0r0,1039xm780,-512v0,-188,-30,-377,-250,-377v-219,0,-251,189,-251,377v0,188,32,377,251,377v220,0,250,-189,250,-377","w":1112},"h":{"d":"977,0r-148,0r0,-623v0,-176,-94,-266,-245,-266v-152,0,-252,92,-252,266r0,623r-148,0r0,-1458r148,0r0,561v74,-84,170,-123,282,-123v228,0,363,146,363,373r0,647","w":1150},"i":{"d":"332,0r-148,0r0,-1008r148,0r0,1008xm342,-1294r-166,0r0,-166r166,0r0,166","w":518},"j":{"d":"332,182v0,154,-80,271,-256,271r-107,0r0,-129r80,0v103,0,135,-50,135,-148r0,-1177r148,0r0,1183xm342,-1294r-166,0r0,-166r166,0r0,166","w":518},"k":{"d":"1030,0r-182,0r-320,-516r-196,225r0,291r-148,0r0,-1458r148,0r0,975r454,-525r185,0r-342,385","w":1097,"k":{"\u00f6":41,"q":41,"o":41,"g":41,"e":41,"d":41,"c":41}},"l":{"d":"543,0r-107,0v-176,0,-256,-115,-256,-268r0,-1190r148,0r0,1184v0,98,32,147,135,147r80,0r0,127","w":608,"k":{"\u00f6":41,"y":47,"w":41,"v":82,"o":41,"e":51,"c":51}},"m":{"d":"1257,-1020v229,-1,370,153,369,375r0,645r-147,0r0,-621v0,-178,-97,-268,-248,-268v-148,0,-252,92,-252,252r0,637r-148,0r0,-621v0,-178,-96,-268,-247,-268v-152,0,-252,92,-252,268r0,621r-148,0r0,-1008r148,0r0,111v71,-82,172,-123,284,-123v140,0,248,57,310,168v78,-111,190,-168,331,-168","w":1800},"n":{"d":"614,-1020v228,0,363,154,363,375r0,645r-148,0r0,-621v0,-178,-96,-268,-247,-268v-152,0,-250,92,-250,268r0,621r-148,0r0,-1008r148,0r0,111v71,-82,170,-123,282,-123","w":1150},"o":{"d":"954,-504v0,156,-20,297,-123,402v-69,69,-165,114,-288,114v-123,0,-219,-45,-289,-114v-102,-105,-123,-246,-123,-402v0,-155,21,-297,123,-401v70,-70,166,-115,289,-115v123,0,219,45,288,115v103,104,123,246,123,401xm807,-504v0,-112,-7,-236,-80,-311v-93,-96,-275,-97,-367,0v-72,75,-81,199,-81,311v0,113,10,237,81,311v93,97,274,96,367,0v72,-75,80,-198,80,-311","w":1085,"k":{"y":20,"x":41,"w":10,"v":20}},"p":{"d":"985,-504v0,158,-20,326,-123,428v-53,53,-143,88,-246,88v-110,0,-202,-26,-284,-131r0,570r-148,0r0,-1459r148,0r0,119v82,-106,174,-131,284,-131v103,0,193,35,246,88v103,103,123,270,123,428xm838,-504v0,-196,-33,-385,-252,-385v-219,0,-254,189,-254,385v0,197,35,385,254,385v219,0,252,-188,252,-385","w":1116},"q":{"d":"932,451r-148,0r0,-570v-82,105,-174,131,-284,131v-103,0,-193,-35,-246,-88v-102,-102,-123,-270,-123,-428v0,-158,21,-325,123,-428v53,-53,143,-88,246,-88v110,0,205,25,286,131r0,-119r146,0r0,1459xm784,-504v0,-196,-32,-385,-252,-385v-219,0,-253,189,-253,385v0,197,34,385,253,385v220,0,252,-188,252,-385","w":1116},"r":{"d":"856,-926r-108,111v-56,-55,-97,-74,-175,-74v-147,0,-241,117,-241,271r0,618r-148,0r0,-1008r148,0r0,123v101,-152,385,-192,524,-41","w":862,"k":{"\u00f6":70,"\u00e4":20,"s":20,"q":70,"o":70,"g":70,"e":70,"d":70,"c":70,"a":20,".":246,",":246}},"s":{"d":"911,-295v0,195,-166,307,-409,307v-170,0,-303,-39,-414,-145r98,-98v80,84,189,116,314,116v166,0,268,-59,268,-178v0,-88,-51,-137,-168,-147r-166,-15v-196,-16,-301,-104,-301,-270v0,-184,156,-295,371,-295v143,0,272,35,362,109r-96,96v-72,-55,-164,-80,-268,-80v-148,0,-226,64,-226,166v0,86,50,137,177,147r161,15v177,16,297,84,297,272","w":1015,"k":{"v":20,"t":20,"s":33}},"t":{"d":"571,0r-104,0v-172,0,-258,-121,-258,-270r0,-619r-127,0r0,-112r127,0r0,-316r147,0r0,316r215,0r0,112r-215,0r0,615v0,92,43,147,138,147r77,0r0,127","w":679,"k":{"\u00f6":16,"\u00e4":16,"o":16,"e":16,"c":16,"a":16}},"u":{"d":"537,12v-228,0,-363,-153,-363,-377r0,-643r148,0r0,621v0,178,94,268,245,268v152,0,252,-92,252,-268r0,-621r148,0r0,1008r-146,0r0,-113v-71,82,-172,125,-284,125","w":1150},"v":{"d":"893,-1008r-371,1008r-131,0r-368,-1008r159,0r275,809r276,-809r160,0","w":915,"k":{"\u00f6":20,"\u00e4":20,"s":20,"o":20,"e":20,"c":20,"a":20,".":139}},"w":{"d":"1460,-1008r-317,1008r-137,0r-265,-782r-262,782r-137,0r-319,-1008r159,0r232,809r264,-809r127,0r266,809r229,-809r160,0","w":1482,"k":{"\u00f6":10,"o":10,"e":10,"c":10,".":111}},"x":{"d":"911,0r-178,0r-241,-391r-246,391r-178,0r342,-514r-328,-494r178,0r232,373r227,-373r178,0r-328,494","w":978,"k":{"\u00f6":41,"o":41,"e":41,"c":41}},"y":{"d":"893,-1008r-459,1252v-45,141,-158,201,-332,188r0,-131v126,5,172,-20,211,-125r72,-196r-362,-988r159,0r277,809r274,-809r160,0","w":915,"k":{"\u00f6":20,"\u00e4":20,"o":20,"e":20,"c":20,"a":20,".":139,",":164}},"z":{"d":"834,0r-732,0r0,-127r562,-750r-531,0r0,-131r701,0r0,125r-564,752r564,0r0,131","w":940},"{":{"d":"98,-795v124,9,183,-37,183,-159r0,-392v0,-106,18,-155,61,-202v50,-55,161,-66,283,-62r0,131v-66,-1,-154,-1,-168,27v-23,22,-29,59,-29,133r0,385v0,117,-51,168,-129,205v78,37,129,88,129,205r0,385v0,73,6,110,29,133v15,27,101,27,168,26r0,132v-228,7,-344,-33,-344,-265r0,-391v1,-122,-58,-169,-183,-160r0,-131","w":724},"|":{"d":"408,152r-148,0r0,-1762r148,0r0,1762","w":667},"}":{"d":"444,-954v-1,121,57,168,181,159r0,131v-123,-8,-181,39,-181,160r0,391v0,107,-18,156,-61,203v-50,55,-163,66,-285,62r0,-132v66,1,155,2,168,-26v23,-23,31,-60,31,-133r0,-385v0,-117,51,-168,129,-205v-78,-37,-129,-88,-129,-205r0,-385v0,-74,-8,-111,-31,-133v-14,-29,-101,-28,-168,-27r0,-131v121,-4,236,7,285,62v42,47,61,96,61,202r0,392","w":724},"~":{"d":"365,-682v119,0,253,113,374,113v58,0,92,-13,172,-93r93,93v-115,114,-173,139,-265,139v-121,0,-255,-113,-377,-113v-57,0,-92,13,-172,92r-90,-92v115,-114,172,-139,265,-139","w":1103},"\u00a7":{"d":"963,-520v0,168,-105,282,-213,336v116,43,198,145,198,295v0,213,-166,352,-377,352v-202,0,-374,-111,-387,-330r150,0v12,127,100,195,237,195v140,0,228,-78,228,-215v0,-95,-66,-176,-181,-209r-159,-45v-180,-52,-281,-189,-281,-375v0,-168,105,-283,215,-336v-117,-53,-190,-133,-190,-283v0,-198,153,-335,368,-335v213,0,365,122,373,321r-147,0v-11,-135,-95,-190,-226,-190v-137,0,-221,69,-221,202v0,109,70,168,172,197r160,45v178,51,281,190,281,375xm571,-256v147,0,242,-99,242,-262v0,-149,-101,-264,-242,-262v-145,1,-246,109,-243,262v3,164,96,262,243,262","w":1140},"\u00c4":{"d":"1227,0r-166,0r-117,-330r-637,0r-117,330r-165,0r536,-1458r131,0xm899,-465r-270,-770r-275,770r545,0xm918,-1616r-148,0r0,-182r148,0r0,182xm483,-1616r-147,0r0,-182r147,0r0,182","w":1251},"\u00d6":{"d":"1176,-729v0,309,-3,450,-138,590v-190,197,-555,197,-745,0v-134,-140,-137,-281,-137,-590v0,-309,3,-450,137,-590v190,-197,555,-198,745,0v135,140,138,281,138,590xm1020,-729v0,-305,-12,-402,-102,-498v-127,-135,-378,-135,-504,0v-90,96,-103,193,-103,498v0,305,13,401,103,498v126,135,377,135,504,0v90,-97,102,-193,102,-498xm956,-1616r-147,0r0,-182r147,0r0,182xm522,-1616r-147,0r0,-182r147,0r0,182","w":1331,"k":{"Y":20,"X":20,"W":20,"V":20,"T":41,"J":78,"A":20}},"\u00dc":{"d":"1208,-481v0,291,-215,493,-510,493v-295,0,-508,-202,-508,-493r0,-977r156,0r0,964v0,222,139,367,352,367v213,0,355,-145,355,-367r0,-964r155,0r0,977xm989,-1616r-147,0r0,-182r147,0r0,182xm555,-1616r-147,0r0,-182r147,0r0,182","w":1398,"k":{"J":66}},"\u00df":{"d":"844,-1130v0,-137,-97,-213,-256,-213v-182,0,-254,112,-254,276r0,1067r-150,0r0,-1073v0,-256,160,-400,412,-400v217,0,395,105,395,340v0,113,-47,191,-129,244v99,53,129,115,129,246r0,354v-1,182,-108,291,-291,289r-110,0r0,-127v86,1,159,3,203,-41v30,-29,51,-74,51,-137r0,-346v3,-112,-59,-168,-164,-170r-90,0r0,-123r74,0v106,0,180,-72,180,-186","w":1138},"\u00e4":{"d":"465,12v-230,0,-361,-96,-361,-297v0,-176,123,-290,349,-290r303,0r0,-97v0,-147,-74,-221,-258,-221v-129,0,-195,31,-254,115r-101,-92v90,-117,193,-150,357,-150v270,0,403,117,403,336r0,684r-147,0r0,-96v-82,82,-156,108,-291,108xm705,-182v52,-45,53,-173,51,-283r-283,0v-151,0,-225,62,-225,178v0,117,71,172,231,172v86,0,159,-9,226,-67xm807,-1233r-148,0r0,-182r148,0r0,182xm373,-1233r-148,0r0,-182r148,0r0,182","w":1077},"\u00f6":{"d":"954,-504v0,156,-20,297,-123,402v-69,69,-165,114,-288,114v-123,0,-219,-45,-289,-114v-102,-105,-123,-246,-123,-402v0,-155,21,-297,123,-401v70,-70,166,-115,289,-115v123,0,219,45,288,115v103,104,123,246,123,401xm807,-504v0,-112,-7,-236,-80,-311v-93,-96,-275,-97,-367,0v-72,75,-81,199,-81,311v0,113,10,237,81,311v93,97,274,96,367,0v72,-75,80,-198,80,-311xm834,-1233r-148,0r0,-182r148,0r0,182xm399,-1233r-147,0r0,-182r147,0r0,182","w":1085,"k":{"y":20,"x":41,"w":10,"v":20}},"\u00fc":{"d":"537,12v-228,0,-363,-153,-363,-377r0,-643r148,0r0,621v0,178,94,268,245,268v152,0,252,-92,252,-268r0,-621r148,0r0,1008r-146,0r0,-113v-71,82,-172,125,-284,125xm858,-1233r-147,0r0,-182r147,0r0,182xm424,-1233r-148,0r0,-182r148,0r0,182","w":1150},"\u20ac":{"d":"1245,-422v-49,275,-246,434,-506,434v-143,0,-272,-53,-370,-151v-103,-103,-127,-215,-136,-393r-137,0r0,-103r135,0r0,-201r-135,0r0,-100r137,0v9,-172,35,-283,136,-383v98,-98,227,-151,370,-151v262,0,457,159,506,434r-158,0v-38,-178,-165,-295,-348,-295v-98,0,-186,37,-252,102v-67,70,-88,144,-96,293r449,0r0,100r-453,0r0,201r453,0r0,103r-449,0v6,157,27,233,96,303v66,65,154,102,252,102v183,0,314,-117,353,-295r153,0","w":1388},"\u00a0":{"w":509}}});;Cufon.registerFont({"w":1091,"face":{"font-family":"medium","font-weight":500,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 0 5 3 3 0 0 2 0 4","ascent":"1565","descent":"-483","x-height":"12","bbox":"-39 -1831 1761 432","underline-thickness":"104.448","underline-position":"-174.08","stemh":"199","stemv":"209","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":491},"!":{"d":"502,-1458r-45,1024r-164,0r-45,-1024r254,0xm489,0r-229,0r0,-223r229,0r0,223","w":679},"\"":{"d":"750,-1067r-207,0r0,-391r207,0r0,391xm367,-1067r-207,0r0,-391r207,0r0,391","w":909},"#":{"d":"1276,-872r-189,0r-40,254r161,0r0,192r-192,0r-68,426r-217,0r68,-426r-281,0r-65,426r-220,0r68,-426r-162,0r0,-192r193,0r41,-254r-166,0r0,-193r194,0r64,-401r219,0r-63,401r278,0r64,-401r217,0r-64,401r160,0r0,193xm868,-872r-278,0r-41,254r280,0","w":1376},"$":{"d":"1139,-416v0,244,-178,398,-443,422r0,227r-168,0r0,-221v-194,-8,-338,-61,-467,-192r148,-146v98,99,207,133,338,140r0,-455v-259,-23,-436,-139,-436,-401v0,-234,155,-400,417,-424r0,-185r168,0r0,183v162,10,281,59,391,163r-141,140v-72,-68,-164,-103,-268,-111r0,442v142,18,276,56,342,119v76,74,119,174,119,299xm920,-410v0,-63,-19,-116,-58,-151v-55,-49,-114,-53,-184,-64r0,435v151,-15,242,-93,242,-220xm547,-848r0,-426v-144,14,-221,105,-221,223v0,125,107,192,221,203","w":1245},"%":{"d":"1606,-266v0,176,-127,280,-287,280v-160,0,-287,-104,-287,-280r0,-207v0,-176,127,-281,287,-281v160,0,287,105,287,281r0,207xm692,-985v0,176,-127,278,-286,278v-160,0,-287,-102,-287,-278r0,-207v0,-176,127,-281,287,-281v159,0,286,105,286,281r0,207xm1288,-1458r-686,1458r-168,0r688,-1458r166,0xm1448,-272r0,-195v0,-92,-41,-147,-129,-147v-88,0,-129,53,-129,147r0,195v0,94,41,147,129,147v88,0,129,-55,129,-147xm535,-991r0,-195v0,-92,-41,-147,-129,-147v-89,0,-130,53,-130,147r0,195v0,94,41,145,130,145v88,0,129,-53,129,-145","w":1724},"&":{"d":"1401,0r-268,0r-119,-143v-64,55,-183,155,-404,155v-303,0,-471,-170,-471,-434v0,-203,146,-317,289,-412v-66,-75,-152,-178,-152,-313v0,-186,140,-323,357,-323v207,0,346,139,346,325v0,115,-64,195,-156,258r-106,74r307,367v53,-76,76,-160,78,-293r201,0v-7,186,-48,333,-146,448xm889,-291r-346,-411v-107,73,-197,141,-197,276v0,145,113,248,264,248v99,0,183,-27,279,-113xm602,-944v84,-57,176,-95,176,-199v0,-82,-59,-145,-145,-145v-90,0,-144,61,-144,143v0,60,39,115,113,201","w":1495},"'":{"d":"367,-1067r-207,0r0,-391r207,0r0,391","w":526},"(":{"d":"385,-252v-2,170,61,220,145,303r-141,142v-65,-66,-125,-121,-166,-195v-43,-76,-47,-156,-47,-238r0,-979v0,-81,4,-161,47,-237v41,-74,101,-129,166,-195r141,142v-85,82,-145,133,-145,303r0,954","w":649},")":{"d":"262,-1206v2,-166,-60,-220,-143,-301r143,-144v66,66,123,121,164,195v43,76,49,156,49,237r0,979v0,82,-6,162,-49,238v-41,74,-98,129,-164,195r-143,-144v83,-82,143,-134,143,-301r0,-954","w":649},"*":{"d":"868,-954r-75,133r-228,-142r8,269r-153,0r8,-269r-227,142r-76,-133r235,-125r-235,-127r76,-133r227,141r-8,-266r153,0r-8,266r228,-141r75,133r-235,127","w":993},"+":{"d":"987,-461r-344,0r0,344r-194,0r0,-344r-345,0r0,-194r345,0r0,-342r194,0r0,342r344,0r0,194"},",":{"d":"397,123r-237,194r0,-555r237,0r0,361","w":557},"-":{"d":"735,-471r-598,0r0,-195r598,0r0,195","w":872},".":{"d":"410,0r-250,0r0,-250r250,0r0,250","w":569},"\/":{"d":"784,-1610r-583,1762r-201,0r584,-1762r200,0","w":778},"0":{"d":"967,-406v0,261,-191,418,-422,418v-232,0,-420,-157,-420,-418r0,-647v0,-260,188,-417,420,-417v231,0,422,157,422,417r0,647xm758,-412r0,-635v0,-141,-80,-237,-213,-237v-133,0,-211,96,-211,237r0,635v0,142,78,238,211,238v133,0,213,-96,213,-238"},"1":{"d":"727,0r-209,0r0,-1231r-285,250r0,-231r285,-246r209,0r0,1458"},"2":{"d":"977,0r-848,0r0,-186r561,-682v55,-68,78,-121,78,-195v0,-131,-78,-221,-213,-221v-111,0,-215,61,-215,225r-209,0v0,-248,176,-411,424,-411v250,0,422,157,422,409v0,129,-47,205,-137,316r-457,559r594,0r0,186"},"3":{"d":"979,-410v0,281,-203,424,-447,424v-233,0,-438,-125,-446,-409r209,0v8,155,117,221,237,221v136,0,238,-88,238,-242v0,-158,-95,-249,-278,-239r0,-183v170,10,256,-76,256,-221v0,-147,-97,-225,-216,-225v-126,0,-208,80,-219,209r-209,0v13,-248,195,-398,428,-398v248,0,424,166,424,408v0,156,-69,256,-182,311v125,56,205,164,205,344"},"4":{"d":"1020,-219r-156,0r0,219r-202,0r0,-219r-590,0r0,-195r514,-1044r225,0r-512,1044r363,0r0,-340r202,0r0,340r156,0r0,195"},"5":{"d":"981,-487v0,155,-16,280,-123,387v-65,65,-166,114,-307,114v-267,0,-411,-164,-422,-391r209,0v16,129,82,203,213,203v61,0,115,-21,151,-57v62,-62,70,-158,70,-256v0,-175,-45,-306,-213,-306v-119,0,-184,60,-207,131r-190,0r0,-796r786,0r0,186r-598,0r0,385v49,-51,135,-84,242,-84v115,0,203,35,262,94v111,111,127,252,127,390"},"6":{"d":"977,-432v0,268,-178,444,-430,444v-252,0,-432,-166,-432,-436v0,-119,45,-231,108,-358r332,-676r223,0r-313,627v39,-17,84,-23,129,-23v211,0,383,166,383,422xm768,-428v0,-143,-84,-252,-223,-252v-131,0,-221,94,-221,252v0,156,90,254,221,254v131,0,223,-98,223,-254"},"7":{"d":"997,-1272r-487,1272r-225,0r489,-1272r-444,0r0,230r-201,0r0,-416r868,0r0,186"},"8":{"d":"995,-412v0,265,-200,424,-450,424v-250,0,-449,-159,-449,-424v0,-174,99,-280,201,-342v-94,-57,-176,-159,-176,-313v0,-244,186,-403,424,-403v237,0,426,159,426,403v0,154,-82,256,-176,313v102,62,200,168,200,342xm784,-416v0,-135,-104,-243,-239,-243v-135,0,-240,108,-240,243v0,135,105,242,240,242v135,0,239,-107,239,-242xm762,-1061v0,-127,-90,-223,-217,-223v-127,0,-215,96,-215,223v0,129,88,221,215,221v127,0,217,-92,217,-221"},"9":{"d":"977,-1034v0,119,-45,231,-109,358r-331,676r-224,0r314,-627v-39,17,-86,23,-131,23v-211,0,-381,-166,-381,-422v0,-268,178,-444,430,-444v252,0,432,165,432,436xm768,-1030v0,-156,-92,-254,-223,-254v-131,0,-221,98,-221,254v0,143,82,252,221,252v131,0,223,-94,223,-252"},":":{"d":"461,-584r-248,0r0,-250r248,0r0,250xm461,0r-248,0r0,-250r248,0r0,250","w":620},";":{"d":"455,123r-238,194r0,-555r238,0r0,361xm461,-584r-248,0r0,-250r248,0r0,250","w":620},"<":{"d":"924,-113r-756,-362r0,-187r756,-362r0,221r-502,236r502,233r0,221"},"=":{"d":"987,-670r-883,0r0,-194r883,0r0,194xm987,-272r-883,0r0,-195r883,0r0,195"},">":{"d":"924,-475r-756,362r0,-221r502,-233r-502,-236r0,-221r756,362r0,187"},"?":{"d":"963,-1079v0,98,-43,176,-99,252r-157,221v-35,51,-40,99,-37,172r-209,0v-4,-124,7,-192,69,-275r160,-215v37,-49,64,-98,64,-155v0,-115,-82,-205,-201,-205v-127,0,-199,96,-199,207r-209,0v0,-232,177,-393,408,-393v223,0,410,149,410,391xm680,0r-231,0r0,-223r231,0r0,223","w":1046},"@":{"d":"903,-1464v295,-9,473,179,473,479r0,989r-196,-4r0,-102v-66,77,-142,116,-260,116v-111,0,-205,-43,-269,-114v-78,-88,-92,-195,-92,-379v0,-180,14,-289,88,-377v60,-72,158,-117,271,-117v112,0,192,39,258,115r0,-125v10,-182,-116,-297,-293,-297r-258,0v-174,-8,-291,116,-291,297r0,639v0,115,22,162,102,225r-143,144v-121,-99,-162,-177,-162,-359r0,-651v-9,-301,174,-488,473,-479r299,0xm1176,-479v0,-176,-37,-318,-209,-318v-172,0,-207,142,-207,318v0,176,35,315,207,315v172,0,209,-139,209,-315","w":1507},"A":{"d":"1264,0r-236,0r-100,-293r-576,0r-100,293r-236,0r535,-1458r178,0xm866,-481r-221,-647r-227,647r448,0","w":1280,"k":{"\u00d6":20,"y":51,"w":8,"v":51,"Y":72,"W":55,"V":72,"T":123,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"B":{"d":"1221,-412v0,269,-183,412,-441,412r-590,0r0,-1458r568,0v270,0,440,153,440,399v0,158,-98,271,-197,309v113,45,220,154,220,338xm999,-422v0,-129,-86,-221,-239,-221r-348,0r0,444r348,0v153,0,239,-94,239,-223xm977,-1051v0,-135,-96,-209,-238,-209r-327,0r0,418r327,0v142,0,238,-73,238,-209","w":1357,"k":{"J":39}},"C":{"d":"1182,-436v-49,291,-256,448,-520,448v-152,0,-283,-55,-383,-155v-144,-144,-142,-306,-142,-586v0,-281,-2,-442,142,-586v100,-100,231,-155,383,-155v268,0,468,157,520,448r-226,0v-34,-147,-133,-250,-294,-250v-87,0,-164,33,-216,88v-71,78,-88,162,-88,455v0,293,17,377,88,455v52,55,129,88,216,88v161,0,262,-103,296,-250r224,0","w":1286,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":39,"A":20}},"D":{"d":"1227,-739v0,211,10,444,-148,602v-92,92,-225,137,-377,137r-512,0r0,-1458r512,0v152,0,285,45,377,137v158,158,148,371,148,582xm1006,-739v0,-201,-2,-338,-78,-422v-62,-68,-144,-99,-248,-99r-268,0r0,1061r268,0v104,0,186,-30,248,-98v76,-84,78,-242,78,-442","w":1363,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":53,"A":20}},"E":{"d":"1122,0r-932,0r0,-1458r932,0r0,198r-710,0r0,426r606,0r0,197r-606,0r0,438r710,0r0,199","w":1234,"k":{"J":6}},"F":{"d":"1122,-1260r-710,0r0,445r606,0r0,199r-606,0r0,616r-222,0r0,-1458r932,0r0,198","w":1198,"k":{"\u00fc":61,"\u00f6":68,"\u00e4":68,"\u00d6":41,"\u00c4":123,"z":61,"x":61,"u":61,"r":61,"p":61,"o":68,"n":61,"m":61,"e":68,"c":68,"a":68,"S":20,"Q":41,"O":41,"J":258,"G":41,"C":41,"A":123,".":190}},"G":{"d":"662,-186v183,1,319,-138,311,-332r0,-82r-311,0r0,-188r532,0r0,223v0,188,-36,308,-131,411v-203,222,-582,216,-784,11v-143,-145,-142,-306,-142,-586v0,-281,-2,-442,142,-586v100,-100,227,-155,383,-155v309,0,489,202,530,452r-223,0v-37,-160,-144,-254,-307,-254v-87,0,-164,35,-216,90v-71,78,-88,160,-88,453v0,293,17,377,88,455v52,55,129,88,216,88","w":1329,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":68,"A":20}},"H":{"d":"1225,0r-221,0r0,-637r-592,0r0,637r-222,0r0,-1458r222,0r0,622r592,0r0,-622r221,0r0,1458","w":1415},"I":{"d":"412,0r-222,0r0,-1458r222,0r0,1458","w":602},"J":{"d":"866,-461v0,303,-217,473,-485,473v-150,0,-254,-41,-354,-141r147,-145v51,51,100,88,207,88v164,0,264,-101,264,-291r0,-981r221,0r0,997","w":1036,"k":{"\u00c4":20,"A":20}},"K":{"d":"1327,0r-260,0r-410,-719r-245,295r0,424r-222,0r0,-1458r222,0r0,733r596,-733r270,0r-473,571","w":1347,"k":{"\u00d6":20,"y":74,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"L":{"d":"1114,0r-924,0r0,-1458r222,0r0,1259r702,0r0,199","w":1175,"k":{"\u00dc":25,"\u00d6":53,"y":123,"Y":164,"W":82,"V":143,"U":25,"T":164,"Q":53,"O":53,"J":-8,"G":53,"C":53}},"M":{"d":"1477,0r-222,0r0,-975r-335,711r-164,0r-344,-711r0,975r-222,0r0,-1458r222,0r426,907r417,-907r222,0r0,1458","w":1665},"N":{"d":"1288,0r-203,0r-673,-1026r0,1026r-222,0r0,-1458r203,0r674,1024r0,-1024r221,0r0,1458","w":1478},"O":{"d":"1186,-729v0,280,4,442,-139,586v-101,100,-230,155,-385,155v-156,0,-283,-55,-383,-155v-144,-144,-142,-306,-142,-586v0,-281,-2,-442,142,-586v100,-100,227,-155,383,-155v155,0,284,55,385,155v143,144,139,305,139,586xm965,-729v0,-293,-17,-374,-86,-453v-102,-116,-333,-116,-435,0v-69,79,-86,160,-86,453v0,293,16,374,86,453v101,116,333,117,435,0v69,-79,86,-160,86,-453","w":1323,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":68,"A":20}},"P":{"d":"1210,-1016v0,254,-182,443,-467,443r-331,0r0,573r-222,0r0,-1458r553,0v285,0,467,188,467,442xm989,-1016v0,-153,-104,-244,-258,-244r-319,0r0,486r319,0v154,0,258,-88,258,-242","w":1288,"k":{"\u00f6":20,"\u00e4":20,"\u00c4":102,"s":20,"q":20,"o":20,"g":20,"e":20,"d":20,"c":20,"a":20,"J":246,"A":102,".":225}},"Q":{"d":"1235,-57r-123,123r-145,-146v-84,60,-191,92,-305,92v-156,0,-283,-55,-383,-155v-144,-144,-142,-306,-142,-586v0,-281,-2,-442,142,-586v100,-100,227,-155,383,-155v155,0,284,55,385,155v143,144,139,305,139,586v0,248,2,399,-94,530xm965,-729v0,-293,-17,-374,-86,-453v-102,-116,-333,-116,-435,0v-69,79,-86,160,-86,453v0,293,16,375,86,453v81,90,257,125,367,43r-154,-154r123,-123r142,141v36,-73,43,-172,43,-360","w":1323},"R":{"d":"1253,0r-258,0r-307,-614r-276,0r0,614r-222,0r0,-1458r566,0v276,0,452,178,452,426v0,209,-127,342,-290,387xm987,-1030v0,-144,-100,-230,-248,-230r-327,0r0,457r327,0v148,0,248,-84,248,-227","w":1341,"k":{"J":18}},"S":{"d":"1102,-416v0,269,-219,428,-524,428v-220,0,-377,-51,-517,-192r148,-146v106,107,223,140,373,140v190,0,301,-82,301,-224v0,-137,-70,-196,-217,-213v-172,-21,-357,-49,-449,-141v-70,-69,-106,-160,-106,-278v0,-254,184,-428,487,-428v193,0,328,49,453,165r-142,140v-90,-86,-194,-113,-317,-113v-172,0,-266,98,-266,227v-1,127,97,185,219,203r166,25v135,20,211,53,272,108v80,70,119,174,119,299","w":1208,"k":{"Y":41,"S":12,"J":41}},"T":{"d":"1085,-1260r-401,0r0,1260r-221,0r0,-1260r-402,0r0,-198r1024,0r0,198","w":1146,"k":{"\u00fc":80,"\u00f6":135,"\u00e4":135,"\u00d6":41,"\u00c4":123,"z":80,"y":80,"x":80,"w":80,"v":80,"u":80,"s":135,"r":80,"q":135,"p":80,"o":135,"n":80,"m":80,"g":135,"e":135,"d":135,"c":135,"a":135,"Q":41,"O":41,"J":164,"G":41,"C":41,"A":123,".":164}},"U":{"d":"1214,-492v0,302,-227,504,-524,504v-297,0,-522,-202,-522,-504r0,-966r221,0r0,956v0,195,119,316,301,316v182,0,303,-121,303,-316r0,-956r221,0r0,966","w":1382,"k":{"J":25}},"V":{"d":"1145,-1458r-483,1458r-173,0r-479,-1458r230,0r335,1061r336,-1061r234,0","w":1155,"k":{"\u00fc":41,"\u00f6":82,"\u00e4":82,"\u00d6":20,"\u00c4":72,"z":41,"y":20,"x":41,"u":41,"s":82,"r":41,"q":82,"p":41,"o":82,"n":41,"m":41,"g":82,"e":82,"d":82,"c":82,"a":82,"Q":20,"O":20,"G":20,"C":20,"A":72,".":164}},"W":{"d":"1761,-1458r-381,1458r-192,0r-297,-1022r-295,1022r-193,0r-380,-1458r233,0r254,1042r293,-1042r178,0r293,1042r254,-1042r233,0","w":1783,"k":{"\u00f6":82,"\u00e4":82,"\u00d6":20,"\u00c4":33,"s":82,"q":82,"o":82,"g":82,"e":82,"d":82,"c":82,"a":82,"Q":20,"O":20,"G":20,"C":20,"A":33,".":102}},"X":{"d":"1163,0r-256,0r-317,-559r-316,559r-254,0r451,-748r-422,-710r254,0r287,522r289,-522r254,0r-422,710","w":1183,"k":{"\u00d6":20,"y":66,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"Y":{"d":"1104,-1458r-436,858r0,600r-222,0r0,-600r-436,-858r242,0r305,641r305,-641r242,0","w":1114,"k":{"\u00fc":82,"\u00f6":164,"\u00e4":164,"\u00d6":20,"\u00c4":82,"z":82,"x":82,"u":82,"s":164,"r":82,"q":164,"p":82,"o":164,"n":82,"m":82,"g":164,"e":164,"d":164,"c":164,"a":164,"Q":20,"O":20,"J":82,"G":20,"C":20,"A":82,".":164}},"Z":{"d":"1032,0r-934,0r0,-190r674,-1070r-645,0r0,-198r905,0r0,180r-678,1079r678,0r0,199","w":1130},"[":{"d":"623,152r-447,0r0,-1762r447,0r0,187r-238,0r0,1388r238,0r0,187","w":710},"\\":{"d":"778,152r-200,0r-578,-1745r201,0","w":778},"]":{"d":"535,152r-447,0r0,-185r242,0r0,-1392r-242,0r0,-185r447,0r0,1762","w":710},"^":{"d":"1030,-821r-217,0r-229,-424r-230,424r-217,0r352,-652r191,0","w":1169},"_":{"d":"1169,352r-1169,0r0,-143r1169,0r0,143","w":1169},"`":{"d":"618,-1227r-157,0r-228,-332r232,0","w":1024},"a":{"d":"449,12v-227,0,-361,-111,-361,-317v0,-174,121,-299,358,-299r275,0v12,-178,-34,-268,-227,-268v-115,0,-170,26,-228,100r-137,-129v98,-115,201,-150,373,-150v284,0,428,121,428,357r0,694r-205,0r0,-94v-76,76,-147,106,-276,106xm481,-162v139,0,250,-49,240,-213r0,-84r-244,0v-123,0,-186,56,-186,150v0,94,59,147,190,147","w":1085},"b":{"d":"1016,-520v0,158,-12,336,-117,440v-57,57,-149,92,-254,92v-113,0,-196,-28,-274,-123r0,111r-205,0r0,-1458r209,0r0,524v76,-90,162,-117,272,-117v105,0,195,35,252,93v105,104,117,280,117,438xm807,-520v0,-185,-27,-344,-215,-344v-189,0,-217,159,-217,344v0,184,28,346,217,346v188,0,215,-162,215,-346","w":1132},"c":{"d":"575,-864v-175,0,-253,130,-253,344v0,121,16,196,61,254v45,59,113,92,192,92v82,0,134,-27,199,-98r144,137v-99,104,-199,147,-343,147v-233,0,-462,-143,-462,-532v0,-389,229,-531,462,-531v144,0,244,41,343,146r-144,139v-65,-72,-117,-98,-199,-98","w":993,"k":{"\u00f6":37,"\u00e4":8,"w":41,"o":37,"e":37,"d":20,"c":37,"a":8}},"d":{"d":"967,0r-205,0r0,-111v-78,95,-162,123,-275,123v-104,0,-196,-35,-254,-92v-104,-104,-116,-282,-116,-440v0,-158,11,-335,116,-438v127,-124,405,-137,525,24r0,-524r209,0r0,1458xm758,-520v0,-185,-27,-344,-215,-344v-189,0,-217,159,-217,344v0,184,28,346,217,346v188,0,215,-162,215,-346","w":1132},"e":{"d":"993,-459r-674,0v0,178,95,291,265,291v116,0,178,-33,252,-106r133,124v-107,107,-207,162,-389,162v-261,0,-467,-137,-467,-532v0,-336,174,-531,440,-531v278,0,440,205,440,500r0,92xm786,-604v-1,-162,-83,-273,-233,-273v-150,0,-235,111,-234,273r467,0","w":1103,"k":{"y":20,"x":12,"w":16,"v":20}},"f":{"d":"614,-860r-206,0r0,860r-209,0r0,-860r-119,0r0,-160r119,0r0,-160v0,-149,90,-288,284,-288r131,0r0,178r-92,0v-78,0,-114,45,-114,121r0,149r206,0r0,160","w":671,"k":{"\u00f6":33,"\u00e4":33,"o":33,"e":33,"c":33,"a":33,".":102}},"g":{"d":"958,-6v0,254,-167,438,-444,438v-158,0,-258,-37,-367,-137r134,-133v65,61,122,92,225,92v176,0,244,-125,244,-264r0,-133v-76,90,-162,118,-269,118v-104,0,-190,-34,-248,-92v-100,-100,-116,-245,-116,-422v0,-176,16,-321,116,-422v58,-57,146,-90,250,-90v111,0,195,29,273,123r0,-110r202,0r0,1032xm750,-539v0,-163,-23,-325,-211,-325v-189,0,-213,162,-213,325v0,164,24,326,213,326v188,0,211,-162,211,-326","w":1124},"h":{"d":"1004,0r-209,0r0,-637v0,-158,-93,-227,-209,-227v-117,0,-211,71,-211,227r0,637r-209,0r0,-1458r209,0r0,524v71,-78,166,-117,268,-117v231,0,361,156,361,381r0,670","w":1159},"i":{"d":"375,0r-209,0r0,-1038r209,0r0,1038xm381,-1243r-221,0r0,-221r221,0r0,221","w":540},"j":{"d":"375,137v0,154,-86,287,-285,287r-129,0r0,-178r92,0v84,0,113,-41,113,-121r0,-1163r209,0r0,1175xm381,-1243r-221,0r0,-221r221,0r0,221","w":540},"k":{"d":"1077,0r-258,0r-291,-479r-153,174r0,305r-209,0r0,-1458r209,0r0,899r403,-479r254,0r-360,407","w":1122,"k":{"\u00f6":14,"q":14,"o":14,"g":14,"e":14,"d":14,"c":14}},"l":{"d":"573,0r-129,0v-198,0,-284,-133,-284,-287r0,-1171r209,0r0,1159v0,80,28,121,112,121r92,0r0,178","w":636,"k":{"\u00f6":41,"y":68,"w":41,"v":82,"o":41,"e":51,"c":51}},"m":{"d":"1268,-1051v229,0,372,169,372,387r0,664r-208,0r0,-633v0,-162,-93,-231,-209,-231v-113,0,-215,71,-215,221r0,643r-209,0r0,-633v0,-162,-92,-231,-209,-231v-117,0,-215,71,-215,231r0,633r-209,0r0,-1038r205,0r0,104v69,-76,172,-117,276,-117v129,0,230,52,295,152v84,-102,188,-152,326,-152","w":1796},"n":{"d":"647,-1051v227,0,361,169,361,387r0,664r-209,0r0,-633v0,-162,-92,-231,-209,-231v-117,0,-215,71,-215,231r0,633r-209,0r0,-1038r205,0r0,104v71,-78,172,-117,276,-117","w":1163},"o":{"d":"549,-1051v311,0,434,222,434,531v0,312,-123,532,-434,532v-310,0,-432,-221,-432,-532v0,-309,122,-531,432,-531xm774,-520v0,-113,-9,-220,-72,-285v-74,-77,-232,-78,-305,0v-62,65,-71,172,-71,285v0,112,10,219,71,284v74,80,230,79,305,0v62,-65,72,-172,72,-284","w":1099,"k":{"y":20,"x":41,"w":16,"v":20}},"p":{"d":"1016,-520v0,158,-12,336,-117,440v-57,57,-147,92,-252,92v-110,0,-196,-28,-272,-118r0,526r-209,0r0,-1458r205,0r0,110v78,-94,161,-123,274,-123v105,0,197,35,254,93v105,104,117,280,117,438xm807,-520v0,-185,-27,-344,-215,-344v-189,0,-217,159,-217,344v0,184,28,346,217,346v188,0,215,-162,215,-346","w":1132},"q":{"d":"967,420r-209,0r0,-526v-121,162,-396,149,-525,26v-106,-102,-116,-282,-116,-440v0,-158,12,-334,116,-438v58,-58,150,-93,254,-93v113,0,197,29,275,123r0,-110r205,0r0,1458xm758,-520v0,-185,-27,-344,-215,-344v-189,0,-217,159,-217,344v0,184,28,346,217,346v188,0,215,-162,215,-346","w":1132},"r":{"d":"895,-952r-158,157v-123,-141,-362,-54,-362,164r0,631r-209,0r0,-1038r205,0r0,112v53,-73,159,-125,276,-125v101,0,176,27,248,99","w":899,"k":{"\u00f6":63,"\u00e4":20,"s":20,"q":63,"o":63,"g":63,"e":63,"d":63,"c":63,"a":20,".":246,",":205}},"s":{"d":"934,-317v0,217,-184,329,-432,329v-170,0,-314,-28,-436,-149r137,-137v84,86,196,108,299,108v127,0,227,-45,227,-143v0,-70,-39,-115,-139,-123r-166,-14v-195,-17,-307,-105,-307,-287v0,-203,174,-318,391,-318v156,0,289,33,385,117r-131,133v-66,-55,-158,-76,-256,-76v-125,0,-189,56,-189,134v0,61,33,108,144,118r164,15v194,16,309,108,309,293","w":1021,"k":{"v":20,"t":20,"s":12}},"t":{"d":"600,0r-125,0v-194,0,-285,-139,-285,-289r0,-571r-118,0r0,-160r118,0r0,-315r209,0r0,315r201,0r0,160r-201,0r0,561v0,76,37,121,115,121r86,0r0,178","w":700,"k":{"\u00f6":6,"\u00e4":6,"o":6,"e":6,"c":6,"a":6}},"u":{"d":"516,12v-226,0,-360,-168,-360,-387r0,-663r209,0r0,632v0,162,92,232,208,232v117,0,215,-72,215,-232r0,-632r209,0r0,1038r-204,0r0,-104v-72,77,-172,116,-277,116","w":1163},"v":{"d":"948,-1038r-381,1038r-170,0r-381,-1038r222,0r245,731r244,-731r221,0","w":964,"k":{"\u00f6":20,"\u00e4":20,"s":20,"o":20,"e":20,"c":20,"a":20,".":129}},"w":{"d":"1505,-1038r-323,1038r-178,0r-244,-725r-242,725r-180,0r-322,-1038r222,0r200,731r242,-731r162,0r239,731r201,-731r223,0","w":1521,"k":{"\u00f6":16,"o":16,"e":16,"c":16,".":80}},"x":{"d":"985,0r-252,0r-217,-354r-219,354r-252,0r356,-530r-342,-508r252,0r205,338r203,-338r252,0r-340,508","w":1030,"k":{"\u00f6":41,"o":41,"e":41,"c":41}},"y":{"d":"950,-1038r-458,1245v-39,129,-145,208,-289,205r-84,0r0,-189v117,4,167,-8,203,-110r57,-162r-363,-989r222,0r247,731r242,-731r223,0","w":958,"k":{"\u00f6":20,"\u00e4":20,"o":20,"e":20,"c":20,"a":20,".":129,",":123}},"z":{"d":"862,0r-774,0r0,-166r516,-686r-487,0r0,-186r745,0r0,166r-520,686r520,0r0,186","w":960},"{":{"d":"303,-1325v1,-190,92,-286,293,-285r145,0r0,187v-70,1,-177,-7,-198,28v-23,23,-31,60,-31,131r0,330v0,133,-70,176,-135,205v65,29,135,72,135,205r0,329v0,72,8,109,31,132v21,35,128,27,198,28r0,187r-145,0v-201,1,-293,-95,-293,-285r0,-342v4,-134,-72,-173,-211,-162r0,-184v137,10,211,-27,211,-162r0,-342","w":833},"|":{"d":"451,152r-209,0r0,-1762r209,0r0,1762","w":692},"}":{"d":"530,-983v-3,134,73,172,211,162r0,184v-137,-10,-211,27,-211,162r0,342v0,191,-91,286,-292,285r-146,0r0,-187r80,0v134,-1,150,-27,150,-160r0,-329v0,-133,71,-176,137,-205v-66,-29,-137,-72,-137,-205r0,-330v-5,-132,-17,-158,-150,-159r-80,0r0,-187r146,0v201,-1,291,95,292,285r0,342","w":833},"~":{"d":"389,-731v130,0,261,117,391,117v58,0,97,-13,174,-91r133,132v-182,190,-313,198,-532,92v-58,-28,-104,-49,-162,-49v-57,0,-96,12,-174,90r-131,-131v121,-121,193,-160,301,-160","w":1175},"\u00a7":{"d":"967,-541v0,160,-107,273,-199,320v102,45,180,135,180,289v0,233,-184,364,-391,364v-201,0,-389,-108,-397,-348r205,0v8,100,77,162,192,162v117,0,186,-66,186,-172v0,-74,-47,-146,-159,-180r-144,-44v-188,-57,-288,-178,-288,-380v0,-160,104,-273,198,-320v-100,-49,-172,-125,-172,-274v0,-191,139,-346,381,-346v242,0,379,141,385,337r-201,0v-8,-110,-79,-155,-184,-155v-115,0,-180,57,-180,158v0,83,59,137,153,165r144,43v188,58,291,181,291,381xm559,-756v-128,0,-203,84,-203,221v0,80,27,126,58,162v64,74,225,75,288,0v31,-37,60,-80,60,-162v1,-133,-77,-221,-203,-221","w":1112},"\u00c4":{"d":"1264,0r-236,0r-100,-293r-576,0r-100,293r-236,0r535,-1458r178,0xm866,-481r-221,-647r-227,647r448,0xm954,-1610r-188,0r0,-221r188,0r0,221xm512,-1610r-188,0r0,-221r188,0r0,221","w":1280},"\u00d6":{"d":"1186,-729v0,280,4,442,-139,586v-101,100,-230,155,-385,155v-156,0,-283,-55,-383,-155v-144,-144,-142,-306,-142,-586v0,-281,-2,-442,142,-586v100,-100,227,-155,383,-155v155,0,284,55,385,155v143,144,139,305,139,586xm965,-729v0,-293,-17,-374,-86,-453v-102,-116,-333,-116,-435,0v-69,79,-86,160,-86,453v0,293,16,374,86,453v101,116,333,117,435,0v69,-79,86,-160,86,-453xm977,-1610r-189,0r0,-221r189,0r0,221xm535,-1610r-189,0r0,-221r189,0r0,221","w":1325,"k":{"Y":20,"X":20,"W":20,"V":20,"T":41,"J":68,"A":20}},"\u00dc":{"d":"1214,-492v0,302,-227,504,-524,504v-297,0,-522,-202,-522,-504r0,-966r221,0r0,956v0,195,119,316,301,316v182,0,303,-121,303,-316r0,-956r221,0r0,966xm1006,-1610r-189,0r0,-221r189,0r0,221xm563,-1610r-188,0r0,-221r188,0r0,221","w":1382,"k":{"J":25}},"\u00df":{"d":"815,-1116v0,-116,-84,-172,-217,-172v-162,0,-221,90,-221,231r0,1057r-211,0r0,-1069v0,-270,180,-404,438,-404v238,0,420,109,420,351v0,121,-53,190,-127,237v88,45,129,105,129,236r0,338v-2,199,-113,312,-317,311r-109,0r0,-178r66,0v99,0,149,-51,149,-152r0,-319v4,-125,-85,-158,-215,-148r0,-166v127,11,215,-28,215,-153","w":1157},"\u00e4":{"d":"449,12v-227,0,-361,-111,-361,-317v0,-174,121,-299,358,-299r275,0v12,-178,-34,-268,-227,-268v-115,0,-170,26,-228,100r-137,-129v98,-115,201,-150,373,-150v284,0,428,121,428,357r0,694r-205,0r0,-94v-76,76,-147,106,-276,106xm481,-162v139,0,250,-49,240,-213r0,-84r-244,0v-123,0,-186,56,-186,150v0,94,59,147,190,147xm842,-1237r-189,0r0,-221r189,0r0,221xm399,-1237r-188,0r0,-221r188,0r0,221","w":1083},"\u00f6":{"d":"549,-1051v311,0,434,222,434,531v0,312,-123,532,-434,532v-310,0,-432,-221,-432,-532v0,-309,122,-531,432,-531xm774,-520v0,-113,-9,-220,-72,-285v-74,-77,-232,-78,-305,0v-62,65,-71,172,-71,285v0,112,10,219,71,284v74,80,230,79,305,0v62,-65,72,-172,72,-284xm864,-1237r-188,0r0,-221r188,0r0,221xm422,-1237r-189,0r0,-221r189,0r0,221","w":1099,"k":{"y":20,"x":41,"w":16,"v":20}},"\u00fc":{"d":"516,12v-226,0,-360,-168,-360,-387r0,-663r209,0r0,632v0,162,92,232,208,232v117,0,215,-72,215,-232r0,-632r209,0r0,1038r-204,0r0,-104v-72,77,-172,116,-277,116xm889,-1237r-189,0r0,-221r189,0r0,221xm446,-1237r-188,0r0,-221r188,0r0,221","w":1163},"\u20ac":{"d":"1272,-436v-49,289,-258,448,-522,448v-152,0,-281,-55,-381,-155v-99,-99,-125,-207,-136,-365r-145,0r0,-137r139,0r0,-176r-139,0r0,-137r145,0v11,-152,39,-261,136,-357v100,-100,229,-155,381,-155v268,0,473,159,522,448r-225,0v-35,-147,-136,-252,-297,-252v-88,0,-162,35,-215,90v-52,54,-70,109,-78,226r374,0r0,137r-382,0r0,176r382,0r0,137r-374,0v8,123,26,178,78,234v53,55,127,90,215,90v161,0,264,-105,299,-252r223,0","w":1394},"\u00a0":{"w":491}}});;Cufon.registerFont({"w":1052,"face":{"font-family":"light","font-weight":300,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 0 5 4 4 0 0 2 0 3","ascent":"1565","descent":"-483","bbox":"-25 -1776 1683 483","underline-thickness":"104.448","underline-position":"-174.08","stemh":"92","stemv":"104","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":522},"!":{"d":"391,-393r-100,0r-6,-1065r112,0xm272,0r0,-137r138,0r0,137r-138,0","w":622},"\"":{"d":"195,-1139r0,-319r129,0r0,319r-129,0xm512,-1139r0,-319r129,0r0,319r-129,0","w":835},"#":{"d":"999,-895r-51,313r197,0r0,90r-211,0r-78,492r-104,0r79,-492r-360,0r-76,492r-104,0r78,-492r-197,0r0,-90r211,0r51,-313r-203,0r0,-92r215,0r74,-471r107,0r-76,471r358,0r74,-471r102,0r-73,471r192,0r0,92r-205,0xm537,-895r-52,313r359,0r51,-313r-358,0","w":1308},"$":{"d":"1081,-391v0,235,-168,387,-446,401r0,223r-92,0r0,-221v-191,-8,-314,-67,-439,-192r78,-78v119,119,215,160,361,170r0,-604v-237,-27,-408,-140,-408,-379v0,-232,154,-381,408,-397r0,-183r92,0r0,183v156,8,258,57,373,155r-72,72v-80,-72,-162,-123,-301,-133r0,594v135,22,260,52,319,106v76,70,127,166,127,283xm971,-387v0,-88,-25,-158,-80,-205v-78,-67,-158,-67,-256,-84r0,588v207,-14,336,-119,336,-299xm543,-1374v-189,14,-299,127,-299,299v0,84,24,147,75,190v66,56,148,80,224,90r0,-579","w":1202},"%":{"d":"1554,-260v0,164,-110,274,-268,274v-162,0,-270,-110,-270,-274r0,-219v0,-164,108,-275,270,-275v158,0,268,111,268,275r0,219xm680,-979v0,162,-111,272,-268,272v-162,0,-271,-110,-271,-272r0,-219v0,-164,109,-275,271,-275v157,0,268,111,268,275r0,219xm1464,-475v0,-123,-49,-201,-178,-201v-129,0,-180,78,-180,201r0,211v0,123,51,201,180,201v129,0,178,-78,178,-201r0,-211xm590,-1194v0,-123,-49,-201,-178,-201v-129,0,-181,78,-181,201r0,211v0,123,52,199,181,199v125,0,178,-76,178,-199r0,-211xm555,0r-92,0r680,-1458r92,0","w":1695},"&":{"d":"938,-1178v0,179,-140,244,-276,336r417,506v66,-98,86,-178,86,-362r109,0v0,182,-35,329,-127,444r209,254r-142,0r-141,-172v-55,55,-209,184,-448,184v-269,0,-453,-168,-453,-415v0,-232,164,-336,334,-453v-76,-92,-162,-197,-162,-324v0,-163,133,-290,297,-290v164,0,297,129,297,292xm569,-782v-137,94,-286,184,-286,372v0,191,137,324,340,324v116,0,241,-31,389,-162xm829,-1178v0,-112,-81,-194,-188,-194v-106,0,-186,80,-186,188v0,74,28,133,143,269v90,-68,231,-127,231,-263","w":1527},"'":{"d":"195,-1139r0,-319r129,0r0,319r-129,0","w":518},"(":{"d":"303,-174v-1,152,57,217,141,295r-71,72v-104,-95,-174,-186,-174,-355r0,-1134v0,-66,6,-127,39,-191v32,-63,71,-100,135,-164r71,72v-84,80,-142,139,-141,295r0,1110","w":581},")":{"d":"209,-1651v101,95,174,186,174,355r0,1134v0,66,-4,127,-39,191v-33,63,-72,100,-135,164r-76,-76v82,-78,139,-137,139,-291r0,-1110v4,-154,-57,-213,-139,-291","w":581},"*":{"d":"764,-897r-246,-150r6,289r-92,0r6,-289r-245,150r-46,-78r252,-139r-252,-139r46,-78r245,149r-6,-288r92,0r-6,288r246,-149r45,78r-252,139r252,139","w":956},"+":{"d":"575,-492r0,371r-96,0r0,-371r-370,0r0,-96r370,0r0,-368r96,0r0,368r369,0r0,96r-369,0"},",":{"d":"195,279r0,-418r139,0r0,278","w":528},"-":{"d":"168,-492r0,-96r537,0r0,96r-537,0","w":872},".":{"d":"195,0r0,-152r151,0r0,152r-151,0","w":540},"\/":{"d":"109,152r-109,0r584,-1762r108,0","w":692},"0":{"d":"909,-377v0,227,-157,389,-383,389v-223,0,-383,-162,-383,-389r0,-704v0,-228,160,-389,383,-389v226,0,383,161,383,389r0,704xm805,-1071v0,-172,-96,-307,-279,-307v-182,0,-278,135,-278,307r0,684v0,172,96,307,278,307v183,0,279,-135,279,-307r0,-684"},"1":{"d":"537,0r0,-1339r-265,233r0,-125r265,-227r104,0r0,1458r-104,0"},"2":{"d":"147,0r0,-92r586,-768v58,-74,82,-144,82,-227v0,-175,-102,-291,-280,-291v-152,0,-281,86,-281,291r-104,0v0,-218,145,-383,385,-383v233,0,385,153,385,383v0,108,-27,184,-101,280r-547,715r648,0r0,92r-773,0"},"3":{"d":"915,-389v0,260,-178,403,-413,403v-228,0,-400,-116,-416,-368r104,0v17,198,158,276,312,276v174,0,309,-117,309,-311v0,-205,-106,-319,-342,-311r0,-93v211,8,313,-95,313,-292v0,-191,-125,-295,-282,-295v-172,0,-273,102,-291,266r-105,0v23,-229,183,-359,396,-359v229,0,387,152,387,388v0,155,-60,268,-207,331v164,56,235,179,235,365"},"4":{"d":"770,-240r0,240r-104,0r0,-240r-578,0r0,-92r537,-1126r110,0r-536,1126r467,0r0,-463r104,0r0,463r195,0r0,92r-195,0"},"5":{"d":"924,-477v0,139,-13,279,-113,387v-125,135,-438,136,-561,6v-55,-59,-90,-137,-98,-238r104,0v23,156,102,244,274,244v80,0,154,-26,201,-74v86,-86,88,-215,88,-325v0,-182,-35,-389,-272,-389v-133,0,-234,55,-264,153r-93,0r0,-745r701,0r0,92r-608,0r0,516v102,-133,402,-146,522,-20v102,106,119,256,119,393"},"6":{"d":"918,-412v0,234,-140,424,-386,424v-245,0,-387,-172,-387,-409v0,-97,23,-183,82,-305r375,-756r105,0r-336,674v49,-23,106,-35,170,-35v237,0,377,180,377,407xm813,-403v0,-175,-96,-324,-283,-324v-172,0,-280,127,-280,324v0,196,108,323,280,323v172,0,283,-127,283,-323"},"7":{"d":"424,0r-107,0r517,-1366r-553,0r0,229r-105,0r0,-321r764,0r0,92"},"8":{"d":"942,-393v0,233,-180,405,-416,405v-235,0,-415,-172,-415,-405v0,-170,92,-291,231,-365v-131,-71,-201,-182,-201,-332v0,-213,158,-380,385,-380v228,0,385,167,385,380v0,150,-65,261,-198,332v139,74,229,195,229,365xm838,-393v0,-178,-136,-316,-312,-316v-176,0,-311,138,-311,316v0,180,135,313,311,313v176,0,312,-133,312,-313xm807,-1090v0,-170,-115,-288,-281,-288v-166,0,-280,118,-280,288v0,170,114,289,280,289v166,0,281,-119,281,-289"},"9":{"d":"907,-1061v0,96,-22,182,-82,305r-374,756r-105,0r336,-674v-49,23,-107,35,-172,35v-240,0,-375,-180,-375,-408v0,-233,139,-423,385,-423v246,0,387,172,387,409xm803,-1055v0,-196,-111,-323,-283,-323v-172,0,-280,127,-280,323v0,174,94,324,280,324v172,0,283,-127,283,-324"},":":{"d":"252,0r0,-152r151,0r0,152r-151,0xm252,-639r0,-152r151,0r0,152r-151,0","w":598},";":{"d":"256,279r0,-418r139,0r0,278xm252,-639r0,-152r151,0r0,152r-151,0","w":598},"<":{"d":"838,-160r-623,-329r0,-99r623,-330r0,113r-521,266r521,267r0,112"},"=":{"d":"109,-334r0,-96r835,0r0,96r-835,0xm109,-647r0,-96r835,0r0,96r-835,0"},">":{"d":"838,-489r-623,329r0,-112r520,-267r-520,-266r0,-113r623,330r0,99"},"?":{"d":"897,-1110v0,96,-35,164,-90,244r-174,256v-45,69,-36,126,-37,219r-104,0v-3,-123,5,-198,59,-277r172,-254v41,-63,70,-108,70,-188v0,-154,-113,-268,-263,-268v-159,0,-262,125,-262,268r-104,0v0,-197,147,-360,366,-360v209,0,367,155,367,360xm475,0r0,-137r137,0r0,137r-137,0","w":999},"@":{"d":"866,-1458v247,-1,404,173,404,420r0,1038r-105,0r0,-121v-67,92,-153,135,-284,135v-121,0,-217,-45,-285,-133v-64,-86,-88,-188,-88,-375v0,-180,22,-288,80,-370v59,-88,168,-137,291,-137v125,0,215,43,286,139r0,-182v0,-117,-20,-181,-84,-244v-59,-60,-129,-86,-233,-86r-270,0v-105,0,-172,26,-232,86v-63,63,-84,123,-84,244r0,722v0,140,25,189,127,265r-72,71v-124,-88,-159,-157,-159,-336r0,-716v0,-252,153,-420,401,-420r307,0xm1165,-494v0,-200,-30,-415,-276,-415v-246,0,-277,215,-277,415v0,201,31,416,277,416v246,0,276,-215,276,-416","w":1427},"A":{"d":"1083,0r-127,-354r-680,0r-126,354r-119,0r536,-1458r99,0r536,1458r-119,0xm616,-1311r-305,858r611,0","w":1232,"k":{"\u00d6":20,"y":51,"w":8,"v":51,"Y":72,"W":55,"V":72,"T":123,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"B":{"d":"1206,-397v0,260,-172,397,-428,397r-553,0r0,-1458r537,0v242,0,422,141,422,381v0,153,-86,280,-228,327v158,56,250,183,250,353xm1096,-397v0,-189,-131,-299,-330,-299r-430,0r0,598r430,0v199,0,330,-111,330,-299xm1073,-1077v0,-201,-147,-283,-323,-283r-414,0r0,565r414,0v176,0,323,-82,323,-282","w":1374,"k":{"J":39}},"C":{"d":"1163,-414v-49,262,-237,426,-495,426v-140,0,-269,-53,-365,-149v-133,-133,-135,-264,-135,-592v0,-330,2,-459,135,-592v96,-96,225,-149,365,-149v262,0,446,163,495,426r-112,0v-43,-203,-187,-328,-383,-328v-105,0,-203,39,-277,112v-104,105,-112,220,-112,531v0,311,8,426,112,530v74,74,172,113,277,113v196,0,344,-125,387,-328r108,0","w":1318,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":39,"A":20}},"D":{"d":"1221,-750v0,197,6,469,-142,617v-88,88,-211,133,-364,133r-490,0r0,-1458r490,0v153,0,276,45,364,133v148,147,142,379,142,575xm1110,-750v0,-163,5,-375,-109,-497v-149,-160,-396,-101,-665,-113r0,1262v268,-11,517,47,665,-113v113,-122,109,-375,109,-539","w":1388,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":53,"A":20}},"E":{"d":"225,0r0,-1458r885,0r0,98r-774,0r0,576r659,0r0,98r-659,0r0,588r774,0r0,98r-885,0","w":1224,"k":{"J":6}},"F":{"d":"336,-1360r0,600r659,0r0,98r-659,0r0,662r-111,0r0,-1458r885,0r0,98r-774,0","w":1179,"k":{"\u00fc":61,"\u00f6":68,"\u00e4":68,"\u00d6":41,"\u00c4":123,"z":61,"x":61,"u":61,"r":61,"p":61,"o":68,"n":61,"m":61,"e":68,"c":68,"a":68,"S":20,"Q":41,"O":41,"J":258,"G":41,"C":41,"A":123,".":190}},"G":{"d":"1169,-508v0,154,-34,257,-118,352v-186,209,-551,222,-748,19v-131,-135,-135,-264,-135,-592v0,-330,2,-459,135,-592v96,-96,225,-149,365,-149v254,0,454,170,497,426r-110,0v-43,-203,-191,-328,-387,-328v-105,0,-203,39,-277,112v-104,105,-112,220,-112,531v0,311,9,425,112,530v158,160,437,145,580,-28v86,-104,92,-239,88,-420r-391,0r0,-98r501,0r0,237","w":1333,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":68,"A":20}},"H":{"d":"1096,0r0,-686r-760,0r0,686r-111,0r0,-1458r111,0r0,674r760,0r0,-674r110,0r0,1458r-110,0","w":1431},"I":{"d":"225,0r0,-1458r111,0r0,1458r-111,0","w":561},"J":{"d":"815,-430v0,266,-170,442,-434,442v-129,0,-236,-41,-320,-125r76,-75v56,55,115,102,244,102v211,0,324,-131,324,-367r0,-1005r110,0r0,1028","w":1019,"k":{"\u00c4":20,"A":20}},"K":{"d":"1153,0r-469,-817r-348,422r0,395r-111,0r0,-1458r111,0r0,911r739,-911r133,0r-450,557r526,901r-131,0","w":1320,"k":{"\u00d6":20,"y":74,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"L":{"d":"225,0r0,-1458r111,0r0,1360r774,0r0,98r-885,0","w":1171,"k":{"\u00dc":25,"\u00d6":53,"y":123,"Y":164,"W":82,"V":143,"U":25,"T":164,"Q":53,"O":53,"J":-8,"G":53,"C":53}},"M":{"d":"1339,0r0,-1202r-442,997r-111,0r-450,-997r0,1202r-111,0r0,-1458r111,0r508,1124r495,-1124r111,0r0,1458r-111,0","w":1675},"N":{"d":"1178,0r-842,-1268r0,1268r-111,0r0,-1458r111,0r842,1263r0,-1263r110,0r0,1458r-110,0","w":1513},"O":{"d":"1167,-729v0,328,-4,457,-135,592v-189,195,-540,195,-729,0v-131,-135,-135,-264,-135,-592v0,-330,4,-457,135,-592v188,-194,540,-195,729,0v131,135,135,262,135,592xm1057,-729v0,-311,-9,-425,-113,-531v-146,-148,-408,-148,-553,0v-103,106,-112,220,-112,531v0,311,9,425,112,530v146,149,407,149,553,0v104,-105,113,-219,113,-530","w":1335,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":68,"A":20}},"P":{"d":"1200,-1038v0,266,-188,420,-440,420r-424,0r0,618r-111,0r0,-1458r535,0v252,0,440,151,440,420xm1090,-1038v0,-219,-140,-322,-342,-322r-412,0r0,643r412,0v202,0,342,-102,342,-321","w":1292,"k":{"\u00f6":20,"\u00e4":20,"\u00c4":102,"s":20,"q":20,"o":20,"g":20,"e":20,"d":20,"c":20,"a":20,"J":246,"A":102,".":225}},"Q":{"d":"1161,74r-172,-172v-198,160,-514,139,-686,-39v-131,-135,-135,-264,-135,-592v0,-330,4,-457,135,-592v188,-194,540,-195,729,0v131,135,135,262,135,592v0,299,-2,438,-104,557r172,172xm1057,-729v0,-311,-9,-425,-113,-531v-146,-148,-408,-148,-553,0v-103,106,-112,220,-112,531v0,311,9,425,112,530v134,137,373,152,524,27r-204,-205r73,-74r203,203v66,-92,70,-219,70,-481","w":1333},"R":{"d":"1085,0r-348,-672r-401,0r0,672r-111,0r0,-1458r555,0v238,0,418,137,418,391v0,219,-131,358,-336,393r352,674r-129,0xm1087,-1065v0,-203,-133,-295,-321,-295r-430,0r0,590r430,0v188,0,321,-92,321,-295","w":1345,"k":{"J":18}},"S":{"d":"1081,-391v0,248,-186,403,-491,403v-215,0,-352,-59,-486,-192r78,-78v131,131,240,172,414,172v231,0,375,-111,375,-301v0,-88,-24,-159,-80,-205v-54,-44,-90,-61,-211,-78v-162,-23,-337,-48,-430,-133v-73,-67,-115,-153,-115,-268v0,-246,172,-399,453,-399v180,0,295,49,420,157r-72,72v-86,-82,-182,-135,-354,-135v-213,0,-338,114,-338,301v0,246,233,274,450,305v137,19,201,45,260,96v80,66,127,166,127,283","w":1202,"k":{"Y":41,"S":12}},"T":{"d":"606,-1360r0,1360r-110,0r0,-1360r-435,0r0,-98r981,0r0,98r-436,0","w":1103,"k":{"\u00fc":61,"\u00f6":82,"\u00e4":82,"\u00d6":41,"\u00c4":123,"z":80,"y":80,"x":80,"w":80,"v":80,"u":80,"s":135,"r":80,"q":135,"p":80,"o":135,"n":80,"m":80,"g":135,"e":135,"d":135,"c":135,"a":135,"Q":41,"O":41,"J":164,"G":41,"C":41,"A":123,".":164}},"U":{"d":"1204,-473v0,285,-207,485,-499,485v-293,0,-500,-200,-500,-485r0,-985r110,0r0,971v0,241,154,401,390,401v235,0,389,-160,389,-401r0,-971r110,0r0,985","w":1409,"k":{"J":25}},"V":{"d":"594,0r-94,0r-480,-1458r117,0r410,1263r409,-1263r117,0","w":1093,"k":{"\u00fc":41,"\u00f6":61,"\u00e4":61,"\u00d6":20,"\u00c4":72,"z":41,"y":20,"x":41,"u":41,"s":82,"r":41,"q":82,"p":41,"o":82,"n":41,"m":41,"g":82,"e":82,"d":82,"c":82,"a":82,"Q":20,"O":20,"G":20,"C":20,"A":72,".":164}},"W":{"d":"1319,0r-113,0r-344,-1270r-344,1270r-112,0r-365,-1458r117,0r307,1268r340,-1268r115,0r340,1268r307,-1268r116,0","w":1724,"k":{"\u00f6":61,"\u00e4":61,"\u00d6":20,"\u00c4":33,"s":82,"q":82,"o":82,"g":82,"e":82,"d":82,"c":82,"a":82,"Q":20,"O":20,"G":20,"C":20,"A":33,".":102}},"X":{"d":"924,0r-381,-649r-381,649r-125,0r446,-748r-417,-710r129,0r348,612r350,-612r127,0r-418,710r451,748r-129,0","w":1089,"k":{"\u00d6":20,"y":66,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"Y":{"d":"561,-604r0,604r-110,0r0,-604r-431,-854r119,0r371,737r362,-737r119,0","w":1011,"k":{"\u00fc":82,"\u00f6":102,"\u00e4":102,"\u00d6":20,"\u00c4":82,"z":82,"x":82,"u":82,"s":164,"r":82,"q":164,"p":82,"o":164,"n":82,"m":82,"g":164,"e":164,"d":164,"c":164,"a":164,"Q":20,"O":20,"J":82,"G":20,"C":20,"A":82,".":164}},"Z":{"d":"129,0r0,-117r768,-1243r-737,0r0,-98r856,0r0,98r-774,1262r774,0r0,98r-887,0","w":1144},"[":{"d":"199,152r0,-1762r303,0r0,92r-199,0r0,1577r199,0r0,93r-303,0","w":593},"\\":{"d":"584,152r-584,-1762r109,0r583,1762r-108,0","w":692},"]":{"d":"92,152r0,-86r205,0r0,-1590r-205,0r0,-86r303,0r0,1762r-303,0","w":593},"^":{"d":"793,-864r-267,-496r-266,496r-104,0r323,-606r94,0r324,606r-104,0"},"_":{"d":"0,328r0,-78r1053,0r0,78r-1053,0"},"`":{"d":"489,-1208r-217,-301r138,0r198,301r-119,0","w":1024},"a":{"d":"778,0r0,-98v-84,84,-162,110,-301,110v-147,0,-227,-24,-291,-90v-47,-47,-71,-119,-71,-192v0,-181,129,-285,344,-285r319,0r0,-111v0,-157,-76,-241,-278,-241v-140,0,-209,35,-273,125r-75,-66v84,-117,186,-151,348,-151v262,0,383,116,383,323r0,676r-105,0xm778,-471r-307,0v-168,0,-252,65,-252,199v0,131,78,192,258,192v90,0,171,-12,246,-76v57,-49,57,-195,55,-315","w":1073},"b":{"d":"965,-494v0,156,-27,320,-127,420v-52,51,-138,86,-242,86v-113,0,-205,-24,-293,-139r0,127r-104,0r0,-1458r104,0r0,598v88,-115,180,-139,293,-139v104,0,190,34,242,86v100,100,127,264,127,419xm860,-494v0,-204,-37,-413,-278,-413v-242,0,-279,209,-279,413v0,205,37,414,279,414v241,0,278,-209,278,-414","w":1105},"c":{"d":"246,-494v0,258,112,414,329,414v105,0,170,-33,254,-125r72,66v-104,116,-190,151,-326,151v-270,0,-434,-192,-434,-506v0,-313,164,-505,434,-505v136,0,222,34,326,151r-72,66v-84,-95,-149,-125,-254,-125v-215,0,-329,157,-329,413","w":1009,"k":{"\u00f6":37,"\u00e4":8,"w":41,"o":37,"e":37,"d":20,"c":37,"a":8}},"d":{"d":"803,0r0,-127v-88,115,-180,139,-293,139v-104,0,-191,-35,-242,-86v-100,-100,-127,-264,-127,-420v0,-155,27,-319,127,-419v51,-52,138,-86,242,-86v113,0,205,24,293,139r0,-598r104,0r0,1458r-104,0xm803,-494v0,-204,-37,-413,-279,-413v-241,0,-278,209,-278,413v0,205,37,414,278,414v242,0,279,-209,279,-414","w":1105},"e":{"d":"246,-471v0,252,110,389,321,389v117,0,189,-35,273,-119r78,62v-101,100,-193,151,-357,151v-272,0,-420,-176,-420,-506v0,-319,148,-505,396,-505v261,0,408,203,395,528r-686,0xm827,-555v3,-219,-108,-352,-290,-352v-183,0,-292,139,-291,352r581,0","w":1071,"k":{"y":20,"x":12,"w":16,"v":20}},"f":{"d":"334,-909r0,909r-105,0r0,-909r-135,0r0,-78r135,0r0,-213v0,-150,82,-258,238,-258r90,0r0,92r-72,0v-104,0,-151,59,-151,164r0,215r223,0r0,78r-223,0","w":622,"k":{"\u00f6":33,"\u00e4":33,"o":33,"e":33,"c":33,"a":33,".":102}},"g":{"d":"907,55v0,248,-147,428,-403,428v-148,0,-223,-39,-326,-131r70,-69v78,71,131,108,256,108v207,0,299,-145,299,-342r0,-176v-88,115,-180,139,-293,139v-104,0,-191,-35,-242,-86v-100,-100,-127,-264,-127,-420v0,-155,27,-319,127,-419v51,-52,138,-86,242,-86v113,0,205,24,293,139r0,-127r104,0r0,1042xm803,-494v0,-204,-37,-413,-279,-413v-241,0,-278,209,-278,413v0,205,37,414,278,414v242,0,279,-209,279,-414","w":1105},"h":{"d":"854,0r0,-612v0,-191,-94,-295,-272,-295v-179,0,-279,106,-279,295r0,612r-104,0r0,-1458r104,0r0,588v74,-86,170,-129,291,-129v227,0,364,139,364,368r0,631r-104,0","w":1144},"i":{"d":"199,0r0,-987r104,0r0,987r-104,0xm186,-1329r0,-129r129,0r0,129r-129,0","w":501},"j":{"d":"303,215v0,156,-76,256,-237,256r-91,0r0,-92r72,0v117,0,152,-53,152,-166r0,-1200r104,0r0,1202xm186,-1329r0,-129r129,0r0,129r-129,0","w":501},"k":{"d":"868,0r-340,-543r-225,260r0,283r-104,0r0,-1458r104,0r0,1028r490,-557r133,0r-326,369r397,618r-129,0","w":1079,"k":{"\u00f6":14,"q":14,"o":14,"g":14,"e":14,"d":14,"c":14}},"l":{"d":"432,0v-162,0,-237,-100,-237,-256r0,-1202r104,0r0,1200v0,113,35,166,152,166r71,0r0,92r-90,0","w":587,"k":{"\u00f6":41,"y":68,"w":41,"v":82,"o":41,"e":51,"c":51}},"m":{"d":"1249,-999v224,1,363,143,363,368r0,631r-103,0r0,-612v0,-191,-94,-295,-272,-295v-172,0,-279,106,-279,276r0,631r-104,0r0,-612v0,-191,-94,-295,-272,-295v-179,0,-279,106,-279,295r0,612r-104,0r0,-987r104,0r0,117v74,-86,172,-129,293,-129v147,0,258,63,317,180v74,-117,189,-180,336,-180","w":1798},"n":{"d":"594,-999v222,0,364,143,364,368r0,631r-104,0r0,-612v0,-191,-94,-295,-272,-295v-179,0,-279,106,-279,295r0,612r-104,0r0,-987r104,0r0,117v74,-86,170,-129,291,-129","w":1144},"o":{"d":"936,-494v0,142,-20,291,-123,398v-135,141,-414,142,-549,0v-102,-107,-123,-256,-123,-398v0,-141,21,-290,123,-397v136,-142,414,-142,549,0v102,107,123,256,123,397xm831,-494v0,-114,-8,-245,-88,-329v-107,-111,-303,-110,-409,0v-80,83,-88,215,-88,329v0,115,7,247,88,330v106,110,302,110,409,0v81,-83,88,-215,88,-330","w":1077,"k":{"y":20,"x":41,"w":16,"v":20}},"p":{"d":"965,-494v0,156,-27,320,-127,420v-52,51,-138,86,-242,86v-113,0,-205,-24,-293,-139r0,598r-104,0r0,-1458r104,0r0,127v88,-115,180,-139,293,-139v104,0,190,34,242,86v100,100,127,264,127,419xm860,-494v0,-204,-37,-413,-278,-413v-242,0,-279,209,-279,413v0,205,37,414,279,414v241,0,278,-209,278,-414","w":1105},"q":{"d":"803,471r0,-598v-88,115,-180,139,-293,139v-104,0,-191,-35,-242,-86v-100,-100,-127,-264,-127,-420v0,-155,27,-319,127,-419v51,-52,138,-86,242,-86v113,0,205,24,293,139r0,-127r104,0r0,1458r-104,0xm803,-494v0,-204,-37,-413,-279,-413v-241,0,-278,209,-278,413v0,205,37,414,278,414v242,0,279,-209,279,-414","w":1105},"r":{"d":"754,-829v-60,-60,-105,-78,-187,-78v-170,0,-264,141,-264,299r0,608r-104,0r0,-987r104,0r0,131v102,-159,384,-204,526,-49","w":837,"k":{"\u00f6":63,"\u00e4":20,"s":20,"q":63,"o":63,"g":63,"e":63,"d":63,"c":63,"a":20,".":246,",":246}},"s":{"d":"897,-281v0,181,-152,293,-395,293v-172,0,-299,-45,-400,-141r72,-72v76,80,184,121,324,121v194,0,297,-67,297,-201v0,-104,-58,-153,-189,-165r-164,-15v-198,-16,-297,-102,-297,-258v0,-172,140,-280,355,-280v137,0,258,38,346,104r-70,70v-76,-56,-168,-84,-276,-84v-164,0,-252,67,-252,190v0,105,61,153,201,166v224,20,448,17,448,272","w":1011,"k":{"v":20,"t":20,"s":12}},"t":{"d":"461,0v-156,0,-238,-109,-238,-258r0,-651r-135,0r0,-78r135,0r0,-316r105,0r0,316r223,0r0,78r-223,0r0,653v0,104,47,164,151,164r72,0r0,92r-90,0","w":665,"k":{"\u00f6":6,"\u00e4":6,"o":6,"e":6,"c":6,"a":6}},"u":{"d":"551,12v-223,0,-365,-144,-365,-368r0,-631r105,0r0,612v0,191,94,295,272,295v178,0,279,-106,279,-295r0,-612r104,0r0,987r-104,0r0,-117v-74,86,-170,129,-291,129","w":1144},"v":{"d":"492,0r-103,0r-360,-987r114,0r297,864r297,-864r115,0","w":880,"k":{"\u00f6":20,"\u00e4":20,"s":20,"o":20,"e":20,"c":20,"a":20,".":129}},"w":{"d":"1114,0r-106,0r-279,-823r-278,823r-107,0r-315,-987r114,0r252,864r283,-864r102,0r283,864r252,-864r115,0","w":1458,"k":{"\u00f6":16,"o":16,"e":16,"c":16,".":80}},"x":{"d":"733,0r-260,-416r-264,416r-127,0r334,-504r-320,-483r127,0r250,397r246,-397r127,0r-320,483r334,504r-127,0","w":942,"k":{"\u00f6":41,"o":41,"e":41,"c":41}},"y":{"d":"393,268v-38,136,-145,187,-303,178r0,-92v134,6,179,-25,219,-135r80,-219r-360,-987r114,0r297,864r297,-864r115,0","w":880,"k":{"\u00f6":20,"\u00e4":20,"o":20,"e":20,"c":20,"a":20,".":129,",":246}},"z":{"d":"111,0r0,-98r594,-797r-562,0r0,-92r672,0r0,98r-596,797r596,0r0,92r-704,0","w":925},"{":{"d":"102,-774v114,7,162,-49,162,-162r0,-424v0,-113,16,-155,53,-194v43,-45,121,-58,228,-56r0,92v-147,-1,-176,8,-176,160r0,424v0,107,-37,162,-125,205v88,43,125,98,125,205r0,424v0,75,8,108,28,133v20,25,78,26,148,26r0,93v-105,2,-186,-11,-228,-56v-37,-40,-53,-82,-53,-194r0,-424v0,-115,-48,-168,-162,-162r0,-90","w":647},"|":{"d":"272,152r0,-1762r105,0r0,1762r-105,0","w":649},"}":{"d":"383,-936v0,113,48,168,162,162r0,90v-114,-6,-162,48,-162,162r0,424v0,112,-15,154,-53,194v-43,45,-121,58,-228,56r0,-93v147,2,177,-9,177,-159r0,-424v0,-107,36,-162,124,-205v-88,-43,-124,-98,-124,-205r0,-424v0,-76,-9,-108,-29,-133v-20,-25,-78,-28,-148,-27r0,-92v105,-2,186,11,228,56v37,39,53,81,53,194r0,424","w":647},"~":{"d":"346,-649v117,0,245,110,365,110v59,0,88,-10,170,-92r63,64v-110,110,-158,127,-237,127v-116,0,-246,-111,-365,-111v-57,0,-88,10,-170,92r-63,-63v110,-111,157,-127,237,-127"},"\u00a7":{"d":"961,-506v0,172,-105,293,-226,348v129,43,211,152,211,299v0,199,-151,342,-366,342v-205,0,-361,-114,-377,-317r110,0v15,147,111,219,267,219v155,0,256,-86,256,-244v0,-108,-76,-196,-193,-229r-170,-47v-174,-49,-274,-193,-274,-371v0,-172,104,-293,225,-348v-129,-55,-203,-139,-203,-289v0,-205,162,-327,359,-327v190,0,354,110,364,309r-108,0v-15,-154,-107,-213,-256,-213v-154,0,-250,76,-250,231v0,125,80,189,186,219r170,47v172,50,275,195,275,371xm580,-215v158,0,270,-112,270,-291v0,-80,-12,-147,-72,-207v-55,-55,-123,-84,-198,-84v-157,-2,-271,126,-271,291v0,178,111,291,271,291","w":1159},"\u00c4":{"d":"1083,0r-127,-354r-680,0r-126,354r-119,0r536,-1458r99,0r536,1458r-119,0xm616,-1311r-305,858r611,0xm344,-1618r0,-158r119,0r0,158r-119,0xm770,-1618r0,-158r119,0r0,158r-119,0","w":1232,"k":{"y":51,"w":8,"v":51,"Y":72,"W":55,"V":72,"T":123,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"\u00d6":{"d":"1167,-729v0,328,-4,457,-135,592v-189,195,-540,195,-729,0v-131,-135,-135,-264,-135,-592v0,-330,4,-457,135,-592v188,-194,540,-195,729,0v131,135,135,262,135,592xm1057,-729v0,-311,-9,-425,-113,-531v-146,-148,-408,-148,-553,0v-103,106,-112,220,-112,531v0,311,9,425,112,530v146,149,407,149,553,0v104,-105,113,-219,113,-530xm395,-1618r0,-158r119,0r0,158r-119,0xm821,-1618r0,-158r119,0r0,158r-119,0","w":1335,"k":{"Y":20,"X":20,"W":20,"V":20,"T":41,"J":68,"A":20}},"\u00dc":{"d":"1204,-473v0,285,-207,485,-499,485v-293,0,-500,-200,-500,-485r0,-985r110,0r0,971v0,241,154,401,390,401v235,0,389,-160,389,-401r0,-971r110,0r0,985xm432,-1618r0,-158r119,0r0,158r-119,0xm858,-1618r0,-158r119,0r0,158r-119,0","w":1409,"k":{"J":25}},"\u00df":{"d":"864,-1141v0,-154,-107,-239,-284,-239v-197,0,-277,125,-277,305r0,1075r-104,0r0,-1075v0,-248,145,-398,393,-398v205,0,375,103,375,332v0,109,-43,193,-129,250v106,53,131,125,131,254r0,363v-3,167,-107,277,-275,274r-110,0r0,-92r90,0v65,0,94,-14,133,-45v39,-31,57,-80,57,-150r0,-366v4,-124,-64,-184,-180,-187r-100,0r0,-92r80,0v122,0,200,-84,200,-209","w":1126},"\u00e4":{"d":"778,0r0,-98v-84,84,-162,110,-301,110v-147,0,-227,-24,-291,-90v-47,-47,-71,-119,-71,-192v0,-181,129,-285,344,-285r319,0r0,-111v0,-157,-76,-241,-278,-241v-140,0,-209,35,-273,125r-75,-66v84,-117,186,-151,348,-151v262,0,383,116,383,323r0,676r-105,0xm778,-471r-307,0v-168,0,-252,65,-252,199v0,131,78,192,258,192v90,0,171,-12,246,-76v57,-49,57,-195,55,-315xm238,-1229r0,-157r118,0r0,157r-118,0xm664,-1229r0,-157r118,0r0,157r-118,0","w":1073},"\u00f6":{"d":"936,-494v0,142,-20,291,-123,398v-135,141,-414,142,-549,0v-102,-107,-123,-256,-123,-398v0,-141,21,-290,123,-397v136,-142,414,-142,549,0v102,107,123,256,123,397xm831,-494v0,-114,-8,-245,-88,-329v-107,-111,-303,-110,-409,0v-80,83,-88,215,-88,329v0,115,7,247,88,330v106,110,302,110,409,0v81,-83,88,-215,88,-330xm266,-1229r0,-157r119,0r0,157r-119,0xm692,-1229r0,-157r119,0r0,157r-119,0","w":1077,"k":{"y":20,"x":41,"w":16,"v":20}},"\u00fc":{"d":"551,12v-223,0,-365,-144,-365,-368r0,-631r105,0r0,612v0,191,94,295,272,295v178,0,279,-106,279,-295r0,-612r104,0r0,987r-104,0r0,-117v-74,86,-170,129,-291,129xm293,-1229r0,-157r119,0r0,157r-119,0xm719,-1229r0,-157r119,0r0,157r-119,0","w":1144},"\u20ac":{"d":"1229,-414v-49,262,-238,426,-496,426v-139,0,-269,-52,-364,-149v-106,-110,-127,-217,-133,-412r-134,0r0,-78r131,0r0,-217r-131,0r0,-78r134,0v6,-184,28,-295,133,-399v96,-96,225,-149,364,-149v262,0,447,163,496,426r-113,0v-43,-203,-186,-328,-383,-328v-104,0,-203,39,-276,112v-80,80,-105,166,-111,338r500,0r0,78r-502,0r0,217r502,0r0,78r-500,0v6,182,29,268,111,350v73,74,172,113,276,113v197,0,344,-125,387,-328r109,0","w":1384},"\u00a0":{"w":522}}});;Cufon.registerFont({"w":1112,"face":{"font-family":"bold","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 0 5 3 3 0 0 2 0 4","ascent":"1565","descent":"-483","x-height":"12","bbox":"-47 -1860 1804 403","underline-thickness":"104.448","underline-position":"-174.08","stemh":"254","stemv":"266","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":475},"!":{"d":"559,-1458r-67,1001r-197,0r-66,-1001r330,0xm547,0r-305,0r0,-303r305,0r0,303","w":710},"\"":{"d":"389,-1026r-250,0r0,-432r250,0r0,432xm809,-1026r-248,0r0,-432r248,0r0,432","w":950},"#":{"d":"1317,-860r-182,0r-33,221r141,0r0,250r-182,0r-62,389r-280,0r63,-389r-237,0r-62,389r-280,0r61,-389r-141,0r0,-250r182,0r33,-221r-143,0r0,-248r182,0r57,-362r281,0r-58,362r238,0r57,-362r279,0r-55,362r141,0r0,248xm854,-860r-236,0r-34,221r237,0","w":1415},"$":{"d":"1169,-430v0,250,-184,403,-440,434r0,229r-207,0r0,-221v-196,-6,-350,-57,-483,-192r184,-185v86,86,203,119,326,123r0,-370v-270,-24,-453,-138,-453,-416v0,-236,160,-410,426,-438r0,-185r207,0r0,183v166,10,293,61,404,168r-181,178v-67,-66,-168,-92,-252,-99r0,357v147,18,288,58,357,127v75,76,112,178,112,307xm891,-422v0,-51,-14,-94,-45,-123v-41,-39,-92,-45,-146,-53r0,352v123,-14,191,-76,191,-176xm549,-877r0,-342v-119,17,-178,91,-178,181v0,94,82,152,178,161","w":1267},"%":{"d":"1630,-268v0,184,-137,280,-297,280v-162,0,-297,-96,-297,-280r0,-203v0,-184,135,-281,297,-281v160,0,297,97,297,281r0,203xm700,-987v0,184,-137,280,-297,280v-161,0,-297,-96,-297,-280r0,-203v0,-184,136,-280,297,-280v160,0,297,96,297,280r0,203xm1319,-1458r-690,1458r-209,0r690,-1458r209,0xm1438,-276r0,-187v0,-78,-39,-117,-105,-117v-67,0,-104,39,-104,117r0,187v0,77,37,116,104,116v66,0,105,-39,105,-116xm508,-995r0,-187v0,-78,-39,-116,-105,-116v-67,0,-104,38,-104,116r0,187v0,77,39,116,104,116v66,0,105,-39,105,-116","w":1736},"&":{"d":"1001,-1126v0,169,-122,237,-253,329r245,291v47,-63,70,-151,74,-256r252,0v-10,189,-53,338,-156,453r262,309r-338,0r-106,-127v-68,53,-168,139,-377,139v-321,0,-481,-168,-481,-442v0,-186,135,-307,262,-391v-59,-68,-145,-170,-145,-309v0,-199,145,-340,389,-340v229,0,372,145,372,344xm819,-315r-291,-342v-88,61,-147,118,-147,223v0,121,98,205,221,205v86,0,150,-27,217,-86xm604,-961v73,-45,146,-82,146,-163v0,-68,-45,-119,-121,-119v-80,0,-121,51,-121,119v0,53,45,104,96,163","w":1476},"'":{"d":"391,-1026r-252,0r0,-432r252,0r0,432","w":530},"(":{"d":"430,-295v-3,176,64,225,145,309r-178,179v-67,-68,-133,-132,-180,-211v-47,-82,-53,-175,-53,-265r0,-893v0,-90,6,-182,53,-264v47,-80,113,-143,180,-211r178,178v-81,86,-145,133,-145,310r0,868","w":688},")":{"d":"256,-1163v4,-176,-63,-224,-145,-307r180,-181v67,68,133,131,180,211v47,82,53,174,53,264r0,893v0,90,-6,183,-53,265v-47,79,-113,143,-180,211r-180,-181v82,-83,145,-131,145,-307r0,-868","w":688},"*":{"d":"901,-942r-94,162r-215,-135r8,256r-188,0r10,-256r-217,135r-92,-162r225,-119r-225,-119r92,-163r217,137r-10,-256r188,0r-8,256r215,-137r94,163r-227,119","w":1011},"+":{"d":"1010,-442r-328,0r0,327r-250,0r0,-327r-330,0r0,-250r330,0r0,-328r250,0r0,328r328,0r0,250"},",":{"d":"432,113r-293,225r0,-629r293,0r0,404","w":571},"-":{"d":"752,-461r-631,0r0,-248r631,0r0,248","w":872},".":{"d":"444,0r-305,0r0,-303r305,0r0,303","w":583},"\/":{"d":"834,-1610r-584,1762r-250,0r584,-1762r250,0","w":825},"0":{"d":"999,-422v0,279,-204,434,-442,434v-238,0,-444,-155,-444,-434r0,-614v0,-279,206,-434,444,-434v238,0,442,155,442,434r0,614xm733,-424r0,-608v0,-123,-71,-199,-176,-199v-104,0,-178,76,-178,199r0,608v0,123,74,197,178,197v105,0,176,-74,176,-197"},"1":{"d":"774,0r-266,0r0,-1171r-297,258r0,-287r297,-258r266,0r0,1458"},"2":{"d":"1008,0r-887,0r0,-240r545,-632v53,-64,75,-109,75,-177v0,-108,-63,-182,-176,-182v-88,0,-178,45,-178,187r-266,0v0,-267,194,-426,444,-426v258,0,443,161,443,423v0,142,-56,218,-156,334r-408,473r564,0r0,240"},"3":{"d":"1014,-422v0,291,-213,434,-463,434v-238,0,-461,-125,-465,-430r266,0v4,131,94,191,199,191v115,0,197,-72,197,-203v0,-134,-89,-213,-244,-201r0,-231v148,12,223,-67,223,-182v0,-123,-82,-187,-178,-187v-100,0,-174,66,-180,176r-267,0v7,-260,201,-415,447,-415v258,0,444,172,444,417v0,158,-71,248,-168,299v105,56,189,156,189,332"},"4":{"d":"1049,-207r-134,0r0,207r-256,0r0,-207r-596,0r0,-252r500,-999r291,0r-500,999r305,0r0,-272r256,0r0,272r134,0r0,252"},"5":{"d":"1012,-492v0,293,-133,504,-451,504v-151,0,-262,-53,-325,-116v-91,-91,-111,-197,-119,-304r266,0v14,115,68,181,178,181v51,0,94,-15,127,-47v47,-48,57,-125,57,-218v0,-167,-49,-262,-178,-262v-108,0,-157,62,-176,119r-244,0r0,-823r832,0r0,239r-590,0r0,314v39,-37,121,-74,219,-74v121,0,213,39,273,98v114,115,131,252,131,389"},"6":{"d":"1008,-442v0,286,-197,454,-455,454v-258,0,-455,-162,-455,-450v0,-133,58,-256,123,-389r307,-631r291,0r-303,602v35,-14,74,-18,109,-18v196,0,383,161,383,432xm741,-440v0,-129,-75,-213,-188,-213v-109,0,-188,78,-188,213v0,135,79,213,188,213v109,0,188,-78,188,-213"},"7":{"d":"1030,-1219r-473,1219r-289,0r473,-1219r-385,0r0,230r-254,0r0,-469r928,0r0,239"},"8":{"d":"1024,-424v0,283,-209,436,-467,436v-258,0,-467,-153,-467,-436v0,-178,103,-274,182,-328v-73,-51,-163,-147,-163,-303v0,-258,204,-415,448,-415v244,0,447,157,447,415v0,156,-91,252,-164,303v80,54,184,150,184,328xm758,-428v0,-113,-88,-203,-201,-203v-113,0,-201,90,-201,203v0,113,88,201,201,201v113,0,201,-88,201,-201xm737,-1047v0,-104,-75,-184,-180,-184v-104,0,-182,80,-182,184v0,107,78,185,182,185v105,0,180,-78,180,-185"},"9":{"d":"1014,-1020v0,133,-56,256,-121,389r-309,631r-289,0r303,-602v-35,14,-74,18,-109,18v-196,0,-385,-161,-385,-432v0,-287,197,-454,455,-454v258,0,455,161,455,450xm748,-1018v0,-135,-80,-213,-189,-213v-108,0,-188,78,-188,213v0,129,75,213,188,213v109,0,189,-78,189,-213"},":":{"d":"494,-555r-304,0r0,-303r304,0r0,303xm494,0r-304,0r0,-303r304,0r0,303","w":632},";":{"d":"487,113r-290,225r0,-629r290,0r0,404xm494,-555r-304,0r0,-303r304,0r0,303","w":632},"<":{"d":"973,-86r-832,-383r0,-231r832,-383r0,280r-494,219r494,217r0,281"},"=":{"d":"1010,-682r-908,0r0,-250r908,0r0,250xm1010,-238r-908,0r0,-249r908,0r0,249"},">":{"d":"973,-469r-832,383r0,-281r494,-217r-494,-219r0,-280r832,383r0,231"},"?":{"d":"997,-1061v0,103,-43,180,-100,256r-152,201v-28,38,-40,85,-36,147r-267,0v-5,-126,12,-191,78,-274r152,-195v33,-43,59,-92,59,-137v0,-96,-63,-168,-166,-168v-108,0,-164,76,-164,170r-266,0v0,-254,193,-409,430,-409v232,0,432,149,432,409xm717,0r-283,0r0,-272r283,0r0,272","w":1071},"@":{"d":"1434,6r-248,-6r0,-94v-66,71,-133,106,-246,106v-106,0,-197,-37,-258,-102v-84,-90,-96,-199,-96,-383v0,-182,14,-287,94,-379v111,-128,390,-145,500,-4v2,-131,0,-226,-72,-301v-98,-101,-280,-72,-459,-72v-82,0,-147,15,-205,72v-59,59,-71,123,-71,209r0,592v0,102,22,143,90,202r-184,185v-117,-105,-162,-189,-162,-373r0,-612v0,-166,33,-293,127,-387v94,-95,219,-125,385,-125v276,0,533,-30,680,125v92,96,125,219,125,387r0,960xm1180,-473v0,-162,-39,-262,-170,-262v-131,0,-168,100,-168,262v0,162,37,264,168,264v131,0,170,-102,170,-264","w":1552},"A":{"d":"1296,0r-297,0r-86,-258r-518,0r-88,258r-297,0r531,-1458r223,0xm838,-498r-179,-530r-184,530r363,0","w":1306,"k":{"\u00d6":20,"y":51,"v":51,"Y":72,"W":55,"V":72,"T":123,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"B":{"d":"1227,-420v0,273,-187,420,-447,420r-610,0r0,-1458r586,0v284,0,450,160,450,409v0,162,-106,267,-180,301v88,41,201,134,201,328xm942,-434v0,-98,-61,-178,-190,-178r-297,0r0,358r297,0v129,0,190,-82,190,-180xm922,-1036v0,-101,-68,-168,-189,-168r-278,0r0,336r278,0v121,0,189,-68,189,-168","w":1347,"k":{"J":39}},"C":{"d":"1194,-449v-49,297,-258,461,-537,461v-241,0,-468,-163,-512,-379v-30,-144,-29,-582,0,-725v44,-217,272,-378,512,-378v281,0,488,163,537,460r-289,0v-31,-125,-108,-207,-246,-207v-77,0,-138,26,-182,76v-58,65,-71,129,-71,412v0,283,13,347,71,412v44,50,105,75,182,75v138,0,215,-82,246,-207r289,0","w":1269,"k":{"\u00d6":66,"\u00c4":23,"Y":23,"X":20,"W":23,"V":23,"T":41,"Q":66,"O":66,"J":41,"G":66,"C":66,"A":23}},"D":{"d":"1229,-735v0,219,16,432,-148,596v-96,96,-233,139,-385,139r-526,0r0,-1458r526,0v152,0,289,43,385,139v164,164,148,365,148,584xm944,-735v0,-221,-8,-314,-61,-379v-49,-60,-115,-90,-213,-90r-215,0r0,950r215,0v98,0,164,-31,213,-90v53,-66,61,-170,61,-391","w":1349,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":53,"A":20}},"E":{"d":"1130,0r-960,0r0,-1458r960,0r0,254r-675,0r0,342r575,0r0,254r-575,0r0,354r675,0r0,254","w":1239,"k":{"J":6}},"F":{"d":"1130,-1204r-675,0r0,358r575,0r0,254r-575,0r0,592r-285,0r0,-1458r960,0r0,254","w":1208,"k":{"\u00fc":61,"\u00f6":68,"\u00e4":68,"\u00d6":41,"\u00c4":123,"z":61,"x":61,"u":61,"r":61,"p":61,"o":68,"n":61,"m":61,"e":68,"c":68,"a":68,"S":20,"Q":41,"O":41,"J":258,"G":41,"C":41,"A":123}},"G":{"d":"657,-242v178,1,288,-129,269,-331r-269,0r0,-238r551,0r0,213v0,213,-39,338,-139,444v-205,220,-599,223,-805,7v-141,-148,-143,-279,-143,-582v0,-303,1,-436,143,-582v105,-108,238,-159,393,-159v332,0,510,213,549,466r-286,0v-35,-141,-121,-213,-263,-213v-75,0,-139,26,-182,78v-55,67,-69,121,-69,410v0,287,12,344,69,412v43,51,105,75,182,75","w":1304,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":68,"A":20}},"H":{"d":"1233,0r-285,0r0,-610r-493,0r0,610r-285,0r0,-1458r285,0r0,596r493,0r0,-596r285,0r0,1458","w":1402},"I":{"d":"455,0r-285,0r0,-1458r285,0r0,1458","w":624},"J":{"d":"895,-479v0,321,-244,491,-514,491v-158,0,-266,-41,-375,-149r189,-187v47,48,92,82,186,82v139,0,229,-82,229,-250r0,-966r285,0r0,979","w":1046,"k":{"\u00c4":20,"A":20}},"K":{"d":"1350,0r-332,0r-375,-664r-188,226r0,438r-285,0r0,-1458r285,0r0,635r514,-635r346,0r-484,579","w":1361,"k":{"\u00d6":20,"y":74,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"L":{"d":"1116,0r-946,0r0,-1458r285,0r0,1204r661,0r0,254","w":1177,"k":{"\u00dc":25,"\u00d6":53,"y":123,"Y":164,"W":82,"V":143,"U":25,"T":164,"Q":53,"O":53,"J":-8,"G":53,"C":53}},"M":{"d":"1491,0r-285,0r0,-850r-278,553r-193,0r-280,-553r0,850r-285,0r0,-1458r281,0r380,788r379,-788r281,0r0,1458","w":1660},"N":{"d":"1286,0r-254,0r-577,-895r0,895r-285,0r0,-1458r254,0r577,893r0,-893r285,0r0,1458","w":1456},"O":{"d":"1198,-729v0,252,2,434,-145,582v-103,102,-228,159,-394,159v-165,0,-292,-57,-395,-159v-147,-148,-143,-330,-143,-582v0,-252,-4,-434,143,-582v103,-102,230,-159,395,-159v166,0,291,57,394,159v147,148,145,330,145,582xm913,-729v0,-281,-19,-345,-71,-410v-79,-99,-288,-99,-367,0v-52,65,-69,129,-69,410v0,280,17,346,69,410v79,98,289,98,367,0v52,-65,71,-130,71,-410","w":1318,"k":{"\u00c4":20,"Y":20,"X":20,"W":20,"V":20,"T":41,"J":68,"A":20}},"P":{"d":"1217,-1004v0,248,-181,455,-482,455r-280,0r0,549r-285,0r0,-1458r565,0v301,0,482,207,482,454xm932,-1004v0,-118,-82,-200,-211,-200r-266,0r0,399r266,0v129,0,211,-80,211,-199","w":1286,"k":{"\u00f6":20,"\u00e4":20,"\u00c4":102,"s":20,"q":20,"o":20,"g":20,"e":20,"d":20,"c":20,"a":20,"J":246,"A":102}},"Q":{"d":"1233,-88r-150,149r-129,-129v-82,54,-180,80,-295,80v-165,0,-292,-57,-395,-159v-147,-148,-143,-330,-143,-582v0,-252,-4,-434,143,-582v103,-102,230,-159,395,-159v166,0,291,57,394,159v147,148,145,330,145,582v0,219,2,381,-90,516xm913,-729v0,-281,-19,-345,-71,-410v-79,-99,-288,-99,-367,0v-52,65,-69,129,-69,410v0,280,15,347,69,410v56,66,189,106,279,51r-127,-125r151,-150r109,109v22,-64,26,-148,26,-295","w":1316},"R":{"d":"1274,0r-330,0r-285,-582r-204,0r0,582r-285,0r0,-1458r571,0v297,0,473,203,473,446v0,205,-124,332,-266,383xm930,-1012v0,-112,-82,-192,-207,-192r-268,0r0,385r268,0v125,0,207,-80,207,-193","w":1339,"k":{"J":18}},"S":{"d":"1112,-430v0,283,-235,442,-541,442v-221,0,-389,-47,-532,-192r184,-185v92,93,217,123,352,123v168,0,259,-63,259,-180v0,-112,-56,-159,-175,-174v-175,-23,-367,-48,-458,-145v-68,-72,-105,-164,-105,-287v0,-260,193,-442,508,-442v201,0,346,49,471,170r-180,178v-92,-88,-203,-101,-299,-101v-152,0,-225,84,-225,185v0,95,77,146,178,161r172,25v262,31,391,162,391,422","w":1210,"k":{"Y":41,"S":12,"J":41}},"T":{"d":"1108,-1204r-381,0r0,1204r-285,0r0,-1204r-381,0r0,-254r1047,0r0,254","w":1169,"k":{"\u00fc":80,"\u00f6":135,"\u00e4":135,"\u00d6":41,"\u00c4":123,"z":80,"y":80,"x":80,"w":80,"v":80,"u":80,"s":135,"r":80,"q":135,"p":80,"o":135,"n":80,"m":80,"g":135,"e":135,"d":135,"c":135,"a":135,"Q":41,"O":41,"J":176,"G":41,"C":41,"A":123}},"U":{"d":"1221,-500v0,310,-238,512,-537,512v-299,0,-537,-202,-537,-512r0,-958r285,0r0,948v0,168,98,268,252,268v154,0,254,-100,254,-268r0,-948r283,0r0,958","w":1368,"k":{"J":25}},"V":{"d":"1184,-1458r-484,1458r-213,0r-481,-1458r295,0r293,950r293,-950r297,0","w":1189,"k":{"\u00fc":41,"\u00f6":82,"\u00e4":82,"\u00d6":20,"\u00c4":72,"z":41,"y":20,"x":41,"u":41,"s":82,"r":41,"q":82,"p":41,"o":82,"n":41,"m":41,"g":82,"e":82,"d":82,"c":82,"a":82,"Q":20,"O":20,"G":20,"C":20,"A":72}},"W":{"d":"1804,-1458r-391,1458r-237,0r-269,-885r-268,885r-238,0r-389,-1458r297,0r226,919r266,-919r213,0r266,919r227,-919r297,0","w":1816,"k":{"\u00f6":82,"\u00e4":82,"\u00d6":20,"\u00c4":33,"s":82,"q":82,"o":82,"g":82,"e":82,"d":82,"c":82,"a":82,"Q":20,"O":20,"G":20,"C":20,"A":33}},"X":{"d":"1225,0r-326,0r-283,-508r-280,508r-326,0r453,-748r-424,-710r323,0r254,471r256,-471r322,0r-424,710","w":1234,"k":{"\u00d6":20,"y":66,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"Y":{"d":"1165,-1458r-438,860r0,598r-283,0r0,-598r-438,-860r309,0r273,588r268,-588r309,0","w":1171,"k":{"\u00fc":82,"\u00f6":164,"\u00e4":164,"\u00d6":20,"\u00c4":82,"z":82,"x":82,"u":82,"s":164,"r":82,"q":164,"p":82,"o":164,"n":82,"m":82,"g":164,"e":164,"d":164,"c":164,"a":164,"Q":20,"O":20,"J":82,"G":20,"C":20,"A":82}},"Z":{"d":"1040,0r-958,0r0,-229r623,-975r-596,0r0,-254r931,0r0,225r-624,979r624,0r0,254","w":1122},"[":{"d":"690,152r-526,0r0,-1762r526,0r0,240r-260,0r0,1282r260,0r0,240","w":774},"\\":{"d":"825,152r-250,0r-575,-1735r250,0","w":825},"]":{"d":"612,152r-526,0r0,-238r260,0r0,-1286r-260,0r0,-238r526,0r0,1762","w":774},"^":{"d":"1104,-797r-279,0r-209,-385r-208,385r-279,0r365,-676r245,0","w":1232},"_":{"d":"1233,365r-1233,0r0,-179r1233,0r0,179","w":1232},"`":{"d":"625,-1237r-179,0r-233,-348r281,0","w":1024},"a":{"d":"434,10v-224,0,-360,-125,-360,-334v0,-170,116,-309,364,-309r252,0v9,-150,-34,-221,-198,-221v-103,0,-150,25,-205,88r-170,-166v104,-115,207,-147,385,-147v299,0,454,127,454,377r0,702r-260,0r0,-92v-71,72,-139,102,-262,102xm483,-207v126,0,215,-43,207,-186r0,-58r-211,0v-96,0,-149,45,-149,121v0,74,49,123,153,123","w":1093},"b":{"d":"1042,-535v0,160,-2,345,-108,451v-60,59,-156,96,-260,96v-113,0,-193,-30,-266,-112r0,100r-258,0r0,-1458r266,0r0,485v117,-150,396,-131,518,-10v107,105,108,289,108,448xm776,-535v0,-174,-20,-305,-180,-305v-160,0,-180,131,-180,305v0,175,20,308,180,308v160,0,180,-133,180,-308","w":1146},"c":{"d":"362,-535v0,187,57,308,211,308v70,0,117,-25,172,-84r181,178v-95,98,-205,145,-353,145v-213,0,-477,-114,-477,-547v0,-432,264,-544,477,-544v148,0,258,45,353,143r-181,180v-55,-59,-102,-84,-172,-84v-152,0,-211,121,-211,305","w":983,"k":{"\u00f6":37,"\u00e4":8,"w":41,"o":37,"e":37,"d":20,"c":37,"a":8}},"d":{"d":"999,0r-260,0r0,-100v-73,82,-151,112,-264,112v-104,0,-203,-37,-262,-96v-107,-106,-109,-291,-109,-451v0,-159,2,-342,109,-448v121,-121,404,-139,520,10r0,-485r266,0r0,1458xm733,-535v0,-174,-22,-305,-182,-305v-160,0,-180,131,-180,305v0,175,20,308,180,308v160,0,182,-133,182,-308","w":1148},"e":{"d":"1026,-451r-668,0v0,138,84,238,234,238v117,0,174,-33,242,-100r161,157v-108,109,-213,168,-405,168v-252,0,-494,-114,-494,-547v0,-348,189,-544,465,-544v297,0,465,217,465,510r0,118xm764,-633v-5,-131,-69,-225,-203,-225v-134,0,-197,95,-203,225r406,0","w":1122,"k":{"y":20,"x":12,"w":16,"v":20}},"f":{"d":"645,-834r-196,0r0,834r-267,0r0,-834r-110,0r0,-202r110,0r0,-133v0,-152,94,-306,312,-306r151,0r0,226r-104,0v-64,0,-92,35,-92,96r0,117r196,0r0,202","w":700,"k":{"\u00f6":33,"\u00e4":33,"o":33,"e":33,"c":33,"a":33}},"g":{"d":"987,-39v0,256,-182,442,-469,442v-164,0,-276,-32,-387,-139r166,-168v59,58,119,82,209,82v205,0,225,-146,215,-330v-117,149,-387,134,-508,13v-101,-100,-109,-238,-109,-424v0,-187,9,-322,109,-422v59,-59,152,-94,256,-94v113,0,186,30,260,112r0,-100r258,0r0,1028xm721,-563v0,-142,-19,-277,-176,-277v-158,0,-174,135,-174,277v0,141,16,278,174,278v157,0,176,-137,176,-278","w":1136},"h":{"d":"1028,0r-266,0r0,-651v0,-142,-90,-189,-174,-189v-84,0,-172,49,-172,189r0,651r-266,0r0,-1458r266,0r0,489v71,-73,162,-110,256,-110v233,0,356,164,356,389r0,690","w":1165},"i":{"d":"416,0r-266,0r0,-1067r266,0r0,1067xm418,-1249r-273,0r0,-217r273,0r0,217","w":563},"j":{"d":"416,94v0,152,-92,305,-312,305r-151,0r0,-225r102,0v68,0,95,-33,95,-96r0,-1145r266,0r0,1161xm418,-1249r-273,0r0,-217r273,0r0,217","w":563},"k":{"d":"1120,0r-329,0r-263,-444r-112,127r0,317r-266,0r0,-1458r266,0r0,827r354,-436r322,0r-381,430","w":1144,"k":{"\u00f6":14,"q":14,"o":14,"g":14,"e":14,"d":14,"c":14}},"l":{"d":"602,0r-151,0v-220,0,-312,-154,-312,-305r0,-1153r267,0r0,1136v0,64,26,97,94,97r102,0r0,225","w":665,"k":{"\u00f6":41,"y":68,"w":41,"v":82,"o":41,"e":51,"c":51}},"m":{"d":"1657,0r-266,0r0,-645v0,-146,-93,-195,-177,-195v-81,0,-178,49,-178,189r0,651r-266,0r0,-645v0,-146,-92,-195,-176,-195v-84,0,-178,49,-178,195r0,645r-266,0r0,-1067r260,0r0,98v144,-151,430,-149,548,25v91,-94,187,-135,320,-135v106,0,203,35,262,94v86,86,117,186,117,303r0,682","w":1794},"n":{"d":"676,-1079v230,0,360,185,360,397r0,682r-266,0r0,-645v0,-146,-92,-195,-176,-195v-84,0,-178,49,-178,195r0,645r-266,0r0,-1067r260,0r0,98v69,-73,168,-110,266,-110","w":1173},"o":{"d":"1008,-535v0,195,-25,316,-121,416v-66,70,-174,131,-332,131v-158,0,-264,-61,-330,-131v-96,-100,-121,-221,-121,-416v0,-192,25,-313,121,-413v66,-70,172,-131,330,-131v158,0,266,61,332,131v96,100,121,221,121,413xm555,-227v159,0,186,-140,186,-308v0,-167,-28,-305,-186,-305v-156,0,-184,139,-184,305v0,167,26,308,184,308","k":{"y":20,"x":41,"w":16,"v":20}},"p":{"d":"1042,-535v0,160,-2,345,-108,451v-122,121,-403,140,-518,-10r0,485r-266,0r0,-1458r258,0r0,100v73,-82,153,-112,266,-112v104,0,200,37,260,96v106,106,108,289,108,448xm776,-535v0,-174,-20,-305,-180,-305v-160,0,-180,131,-180,305v0,175,20,308,180,308v160,0,180,-133,180,-308","w":1146},"q":{"d":"999,391r-266,0r0,-485v-117,150,-398,131,-520,10v-107,-106,-109,-291,-109,-451v0,-159,2,-342,109,-448v59,-59,158,-96,262,-96v113,0,191,30,264,112r0,-100r260,0r0,1458xm733,-535v0,-174,-22,-305,-182,-305v-160,0,-180,131,-180,305v0,175,20,308,180,308v160,0,182,-133,182,-308","w":1148},"r":{"d":"930,-979r-201,203v-103,-116,-313,-75,-313,133r0,643r-266,0r0,-1067r260,0r0,102v51,-61,153,-114,268,-114v104,0,178,26,252,100","w":931,"k":{"\u00f6":63,"\u00e4":20,"s":20,"q":63,"o":63,"g":63,"e":63,"d":63,"c":63,"a":20,".":123,",":123}},"s":{"d":"952,-336v0,236,-200,348,-452,348v-168,0,-320,-18,-455,-153r174,-174v88,88,203,100,285,100v92,0,188,-31,188,-111v0,-53,-28,-90,-112,-98r-168,-16v-193,-19,-312,-103,-312,-299v0,-222,195,-340,412,-340v166,0,305,28,408,125r-164,166v-62,-56,-156,-72,-248,-72v-107,0,-152,49,-152,102v0,39,17,84,111,92r168,17v211,20,317,133,317,313","w":1026,"k":{"v":20,"t":20,"s":12}},"t":{"d":"629,0r-146,0v-217,0,-309,-154,-309,-305r0,-529r-113,0r0,-202r113,0r0,-316r266,0r0,316r189,0r0,202r-189,0r0,512v0,62,29,97,92,97r97,0r0,225","w":720,"k":{"\u00f6":6,"\u00e4":6,"o":6,"e":6,"c":6,"a":6}},"u":{"d":"498,12v-232,0,-361,-186,-361,-397r0,-682r266,0r0,645v0,146,93,195,177,195v84,0,178,-49,178,-195r0,-645r266,0r0,1067r-260,0r0,-98v-70,73,-168,110,-266,110","w":1173},"v":{"d":"1001,-1067r-391,1067r-209,0r-393,-1067r281,0r217,659r215,-659r280,0","w":1009,"k":{"\u00f6":20,"\u00e4":20,"s":20,"o":20,"e":20,"c":20,"a":20}},"w":{"d":"1546,-1067r-325,1067r-220,0r-223,-670r-223,670r-219,0r-328,-1067r283,0r172,659r217,-659r194,0r220,659r172,-659r280,0","w":1554,"k":{"\u00f6":16,"o":16,"e":16,"c":16}},"x":{"d":"1055,0r-320,0r-196,-319r-195,319r-319,0r368,-545r-354,-522r319,0r181,305r182,-305r319,0r-354,522","w":1079,"k":{"\u00f6":41,"o":41,"e":41,"c":41}},"y":{"d":"1004,-1067r-457,1239v-42,137,-153,223,-309,219r-105,0r0,-239v108,2,161,2,195,-97r45,-131r-365,-991r281,0r221,659r213,-659r281,0","w":1011,"k":{"\u00f6":20,"\u00e4":20,"o":20,"e":20,"c":20,"a":20,",":123}},"z":{"d":"889,0r-813,0r0,-203r473,-624r-447,0r0,-240r787,0r0,203r-479,624r479,0r0,240","w":978},"{":{"d":"590,-248v4,128,23,159,149,160r109,0r0,240r-209,0v-210,5,-315,-120,-315,-304r0,-297v0,-110,-40,-156,-142,-161r-94,0r0,-238r94,0v103,-5,142,-51,142,-162r0,-297v3,-183,106,-303,315,-303r209,0r0,240r-109,0v-127,0,-149,32,-149,160r0,276v0,148,-88,184,-141,205v53,20,141,57,141,205r0,276","w":935},"|":{"d":"492,152r-267,0r0,-1762r267,0r0,1762","w":716},"}":{"d":"612,-1010v0,111,39,157,142,162r94,0r0,238r-94,0v-102,5,-142,51,-142,161r0,297v-2,184,-107,304,-315,304r-209,0r0,-240r109,0v127,0,149,-32,149,-160r0,-276v0,-148,88,-185,141,-205v-53,-21,-141,-57,-141,-205r0,-276v-4,-128,-23,-159,-149,-160r-109,0r0,-240r209,0v208,-5,315,120,315,303r0,297","w":935},"~":{"d":"1165,-575v-188,196,-344,226,-577,106v-60,-31,-109,-49,-168,-49v-55,0,-101,10,-176,86r-168,-168v127,-127,211,-176,336,-176v84,0,151,22,239,69v60,31,107,50,166,50v55,0,103,-11,178,-86","w":1241},"\u00a7":{"d":"969,-561v0,151,-109,262,-185,305v90,45,166,127,166,285v0,252,-202,374,-405,374v-199,0,-404,-104,-408,-364r256,0v4,76,60,129,152,129v94,0,149,-53,149,-131v0,-55,-32,-115,-143,-152r-127,-43v-197,-65,-299,-168,-299,-385v0,-151,106,-262,186,-305v-86,-45,-155,-119,-155,-268v0,-184,127,-354,393,-354v268,0,391,155,393,352r-250,0v-4,-90,-63,-125,-143,-125v-94,0,-143,51,-143,121v0,63,49,106,137,135r127,41v196,63,299,170,299,385xm713,-551v0,-70,-25,-109,-51,-139v-48,-54,-184,-53,-232,0v-27,30,-49,67,-49,139v0,74,27,111,49,137v46,53,186,54,232,0v22,-26,51,-63,51,-137","w":1087},"\u00c4":{"d":"1296,0r-297,0r-86,-258r-518,0r-88,258r-297,0r531,-1458r223,0xm838,-498r-179,-530r-184,530r363,0xm993,-1604r-227,0r0,-256r227,0r0,256xm541,-1604r-228,0r0,-256r228,0r0,256","w":1306,"k":{"y":51,"w":8,"v":51,"Y":72,"W":55,"V":72,"T":123,"Q":20,"O":20,"J":-8,"G":20,"C":20}},"\u00d6":{"d":"1198,-729v0,252,2,434,-145,582v-103,102,-228,159,-394,159v-165,0,-292,-57,-395,-159v-147,-148,-143,-330,-143,-582v0,-252,-4,-434,143,-582v103,-102,230,-159,395,-159v166,0,291,57,394,159v147,148,145,330,145,582xm913,-729v0,-281,-19,-345,-71,-410v-79,-99,-288,-99,-367,0v-52,65,-69,129,-69,410v0,280,17,346,69,410v79,98,289,98,367,0v52,-65,71,-130,71,-410xm999,-1604r-227,0r0,-256r227,0r0,256xm547,-1604r-228,0r0,-256r228,0r0,256","w":1318,"k":{"Y":20,"X":20,"W":20,"V":20,"T":41,"J":68,"A":20}},"\u00dc":{"d":"1221,-500v0,310,-238,512,-537,512v-299,0,-537,-202,-537,-512r0,-958r285,0r0,948v0,168,98,268,252,268v154,0,254,-100,254,-268r0,-948r283,0r0,958xm1024,-1604r-227,0r0,-256r227,0r0,256xm571,-1604r-227,0r0,-256r227,0r0,256","w":1368,"k":{"J":25}},"\u00df":{"d":"788,-1104v0,-96,-76,-136,-182,-135v-143,0,-190,72,-190,192r0,1047r-266,0r0,-1067v0,-285,196,-403,460,-403v258,0,445,110,445,358v0,125,-62,192,-125,231v76,39,127,95,127,224r0,327v-1,218,-116,331,-342,330r-107,0r0,-225v109,8,180,-22,180,-127r0,-295v3,-107,-71,-132,-180,-125r0,-209v104,7,180,-13,180,-123","w":1175},"\u00e4":{"d":"434,10v-224,0,-360,-125,-360,-334v0,-170,116,-309,364,-309r252,0v9,-150,-34,-221,-198,-221v-103,0,-150,25,-205,88r-170,-166v104,-115,207,-147,385,-147v299,0,454,127,454,377r0,702r-260,0r0,-92v-71,72,-139,102,-262,102xm483,-207v126,0,215,-43,207,-186r0,-58r-211,0v-96,0,-149,45,-149,121v0,74,49,123,153,123xm877,-1241r-228,0r0,-256r228,0r0,256xm424,-1241r-227,0r0,-256r227,0r0,256","w":1093},"\u00f6":{"d":"1008,-535v0,195,-25,316,-121,416v-66,70,-174,131,-332,131v-158,0,-264,-61,-330,-131v-96,-100,-121,-221,-121,-416v0,-192,25,-313,121,-413v66,-70,172,-131,330,-131v158,0,266,61,332,131v96,100,121,221,121,413xm555,-227v159,0,186,-140,186,-308v0,-167,-28,-305,-186,-305v-156,0,-184,139,-184,305v0,167,26,308,184,308xm897,-1241r-227,0r0,-256r227,0r0,256xm444,-1241r-227,0r0,-256r227,0r0,256","k":{"y":20,"x":41,"w":16,"v":20}},"\u00fc":{"d":"498,12v-232,0,-361,-186,-361,-397r0,-682r266,0r0,645v0,146,93,195,177,195v84,0,178,-49,178,-195r0,-645r266,0r0,1067r-260,0r0,-98v-70,73,-168,110,-266,110xm922,-1241r-228,0r0,-256r228,0r0,256xm469,-1241r-227,0r0,-256r227,0r0,256","w":1173},"\u20ac":{"d":"1294,-449v-51,306,-264,461,-534,461v-160,0,-289,-55,-393,-159v-95,-95,-125,-201,-138,-338r-149,0r0,-170r141,0r0,-154r-141,0r0,-170r149,0v13,-135,45,-240,138,-332v104,-104,233,-159,393,-159v272,0,483,155,534,460r-288,0v-29,-116,-105,-207,-246,-207v-78,0,-139,31,-180,76v-35,39,-52,80,-60,162r303,0r0,170r-315,0r0,154r315,0r0,170r-305,0v8,88,27,129,62,168v41,45,102,75,180,75v141,0,219,-90,248,-207r286,0","w":1400},"\u00a0":{"w":475}}});;Cufon.replace('#MainNavigation a',{hover:true,fontFamily:'medium'});Cufon.replace('#SubNavigation a',{hover:true,fontFamily:'medium'});Cufon.replace('h1',{hover:true,fontFamily:'medium'});Cufon.replace('h2',{hover:true,fontFamily:'regular'});Cufon.replace('h3',{hover:true,fontFamily:'regular'});Cufon.replace('.featureContent strong',{fontFamily:'regular'});Cufon.replace('.featureContent em',{fontFamily:'regular'});