(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();});});;jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});;;(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);;$(document).ready(function(){$("body").addClass("js");$("a[@href^=http]").not("[@href*='test.ehrlich-werben.com']").attr('target','_blank');$("a[@href^=http]").not("[@href*='www.ehrlich-werben.com']").attr('target','_blank');$('#ProjectNavigation .link').hover(function(){$(this).find('img').css('opacity',1);},function(){$(this).find('img').css('opacity',0.5);});$('#ProjectHeader').append('<div id="CyclePager"></div>');$('#Cycle').cycle({fx:'fade',speed:'800',timeout:4000,pause:0,pager:'#CyclePager',next:'#Cycle'});$("#CyclePager a").wrapInner("<span></span>");});;var Cufon=(function(){var M=function(){return M.replace.apply(null,arguments)};var X=M.DOM={ready:(function(){var c=false,e={loaded:1,complete:1};var b=[],d=function(){if(c){return}c=true;for(var f;f=b.shift();f()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",d,false);window.addEventListener("pageshow",d,false)}if(!window.opera&&document.readyState){(function(){e[document.readyState]?d():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");d()}catch(f){setTimeout(arguments.callee,1)}})()}Q(window,"load",d);return function(f){if(!arguments.length){d()}else{c?f():b.push(f)}}})(),root:function(){return document.documentElement||document.body}};var N=M.CSS={Size:function(c,b){this.value=parseFloat(c);this.unit=String(c).match(/[a-z%]*$/)[0]||"px";this.convert=function(d){return d/b*this.value};this.convertFrom=function(d){return d/this.value*b};this.toString=function(){return this.value+this.unit}},addClass:function(c,b){c.className=(c.className&&" ")+b;return c},color:J(function(c){var b={};b.color=c.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(e,d,f){b.opacity=parseFloat(f);return"rgb("+d+")"});return b}),fontStretch:J(function(b){if(typeof b=="number"){return b}if(/%$/.test(b)){return parseFloat(b)/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}[b]||1}),getStyle:function(c){var b=document.defaultView;if(b&&b.getComputedStyle){return new A(b.getComputedStyle(c,null))}if(c.currentStyle){return new A(c.currentStyle)}return new A(c.style)},gradient:J(function(f){var g={id:f,type:f.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},c=f.substr(f.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var e=0,b=c.length,d;e<b;++e){d=c[e].split("=",2).reverse();g.stops.push([d[1]||e/(b-1),d[0]])}return g}),quotedList:J(function(e){var d=[],c=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,b;while(b=c.exec(e)){d.push(b[3]||b[1])}return d}),recognizesMedia:J(function(h){var f=document.createElement("style"),d,c,b;f.type="text/css";f.media=h;try{f.appendChild(document.createTextNode("/**/"))}catch(g){}c=G("head")[0];c.insertBefore(f,c.firstChild);d=(f.sheet||f.styleSheet);b=d&&!d.disabled;c.removeChild(f);return b}),removeClass:function(d,c){var b=RegExp("(?:^|\\s+)"+c+"(?=\\s|$)","g");d.className=d.className.replace(b,"");return d},supports:function(d,c){var b=document.createElement("span").style;if(b[d]===undefined){return false}b[d]=c;return b[d]===c},textAlign:function(e,d,b,c){if(d.get("textAlign")=="right"){if(b>0){e=" "+e}}else{if(b<c-1){e+=" "}}return e},textDecoration:function(g,f){if(!f){f=this.getStyle(g)}var c={underline:null,overline:null,"line-through":null};for(var b=g;b.parentNode&&b.parentNode.nodeType==1;){var e=true;for(var d in c){if(!K(c,d)||c[d]){continue}if(f.get("textDecoration").indexOf(d)!=-1){c[d]=f.get("color")}e=false}if(e){break}f=this.getStyle(b=b.parentNode)}return c},textShadow:J(function(f){if(f=="none"){return null}var e=[],g={},b,c=0;var d=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(b=d.exec(f)){if(b[0]==","){e.push(g);g={};c=0}else{if(b[1]){g.color=b[1]}else{g[["offX","offY","blur"][c++]]=b[2]}}}e.push(g);return e}),textTransform:function(c,b){return c[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[b.get("textTransform")]||"toString"]()},whiteSpace:(function(){var b={inline:1,"inline-block":1,"run-in":1};return function(e,c,d){if(b[c.get("display")]){return e}if(!d.previousSibling){e=e.replace(/^\s+/,"")}if(!d.nextSibling){e=e.replace(/\s+$/,"")}return e}})()};N.ready=(function(){var b=!N.recognizesMedia("all"),e=false;var d=[],h=function(){b=true;for(var k;k=d.shift();k()){}};var i=G("link"),j=G("style");function c(k){return k.disabled||g(k.sheet,k.media||"screen")}function g(n,q){if(!N.recognizesMedia(q||"all")){return true}if(!n||n.disabled){return false}try{var r=n.cssRules,p;if(r){search:for(var m=0,k=r.length;p=r[m],m<k;++m){switch(p.type){case 2:break;case 3:if(!g(p.styleSheet,p.media.mediaText)){return false}break;default:break search}}}}catch(o){}return true}function f(){if(document.createStyleSheet){return true}var l,k;for(k=0;l=i[k];++k){if(l.rel.toLowerCase()=="stylesheet"&&!c(l)){return false}}for(k=0;l=j[k];++k){if(!c(l)){return false}}return true}X.ready(function(){if(!e){e=N.getStyle(document.body).isUsable()}if(b||(e&&f())){h()}else{setTimeout(arguments.callee,10)}});return function(k){if(b){k()}else{d.push(k)}}})();function S(c){var b=this.face=c.face;this.glyphs=c.glyphs;this.w=c.w;this.baseSize=parseInt(b["units-per-em"],10);this.family=b["font-family"].toLowerCase();this.weight=b["font-weight"];this.style=b["font-style"]||"normal";this.viewBox=(function(){var e=b.bbox.split(/\s+/);var d={minX:parseInt(e[0],10),minY:parseInt(e[1],10),maxX:parseInt(e[2],10),maxY:parseInt(e[3],10)};d.width=d.maxX-d.minX;d.height=d.maxY-d.minY;d.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return d})();this.ascent=-parseInt(b.ascent,10);this.descent=-parseInt(b.descent,10);this.height=-this.ascent+this.descent}function F(){var c={},b={oblique:"italic",italic:"oblique"};this.add=function(d){(c[d.style]||(c[d.style]={}))[d.weight]=d};this.get=function(h,i){var g=c[h]||c[b[h]]||c.normal||c.italic||c.oblique;if(!g){return null}i={normal:400,bold:700}[i]||parseInt(i,10);if(g[i]){return g[i]}var e={1:1,99:0}[i%100],k=[],f,d;if(e===undefined){e=i>400}if(i==500){i=400}for(var j in g){if(!K(g,j)){continue}j=parseInt(j,10);if(!f||j<f){f=j}if(!d||j>d){d=j}k.push(j)}if(i<f){i=f}if(i>d){i=d}k.sort(function(m,l){return(e?(m>i&&l>i)?m<l:m>l:(m<i&&l<i)?m>l:m<l)?-1:1});return g[k[0]]}}function R(){function d(f,g){if(f.contains){return f.contains(g)}return f.compareDocumentPosition(g)&16}function b(g){var f=g.relatedTarget;if(!f||d(this,f)){return}c(this)}function e(f){c(this)}function c(f){setTimeout(function(){M.replace(f,D.get(f).options,true)},10)}this.attach=function(f){if(f.onmouseenter===undefined){Q(f,"mouseover",b);Q(f,"mouseout",b)}else{Q(f,"mouseenter",e);Q(f,"mouseleave",e)}}}function U(){var c=[],d={};function b(h){var e=[],g;for(var f=0;g=h[f];++f){e[f]=c[d[g]]}return e}this.add=function(f,e){d[f]=c.push(e)-1};this.repeat=function(){var e=arguments.length?b(arguments):c,f;for(var g=0;f=e[g++];){M.replace(f[0],f[1],true)}}}function a(){var d={},b=0;function c(e){return e.cufid||(e.cufid=++b)}this.get=function(e){var f=c(e);return d[f]||(d[f]={})}}function A(b){var d={},c={};this.extend=function(e){for(var f in e){if(K(e,f)){d[f]=e[f]}}return this};this.get=function(e){return d[e]!=undefined?d[e]:b[e]};this.getSize=function(f,e){return c[f]||(c[f]=new N.Size(this.get(f),e))};this.isUsable=function(){return!!b}}function Q(c,b,d){if(c.addEventListener){c.addEventListener(b,d,false)}else{if(c.attachEvent){c.attachEvent("on"+b,function(){return d.call(c,window.event)})}}}function V(c,b){var d=D.get(c);if(d.options){return c}if(b.hover&&b.hoverables[c.nodeName.toLowerCase()]){B.attach(c)}d.options=b;return c}function J(b){var c={};return function(d){if(!K(c,d)){c[d]=b.apply(null,arguments)}return c[d]}}function C(g,f){if(!f){f=N.getStyle(g)}var c=N.quotedList(f.get("fontFamily").toLowerCase()),e;for(var d=0,b=c.length;d<b;++d){e=c[d];if(I[e]){return I[e].get(f.get("fontStyle"),f.get("fontWeight"))}}return null}function G(b){return document.getElementsByTagName(b)}function K(c,b){return c.hasOwnProperty(b)}function H(){var b={},d,f;for(var e=0,c=arguments.length;d=arguments[e],e<c;++e){for(f in d){if(K(d,f)){b[f]=d[f]}}}return b}function O(e,o,c,p,f,d){var n=p.separate;if(n=="none"){return Z[p.engine].apply(null,arguments)}var m=document.createDocumentFragment(),h;var j=o.split(P[n]),b=(n=="words");if(b&&T){if(/^\s/.test(o)){j.unshift("")}if(/\s$/.test(o)){j.push("")}}for(var k=0,g=j.length;k<g;++k){h=Z[p.engine](e,b?N.textAlign(j[k],c,k,g):j[k],c,p,f,d,k<g-1);if(h){m.appendChild(h)}}return m}function L(c,k){var d,b,e,h,g,j;for(e=V(c,k).firstChild;e;e=g){h=e.nodeType;g=e.nextSibling;j=false;if(h==1){if(!e.firstChild){continue}if(!/cufon/.test(e.className)){arguments.callee(e,k);continue}else{j=true}}else{if(h!=3){continue}}if(!b){b=N.getStyle(c).extend(k)}if(!d){d=C(c,b)}if(!d){continue}if(j){Z[k.engine](d,null,b,k,e,c);continue}var i=N.whiteSpace(e.data,b,e);if(i===""){continue}var f=O(d,i,b,k,e,c);if(f){e.parentNode.replaceChild(f,e)}else{e.parentNode.removeChild(e)}}}var T=" ".split(/\s+/).length==0;var D=new a();var B=new R();var Y=new U();var E=false;var Z={},I={},W={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(b){return jQuery(b)})||(window.dojo&&dojo.query)||(window.$$&&function(b){return $$(b)})||(window.$&&function(b){return $(b)})||(document.querySelectorAll&&function(b){return document.querySelectorAll(b)})||(window.Ext&&Ext.query)||G),separate:"words",textShadow:"none"};var P={words:/[^\S\u00a0]+/,characters:""};M.now=function(){X.ready();return M};M.refresh=function(){Y.repeat.apply(Y,arguments);return M};M.registerEngine=function(c,b){if(!b){return M}Z[c]=b;return M.set("engine",c)};M.registerFont=function(d){var b=new S(d),c=b.family;if(!I[c]){I[c]=new F()}I[c].add(b);return M.set("fontFamily",'"'+c+'"')};M.replace=function(d,c,b){c=H(W,c);if(!c.engine){return M}if(!E){N.addClass(X.root(),"cufon-active cufon-loading");N.ready(function(){N.removeClass(X.root(),"cufon-loading")});E=true}if(c.hover){c.forceHitArea=true}if(typeof c.textShadow=="string"){c.textShadow=N.textShadow(c.textShadow)}if(typeof c.color=="string"&&/^-/.test(c.color)){c.textGradient=N.gradient(c.color)}if(!b){Y.add(d,arguments)}if(d.nodeType||typeof d=="string"){d=[d]}N.ready(function(){for(var f=0,e=d.length;f<e;++f){var g=d[f];if(typeof g=="string"){M.replace(c.selector(g),c,true)}else{L(g,c)}}});return M};M.set=function(b,c){W[b]=c;return M};return M})();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(AH,a,z,W,e,AI){var I=(a===null);if(I){a=e.alt}var c=AH.viewBox;var K=z.getSize("fontSize",AH.baseSize);var v=z.get("letterSpacing");v=(v=="normal")?0:K.convertFrom(parseInt(v,10));var d=0,w=0,u=0,Y=0;var b=W.textShadow,s=[];if(b){for(var AG=b.length;AG--;){var m=b[AG];var r=K.convertFrom(parseFloat(m.offX));var p=K.convertFrom(parseFloat(m.offY));s[AG]=[r,p];if(p<d){d=p}if(r>w){w=r}if(p>u){u=p}if(r<Y){Y=r}}}var AL=Cufon.CSS.textTransform(a,z).split(""),U;var J=AH.glyphs,X,M,AC;var G=0,Q,h=[];for(var AG=0,AE=0,AB=AL.length;AG<AB;++AG){X=J[U=AL[AG]]||AH.missingGlyph;if(!X){continue}if(M){G-=AC=M[U]||0;h[AE-1]-=AC}G+=Q=h[AE++]=~~(X.w||AH.w)+v;M=X.k}if(Q===undefined){return null}w+=c.width-Q;Y+=c.minX;var V,L;if(I){V=e;L=e.firstChild}else{V=document.createElement("span");V.className="cufon cufon-canvas";V.alt=a;L=document.createElement("canvas");V.appendChild(L);if(W.printable){var AD=document.createElement("span");AD.className="cufon-alt";AD.appendChild(document.createTextNode(a));V.appendChild(AD)}}var AM=V.style;var o=L.style;var H=K.convert(c.height);var AK=Math.ceil(H);var t=AK/H;var n=t*Cufon.CSS.fontStretch(z.get("fontStretch"));var q=G*n;var AA=Math.ceil(K.convert(q+w-Y));var O=Math.ceil(K.convert(c.height-d+u));L.width=AA;L.height=O;o.width=AA+"px";o.height=O+"px";d+=c.minY;o.top=Math.round(K.convert(d-AH.ascent))+"px";o.left=Math.round(K.convert(Y))+"px";var T=Math.ceil(K.convert(q))+"px";if(A){AM.width=T;AM.height=K.convert(AH.height)+"px"}else{AM.paddingLeft=T;AM.paddingBottom=(K.convert(AH.height)-1)+"px"}var AJ=L.getContext("2d"),f=H/c.height;AJ.scale(f,f*t);AJ.translate(-Y,-d);AJ.lineWidth=AH.face["underline-thickness"];AJ.save();function N(i,g){AJ.strokeStyle=g;AJ.beginPath();AJ.moveTo(0,i);AJ.lineTo(G,i);AJ.stroke()}var P=W.enableTextDecoration?Cufon.CSS.textDecoration(AI,z):{};if(P.underline){N(-AH.face["underline-position"],P.underline)}if(P.overline){N(AH.ascent,P.overline)}function AF(){AJ.scale(n,1);for(var x=0,k=0,g=AL.length;x<g;++x){var y=J[AL[x]]||AH.missingGlyph;if(!y){continue}if(y.d){AJ.beginPath();if(y.code){C(y.code,AJ)}else{y.code=D("m"+y.d,AJ)}AJ.fill()}AJ.translate(h[k++],0)}AJ.restore()}if(b){for(var AG=b.length;AG--;){var m=b[AG];AJ.save();AJ.fillStyle=m.color;AJ.translate.apply(AJ,s[AG]);AF()}}var S=W.textGradient;if(S){var Z=S.stops,R=AJ.createLinearGradient(0,c.minY,0,c.maxY);for(var AG=0,AB=Z.length;AG<AB;++AG){R.addColorStop.apply(R,Z[AG])}AJ.fillStyle=R}else{AJ.fillStyle=z.get("color")}AF();if(P["line-through"]){N(-AH.descent,P["line-through"])}return V}})());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":1064,"face":{"font-family":"CSlight","font-weight":"200","font-stretch":"normal","units-per-em":"2048","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"1638","descent":"-410","x-height":"25","bbox":"-317 -1731 1614 420","underline-thickness":"100.352","underline-position":"-196.608","stemh":"98","stemv":"109","unicode-range":"U+0020-U+FB02"},"glyphs":{"\u00c4":{"d":"522,-1376r90,0r473,1376r-122,0r-134,-387r-524,0r-135,387r-121,0xm795,-489r-228,-721r-229,721r457,0xm387,-1731v57,0,105,48,105,105v0,57,-48,104,-105,104v-57,0,-104,-47,-104,-104v0,-57,47,-105,104,-105xm748,-1731v57,0,104,48,104,105v0,57,-47,104,-104,104v-58,0,-105,-47,-105,-104v0,-57,47,-105,105,-105","w":1134},"\u00d6":{"d":"653,-1389v316,0,537,291,537,705v0,416,-221,707,-537,707v-315,0,-536,-291,-536,-707v0,-414,221,-705,536,-705xm653,-1284v-239,0,-409,250,-409,600v0,352,170,602,409,602v240,0,410,-250,410,-602v0,-350,-170,-600,-410,-600xm473,-1731v57,0,105,48,105,105v0,57,-48,104,-105,104v-57,0,-104,-47,-104,-104v0,-57,47,-105,104,-105xm834,-1731v57,0,104,48,104,105v0,57,-47,104,-104,104v-58,0,-105,-47,-105,-104v0,-57,47,-105,105,-105","w":1304},"\u00dc":{"d":"160,-1366r116,0r0,811v3,176,0,123,3,158v1,231,136,303,346,315v149,0,270,-61,315,-162v29,-57,34,-202,31,-311r0,-811r116,0r0,911v0,148,-16,224,-63,295v-76,117,-219,183,-399,183v-201,0,-355,-78,-422,-218v-45,-70,-44,-219,-43,-358r0,-813xm442,-1731v58,0,105,48,105,105v0,57,-47,104,-105,104v-57,0,-104,-47,-104,-104v0,-57,47,-105,104,-105xm803,-1731v57,0,104,48,104,105v0,57,-47,104,-104,104v-58,0,-105,-47,-105,-104v0,-57,47,-105,105,-105","w":1245},"\u00e4":{"d":"244,-727r-111,0v19,-172,141,-268,338,-268v160,0,274,59,307,164v52,198,-18,613,43,831r-106,0v-15,-53,-19,-72,-25,-137v-59,108,-153,162,-289,162v-180,0,-301,-111,-301,-279v0,-211,156,-311,590,-377v9,-181,-38,-274,-219,-268v-131,0,-207,57,-227,172xm690,-436r0,-111v-356,70,-477,146,-477,293v0,109,82,182,205,182v180,0,272,-123,272,-364xm309,-1378v53,0,97,43,97,96v0,55,-44,98,-97,98v-55,0,-98,-43,-98,-98v0,-53,43,-96,98,-96xm657,-1378v54,0,97,43,97,96v0,55,-43,98,-97,98v-55,0,-98,-43,-98,-98v0,-53,43,-96,98,-96","w":948},"\u00f6":{"d":"506,-995v242,0,405,207,405,512v0,303,-163,508,-405,508v-242,0,-406,-205,-406,-508v0,-305,164,-512,406,-512xm506,-899v-176,0,-295,166,-295,416v0,245,119,411,295,411v176,0,295,-166,295,-411v0,-248,-119,-416,-295,-416xm332,-1378v53,0,96,43,96,96v0,55,-43,98,-96,98v-56,0,-99,-43,-99,-98v0,-53,43,-96,99,-96xm680,-1378v53,0,96,43,96,96v0,55,-43,98,-96,98v-55,0,-98,-43,-98,-98v0,-53,43,-96,98,-96","w":1009},"\u00fc":{"d":"150,-969r106,0r0,604v0,123,8,170,37,213v35,52,96,80,172,80v168,0,256,-116,256,-340r0,-557r106,0r2,842v0,51,7,82,21,127r-109,0v-14,-49,-20,-78,-20,-137v-55,112,-131,162,-250,162v-133,0,-238,-58,-289,-156v-26,-51,-32,-100,-32,-238r0,-600xm315,-1378v54,0,97,43,97,96v0,55,-43,98,-97,98v-55,0,-98,-43,-98,-98v0,-53,43,-96,98,-96xm664,-1378v53,0,96,43,96,96v0,55,-43,98,-96,98v-56,0,-99,-43,-99,-98v0,-53,43,-96,99,-96","w":978},"!":{"d":"195,-1343r116,0r-22,983r-82,0xm252,-188v59,0,106,47,106,108v0,55,-49,103,-106,103v-55,0,-105,-48,-105,-103v0,-61,48,-108,105,-108","w":507},"\"":{"d":"223,-819r-90,0r-16,-547r123,0xm485,-819r-90,0r-16,-547r123,0","w":618},"#":{"d":"1100,-537r-15,95r-233,0r-70,442r-106,0r69,-442r-321,0r-72,442r-104,0r69,-442r-233,0r14,-95r234,0r49,-315r-231,0r14,-94r233,0r66,-420r106,0r-67,420r323,0r68,-420r104,0r-65,420r233,0r-16,94r-231,0r-52,315r234,0xm811,-852r-324,0r-49,315r324,0","w":1228},"$":{"d":"565,-1282r0,522v129,49,195,80,242,113v102,69,156,170,156,293v0,213,-158,360,-398,377r0,137r-67,0r0,-137v-256,-15,-385,-142,-402,-392r115,0v14,179,106,271,287,287r0,-575r-47,-19v-160,-61,-209,-90,-256,-149v-43,-54,-66,-125,-66,-201v0,-201,145,-344,369,-360r0,-127r67,0r0,124v211,17,332,119,350,299r-122,0v-15,-114,-91,-180,-228,-192xm498,-786r0,-496v-156,16,-252,111,-252,246v0,82,39,147,116,190v25,17,48,25,136,60xm565,-631r0,549v172,-16,277,-115,277,-258v0,-86,-39,-166,-109,-213v-35,-25,-69,-41,-168,-78"},"%":{"d":"891,-1366r100,0r-807,1366r-96,0xm784,-643v142,0,250,141,250,328v0,186,-108,327,-250,327v-139,0,-247,-141,-247,-327v0,-185,108,-328,247,-328xm784,-553v-84,0,-145,100,-145,238v0,137,61,237,145,237v84,0,148,-102,148,-237v0,-138,-64,-238,-148,-238xm291,-1378v141,0,250,141,250,327v0,187,-109,328,-250,328v-139,0,-248,-143,-248,-328v0,-184,109,-327,248,-327xm291,-1288v-84,0,-146,100,-146,237v0,138,62,238,146,238v86,0,147,-100,147,-238v0,-137,-61,-237,-147,-237","w":1077},"&":{"d":"899,-610r98,0v2,180,-18,270,-82,372r175,238r-136,0r-104,-141v-98,108,-199,151,-352,151v-238,0,-398,-143,-398,-356v0,-160,70,-262,285,-420v-143,-188,-164,-229,-164,-332v0,-147,121,-254,285,-254v162,0,264,92,264,240v0,135,-59,231,-229,367r305,415v37,-69,51,-139,53,-280xm453,-862v8,10,15,20,22,31v135,-103,187,-181,187,-279v0,-86,-66,-147,-156,-147v-100,0,-174,63,-174,153v0,72,8,88,121,242xm786,-227r-335,-451v-86,64,-111,84,-148,121v-53,55,-86,133,-86,207v0,151,125,266,289,266v110,0,207,-49,280,-143","w":1220},"\u2019":{"d":"207,-938r-129,0v94,-88,143,-160,160,-240v-69,7,-114,-40,-117,-102v0,-59,49,-109,110,-109v72,0,121,56,121,140v0,98,-47,200,-145,311","w":479},"(":{"d":"406,-1376r83,0v-141,182,-219,497,-219,893v0,395,72,690,219,893r-83,0v-162,-189,-248,-496,-248,-893v0,-400,88,-717,248,-893","w":557},")":{"d":"152,410r-84,0v147,-203,219,-498,219,-893v0,-396,-78,-711,-219,-893r84,0v159,176,247,493,247,893v0,397,-84,702,-247,893","w":557},"*":{"d":"467,-1077r0,-254r92,0r0,254r242,-78r28,88r-241,78r149,207r-75,53r-148,-205r-149,205r-76,-55r149,-205r-241,-78r28,-88","w":1024},"+":{"d":"571,-727r381,0r0,78r-381,0r0,393r-82,0r0,-393r-378,0r0,-78r378,0r0,-393r82,0r0,393"},",":{"d":"207,244r-129,0v96,-90,143,-162,160,-240v-69,8,-114,-42,-117,-102v0,-60,49,-109,110,-109v72,0,121,55,121,137v0,99,-45,197,-145,314","w":479},"-":{"d":"0,-559r571,0r0,88r-571,0r0,-88","w":571},".":{"d":"262,-188v60,0,107,47,107,108v0,55,-50,103,-107,103v-55,0,-104,-48,-104,-103v0,-61,47,-108,104,-108","w":526},"\/":{"d":"135,272r783,-1638r126,0r-782,1638r-127,0","w":1177},"0":{"d":"530,-1350v263,0,422,258,422,684v0,424,-159,682,-422,682v-262,0,-419,-258,-419,-682v0,-426,159,-684,419,-684xm530,-1251v-190,0,-301,213,-301,583v0,373,111,586,301,586v193,0,304,-213,304,-586v0,-368,-111,-583,-304,-583"},"1":{"d":"250,-1067r0,-82v174,-10,237,-55,272,-194r78,0r0,1343r-108,0r0,-1067r-242,0"},"2":{"d":"289,-942r-111,0v4,-266,137,-408,381,-408v207,0,350,125,350,308v0,127,-26,182,-204,421r-97,127r-291,394r615,0r0,100r-756,0r0,-88r475,-643v111,-154,140,-215,140,-301v0,-131,-93,-215,-238,-215v-166,0,-252,100,-264,305"},"3":{"d":"268,-995r-104,0v12,-226,145,-355,366,-355v215,0,357,129,357,326v0,137,-64,233,-197,295v168,61,246,170,246,342v0,244,-164,405,-412,405v-257,-2,-410,-143,-401,-391r104,0v4,189,105,289,289,289v184,0,301,-113,301,-291v4,-206,-141,-314,-364,-289r0,-106v191,20,314,-77,315,-248v0,-141,-92,-229,-244,-229v-151,0,-231,80,-256,252"},"4":{"d":"743,-442r230,0r0,104r-228,0r0,350r-114,0r0,-350r-545,0r0,-86r551,-919r106,0r0,901xm633,-442r6,-736r-438,736r432,0"},"5":{"d":"281,-1331r591,0r-18,100r-475,0r-60,434v66,-75,138,-106,244,-106v225,0,377,176,377,438v0,285,-172,481,-418,481v-198,0,-338,-127,-352,-319r106,0v25,141,113,221,246,221v178,0,301,-154,301,-381v0,-201,-106,-336,-268,-336v-119,0,-193,47,-250,158r-106,-10"},"6":{"d":"678,-1366r127,0v-164,176,-279,330,-395,524v271,-148,537,77,532,393v0,281,-151,465,-383,465v-225,0,-383,-188,-383,-458v0,-260,170,-574,502,-924xm559,-791v-156,0,-264,146,-264,355v0,209,108,354,264,354v156,0,264,-145,264,-354v0,-209,-108,-355,-264,-355"},"7":{"d":"209,-1331r805,0r0,100r-658,1231r-129,0r660,-1227r-678,0r0,-104"},"8":{"d":"348,-700v-108,-54,-166,-154,-166,-291v0,-205,150,-359,348,-359v201,0,351,154,351,359v0,137,-58,237,-164,291v135,71,203,184,203,342v0,221,-158,374,-388,374v-229,0,-387,-153,-387,-374v0,-158,68,-271,203,-342xm530,-1251v-135,0,-229,104,-229,254v0,151,94,256,231,256v136,0,230,-105,230,-256v0,-150,-94,-254,-232,-254xm532,-649v-161,0,-268,112,-268,284v0,168,109,283,268,283v160,0,269,-115,269,-283v0,-170,-109,-284,-269,-284"},"9":{"d":"385,35r-127,0v176,-193,281,-332,395,-524v-270,148,-538,-76,-532,-394v0,-282,151,-467,383,-467v225,0,383,189,383,461v0,262,-156,549,-502,924xm504,-1251v-156,0,-264,145,-264,354v0,211,108,356,264,356v155,0,264,-145,264,-356v0,-209,-109,-354,-264,-354"},":":{"d":"262,-188v60,0,107,47,107,108v0,55,-50,103,-107,103v-55,0,-104,-48,-104,-103v0,-61,47,-108,104,-108xm262,-969v60,0,107,47,107,109v0,55,-50,102,-107,102v-55,0,-104,-47,-104,-102v0,-62,47,-109,104,-109","w":526},";":{"d":"225,-969v60,0,107,47,107,109v0,55,-49,102,-107,102v-57,0,-104,-47,-104,-102v0,-62,47,-109,104,-109xm207,244r-129,0v96,-90,143,-162,160,-240v-69,8,-114,-42,-117,-102v0,-60,49,-109,110,-109v72,0,121,55,121,137v0,99,-45,197,-145,314","w":479},"<":{"d":"954,-1137r0,107r-772,344r772,342r0,106r-886,-401r0,-96","w":1024},"=":{"d":"111,-854r841,0r0,82r-841,0r0,-82xm111,-604r841,0r0,82r-841,0r0,-82"},">":{"d":"70,-238r0,-106r772,-342r-772,-344r0,-107r886,404r0,94","w":1024},"?":{"d":"367,-188v59,0,106,47,106,108v0,55,-49,103,-106,103v-56,0,-105,-48,-105,-103v0,-61,47,-108,105,-108xm426,-367r-111,0v-2,-28,-2,-73,-2,-110v0,-199,4,-211,146,-352v108,-111,139,-166,139,-248v0,-101,-72,-164,-184,-164v-133,0,-201,63,-217,207r-103,0v10,-205,125,-316,328,-316v182,0,299,111,299,283v0,106,-37,172,-178,305v-117,107,-120,143,-119,318v2,67,0,53,2,77","w":839},"@":{"d":"1030,-1012r84,0r-86,445v-25,98,-15,197,76,200v127,0,242,-196,242,-415v0,-318,-228,-531,-568,-531v-352,0,-616,271,-616,631v0,379,256,629,645,629v164,0,291,-31,446,-107r27,76v-147,74,-301,109,-471,109v-438,0,-737,-287,-737,-709v0,-406,305,-707,714,-707v379,0,646,252,646,613v0,254,-158,485,-332,485v-88,0,-144,-53,-150,-143v-63,98,-149,149,-256,149v-166,0,-286,-139,-286,-329v0,-238,157,-422,360,-422v117,0,193,55,233,174xm772,-952v-147,0,-266,145,-266,327v0,160,76,256,201,256v147,0,256,-153,256,-358v0,-139,-74,-225,-191,-225","w":1501},"A":{"d":"522,-1376r90,0r473,1376r-122,0r-134,-387r-524,0r-135,387r-121,0xm795,-489r-228,-721r-229,721r457,0","w":1134},"B":{"d":"180,-1366v179,2,466,-2,551,33v130,53,211,157,211,307v0,158,-74,254,-229,301v205,51,299,162,299,348v0,166,-90,290,-219,342v-85,34,-412,34,-613,35r0,-1366xm297,-764r133,0v148,0,219,-12,283,-49v67,-41,108,-119,108,-211v0,-104,-49,-182,-137,-213v-53,-34,-254,-26,-387,-27r0,500xm297,-102v160,1,392,-1,459,-37v75,-40,129,-127,129,-236v0,-133,-64,-227,-174,-262v-66,-28,-274,-26,-414,-25r0,560","w":1099},"C":{"d":"1110,-1010r-115,0v-45,-186,-153,-274,-333,-274v-256,0,-418,231,-418,598v0,375,159,604,422,604v202,0,327,-127,354,-367r113,0v-29,299,-197,472,-461,472v-342,0,-555,-271,-555,-705v0,-428,215,-707,547,-707v243,0,409,142,446,379","w":1232},"D":{"d":"180,-1366r174,0v162,0,197,2,275,10v323,39,526,299,526,672v0,283,-123,510,-330,614v-112,58,-198,70,-479,70r-166,0r0,-1366xm297,-102r168,0v207,0,326,-43,424,-152v94,-104,139,-248,139,-436v0,-246,-98,-440,-266,-522v-92,-43,-152,-52,-402,-52r-63,0r0,1162","w":1269},"E":{"d":"297,-758r557,0r0,103r-557,0r0,553r606,0r0,102r-723,0r0,-1366r715,0r0,102r-598,0r0,506","w":1003},"F":{"d":"297,-758r557,0r0,103r-557,0r0,655r-117,0r0,-1366r715,0r0,102r-598,0r0,506","w":976},"G":{"d":"735,-670r391,0r0,559v-125,91,-266,134,-430,134v-362,0,-579,-263,-579,-701v0,-440,213,-711,557,-711v241,0,399,138,434,379r-115,0v-49,-188,-149,-274,-321,-274v-269,0,-428,225,-428,604v0,381,164,598,450,598v111,0,209,-27,320,-88r0,-389r-279,0r0,-111","w":1259},"H":{"d":"297,-764r674,0r0,-602r116,0r0,1366r-116,0r0,-668r-674,0r0,668r-117,0r0,-1366r117,0r0,602","w":1267},"I":{"d":"297,0r-121,0r0,-1366r121,0r0,1366","w":475},"J":{"d":"260,-1366r121,0r0,1090v0,170,-4,204,-29,260v-47,113,-181,173,-354,161r0,-102v108,14,204,-31,240,-102v18,-41,22,-72,22,-220r0,-1087","w":557},"K":{"d":"870,-1366r146,0r-572,651r633,715r-168,0r-610,-713xm180,-1366r117,0r0,1366r-117,0r0,-1366","w":1097},"L":{"d":"180,-1366r121,0r0,1264r582,0r0,102r-703,0r0,-1366","w":946},"M":{"d":"180,-1366r189,0r411,1235r412,-1235r188,0r0,1366r-116,0r0,-1260r-424,1260r-117,0r-426,-1260r0,1260r-117,0r0,-1366","w":1560},"N":{"d":"180,-1366r129,0r688,1196r0,-1196r109,0r0,1366r-135,0r-680,-1192r0,1192r-111,0r0,-1366","w":1284},"O":{"d":"653,-1389v316,0,537,291,537,705v0,416,-221,707,-537,707v-315,0,-536,-291,-536,-707v0,-414,221,-705,536,-705xm653,-1284v-239,0,-409,250,-409,600v0,352,170,602,409,602v240,0,410,-250,410,-602v0,-350,-170,-600,-410,-600","w":1304},"P":{"d":"180,-1366v189,0,486,-6,568,35v145,49,237,190,237,362v0,166,-70,287,-194,346v-86,39,-166,50,-388,50r-106,0r0,573r-117,0r0,-1366xm297,-676v128,0,296,2,360,-18v131,-27,201,-121,201,-275v0,-127,-59,-225,-156,-262v-71,-29,-120,-33,-331,-33r-74,0r0,588","w":1050},"Q":{"d":"1092,-256r262,279r-146,0r-180,-183v-98,121,-225,183,-375,183v-315,0,-536,-291,-536,-705v0,-416,221,-707,536,-707v316,0,537,291,537,707v0,160,-33,303,-98,426xm653,-1284v-239,0,-409,250,-409,600v0,352,170,602,409,602v240,0,410,-250,410,-602v0,-350,-170,-600,-410,-600","w":1318},"R":{"d":"180,-1366r209,0v211,0,273,6,363,37v141,45,229,174,229,338v0,180,-98,303,-295,368r375,623r-143,0r-367,-606r-254,0r0,606r-117,0r0,-1366xm297,-709r96,0v180,0,225,-4,295,-28v109,-37,166,-129,166,-262v0,-109,-53,-199,-143,-234v-66,-24,-121,-31,-316,-31r-98,0r0,555","w":1130},"S":{"d":"940,-1028r-115,0v-16,-164,-114,-256,-272,-256v-160,0,-272,94,-272,227v4,174,209,219,333,287v283,131,367,225,367,414v0,221,-176,379,-424,379v-274,0,-424,-144,-440,-422r116,0v11,202,125,317,322,317v174,0,303,-111,303,-260v0,-139,-57,-201,-283,-305v-165,-78,-239,-115,-284,-148v-84,-65,-129,-151,-129,-254v0,-194,166,-340,385,-340v239,0,381,129,393,361","w":1107},"T":{"d":"49,-1366r823,0r0,102r-352,0r0,1264r-117,0r0,-1264r-354,0r0,-102","w":921},"U":{"d":"160,-1366r116,0r0,811v3,176,0,123,3,158v1,231,136,303,346,315v149,0,270,-61,315,-162v29,-57,34,-202,31,-311r0,-811r116,0r0,911v0,148,-16,224,-63,295v-76,117,-219,183,-399,183v-201,0,-355,-78,-422,-218v-45,-70,-44,-219,-43,-358r0,-813","w":1245},"V":{"d":"33,-1366r123,0r409,1229r402,-1229r120,0r-471,1378r-114,0","w":1116},"W":{"d":"43,-1366r113,0r264,1196r295,-1196r100,0r293,1196r268,-1196r113,0r-318,1378r-120,0r-287,-1128r-285,1128r-121,0","w":1527},"X":{"d":"68,-1366r135,0r340,557r340,-557r137,0r-410,649r430,717r-133,0r-364,-604r-363,604r-133,0r428,-717","w":1083},"Y":{"d":"33,-1366r137,0r340,670r336,-670r137,0r-420,780r2,586r-114,0r2,-586","w":1013},"Z":{"d":"106,-1366r826,0r0,80r-727,1184r715,0r0,102r-852,0r0,-90r718,-1174r-680,0r0,-102","w":1003},"[":{"d":"199,-1366r272,0r0,90r-166,0r0,1583r166,0r0,90r-272,0r0,-1763","w":557},"\\":{"d":"1044,272r-126,0r-783,-1638r127,0","w":1177},"]":{"d":"358,397r-272,0r0,-90r166,0r0,-1583r-166,0r0,-90r272,0r0,1763","w":557},"^":{"d":"186,-770r-118,0r374,-598r140,0r374,598r-118,0r-328,-514","w":1024},"_":{"d":"0,147r1024,0r0,101r-1024,0r0,-101","w":1024},"\u2018":{"d":"272,-1389r129,0v-96,91,-143,162,-159,242v65,-13,113,41,116,100v0,60,-49,109,-110,109v-72,0,-121,-55,-121,-139v0,-97,49,-201,145,-312","w":479},"a":{"d":"244,-727r-111,0v19,-172,141,-268,338,-268v160,0,274,59,307,164v52,198,-18,613,43,831r-106,0v-15,-53,-19,-72,-25,-137v-59,108,-153,162,-289,162v-180,0,-301,-111,-301,-279v0,-211,156,-311,590,-377v9,-181,-38,-274,-219,-268v-131,0,-207,57,-227,172xm690,-436r0,-111v-356,70,-477,146,-477,293v0,109,82,182,205,182v180,0,272,-123,272,-364","w":948},"b":{"d":"154,-1370r106,0r0,547v70,-119,160,-172,285,-172v219,0,368,204,368,503v0,318,-149,517,-389,517v-114,0,-196,-52,-264,-164v1,52,-3,92,-16,139r-111,0v17,-55,21,-106,21,-281r0,-1089xm545,-899v-172,0,-287,166,-287,418v0,245,111,409,274,409v164,0,271,-161,271,-415v0,-250,-103,-412,-258,-412","w":1011},"c":{"d":"846,-655r-107,0v-24,-160,-106,-244,-239,-244v-174,0,-289,168,-289,422v0,244,117,405,295,405v137,0,223,-92,239,-256r111,0v-22,228,-143,353,-344,353v-254,0,-412,-197,-412,-514v0,-297,164,-506,400,-506v200,0,325,121,346,340","w":956},"d":{"d":"858,-1370r0,1089v0,177,4,228,21,281r-111,0v-15,-48,-17,-85,-16,-139v-68,112,-150,164,-265,164v-239,0,-389,-191,-389,-498v0,-315,146,-522,369,-522v133,0,225,55,285,172r0,-547r106,0xm481,-899v-166,0,-272,162,-272,416v0,252,106,411,272,411v166,0,273,-159,273,-411v0,-254,-107,-416,-273,-416","w":1011},"e":{"d":"874,-473r-661,0v6,262,109,401,295,401v113,0,178,-45,237,-159r105,18v-59,158,-176,238,-342,238v-252,0,-408,-189,-408,-498v0,-322,156,-522,404,-522v234,-2,379,209,370,522xm217,-561r543,0v-12,-211,-111,-338,-260,-338v-160,0,-260,119,-283,338","w":974},"f":{"d":"285,-969r245,0r0,88r-239,0r0,881r-117,0r0,-881r-139,0r0,-88r139,0r0,-63v0,-154,6,-191,37,-246v62,-106,204,-138,340,-86r0,109v-43,-25,-82,-37,-123,-37v-109,0,-143,59,-143,241r0,82","w":550},"g":{"d":"911,-969r0,86r-198,-6v121,93,131,368,4,459v-43,35,-78,47,-228,88v-147,39,-202,70,-202,119v0,41,24,49,188,65v141,15,158,17,209,29v152,35,229,123,229,256v0,178,-163,293,-419,293v-258,0,-426,-109,-426,-279v0,-118,61,-192,206,-243v-71,-27,-102,-60,-102,-111v0,-68,47,-109,174,-158v-137,-49,-203,-139,-203,-280v-8,-244,228,-380,482,-307xm483,-887v-133,0,-227,96,-227,234v0,129,90,217,221,217v135,0,221,-86,221,-217v0,-135,-90,-234,-215,-234xm485,-47v-198,0,-315,67,-315,182v0,113,125,187,319,187v197,0,318,-72,318,-187v0,-119,-111,-182,-322,-182","w":958},"h":{"d":"154,-1370r106,0r0,516v74,-98,156,-141,277,-141v118,0,215,47,264,129v35,59,43,114,43,311r0,555r-107,0r0,-563v0,-154,-6,-195,-30,-242v-35,-61,-97,-94,-179,-94v-174,0,-268,125,-268,354r0,545r-106,0r0,-1370","w":993},"i":{"d":"154,-969r116,0r0,969r-116,0r0,-969xm211,-1382v51,0,90,39,90,90v0,51,-39,90,-88,90v-53,0,-92,-37,-92,-90v0,-49,39,-90,90,-90","w":423},"j":{"d":"231,-969r117,0r0,903v0,199,-10,265,-49,328v-54,98,-181,135,-346,123r0,-96v136,12,234,-30,260,-121v14,-41,18,-100,18,-234r0,-903xm287,-1382v51,0,90,39,90,90v0,51,-39,90,-88,90v-53,0,-92,-37,-92,-90v0,-49,39,-90,90,-90","w":501},"k":{"d":"690,-969r131,0r-418,432r447,537r-152,0r-434,-532xm154,-1370r106,0r0,1370r-106,0r0,-1370","w":948},"l":{"d":"154,-1370r116,0r0,1370r-116,0r0,-1370","w":423},"m":{"d":"131,-969r105,0v12,41,18,76,18,135v55,-112,143,-161,283,-161v131,0,213,53,258,172v55,-113,155,-172,290,-172v113,0,203,41,246,116v33,56,39,97,39,275r0,604r-106,0r0,-604v0,-141,-4,-172,-31,-215v-31,-51,-88,-80,-168,-80v-164,0,-248,106,-248,317r0,582r-108,0r0,-582v0,-147,-4,-182,-23,-223v-29,-59,-90,-94,-174,-94v-164,0,-252,113,-252,326r0,573r-106,0r0,-678v-2,-207,-2,-209,-23,-291","w":1517},"n":{"d":"131,-969r105,0v16,49,18,70,18,146v63,-115,162,-172,295,-172v141,0,246,59,282,164v23,61,25,83,25,276r0,555r-106,0r0,-563v0,-156,-5,-193,-29,-242v-31,-61,-94,-94,-178,-94v-176,0,-283,131,-283,342r0,557r-106,0r0,-645v0,-240,0,-229,-23,-324","w":1005},"o":{"d":"506,-995v242,0,405,207,405,512v0,303,-163,508,-405,508v-242,0,-406,-205,-406,-508v0,-305,164,-512,406,-512xm506,-899v-176,0,-295,166,-295,416v0,245,119,411,295,411v176,0,295,-166,295,-411v0,-248,-119,-416,-295,-416","w":1009},"p":{"d":"154,403r0,-1089v0,-176,-4,-227,-21,-283r111,0v12,45,14,54,18,152v66,-125,150,-180,279,-180v223,0,370,209,370,524v0,305,-143,498,-368,498v-119,0,-215,-58,-281,-166r0,544r-108,0xm539,-901v-166,0,-281,172,-281,416v0,245,115,413,281,413v163,0,262,-149,262,-405v0,-258,-103,-424,-262,-424","w":1011},"q":{"d":"750,403r0,-544v-70,114,-158,166,-281,166v-219,0,-369,-201,-369,-498v0,-309,154,-522,379,-522v129,0,207,51,271,176v2,-80,4,-103,18,-150r111,0v-17,54,-21,105,-21,283r0,1089r-108,0xm481,-899v-164,0,-270,172,-270,434v0,240,102,393,262,393v166,0,281,-168,281,-411v0,-248,-111,-416,-273,-416","w":1011},"r":{"d":"139,-969r101,0v16,75,19,126,14,209v90,-215,186,-281,375,-203r0,107v-66,-29,-90,-35,-125,-35v-74,0,-148,60,-195,162v-74,153,-39,493,-47,729r-108,0r0,-623v0,-227,0,-237,-15,-346","w":634},"s":{"d":"756,-711r-105,0v-14,-131,-80,-188,-217,-188v-117,0,-198,65,-198,162v0,86,45,121,223,174v256,76,317,131,317,293v0,182,-131,295,-344,295v-213,0,-338,-117,-338,-316r105,0v14,146,94,219,241,219v138,0,224,-73,224,-194v-1,-91,-67,-138,-150,-162v-14,-4,-70,-21,-133,-41v-186,-57,-256,-131,-256,-264v0,-156,129,-262,315,-262v197,0,308,100,316,284","w":866},"t":{"d":"309,-969r242,0r0,88r-244,0r-10,635v0,140,22,172,111,172v43,0,92,-12,141,-32r-2,98v-55,18,-103,26,-156,26v-147,0,-207,-55,-207,-194r19,-705r-146,0r0,-88r146,0r6,-280r104,0","w":612},"u":{"d":"150,-969r106,0r0,604v0,123,8,170,37,213v35,52,96,80,172,80v168,0,256,-116,256,-340r0,-557r106,0r2,842v0,51,7,82,21,127r-109,0v-14,-49,-20,-78,-20,-137v-55,112,-131,162,-250,162v-133,0,-238,-58,-289,-156v-26,-51,-32,-100,-32,-238r0,-600","w":978},"v":{"d":"20,-969r113,0r285,852r287,-852r108,0r-342,983r-109,0","w":835},"w":{"d":"33,-969r112,0r217,795r236,-795r98,0r236,795r217,-795r113,0r-279,983r-98,0r-238,-821r-237,821r-99,0","w":1292},"x":{"d":"68,-969r122,0r244,371r246,-371r131,0r-311,455r348,514r-129,0r-285,-428r-291,428r-127,0r353,-514","w":862},"y":{"d":"33,-969r114,0r279,830r289,-830r112,0r-378,1065v-102,240,-184,319,-396,312r0,-97v178,0,215,-37,314,-313","w":854},"z":{"d":"84,-969r676,0r0,76r-590,805r573,0r0,88r-698,0r0,-84r582,-797r-543,0r0,-88","w":796},"{":{"d":"313,-1071r0,348v0,131,-24,186,-112,240v88,53,112,106,112,239r0,348v0,175,39,220,189,222r0,84v-217,4,-292,-73,-291,-330r0,-324v0,-123,-31,-178,-117,-202r0,-74v86,-27,117,-80,117,-203r0,-326v-3,-255,78,-337,291,-327r0,82v-152,4,-189,47,-189,223","w":557},"|":{"d":"459,-1366r106,0r0,1708r-106,0r0,-1708","w":1024},"}":{"d":"244,104r0,-348v0,-133,24,-186,112,-239v-88,-54,-112,-109,-112,-240r0,-348v0,-176,-37,-219,-189,-223r0,-82v215,-11,293,73,291,327r0,324v0,125,31,176,117,205r0,74v-86,26,-117,79,-117,202r0,324v1,257,-72,334,-291,330r0,-84v150,-2,189,-47,189,-222","w":557},"~":{"d":"260,-1210r-67,-43v77,-154,157,-217,270,-217v55,0,121,22,235,79v119,60,154,72,207,72v80,0,131,-41,199,-156r67,41v-105,195,-211,260,-411,183v-3,6,-245,-134,-305,-119v-76,0,-131,45,-195,160","w":1366},"\u00a1":{"d":"313,397r-118,0r22,-981r82,0xm254,-969v55,0,104,47,104,103v0,61,-47,108,-104,108v-59,0,-107,-47,-107,-108v0,-56,50,-103,107,-103","w":507},"\u00a2":{"d":"573,-1098r0,830v132,-8,205,-94,222,-258r110,0v-8,207,-139,346,-332,354r0,217r-67,0r0,-219v-207,-31,-332,-221,-332,-500v0,-278,123,-471,332,-518r0,-207r67,0r0,203v197,8,314,131,320,342r-109,0v-10,-164,-75,-240,-211,-244xm506,-274r0,-818v-137,43,-223,203,-223,414v0,213,86,369,223,404"},"\u00a3":{"d":"457,-743r303,0r0,100r-320,0v-41,229,-43,237,-63,319v-29,111,-45,162,-80,232v96,-22,273,-12,377,-12v151,0,196,-35,203,-164r106,0v0,90,-25,155,-76,205v-57,53,-100,63,-289,63r-471,0v83,-141,137,-425,177,-643r-207,0r0,-100r225,0v25,-160,55,-328,74,-400v43,-174,121,-246,264,-246v156,0,223,74,231,256r-106,0v-10,-116,-41,-153,-127,-153v-92,0,-127,43,-162,209v-12,51,-29,143,-41,219v-6,35,-6,35,-18,115"},"\u2044":{"d":"465,-1331r98,0r-782,1331r-98,0","w":243},"\u00a5":{"d":"748,-854r204,0r0,82r-247,0r-89,168r336,0r0,82r-354,0r2,522r-119,0r4,-522r-374,0r0,-82r356,0r-92,-168r-264,0r0,-82r219,0r-279,-512r133,0r355,674r348,-674r125,0"},"\u0192":{"d":"686,-967r205,0r0,101r-221,0r-135,762v-31,178,-50,247,-82,299v-43,67,-111,102,-201,102v-66,0,-121,-16,-215,-59r22,-111v70,47,123,68,185,68v108,0,129,-37,178,-320r131,-741r-191,0r0,-101r209,0r27,-155v51,-319,181,-392,430,-308r-20,107v-70,-31,-103,-41,-138,-41v-88,0,-122,59,-161,272"},"\u00a7":{"d":"856,-1022r-111,0v-12,-158,-86,-233,-229,-233v-137,0,-227,79,-227,198v-3,137,140,182,237,244r33,18v258,146,305,193,305,316v0,110,-53,186,-178,254v98,78,137,147,137,250v0,194,-133,315,-348,315v-231,0,-346,-109,-354,-336r108,0v17,168,88,242,236,242v158,0,250,-80,250,-219v0,-68,-27,-117,-88,-164v-37,-25,-78,-51,-195,-121v-162,-96,-201,-123,-237,-168v-35,-41,-54,-90,-54,-143v0,-103,56,-174,191,-242v-105,-66,-152,-139,-152,-240v0,-172,142,-299,332,-299v211,0,338,121,344,328xm418,-756v-187,73,-232,226,-66,332v54,35,189,115,250,148v145,-57,213,-226,82,-322r-121,-74v-121,-71,-96,-59,-145,-84","w":1024},"\u00a4":{"d":"135,-244r184,-188v-140,-180,-145,-403,0,-586r-190,-188r66,-66r188,189v183,-149,412,-149,594,-2r190,-187r66,66r-189,188v143,180,145,405,0,586r191,188r-66,66r-188,-189v-187,143,-401,145,-594,0r-188,189xm682,-1092v-201,0,-363,164,-363,367v0,199,164,363,363,363v199,0,362,-164,362,-363v0,-203,-161,-367,-362,-367","w":1366},"'":{"d":"301,-819r-90,0r-16,-547r122,0","w":512},"\u201c":{"d":"580,-1389r129,0v-97,91,-144,162,-160,242v66,-13,115,41,117,100v0,60,-50,109,-111,109v-72,0,-121,-55,-121,-139v0,-97,49,-201,146,-312xm272,-1389r129,0v-96,91,-143,162,-159,242v65,-13,113,41,116,100v0,60,-49,109,-110,109v-72,0,-121,-55,-121,-139v0,-97,49,-201,145,-312","w":786},"\u00ab":{"d":"563,0r-69,0r-172,-477r172,-490r69,0r-147,490xm340,0r-70,0r-172,-477r172,-490r70,0r-150,490","w":706},"\u2039":{"d":"326,0r-78,0r-172,-477r172,-490r78,0r-148,490","w":450},"\u203a":{"d":"125,-967r80,0r170,478r-170,489r-80,0r147,-489","w":450},"\ufb01":{"d":"285,-969r245,0r0,88r-239,0r0,881r-117,0r0,-881r-139,0r0,-88r139,0r0,-63v0,-148,6,-187,33,-240v57,-111,207,-146,344,-92r0,109v-41,-25,-82,-37,-119,-37v-113,0,-147,57,-147,241r0,82xm705,-969r116,0r0,969r-116,0r0,-969xm762,-1382v51,0,90,39,90,90v0,51,-39,90,-88,90v-53,0,-92,-37,-92,-90v0,-49,39,-90,90,-90","w":974},"\ufb02":{"d":"285,-969r245,0r0,88r-239,0r0,881r-117,0r0,-881r-139,0r0,-88r139,0r0,-63v0,-148,6,-187,33,-240v57,-111,207,-146,344,-92r0,109v-41,-25,-82,-37,-119,-37v-113,0,-147,57,-147,241r0,82xm705,-1370r116,0r0,1370r-116,0r0,-1370","w":974},"\u2013":{"d":"160,-559r702,0r0,88r-702,0r0,-88","w":1024},"\u2020":{"d":"463,-1331r106,0r0,364r389,0r0,95r-389,0r0,1144r-106,0r0,-1144r-395,0r0,-95r395,0r0,-364","w":1024},"\u2021":{"d":"463,-1331r100,0r0,244r395,0r0,96r-395,0r0,891r395,0r0,96r-395,0r0,276r-100,0r0,-276r-395,0r0,-96r395,0r0,-891r-395,0r0,-96r395,0r0,-244","w":1024},"\u00b7":{"d":"262,-618v60,0,107,47,107,108v0,55,-50,102,-107,102v-55,0,-104,-47,-104,-102v0,-61,47,-108,104,-108","w":526},"\u00b6":{"d":"449,205r0,-846v-245,11,-407,-136,-410,-358v0,-136,70,-256,180,-316v70,-37,156,-51,299,-51r473,0r0,90r-114,0r0,1481r-101,0r0,-1481r-227,0r0,1481r-100,0","w":1134},"\u2022":{"d":"688,-977v154,0,281,127,281,283v0,155,-127,284,-281,284v-160,0,-287,-127,-287,-284v0,-156,127,-283,287,-283","w":1366},"\u201a":{"d":"207,244r-129,0v96,-90,143,-162,160,-240v-69,8,-114,-42,-117,-102v0,-60,49,-109,110,-109v72,0,121,55,121,137v0,99,-45,197,-145,314","w":479},"\u201e":{"d":"207,244r-129,0v96,-90,143,-162,160,-240v-69,8,-114,-42,-117,-102v0,-60,49,-109,110,-109v72,0,121,55,121,137v0,99,-45,197,-145,314xm541,244r-129,0v96,-90,143,-162,159,-240v-68,7,-113,-42,-116,-102v0,-60,49,-109,110,-109v72,0,121,55,121,137v0,99,-47,199,-145,314","w":815},"\u201d":{"d":"207,-938r-129,0v94,-88,143,-160,160,-240v-69,7,-114,-40,-117,-102v0,-59,49,-109,110,-109v72,0,121,56,121,140v0,98,-47,200,-145,311xm541,-938r-129,0v94,-88,143,-160,159,-240v-68,7,-113,-40,-116,-102v0,-59,49,-109,110,-109v72,0,121,56,121,140v0,98,-47,200,-145,311","w":815},"\u00bb":{"d":"143,-967r70,0r172,478r-172,489r-70,0r148,-489xm367,-967r69,0r172,478r-172,489r-69,0r149,-489","w":706},"\u2026":{"d":"262,-188v60,0,107,47,107,108v0,55,-50,103,-107,103v-55,0,-104,-48,-104,-103v0,-61,47,-108,104,-108xm700,-188v60,0,107,47,107,108v0,55,-49,103,-107,103v-57,0,-104,-48,-104,-103v0,-61,47,-108,104,-108xm1141,-188v59,0,106,47,106,108v0,55,-49,103,-106,103v-58,0,-105,-48,-105,-103v0,-61,47,-108,105,-108","w":1402},"\u2030":{"d":"891,-1366r100,0r-807,1366r-96,0xm784,-643v142,0,250,141,250,328v0,186,-108,327,-250,327v-139,0,-247,-141,-247,-327v0,-185,108,-328,247,-328xm784,-553v-84,0,-145,100,-145,238v0,137,61,237,145,237v84,0,148,-102,148,-237v0,-138,-64,-238,-148,-238xm1364,-643v141,0,250,141,250,328v0,186,-109,327,-250,327v-139,0,-248,-141,-248,-327v0,-185,109,-328,248,-328xm1364,-553v-84,0,-145,100,-145,238v0,137,61,237,145,237v84,0,147,-102,147,-237v0,-138,-63,-238,-147,-238xm291,-1378v141,0,250,141,250,327v0,187,-109,328,-250,328v-139,0,-248,-143,-248,-328v0,-184,109,-327,248,-327xm291,-1288v-84,0,-146,100,-146,237v0,138,62,238,146,238v86,0,147,-100,147,-238v0,-137,-61,-237,-147,-237","w":1656},"\u00bf":{"d":"473,-969v55,0,105,47,105,103v0,61,-48,108,-105,108v-61,0,-106,-47,-106,-108v0,-56,49,-103,106,-103xm414,-578r110,0v2,31,2,78,2,111v0,199,-6,211,-145,352v-109,111,-139,164,-139,246v0,100,71,164,184,164v133,0,201,-64,217,-205r102,0v-8,203,-124,313,-327,313v-182,0,-299,-110,-299,-282v0,-105,37,-170,178,-305v113,-106,121,-141,119,-291v0,-60,0,-70,-2,-103","w":839},"`":{"d":"621,-1145r-97,0r-270,-262r170,0","w":1024},"\u00df":{"d":"147,0r0,-874v0,-222,9,-281,46,-351v51,-96,159,-153,292,-153v199,0,336,129,336,317v0,150,-80,244,-246,289v220,37,334,170,334,385v1,286,-229,481,-495,369r0,-101v49,25,96,37,145,37v139,0,238,-125,238,-297v0,-227,-142,-344,-420,-348r0,-92v203,15,338,-72,334,-234v0,-139,-88,-229,-228,-229v-171,0,-230,117,-229,295r0,987r-107,0","w":1009}," ":{"w":512}}});;Cufon.registerFont({"w":1105,"face":{"font-family":"CSmedium","font-weight":"500","font-stretch":"normal","units-per-em":"2048","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"1638","descent":"-410","x-height":"27","bbox":"-362 -1759 1796 416","underline-thickness":"149.504","underline-position":"-202.752","stemh":"145","stemv":"166","unicode-range":"U+0020-U+FB02"},"glyphs":{"\u00c4":{"d":"506,-1372r160,0r469,1372r-181,0r-114,-346r-508,0r-115,346r-180,0xm793,-498r-207,-655r-207,655r414,0xm401,-1759v68,0,123,55,123,123v0,67,-55,123,-123,123v-67,0,-122,-56,-122,-123v0,-68,55,-123,122,-123xm770,-1759v68,0,123,55,123,123v0,67,-55,123,-123,123v-68,0,-123,-56,-123,-123v0,-68,55,-123,123,-123","w":1173},"\u00d6":{"d":"666,-1391v340,0,569,287,569,707v0,422,-229,709,-569,709v-338,0,-568,-287,-568,-709v0,-420,230,-707,568,-707xm666,-1239v-232,0,-381,217,-381,555v0,338,149,557,381,557v233,0,383,-219,383,-557v0,-336,-150,-555,-383,-555xm481,-1759v68,0,123,55,123,123v0,67,-55,123,-123,123v-67,0,-123,-56,-123,-123v0,-68,56,-123,123,-123xm850,-1759v68,0,123,55,123,123v0,67,-55,123,-123,123v-68,0,-123,-56,-123,-123v0,-68,55,-123,123,-123","w":1335},"\u00dc":{"d":"156,-1366r174,0r0,801v0,194,8,246,43,307v49,80,153,129,278,129v146,0,256,-66,297,-174v19,-51,23,-103,23,-262r0,-801r174,0r0,803v0,209,-6,258,-37,334v-68,159,-238,254,-457,254v-221,0,-391,-95,-458,-254v-31,-76,-37,-125,-37,-334r0,-803xm465,-1759v67,0,123,55,123,123v0,67,-56,123,-123,123v-68,0,-123,-56,-123,-123v0,-68,55,-123,123,-123xm834,-1759v67,0,122,55,122,123v0,67,-55,123,-122,123v-68,0,-123,-56,-123,-123v0,-68,55,-123,123,-123","w":1300},"\u00e4":{"d":"289,-709r-162,0v20,-186,152,-288,373,-288v164,0,278,57,317,157v48,122,20,411,27,592v0,146,4,185,28,248r-155,0v-15,-49,-19,-68,-21,-127v-57,104,-149,154,-284,154v-191,0,-318,-111,-318,-277v0,-139,76,-239,223,-295v93,-35,175,-55,365,-86v7,-156,-36,-234,-190,-229v-117,0,-185,51,-203,151xm449,-109v159,-11,244,-111,233,-315r0,-88v-307,51,-418,115,-418,244v0,96,74,159,185,159xm322,-1378v61,0,112,51,112,112v0,64,-51,115,-112,115v-64,0,-115,-51,-115,-115v0,-61,51,-112,115,-112xm672,-1378v61,0,112,51,112,112v0,64,-51,115,-112,115v-64,0,-115,-51,-115,-115v0,-61,51,-112,115,-112","w":989},"\u00f6":{"d":"524,-997v254,0,434,213,434,514v0,299,-180,510,-434,510v-256,0,-436,-211,-436,-510v0,-301,180,-514,436,-514xm524,-860v-159,0,-266,151,-266,377v0,221,107,372,266,372v158,0,264,-151,264,-372v0,-226,-106,-377,-264,-377xm348,-1378v62,0,113,51,113,112v0,64,-51,115,-113,115v-63,0,-115,-51,-115,-115v0,-61,52,-112,115,-112xm698,-1378v62,0,113,51,113,112v0,64,-51,115,-113,115v-63,0,-114,-51,-114,-115v0,-61,51,-112,114,-112","w":1044},"\u00fc":{"d":"143,-971r164,0r0,586v0,192,53,264,197,264v149,0,227,-104,227,-305r0,-545r164,0r0,676v0,225,0,217,23,295r-158,0v-15,-39,-19,-72,-21,-127v-61,109,-139,154,-266,154v-129,0,-237,-60,-289,-158v-30,-53,-41,-121,-41,-252r0,-588xm342,-1378v61,0,113,51,113,112v0,64,-52,115,-113,115v-63,0,-115,-51,-115,-115v0,-61,52,-112,115,-112xm692,-1378v62,0,113,51,113,112v0,64,-51,115,-113,115v-63,0,-114,-51,-114,-115v0,-61,51,-112,114,-112","w":1042},"!":{"d":"166,-1337r178,0r-25,940r-135,0xm254,-231v72,0,127,57,127,127v0,67,-57,124,-127,124v-68,0,-125,-57,-125,-124v0,-70,55,-127,125,-127","w":512},"\"":{"d":"301,-817r-115,0r-28,-549r172,0xm594,-817r-115,0r-28,-549r172,0","w":782},"#":{"d":"1124,-553r-20,125r-236,0r-67,428r-144,0r68,-428r-293,0r-67,428r-144,0r68,-428r-234,0r21,-125r233,0r45,-285r-233,0r18,-125r234,0r63,-403r144,0r-64,403r293,0r63,-403r144,0r-64,403r236,0r-19,125r-237,0r-45,285r237,0xm788,-838r-292,0r-45,285r292,0","w":1228},"$":{"d":"596,-1235r0,451v317,110,418,211,418,417v0,217,-164,371,-418,390r0,155r-90,0r0,-155v-275,-23,-416,-168,-420,-426r166,0v14,172,86,249,254,276r0,-506v-146,-51,-189,-67,-238,-98v-102,-66,-151,-158,-151,-287v0,-205,153,-352,389,-371r0,-137r90,0r0,140v227,20,358,143,371,344r-170,0v-21,-117,-82,-175,-201,-193xm506,-815r0,-422v-137,18,-219,96,-219,207v0,108,43,151,219,215xm596,-600r0,473v149,-14,242,-98,242,-225v0,-72,-35,-137,-97,-183v-26,-18,-55,-32,-145,-65"},"%":{"d":"944,-1366r143,0r-800,1366r-144,0xm913,-647v150,0,267,143,267,328v0,186,-117,329,-267,329v-147,0,-264,-143,-264,-329v0,-185,117,-328,264,-328xm913,-537v-82,0,-139,91,-139,218v0,129,57,219,139,219v82,0,142,-90,142,-219v0,-127,-60,-218,-142,-218xm317,-1376v150,0,267,143,267,329v0,185,-117,328,-267,328v-147,0,-264,-143,-264,-328v0,-186,117,-329,264,-329xm317,-1266v-81,0,-139,90,-139,219v0,127,60,218,139,218v82,0,142,-91,142,-218v0,-129,-60,-219,-142,-219","w":1230},"&":{"d":"889,-639r139,0v3,179,-17,295,-94,403r176,236r-184,0r-88,-121v-93,96,-191,135,-334,135v-252,0,-422,-149,-422,-372v0,-150,68,-252,270,-410v-137,-176,-155,-215,-155,-315v0,-154,129,-267,307,-267v168,0,282,105,282,260v0,132,-57,224,-217,353r273,372v37,-69,47,-129,47,-274xm455,-877v8,9,16,18,22,29v117,-92,162,-160,162,-248v0,-69,-57,-123,-137,-123v-84,0,-148,56,-148,132v0,59,19,98,101,210xm750,-236r-304,-405v-153,115,-202,184,-202,289v0,133,110,229,264,229v96,0,180,-39,242,-113","w":1208},"\u2019":{"d":"205,-922r-123,0v80,-82,125,-159,135,-237v-67,6,-121,-47,-123,-111v0,-67,56,-121,123,-121v80,0,133,64,133,158v0,96,-47,199,-145,311","w":456},"(":{"d":"391,-1376r127,0v-141,192,-217,508,-217,893v0,381,74,686,217,893r-127,0v-164,-215,-248,-514,-248,-893v0,-379,86,-686,248,-893","w":585},")":{"d":"195,410r-127,0v145,-211,217,-508,217,-893v0,-381,-78,-699,-217,-893r127,0v161,205,247,514,247,893v0,377,-84,678,-247,893","w":585},"*":{"d":"463,-1081r0,-250r100,0r0,250r238,-78r30,96r-237,76r147,203r-82,57r-145,-201r-147,201r-82,-57r147,-203r-237,-76r30,-96","w":1024},"+":{"d":"618,-748r383,0r0,123r-383,0r0,398r-129,0r0,-398r-383,0r0,-123r383,0r0,-397r129,0r0,397"},",":{"d":"195,332r-129,0v96,-107,153,-221,167,-332v-79,0,-131,-47,-131,-117v0,-69,60,-127,129,-127v86,0,142,68,142,172v0,121,-51,238,-178,404","w":493},"-":{"d":"0,-580r557,0r0,127r-557,0r0,-127","w":557},".":{"d":"260,-231v72,0,127,57,127,127v0,67,-57,124,-127,124v-67,0,-125,-57,-125,-124v0,-70,55,-127,125,-127","w":520},"\/":{"d":"98,324r815,-1690r152,0r-815,1690r-152,0","w":1163},"0":{"d":"553,-1356v281,0,448,258,448,686v0,430,-167,688,-448,688v-279,0,-447,-258,-447,-688v0,-428,168,-686,447,-686xm553,-1212v-172,0,-272,198,-272,542v0,346,100,545,272,545v174,0,274,-199,274,-545v0,-342,-100,-542,-274,-542"},"1":{"d":"350,-1022r0,-104v178,-7,256,-64,291,-213r117,0r0,1339r-168,0r0,-1022r-240,0"},"2":{"d":"315,-948r-151,0v2,-262,145,-408,399,-408v223,0,371,133,371,334v0,119,-37,195,-207,412r-356,456r581,0r0,154r-798,0r0,-135r401,-510v168,-219,205,-285,205,-375v0,-110,-84,-184,-211,-184v-139,0,-221,90,-234,256"},"3":{"d":"315,-989r-151,0v12,-232,155,-367,393,-367v225,0,375,135,375,338v0,139,-68,236,-205,297v164,53,242,160,242,332v0,244,-174,407,-430,407v-268,-2,-430,-149,-424,-401r153,0v4,162,99,252,264,252v164,0,265,-96,265,-254v8,-184,-139,-263,-367,-248r0,-147v195,18,330,-66,328,-226v0,-122,-84,-200,-213,-200v-135,0,-209,69,-230,217"},"4":{"d":"793,-457r235,0r0,144r-231,0r0,327r-172,0r0,-327r-547,0r0,-133r534,-893r181,0r0,882xm633,-457r2,-671r-393,671r391,0"},"5":{"d":"283,-1331r622,0r-16,151r-475,0r-56,363v72,-62,134,-86,228,-86v233,0,395,176,395,430v0,287,-184,491,-442,491v-220,0,-373,-137,-387,-352r159,0v23,131,103,205,224,205v161,0,268,-131,268,-330v0,-180,-96,-301,-240,-301v-102,0,-172,41,-233,139r-150,-18"},"6":{"d":"647,-1360r187,0v-152,170,-271,330,-367,490v47,-23,84,-31,139,-31v219,0,379,186,379,446v0,283,-164,473,-407,473v-248,0,-424,-194,-424,-469v0,-266,141,-524,493,-909xm569,-764v-143,0,-241,131,-241,318v0,188,102,319,247,319v140,0,236,-131,236,-319v0,-187,-98,-318,-242,-318"},"7":{"d":"131,-1331r844,0r0,137r-647,1194r-189,0r637,-1171r-645,0r0,-160"},"8":{"d":"324,-702v-105,-58,-158,-150,-158,-279v0,-215,166,-375,387,-375v219,0,385,160,385,375v0,127,-53,221,-158,279v127,71,191,178,191,325v0,232,-174,395,-418,395v-246,0,-420,-163,-420,-395v0,-147,64,-256,191,-325xm553,-1214v-127,0,-213,92,-213,223v0,133,86,225,213,225v127,0,213,-92,213,-225v0,-131,-86,-223,-213,-223xm553,-627v-145,0,-246,105,-246,252v0,148,101,252,246,252v143,0,244,-104,244,-252v0,-147,-101,-252,-244,-252"},"9":{"d":"459,29r-189,0v148,-164,269,-326,371,-492v-47,23,-86,31,-139,31v-219,0,-381,-191,-381,-447v0,-276,176,-477,416,-477v254,0,415,185,415,473v0,265,-145,535,-493,912xm543,-1210v-146,0,-248,133,-248,321v0,189,98,320,242,320v143,0,241,-131,241,-320v0,-190,-96,-321,-235,-321"},":":{"d":"260,-231v72,0,127,57,127,127v0,67,-57,124,-127,124v-67,0,-125,-57,-125,-124v0,-70,55,-127,125,-127xm260,-971v72,0,127,56,127,127v0,68,-57,125,-127,125v-67,0,-125,-57,-125,-125v0,-69,55,-127,125,-127","w":520},";":{"d":"231,-971v72,0,127,56,127,127v0,70,-57,125,-127,125v-67,0,-125,-57,-125,-125v0,-69,56,-127,125,-127xm195,332r-129,0v96,-107,153,-221,167,-332v-79,0,-131,-47,-131,-117v0,-69,60,-127,129,-127v86,0,142,68,142,172v0,121,-51,238,-178,404","w":493},"<":{"d":"954,-1182r0,164r-712,328r712,328r0,161r-886,-420r0,-141","w":1024},"=":{"d":"106,-893r895,0r0,127r-895,0r0,-127xm106,-606r895,0r0,127r-895,0r0,-127"},">":{"d":"70,-199r0,-163r712,-328r-712,-328r0,-164r886,422r0,142","w":1024},"?":{"d":"395,-231v72,0,127,55,127,127v0,69,-57,124,-127,124v-67,0,-125,-57,-125,-124v0,-70,56,-127,125,-127xm477,-397r-160,0r0,-101v0,-172,15,-204,138,-336v104,-106,129,-149,129,-223v0,-90,-62,-143,-164,-143v-109,0,-170,63,-180,190r-142,0v11,-225,129,-344,344,-344v197,0,322,113,322,289v0,115,-33,174,-172,315v-128,118,-119,172,-115,353","w":845},"@":{"d":"1008,-1012r120,0r-84,426v-23,95,-18,183,62,191v108,0,215,-191,215,-385v0,-301,-215,-502,-541,-502v-334,0,-590,258,-590,598v0,369,238,600,617,600v151,0,278,-27,416,-90r30,108v-133,60,-284,91,-448,91v-443,0,-737,-285,-737,-711v0,-397,309,-705,708,-705v387,0,658,250,658,607v0,262,-158,491,-338,491v-80,0,-138,-53,-150,-139v-63,94,-147,141,-252,141v-172,0,-293,-137,-293,-332v0,-229,162,-413,363,-413v106,0,176,47,219,147xm774,-915v-127,0,-233,133,-233,290v0,138,67,219,178,219v129,0,223,-133,223,-313v0,-123,-63,-196,-168,-196","w":1501},"A":{"d":"506,-1372r160,0r469,1372r-181,0r-114,-346r-508,0r-115,346r-180,0xm793,-498r-207,-655r-207,655r414,0","w":1173},"B":{"d":"174,-1366v189,2,504,-12,604,33v133,47,211,159,211,309v0,156,-71,248,-227,295v205,49,299,160,299,346v0,166,-96,293,-234,348v-93,37,-446,33,-653,35r0,-1366xm346,-784r125,0v248,0,342,-62,342,-226v0,-88,-43,-155,-115,-184v-49,-27,-231,-26,-352,-25r0,435xm346,-147v144,1,362,-3,418,-33v67,-36,113,-113,113,-213v0,-109,-57,-185,-146,-223v-61,-26,-255,-24,-385,-25r0,494","w":1140},"C":{"d":"1126,-975r-159,0v-37,-176,-136,-262,-303,-262v-228,0,-379,217,-379,545v0,352,145,563,385,563v184,0,293,-119,317,-344r162,0v-23,319,-193,498,-473,498v-357,0,-578,-275,-578,-715v0,-420,230,-701,572,-701v260,0,426,152,456,416","w":1230},"D":{"d":"174,-1366r238,0v252,0,360,18,467,76v192,104,313,338,313,606v0,274,-119,504,-315,608v-115,62,-205,76,-488,76r-215,0r0,-1366xm348,-152r105,0v200,0,266,-12,354,-67v131,-84,201,-248,201,-473v0,-213,-82,-387,-222,-465v-61,-35,-127,-51,-229,-55r-209,-2r0,1062","w":1290},"E":{"d":"348,-782r553,0r0,151r-553,0r0,479r613,0r0,152r-787,0r0,-1366r772,0r0,152r-598,0r0,432","w":1042},"F":{"d":"348,-782r553,0r0,151r-553,0r0,631r-174,0r0,-1366r772,0r0,152r-598,0r0,432","w":1009},"G":{"d":"725,-684r432,0r0,563v-133,96,-291,146,-463,146v-370,0,-596,-269,-596,-709v0,-430,226,-707,578,-707v266,0,434,150,463,414r-160,0v-37,-176,-135,-260,-303,-260v-244,0,-391,207,-391,553v0,352,149,555,411,555v105,0,211,-31,308,-88r0,-322r-279,0r0,-145","w":1282},"H":{"d":"348,-786r623,0r0,-580r174,0r0,1366r-174,0r0,-641r-623,0r0,641r-174,0r0,-1366r174,0r0,580","w":1318},"I":{"d":"350,0r-178,0r0,-1366r178,0r0,1366","w":522},"J":{"d":"262,-1366r178,0r0,1090v0,202,-6,247,-37,311v-55,119,-209,175,-407,162r0,-150v121,10,221,-24,246,-90v18,-37,20,-68,20,-233r0,-1090","w":608},"K":{"d":"895,-1366r209,0r-549,643r598,723r-235,0r-566,-717xm174,-1366r174,0r0,1366r-174,0r0,-1366","w":1169},"L":{"d":"174,-1366r180,0r0,1214r586,0r0,152r-766,0r0,-1366","w":989},"M":{"d":"174,-1366r258,0r367,1176r366,-1176r258,0r0,1366r-163,0r0,-1182r-373,1182r-178,0r-371,-1182r0,1182r-164,0r0,-1366","w":1595},"N":{"d":"174,-1366r188,0r637,1102r0,-1102r164,0r0,1366r-186,0r-637,-1100r0,1100r-166,0r0,-1366","w":1335},"O":{"d":"666,-1391v340,0,569,287,569,707v0,422,-229,709,-569,709v-338,0,-568,-287,-568,-709v0,-420,230,-707,568,-707xm666,-1239v-232,0,-381,217,-381,555v0,338,149,557,381,557v233,0,383,-219,383,-557v0,-336,-150,-555,-383,-555","w":1335},"P":{"d":"174,-1366v202,1,523,-10,623,37v149,51,243,194,243,377v0,174,-84,311,-223,364v-79,41,-279,42,-469,41r0,547r-174,0r0,-1366xm348,-698v123,0,291,2,344,-19v107,-28,164,-112,164,-241v0,-105,-52,-185,-129,-224v-53,-27,-226,-33,-379,-32r0,516","w":1093},"Q":{"d":"1149,-283r270,297r-209,0r-153,-164v-103,113,-240,175,-389,175v-336,0,-570,-289,-570,-709v0,-418,232,-707,570,-707v336,0,567,289,567,707v0,152,-27,274,-86,401xm668,-1239v-230,0,-383,223,-383,555v0,332,153,555,383,555v227,0,381,-223,381,-555v0,-332,-154,-555,-381,-555","w":1359},"R":{"d":"174,-1366r260,0v215,0,297,10,389,47v133,55,215,186,215,344v0,182,-92,307,-272,375r350,600r-209,0r-332,-571r-227,0r0,571r-174,0r0,-1366xm348,-723v134,0,313,4,361,-27v92,-32,145,-114,145,-225v0,-98,-43,-172,-121,-207v-61,-28,-106,-32,-295,-32r-90,0r0,491","w":1161},"S":{"d":"983,-1004r-170,0v-14,-149,-106,-233,-254,-233v-139,0,-242,82,-242,197v0,53,29,102,80,135v45,28,54,33,238,114v188,84,258,125,309,187v51,61,78,143,78,233v0,236,-180,396,-449,396v-299,0,-460,-154,-477,-451r172,0v13,195,119,297,305,297v156,0,269,-90,269,-215v0,-68,-27,-119,-84,-164v-43,-33,-78,-51,-217,-113v-150,-65,-236,-112,-285,-155v-76,-66,-115,-152,-115,-250v0,-211,176,-365,418,-365v256,0,412,142,424,387","w":1128},"T":{"d":"39,-1366r887,0r0,152r-357,0r0,1214r-174,0r0,-1214r-356,0r0,-152","w":964},"U":{"d":"156,-1366r174,0r0,801v0,194,8,246,43,307v49,80,153,129,278,129v146,0,256,-66,297,-174v19,-51,23,-103,23,-262r0,-801r174,0r0,803v0,209,-6,258,-37,334v-68,159,-238,254,-457,254v-221,0,-391,-95,-458,-254v-31,-76,-37,-125,-37,-334r0,-803","w":1300},"V":{"d":"25,-1366r186,0r377,1163r373,-1163r182,0r-471,1372r-178,0","w":1169},"W":{"d":"33,-1366r166,0r264,1145r276,-1145r152,0r276,1145r267,-1145r163,0r-331,1372r-191,0r-262,-1032r-260,1032r-191,0","w":1628},"X":{"d":"63,-1366r201,0r303,504r303,-504r203,0r-405,651r426,715r-199,0r-328,-553r-331,553r-199,0r428,-715","w":1128},"Y":{"d":"18,-1366r201,0r318,621r315,-621r197,0r-428,799r0,567r-172,0r0,-567","w":1069},"Z":{"d":"106,-1366r848,0r0,121r-690,1093r674,0r0,152r-879,0r0,-137r680,-1080r-633,0r0,-149","w":1011},"[":{"d":"180,-1366r328,0r0,133r-176,0r0,1495r176,0r0,135r-328,0r0,-1763","w":585},"\\":{"d":"1065,324r-152,0r-815,-1690r152,0","w":1163},"]":{"d":"403,397r-327,0r0,-133r176,0r0,-1495r-176,0r0,-135r327,0r0,1763","w":585},"^":{"d":"223,-739r-176,0r359,-631r215,0r358,631r-178,0r-289,-502","w":1024},"_":{"d":"0,129r1024,0r0,150r-1024,0r0,-150","w":1024},"\u2018":{"d":"250,-1389r125,0v-76,72,-125,158,-137,238v73,-3,123,42,124,111v0,65,-55,118,-122,118v-80,0,-134,-63,-134,-157v0,-97,54,-211,144,-310","w":444},"a":{"d":"289,-709r-162,0v20,-186,152,-288,373,-288v164,0,278,57,317,157v48,122,20,411,27,592v0,146,4,185,28,248r-155,0v-15,-49,-19,-68,-21,-127v-57,104,-149,154,-284,154v-191,0,-318,-111,-318,-277v0,-139,76,-239,223,-295v93,-35,175,-55,365,-86v7,-156,-36,-234,-190,-229v-117,0,-185,51,-203,151xm449,-109v159,-11,244,-111,233,-315r0,-88v-307,51,-418,115,-418,244v0,96,74,159,185,159","w":989},"b":{"d":"147,-1372r164,0r0,538v76,-114,158,-163,271,-163v229,0,387,204,387,501v0,318,-158,523,-406,523v-114,0,-198,-52,-260,-162v0,55,-4,90,-18,135r-152,0v12,-61,14,-98,14,-270r0,-1102xm565,-856v-155,0,-256,145,-256,375v0,219,97,366,240,366v156,0,250,-141,250,-374v0,-224,-92,-367,-234,-367","w":1056},"c":{"d":"870,-653r-161,0v-25,-148,-84,-207,-205,-207v-152,0,-246,147,-246,379v0,227,96,368,250,368v129,0,186,-63,207,-223r164,0v-17,234,-150,363,-373,363v-248,0,-418,-205,-418,-506v0,-314,164,-518,418,-518v215,0,342,118,364,344","w":964},"d":{"d":"909,-1372r0,1081v0,172,4,230,19,291r-158,0v-13,-52,-17,-82,-12,-137v-68,114,-148,164,-271,164v-241,0,-397,-197,-397,-504v0,-305,160,-520,383,-520v127,0,201,43,272,157r0,-532r164,0xm504,-856v-148,0,-244,145,-244,367v0,233,90,374,240,374v153,0,248,-141,248,-374v0,-226,-95,-367,-244,-367","w":1056},"e":{"d":"920,-455r-664,0v8,222,102,342,272,342v105,0,166,-39,217,-141r152,14v-57,177,-184,267,-375,267v-262,0,-434,-199,-434,-502v0,-318,168,-522,430,-522v256,-1,414,216,402,542xm260,-582r490,0v-17,-182,-101,-280,-236,-280v-137,0,-221,94,-254,280","w":1005},"f":{"d":"334,-971r241,0r0,131r-235,0r0,840r-172,0r0,-840r-135,0r0,-131r135,0v-2,-135,9,-259,43,-313v71,-114,254,-139,391,-80r0,147v-70,-28,-100,-34,-143,-34v-94,0,-125,51,-125,221r0,59","w":600},"g":{"d":"965,-971r0,123r-199,-2v47,45,78,127,78,205v0,178,-84,260,-316,305v-118,23,-122,23,-153,37v-35,14,-56,37,-56,59v0,43,19,47,199,66v184,18,248,33,309,65v78,45,123,127,123,224v0,188,-170,305,-442,305v-283,0,-453,-109,-453,-287v0,-109,66,-184,203,-231v-78,-31,-104,-62,-104,-117v0,-62,49,-107,172,-154v-127,-53,-187,-141,-187,-278v0,-201,146,-334,365,-334v57,0,96,6,160,24xm496,-854v-119,0,-203,82,-203,201v0,112,80,188,196,188v123,0,203,-74,203,-188v0,-119,-80,-201,-196,-201xm485,-35v-180,0,-282,60,-282,162v0,94,121,158,299,158v178,0,289,-62,289,-160v0,-105,-107,-160,-306,-160","w":1007},"h":{"d":"147,-1372r164,0r0,514v74,-96,160,-139,277,-139v123,0,227,51,276,135v35,57,43,121,43,305r0,557r-164,0r0,-539v0,-127,-6,-180,-28,-223v-31,-57,-88,-88,-170,-88v-150,0,-234,117,-234,324r0,526r-164,0r0,-1372","w":1050},"i":{"d":"147,-971r172,0r0,971r-172,0r0,-971xm236,-1386v65,0,110,47,110,114v0,64,-47,111,-110,111v-70,0,-115,-45,-115,-113v0,-63,49,-112,115,-112","w":468},"j":{"d":"205,-971r172,0r0,875v0,217,-12,282,-68,354v-66,95,-196,134,-370,123r0,-143v114,9,206,-21,237,-84v23,-41,29,-88,29,-248r0,-877xm293,-1386v65,0,110,47,110,114v0,64,-47,111,-110,111v-70,0,-115,-45,-115,-113v0,-63,49,-112,115,-112","w":522},"k":{"d":"715,-971r198,0r-397,441r428,530r-225,0r-404,-526xm147,-1372r164,0r0,1372r-164,0r0,-1372","w":1007},"l":{"d":"147,-1372r172,0r0,1372r-172,0r0,-1372","w":468},"m":{"d":"125,-971r162,0v14,41,20,74,20,133v64,-110,154,-159,285,-159v133,0,217,53,268,168v70,-115,166,-168,303,-168v121,0,211,47,256,129v31,59,35,96,35,280r0,588r-164,0r0,-588v0,-205,-41,-262,-186,-262v-146,0,-219,96,-219,281r0,569r-164,0r0,-565v0,-140,-4,-166,-23,-203v-26,-53,-84,-82,-161,-82v-146,0,-222,100,-222,289r0,561r-163,0r0,-684v0,-197,-2,-217,-27,-287","w":1595},"n":{"d":"596,-997v206,5,322,119,313,350r0,647r-164,0r0,-539v0,-139,-4,-178,-28,-223v-29,-57,-84,-88,-160,-88v-158,0,-244,113,-244,318r0,532r-163,0r0,-637v0,-233,-3,-248,-27,-334r160,0v16,43,18,68,20,137v66,-108,166,-163,293,-163","w":1052},"o":{"d":"524,-997v254,0,434,213,434,514v0,299,-180,510,-434,510v-256,0,-436,-211,-436,-510v0,-301,180,-514,436,-514xm524,-860v-159,0,-266,151,-266,377v0,221,107,372,266,372v158,0,264,-151,264,-372v0,-226,-106,-377,-264,-377","w":1044},"p":{"d":"147,403r0,-1081v0,-174,-4,-227,-18,-293r158,0v14,39,18,70,18,137v70,-114,150,-163,273,-163v235,0,389,204,389,520v0,301,-156,504,-385,504v-113,0,-197,-47,-271,-156r0,532r-164,0xm559,-856v-151,0,-250,145,-250,373v0,223,101,368,254,368v144,0,234,-139,234,-364v0,-232,-92,-377,-238,-377","w":1056},"q":{"d":"745,403r0,-530v-77,113,-147,154,-270,154v-225,0,-385,-207,-385,-504v0,-314,158,-520,397,-520v123,0,205,51,265,161v0,-59,4,-96,18,-135r158,0v-15,64,-19,121,-19,293r0,1081r-164,0xm504,-856v-148,0,-244,147,-244,379v0,223,92,362,242,362v149,0,248,-145,248,-368v0,-224,-99,-373,-246,-373","w":1056},"r":{"d":"135,-971r158,0v15,63,23,131,14,207v72,-162,152,-233,260,-233v31,0,66,8,107,28r0,166v-58,-33,-92,-45,-131,-45v-146,0,-226,143,-226,410r0,438r-165,0r0,-643v0,-229,-2,-238,-17,-328","w":690},"s":{"d":"813,-698r-160,0v-12,-113,-73,-166,-188,-166v-105,0,-178,55,-178,135v0,78,37,104,227,162v248,71,313,133,313,288v0,193,-137,306,-368,306v-236,0,-371,-121,-371,-332r158,0v12,133,84,199,213,199v125,0,200,-60,200,-158v2,-85,-71,-116,-147,-142v-8,-2,-59,-18,-131,-40v-191,-58,-260,-132,-260,-269v0,-170,139,-282,350,-282v207,0,332,108,342,299","w":917},"t":{"d":"367,-971r225,0r-2,131r-225,0r-9,555v0,127,21,160,105,160v45,0,92,-10,145,-33r-4,144v-70,24,-117,34,-180,34v-225,15,-254,-163,-234,-393r13,-467r-148,0r2,-131r150,0r6,-280r162,0","w":661},"u":{"d":"143,-971r164,0r0,586v0,192,53,264,197,264v149,0,227,-104,227,-305r0,-545r164,0r0,676v0,225,0,217,23,295r-158,0v-15,-39,-19,-72,-21,-127v-61,109,-139,154,-266,154v-129,0,-237,-60,-289,-158v-30,-53,-41,-121,-41,-252r0,-588","w":1042},"v":{"d":"20,-971r175,0r260,791r262,-791r172,0r-344,981r-180,0","w":913},"w":{"d":"31,-971r170,0r202,752r222,-752r139,0r221,752r205,-752r170,0r-285,981r-166,0r-217,-725r-213,725r-166,0","w":1388},"x":{"d":"59,-971r195,0r211,332r213,-332r199,0r-312,455r353,516r-199,0r-254,-385r-256,385r-199,0r355,-516","w":927},"y":{"d":"33,-971r176,0r254,795r264,-795r172,0r-321,912v-68,192,-48,135,-64,172v-93,224,-217,310,-459,295r0,-146v187,9,238,-31,316,-246","w":921},"z":{"d":"90,-971r690,0r0,123r-540,711r532,0r0,137r-727,0r0,-129r533,-705r-488,0r0,-137","w":825},"{":{"d":"356,-1047r0,312v0,139,-24,192,-116,252v92,57,116,112,116,252r0,311v0,170,29,201,191,201r0,127v-246,14,-346,-60,-340,-324r0,-320v0,-120,-31,-172,-115,-194r0,-109v84,-20,115,-73,115,-192r0,-322v-4,-262,91,-331,340,-323r0,129v-162,-2,-191,28,-191,200","w":585},"|":{"d":"430,-1366r164,0r0,1708r-164,0r0,-1708","w":1024},"}":{"d":"229,80r0,-311v0,-140,25,-195,117,-252v-92,-60,-117,-113,-117,-252r0,-312v0,-172,-30,-202,-192,-200r0,-129v248,-8,348,59,342,323r0,322v0,119,31,170,113,192r0,109v-82,22,-113,74,-113,192r0,322v6,265,-96,338,-342,324r0,-127v162,0,192,-31,192,-201","w":585},"~":{"d":"287,-1188r-97,-61v89,-181,160,-242,281,-242v59,0,117,16,231,68v121,55,148,63,197,63v74,0,119,-35,180,-135r97,57v-113,219,-224,285,-447,199v-16,-6,27,14,-139,-59v-152,-66,-217,-44,-303,110","w":1366},"\u00a1":{"d":"344,387r-178,0r24,-940r138,0xm256,-971v68,0,125,58,125,125v0,70,-55,127,-125,127v-72,0,-127,-55,-127,-127v0,-69,57,-125,127,-125","w":512},"\u00a2":{"d":"608,-1065r0,739v109,-16,166,-86,178,-219r164,0v-8,205,-143,344,-342,359r0,204r-92,0r0,-206v-225,-37,-358,-222,-358,-500v0,-283,133,-473,362,-514r0,-187r92,0r0,185v199,14,310,129,332,342r-166,0v-14,-125,-69,-191,-170,-203xm520,-330r0,-729v-125,47,-194,180,-194,375v0,188,73,322,194,354"},"\u00a3":{"d":"504,-768r309,0r0,131r-332,0v-35,229,-78,383,-143,502v157,-37,225,-18,418,-19v96,0,129,-41,137,-165r143,0v4,105,-26,198,-75,253v-52,52,-107,66,-254,66r-586,0v102,-148,147,-417,184,-635r-188,0r0,-133r215,0v35,-207,53,-295,80,-381v53,-170,143,-240,301,-240v182,0,270,93,280,297r-151,0v-8,-108,-45,-149,-127,-149v-90,0,-127,43,-162,192v-10,52,-25,121,-33,185v-6,28,-6,37,-16,96"},"\u2044":{"d":"414,-1331r141,0r-778,1331r-139,0","w":190},"\u00a5":{"d":"811,-879r195,0r0,113r-252,0r-82,156r334,0r0,112r-361,0r0,498r-174,0r0,-498r-371,0r0,-112r344,0r-84,-156r-260,0r0,-113r201,0r-258,-487r197,0r317,625r313,-625r193,0"},"\u0192":{"d":"733,-971r213,0r0,131r-237,0r-115,652v-37,217,-55,280,-90,342v-96,166,-300,162,-475,57r26,-145v84,53,142,73,205,73v98,0,119,-41,170,-336r113,-643r-193,0r0,-131r217,0r23,-131v24,-141,49,-213,88,-264v86,-118,256,-130,397,-53r-24,137v-76,-33,-115,-45,-152,-45v-82,0,-113,55,-149,258"},"\u00a7":{"d":"870,-1006r-145,0v-16,-147,-80,-213,-207,-213v-119,0,-196,66,-196,162v0,82,26,107,206,205v316,172,367,221,367,356v0,113,-57,197,-180,267v100,73,139,145,139,249v0,197,-137,318,-365,318v-247,0,-376,-121,-380,-358r147,0v18,159,84,223,229,223v131,0,211,-68,211,-180v6,-140,-206,-210,-315,-281r-39,-21v-156,-88,-223,-174,-223,-282v0,-107,47,-172,184,-256v-100,-74,-137,-139,-137,-236v0,-174,147,-303,348,-303v219,0,348,125,356,350xm420,-745v-171,82,-200,220,-47,317v49,31,164,98,227,129v147,-70,199,-216,62,-307v-56,-37,-166,-101,-242,-139","w":1024},"\u00a4":{"d":"100,-256r195,-199v-133,-169,-137,-399,0,-575r-199,-199r94,-94r199,197v178,-131,408,-135,584,0r198,-197r93,94r-197,197v137,172,137,403,4,577r197,197r-94,96r-197,-198v-181,132,-396,135,-588,2r-194,194xm682,-1075v-184,0,-332,149,-332,334v0,182,150,331,332,331v182,0,332,-149,332,-331v0,-185,-148,-334,-332,-334","w":1366},"'":{"d":"313,-817r-114,0r-29,-549r172,0","w":512},"\u201c":{"d":"575,-1389r125,0v-75,72,-125,158,-137,238v74,-3,124,45,125,111v0,65,-55,118,-123,118v-80,0,-133,-63,-133,-155v0,-97,53,-213,143,-312xm250,-1389r125,0v-76,72,-125,158,-137,238v73,-3,123,42,124,111v0,65,-55,118,-122,118v-80,0,-134,-63,-134,-157v0,-97,54,-211,144,-310","w":770},"\u00ab":{"d":"688,0r-127,0r-192,-475r192,-496r127,0r-162,496xm399,0r-127,0r-192,-475r192,-496r127,0r-163,496","w":825},"\u2039":{"d":"395,0r-135,0r-192,-477r192,-494r135,0r-162,494","w":518},"\u203a":{"d":"123,-971r135,0r193,477r-193,494r-135,0r162,-494","w":518},"\ufb01":{"d":"334,-971r241,0r0,131r-235,0r0,840r-172,0r0,-840r-135,0r0,-131r135,0v-1,-132,1,-263,41,-309v62,-120,253,-146,393,-84r0,147v-67,-28,-98,-34,-139,-34v-101,0,-129,49,-129,221r0,59xm748,-971r172,0r0,971r-172,0r0,-971xm836,-1386v65,0,110,47,110,114v0,64,-47,111,-110,111v-70,0,-115,-45,-115,-113v0,-63,49,-112,115,-112","w":1067},"\ufb02":{"d":"334,-971r241,0r0,131r-235,0r0,840r-172,0r0,-840r-135,0r0,-131r135,0v-1,-132,1,-263,41,-309v62,-120,253,-146,393,-84r0,147v-67,-28,-98,-34,-139,-34v-101,0,-129,49,-129,221r0,59xm748,-1372r172,0r0,1372r-172,0r0,-1372","w":1067},"\u2013":{"d":"133,-580r758,0r0,127r-758,0r0,-127","w":1024},"\u2020":{"d":"434,-1331r160,0r0,368r348,0r0,136r-348,0r0,1097r-160,0r0,-1097r-352,0r0,-136r352,0r0,-368","w":1024},"\u2021":{"d":"434,-1331r156,0r0,221r354,0r0,135r-354,0r0,846r354,0r0,135r-354,0r0,264r-156,0r0,-264r-352,0r0,-135r352,0r0,-846r-352,0r0,-135r352,0r0,-221","w":1024},"\u00b7":{"d":"260,-639v72,0,127,57,127,127v0,68,-57,125,-127,125v-67,0,-125,-57,-125,-125v0,-70,55,-127,125,-127","w":522},"\u00b6":{"d":"449,199r0,-846v-243,9,-402,-138,-404,-354v0,-140,68,-256,180,-314v68,-35,164,-51,297,-51r551,0r0,131r-127,0r0,1434r-145,0r0,-1434r-207,0r0,1434r-145,0","w":1218},"\u2022":{"d":"688,-977v154,0,281,127,281,283v0,155,-127,284,-281,284v-160,0,-287,-127,-287,-284v0,-156,127,-283,287,-283","w":1366},"\u201a":{"d":"205,238r-123,0v78,-80,125,-160,135,-238v-74,0,-123,-43,-123,-113v0,-65,56,-118,123,-118v80,0,133,63,133,155v0,99,-47,199,-145,314","w":456},"\u201e":{"d":"193,240r-123,0v80,-82,123,-160,135,-240v-73,2,-122,-45,-123,-111v0,-65,55,-118,123,-118v80,0,133,63,133,157v0,95,-47,195,-145,312xm535,240r-123,0v80,-82,125,-162,135,-240v-73,2,-122,-45,-123,-111v0,-65,55,-118,123,-118v80,0,133,63,133,157v0,95,-47,195,-145,312","w":786},"\u201d":{"d":"193,-922r-123,0v77,-82,123,-159,135,-237v-74,0,-123,-43,-123,-113v0,-65,55,-119,123,-119v80,0,133,64,133,158v0,96,-47,197,-145,311xm535,-922r-123,0v77,-82,123,-159,135,-237v-74,0,-123,-43,-123,-113v0,-65,55,-119,123,-119v80,0,133,64,133,158v0,96,-47,197,-145,311","w":786},"\u00bb":{"d":"135,-971r127,0r193,477r-193,494r-127,0r162,-494xm424,-971r127,0r192,477r-192,494r-127,0r164,-494","w":825},"\u2026":{"d":"260,-231v72,0,127,57,127,127v0,67,-57,124,-127,124v-67,0,-125,-57,-125,-124v0,-70,55,-127,125,-127xm713,-231v71,0,127,55,127,127v0,67,-58,124,-127,124v-68,0,-125,-57,-125,-124v0,-70,55,-127,125,-127xm1165,-231v72,0,127,55,127,127v0,69,-57,124,-127,124v-67,0,-125,-57,-125,-124v0,-70,56,-127,125,-127","w":1427},"\u2030":{"d":"944,-1366r143,0r-800,1366r-144,0xm913,-647v150,0,267,143,267,328v0,186,-117,329,-267,329v-147,0,-264,-143,-264,-329v0,-185,117,-328,264,-328xm913,-537v-82,0,-139,91,-139,218v0,129,57,219,139,219v82,0,142,-90,142,-219v0,-127,-60,-218,-142,-218xm1532,-647v149,0,264,143,264,328v0,186,-115,329,-264,329v-150,0,-264,-143,-264,-329v0,-185,114,-328,264,-328xm1532,-537v-82,0,-139,91,-139,218v0,129,57,219,139,219v82,0,139,-90,139,-219v0,-127,-57,-218,-139,-218xm317,-1376v150,0,267,143,267,329v0,185,-117,328,-267,328v-147,0,-264,-143,-264,-328v0,-186,117,-329,264,-329xm317,-1266v-81,0,-139,90,-139,219v0,127,60,218,139,218v82,0,142,-91,142,-218v0,-129,-60,-219,-142,-219","w":1847},"\u00bf":{"d":"465,-971v67,0,125,58,125,125v0,70,-55,127,-125,127v-72,0,-127,-55,-127,-127v0,-69,57,-125,127,-125xm383,-553r160,0r0,100v0,172,-15,205,-137,334v-105,107,-130,152,-130,225v0,89,62,142,164,142v109,0,170,-64,181,-189r141,0v-8,224,-129,342,-344,342v-197,0,-322,-112,-322,-288v0,-115,31,-172,172,-314v128,-116,119,-172,115,-352","w":845},"`":{"d":"651,-1114r-133,0r-315,-291r225,0","w":1024},"\u00df":{"d":"135,0r0,-866v0,-224,8,-283,49,-357v58,-102,174,-159,328,-159v205,0,356,137,356,323v0,148,-71,240,-223,285v215,45,318,172,318,393v4,281,-249,481,-506,358r0,-147v47,25,88,37,135,37v123,0,201,-98,201,-252v0,-201,-136,-311,-379,-311r0,-142v175,9,288,-62,286,-209v0,-118,-79,-196,-198,-196v-88,0,-154,39,-178,106v-23,56,-25,86,-25,258r0,879r-164,0","w":1050}," ":{"w":512}}});;Cufon.registerFont({"w":1091,"face":{"font-family":"CSregular","font-weight":"400","font-stretch":"normal","units-per-em":"2048","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"1638","descent":"-410","x-height":"25","bbox":"-367 -1753 1726 418","underline-thickness":"133.12","underline-position":"-200.704","stemh":"125","stemv":"147","unicode-range":"U+0020-U+FB02"},"glyphs":{"\u00c4":{"d":"512,-1374r133,0r471,1374r-160,0r-120,-362r-514,0r-123,362r-158,0xm793,-496r-215,-680r-216,680r431,0xm397,-1753v64,0,115,51,115,115v0,65,-51,116,-115,116v-65,0,-116,-51,-116,-116v0,-64,51,-115,116,-115xm762,-1753v63,0,115,51,115,115v0,65,-52,116,-115,116v-66,0,-117,-51,-117,-116v0,-64,51,-115,117,-115","w":1159},"\u00d6":{"d":"659,-1391v332,0,558,287,558,707v0,420,-226,707,-558,707v-329,0,-555,-287,-555,-707v0,-420,226,-707,555,-707xm659,-1255v-235,0,-391,225,-391,571v0,344,156,571,391,571v238,0,394,-227,394,-571v0,-346,-156,-571,-394,-571xm479,-1753v64,0,115,51,115,115v0,65,-51,116,-115,116v-65,0,-117,-51,-117,-116v0,-64,52,-115,117,-115xm844,-1753v63,0,114,51,114,115v0,65,-51,116,-114,116v-66,0,-117,-51,-117,-116v0,-64,51,-115,117,-115","w":1323},"\u00dc":{"d":"158,-1366r153,0r0,805v0,209,8,260,49,323v52,78,156,125,281,125v145,0,260,-63,301,-168v23,-53,27,-106,27,-280r0,-805r153,0r0,807v0,217,-4,254,-32,328v-66,159,-232,254,-449,254v-219,0,-385,-95,-451,-254v-28,-74,-32,-111,-32,-328r0,-807xm459,-1753v63,0,114,51,114,115v0,65,-51,116,-114,116v-66,0,-117,-51,-117,-116v0,-64,51,-115,117,-115xm823,-1753v64,0,115,51,115,115v0,65,-51,116,-115,116v-65,0,-116,-51,-116,-116v0,-64,51,-115,116,-115","w":1280},"\u00e4":{"d":"270,-717r-141,0v21,-180,147,-280,358,-280v164,0,279,57,316,159v58,180,-16,657,49,838r-137,0v-15,-49,-17,-66,-23,-131v-57,104,-151,156,-286,156v-185,0,-312,-111,-312,-273v0,-221,135,-311,590,-385v7,-165,-37,-246,-201,-241v-123,0,-192,51,-213,157xm434,-96v169,-12,260,-118,250,-334r0,-96v-328,59,-442,127,-442,262v0,100,75,168,192,168xm322,-1376v59,0,106,47,106,106v0,62,-47,109,-106,109v-60,0,-109,-49,-109,-109v0,-57,49,-106,109,-106xm668,-1376v61,0,108,47,108,106v0,62,-47,109,-108,109v-58,0,-107,-49,-107,-109v0,-59,47,-106,107,-106","w":974},"\u00f6":{"d":"516,-997v250,0,424,209,424,512v0,301,-174,510,-424,510v-250,0,-424,-209,-424,-510v0,-301,174,-512,424,-512xm516,-874v-166,0,-276,155,-276,389v0,231,110,387,276,387v166,0,277,-156,277,-387v0,-234,-111,-389,-277,-389xm342,-1376v59,0,107,47,107,106v0,62,-48,109,-107,109v-59,0,-109,-49,-109,-109v0,-57,50,-106,109,-106xm688,-1376v62,0,109,47,109,106v0,62,-47,109,-109,109v-57,0,-106,-49,-106,-109v0,-59,47,-106,106,-106","w":1032},"\u00fc":{"d":"145,-971r144,0r0,594v0,199,53,273,198,273v156,0,238,-109,238,-316r0,-551r143,0r0,676v0,225,0,221,23,295r-141,0v-15,-45,-19,-74,-21,-129v-57,106,-133,154,-256,154v-129,0,-237,-58,-289,-156v-30,-53,-39,-113,-39,-246r0,-594xm334,-1376v59,0,106,47,106,106v0,62,-47,109,-106,109v-60,0,-109,-49,-109,-109v0,-57,49,-106,109,-106xm680,-1376v61,0,108,47,108,106v0,62,-47,109,-108,109v-57,0,-107,-49,-107,-109v0,-59,48,-106,107,-106","w":1017},"!":{"d":"178,-1339r156,0r-25,956r-114,0xm254,-215v68,0,119,53,119,119v0,63,-54,116,-119,116v-64,0,-117,-53,-117,-116v0,-66,51,-119,117,-119","w":509},"\"":{"d":"272,-817r-104,0r-25,-549r154,0xm553,-817r-104,0r-23,-549r152,0","w":720},"#":{"d":"1114,-547r-18,113r-234,0r-69,434r-129,0r69,-434r-305,0r-70,434r-129,0r70,-434r-233,0r18,-113r233,0r48,-297r-234,0r16,-112r234,0r65,-410r129,0r-65,410r305,0r64,-410r131,0r-66,410r236,0r-19,112r-235,0r-47,297r235,0xm797,-844r-303,0r-48,297r304,0","w":1228},"$":{"d":"588,-1253r0,477v309,108,411,211,411,414v0,215,-161,366,-411,382r0,150r-82,0r0,-147v-268,-23,-402,-154,-414,-414r148,0v14,174,92,256,266,278r0,-530v-160,-57,-184,-68,-232,-98v-100,-64,-149,-156,-149,-279v0,-207,149,-350,381,-369r0,-133r82,0r0,133v221,21,348,134,364,328r-153,0v-15,-113,-86,-178,-211,-192xm506,-805r0,-448v-146,20,-232,100,-232,217v0,80,35,137,105,178v24,12,43,20,127,53xm588,-612r0,501v160,-16,256,-104,256,-237v0,-78,-37,-150,-101,-195v-30,-20,-61,-35,-155,-69"},"%":{"d":"924,-1366r127,0r-801,1366r-127,0xm866,-645v146,0,258,143,258,328v0,184,-112,327,-258,327v-147,0,-260,-143,-260,-327v0,-185,113,-328,260,-328xm864,-543v-82,0,-141,94,-141,226v0,131,59,225,141,225v84,0,144,-94,144,-225v0,-132,-60,-226,-144,-226xm309,-1376v146,0,258,143,258,327v0,185,-112,328,-258,328v-147,0,-260,-143,-260,-328v0,-184,113,-327,260,-327xm309,-1274v-84,0,-143,94,-143,225v0,131,59,226,143,226v82,0,142,-95,142,-226v0,-131,-60,-225,-142,-225","w":1173},"&":{"d":"893,-629r123,0v3,171,-18,286,-90,393r176,236r-166,0r-94,-129v-97,102,-193,141,-348,141v-238,0,-406,-151,-406,-364v0,-156,68,-258,274,-416v-139,-180,-157,-219,-157,-319v0,-152,125,-263,297,-263v168,0,276,101,276,252v0,133,-57,224,-221,357r287,391v35,-72,47,-139,49,-279xm344,-1094v-15,55,59,153,131,252v123,-96,170,-168,170,-262v0,-74,-61,-129,-143,-129v-90,0,-158,59,-158,139xm762,-233r-316,-422v-163,120,-213,192,-213,307v0,135,119,239,273,239v102,0,190,-43,256,-124","w":1212},"\u2019":{"d":"207,-928r-125,0v84,-84,131,-159,145,-239v-71,6,-118,-45,-121,-109v0,-63,54,-115,119,-115v76,0,127,60,127,150v0,98,-47,201,-145,313","w":464},"(":{"d":"395,-1376r111,0v-141,192,-217,502,-217,893v0,387,73,690,217,893r-111,0v-164,-203,-248,-506,-248,-893v0,-389,86,-699,248,-893","w":575},")":{"d":"178,410r-110,0v145,-209,217,-504,217,-893v0,-389,-76,-703,-217,-893r110,0v162,192,248,504,248,893v0,387,-84,688,-248,893","w":575},"*":{"d":"463,-1079r0,-252r96,0r0,252r240,-78r28,92r-237,78r147,203r-80,57r-145,-203r-147,203r-80,-57r147,-203r-237,-78r28,-92","w":1024},"+":{"d":"602,-741r381,0r0,106r-381,0r0,397r-113,0r0,-397r-380,0r0,-106r380,0r0,-396r113,0r0,396"},",":{"d":"199,299r-129,0v94,-98,149,-199,166,-297v-75,6,-125,-43,-127,-113v0,-65,55,-118,122,-118v80,0,134,63,134,159v0,113,-50,224,-166,369","w":489},"-":{"d":"0,-571r561,0r0,112r-561,0r0,-112","w":561},".":{"d":"260,-215v68,0,119,53,119,119v0,63,-53,116,-119,116v-63,0,-117,-53,-117,-116v0,-66,52,-119,117,-119","w":522},"\/":{"d":"111,305r802,-1671r144,0r-803,1671r-143,0","w":1167},"0":{"d":"545,-1352v274,0,438,258,438,684v0,428,-164,686,-438,686v-273,0,-436,-258,-436,-686v0,-426,163,-684,436,-684xm545,-1227v-178,0,-283,205,-283,559v0,357,105,562,283,562v180,0,284,-205,284,-562v0,-354,-104,-559,-284,-559"},"1":{"d":"352,-1038r0,-97v176,-8,248,-61,283,-206r102,0r0,1341r-145,0r0,-1038r-240,0"},"2":{"d":"297,-946r-135,0v4,-262,141,-406,391,-406v217,0,362,129,362,324v0,121,-34,188,-204,416v-27,32,14,-21,-144,184r-49,68r-176,227r594,0r0,133r-782,0r0,-117r397,-518v182,-242,211,-295,211,-389v0,-117,-86,-195,-221,-195v-150,0,-232,93,-244,273"},"3":{"d":"307,-991r-133,0v12,-228,152,-361,381,-361v219,0,369,133,369,328v0,143,-64,240,-201,299v166,57,244,164,244,338v0,244,-170,405,-424,405v-264,-3,-424,-148,-416,-397r135,0v6,172,103,266,275,266v172,0,278,-102,278,-268v6,-194,-137,-281,-366,-264r0,-131v194,18,323,-69,321,-234v0,-129,-86,-211,-225,-211v-139,0,-217,74,-238,230"},"4":{"d":"778,-453r232,0r0,129r-230,0r0,336r-149,0r0,-336r-547,0r0,-114r541,-903r153,0r0,888xm637,-453r2,-696r-410,696r408,0"},"5":{"d":"266,-1331r613,0r-19,131r-475,0r-55,391v69,-68,133,-94,231,-94v230,0,389,176,389,430v0,291,-178,491,-432,491v-213,0,-360,-133,-375,-340r140,0v22,136,106,211,231,211v170,0,283,-139,283,-348v0,-190,-101,-315,-252,-315v-109,0,-180,43,-240,145r-133,-14"},"6":{"d":"637,-1362r166,0v-154,168,-273,328,-379,502v51,-27,94,-37,145,-37v222,0,379,184,379,444v0,283,-157,471,-395,471v-242,0,-412,-192,-412,-467v0,-262,152,-542,496,-913xm545,-774v-148,0,-250,137,-250,332v0,196,106,333,256,333v143,0,244,-137,244,-333v0,-195,-103,-332,-250,-332"},"7":{"d":"131,-1331r830,0r0,123r-652,1208r-166,0r645,-1192r-657,0r0,-139"},"8":{"d":"334,-700v-105,-58,-160,-154,-160,-283v0,-211,160,-369,373,-369v213,0,373,158,373,369v0,129,-56,225,-162,283v133,71,196,180,196,331v0,228,-168,387,-407,387v-240,0,-408,-159,-408,-387v0,-151,64,-260,195,-331xm547,-1227v-129,0,-219,97,-219,234v0,139,90,235,221,235v129,0,219,-96,219,-235v0,-137,-90,-234,-221,-234xm547,-635v-150,0,-254,109,-254,264v0,156,104,265,254,265v149,0,254,-109,254,-265v0,-155,-105,-264,-254,-264"},"9":{"d":"453,31r-166,0v147,-162,272,-328,379,-504v-52,27,-95,37,-152,37v-213,0,-373,-191,-373,-445v0,-274,168,-471,404,-471v246,0,403,185,403,467v0,262,-162,559,-495,916xm551,-1225v-150,0,-256,138,-256,334v0,197,102,332,250,332v147,0,250,-135,250,-332v0,-196,-101,-334,-244,-334"},":":{"d":"260,-215v68,0,119,53,119,119v0,63,-53,116,-119,116v-63,0,-117,-53,-117,-116v0,-66,52,-119,117,-119xm260,-971v68,0,119,51,119,119v0,64,-53,117,-119,117v-63,0,-117,-53,-117,-117v0,-66,52,-119,117,-119","w":522},";":{"d":"229,-971v68,0,119,53,119,119v0,64,-53,117,-119,117v-63,0,-116,-53,-116,-117v0,-66,51,-119,116,-119xm199,299r-129,0v94,-98,149,-199,166,-297v-75,6,-125,-43,-127,-113v0,-65,55,-118,122,-118v80,0,134,63,134,159v0,113,-50,224,-166,369","w":489},"<":{"d":"954,-1165r0,143r-733,334r733,332r0,143r-886,-414r0,-125","w":1024},"=":{"d":"109,-879r874,0r0,111r-874,0r0,-111xm109,-606r874,0r0,110r-874,0r0,-110"},">":{"d":"70,-213r0,-143r733,-332r-733,-334r0,-143r886,413r0,125","w":1024},"?":{"d":"383,-215v68,0,119,53,119,119v0,63,-53,116,-119,116v-64,0,-117,-53,-117,-116v0,-66,51,-119,117,-119xm457,-387r-142,0r0,-105v0,-180,11,-206,142,-342v106,-108,133,-155,133,-231v0,-94,-66,-152,-170,-152v-121,0,-184,62,-197,197r-127,0v10,-219,125,-332,344,-332v187,0,308,115,308,289v0,109,-35,170,-175,307v-108,109,-116,129,-116,295r0,74","w":843},"@":{"d":"1016,-1012r108,0r-84,432v-27,98,-20,189,66,197v115,0,225,-195,225,-397v0,-307,-221,-514,-551,-514v-342,0,-600,262,-600,610v0,371,246,610,627,610v158,0,285,-28,428,-94r29,96v-142,66,-289,97,-457,97v-440,0,-737,-287,-737,-709v0,-399,307,-707,706,-707v387,0,658,248,658,607v0,260,-158,491,-336,491v-82,0,-140,-53,-150,-141v-63,96,-149,145,-254,145v-170,0,-291,-137,-291,-332v0,-231,160,-415,363,-415v111,0,182,51,225,155xm776,-930v-139,0,-250,135,-250,305v0,146,70,234,189,234v135,0,235,-141,235,-332v0,-127,-67,-207,-174,-207","w":1501},"A":{"d":"512,-1374r133,0r471,1374r-160,0r-120,-362r-514,0r-123,362r-158,0xm793,-496r-215,-680r-216,680r431,0","w":1159},"B":{"d":"176,-1366v184,2,491,-10,584,33v133,45,211,157,211,307v0,156,-72,250,-228,299v205,49,299,160,299,346v0,168,-94,293,-229,346v-89,35,-433,33,-637,35r0,-1366xm328,-778r129,0v258,0,358,-68,358,-238v0,-94,-45,-168,-123,-196v-47,-31,-239,-24,-364,-25r0,459xm328,-129v150,0,375,4,432,-35v74,-31,121,-119,121,-221v0,-119,-58,-207,-156,-240v-61,-28,-264,-24,-397,-24r0,520","w":1124},"C":{"d":"1120,-987r-143,0v-41,-182,-141,-268,-320,-268v-233,0,-389,225,-389,567v0,360,150,577,400,577v190,0,307,-122,329,-352r146,0v-25,311,-195,488,-469,488v-350,0,-570,-273,-570,-711v0,-424,224,-705,564,-705v254,0,417,148,452,404","w":1230},"D":{"d":"176,-1366r215,0v264,0,369,16,479,78v191,104,310,336,310,604v0,278,-119,506,-322,610v-113,60,-203,74,-483,74r-199,0r0,-1366xm330,-133r100,0v217,0,279,-12,373,-70v141,-86,215,-256,215,-489v0,-226,-88,-406,-240,-486v-88,-47,-145,-55,-387,-55r-61,0r0,1100","w":1284},"E":{"d":"330,-774r553,0r0,133r-553,0r0,508r610,0r0,133r-764,0r0,-1366r750,0r0,133r-596,0r0,459","w":1028},"F":{"d":"330,-774r553,0r0,133r-553,0r0,641r-154,0r0,-1366r750,0r0,133r-596,0r0,459","w":997},"G":{"d":"729,-678r416,0r0,561v-129,92,-283,142,-451,142v-366,0,-590,-267,-590,-707v0,-434,222,-709,570,-709v256,0,422,146,452,402r-143,0v-41,-182,-139,-266,-309,-266v-254,0,-406,215,-406,573v0,363,156,571,428,571v105,0,209,-30,310,-90r0,-344r-277,0r0,-133","w":1273},"H":{"d":"330,-778r641,0r0,-588r153,0r0,1366r-153,0r0,-651r-641,0r0,651r-154,0r0,-1366r154,0r0,588","w":1298},"I":{"d":"332,0r-158,0r0,-1366r158,0r0,1366","w":503},"J":{"d":"260,-1366r158,0r0,1090v0,190,-4,231,-33,290v-55,118,-198,172,-389,164r0,-133v122,4,213,-28,244,-96v18,-39,20,-70,20,-225r0,-1090","w":589},"K":{"d":"885,-1366r186,0r-557,645r610,721r-209,0r-583,-717xm176,-1366r154,0r0,1366r-154,0r0,-1366","w":1142},"L":{"d":"176,-1366r158,0r0,1233r584,0r0,133r-742,0r0,-1366","w":972},"M":{"d":"176,-1366r232,0r383,1198r385,-1198r231,0r0,1366r-145,0r0,-1212r-394,1212r-153,0r-393,-1212r0,1212r-146,0r0,-1366","w":1583},"N":{"d":"176,-1366r166,0r655,1137r0,-1137r144,0r0,1366r-168,0r-651,-1135r0,1135r-146,0r0,-1366","w":1316},"O":{"d":"659,-1391v332,0,558,287,558,707v0,420,-226,707,-558,707v-329,0,-555,-287,-555,-707v0,-420,226,-707,555,-707xm659,-1255v-235,0,-391,225,-391,571v0,344,156,571,391,571v238,0,394,-227,394,-571v0,-346,-156,-571,-394,-571","w":1323},"P":{"d":"176,-1366v196,1,510,-9,602,37v146,49,242,192,242,364v0,177,-76,308,-213,363v-77,44,-284,47,-477,45r0,557r-154,0r0,-1366xm330,-690v126,0,292,2,350,-19v117,-26,178,-114,178,-254v0,-112,-56,-196,-139,-237v-56,-28,-228,-34,-389,-33r0,543","w":1077},"Q":{"d":"1126,-272r269,288r-187,0r-161,-170v-101,115,-234,177,-385,177v-330,0,-558,-289,-558,-707v0,-418,228,-707,558,-707v327,0,555,289,555,707v0,156,-29,285,-91,412xm662,-1255v-234,0,-394,233,-394,573v0,338,160,571,394,571v231,0,391,-233,391,-571v0,-340,-160,-573,-391,-573","w":1343},"R":{"d":"176,-1366r242,0v211,0,289,8,379,43v135,51,221,182,221,340v0,184,-92,307,-281,375r359,608r-185,0r-344,-584r-237,0r0,584r-154,0r0,-1366xm330,-717v138,0,325,3,372,-26v99,-35,154,-121,154,-240v0,-102,-47,-182,-129,-217v-63,-29,-111,-33,-305,-33r-92,0r0,516","w":1148},"S":{"d":"969,-1012r-150,0v-14,-155,-110,-243,-262,-243v-147,0,-254,88,-254,208v8,164,206,200,326,265v180,80,252,125,303,186v49,61,76,141,76,229v0,230,-181,390,-439,390v-290,0,-448,-150,-465,-439r150,0v14,197,123,303,313,303v164,0,283,-98,283,-231v0,-72,-27,-125,-82,-172v-43,-37,-78,-55,-213,-115v-147,-65,-238,-114,-285,-153v-80,-66,-120,-150,-120,-250v0,-205,172,-357,405,-357v250,0,399,138,414,379","w":1120},"T":{"d":"43,-1366r864,0r0,133r-356,0r0,1233r-154,0r0,-1233r-354,0r0,-133","w":948},"U":{"d":"158,-1366r153,0r0,805v0,209,8,260,49,323v52,78,156,125,281,125v145,0,260,-63,301,-168v23,-53,27,-106,27,-280r0,-805r153,0r0,807v0,217,-4,254,-32,328v-66,159,-232,254,-449,254v-219,0,-385,-95,-451,-254v-28,-74,-32,-111,-32,-328r0,-807","w":1280},"V":{"d":"27,-1366r161,0r390,1188r383,-1188r159,0r-469,1374r-155,0","w":1148},"W":{"d":"37,-1366r145,0r264,1163r285,-1163r131,0r285,1163r266,-1163r143,0r-325,1374r-166,0r-270,-1067r-269,1067r-166,0","w":1591},"X":{"d":"66,-1366r176,0r315,524r320,-524r176,0r-406,651r426,715r-174,0r-342,-571r-342,571r-174,0r428,-715","w":1112},"Y":{"d":"25,-1366r176,0r327,639r322,-639r176,0r-426,793r2,573r-153,0r2,-573","w":1048},"Z":{"d":"106,-1366r840,0r0,104r-702,1129r690,0r0,133r-871,0r0,-119r697,-1116r-654,0r0,-131","w":1009},"[":{"d":"188,-1366r308,0r0,119r-172,0r0,1526r172,0r0,118r-308,0r0,-1763","w":575},"\\":{"d":"1057,305r-144,0r-802,-1671r143,0","w":1167},"]":{"d":"387,397r-307,0r0,-118r172,0r0,-1526r-172,0r0,-119r307,0r0,1763","w":575},"^":{"d":"209,-752r-156,0r365,-618r188,0r365,618r-158,0r-303,-503","w":1024},"_":{"d":"0,135r1024,0r0,133r-1024,0r0,-133","w":1024},"\u2018":{"d":"260,-1389r125,0v-82,76,-131,160,-145,238v71,-5,118,42,120,109v0,63,-53,114,-118,114v-76,0,-127,-59,-127,-149v0,-99,51,-209,145,-312","w":456},"a":{"d":"270,-717r-141,0v21,-180,147,-280,358,-280v164,0,279,57,316,159v58,180,-16,657,49,838r-137,0v-15,-49,-17,-66,-23,-131v-57,104,-151,156,-286,156v-185,0,-312,-111,-312,-273v0,-221,135,-311,590,-385v7,-165,-37,-246,-201,-241v-123,0,-192,51,-213,157xm434,-96v169,-12,260,-118,250,-334r0,-96v-328,59,-442,127,-442,262v0,100,75,168,192,168","w":974},"b":{"d":"150,-1372r143,0r0,543v74,-117,158,-168,276,-168v224,0,379,204,379,501v0,318,-153,521,-397,521v-117,0,-199,-52,-264,-162v1,52,-2,89,-17,137r-137,0v14,-59,17,-106,17,-274r0,-1098xm559,-872v-164,0,-268,153,-268,389v0,227,102,383,250,383v161,0,260,-148,260,-389v0,-232,-94,-383,-242,-383","w":1040},"c":{"d":"852,-655r-141,0v-27,-158,-86,-219,-213,-219v-160,0,-258,149,-258,393v0,235,100,383,260,383v135,0,200,-72,217,-236r143,0v-18,236,-143,359,-362,359v-240,0,-406,-205,-406,-504v0,-316,160,-518,406,-518v211,0,333,118,354,342","w":952},"d":{"d":"889,-1372r0,1085v0,172,4,230,18,287r-141,0v-13,-52,-17,-84,-12,-139v-70,114,-150,164,-271,164v-239,0,-393,-195,-393,-502v0,-307,154,-520,379,-520v129,0,209,47,276,163r0,-538r144,0xm492,-872v-154,0,-254,151,-254,385v0,237,96,387,251,387v160,0,259,-148,259,-387v0,-236,-99,-385,-256,-385","w":1040},"e":{"d":"901,-461r-661,0v6,236,104,363,280,363v107,0,170,-41,225,-148r134,17v-60,170,-181,254,-367,254v-254,0,-420,-197,-420,-500v0,-318,164,-522,420,-522v247,-3,406,220,389,536xm244,-573r510,0v-17,-195,-105,-304,-246,-304v-146,0,-236,103,-264,304","w":995},"f":{"d":"315,-971r242,0r0,117r-235,0r0,854r-152,0r0,-854r-137,0r0,-117r137,0r0,-61v0,-146,8,-195,41,-250v66,-115,231,-141,371,-82r0,133v-52,-24,-93,-37,-136,-37v-100,0,-131,56,-131,230r0,67","w":581},"g":{"d":"944,-971r0,109r-199,-4v52,49,84,133,84,215v0,182,-75,258,-317,309v-96,20,-117,27,-147,41v-37,18,-58,41,-58,65v0,41,23,50,195,66v190,18,248,31,311,66v78,45,123,124,123,221v0,184,-168,301,-434,301v-273,0,-443,-109,-443,-285v0,-113,64,-186,205,-235v-76,-29,-104,-62,-104,-115v0,-64,49,-107,174,-154v-133,-53,-195,-143,-195,-280v-10,-253,246,-389,508,-310xm489,-868v-124,0,-213,88,-213,213v0,118,84,200,207,200v129,0,211,-77,211,-200v0,-125,-84,-213,-205,-213xm494,-39v-195,0,-304,59,-304,168v0,102,121,170,306,170v186,0,301,-66,301,-170v0,-109,-109,-168,-303,-168","w":989},"h":{"d":"150,-1372r143,0r0,516v72,-96,160,-141,276,-141v119,0,222,49,271,133v34,59,43,114,43,307r0,557r-144,0r0,-549v0,-141,-6,-184,-30,-229v-33,-60,-91,-92,-168,-92v-160,0,-248,118,-248,335r0,535r-143,0r0,-1372","w":1028},"i":{"d":"150,-971r151,0r0,971r-151,0r0,-971xm227,-1384v60,0,103,45,103,106v0,57,-43,102,-103,102v-63,0,-106,-43,-106,-104v0,-59,47,-104,106,-104","w":452},"j":{"d":"215,-971r152,0r0,887v0,197,-11,258,-50,326v-57,107,-189,147,-372,141r0,-127v115,4,206,-22,239,-84v25,-43,31,-92,31,-256r0,-887xm293,-1384v59,0,102,45,102,106v0,57,-45,102,-102,102v-64,0,-107,-43,-107,-104v0,-59,45,-104,107,-104","w":514},"k":{"d":"705,-971r174,0r-406,436r436,535r-198,0r-416,-528xm150,-1372r143,0r0,1372r-143,0r0,-1372","w":987},"l":{"d":"150,-1372r151,0r0,1372r-151,0r0,-1372","w":452},"m":{"d":"127,-971r141,0v13,39,19,76,19,133v61,-110,149,-159,284,-159v134,0,217,53,267,170v65,-115,161,-170,297,-170v116,0,206,45,251,125v33,57,37,94,37,278r0,594r-143,0r0,-594v0,-127,-4,-160,-29,-201v-30,-49,-84,-73,-159,-73v-154,0,-232,100,-232,295r0,573r-143,0r0,-571v0,-150,-2,-174,-23,-211v-28,-56,-88,-88,-164,-88v-155,0,-235,104,-235,305r0,565r-143,0r0,-670v0,-211,-2,-221,-25,-301","w":1566},"n":{"d":"125,-971r137,0v17,47,21,74,21,142v65,-111,163,-168,290,-168v136,0,238,57,281,157v27,64,31,90,31,283r0,557r-144,0r0,-549v0,-147,-4,-182,-26,-229v-31,-60,-88,-92,-168,-92v-162,0,-256,120,-256,327r0,543r-144,0r0,-641v0,-242,0,-240,-22,-330","w":1032},"o":{"d":"516,-997v250,0,424,209,424,512v0,301,-174,510,-424,510v-250,0,-424,-209,-424,-510v0,-301,174,-512,424,-512xm516,-874v-166,0,-276,155,-276,389v0,231,110,387,276,387v166,0,277,-156,277,-387v0,-234,-111,-389,-277,-389","w":1032},"p":{"d":"150,403r0,-1085v0,-168,-5,-219,-19,-289r141,0v15,45,15,58,17,144v69,-119,151,-170,274,-170v234,0,385,206,385,520v0,301,-151,502,-379,502v-118,0,-204,-52,-276,-160r0,538r-143,0xm553,-872v-158,0,-262,153,-262,387v0,231,106,385,266,385v150,0,244,-146,244,-379v0,-240,-96,-393,-248,-393","w":1040},"q":{"d":"745,403r0,-536v-73,113,-151,158,-276,158v-223,0,-379,-205,-379,-502v0,-316,156,-520,393,-520v123,0,205,53,265,168v2,-70,6,-101,18,-142r141,0v-14,60,-18,113,-18,289r0,1085r-144,0xm496,-872v-162,0,-258,151,-258,405v0,221,98,367,249,367v156,0,261,-154,261,-385v0,-230,-103,-387,-252,-387","w":1040},"r":{"d":"135,-971r137,0v18,72,22,126,17,209v67,-164,145,-235,254,-235v32,0,73,10,112,30r0,144v-65,-31,-92,-39,-127,-39v-77,0,-145,53,-188,149v-71,156,-34,482,-43,713r-145,0r0,-637v0,-233,-2,-237,-17,-334","w":669},"s":{"d":"793,-705r-140,0v-14,-120,-78,-174,-200,-174v-109,0,-185,60,-185,144v0,82,41,110,226,166v254,75,315,133,315,297v0,182,-137,297,-360,297v-228,0,-359,-119,-359,-326r139,0v11,135,86,205,220,205v133,0,213,-64,213,-172v2,-86,-73,-125,-148,-150v-16,-4,-65,-20,-131,-41v-188,-57,-260,-129,-260,-264v0,-162,135,-274,334,-274v207,0,325,104,336,292","w":897},"t":{"d":"348,-971r230,0r0,117r-232,0r-10,586v0,131,20,162,108,162v43,0,93,-11,142,-33r-2,127v-62,22,-113,32,-168,32v-164,0,-230,-65,-230,-229r17,-645r-146,0r0,-117r150,0r6,-280r139,0","w":643},"u":{"d":"145,-971r144,0r0,594v0,199,53,273,198,273v156,0,238,-109,238,-316r0,-551r143,0r0,676v0,225,0,221,23,295r-141,0v-15,-45,-19,-74,-21,-129v-57,106,-133,154,-256,154v-129,0,-237,-58,-289,-156v-30,-53,-39,-113,-39,-246r0,-594","w":1017},"v":{"d":"20,-971r150,0r272,815r271,-815r147,0r-344,983r-151,0","w":882},"w":{"d":"31,-971r147,0r209,770r227,-770r123,0r228,770r209,-770r147,0r-281,983r-141,0r-223,-762r-225,762r-140,0","w":1353},"x":{"d":"63,-971r166,0r224,346r225,-346r174,0r-311,455r350,516r-172,0r-266,-401r-269,401r-172,0r355,-516","w":903},"y":{"d":"33,-971r153,0r265,809r272,-809r149,0r-333,944v-78,226,-109,281,-181,346v-81,69,-174,100,-303,89r0,-127v189,2,232,-37,316,-271","w":897},"z":{"d":"88,-971r684,0r0,107r-557,745r547,0r0,119r-717,0r0,-113r551,-739r-508,0r0,-119","w":815},"{":{"d":"340,-1057r0,326v0,137,-25,190,-115,248v90,55,115,110,115,245r0,326v0,174,33,209,192,209r0,111v-236,13,-328,-64,-323,-324r0,-324v0,-120,-31,-172,-115,-196r0,-96v84,-23,115,-76,115,-197r0,-322v-3,-260,84,-332,323,-325r0,110v-159,0,-192,37,-192,209","w":575},"|":{"d":"440,-1366r144,0r0,1708r-144,0r0,-1708","w":1024},"}":{"d":"233,88r0,-326v0,-135,25,-190,115,-245v-90,-58,-115,-111,-115,-248r0,-326v0,-172,-34,-211,-190,-209r0,-110v237,-7,326,64,322,325r0,322v0,121,30,174,116,197r0,96v-86,22,-116,76,-116,196r0,324v5,259,-88,337,-322,324r0,-111v156,2,190,-37,190,-209","w":575},"~":{"d":"276,-1196r-86,-55v89,-174,158,-234,281,-234v55,0,117,21,229,72v121,59,150,67,201,67v76,0,123,-36,186,-143r87,53v-110,208,-220,276,-435,193v-18,-6,29,14,-143,-66v-161,-71,-229,-52,-320,113","w":1366},"\u00a1":{"d":"332,391r-156,0r25,-956r114,0xm254,-971v63,0,117,53,117,117v0,66,-52,119,-117,119v-68,0,-119,-51,-119,-119v0,-64,53,-117,119,-117","w":509},"\u00a2":{"d":"592,-1077r0,772v121,-19,180,-90,194,-234r144,0v-8,205,-139,344,-338,359r0,209r-82,0r0,-213v-219,-35,-348,-222,-348,-500v0,-281,129,-471,350,-514r0,-195r82,0r0,191v197,12,309,129,328,342r-146,0v-12,-144,-63,-203,-184,-217xm512,-309r0,-762v-131,45,-205,186,-205,393v0,193,78,334,205,369"},"\u00a3":{"d":"465,-758r307,0r0,121r-328,0v-38,250,-79,397,-143,516v157,-30,226,-14,393,-16v127,2,164,-35,170,-164r131,0v4,98,-23,179,-77,235v-54,54,-99,66,-244,66r-563,0v91,-129,141,-424,182,-637r-197,0r0,-121r217,0v28,-162,78,-451,131,-514v50,-78,129,-117,236,-117v172,0,252,86,262,281r-135,0v-10,-111,-43,-152,-125,-152v-94,0,-129,43,-164,199v-12,55,-24,121,-37,199"},"\u2044":{"d":"412,-1331r125,0r-781,1331r-123,0","w":167},"\u00a5":{"d":"788,-870r199,0r0,100r-250,0r-84,162r334,0r0,100r-356,0r0,508r-154,0r0,-508r-373,0r0,-100r349,0r-86,-162r-263,0r0,-100r209,0r-266,-496r174,0r330,641r328,-641r165,0"},"\u0192":{"d":"717,-971r209,0r0,119r-232,0r-121,692v-36,205,-53,269,-88,326v-93,154,-282,149,-452,53r26,-133v76,51,134,72,197,72v100,0,123,-41,172,-330r121,-680r-193,0r0,-119r213,0r25,-139v45,-262,123,-356,295,-356v49,0,108,14,168,43r-21,125v-73,-31,-110,-43,-147,-43v-84,0,-117,57,-154,264"},"\u00a7":{"d":"866,-1012r-131,0v-16,-151,-82,-219,-217,-219v-123,0,-207,70,-207,176v0,82,31,113,195,205v168,92,239,135,282,170v68,53,97,111,97,191v0,112,-56,192,-178,260v98,75,137,147,137,249v0,197,-137,318,-359,318v-241,0,-366,-117,-370,-350r133,0v16,164,84,229,233,229v140,0,224,-74,224,-194v2,-162,-249,-234,-369,-322v-143,-82,-207,-162,-207,-266v0,-103,57,-180,186,-250v-100,-68,-143,-137,-143,-236v0,-174,145,-301,342,-301v217,0,344,123,352,340xm422,-750v-103,50,-156,109,-156,181v0,82,64,135,336,278v146,-65,206,-220,70,-313v-54,-35,-166,-101,-250,-146","w":1024},"\u00a4":{"d":"113,-252r192,-194v-137,-170,-143,-401,0,-580r-196,-195r84,-84r194,195v176,-135,412,-133,588,-2r194,-191r82,82r-192,193v142,170,138,411,2,582r194,194r-81,84r-195,-194v-179,132,-405,136,-590,0r-192,194xm682,-1081v-190,0,-344,153,-344,346v0,188,156,344,344,344v188,0,344,-156,344,-344v0,-193,-154,-346,-344,-346","w":1366},"'":{"d":"309,-817r-104,0r-25,-549r154,0","w":512},"\u201c":{"d":"578,-1389r124,0v-81,78,-129,158,-143,238v72,-5,119,42,121,109v0,63,-53,114,-119,114v-76,0,-127,-59,-127,-149v0,-99,51,-209,144,-312xm260,-1389r125,0v-82,76,-131,160,-145,238v71,-5,118,42,120,109v0,63,-53,114,-118,114v-76,0,-127,-59,-127,-149v0,-99,51,-209,145,-312","w":776},"\u00ab":{"d":"643,0r-106,0r-185,-477r185,-494r106,0r-158,494xm377,0r-105,0r-184,-477r184,-494r105,0r-156,494","w":780},"\u2039":{"d":"369,0r-115,0r-184,-477r184,-494r115,0r-158,494","w":493},"\u203a":{"d":"125,-971r115,0r184,477r-184,494r-115,0r158,-494","w":493},"\ufb01":{"d":"315,-971r242,0r0,117r-235,0r0,854r-152,0r0,-854r-137,0r0,-117r137,0r0,-61v0,-142,8,-193,39,-246v62,-116,231,-147,373,-86r0,133v-52,-24,-93,-37,-136,-37v-98,0,-131,56,-131,230r0,67xm731,-971r152,0r0,971r-152,0r0,-971xm809,-1384v59,0,102,45,102,106v0,57,-45,102,-102,102v-64,0,-107,-43,-107,-104v0,-59,48,-104,107,-104","w":1034},"\ufb02":{"d":"315,-971r242,0r0,117r-235,0r0,854r-152,0r0,-854r-137,0r0,-117r137,0r0,-61v0,-142,8,-193,39,-246v62,-116,231,-147,373,-86r0,133v-52,-24,-93,-37,-136,-37v-98,0,-131,56,-131,230r0,67xm731,-1372r152,0r0,1372r-152,0r0,-1372","w":1034},"\u2013":{"d":"143,-571r738,0r0,112r-738,0r0,-112","w":1024},"\u2020":{"d":"444,-1331r140,0r0,366r362,0r0,119r-362,0r0,1118r-140,0r0,-1118r-368,0r0,-119r368,0r0,-366","w":1024},"\u2021":{"d":"444,-1331r136,0r0,229r368,0r0,121r-368,0r0,862r368,0r0,121r-368,0r0,270r-136,0r0,-270r-368,0r0,-121r368,0r0,-862r-368,0r0,-121r368,0r0,-229","w":1024},"\u00b7":{"d":"260,-631v68,0,119,51,119,119v0,63,-53,117,-119,117v-63,0,-117,-54,-117,-117v0,-66,52,-119,117,-119","w":522},"\u00b6":{"d":"449,201r0,-846v-244,11,-403,-136,-406,-356v0,-136,68,-254,180,-314v68,-35,160,-51,297,-51r522,0r0,117r-122,0r0,1450r-129,0r0,-1450r-213,0r0,1450r-129,0","w":1185},"\u2022":{"d":"688,-977v154,0,281,127,281,283v0,155,-127,284,-281,284v-160,0,-287,-127,-287,-284v0,-156,127,-283,287,-283","w":1366},"\u201a":{"d":"207,240r-125,0v84,-84,131,-160,145,-238v-71,6,-118,-44,-121,-108v0,-64,54,-115,119,-115v76,0,127,59,127,149v0,97,-47,199,-145,312","w":464},"\u201e":{"d":"197,240r-125,0v84,-82,131,-160,145,-238v-72,5,-119,-42,-121,-108v0,-64,54,-115,119,-115v76,0,127,59,127,149v0,99,-45,197,-145,312xm537,240r-125,0v84,-84,129,-160,143,-238v-72,5,-119,-42,-121,-108v0,-64,53,-115,119,-115v76,0,127,59,127,149v0,99,-45,197,-143,312","w":796},"\u201d":{"d":"197,-928r-125,0v84,-84,131,-159,145,-239v-72,6,-119,-45,-121,-109v0,-63,54,-115,119,-115v76,0,127,60,127,152v0,96,-47,197,-145,311xm537,-928r-125,0v84,-86,129,-159,143,-239v-72,5,-119,-46,-121,-109v0,-63,53,-115,119,-115v76,0,127,60,127,152v0,96,-45,197,-143,311","w":796},"\u00bb":{"d":"139,-971r105,0r184,477r-184,494r-105,0r158,-494xm403,-971r107,0r184,477r-184,494r-107,0r158,-494","w":780},"\u2026":{"d":"260,-215v68,0,119,53,119,119v0,63,-53,116,-119,116v-63,0,-117,-53,-117,-116v0,-66,52,-119,117,-119xm709,-215v67,0,118,53,118,119v0,63,-53,116,-118,116v-64,0,-117,-53,-117,-116v0,-66,51,-119,117,-119xm1155,-215v68,0,119,53,119,119v0,63,-53,116,-119,116v-63,0,-117,-53,-117,-116v0,-66,52,-119,117,-119","w":1419},"\u2030":{"d":"924,-1366r127,0r-801,1366r-127,0xm866,-645v146,0,258,143,258,328v0,184,-112,327,-258,327v-147,0,-260,-143,-260,-327v0,-185,113,-328,260,-328xm864,-543v-82,0,-141,94,-141,226v0,131,59,225,141,225v84,0,144,-94,144,-225v0,-132,-60,-226,-144,-226xm1466,-645v148,0,260,143,260,328v0,184,-112,327,-260,327v-145,0,-258,-143,-258,-327v0,-185,113,-328,258,-328xm1466,-543v-82,0,-141,94,-141,226v0,131,59,225,141,225v84,0,144,-94,144,-225v0,-132,-60,-226,-144,-226xm309,-1376v146,0,258,143,258,327v0,185,-112,328,-258,328v-147,0,-260,-143,-260,-328v0,-184,113,-327,260,-327xm309,-1274v-84,0,-143,94,-143,225v0,131,59,226,143,226v82,0,142,-95,142,-226v0,-131,-60,-225,-142,-225","w":1773},"\u00bf":{"d":"467,-971v63,0,117,53,117,117v0,66,-52,119,-117,119v-68,0,-119,-53,-119,-119v0,-64,53,-117,119,-117xm395,-561r142,0r0,104v0,183,-11,207,-142,340v-104,109,-133,156,-133,234v0,90,66,149,170,149v121,0,184,-61,197,-194r127,0v-8,217,-127,329,-344,329v-187,0,-308,-112,-308,-288v0,-107,37,-170,175,-308v104,-102,116,-131,116,-270r0,-96","w":843},"`":{"d":"639,-1120r-121,0r-297,-281r205,0","w":1024},"\u00df":{"d":"139,0r0,-870v0,-224,8,-281,47,-353v56,-100,170,-157,312,-157v207,0,352,133,352,321v0,148,-74,240,-232,287v213,41,324,172,324,385v3,288,-237,483,-502,367r0,-132v47,25,92,37,140,37v131,0,215,-108,215,-272v0,-207,-140,-320,-396,-322r0,-122v185,16,309,-67,306,-218v0,-127,-84,-208,-209,-208v-93,0,-160,38,-187,110v-22,57,-26,90,-26,268r0,879r-144,0","w":1036}," ":{"w":512}}});;Cufon.replace('h1',{hover:true,fontFamily:'CSregular'});Cufon.replace('h2',{hover:true,fontFamily:'CSlight'});Cufon.replace('h3',{hover:true,fontFamily:'CSmedium'});Cufon.replace('#MainNavigation a',{hover:true,fontFamily:'CSmedium'});Cufon.replace('#SubNavigation a',{hover:true,fontFamily:'CSregular'});Cufon.replace('a.more',{hover:true,fontFamily:'CSmedium'});Cufon.replace('#NewsList dt',{hover:true,fontFamily:'CSmedium'});