(function(){var
window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;return this;}
if(typeof selector==="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])
selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem&&elem.id!=match[3])
return jQuery().find(selector);var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret;}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))
return jQuery(document).ready(selector);if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context;}
return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num];},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find")
ret.selector=this.selector+(this.selector?" ":"")+selector;else if(name)
ret.selector=this.selector+"."+name+"("+selector+")";return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(typeof name==="string")
if(value===undefined)
return this[0]&&jQuery[type||"attr"](this[0],name);else{options={};options[name]=value;}
return this.each(function(i){for(name in options)
jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)
value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!=="object"&&text!=null)
return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)
ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode)
wrap.insertBefore(this[0]);wrap.map(function(){var elem=this;while(elem.firstChild)
elem=elem.firstChild;return elem;}).append(this);}
return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)
this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)
this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret;}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem);})),"find",selector);}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else
return this.cloneNode(true);});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName)
return;var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}
i++;});}
return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,jQuery.grep(this,function(elem){return elem.nodeType===1;})),"filter",selector);},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur;}
cur=cur.parentNode;closer++;}});},not:function(selector){if(typeof selector==="string")
if(isSimple.test(selector))
return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector);else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector==="string"?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return!!selector&&this.is("."+selector);},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,'option'))
return(elem.attributes.value||{}).specified?elem.value:elem.text;if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)
return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one)
return value;values.push(value);}}
return values;}
return(elem.value||"").replace(/\r/g,"");}
return undefined;}
if(typeof value==="number")
value+='';return this.each(function(){if(this.nodeType!=1)
return;if(jQuery.isArray(value)&&/radio|checkbox/.test(this.type))
this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)
this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value===undefined?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,+i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first)
for(var i=0,l=this.length;i<l;i++)
callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment);if(scripts)
jQuery.each(scripts,evalScript);}
return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src)
jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)
elem.parentNode.removeChild(elem);}
function now(){return+new Date;}
jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target))
target={};if(length==i){target=this;--i;}
for(;i<length;i++)
if((options=arguments[i])!=null)
for(var name in options){var src=target[name],copy=options[name];if(target===copy)
continue;if(deep&&copy&&typeof copy==="object"&&!copy.nodeType)
target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)
target[name]=copy;}
return target;};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)
window.jQuery=_jQuery;return jQuery;},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument);},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval)
script.appendChild(document.createTextNode(data));else
script.text=data;head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length===undefined){for(name in object)
if(callback.apply(object[name],args)===false)
break;}else
for(;i<length;)
if(callback.apply(object[i++],args)===false)
break;}else{if(length===undefined){for(name in object)
if(callback.call(object[name],name,object[name])===false)
break;}else
for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}
return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))
value=value.call(elem,i);return typeof value==="number"&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))
elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)
elem.className=classNames!==undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return elem&&jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}
callback.call(elem);for(var name in options)
elem.style[name]=old[name];},css:function(elem,name,force,extra){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border")
return;jQuery.each(which,function(){if(!extra)
val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;if(extra==="margin")
val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;else
val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});}
if(elem.offsetWidth!==0)
getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,Math.round(val));}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}
if(name.match(/float/i))
name=styleFloat;if(!force&&style&&style[name])
ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))
name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle)
ret=computedStyle.getPropertyValue(name);if(name=="opacity"&&ret=="")
ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}
return ret;},clean:function(elems,context,fragment){context=context||document;if(typeof context.createElement==="undefined")
context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match)
return[context.createElement(match[1])];}
var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number")
elem+='';if(!elem)
return;if(typeof elem==="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!jQuery.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)
div=div.lastChild;if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)
if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)
tbody[j].parentNode.removeChild(tbody[j]);}
if(!jQuery.support.leadingWhitespace&&/^\s/.test(elem))
div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType)
ret.push(elem);else
ret=jQuery.merge(ret,elem);});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1)
ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));fragment.appendChild(ret[i]);}}
return scripts;}
return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)
return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode)
elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)
throw"type property can't be changed";elem[name]=value;}
if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))
return elem.getAttributeNode(name).nodeValue;if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name=="style")
return jQuery.attr(elem.style,"cssText",value);if(set)
elem.setAttribute(name,""+value);var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
if(!jQuery.support.opacity&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+
(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}
return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}
name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)
elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||typeof array==="string"||jQuery.isFunction(array)||array.setInterval)
ret[0]=array;else
while(i)
ret[--i]=array[i];}
return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)
if(array[i]===elem)
return i;return-1;},merge:function(first,second){var i=0,elem,pos=first.length;if(!jQuery.support.getAll){while((elem=second[i++])!=null)
if(elem.nodeType!=8)
first[pos++]=elem;}else
while((elem=second[i++])!=null)
first[pos++]=elem;return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}
return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)
if(!inv!=!callback(elems[i],i))
ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null)
ret[ret.length]=value;}
return ret.concat.apply([],ret);}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,'0'])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")
ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret),name,selector);};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,selector);};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)
this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames,state){if(typeof state!=="boolean")
state=!jQuery.className.has(this,classNames);jQuery.className[state?"add":"remove"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).length){jQuery("*",this).add([this]).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)
this.parentNode.removeChild(this);}},empty:function(){jQuery(this).children().remove();while(this.firstChild)
this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}
var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)
id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])
jQuery.cache[id]={};if(data!==undefined)
jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])
break;if(!name)
jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)
elem.removeAttribute(expando);}
delete jQuery.cache[id];}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data))
q=jQuery.data(elem,type,jQuery.makeArray(data));else if(data)
q.push(data);}
return q;},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx")
fn=queue[0];if(fn!==undefined)
fn.call(elem);}});jQuery.fn.extend({data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)
data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined)
return jQuery.queue(this[0],type);return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1)
queue[0].call(this);});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});}});(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9)
return[];if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector])
selector+=parts.shift();set=posProcess(selector,set);}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,isXML(context));}}
if(!checkSet){checkSet=set;}
if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace)
result.push(elem);}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}
return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase();},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return/h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON";},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0==i;},eq:function(elem,i,match){return match[3]-0==i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while(node=node.previousSibling){if(node.nodeType===1)return false;}
if(type=='first')return true;node=elem;case'last':while(node=node.nextSibling){if(node.nodeType===1)return false;}
return true;case'nth':var first=match[2],last=match[3];if(first==1&&last==0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first==0){return diff==0;}else{return(diff%first==0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);}
var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches;})();if(document.getElementsByClassName&&document.documentElement.getElementsByClassName)(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0)
return;div.lastChild.className="e";if(div.getElementsByClassName("e").length===1)
return;Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument);};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0;};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0;};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")";}
return Sizzle.matches(expr,elems);};jQuery.dir=function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)
matched.push(cur);cur=cur[dir];}
return matched;};jQuery.nth=function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])
if(cur.nodeType==1&&++num==result)
break;return cur;};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)
r.push(n);}
return r;};return;window.Sizzle=Sizzle;})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)
return;if(elem.setInterval&&elem!=window)
elem=window;if(!handler.guid)
handler.guid=this.guid++;if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].setup.call(elem,data,namespaces);if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===false){if(elem.addEventListener)
elem.addEventListener(type,handle,false);else if(elem.attachEvent)
elem.attachEvent("on"+type,handle);}}
handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)
return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types===undefined||(typeof types==="string"&&types.charAt(0)=="."))
for(var type in events)
this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}
jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler)
delete events[type][handler.guid];else
for(var handle in events[type])
if(namespace.test(events[type][handle].type))
delete events[type][handle];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].teardown.call(elem,namespaces);for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===false){if(elem.removeEventListener)
elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)
elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}
ret=null;delete events[type];}}});}
for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type])
jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type])
jQuery.event.trigger(event,data,this.handle.elem);});}
if(!elem||elem.nodeType==3||elem.nodeType==8)
return undefined;event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle)
handle.apply(elem,data);if((!elem[type]||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)
event.result=false;if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}
this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent)
jQuery.event.trigger(event,data,parent,true);}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped())
break;}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando])
return event;var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
if(!event.target)
event.target=event.srcElement||document;if(event.target.nodeType==3)
event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)
event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}
if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))
event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)
event.metaKey=event.ctrlKey;if(!event.which&&event.button)
event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy=proxy||function(){return fn.apply(this,arguments);};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler);},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type))
remove++;});if(remove<1)
jQuery.event.remove(this,namespaces[0],liveHandler);}}}}};jQuery.Event=function(src){if(!this.preventDefault)
return new jQuery.Event(src);if(src&&src.type){this.originalEvent=src;this.type=src.type;}else
this.type=src;this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.preventDefault)
e.preventDefault();e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.stopPropagation)
e.stopPropagation();e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this)
try{parent=parent.parentNode;}
catch(e){parent=this;}
if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}};jQuery.each({mouseover:'mouseenter',mouseout:'mouseleave'},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix);},teardown:function(){jQuery.event.remove(this,orig,withinElement);}};});jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length)
jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)
fn.call(document,jQuery);else
jQuery.readyList.push(fn);return this;},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this;},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this;}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem)
elems.push({elem:elem,fn:fn});}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest");});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false)
return(stop=false);});return stop;}
function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".");}
jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document,jQuery);});jQuery.readyList=null;}
jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready();},false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready();}});if(document.documentElement.doScroll&&window==window.top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}
jQuery.ready();})();}
jQuery.event.add(window,"load",jQuery.ready);}
jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,"+"change,select,submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});jQuery(window).bind('unload',function(){for(var id in jQuery.cache)
if(id!=1&&jQuery.cache[id].handle)
jQuery.event.remove(jQuery.cache[id].handle.elem);});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee);});div.cloneNode(true).fireEvent("onclick");}
jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';});})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!=="string")
return this._load(url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}
var type="GET";if(params)
if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){params=jQuery.param(params);type="POST";}
var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")
self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);if(callback)
self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}
return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}
return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string")
s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre))
s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))
s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}
if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)
s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}
if(head)
head.removeChild(script);};}
if(s.dataType=="script"&&s.cache==null)
s.cache=false;if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}
if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}
if(s.global&&!jQuery.active++)
jQuery.event.trigger("ajaxStart");var parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=location.host)){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)
script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();script.onload=script.onreadystatechange=null;head.removeChild(script);}};}
head.appendChild(script);return undefined;}
var requestDone=false;var xhr=s.xhr();if(s.username)
xhr.open(type,s.url,s.async,s.username,s.password);else
xhr.open(type,s.url,s.async);try{if(s.data)
xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)
xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}
if(s.beforeSend&&s.beforeSend(xhr,s)===false){if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");xhr.abort();return false;}
if(s.global)
jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}}else if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}
status=isTimeout=="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s);}catch(e){status="parsererror";}}
if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}
if(s.ifModified&&modRes)
jQuery.lastModified[s.url]=modRes;if(!jsonp)
success();}else
jQuery.handleError(s,xhr,status);complete();if(isTimeout)
xhr.abort();if(s.async)
xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)
setTimeout(function(){if(xhr&&!requestDone)
onreadystatechange("timeout");},s.timeout);}
try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}
if(!s.async)
onreadystatechange();function success(){if(s.success)
s.success(data,status);if(s.global)
jQuery.event.trigger("ajaxSuccess",[xhr,s]);}
function complete(){if(s.complete)
s.complete(xhr,status);if(s.global)
jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}
return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)
jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223;}catch(e){}
return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url];}catch(e){}
return false;},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")
throw"parsererror";if(s&&s.dataFilter)
data=s.dataFilter(data,type);if(typeof data==="string"){if(type=="script")
jQuery.globalEval(data);if(type=="json")
data=window["eval"]("("+data+")");}
return data;},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+'='+encodeURIComponent(value);};if(jQuery.isArray(a)||a.jquery)
jQuery.each(a,function(){add(this.name,this.value);});else
for(var j in a)
if(jQuery.isArray(a[j]))
jQuery.each(a[j],function(){add(j,this);});else
add(j,jQuery.isFunction(a[j])?a[j]():a[j]);return s.join("&").replace(/%20/g,"+");}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName];}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none")
display="block";elem.remove();elemdisplay[tagName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none")
jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));}
for(var i=0,l=this.length;i<l;i++){this[i].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();}):this.animate(genFx("toggle",3),fn,fn2);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)
return opt.complete.call(this);if((p=="height"||p=="width")&&this.style){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}
if(opt.overflow!=null)
this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))
e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}
if(parts[1])
end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)
this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)
if(timers[i].elem==this){if(gotoEnd)
timers[i](true);timers.splice(i,1);}});if(!gotoEnd)
this.dequeue();return this;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)
jQuery(this).dequeue();if(jQuery.isFunction(opt.old))
opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)
options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)
this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style)
this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))
return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)
if(!timers[i]())
timers.splice(i--,1);if(!timers.length){clearInterval(timerId);timerId=undefined;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now();if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)
if(this.options.curAnim[i]!==true)
done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")
this.elem.style.display="block";}
if(this.options.hide)
jQuery(this.elem).hide();if(this.options.hide||this.options.show)
for(var p in this.options.curAnim)
jQuery.attr(this.elem.style,p,this.options.orig[p]);this.options.complete.call(this.elem);}
return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}
return true;}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null)
fx.elem.style[fx.prop]=fx.now+fx.unit;else
fx.elem[fx.prop]=fx.now;}}});if(document.documentElement["getBoundingClientRect"])
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};else
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName)))
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible")
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static")
top+=body.offsetTop,left+=body.offsetLeft;if(prevComputedStyle.position==="fixed")
top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft);return{top:top,left:left};};jQuery.offset={initialize:function(){if(this.initialized)return;var body=document.body,container=document.createElement('div'),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:'absolute',top:0,left:0,margin:0,border:0,width:'1px',height:'1px',visibility:'hidden'};for(prop in rules)container.style[prop]=rules[prop];container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow='hidden',innerDiv.style.position='relative';this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop='1px';this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true;},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset)
top+=parseInt(jQuery.curCSS(body,'marginTop',true),10)||0,left+=parseInt(jQuery.curCSS(body,'marginLeft',true),10)||0;return{top:top,left:left};}};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}
return results;},offsetParent:function(){var offsetParent=this[0].offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))
offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return null;return val!==undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null;};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px");};});})();(function($){$.ajaxSettings.accepts._default="text/javascript, text/html, application/xml, text/xml, */*"})(jQuery);(function($){$.fn.reset=function(){return this.each(function(){if(typeof this.reset=="function"||(typeof this.reset=="object"&&!this.reset.nodeType)){this.reset()}})};$.fn.enable=function(){return this.each(function(){this.disabled=false})};$.fn.disable=function(){return this.each(function(){this.disabled=true})}})(jQuery);(function($){$.extend({fieldEvent:function(el,obs){var field=el[0]||el,e="change";if(field.type=="radio"||field.type=="checkbox"){e="click"}else{if(obs&&(field.type=="text"||field.type=="textarea"||field.type=="password")){e="keyup"}}return e}});$.fn.extend({delayedObserver:function(delay,callback){var el=$(this);if(typeof window.delayedObserverStack=="undefined"){window.delayedObserverStack=[]}if(typeof window.delayedObserverCallback=="undefined"){window.delayedObserverCallback=function(stackPos){var observed=window.delayedObserverStack[stackPos];if(observed.timer){clearTimeout(observed.timer)}observed.timer=setTimeout(function(){observed.timer=null;observed.callback(observed.obj,observed.obj.formVal())},observed.delay*1000);observed.oldVal=observed.obj.formVal()}}window.delayedObserverStack.push({obj:el,timer:null,delay:delay,oldVal:el.formVal(),callback:callback});var stackPos=window.delayedObserverStack.length-1;if(el[0].tagName=="FORM"){$(":input",el).each(function(){var field=$(this);field.bind($.fieldEvent(field,delay),function(){var observed=window.delayedObserverStack[stackPos];if(observed.obj.formVal()==observed.oldVal){return}else{window.delayedObserverCallback(stackPos)}})})}else{el.bind($.fieldEvent(el,delay),function(){var observed=window.delayedObserverStack[stackPos];if(observed.obj.formVal()==observed.oldVal){return}else{window.delayedObserverCallback(stackPos)}})}},formVal:function(){var el=this[0];if(el.tagName=="FORM"){return this.serialize()}if(el.type=="checkbox"||el.type=="radio"){return this.filter("input:checked").val()||""}else{return this.val()}}})})(jQuery);(function($){$.fn.extend({visualEffect:function(o,options){if(options){speed=options.duration*1000}else{speed=null}e=o.replace(/\_(.)/g,function(m,l){return l.toUpperCase()});return eval("$(this)."+e+"("+speed+")")},appear:function(speed,callback){return this.fadeIn(speed,callback)},blindDown:function(speed,callback){return this.show("blind",{direction:"vertical"},speed,callback)},blindUp:function(speed,callback){return this.hide("blind",{direction:"vertical"},speed,callback)},blindRight:function(speed,callback){return this.show("blind",{direction:"horizontal"},speed,callback)},blindLeft:function(speed,callback){this.hide("blind",{direction:"horizontal"},speed,callback);return this},dropOut:function(speed,callback){return this.hide("drop",{direction:"down"},speed,callback)},dropIn:function(speed,callback){return this.show("drop",{direction:"up"},speed,callback)},fade:function(speed,callback){return this.fadeOut(speed,callback)},fadeToggle:function(speed,callback){return this.animate({opacity:"toggle"},speed,callback)},fold:function(speed,callback){return this.hide("fold",{},speed,callback)},foldOut:function(speed,callback){return this.show("fold",{},speed,callback)},grow:function(speed,callback){return this.show("scale",{},speed,callback)},highlight:function(speed,callback){return this.show("highlight",{},speed,callback)},puff:function(speed,callback){return this.hide("puff",{},speed,callback)},pulsate:function(speed,callback){return this.show("pulsate",{},speed,callback)},shake:function(speed,callback){return this.show("shake",{},speed,callback)},shrink:function(speed,callback){return this.hide("scale",{},speed,callback)},squish:function(speed,callback){return this.hide("scale",{origin:["top","left"]},speed,callback)},slideUp:function(speed,callback){return this.hide("slide",{direction:"up"},speed,callback)},slideDown:function(speed,callback){return this.show("slide",{direction:"up"},speed,callback)},switchOff:function(speed,callback){return this.hide("clip",{},speed,callback)},switchOn:function(speed,callback){return this.show("clip",{},speed,callback)}})})(jQuery);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){var D=C.className;C.className=D+(D&&" ")+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(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);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},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(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};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(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}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(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}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,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,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(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}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={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};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){if(!D){return m}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.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}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)}else{delete C.textGradient}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{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerFont({"w":188,"face":{"font-family":"Chaparral Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 5 3 4 5 5 2 2 3","ascent":"266","descent":"-94","x-height":"4","bbox":"-11 -270 319 90","underline-thickness":"19.44","underline-position":"-16.56","stemh":"16","stemv":"28","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":79},"!":{"d":"40,-59r-9,-172v8,-2,32,-8,35,-5r-7,175v-5,1,-14,2,-19,2xm50,-34v26,1,22,37,-1,37v-11,0,-19,-8,-19,-18v0,-9,8,-19,20,-19","w":98},"\"":{"d":"47,-251v-1,18,-3,60,-3,80v-5,1,-14,3,-18,3v-2,-30,-4,-61,-6,-78v8,-3,22,-5,27,-5xm97,-251v-1,18,-3,60,-3,80v-5,1,-14,3,-18,3v-2,-30,-4,-62,-6,-79v8,-3,22,-4,27,-4","w":115},"#":{"d":"83,-168r39,0v4,-23,8,-46,11,-65r19,0v-3,18,-7,43,-11,65r36,0v0,6,0,12,-1,17r-38,0r-9,50r39,0v0,6,0,11,-1,17r-41,0v-4,25,-8,51,-12,71r-18,0r12,-71r-40,0v-4,25,-9,51,-12,71r-18,0r12,-71r-37,0v0,-6,1,-12,1,-17r39,0v3,-17,5,-33,8,-50r-39,0r0,-16v14,0,28,-1,42,-1v4,-23,8,-46,11,-65v6,-1,13,0,19,0v-3,18,-7,43,-11,65xm119,-151r-39,0r-9,50r40,0v3,-17,5,-34,8,-50"},"$":{"d":"165,-73v0,37,-25,57,-65,61v0,12,-1,25,-1,37v-6,1,-12,1,-17,1v0,-12,1,-24,1,-37v-20,1,-48,-4,-65,-13v2,-7,7,-17,13,-21v13,8,32,17,52,18v1,-25,1,-53,1,-80v-32,-11,-57,-23,-57,-55v0,-33,29,-52,64,-55r0,-36v5,-1,13,-3,19,-3v0,12,-1,25,-1,39v24,0,41,5,50,10v0,5,-7,18,-12,21v-10,-6,-26,-14,-39,-15v0,23,0,50,-1,74v35,11,58,23,58,54xm90,-201v-20,2,-39,13,-39,36v0,19,13,25,38,33v0,-23,1,-47,1,-69xm100,-28v24,-3,39,-15,40,-38v0,-22,-13,-29,-38,-37v0,25,-1,51,-2,75"},"%":{"d":"15,-175v-1,-34,25,-60,57,-60v29,0,110,-2,129,-4v3,4,6,7,8,11r-131,237v-5,-2,-10,-4,-15,-7r120,-225v-24,1,-53,2,-79,2v33,27,17,111,-37,106v-33,-3,-51,-23,-52,-60xm99,-176v0,-25,-6,-44,-30,-44v-23,0,-31,19,-31,45v0,28,7,46,31,46v24,0,30,-17,30,-47xm152,-54v0,-33,20,-63,56,-62v36,1,49,23,51,58v2,32,-23,62,-54,62v-33,0,-52,-24,-53,-58xm236,-57v0,-26,-6,-44,-30,-45v-24,-1,-31,22,-31,47v1,26,7,44,31,44v22,0,30,-15,30,-46","w":273},"&":{"d":"33,-181v-2,-66,120,-76,122,-7v1,27,-20,42,-47,60v26,18,53,46,70,66v10,-14,27,-44,21,-61r-21,-1v0,-5,1,-11,1,-16r69,0r0,16r-22,1v-8,32,-21,57,-36,75v14,16,24,37,59,32r0,16v-17,1,-37,2,-51,2v-8,-9,-16,-22,-25,-32v-13,13,-40,34,-83,34v-45,0,-76,-24,-78,-63v-1,-29,20,-53,51,-72v-14,-10,-30,-27,-30,-50xm95,-220v-21,0,-36,16,-36,37v0,20,13,31,33,44v23,-11,38,-24,38,-46v0,-19,-16,-36,-35,-35xm41,-64v0,61,95,59,120,21v-25,-30,-54,-58,-81,-76v-17,8,-39,27,-39,55","w":256},"(":{"d":"25,-101v0,-73,41,-131,81,-155r9,12v-30,22,-64,73,-64,142v0,77,36,119,63,143v-3,4,-7,8,-11,12v-34,-27,-78,-70,-78,-154","w":118,"k":{"g":-6,"k":-2,"l":-2,"T":-6,"Y":-12,"J":3,"V":-11,"W":-9,"h":-2}},")":{"d":"93,-103v0,82,-44,128,-80,156v-4,-4,-7,-8,-10,-12v28,-24,64,-67,64,-143v0,-70,-33,-119,-63,-142r9,-12v40,24,80,81,80,153","w":118},"*":{"d":"71,-184v1,15,1,31,1,46r-17,0v1,-15,2,-31,2,-46v-12,9,-24,18,-37,27v-3,-4,-6,-9,-9,-14v14,-8,28,-16,41,-24v-14,-8,-28,-16,-41,-24v3,-5,5,-10,8,-14r39,27r-3,-46r17,0v-1,15,0,31,-1,46r38,-27v3,4,6,9,8,14r-40,24r40,24v-3,4,-5,10,-9,14v-12,-9,-24,-18,-37,-27","w":128},"+":{"d":"166,-75r-62,0r0,71v-6,1,-14,1,-20,1r0,-72r-61,0r0,-19r61,0r0,-67v7,-1,15,-1,21,-1v0,19,-1,43,-1,67r62,0v0,6,1,14,0,20"},",":{"d":"40,-36v13,0,26,14,26,30v0,27,-18,48,-40,60v-4,-4,-8,-9,-11,-13v28,-14,35,-43,7,-50v-2,-15,7,-27,18,-27","w":88},"-":{"d":"101,-77r-89,0r0,-18r90,-1v0,7,-1,13,-1,19","w":113,"k":{"c":-8,"s":-7,"t":-6,"y":-7,"j":-4,"v":-6,"w":-9,"A":-6,"C":-9,"S":-10,"T":15,"Y":14,"z":-4,"Z":3,"J":-8,"V":5,"W":-1,"f":-6}},".":{"d":"45,-37v27,2,24,39,0,40v-12,0,-21,-8,-21,-20v0,-9,7,-20,21,-20","w":88},"\/":{"d":"22,20v-6,-1,-12,-3,-18,-5r114,-266v6,1,14,3,20,6","w":141},"0":{"d":"99,-236v56,6,73,45,73,117v0,72,-19,123,-80,123v-58,0,-75,-44,-75,-113v0,-77,21,-120,82,-127xm95,-13v67,4,51,-158,32,-190v-8,-12,-18,-16,-32,-16v-45,0,-49,45,-49,108v0,55,6,95,49,98"},"1":{"d":"112,-17r56,1r0,16r-144,0v0,-5,1,-11,1,-16v19,-2,45,3,60,-3r0,-182v-19,5,-38,11,-62,18v-1,-5,-3,-11,-4,-16v44,-13,91,-43,94,-36v0,70,-1,146,-1,218"},"2":{"d":"86,-218v-16,0,-34,3,-37,16r-8,35v-6,-1,-13,-2,-19,-3v1,-17,3,-34,4,-51v23,-15,93,-22,116,0v12,12,22,29,22,51v0,75,-72,110,-108,149r114,-1v0,7,-1,15,-2,22r-147,0v-2,-5,-5,-10,-6,-15v51,-45,109,-76,119,-152v4,-31,-19,-51,-48,-51"},"3":{"d":"132,-179v0,-39,-59,-52,-83,-26r-7,34v-6,-1,-13,-1,-19,-2v1,-16,3,-33,4,-49v39,-23,135,-21,134,38v0,30,-23,50,-49,58r0,3v37,5,56,30,56,56v-1,65,-80,81,-145,65v-3,-17,-6,-33,-8,-50v6,-1,14,-3,20,-4v4,12,6,26,11,37v42,14,93,-1,92,-46v-1,-37,-40,-50,-85,-46r0,-19v54,1,79,-21,79,-49"},"4":{"d":"7,-82r110,-152v8,0,16,0,24,1v0,49,-1,102,-1,152r39,0v0,6,1,13,0,19r-39,0r0,45r28,1v0,5,-1,11,-1,16r-92,0v0,-5,1,-10,1,-15v12,-1,27,0,38,-3r0,-44r-98,0v-3,-6,-6,-13,-9,-20xm114,-81v-2,-38,5,-85,-1,-119r-80,116v-1,2,0,3,1,3r80,0"},"5":{"d":"44,-22v38,23,99,-4,94,-49v7,-49,-57,-65,-107,-54v-4,-28,9,-73,11,-107r120,-1v0,7,0,16,-1,23v-32,0,-66,-1,-99,-1v-3,21,-7,43,-10,63v63,-13,114,24,114,69v0,73,-71,93,-142,78v-3,-16,-5,-34,-7,-50v6,-2,13,-3,19,-4"},"6":{"d":"141,-180v-5,-17,-1,-39,-28,-38v-47,3,-68,62,-65,101v43,-46,124,-26,124,43v0,40,-34,82,-77,78v-54,-6,-77,-34,-77,-102v0,-103,50,-151,136,-132v2,15,5,31,6,46v-6,1,-12,3,-19,4xm144,-68v0,-65,-68,-70,-96,-25v3,53,7,74,51,80v27,4,45,-30,45,-55"},"7":{"d":"66,1v5,-89,45,-110,84,-211v-56,0,-86,-1,-96,0v-16,2,-11,24,-17,36v-6,-1,-13,-2,-19,-3v3,-18,5,-37,8,-55r146,0v3,6,5,14,7,20v-44,83,-77,130,-85,212v-8,1,-21,1,-28,1"},"8":{"d":"26,-176v-2,-72,138,-83,140,-8v1,29,-22,47,-41,60v84,24,51,134,-34,128v-46,-3,-74,-17,-77,-61v-2,-30,23,-48,50,-67v-21,-10,-38,-26,-38,-52xm99,-219v-24,0,-46,16,-46,39v0,24,12,35,51,48v23,-12,35,-26,35,-48v1,-23,-17,-39,-40,-39xm93,-13v33,-1,54,-14,54,-46v0,-29,-18,-42,-64,-56v-23,10,-41,30,-41,56v0,29,23,46,51,46"},"9":{"d":"171,-131v0,98,-44,148,-137,131v-3,-15,-5,-30,-8,-45v6,-2,13,-3,19,-4v5,18,6,36,32,36v50,0,68,-65,64,-101v-41,43,-124,21,-124,-44v0,-42,33,-81,78,-78v56,4,76,37,76,105xm46,-162v0,60,69,66,95,26v-3,-49,-6,-80,-49,-84v-30,-3,-46,29,-46,58"},":":{"d":"45,-150v27,1,24,39,0,39v-12,0,-21,-8,-21,-19v0,-9,7,-20,21,-20xm45,-37v27,2,24,39,0,40v-12,0,-21,-8,-21,-19v0,-9,7,-21,21,-21","w":88},";":{"d":"45,-150v27,1,24,39,0,39v-12,0,-21,-8,-21,-19v0,-9,7,-20,21,-20xm40,-36v13,0,26,15,26,31v0,27,-18,47,-40,59v-4,-4,-8,-8,-11,-12v27,-15,35,-43,7,-51v-2,-15,6,-27,18,-27","w":88},"<":{"d":"62,-86r84,70v-3,5,-7,11,-11,15r-98,-76r0,-17r98,-72v4,4,8,10,11,15"},"=":{"d":"23,-102r0,-19v44,0,99,-1,144,-1v0,6,0,14,-1,20r-143,0xm22,-48v0,-6,0,-14,1,-20r144,0v0,6,-1,13,-1,19v-44,0,-99,1,-144,1"},">":{"d":"120,-85r-85,-68v3,-5,7,-10,11,-14r98,73r0,17r-98,74v-4,-4,-7,-9,-11,-14"},"?":{"d":"139,-181v0,30,-19,54,-56,77v-17,11,-8,22,-3,41v-5,3,-11,5,-18,6v-6,-8,-17,-32,-17,-45v41,-29,62,-47,62,-78v0,-36,-47,-52,-67,-27r-6,31v-7,-1,-14,-2,-20,-3v1,-15,3,-32,4,-47v12,-6,34,-12,56,-12v45,0,65,30,65,57xm71,-33v25,0,24,36,0,36v-11,0,-20,-7,-20,-17v0,-9,7,-19,20,-19","w":153},"@":{"d":"60,-57v2,-45,40,-99,83,-66r6,-11v5,1,11,3,17,4v-5,20,-15,55,-20,78v0,1,2,3,3,3v27,-5,42,-20,42,-53v0,-35,-21,-68,-70,-68v-46,0,-87,40,-87,100v0,72,70,86,115,59v3,4,5,8,6,12v-52,30,-139,11,-139,-70v0,-68,51,-113,109,-113v48,0,83,32,83,76v0,49,-24,71,-72,71v-11,0,-13,-12,-7,-25v-16,8,-31,26,-46,24v-6,-1,-24,-7,-23,-21xm139,-109v-27,-29,-59,13,-55,49v0,6,3,7,7,7v20,-5,46,-27,48,-56","w":224},"A":{"d":"-5,-17v7,-1,16,0,22,-2r83,-218v4,0,12,-1,20,-1r79,220r22,1r0,17r-82,0v0,-5,1,-12,1,-17r28,-1v-7,-18,-11,-39,-20,-55r-86,0v-6,17,-15,38,-20,55r33,1r0,17r-80,0r0,-17xm144,-90v-13,-32,-21,-78,-38,-107v-11,35,-30,74,-37,107r75,0","w":218,"k":{"a":-9,"c":-3,"d":-3,"g":-5,"k":-3,"s":-7,"t":-1,"u":3,"y":6,"b":-1,":":-5,",":-14,"p":-5,".":-13,"q":-3,";":-6,"v":8,"x":-9,"A":-1,"C":4,"-":-6,"D":-3,"G":4,"i":-2,"I":-3,"l":-3,"L":-3,"n":-1,"N":-3,"O":4,"r":-1,"R":-3,"S":-10,"T":14,"U":10,"Y":15,"z":-11,"Z":-2,"F":-3,"J":-9,"M":-3,"P":-3,"V":14,"W":8,"f":-3,"h":-3,"m":-1}},"B":{"d":"18,-234v71,1,158,-12,160,53v2,29,-23,44,-43,56v32,4,58,28,58,57v2,68,-93,74,-176,68r0,-17v9,-1,22,3,27,-2r0,-197r-27,-1v0,-6,1,-12,1,-17xm73,-217r-1,87v41,3,75,-11,78,-45v3,-32,-38,-48,-77,-42xm72,-113r0,83v0,11,7,14,31,14v29,0,60,-14,60,-49v7,-28,-41,-55,-91,-48","w":206,"k":{"j":-4,".":9,",":9,"a":-4,"e":-4,"o":-4,"u":-3,"y":-3,"A":-5,"i":-3,"l":-3,"r":-1,"E":1}},"C":{"d":"199,-14v-84,43,-181,5,-181,-90v0,-98,85,-154,175,-126v1,20,3,41,4,61v-6,1,-14,1,-21,2r-6,-39v-4,-11,-19,-10,-32,-11v-53,0,-89,50,-89,105v0,84,79,116,146,80v2,6,3,12,4,18","w":210,"k":{"a":-1,"u":-3,"y":-1,",":-5,".":-4,"A":-10,"C":1,"-":8,"D":-3,"i":-5,"I":-3,"l":-7,"r":-1,"Y":-8,"F":-3,"h":-6,"E":-3,"H":-3,"?":-4}},"D":{"d":"231,-124v4,89,-66,136,-172,124r-42,0v0,-5,1,-11,1,-16v8,-1,21,2,26,-3r0,-197r-26,-1r0,-17r73,0v92,-3,137,36,140,110xm201,-113v2,-76,-46,-111,-128,-104r-1,188v0,10,4,13,28,13v66,0,99,-35,101,-97","w":248,"k":{"a":4,"e":2,"o":2,"u":-2,"y":-3,",":28,"j":-3,".":28,"v":-3,"w":-3,"A":7,"D":5,"i":-1,"I":5,"L":1,"N":1,"O":-3,"r":-1,"R":5,"T":1,"Y":3,"F":5,"J":1,"M":1,"P":2,"E":5,"H":1,"K":1,"B":1}},"E":{"d":"18,-17v8,-1,19,1,26,-2r0,-197r-26,-1r0,-17r153,0r3,54v-6,1,-13,2,-19,3v-5,-13,1,-35,-14,-38v-9,-2,-47,-3,-68,-1r0,88v20,0,37,-1,56,-1v13,0,8,-14,10,-24r19,0r-1,68r-19,0v-2,-10,4,-27,-9,-26r-56,0r-1,87v8,12,85,10,83,-3r11,-33v6,1,13,3,19,4v-4,19,-9,37,-13,56r-154,0r0,-17","w":199,"k":{"a":-3,"c":-1,"d":-1,"e":-1,"g":-2,"k":-3,"t":-3,"y":-3,"b":-4,",":-10,"j":-5,"p":-2,".":-9,"w":-3,"x":-5,"A":-10,"C":-2,"D":-1,"G":-2,"i":-3,"I":-1,"l":-5,"L":-1,"n":-1,"N":-3,"r":-1,"R":-1,"S":-4,"T":-5,"M":-3,"f":-5,"h":-4,"m":-1,"E":-1}},"F":{"d":"44,-216r-26,-1r0,-17r153,0v1,19,3,38,4,57v-6,1,-13,1,-19,2v-6,-13,0,-37,-15,-40v-9,-2,-46,-4,-68,-1r0,93r56,0v15,1,8,-15,11,-25r19,0r-1,69r-19,0v-2,-10,5,-27,-10,-26v-16,0,-35,-1,-56,-1r-1,88r42,1r0,17r-96,0r0,-17v8,-1,19,1,26,-2r0,-197","w":191,"k":{"P":-2,";":6,":":6,".":42,",":41,"a":8,"e":7,"o":7,"u":-1,"A":6,"C":-3,"-":-8,"D":-2,"l":-1,"O":-3,"R":-2,"S":-5,"T":-8,"E":-2}},"G":{"d":"18,-111v-4,-92,97,-152,185,-117v1,19,2,40,2,60v-6,1,-14,1,-20,2r-5,-36v-3,-15,-24,-16,-40,-17v-51,-1,-90,47,-90,103v0,73,65,123,126,94r0,-62r-39,0v0,-6,1,-13,1,-18r86,0r0,18v-6,1,-17,-2,-20,2r-1,74v-12,7,-35,12,-64,12v-76,-1,-118,-43,-121,-115","w":239,"k":{"a":1,",":-4,".":-2,"A":-5,"r":1,"R":-1,"E":-1}},"H":{"d":"19,-17v8,-1,19,1,25,-2r0,-197r-25,-1r0,-17r85,0r0,17v-10,1,-23,-1,-31,2v2,27,-4,61,2,84r115,0r0,-85r-30,-1r0,-17r84,0v0,5,-1,12,-1,17r-23,1r-1,198r26,1r0,17r-85,0v0,-5,1,-12,1,-17v9,-1,21,1,29,-2r-1,-94r-116,1r-1,94r32,1r0,17r-85,0r0,-17","w":263,"k":{"a":3,"e":5,"o":5,"O":3}},"I":{"d":"44,-216r-28,-1r0,-17r87,0r0,17v-10,1,-22,-1,-30,2r-1,197r31,1r0,17r-86,0r0,-17v9,-1,20,1,27,-2r0,-197","w":116,"k":{"c":4,"d":4,"k":-4,"s":-1,"t":-3,"b":-4,"v":-1,"A":-3,"C":3,"G":3,"l":-4,"O":3,"S":-5,"T":-8,"Y":-4,"V":-3,"f":-5,"h":-4,"X":-4}},"J":{"d":"61,-12v43,0,50,-30,50,-77r0,-128r-45,-1r0,-16r101,0v0,5,-1,11,-1,16v-8,1,-19,-1,-26,2v-4,101,26,227,-85,223v-12,0,-26,-1,-40,-4r-6,-56v6,-1,13,-2,19,-3r7,36v2,8,19,8,26,8","w":177,"k":{".":30,",":30,"a":6,"e":6,"o":4,"A":6,"Y":-2}},"K":{"d":"179,0v-15,-15,-58,-111,-84,-111v-7,0,-17,-1,-22,0r-1,93r30,1v0,5,-1,12,-1,17r-82,0r0,-17v8,-1,19,1,25,-2r0,-197r-25,-1r0,-17r81,0r0,17v-9,1,-22,-2,-27,3r0,86v6,0,16,0,25,-2v13,-13,53,-60,70,-86r-24,-1r0,-17r75,0r0,17r-19,1r-79,91v30,23,49,64,73,98v9,13,23,7,38,10v0,5,-1,11,-1,16","w":227,"k":{"a":-10,"e":-4,"o":-4,"u":-1,"y":1,":":-5,",":-15,"j":-6,".":-14,";":-5,"v":6,"A":-5,"-":7,"D":-2,"G":4,"i":-5,"I":-3,"l":-6,"L":-2,"n":-2,"N":-3,"O":4,"r":-2,"R":-7,"S":-3,"T":-2,"Y":-8,"Z":-3,"F":-2,"J":-9,"M":-3,"P":-2,"V":-1,"W":-1,"h":-4,"E":-2,"H":-2,"K":-3,"B":-2,"X":-2}},"L":{"d":"44,-216r-26,-1r0,-17r88,0v0,5,-1,12,-1,17v-10,1,-24,-1,-32,2r-1,191v0,6,1,7,16,7v74,4,59,-4,77,-47v7,1,13,3,19,4v-4,18,-9,41,-14,60r-152,0r0,-17v8,-1,19,1,26,-2r0,-197","k":{"a":-10,"e":-5,"o":-5,"u":-1,"y":3,",":-14,".":-13,"A":-17,"-":-14,"i":-1,"I":-3,"L":-3,"O":-1,"S":-10,"T":23,"Y":19,"V":17,"E":-3}},"M":{"d":"44,-216r-25,-1r0,-17r63,0r75,188r2,0r75,-188r60,0r0,17v-8,1,-20,-2,-25,3v0,59,1,133,1,196r25,1r0,17r-80,0r0,-17v9,-1,21,1,29,-2v0,-54,-1,-124,-1,-181r-2,0v-32,84,-57,143,-79,189r-16,0v-25,-49,-47,-121,-80,-191v-1,58,-2,126,-2,184r32,1v0,5,-1,12,-1,17r-78,0r0,-17v8,-1,19,1,25,-2v0,-60,2,-138,2,-197","w":312,"k":{"c":2,"e":1,"o":2,"A":-4,"i":-1,"O":1}},"N":{"d":"17,-17v8,-1,18,0,25,-2r0,-198r-27,0v0,-5,1,-12,1,-17r52,0r130,194v0,-59,0,-118,-1,-177r-34,0r0,-17r80,0r0,16v-7,1,-19,-2,-23,3r-1,214v-5,2,-14,4,-20,4v-37,-51,-86,-124,-133,-195r-3,0r0,174r36,1r0,17r-82,0r0,-17","w":257,"k":{"a":4,"e":4,"o":4,",":-1,"S":-4,"T":-7,"Y":-1}},"O":{"d":"240,-124v-1,67,-39,130,-115,128v-67,-2,-107,-48,-107,-119v0,-73,49,-122,118,-123v64,-1,104,49,104,114xm49,-117v-2,58,28,103,81,103v54,0,79,-38,80,-103v1,-55,-24,-103,-78,-103v-55,0,-81,40,-83,103","w":258,"k":{"a":3,"c":3,"g":-2,"k":-2,"o":3,"t":-6,"u":-4,"y":-7,"b":-3,",":24,"j":-4,"p":-5,".":24,"v":-7,"w":-6,"A":5,"C":-3,"i":-1,"l":-2,"L":4,"n":-2,"N":3,"O":-3,"r":-3,"R":4,"S":-2,"T":-1,"Y":6,"F":4,"J":1,"M":1,"P":4,"V":2,"f":-5,"h":-2,"m":-2,"H":4,"K":4,"B":3}},"P":{"d":"184,-168v-2,56,-46,81,-112,77r0,73r40,1r0,17r-93,0v0,-6,1,-12,1,-17v8,-1,18,1,24,-2r0,-197r-25,-1v0,-5,1,-12,1,-17v79,-4,167,-1,164,66xm72,-112v37,15,82,-13,82,-51v0,-42,-39,-61,-81,-53","w":196,"k":{"v":-4,"h":-1,"f":-3,"P":1,"M":1,"J":22,"H":1,"F":1,"B":1,"?":-1,";":1,":":1,".":53,",":53,"a":13,"e":13,"o":14,"s":8,"y":-10,"A":16,"C":-4,"-":3,"D":3,"i":-2,"I":1,"l":-3,"L":1,"N":1,"R":3,"S":-5,"T":-1,"E":3,"K":1}},"Q":{"d":"135,3v-73,7,-117,-51,-117,-117v1,-72,48,-123,118,-124v66,-1,105,54,105,115v0,63,-34,104,-77,123v33,20,64,44,111,29v1,5,2,12,2,17v-65,27,-95,-7,-142,-43xm132,-220v-57,0,-80,40,-83,104v-3,56,28,102,82,102v53,0,77,-36,79,-100v2,-57,-25,-106,-78,-106","w":258,"k":{";":-9,".":13,",":-15,"u":-4,"U":-2,"}":-15,"]":-15,")":-15}},"R":{"d":"134,-108v19,-1,45,80,64,90r22,1v0,5,-1,11,-1,17r-47,0v-13,-17,-34,-66,-46,-84v-5,-18,-37,-17,-54,-15r0,81r30,1r0,17r-83,0v0,-6,1,-11,1,-17v8,-1,18,0,24,-2r0,-197r-25,-1v0,-5,1,-12,1,-17v75,-1,161,-8,163,59v2,34,-25,52,-49,67xm73,-216r-1,99v44,6,87,-22,81,-50v2,-41,-39,-57,-80,-49","w":216,"k":{"a":-12,"e":-1,"o":-1,"u":-1,"y":1,":":-4,",":-14,".":-13,";":-5,"A":-10,"-":1,"D":-4,"G":1,"i":-2,"I":-4,"O":1,"R":-4,"S":-8,"T":3,"U":4,"Y":3,"z":-6,"Z":-4,"J":-10,"M":-1,"P":-4,"W":-1,"h":-2,"E":-4,"K":-4,"X":-9}},"S":{"d":"158,-67v0,66,-81,84,-139,62v-1,-19,-3,-39,-4,-57v7,-1,14,-2,20,-3r7,38v24,25,94,10,89,-31v5,-58,-107,-52,-107,-115v0,-58,74,-78,126,-57v2,17,3,36,4,54v-6,1,-12,1,-19,2v-3,-24,-4,-45,-36,-45v-25,0,-46,14,-47,40v0,25,12,31,49,48v36,16,57,31,57,64","w":177,"k":{"a":-2,"c":-2,"e":-2,"k":-4,"o":-2,"t":-3,"y":-2,",":-6,"j":-1,"p":-1,".":-5,"q":-2,"v":-2,"w":-1,"A":-3,"C":-3,"-":-15,"G":-3,"l":-4,"N":-1,"O":-3,"S":-2,"T":-3,"U":-3,"V":-4,"h":-4}},"T":{"d":"58,-17v10,-1,23,1,31,-2r0,-197v-31,0,-39,0,-47,1v-17,3,-9,28,-15,42v-6,0,-14,-1,-20,-2r3,-59r186,0r3,59v-6,1,-13,1,-20,2v-5,-14,3,-39,-14,-42v-9,-1,-17,-1,-48,-1r0,198r33,1v0,5,-1,12,-1,17r-91,0r0,-17","w":204,"k":{"o":12,"a":8,"c":20,"e":20,"s":8,"u":5,"y":4,":":15,",":22,".":23,";":13,"v":4,"w":3,"A":14,"C":1,"-":14,"G":1,"i":-4,"I":-7,"O":1,"r":5,"R":-4,"S":-5,"T":-17,"Y":-8,"V":-15,"W":-8,"h":-7,"E":-7,"H":-7,"?":-7,"}":-1,")":-7,"!":-1}},"U":{"d":"122,4v-57,0,-85,-42,-85,-99v0,-39,4,-86,-2,-121r-22,-1v0,-5,1,-12,1,-17r85,0v0,5,-1,12,-1,17r-31,1v8,78,-33,197,56,200v87,3,52,-119,60,-199v-8,-3,-22,-1,-32,-2v0,-5,1,-12,1,-17r79,0v0,5,-1,11,-1,17r-23,1v-2,68,9,167,-26,197v-11,10,-29,23,-59,23","w":240,"k":{"k":-2,"t":-3,"b":-2,",":20,"p":-3,".":20,"A":7,"G":-1,"l":-8,"S":-1,"T":-7,"Y":-2,"J":4,"W":-2,"h":-2}},"V":{"d":"55,-216r58,183r2,0v12,-31,26,-65,35,-93v8,-25,27,-70,28,-90r-31,-1r0,-17r80,0r0,17r-20,1r-87,219v-3,0,-12,1,-20,1r-80,-220r-21,-1v0,-5,1,-12,1,-17r91,0v0,5,-1,12,-1,17","w":224,"k":{"o":12,"a":5,"V":-8,"?":-2,";":14,":":14,".":47,",":46,"e":21,"u":5,"A":19,"C":6,"-":5,"G":6,"i":-1,"l":-8,"O":6,"r":6,"Y":-8,"E":-3,"}":-4,"]":-3,")":-12}},"W":{"d":"77,4r-54,-220r-20,-1r0,-17r89,0v0,5,-1,12,-1,17r-34,1r34,179r2,0r62,-187r20,0v17,56,35,127,53,188r2,0r42,-179v-9,-3,-23,-1,-33,-2r0,-17r80,0r0,17r-20,1r-62,220r-21,0v-20,-52,-34,-123,-56,-178r-63,178r-20,0","w":316,"k":{"o":8,"h":-11,"a":4,"W":-1,"?":-2,".":32,",":32,"!":-1,"e":15,"g":15,"k":-3,"u":1,"A":10,"-":-1,"i":-3,"l":-1,"N":-1,"O":2,"r":4,"T":-10,"U":-1,"Y":-12,"E":-7,"}":-4,"]":-3,")":-12}},"X":{"d":"-4,-17v8,-1,17,0,23,-2v23,-35,51,-64,72,-101r-63,-95v-7,-2,-17,-1,-25,-2v0,-5,1,-12,1,-17r89,0v0,5,-1,12,-1,17r-32,1v10,18,38,63,49,78r3,0v8,-13,44,-64,46,-78r-28,-1r0,-17r79,0v0,5,-1,12,-1,17r-20,1r-66,95v23,32,50,71,71,103r22,1r0,17r-87,0r0,-17r28,-1v-3,-14,-39,-68,-54,-84v-12,17,-47,70,-56,84r30,1r0,17r-80,0r0,-17","w":212,"k":{"h":-2,"X":-1,"V":-1,"?":-5,";":-4,":":-4,".":-4,",":-4,"a":-6,"A":-1,"Y":-1}},"Y":{"d":"58,-17v10,-1,24,2,30,-3r0,-70r-71,-127r-19,0r0,-17r86,0r0,17r-33,1v20,34,34,74,57,105v12,-24,48,-85,52,-105r-29,-1r0,-17r76,0r0,16r-19,2r-72,125r0,73r33,1v0,5,-1,12,-1,17r-91,0v0,-5,1,-11,1,-17","w":202,"k":{"a":20,"e":20,"o":19,"u":7,":":1,",":25,".":26,";":1,"v":4,"A":13,"C":8,"-":13,"G":7,"I":-1,"O":8,"r":7,"T":-9,"V":-10,"W":-10,"?":-9,"}":-4,"]":-3,")":-13,"!":-1}},"Z":{"d":"192,-215r-146,196v60,0,94,2,110,-3v15,-5,15,-32,22,-47v7,1,14,3,20,4r-15,65r-166,0v-3,-5,-5,-10,-7,-15v39,-49,106,-141,148,-198v-22,-6,-73,-1,-98,-1v-13,8,-13,32,-20,47v-6,-1,-13,-3,-19,-4v4,-21,7,-42,11,-63r154,0v3,6,5,13,6,19","w":209,"k":{"a":-4,"e":-4,"o":-4,",":-12,".":-10,"-":-13}},"[":{"d":"39,46r0,-298v21,0,45,-1,67,-1v0,5,-1,10,-1,15v-13,2,-34,-3,-42,4r-1,264r44,1v0,5,-1,11,-1,16v-22,0,-45,-1,-66,-1","w":116,"k":{"g":-5,"k":-2,"l":-2,"T":1,"Y":-3,"J":4,"V":-2,"W":-1,"h":-2}},"\\":{"d":"118,19r-114,-266v6,-3,12,-5,19,-8r113,265v-5,3,-12,6,-18,9","w":141},"]":{"d":"78,-253r-1,299v-21,0,-44,1,-66,1v0,-5,-1,-11,-1,-16r44,-1r0,-264v-7,-7,-29,-2,-42,-4v0,-5,-1,-10,-1,-15r67,0","w":116},"^":{"d":"87,-227v5,0,12,-1,17,-1r66,99v-4,4,-10,8,-15,11r-60,-82r-58,82v-5,-4,-10,-7,-15,-11"},"_":{"d":"0,26r180,0r0,20r-180,0r0,-20","w":180},"a":{"d":"117,4v-5,-2,-6,-12,-13,-17v-27,14,-40,17,-53,17v-18,0,-41,-15,-41,-36v0,-26,42,-55,95,-48v6,-70,-47,-62,-73,-29v-4,-4,-8,-9,-12,-14v28,-37,112,-53,112,27v0,20,-6,70,3,81r24,-1r0,15v-5,1,-26,5,-42,5xm40,-35v5,29,47,23,65,2r0,-31v-33,-3,-69,6,-65,29","w":163},"b":{"d":"169,-88v8,68,-61,113,-120,80r-8,13v-4,0,-11,-2,-17,-3v6,-67,2,-155,3,-229r-26,-1r0,-15v16,-1,51,-11,54,-8r0,114v63,-42,107,-9,114,49xm90,-13v59,0,68,-117,11,-121v-14,0,-32,6,-47,17v6,45,-21,104,36,104","w":183,"k":{"j":-3,"f":-1,".":3,",":2,"d":-1,"e":-1,"g":-4,"o":-1,"t":-3,"u":-1}},"c":{"d":"44,-73v-5,55,49,68,90,46v1,5,3,11,4,16v-56,30,-121,17,-124,-56v-3,-62,65,-106,121,-80v0,5,-8,19,-12,22v-4,-1,-17,-9,-32,-9v-33,1,-45,25,-47,61","w":145,"k":{"c":3,"d":1,"e":2,"o":2,"t":-1,"u":-1,"y":-8,",":-5,".":-3,"q":2,"-":6,"i":-1,"l":-1,"n":-1,"r":-1}},"d":{"d":"14,-69v-3,-58,56,-103,115,-80r0,-78r-30,-1r0,-15v19,-1,55,-11,58,-8v0,64,-1,157,-1,227v0,14,18,4,28,6r0,15v-6,2,-28,7,-42,7v-5,-2,-6,-13,-13,-17v-62,41,-112,5,-115,-56xm44,-72v-7,55,57,74,85,37v0,-32,-1,-65,-1,-92v-41,-24,-90,3,-84,55","w":187,"k":{"a":-4,"g":-1,"s":-1,"t":-2,"j":-5}},"e":{"d":"44,-75v-7,61,55,69,96,47v2,5,3,11,4,16v-57,35,-130,10,-130,-57v0,-65,78,-115,120,-67v14,16,21,51,1,60v-21,1,-68,1,-91,1xm120,-97v3,-36,-38,-54,-60,-30v-5,6,-14,17,-15,35v21,0,49,0,70,-1v3,0,5,-1,5,-4","w":160,"k":{"c":-1,"d":-1,"e":-1,"g":-3,"o":-1,"t":-2,"u":-1,"y":-2,",":-1,"j":-4,"p":-1,"q":-1,"w":-2,"f":-4}},"f":{"d":"35,-150v-3,-71,43,-107,99,-92v0,6,-7,20,-12,24v-40,-12,-65,3,-58,68r52,0r0,19r-52,0r0,114r35,1r0,16r-85,0r0,-15v7,-1,16,0,22,-3r0,-114r-27,0v0,-6,1,-12,1,-17v8,0,17,-1,25,-1","w":120,"k":{"'":-13,"w":-1,"v":-2,"p":-1,"o":1,"j":-2,"h":-15,"b":-17,"?":-18,";":-4,":":-4,".":3,",":2,"\"":-13,"!":-7,"a":2,"c":5,"d":5,"e":5,"k":-9,"t":-1,"y":-3,"-":6,"i":-2,"l":-16,"}":-17,"]":-16,")":-21}},"g":{"d":"166,30v1,36,-47,58,-92,58v-50,0,-86,-27,-61,-57v8,-10,23,-14,30,-25v-10,-3,-21,-10,-21,-25v0,-3,1,-3,28,-22r0,-2v-16,-8,-34,-23,-34,-51v0,-42,53,-73,102,-57v15,-1,35,-1,47,-2r0,18v-10,2,-27,-3,-34,2v30,42,-1,103,-63,94v-9,7,-18,14,-18,19v-3,18,90,8,99,21v11,7,17,15,17,29xm115,-98v0,-26,-9,-40,-33,-41v-22,0,-37,16,-37,44v0,31,16,41,34,41v20,0,36,-15,36,-44xm33,47v8,41,108,30,106,-11v0,-17,-9,-20,-40,-22v-18,-1,-31,-2,-38,-2v-17,14,-28,23,-28,35","w":167,"k":{"a":1,"g":-9,"k":-1,"o":1,"t":-7,"u":-4,"y":-13,"b":-4,",":-11,"j":-14,"p":-12,".":3,";":-5,"v":-7,"w":-8,"i":-6,"l":-4,"n":-3,"r":-3,"z":-2,"f":-8,"h":-4,"m":-3,"}":-8,"]":-8,")":-8}},"h":{"d":"135,-17v4,-38,12,-116,-26,-116v-15,0,-35,10,-50,20r0,96r27,1r0,16r-76,0r0,-16v7,-1,17,1,22,-2r0,-210r-27,-1r0,-15v15,-1,52,-10,55,-7r0,118v38,-21,47,-22,60,-22v57,3,44,79,44,138r24,1v0,5,-1,11,-1,16r-73,0r0,-15","w":196,"k":{"w":2,"v":5,"j":-1,"t":1,"y":4}},"i":{"d":"49,-228v26,1,21,40,-1,39v-11,0,-20,-9,-20,-19v0,-10,8,-20,21,-20xm37,-130r-28,-1r0,-15v15,-2,52,-9,55,-9r0,138r25,1r0,16r-78,0r0,-16v8,-1,19,0,26,-2r0,-112","w":95,"k":{"a":-2,"t":-1,"j":-4}},"j":{"d":"44,-228v26,1,23,39,0,39v-11,0,-20,-9,-20,-19v0,-9,7,-20,20,-20xm-11,67v33,-16,46,-33,46,-90r-1,-106r-29,-1r0,-15v14,-2,54,-10,57,-10r0,125v1,56,-18,91,-52,114v-6,0,-20,-11,-21,-17","w":87,"k":{"w":-1,"v":-1,"f":-3,".":-2,",":-3,"a":-2,"e":-1,"g":-3,"s":-1,"i":-1,"z":-1}},"k":{"d":"132,0v-22,-19,-28,-86,-73,-75r0,58r22,1r0,16r-73,0r0,-16v7,-1,18,1,23,-2v0,-63,1,-147,1,-210r-28,0v0,-5,1,-10,1,-15v15,-1,52,-11,55,-8v0,45,-1,106,-1,160v4,0,17,-1,23,-2v13,-14,29,-24,38,-41r-17,-1r0,-16r65,0r0,16r-17,1v-15,17,-35,29,-48,48v19,12,36,55,55,69r22,0r0,17r-48,0","w":179,"k":{"a":-2,"c":1,"d":1,"e":1,"g":-1,"k":-3,"o":1,"s":-3,"t":-2,"y":-2,"b":-1,":":-6,",":-8,"j":-6,"p":-2,".":-7,";":-8,"v":-1,"w":-1,"-":9,"i":-2,"l":-3,"n":-2,"r":-2,"z":-2,"f":-2,"h":-3}},"l":{"d":"32,-228r-28,-1r0,-15v16,0,54,-10,57,-7v0,65,-2,162,-2,234r28,1r0,16r-81,0v0,-5,1,-11,1,-16v8,-1,19,1,25,-2r0,-210","w":92,"k":{"a":-1,"j":-5,"w":-1}},"m":{"d":"134,-17v0,-41,14,-119,-26,-117v-12,0,-30,8,-44,19v-1,31,-1,67,-1,98r26,1r0,16r-75,0r0,-16v7,-1,17,1,22,-2r0,-112r-27,-1r0,-14v15,-1,48,-11,51,-8v2,6,1,15,4,19v34,-21,42,-21,54,-21v21,0,33,17,40,24v35,-22,44,-23,58,-23v61,0,42,77,44,137r23,1r0,16r-71,0r0,-15v7,-1,16,0,21,-3v-3,-48,16,-113,-28,-115v-14,0,-30,10,-43,19r0,97r24,1r0,16r-73,0v0,-5,1,-11,1,-16","w":292,"k":{"w":1,"v":3,"j":-1,"y":4}},"n":{"d":"140,-17v1,-44,14,-116,-28,-116v-13,0,-34,9,-48,21r0,95r26,1v0,5,-1,11,-1,16r-75,0r0,-16v8,-1,17,0,23,-2r-1,-112r-27,0r0,-15v14,-2,47,-9,50,-9v3,7,0,18,6,22v36,-22,44,-23,59,-23v60,0,44,79,44,138r24,1v0,5,-1,11,-1,16r-72,0r0,-15","w":200,"k":{"c":1,"d":1,"e":1,"o":1,"y":4,"v":5,"w":3}},"o":{"d":"167,-79v0,47,-32,83,-79,83v-46,0,-71,-32,-73,-77v-2,-41,34,-82,79,-82v44,0,74,32,73,76xm45,-75v0,35,13,63,46,63v33,0,46,-30,46,-66v0,-33,-16,-60,-45,-61v-31,0,-47,30,-47,64","w":181,"k":{"c":-1,"d":-1,"e":-1,"g":-4,"o":-1,"t":-1,"y":1,",":1,"j":-3,".":2,"q":-1,"v":1,"x":3,"z":5,"f":-1}},"p":{"d":"173,-86v0,68,-56,105,-115,82r0,69r33,1r0,15r-83,1v0,-5,1,-11,1,-16v7,-1,18,2,22,-3r0,-193r-27,0r0,-15v15,-1,48,-12,50,-9v2,5,0,17,5,19v36,-18,41,-20,56,-20v36,0,58,37,58,69xm95,-14v31,-1,49,-26,49,-63v0,-27,-12,-56,-39,-56v-13,0,-31,6,-46,17r0,84v0,8,18,18,36,18","w":187,"k":{"v":1,"p":-1,"j":-3,"f":-1,".":1,"c":-1,"d":-1,"e":-1,"g":-2,"o":-1,"u":-1,"y":1,"n":1,"z":1}},"q":{"d":"15,-69v-3,-60,56,-103,118,-78v6,-8,13,-13,25,-7r-2,218r23,1v0,5,-1,11,-1,16r-82,1r0,-15v11,-2,25,0,33,-5v-2,-23,4,-55,-2,-74v-59,38,-109,3,-112,-57xm45,-72v-7,52,55,75,84,36r0,-90v-42,-26,-89,3,-84,54","w":182},"r":{"d":"124,-125v-52,-11,-62,51,-61,108r34,1r0,16r-83,0r0,-15v7,-1,16,0,22,-3r0,-112r-26,0r0,-15v15,-1,49,-11,51,-8v3,7,-3,35,3,48v29,-49,33,-56,70,-46v0,8,-6,23,-10,26","w":135,"k":{"a":4,"c":5,"d":5,"e":5,"g":-1,"o":5,"s":1,"t":-8,"u":-7,"y":-13,":":-4,",":9,"j":-11,"p":-9,".":11,"q":5,";":-4,"v":-14,"w":-11,"-":3,"i":-5,"n":-5,"r":-5,"z":-2,"f":-8,"m":-5,"?":2}},"s":{"d":"128,-44v5,47,-71,57,-110,41v-2,-14,-3,-28,-5,-42v6,-1,13,-2,19,-3v1,21,8,35,32,35v19,0,37,-6,38,-26v0,-18,-11,-20,-41,-29v-29,-9,-41,-21,-41,-41v-2,-45,67,-53,101,-39v1,13,3,26,4,39v-5,1,-12,2,-18,3v-3,-18,-5,-34,-29,-32v-18,2,-31,7,-32,25v-2,32,92,23,82,69","w":144,"k":{"a":-1,"c":-1,"d":-1,"e":-1,"g":-3,"o":-1,"u":-1,":":2,",":-3,"j":-4,"p":-1,".":-1,"q":-1,";":1,"v":-1,"w":-1,"-":-4,"f":-1}},"t":{"d":"123,-6v-41,16,-89,14,-88,-28r1,-97r-25,0v0,-6,1,-13,1,-18v8,-1,20,1,25,-3v0,-10,1,-24,1,-34v10,-6,24,-14,26,-11r0,47r56,0v0,6,-1,13,-1,18r-56,0r0,94v2,30,32,22,58,16v1,5,1,11,2,16","w":128,"k":{"c":3,"d":3,"e":3,"o":3,"s":-1,"y":-1,":":-3,",":-5,"j":-1,"p":-2,".":-4,";":-4,"v":-1,"w":-1,"-":5,"i":-1,"l":-1,"?":4}},"u":{"d":"143,4v-5,-3,-7,-14,-13,-20v-32,19,-40,20,-54,20v-24,0,-46,-26,-46,-50r0,-87r-22,0v0,-5,1,-12,1,-17v14,1,46,-3,50,0v4,47,-20,133,29,133v13,0,27,-7,42,-18r0,-98r-23,-1v0,-5,1,-11,1,-16v13,1,47,-3,50,0v2,43,-3,93,2,133r24,0r0,15v-4,1,-25,6,-41,6","w":190,"k":{"c":1,"d":1,"e":1,"g":-2,"s":-1,"y":2,"j":-5,"v":2}},"v":{"d":"87,-27r40,-107r-20,-1r0,-16r64,0r0,16r-17,1r-63,137v-5,0,-12,1,-20,1r-52,-138r-18,-1r0,-16r75,0r0,16r-25,0v13,35,20,76,36,108","w":170,"k":{"v":-1,"j":-2,"b":-3,";":-6,":":-6,".":24,",":23,"a":2,"d":2,"e":2,"o":3,"t":-1,"y":-6,"-":-6,"i":-1,"n":-1,"r":-1}},"w":{"d":"176,-27r28,-107r-21,-1v0,-5,1,-11,1,-16r62,0v0,5,-1,10,-1,15r-16,1r-48,139r-20,0v-15,-34,-22,-75,-38,-109v-12,32,-33,82,-45,109r-20,0r-39,-138r-17,-1v0,-5,1,-11,1,-16r72,0r0,16r-26,0v10,34,12,76,25,107v10,-27,30,-78,44,-113v4,0,13,-1,21,-1v14,37,20,81,37,115","w":244,"k":{"f":-5,"b":-3,";":-6,":":-6,".":15,",":15,"a":1,"c":1,"d":1,"e":1,"o":2,"s":-1,"t":-8,"u":-1,"y":-7,"-":-9,"i":-1,"l":-1,"n":-1,"r":-1}},"x":{"d":"0,-15v7,-1,14,0,19,-4v16,-20,37,-37,51,-59v-15,-18,-28,-39,-45,-56r-17,-1r0,-16r73,0v0,5,-1,11,-1,16r-21,1v7,8,18,30,33,42r30,-42r-18,-1r0,-16r62,0r0,15r-17,2v-8,11,-28,30,-47,56v17,21,34,45,47,61r19,1r0,16r-73,0v0,-5,1,-11,1,-16v6,-1,19,1,20,-3v-10,-13,-20,-33,-35,-44v-13,15,-27,33,-37,46r19,1r0,16r-63,0r0,-15","w":170,"k":{"p":-3,"h":-1,";":-2,":":-2,".":-6,",":-7,"a":-3,"c":3,"e":4,"o":3,"t":-6,"-":6}},"y":{"d":"72,1r-54,-135r-18,-1v0,-5,1,-11,1,-16r74,0r0,16r-25,0v14,35,21,76,38,108v11,-36,30,-72,37,-107r-22,-1v0,-5,1,-11,1,-16r64,0r0,16r-16,1v-33,72,-60,170,-117,222v-6,0,-23,-11,-23,-16v26,-16,47,-43,60,-71","w":166,"k":{"a":2,"c":3,"d":3,"e":2,"g":-1,"o":3,"t":-8,"u":-1,"b":-1,":":-6,",":19,"p":-2,".":20,";":-4,"v":-6,"w":-4,"-":-8,"i":-2,"l":-1,"n":-2,"r":-1,"f":-6,"m":-2}},"z":{"d":"144,-133v-15,20,-76,86,-100,116v27,-3,65,7,77,-8r10,-29v6,1,14,3,19,4r-12,50r-123,0v-2,-4,-4,-9,-5,-14r101,-119v-13,-3,-59,-5,-68,4r-10,29r-18,-3v4,-16,6,-33,10,-48r113,0v2,5,5,12,6,18","w":158,"k":{"a":-3,"e":-2,"o":-1,"t":-1,"u":-1,"y":-2,",":-9,".":-7,"w":-1,"-":-4}},"{":{"d":"111,-240v-90,-3,-5,117,-62,135v58,22,-31,140,61,139r0,16v-43,0,-70,-25,-70,-58v0,-41,35,-85,-22,-88v0,-5,-1,-11,-1,-16v58,-3,23,-42,23,-82v0,-37,24,-61,71,-61r0,15","w":120,"k":{"g":-5,"k":-2,"l":-2,"T":-1,"Y":-4,"J":3,"V":-4,"W":-3,"h":-2}},"|":{"d":"85,-270r19,0r0,360r-19,0r0,-360"},"}":{"d":"56,-8v0,-37,-20,-84,15,-98v-60,-18,32,-136,-61,-133r0,-16v47,0,71,24,71,61v0,40,-36,79,22,82v0,5,-1,11,-1,16v-58,2,-22,48,-22,88v0,33,-27,57,-70,57r0,-15v31,0,46,-18,46,-42","w":120},"~":{"d":"128,-61v-33,0,-74,-53,-87,0v-5,0,-11,-1,-17,-1v3,-25,18,-47,40,-47v31,0,74,55,84,0r18,0v-1,23,-15,48,-38,48"},"'":{"d":"47,-251v-1,18,-4,60,-4,80v-5,1,-13,3,-17,3v-2,-30,-5,-61,-7,-78v8,-3,23,-5,28,-5","w":65},"`":{"d":"43,-230r48,48v-3,4,-7,8,-11,11r-53,-44v5,-5,11,-10,16,-15","w":119},"\u00a0":{"w":79}}});Cufon.registerFont({"w":202,"face":{"font-family":"Chaparral Pro","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 5 3 4 5 5 2 2 3","ascent":"266","descent":"-94","x-height":"4","bbox":"-15 -270 325 93","underline-thickness":"19.44","underline-position":"-16.56","stemh":"31","stemv":"59","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":81},"!":{"d":"39,-75r-20,-150v15,-2,62,-12,72,-9r-17,154v-8,3,-30,5,-35,5xm58,-54v17,0,29,12,29,29v0,17,-13,29,-31,29v-16,0,-29,-11,-29,-28v0,-17,13,-30,31,-30","w":113},"\"":{"d":"67,-252v-2,26,-7,90,-8,113v-7,2,-20,3,-25,3v-3,-35,-9,-84,-12,-109v12,-4,39,-7,45,-7xm139,-252v-2,26,-7,90,-8,113v-7,2,-21,3,-26,3v-3,-35,-8,-85,-11,-110v11,-4,39,-6,45,-6","w":159},"#":{"d":"93,-174r35,0v3,-20,7,-41,10,-58r33,0v-3,17,-7,37,-11,58v12,0,24,-1,34,-1v0,9,0,21,-1,30r-38,0v-3,16,-5,33,-8,48r37,0v0,9,-1,18,-2,28v-10,0,-25,1,-40,1v-4,22,-8,44,-11,62r-29,0v4,-21,7,-41,10,-62r-36,0r-11,62v-9,1,-19,0,-30,0v3,-21,7,-41,10,-62r-35,0v0,-10,0,-22,1,-30r39,0v2,-15,4,-30,7,-47r-38,0v0,-9,1,-19,2,-28v13,0,26,-1,40,-1v4,-21,7,-41,10,-58v11,-1,24,-1,33,-1v-3,17,-7,39,-11,59xm123,-145r-35,0v-3,16,-5,33,-7,48r35,0v2,-15,4,-32,7,-48"},"$":{"d":"183,-79v0,46,-28,65,-76,69v0,12,0,23,-1,35v-9,1,-18,2,-27,2v1,-12,1,-24,1,-36v-24,0,-48,-6,-63,-14v0,-8,11,-30,20,-37v13,9,30,19,44,21v0,-18,2,-37,2,-56v-35,-14,-61,-24,-61,-65v0,-39,39,-61,78,-63r0,-33v9,-2,19,-4,29,-4v0,12,-1,23,-2,36v17,0,37,4,49,11v0,10,-9,32,-18,38v-10,-8,-24,-15,-32,-17v0,17,-1,34,-2,52v39,11,59,27,59,61xm99,-192v-19,1,-30,7,-30,24v0,11,7,17,28,22v0,-15,2,-31,2,-46xm108,-39v35,0,40,-45,1,-50v0,16,-1,33,-1,50"},"%":{"d":"14,-170v0,-40,27,-65,66,-65v48,0,116,-1,146,-3v4,6,8,12,12,19r-149,232v-8,-4,-16,-9,-25,-14r133,-211v-17,-3,-41,0,-74,-2v29,38,5,114,-50,110v-38,-3,-59,-22,-59,-66xm75,-126v18,-2,16,-14,16,-44v0,-25,1,-43,-16,-43v-24,0,-24,90,0,87xm172,-59v0,-38,25,-69,63,-68v42,1,58,22,58,63v0,39,-22,68,-61,68v-39,0,-60,-21,-60,-63xm233,-18v16,-3,16,-15,16,-43v0,-26,0,-41,-16,-44v-16,2,-17,19,-17,45v0,27,0,40,17,42","w":307},"&":{"d":"30,-174v0,-71,145,-85,147,-12v1,25,-16,42,-41,58v17,13,39,33,53,48v8,-9,19,-31,13,-41r-15,-1v0,-10,1,-18,1,-27r82,-1r0,28r-18,1v-10,30,-25,52,-39,66v17,15,24,31,57,26v0,9,-1,20,-1,29v-24,1,-54,3,-76,4v-6,-7,-12,-15,-20,-23v-40,38,-164,30,-164,-40v0,-30,24,-51,49,-68v-15,-12,-28,-26,-28,-47xm105,-207v-34,7,-23,46,7,61v21,-14,24,-61,-7,-61xm82,-105v-27,24,-10,74,32,74v13,0,25,-3,36,-11v-20,-21,-49,-49,-68,-63","w":277},"(":{"d":"30,-96v0,-75,44,-134,93,-164v5,5,10,12,15,18v-35,31,-55,82,-55,142v0,70,22,111,55,148v-5,5,-12,11,-18,16v-44,-34,-90,-80,-90,-160","w":146,"k":{"T":-4,"Y":-6,"V":-6,"W":-6,"J":8}},")":{"d":"116,-104v0,78,-45,134,-92,168v-5,-5,-12,-12,-17,-18v69,-56,77,-230,2,-290v5,-6,12,-11,17,-16v46,31,90,81,90,156","w":146},"*":{"d":"84,-166v1,16,1,32,1,48v-7,1,-16,0,-24,0v1,-16,1,-32,2,-48r-39,29v-5,-6,-9,-13,-13,-20v15,-9,29,-19,44,-28v-15,-9,-29,-19,-44,-28v4,-6,8,-13,13,-19v13,9,26,19,39,29v-1,-16,-1,-33,-2,-49r24,0v-1,16,-1,32,-2,49r39,-30v5,6,9,14,13,20r-44,29v15,9,30,18,44,28v-4,6,-8,14,-13,20","w":146},"+":{"d":"180,-69r-60,0v0,24,-1,48,-1,67v-10,1,-22,1,-33,1v0,-18,-1,-42,-1,-69r-63,0v0,-10,1,-22,1,-32r63,0v0,-23,-1,-47,-1,-66v12,-1,25,-2,36,-2v0,18,-1,43,-1,67v23,0,45,-1,61,-1v0,10,0,24,-1,35"},",":{"d":"49,-57v64,16,34,105,-20,127v-6,-6,-12,-14,-17,-20v35,-23,41,-55,6,-67v-1,-23,13,-40,31,-40","w":106},"-":{"d":"120,-71r-107,0v0,-11,1,-23,1,-33r108,-1v0,10,-1,23,-2,34","w":135,"k":{"s":-9,"y":-2,"j":-5,"v":-4,"w":-6,"A":-8,"c":-5,"C":-6,"S":-14,"T":14,"Y":13,"z":-3,"Z":-3,"V":4,"W":-1,"J":-15}},".":{"d":"55,-56v19,0,30,13,30,29v0,19,-13,31,-32,31v-15,0,-30,-12,-30,-30v0,-15,12,-30,32,-30","w":106},"\/":{"d":"32,23v-10,-3,-21,-6,-32,-10r110,-263v12,3,24,6,36,11","w":146},"0":{"d":"107,-235v66,0,82,36,82,119v0,72,-27,120,-91,120v-61,0,-84,-35,-84,-110v0,-81,28,-129,93,-129xm102,-24v40,1,24,-148,16,-171v-3,-8,-7,-12,-15,-12v-30,0,-26,47,-26,97v0,50,-3,78,25,86"},"1":{"d":"137,-31r49,1r0,30r-161,0v0,-10,0,-20,1,-30v17,-2,39,2,52,-3r0,-142v-17,2,-33,4,-55,7v-2,-10,-4,-20,-5,-30v39,-8,116,-45,120,-38v0,57,-1,141,-1,205"},"2":{"d":"94,-235v57,-2,90,23,90,69v0,64,-63,96,-98,126v25,1,80,-4,101,-2v0,14,-1,29,-2,42r-163,0v-4,-10,-7,-21,-10,-31v46,-36,102,-75,109,-132v4,-34,-37,-50,-56,-28r-8,36v-12,-1,-25,-3,-37,-4v1,-22,3,-43,4,-64v17,-7,46,-12,70,-12"},"3":{"d":"120,-175v0,-26,-38,-38,-55,-20r-7,32v-12,-1,-24,-1,-36,-3v1,-19,1,-39,2,-58v51,-17,155,-23,157,42v1,29,-24,45,-49,57v37,7,54,33,54,56v-2,72,-86,79,-163,69v-3,-21,-5,-42,-7,-63v12,-2,24,-4,37,-6v6,16,3,42,27,41v25,-1,42,-12,42,-35v0,-31,-32,-42,-70,-39v0,-11,-1,-22,-1,-33v54,0,69,-17,69,-40"},"4":{"d":"159,-30r22,2v0,9,-1,19,-1,28r-109,0r0,-28v11,-1,24,0,34,-3r0,-27r-86,0v-5,-12,-11,-24,-15,-37r103,-139v18,0,37,1,54,2v0,39,-1,92,-1,137r36,0v0,11,0,23,-1,35r-35,0v0,10,-1,20,-1,30xm105,-94v-2,-26,4,-60,-2,-82v-16,27,-40,53,-51,81v16,1,43,1,53,1"},"5":{"d":"63,-33v25,17,64,-3,60,-35v4,-40,-49,-45,-90,-41r-7,-7v3,-32,9,-81,14,-116r139,-1v0,14,-1,31,-3,45v-41,0,-79,-1,-100,-1v-2,10,-5,24,-7,37v63,-9,115,22,115,70v0,76,-82,95,-158,82v-3,-20,-5,-40,-8,-60v12,-3,24,-5,36,-6"},"6":{"d":"137,-169v-6,-13,0,-34,-21,-34v-27,0,-44,49,-38,67v7,-4,27,-12,45,-12v44,0,64,31,67,65v4,49,-37,89,-87,87v-60,-3,-88,-32,-88,-101v0,-107,53,-147,151,-135v3,18,4,38,6,57v-11,2,-23,4,-35,6xm107,-24v34,-2,32,-88,-3,-89v-9,0,-22,5,-27,13v1,46,0,69,30,76"},"7":{"d":"195,-191v-50,87,-76,107,-77,190v-12,2,-49,2,-59,2v-1,-26,2,-37,6,-47v10,-28,47,-86,76,-140v-83,1,-74,-12,-91,36v-12,-2,-24,-4,-35,-7v3,-25,7,-51,11,-76r157,1v4,12,9,28,12,41"},"8":{"d":"23,-172v-2,-77,153,-89,157,-10v1,27,-20,39,-35,54v27,14,44,37,44,60v1,47,-42,74,-93,72v-48,-1,-80,-15,-83,-57v-2,-29,24,-46,44,-63v-21,-13,-34,-30,-34,-56xm104,-207v-16,-1,-27,11,-27,28v0,14,11,25,38,36v20,-17,21,-63,-11,-64xm102,-24v17,0,31,-14,30,-33v0,-16,-14,-30,-45,-43v-25,24,-21,75,15,76"},"9":{"d":"188,-131v4,101,-56,150,-153,131v-3,-18,-7,-37,-10,-55v11,-3,23,-6,34,-8v7,15,3,37,29,37v31,0,41,-45,37,-71v-42,27,-114,2,-111,-56v2,-49,35,-83,88,-82v60,2,84,40,86,104xm125,-130v-3,-46,2,-72,-29,-78v-33,3,-33,92,4,90v8,0,19,-4,25,-12"},":":{"d":"55,-161v19,0,30,13,30,29v0,18,-14,30,-32,30v-15,0,-30,-11,-30,-29v0,-15,12,-30,32,-30xm55,-55v19,0,30,13,30,28v0,18,-14,31,-32,31v-15,0,-30,-12,-30,-30v0,-15,12,-29,32,-29","w":106},";":{"d":"55,-161v18,0,29,13,29,29v0,18,-13,30,-31,30v-15,0,-30,-11,-30,-29v0,-15,12,-30,32,-30xm49,-57v64,15,34,104,-20,126v-6,-6,-12,-13,-17,-19v34,-23,42,-56,6,-67v-1,-23,13,-40,31,-40","w":106},"<":{"d":"80,-88r83,69v-5,8,-12,17,-18,23r-107,-78v-1,-8,-1,-19,-1,-28r108,-75v6,6,12,16,17,24"},"=":{"d":"22,-104v0,-10,0,-22,1,-32v38,0,114,-1,158,-2v0,10,0,23,-1,34r-158,0xm22,-35v0,-11,0,-23,1,-34r158,0v0,10,0,23,-1,33v-40,0,-116,0,-158,1"},">":{"d":"117,-87r-82,-66v5,-8,13,-18,18,-24r106,76v1,9,1,18,1,27r-109,78v-6,-6,-13,-15,-18,-23"},"?":{"d":"99,-176v0,-26,-29,-33,-42,-18r-8,30v-13,-1,-25,-2,-37,-4v1,-18,2,-39,3,-58v44,-20,150,-19,150,45v0,35,-24,54,-63,74v-10,5,-5,14,-5,29v-8,3,-21,6,-38,7v-5,-8,-14,-27,-14,-41v37,-26,54,-39,54,-64xm78,-52v17,0,29,12,29,29v0,16,-12,27,-31,27v-15,0,-29,-11,-29,-27v0,-16,13,-29,31,-29","w":176},"@":{"d":"61,-58v0,-49,41,-105,91,-74r6,-11v11,2,21,5,32,8v-3,22,-19,66,-16,82v25,-5,38,-16,38,-49v0,-37,-24,-72,-80,-72v-49,0,-93,38,-93,102v1,76,75,88,124,61v5,6,8,11,8,15v-57,33,-157,15,-157,-73v0,-73,55,-123,125,-123v59,0,97,35,97,85v0,56,-25,73,-91,76v-16,1,-9,-17,-11,-25v-13,12,-33,25,-44,25v-7,-2,-29,-9,-29,-27xm131,-118v-17,0,-27,37,-28,51v0,4,2,7,6,7v18,-5,31,-27,35,-52v-2,-3,-7,-6,-13,-6","w":250},"A":{"d":"-3,-30v6,-1,16,1,19,-3r75,-202v6,-1,22,-1,49,-1r70,204r18,2r0,30r-102,0r0,-31v6,-1,14,0,19,-2v-3,-6,-4,-21,-9,-25r-67,1v-1,8,-5,18,-6,26r20,1v0,10,-1,20,-1,30r-85,0r0,-30xm129,-87v-9,-23,-12,-58,-26,-82v-7,28,-21,57,-24,82r50,0","w":229,"k":{"g":-5,"k":-1,"s":-10,"t":-1,"y":7,":":-4,",":-13,"p":-4,".":-13,";":-6,"v":6,"a":-9,"A":-5,"c":-3,"C":4,"-":-7,"d":-3,"D":-3,"G":4,"I":-3,"l":-3,"L":-3,"N":-4,"O":4,"R":-3,"S":-10,"T":13,"U":7,"Y":16,"z":-10,"Z":-1,"F":-3,"M":-3,"P":-3,"V":13,"W":8,"f":-4,"h":-1,"q":-3,"x":-7}},"B":{"d":"17,-233v75,1,185,-18,187,53v0,24,-19,43,-42,52r0,3v30,5,55,28,55,58v0,69,-111,71,-200,67r0,-30v7,-1,16,0,21,-2r0,-170r-21,-1r0,-30xm98,-205r0,71v26,5,47,-11,47,-36v0,-23,-21,-41,-47,-35xm97,-104r0,66v0,8,8,10,16,10v23,0,40,-13,40,-37v1,-23,-24,-45,-56,-39","w":229,"k":{".":4,",":4,"y":2,"a":-3,"A":-3,"O":-1,"U":-3,"e":-4,"o":-4,"E":2}},"C":{"d":"208,-13v-86,39,-193,9,-193,-90v1,-102,86,-150,186,-130v3,24,5,50,6,74v-12,2,-25,4,-38,5v-6,-19,-1,-49,-28,-47v-39,3,-59,42,-59,86v0,76,61,92,120,69v3,11,5,23,6,33","w":219,"k":{"y":-4,",":-10,".":-8,"A":-10,"C":4,"-":-2,"D":-2,"I":-2,"l":-6,"O":2,"F":-2,"h":-5,"e":1,"i":-4,"o":2,"r":-3,"u":-2,"E":-2,"H":-2}},"D":{"d":"240,-127v0,99,-68,136,-173,127r-49,0r0,-30v6,-2,17,2,20,-3r0,-169r-21,-1v0,-10,1,-20,1,-30v27,-1,58,-1,88,-1v87,0,134,38,134,107xm174,-112v0,-54,-24,-98,-74,-92r-1,168v0,5,4,8,9,8v40,4,66,-44,66,-84","w":255,"k":{",":22,".":22,"a":6,"A":6,"D":4,"I":4,"L":4,"N":4,"O":-2,"R":4,"U":-1,"Y":4,"F":4,"M":4,"P":4,"J":4,"e":4,"i":-1,"o":4,"r":-1,"u":-1,"E":4,"H":4,"K":4,"B":4}},"E":{"d":"18,-30v6,-2,17,2,20,-3r0,-169r-20,-1r0,-31r167,0r3,64v-10,1,-23,3,-35,4v-4,-12,1,-31,-13,-34v-4,-1,-22,-2,-41,-2r0,68v19,-1,40,5,38,-21v12,0,24,1,34,1r-1,72v-10,0,-22,1,-34,1v-1,-8,0,-22,-7,-22r-30,0r0,63v0,7,2,8,18,8v20,0,31,3,36,-9r10,-28v12,2,24,4,35,6v-4,21,-8,42,-13,63r-167,0r0,-30","w":209,"k":{"g":-4,"t":-8,",":-12,"p":-2,".":-10,"v":-1,"a":-3,"A":-9,"c":-4,"C":-1,"d":-4,"D":-2,"G":-1,"I":-2,"l":-8,"L":-2,"N":-2,"R":-2,"S":-5,"T":-4,"M":-2,"f":-5,"h":-8,"x":-8,"e":-4,"i":-1,"n":-2,"r":-2,"u":-4,"E":-2,"b":-9,"m":-2}},"F":{"d":"38,-202r-21,-1v0,-10,1,-21,1,-31r167,0v2,22,4,44,5,67v-10,1,-24,3,-36,4v-5,-13,0,-33,-14,-37v-4,-1,-21,-2,-41,-2r0,77v21,-1,48,7,44,-22v12,0,23,1,34,1r-1,76v-11,0,-22,1,-34,1v-3,-9,3,-24,-10,-24v-11,0,-21,-1,-33,-1r-1,62r39,1r0,31r-119,0r0,-30v6,-1,17,1,20,-3r0,-169","w":199,"k":{"P":-6,".":29,",":26,"a":5,"A":3,"C":-8,"-":-12,"D":-6,"l":-4,"O":-8,"R":-6,"S":-10,"T":-14,"e":3,"o":3,"u":-5,"E":-6}},"G":{"d":"15,-108v-3,-104,105,-150,198,-121v2,23,3,47,4,71v-12,1,-25,3,-38,4v-7,-21,-1,-50,-32,-49v-42,2,-64,43,-64,90v0,51,27,85,65,86v6,0,8,-2,8,-5r0,-49r-28,0v0,-10,1,-22,1,-32r105,0v0,10,-1,22,-1,32v-5,1,-14,-2,-16,2r-1,70v-12,7,-37,13,-70,13v-83,0,-129,-37,-131,-112","w":244,"k":{",":-5,".":-3,"A":-6,"l":-1,"R":-3,"h":-1,"u":-1,"E":-3}},"H":{"d":"18,-31v6,-1,15,0,20,-2r0,-169r-20,-1r0,-31r104,0v0,10,-1,21,-1,31v-6,2,-18,-2,-21,3v1,21,-3,45,0,64r74,0r0,-66r-22,-1r0,-31r103,0r0,31v-6,1,-14,0,-19,2r-1,169r20,1v0,10,-1,21,-1,31r-105,0v0,-10,1,-21,1,-31v8,-1,18,1,24,-2v-1,-23,2,-49,-1,-70r-74,1r0,70r22,1r0,31r-103,0r0,-31","w":273,"k":{"a":3,"C":1,"O":2,"e":5,"o":5}},"I":{"d":"38,-202r-22,-1r0,-31r107,0r0,31v-7,1,-17,-1,-23,2r-1,169r24,1r0,31r-108,0v0,-10,1,-21,1,-31v7,-1,17,1,22,-2r0,-169","w":137,"k":{"k":-1,"s":-1,"A":-3,"c":3,"C":2,"d":3,"G":2,"l":-1,"O":2,"S":-7,"T":-9,"W":-1,"f":-1,"h":-1,"b":-1,"X":-3}},"J":{"d":"53,-35v26,26,59,-6,50,-43v0,-39,-1,-83,-1,-125r-38,-1r0,-30r121,0v0,9,-1,21,-1,30v-6,2,-17,-2,-20,3v-4,66,11,141,-23,181v-22,26,-82,35,-125,24v-4,-23,-7,-46,-10,-69v11,-3,23,-6,35,-8","w":194,"k":{".":23,",":23,"a":3,"e":5,"o":1,"u":-1}},"K":{"d":"167,0v-24,-26,-26,-110,-68,-103r0,71r20,1v0,10,-1,21,-1,31r-100,0r0,-31v6,-1,14,0,19,-2r1,-169r-20,-1v0,-10,1,-21,1,-31r100,0v0,10,0,21,-1,31v-5,1,-16,0,-18,2r-1,69v4,0,11,-1,17,-2v13,-16,43,-48,51,-68r-17,-1r0,-31r89,0v0,10,-1,21,-1,31r-13,1v-20,25,-47,44,-64,72v20,12,38,58,53,86v4,14,16,11,30,13r0,30","w":243,"k":{"y":3,":":-1,",":-13,"j":-3,".":-13,";":-1,"v":3,"a":-11,"A":-9,"-":-2,"G":2,"I":-1,"l":-6,"N":-1,"O":2,"R":-8,"T":-8,"Y":-6,"M":-2,"V":-3,"W":-7,"h":-5,"J":-3,"e":-5,"i":-4,"n":-1,"o":-5,"r":-1,"K":-1}},"L":{"d":"38,-202r-20,-1r0,-30r105,-1r0,31v-8,1,-18,-1,-24,2r-1,162v0,7,0,8,16,8v21,0,32,3,36,-9r12,-37v12,2,25,4,36,7r-15,71r-166,-1v0,-10,1,-20,1,-30v6,-1,17,1,20,-3r0,-169","w":200,"k":{"y":4,",":-14,".":-12,"a":-8,"A":-18,"-":-17,"I":-3,"L":-1,"O":-1,"S":-10,"T":26,"Y":19,"V":18,"W":1,"e":-7,"i":-1,"o":-7,"u":-2,"E":-3}},"M":{"d":"36,-200r-19,-1r0,-33r90,0v11,29,35,99,51,147r3,0r52,-147r84,0v0,10,-1,23,-1,33v-6,1,-16,-2,-18,3r0,167r20,1r0,30r-96,0r0,-30v7,-1,18,2,22,-3v-2,-36,3,-84,-4,-121v-22,63,-41,106,-56,140v-5,0,-20,1,-31,1v-17,-39,-33,-81,-54,-145r-3,0r-3,126r25,2r0,30r-83,0r0,-30v6,-1,17,1,20,-3v0,-51,1,-116,1,-167","w":315,"k":{"y":1,"A":-4,"c":4,"O":3,"e":1,"o":1}},"N":{"d":"14,-31v6,-1,14,0,19,-2r0,-169r-21,-1v0,-10,1,-21,1,-31r69,0v29,38,70,113,105,157v0,-41,0,-84,-1,-125r-26,-1r0,-31r86,0v0,10,0,21,-1,31v-5,1,-13,0,-17,2r-2,197v-7,4,-25,7,-43,7v-24,-28,-65,-80,-106,-142r-3,0v0,37,-1,71,-1,107r27,1v0,10,-1,21,-1,31r-85,0r0,-31","w":257,"k":{",":-3,".":-1,"a":3,"S":-7,"T":-4,"W":-1,"J":1,"e":3,"i":-1,"o":3,"X":-2}},"O":{"d":"249,-123v1,69,-48,130,-123,127v-69,-3,-112,-49,-111,-119v1,-76,52,-123,126,-123v66,0,107,48,108,115xm84,-119v-2,53,11,90,50,92v37,2,49,-45,48,-87v-1,-44,-9,-93,-47,-93v-43,0,-49,37,-51,88","w":264,"k":{"g":-3,"t":-4,"y":-5,",":15,"p":-4,".":18,"v":-5,"w":-1,"a":4,"A":4,"C":-2,"D":1,"G":-2,"I":1,"L":4,"N":1,"O":-2,"R":4,"S":-1,"T":-1,"Y":7,"F":4,"M":2,"P":4,"V":1,"W":-2,"f":-5,"J":4,"u":-4,"E":1,"H":4,"K":4,"B":4,"b":-3,"X":1}},"P":{"d":"207,-159v0,51,-53,84,-109,78r-1,50r33,1r0,30r-111,0r0,-30v6,-1,14,0,19,-2r0,-170r-20,-1v0,-10,1,-21,1,-30v26,-1,57,-1,87,-1v53,0,101,25,101,75xm98,-115v24,14,51,-12,49,-42v-2,-31,-19,-54,-49,-47r0,89","w":218,"k":{"v":-5,"f":-3,"P":1,"M":1,"J":20,"H":1,"F":1,"B":1,"?":-5,";":1,":":1,".":55,",":53,"s":7,"y":-6,"a":13,"A":19,"C":-1,"-":3,"D":3,"I":1,"L":1,"N":1,"R":3,"S":-2,"T":-4,"e":10,"i":-3,"o":12,"E":3,"K":1}},"Q":{"d":"128,4v-67,1,-116,-48,-113,-119v3,-77,52,-123,125,-123v71,0,106,47,109,116v3,58,-37,98,-70,118v24,15,61,32,97,22v2,10,3,22,4,33v-71,30,-107,-3,-152,-47xm136,-207v-44,0,-51,39,-52,90v-1,57,12,86,50,90v36,4,48,-45,47,-85v0,-45,-9,-95,-45,-95","w":264,"k":{";":-15,".":5,",":-21,"U":-3,"u":-5,"}":-17,"]":-17,")":-17}},"R":{"d":"102,-234v53,-6,105,23,105,63v0,33,-23,50,-45,64v16,8,25,28,40,62v7,16,13,12,28,15r0,30r-71,0v-9,-16,-27,-57,-34,-74v-6,-14,-15,-18,-28,-15r0,58r19,1r0,30r-97,0r0,-30v6,-1,14,0,19,-2r0,-170r-19,-1r0,-31r83,0xm98,-204r-1,84v27,5,49,-12,48,-39v-1,-30,-20,-51,-47,-45","w":228,"k":{"y":-2,":":-5,",":-14,".":-14,";":-7,"a":-13,"A":-11,"-":-4,"D":-7,"G":-3,"I":-7,"L":-1,"N":-1,"O":-3,"R":-7,"S":-10,"T":-5,"U":-3,"Y":2,"Z":-7,"M":-3,"P":-7,"W":-3,"h":-2,"J":-8,"e":-3,"i":-2,"o":-3,"u":-3,"E":-7,"H":-1,"K":-7,"B":-1,"X":-11}},"S":{"d":"178,-75v1,72,-85,93,-158,71v-3,-23,-5,-45,-8,-67v12,-3,26,-5,38,-6v4,13,6,28,12,39v19,14,58,7,58,-20v0,-18,-10,-22,-38,-32v-36,-14,-64,-36,-64,-71v0,-69,86,-89,149,-70v2,22,4,44,5,66v-11,2,-24,3,-37,4v-6,-17,-2,-41,-27,-41v-19,0,-31,8,-32,27v0,18,9,21,42,33v40,14,60,33,60,67","w":193,"k":{"k":-4,"t":-5,"y":-3,",":-4,"j":-3,"p":-3,".":-3,"v":-3,"w":-1,"a":-1,"A":-5,"c":-1,"C":-2,"-":-16,"G":-2,"l":-4,"N":-3,"O":-4,"T":-3,"U":-4,"V":-4,"h":-4,"q":-3,"e":-3,"o":-3}},"T":{"d":"55,-31v8,-1,19,1,25,-2r0,-168v-38,-6,-31,18,-38,43v-12,-1,-26,-2,-38,-3v1,-24,3,-49,4,-73r207,0v1,24,3,49,3,73v-12,1,-25,2,-38,3v-7,-23,3,-49,-38,-43r-1,169r26,1r0,31r-113,0v0,-10,1,-21,1,-31","w":221,"k":{"o":14,"a":12,"s":13,"y":4,":":6,",":12,".":14,";":6,"v":4,"w":2,"A":14,"c":20,"C":1,"-":14,"G":1,"I":-9,"O":1,"R":-5,"S":-5,"T":-17,"Y":-6,"V":-14,"W":-10,"h":-7,"e":20,"i":-5,"r":4,"u":3,"E":-9,"H":-9,"?":-10,"}":-6,"]":-6,")":-5,"!":-4}},"U":{"d":"126,4v-62,0,-97,-40,-97,-97v0,-36,4,-78,-2,-110r-16,-1v0,-10,1,-20,1,-30r105,0v0,10,0,21,-1,31r-24,0v6,62,-24,170,41,170v60,0,37,-113,37,-170r-25,0r0,-31r91,0r0,31r-17,1v0,63,2,157,-28,181v-15,12,-32,25,-65,25","w":243,"k":{"k":-4,"t":-6,",":4,"p":-3,".":6,"A":3,"G":-3,"l":-13,"S":-3,"T":-9,"W":-1,"h":-3,"J":4,"i":-1,"n":-1,"r":-1,"b":-4,"m":-1}},"V":{"d":"131,-59r40,-143r-21,-1r0,-31r89,0r0,31r-18,1r-80,205v-4,1,-23,1,-50,1v-14,-38,-30,-82,-42,-119r-29,-88r-17,0r0,-31r115,0v0,10,-1,21,-1,31r-24,1v14,46,21,100,38,143","w":240,"k":{"o":9,"a":25,"V":-5,"?":-8,";":14,":":14,".":43,",":40,"A":16,"C":7,"-":6,"G":7,"l":-9,"O":7,"U":-1,"Y":-5,"e":21,"i":-2,"r":8,"u":4,"E":-4,"}":-7,"]":-7,")":-7}},"W":{"d":"239,-60r19,-142r-23,-1r0,-30r90,-1v0,10,-1,21,-1,31r-17,1r-55,205v-6,1,-25,1,-51,1v-14,-44,-25,-78,-39,-128r-2,0v-14,45,-29,90,-42,127v-7,1,-30,1,-51,1r-46,-206r-18,-1r0,-31r111,0v0,10,-1,21,-1,31r-25,1r17,142r3,0v8,-29,33,-130,41,-159v6,-1,36,-1,48,-1v8,31,29,122,38,160r4,0","w":324,"k":{"o":8,"h":-10,"a":5,"W":-5,"P":-2,"M":-2,"H":-2,"F":-2,"B":-2,"?":-10,";":2,":":2,".":22,",":22,"!":-3,"g":9,"k":-7,"y":1,"A":9,"-":-1,"D":-2,"I":-2,"l":-3,"L":-2,"N":-3,"O":1,"R":-2,"T":-13,"U":-3,"Y":-9,"e":14,"i":-6,"r":7,"u":1,"E":-7,"}":-7,"]":-7,")":-8}},"X":{"d":"87,-112v-20,-30,-44,-63,-65,-90r-19,-1v0,-10,1,-22,1,-31r112,0r0,31r-20,1v14,20,22,40,34,50v13,-18,24,-33,33,-48v-3,-5,-13,-2,-19,-3r0,-31r88,0v0,10,-1,21,-1,31r-16,1v-20,28,-48,53,-65,78r69,93r17,0v0,10,-1,21,-1,31r-113,0r0,-31v7,-1,19,1,21,-3v-14,-18,-23,-42,-36,-51v-13,18,-27,36,-38,53r22,1v0,10,-1,21,-1,31r-92,0v0,-10,1,-21,1,-31v7,-1,15,0,20,-2","w":237,"k":{"X":-4,"W":-2,"V":-3,"Q":1,";":-2,":":-2,".":-2,",":-2,"!":-2,"y":2,"a":-2,"A":-4,"C":1,"G":1,"O":2,"Y":-4}},"Y":{"d":"55,-31v8,-1,20,2,25,-3r0,-53v-18,-27,-44,-87,-63,-115r-14,-1r0,-31r109,0r0,31r-22,1v12,26,23,58,36,79v11,-24,30,-51,36,-79r-19,-1r0,-31r83,0r0,31r-16,1v-17,28,-48,82,-69,114r-1,56r27,1v0,10,-1,21,-1,31r-111,0r0,-31","w":224,"k":{":":3,",":16,".":18,";":3,"v":3,"a":24,"A":14,"C":10,"-":14,"G":5,"I":-1,"N":-2,"O":9,"T":-10,"U":-1,"V":-7,"W":-7,"e":23,"o":23,"r":3,"u":3,"?":-10,"}":-8,"]":-8,")":-8,"!":-3}},"Z":{"d":"203,-193r-122,158v38,-3,70,6,77,-15r11,-32v13,2,26,5,38,8v-5,25,-11,50,-17,74r-170,0v-4,-9,-8,-20,-11,-29r123,-170v-21,4,-57,-7,-64,11r-13,36v-12,-3,-26,-5,-38,-8v4,-25,9,-51,14,-75r161,1v4,13,8,28,11,41","w":217,"k":{",":-12,".":-10,"-":-15,"e":-1,"o":-1}},"[":{"d":"44,60r0,-313r87,-3v0,9,1,18,0,27v-13,2,-32,-2,-40,5r-1,258r41,2r0,26v-29,-1,-57,-2,-87,-2","w":146,"k":{"T":-5,"Y":-6,"V":-7,"W":-6,"J":10}},"\\":{"d":"113,24r-111,-261v12,-5,24,-10,36,-14r107,261v-10,5,-20,10,-32,14","w":146},"]":{"d":"104,-253r-1,313v-30,0,-59,1,-87,2v-1,-8,-1,-18,-1,-26r41,-2r0,-258v-7,-7,-27,-2,-39,-5v-1,-9,-1,-17,-1,-26v29,1,58,1,88,2","w":146},"^":{"d":"91,-229r24,0r72,112v-7,6,-18,14,-25,19r-60,-84r-60,83r-25,-18"},"_":{"d":"0,26r180,0r0,20r-180,0r0,-20","w":180},"a":{"d":"122,4v-5,-2,-7,-12,-15,-16v-44,27,-90,20,-99,-27v-5,-23,38,-61,98,-54v1,-44,-44,-26,-67,-8v-6,-8,-13,-17,-19,-26v39,-41,141,-57,142,19r1,76r20,-1r0,29v-6,2,-32,8,-61,8xm65,-45v2,20,34,15,42,4r0,-25v-24,-2,-44,7,-42,21","w":187},"b":{"d":"190,-96v8,71,-57,122,-125,90r-12,14v-10,-1,-20,-3,-33,-5v4,-66,1,-145,2,-215r-24,-1v0,-10,1,-21,1,-30v22,-1,78,-11,82,-8r0,106v63,-40,103,-9,109,49xm102,-27v23,-2,25,-22,26,-52v3,-42,-20,-54,-48,-34r0,72v0,10,14,14,22,14","w":200,"k":{"w":-3,"v":-2,"j":-3,"f":-3,".":1,",":-1,"g":-4,"s":-1,"t":-3,"y":-1,"d":-1,"e":-1,"o":-1,"u":-3}},"c":{"d":"72,-76v0,49,46,49,77,33v3,9,6,20,7,29v-63,36,-141,18,-145,-55v-4,-64,76,-114,144,-84v0,11,-12,36,-19,40v-5,-2,-23,-11,-37,-11v-21,0,-27,23,-27,48","w":158,"k":{"k":-3,"t":-5,"y":-7,",":-7,".":-6,"a":-1,"c":3,"-":4,"l":-4,"h":-3,"q":2,"e":1,"i":-3,"n":-3,"o":2,"r":-3,"u":-3}},"d":{"d":"11,-69v0,-59,49,-107,111,-90v0,-16,-1,-34,-1,-52r-27,-1r0,-30v22,-1,82,-12,86,-9r1,219r18,-1r0,29v-5,2,-36,8,-60,8v-7,-3,-7,-14,-16,-17v-32,15,-39,17,-48,17v-34,0,-64,-33,-64,-73xm96,-33v7,-1,25,-1,25,-13r0,-76v-30,-14,-48,4,-48,46v0,23,5,39,23,43","w":204,"k":{"g":-1,"s":-1,"t":-4,"y":1,"j":-5,"a":-1}},"e":{"d":"71,-65v2,45,58,32,87,22v3,9,6,21,7,30v-63,31,-154,23,-154,-58v0,-51,37,-91,91,-91v46,1,66,32,67,75v-13,31,-43,20,-98,22xm112,-95v13,-21,-18,-55,-35,-27v-4,7,-6,14,-6,28v13,0,31,-1,41,-1","w":179,"k":{"g":-3,"y":-1,",":-3,"j":-4,".":-1,"w":-1,"a":-1,"c":-1,"d":-1,"f":-3,"q":-1,"e":-1,"o":-1,"u":-3,"b":1}},"f":{"d":"30,-160v-4,-70,66,-105,122,-82v0,14,-10,35,-17,40v-5,-1,-37,-18,-43,-3v-2,7,-3,14,-3,48v15,0,33,-1,46,-1v0,10,0,24,-1,34r-45,0r0,93r32,1r0,30r-109,0r0,-30v6,-1,14,0,19,-2r0,-93r-25,0r0,-31v8,-2,22,3,24,-4","w":137,"k":{"'":-12,"w":-1,"v":-1,"p":-2,"o":4,"j":-8,"h":-21,"f":-1,"b":-26,"?":-15,";":-2,":":-2,".":2,"\"":-12,"!":-5,"k":-20,"t":-4,"y":-4,"c":4,"-":4,"d":2,"l":-22,"e":4,"i":-4,"u":-1,"}":-13,"]":-13,")":-15}},"g":{"d":"0,50v5,-18,38,-24,42,-35v-14,-6,-27,-13,-27,-33v0,-4,1,-5,35,-24r0,-2v-73,-30,-30,-124,45,-118v37,3,67,3,97,1v1,10,1,22,1,32v-7,1,-23,-1,-30,2v23,48,-15,93,-81,88v-13,17,-11,21,29,22v57,2,76,4,80,45v4,43,-57,65,-110,65v-51,0,-81,-16,-81,-43xm113,-104v1,-21,-5,-32,-21,-33v-13,0,-22,13,-22,35v0,30,9,38,22,38v13,0,21,-13,21,-40xm60,46v2,29,76,26,74,-6v0,-9,-5,-13,-27,-14v-17,-1,-29,-3,-37,-3v-6,8,-10,14,-10,23","w":193,"k":{"g":-8,"t":-7,"y":-12,",":-6,"j":-15,"p":-10,".":2,";":-1,"v":-7,"w":-8,"a":1,"l":-2,"z":-5,"f":-7,"h":-2,"i":-5,"n":-2,"o":1,"r":-2,"u":-3,"b":-2,"m":-2}},"h":{"d":"130,-31v-1,-29,13,-88,-17,-90v-8,0,-19,4,-28,10r0,80r17,1v0,10,0,21,-1,30r-93,0r0,-30v6,-1,14,0,18,-2v0,-55,1,-126,1,-179r-23,-1r0,-30v22,0,79,-14,82,-8v2,28,-5,76,1,106v36,-17,41,-18,55,-18v22,0,48,22,48,56v0,22,-1,50,-1,75r18,1r0,30r-90,0r0,-30","w":214,"k":{"w":1,"v":1,"y":3}},"i":{"d":"57,-245v21,0,31,14,31,29v0,19,-15,33,-33,33v-15,0,-32,-14,-32,-32v0,-15,14,-30,34,-30xm31,-121r-23,-1r0,-31v20,0,79,-11,82,-8v0,39,-1,94,-1,130r19,1r0,30r-98,0r0,-30v7,-1,16,0,21,-2r0,-89","w":114,"k":{"j":-4,"a":-2,"u":-1}},"j":{"d":"52,-246v21,0,31,15,31,29v0,20,-14,33,-34,33v-15,0,-31,-13,-31,-32v0,-15,14,-30,34,-30xm-15,65v36,-19,45,-30,44,-94r-1,-91r-27,-1v0,-10,1,-21,1,-31v18,-2,82,-10,85,-10r0,136v1,59,-33,97,-66,119v-12,0,-35,-18,-36,-28","w":106,"k":{"w":-3,"v":-3,"f":-4,".":-4,",":-6,"g":-3,"s":-4,"t":-1,"a":-1,"z":-3,"e":-3,"i":-3,"o":-3}},"k":{"d":"132,0v-13,-14,-11,-81,-47,-71r0,40r13,1r0,30r-91,0v0,-9,1,-21,1,-30v6,-1,14,0,19,-2r0,-179r-23,-1r0,-30v20,-1,82,-14,82,-8r0,151v24,3,34,-15,43,-28r-13,-1r0,-30r81,-1r0,30v-27,2,-35,23,-53,34r0,2v23,2,21,72,61,63v0,10,0,21,-1,30r-72,0","w":205,"k":{"g":-3,"k":-1,"s":-4,"t":-5,"y":-3,":":-3,",":-8,"j":-9,".":-8,";":-5,"v":-3,"w":-3,"a":-3,"-":3,"l":-1,"f":-2,"h":-1,"u":-1}},"l":{"d":"27,-211r-25,-1v0,-10,1,-21,1,-30v21,0,80,-14,83,-8v0,60,-1,152,-1,219r20,1r0,30r-99,0r0,-30v7,-1,16,1,21,-2r0,-179","w":111,"k":{"t":-1,"y":-1,"j":-5,"v":-2,"w":-3}},"m":{"d":"130,-98v2,-29,-25,-26,-41,-12v0,21,-1,58,-1,79r15,1v0,10,-1,20,-1,30r-90,0r0,-30v6,-1,16,2,19,-3r0,-88r-22,-1v0,-9,1,-21,1,-30v18,-1,72,-12,74,-9v2,6,1,15,4,21v46,-36,68,-20,93,1v36,-21,42,-23,56,-23v26,1,47,25,48,53v0,26,-1,55,-1,78r18,1r0,30r-89,0r0,-30v5,-1,11,0,14,-2v0,-43,11,-113,-42,-79r0,80r14,1r0,30r-83,0r0,-30v4,-1,13,1,14,-3r0,-65","w":309,"k":{"w":1,"v":1,"j":-3,"y":3}},"n":{"d":"134,-31v0,-27,10,-89,-15,-89v-8,0,-20,6,-29,13v0,21,-1,55,-1,76r15,1r0,30r-92,0r0,-30v6,-1,14,0,19,-2r0,-89r-23,-1v0,-10,1,-21,1,-30v18,-1,71,-10,73,-10v3,8,2,19,7,24v35,-21,43,-24,60,-24v51,0,48,72,44,131r18,1r0,30r-92,0v0,-9,1,-21,1,-30","w":219,"k":{"y":3,"j":-2,"v":1,"c":1,"d":1,"e":1,"o":1}},"o":{"d":"186,-82v0,52,-37,86,-92,86v-48,0,-83,-28,-83,-79v0,-49,39,-89,93,-87v50,1,82,28,82,80xm100,-134v-36,1,-37,112,-1,110v23,-1,24,-24,24,-57v0,-33,-2,-49,-23,-53","w":196,"k":{"g":-4,"s":-1,"y":1,",":-2,"j":-4,"p":-1,".":-1,"c":-1,"d":-1,"z":4,"q":-1,"x":6,"e":-1,"o":-1,"u":-2}},"p":{"d":"195,-91v1,60,-44,110,-111,90r0,55r29,1r0,30r-105,0r0,-29v6,-1,14,-1,19,-3r0,-174r-23,-1v0,-10,1,-20,1,-29v18,-1,72,-14,74,-11v2,7,1,17,6,21v36,-19,40,-21,55,-21v30,0,55,34,55,71xm107,-29v21,-1,26,-21,27,-49v2,-42,-19,-52,-48,-33v4,29,-16,85,21,82","w":205,"k":{"j":-3,".":-1,",":-2,"g":-3,"y":1,"a":1,"c":-1,"d":-1,"e":-1,"o":-1}},"q":{"d":"11,-68v-5,-60,59,-117,121,-86r20,-13v10,1,20,3,29,6r-3,215r20,0v0,10,0,20,-1,30r-104,1v0,-10,-1,-20,0,-30v9,-1,23,2,28,-3r1,-62v-62,35,-106,4,-111,-58xm96,-33v6,-1,26,0,25,-13r0,-76v-29,-14,-51,5,-48,46v1,23,4,40,23,43","w":200},"r":{"d":"146,-106v-43,-14,-61,28,-58,75r30,1v0,9,-1,21,-1,30r-105,0r0,-29v6,-1,16,1,19,-3r0,-90r-22,-1v0,-10,1,-21,1,-30v16,-1,71,-11,72,-8v2,15,0,35,6,46v29,-54,33,-53,75,-43v0,17,-11,46,-17,52","w":164,"k":{"g":1,"s":1,"t":-6,"y":-10,":":-1,",":14,"j":-10,"p":-7,".":15,";":-2,"v":-12,"w":-10,"a":5,"c":6,"-":6,"d":6,"z":-1,"f":-8,"q":5,"e":5,"i":-2,"n":-2,"o":5,"r":-3,"u":-5,"m":-2,"?":-3}},"s":{"d":"148,-52v0,54,-79,65,-133,50v-2,-17,-3,-33,-5,-49v10,-2,20,-5,31,-6v2,16,11,30,29,30v12,0,21,-3,22,-14v0,-9,-5,-12,-29,-18v-32,-9,-48,-25,-48,-48v0,-55,76,-62,125,-50v2,16,4,32,5,48v-10,2,-21,4,-32,5v-2,-13,-6,-27,-22,-27v-12,0,-20,2,-20,15v0,8,6,9,34,17v26,7,43,18,43,47","w":160,"k":{"g":-3,"y":-1,":":-1,",":-5,"j":-3,".":-4,";":-2,"v":-3,"w":-3,"a":1,"-":-8,"z":1,"f":-1,"o":-1,"u":-3,"b":1}},"t":{"d":"148,-9v-45,19,-118,23,-118,-27r0,-89r-25,0v0,-10,0,-20,1,-30v8,-2,23,1,26,-5v1,-10,2,-21,3,-30v19,-8,52,-21,54,-18v0,8,-1,41,-1,51v18,0,39,-1,56,-1v0,10,-1,23,-2,34r-54,0v5,30,-14,90,16,90v14,0,29,-3,40,-6v2,10,3,22,4,31","w":152,"k":{":":-1,",":-6,".":-5,";":-3,"w":-1,"c":3,"-":4,"d":3,"l":-1,"e":3,"o":3,"?":-1}},"u":{"d":"81,-75v0,16,2,41,18,39v6,0,15,-3,22,-8r0,-82r-18,-1v0,-10,1,-21,1,-30v15,2,73,-6,76,0r0,125r21,-1v0,9,-1,20,-1,30v-4,2,-36,7,-59,7v-6,-3,-9,-12,-18,-18v-52,39,-87,11,-100,-33r0,-79r-16,-1v0,-10,1,-21,1,-30r74,-1v0,25,-1,57,-1,83","w":204,"k":{"y":2,"j":-4,"v":2,"c":1,"x":-1}},"v":{"d":"104,-46v8,-28,19,-51,22,-81r-12,-1v0,-10,1,-21,1,-30r72,-1v0,9,-1,20,-1,30r-13,1r-58,131v-10,0,-34,1,-52,1r-48,-131r-14,-1v0,-10,1,-22,1,-31r94,0r0,31r-16,1v5,17,14,67,24,81","w":186,"k":{"v":-6,"j":-4,"b":-3,";":-4,":":-3,".":15,",":13,"g":1,"s":-1,"t":-3,"y":-6,"a":4,"-":-3,"d":1,"e":1,"i":-2,"o":2,"u":-1}},"w":{"d":"195,-43v3,-27,16,-60,14,-84r-16,-1r0,-30r75,-1v0,9,-1,20,-1,30r-13,1r-44,131v-11,0,-28,1,-54,1v-7,-24,-13,-48,-22,-78r-3,0r-30,77v-12,0,-33,1,-52,1r-32,-130v-3,-2,-10,-1,-15,-2r0,-31r95,0v0,10,-1,21,-1,31r-20,1r11,82r3,0v6,-21,25,-81,30,-98v5,-1,28,-1,48,-1v9,26,17,83,27,101","w":267,"k":{"p":-2,"m":-1,"f":-6,"b":-4,";":-4,":":-4,".":8,",":7,"s":-1,"t":-7,"y":-7,"a":2,"c":2,"-":-6,"d":2,"e":2,"i":-1,"n":-1,"o":3,"r":-1,"u":-1}},"x":{"d":"1,-30v35,-1,38,-29,63,-45v-13,-20,-29,-35,-45,-52r-13,-1r0,-31r96,0r0,31r-14,1v9,9,14,22,24,24v5,-6,13,-15,18,-24r-10,-1r0,-30r69,-1v0,9,-1,20,-1,30r-11,1v-15,16,-33,29,-46,47v15,17,31,37,43,50r15,1v0,9,-1,20,-1,30r-95,0r0,-30v4,-1,13,1,12,-3v-8,-7,-10,-18,-21,-22v-7,8,-14,16,-20,24r11,1r0,30r-74,0r0,-30","w":192,"k":{"p":-2,".":-5,",":-6,"t":-6,"a":-3,"c":5,"-":4,"e":3,"o":3}},"y":{"d":"108,-48v6,-26,16,-51,18,-79r-12,-1r0,-30r72,-1v0,9,-1,20,-1,30r-13,1v-26,65,-45,123,-83,187v-9,15,-19,29,-28,34v-12,0,-43,-21,-43,-30v18,-10,44,-31,52,-54r-52,-135v-4,-2,-11,-1,-16,-2v0,-10,1,-22,1,-31r93,0r0,31r-16,1v5,19,17,55,25,79r3,0","w":185,"k":{"g":-3,"s":-1,"t":-10,":":-3,",":11,"p":-2,".":13,";":-4,"v":-8,"w":-6,"a":6,"c":4,"-":-4,"d":3,"l":-1,"f":-7,"e":3,"i":-2,"n":-2,"o":3,"r":-2,"u":-2,"b":-3,"m":-2}},"z":{"d":"167,-120v-14,19,-81,75,-90,90v6,-2,47,4,51,-7r12,-29v11,2,22,5,32,8v-4,19,-10,39,-15,58r-142,0v-3,-8,-6,-18,-9,-27v32,-35,58,-60,97,-100v-10,-4,-41,-6,-47,4r-11,28v-11,-1,-23,-3,-33,-5r12,-59r134,1v4,12,7,26,9,38","w":180,"k":{"t":-3,",":-8,".":-6,"a":-3,"c":-1,"-":-8,"e":-1,"o":-1,"u":-3,"b":1}},"{":{"d":"65,-99r0,3v44,7,26,61,26,108v0,20,8,32,39,32r0,26v-50,0,-87,-21,-87,-61v0,-28,11,-48,11,-69v0,-14,-3,-23,-31,-23r0,-26v58,-4,21,-42,21,-84v0,-41,30,-64,87,-64v0,8,1,18,0,26v-94,-1,16,119,-66,132","w":146,"k":{"T":-5,"Y":-7,"V":-7,"W":-6,"J":9}},"|":{"d":"85,-270r33,0r0,360r-33,0r0,-360"},"}":{"d":"82,-96r0,-3v-45,-6,-25,-56,-25,-99v0,-20,-4,-33,-40,-33v-1,-8,0,-18,0,-26v57,0,87,20,87,64v0,26,-10,45,-10,61v0,13,2,23,30,23r0,26v-60,3,-20,51,-20,92v0,40,-37,61,-87,61v-1,-8,0,-18,0,-26v89,2,-13,-126,65,-140","w":146},"~":{"d":"136,-57v-26,1,-47,-20,-70,-23v-8,0,-16,9,-17,24v-9,1,-20,0,-28,0v1,-35,21,-60,46,-60v25,0,48,22,70,23v8,0,16,-8,16,-23v10,-1,20,0,28,0v0,35,-19,59,-45,59"},"'":{"d":"66,-252v-2,26,-7,90,-8,113v-7,2,-20,3,-25,3v-3,-35,-9,-84,-12,-110v12,-4,39,-6,45,-6","w":86},"`":{"d":"63,-249r54,54v-5,6,-11,12,-17,18v-18,-14,-41,-31,-61,-45v7,-9,16,-19,24,-27","w":162},"\u00a0":{"w":81}}});Cufon.registerFont({"w":184,"face":{"font-family":"Chaparral Pro","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 6 5 3 4 5 5 9 2 3","ascent":"266","descent":"-94","x-height":"4","bbox":"-36 -270 325 90","underline-thickness":"19.44","underline-position":"-16.56","slope":"-10","stemh":"17","stemv":"27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":72},"!":{"d":"52,-231v8,-2,32,-8,34,-5r-37,176v-5,1,-15,1,-19,1xm33,-33v26,1,19,37,-2,36v-12,0,-18,-7,-18,-16v0,-10,9,-20,20,-20","w":91},"\"":{"d":"67,-251v-4,18,-14,60,-17,76v-5,1,-14,2,-18,2v3,-26,6,-58,7,-75v6,-3,22,-3,28,-3xm118,-251v-4,18,-14,60,-17,76v-5,1,-13,2,-17,2v3,-26,5,-58,6,-75v6,-3,22,-3,28,-3","w":110},"#":{"d":"148,-151r-17,50v15,0,28,1,40,1v-1,5,-3,11,-4,16r-42,0r-25,72v-6,0,-12,-1,-18,-1v9,-24,17,-48,25,-71r-40,0v-9,25,-18,53,-25,72v-5,0,-12,-1,-18,-1v8,-24,17,-48,25,-71v-14,0,-28,1,-39,1v1,-6,3,-13,4,-18r40,0v6,-17,12,-33,17,-50v-15,0,-30,-1,-41,-1v1,-5,2,-11,3,-16r44,0v8,-23,16,-46,22,-65v7,0,14,1,19,1v-6,18,-15,42,-23,64r40,0v8,-22,16,-46,22,-65v6,0,13,1,19,1v-6,18,-14,42,-22,64v13,0,26,-1,37,-1v-1,6,-2,13,-3,18r-40,0xm112,-101r17,-50r-39,0v-6,17,-12,33,-17,50r39,0"},"$":{"d":"37,-160v0,-39,34,-54,71,-57v2,-12,4,-25,6,-36v6,-1,12,-2,18,-2v-2,12,-4,24,-7,37v19,0,37,4,45,9v-1,7,-7,16,-13,21v-8,-5,-21,-12,-36,-13v-4,24,-8,50,-13,76v57,14,64,67,23,98v-12,9,-27,14,-46,16v-2,12,-5,23,-7,35v-5,0,-11,1,-16,1r6,-35v-23,0,-47,-5,-60,-13v2,-7,8,-16,14,-20v10,8,27,16,49,16r15,-81v-28,-11,-49,-24,-49,-52xm104,-201v-27,1,-42,12,-42,39v0,15,8,22,30,31v4,-24,8,-48,12,-70xm87,-27v46,0,66,-63,15,-76v-5,25,-11,52,-15,76"},"%":{"d":"20,-165v-1,-32,27,-70,63,-70v31,0,118,-2,137,-3v3,4,5,8,7,12r-171,235r-15,-9r160,-222r-87,0v31,36,-3,107,-51,104v-27,-1,-42,-19,-43,-47xm43,-163v0,20,6,31,24,31v26,0,35,-26,36,-58v1,-18,-6,-31,-23,-31v-26,0,-38,34,-37,58xm252,-66v1,29,-27,73,-62,70v-26,-1,-42,-20,-43,-47v-1,-32,26,-73,62,-71v28,1,42,17,43,48xm207,-100v-39,-3,-55,86,-13,90v35,4,54,-84,13,-90","w":271},"&":{"d":"75,4v-43,0,-67,-19,-69,-58v-2,-32,25,-60,62,-77v-48,-31,-23,-109,43,-105v28,2,50,17,51,46v1,27,-22,47,-54,64v20,18,44,46,57,66v11,-15,25,-39,21,-57r-21,0v1,-5,2,-11,3,-16r66,0v-1,5,-1,11,-2,16r-20,0v-7,31,-22,55,-37,71v12,19,17,36,51,30v-1,5,-3,11,-4,16v-15,1,-33,2,-45,2v-5,-7,-13,-21,-20,-31v-20,16,-41,33,-82,33xm107,-220v-22,0,-39,18,-39,40v0,20,11,29,26,43v24,-10,43,-26,43,-51v1,-19,-13,-32,-30,-32xm34,-58v1,59,84,52,113,15v-19,-28,-44,-58,-67,-75v-23,10,-46,28,-46,60","w":241},"(":{"d":"21,-68v0,-75,50,-155,112,-189v3,4,5,10,6,14v-41,26,-93,96,-93,178v0,54,19,83,40,105v-3,4,-6,8,-10,12v-27,-24,-55,-57,-55,-120","w":120,"k":{"k":-2,"l":-5,"b":-3,"h":-2,"j":-4,"T":-5,"Y":-12,"J":11,"V":-10,"W":-9}},")":{"d":"104,-138v0,81,-53,156,-112,189v-3,-4,-5,-8,-7,-13v41,-27,93,-91,93,-178v0,-51,-19,-85,-40,-106v3,-4,6,-7,10,-11v27,22,56,60,56,119","w":120},"*":{"d":"71,-207r6,-45r17,0r-10,45r39,-26v3,4,7,9,9,14r-44,24r36,25v-3,4,-6,10,-10,14r-34,-29r-6,47v-5,0,-11,0,-16,-1r9,-45r-38,26v-3,-5,-6,-10,-8,-15r43,-23r-36,-25r10,-13","w":129},"+":{"d":"82,-94r0,-67v7,-1,14,-1,20,-1r0,67r62,0v0,6,-1,14,-1,20r-61,0v0,25,-1,51,-1,71v-6,1,-13,1,-19,1r0,-72r-62,0v0,-6,1,-13,1,-19r61,0"},",":{"d":"35,-34v41,15,4,74,-26,84r-8,-11v23,-12,39,-38,12,-48v1,-15,12,-25,22,-25","w":87},"-":{"d":"93,-77r-83,0v1,-6,2,-13,3,-19r83,-1v-1,7,-2,14,-3,20","w":108,"k":{"c":-5,"r":-1,"s":-7,"t":-6,"y":-1,"z":-3,"f":-6,"j":-1,"v":-2,"w":-3,"x":-4,"A":-5,"C":-6,"S":-5,"T":11,"Y":8,"Z":2,"J":-6,"V":3,"W":-3}},".":{"d":"35,-36v28,0,20,40,-2,39v-12,0,-18,-7,-18,-18v0,-9,7,-21,20,-21","w":87},"\/":{"d":"1,19r-15,-9r155,-256v6,3,11,7,16,11","w":141},"0":{"d":"118,-236v41,-1,61,34,59,78v-3,80,-28,158,-103,162v-41,2,-60,-38,-59,-79v1,-72,31,-159,103,-161xm79,-13v56,-6,67,-86,70,-148v2,-35,-8,-58,-37,-58v-56,0,-64,84,-69,148v-1,26,8,61,36,58"},"1":{"d":"17,-17v16,-2,39,3,52,-3v11,-60,21,-123,31,-181v-19,4,-38,9,-62,15v-1,-5,-2,-12,-2,-17v45,-11,94,-39,97,-32r-38,217r55,1v-1,6,-2,12,-3,17r-133,0v1,-5,2,-11,3,-17"},"2":{"d":"141,-175v6,-41,-55,-55,-78,-29r-10,35v-6,-1,-13,-1,-19,-2v3,-17,7,-35,10,-52v45,-23,133,-17,126,47v-10,81,-86,114,-127,156v25,1,83,-3,112,-1v-1,7,-3,15,-5,21r-141,0v-1,-5,-4,-10,-5,-15v54,-45,126,-83,137,-160"},"3":{"d":"45,-224v41,-19,124,-20,124,39v0,31,-26,52,-57,60r0,3v31,6,47,29,47,53v-1,66,-81,83,-147,68v0,-17,-2,-35,-2,-52v6,-1,14,-2,20,-2r4,32v5,9,20,9,32,9v39,0,62,-16,64,-53v1,-33,-33,-48,-74,-44v0,-6,1,-12,2,-18v50,1,83,-23,83,-54v0,-37,-55,-45,-77,-23r-8,32v-6,-1,-14,-1,-20,-2"},"4":{"d":"67,-15v11,-1,24,0,33,-3v3,-15,5,-29,8,-44r-95,0v-2,-6,-5,-14,-7,-21r134,-151v8,0,15,0,23,1r-27,152r39,0v-1,6,-2,12,-4,18r-38,0v-3,15,-5,31,-8,46r30,1v-1,5,-2,11,-3,16r-88,0xm133,-200v-37,36,-66,78,-101,116v-1,1,-1,3,0,3v18,0,70,1,79,1"},"5":{"d":"159,-84v-3,75,-71,99,-145,83v-1,-16,-1,-33,-2,-50v6,-1,13,-2,19,-3r4,32v2,9,19,8,28,8v43,0,65,-22,69,-65v3,-42,-52,-56,-95,-46v-1,-28,19,-74,25,-107r117,0v-1,7,-3,15,-5,22r-96,0v-6,21,-12,42,-17,62v60,-10,100,25,98,64"},"6":{"d":"150,-181v-2,-18,1,-38,-23,-37v-47,3,-75,64,-75,101v39,-46,114,-27,112,33v-2,51,-32,88,-83,88v-43,0,-63,-32,-63,-75v0,-103,52,-183,152,-160v0,15,-1,31,-1,47v-6,1,-13,2,-19,3xm136,-79v0,-57,-61,-55,-88,-14v-4,52,-3,73,37,81v32,0,51,-35,51,-67"},"7":{"d":"47,1v20,-84,60,-111,109,-211v-83,3,-100,-17,-113,37v-6,-1,-13,-2,-18,-3r15,-56r139,0v2,6,4,15,5,21v-54,86,-87,131,-108,211v-8,1,-22,1,-29,1"},"8":{"d":"39,-172v-2,-75,130,-87,135,-15v2,33,-25,49,-49,65v79,31,30,132,-48,126v-42,-3,-67,-18,-69,-55v-2,-32,29,-55,60,-74v-20,-12,-29,-26,-29,-47xm112,-220v-25,0,-49,17,-48,45v0,19,11,31,43,44v27,-12,42,-28,42,-52v0,-22,-16,-37,-37,-37xm81,-13v34,0,59,-17,59,-50v0,-24,-18,-40,-55,-53v-52,11,-75,103,-4,103"},"9":{"d":"37,-50v3,17,0,37,25,37v51,0,78,-65,77,-101v-39,39,-112,26,-112,-39v0,-42,36,-84,82,-83v44,1,63,30,63,77v0,114,-45,174,-151,160r-3,-48v6,-1,13,-2,19,-3xm107,-220v-57,-7,-77,108,-16,110v18,0,37,-10,52,-26v4,-47,2,-80,-36,-84"},":":{"d":"55,-149v27,1,21,39,-1,38v-12,0,-19,-8,-19,-18v0,-9,7,-20,20,-20xm35,-35v28,2,21,39,-2,38v-12,0,-18,-7,-18,-18v0,-9,7,-20,20,-20","w":87},";":{"d":"55,-149v27,1,21,39,-1,38v-12,0,-19,-8,-19,-18v0,-10,7,-20,20,-20xm13,-9v1,-31,41,-34,41,-1v0,26,-23,49,-45,60r-8,-11v22,-13,39,-38,12,-48","w":87},"<":{"d":"61,-86r84,70v-3,5,-7,11,-11,15r-97,-76v0,-5,-1,-12,-1,-17r99,-72v4,4,7,10,10,15"},"=":{"d":"22,-102r0,-19v44,0,99,-1,144,-1v0,6,0,14,-1,20r-143,0xm21,-48v0,-6,0,-14,1,-20r144,0v0,6,-1,13,-1,19v-44,0,-99,1,-144,1"},">":{"d":"125,-85v-27,-23,-54,-44,-84,-68v3,-5,6,-10,10,-14r99,73r0,17r-99,74v-4,-4,-7,-9,-11,-14"},"?":{"d":"156,-189v0,31,-22,58,-68,84v-15,8,-11,25,-9,43v-5,2,-12,4,-19,5v-3,-8,-10,-32,-7,-46v41,-26,72,-48,72,-83v0,-34,-44,-44,-63,-22r-10,31v-6,-1,-13,-2,-19,-3v3,-15,7,-33,11,-48v13,-5,34,-10,54,-10v41,0,58,25,58,49xm61,-32v13,0,16,9,16,18v0,10,-9,17,-19,17v-11,0,-18,-7,-18,-15v0,-11,10,-20,21,-20","w":154},"@":{"d":"59,-56v-2,-47,39,-100,82,-67r6,-11v6,1,11,3,17,4v-3,20,-21,60,-18,81v29,-3,47,-27,47,-64v0,-31,-19,-57,-62,-57v-59,0,-101,60,-101,113v0,63,68,71,107,46v2,4,3,8,4,12v-47,27,-129,17,-129,-57v0,-57,49,-126,126,-126v44,0,73,25,73,67v0,40,-28,82,-78,80v-14,0,-8,-17,-9,-25v-12,11,-30,24,-43,24v-6,-1,-26,-7,-22,-20xm137,-109v-28,-30,-58,14,-56,49v0,5,4,7,8,7v20,-5,46,-27,48,-56","w":223},"A":{"d":"-17,-17v7,-1,18,1,22,-3r118,-217v3,-1,14,0,19,0v13,65,29,154,41,219r21,1v-1,5,-2,11,-3,17r-79,0v1,-6,2,-12,3,-17v10,-1,24,2,30,-3v-5,-17,-5,-38,-12,-53r-86,1v-9,17,-20,37,-28,54r32,1v-1,5,-2,11,-3,17r-79,0v1,-6,3,-12,4,-17xm143,-90v-8,-35,-9,-77,-21,-108v-17,36,-43,74,-55,108r76,0","w":210,"k":{"a":-12,"c":-9,"d":-12,"g":-11,"i":-7,"k":-7,"l":-6,"n":-6,"r":-6,"s":-13,"t":-6,"u":-6,"z":-15,"b":-7,":":-5,",":-13,"f":-8,"h":-3,"j":-1,"m":-6,"p":-9,".":-13,"q":-11,";":-5,"x":-10,"A":-12,"C":5,"-":-6,"D":-2,"G":5,"I":-2,"L":-2,"N":-2,"O":5,"R":-2,"S":-8,"T":14,"U":6,"Y":14,"Z":-12,"F":-2,"J":-9,"M":-3,"P":-2,"Q":5,"V":14,"W":8,"!":-2,"?":9}},"B":{"d":"39,-234v65,0,147,-9,147,50v0,30,-29,49,-51,61v30,6,47,27,47,50v2,69,-95,80,-183,73v1,-5,2,-11,3,-17v9,-2,24,4,28,-3r33,-196r-27,-1v1,-6,2,-12,3,-17xm90,-217r-15,87v43,3,78,-12,83,-50v3,-25,-33,-44,-68,-37xm72,-113r-15,83v-2,11,5,14,29,14v34,0,67,-18,67,-54v0,-17,-10,-43,-59,-43v-12,0,-19,-1,-22,0","w":201,"k":{"j":-1,".":4,",":4,"a":-4,"e":-4,"i":-3,"l":-3,"o":-5,"r":-3,"u":-4,"y":-4,"A":-4,"O":-1,"U":-1,"E":-2}},"C":{"d":"21,-90v0,-97,92,-173,187,-140v-2,21,-4,41,-7,62v-6,0,-12,1,-18,1r1,-40v-3,-11,-18,-10,-31,-11v-62,-2,-103,72,-103,123v0,77,72,92,130,65v1,5,1,12,1,18v-79,38,-160,6,-160,-78","w":205,"k":{"a":-1,"i":-6,"l":-8,"r":-3,"u":-4,",":-2,"h":-6,".":-1,"A":-9,"C":4,"-":10,"D":-3,"I":-5,"O":3,"T":-1,"Y":-10,"F":-4,"E":-3,"H":-3}},"D":{"d":"228,-136v0,95,-72,149,-187,136r-41,0v1,-5,2,-11,3,-16v9,-1,21,1,27,-3r33,-197r-26,-1v1,-6,3,-12,4,-17r71,0v79,-5,116,41,116,98xm198,-134v4,-56,-41,-95,-108,-82r-32,186v-2,11,0,14,28,14v78,-2,106,-39,112,-118","w":240,"k":{"a":3,"e":1,"i":-2,"r":-3,"u":-4,"y":-7,"z":-2,",":21,"j":-1,".":21,"v":-3,"w":-5,"A":4,"C":-2,"D":4,"G":-2,"I":4,"L":4,"N":1,"O":-2,"R":4,"T":2,"U":-1,"Y":7,"F":4,"M":1,"P":4,"Q":-2,"V":2,"W":1,"E":4,"H":4,"K":4,"B":4}},"E":{"d":"163,-153r-11,68r-17,0v-2,-10,8,-26,-7,-26r-56,0r-15,87v-1,6,0,7,19,7v39,0,57,5,65,-10r16,-33v5,1,10,3,15,5v-6,18,-12,36,-19,55r-153,0v1,-6,2,-12,3,-17v9,-1,20,0,27,-2r33,-197r-27,-1v1,-5,3,-12,4,-17r147,0v-2,18,-4,37,-7,55v-5,0,-10,2,-15,2v-3,-14,8,-38,-8,-38v-7,0,-45,-5,-67,0r-15,87v20,0,38,-1,57,-1v15,0,10,-15,15,-24r16,0","w":191,"k":{"a":-4,"c":-5,"d":-4,"e":-4,"g":-6,"i":-6,"k":-4,"l":-7,"n":-3,"o":-2,"r":-3,"s":-6,"t":-6,"u":-4,"y":-5,"z":-2,"b":-6,",":-8,"f":-7,"h":-5,"j":-8,"m":-3,"p":-5,".":-8,"q":-2,"v":-3,"w":-6,"x":-8,"A":-9,"C":-4,"D":-6,"G":-4,"I":-6,"L":-6,"N":-6,"R":-6,"S":-5,"T":-4,"Y":-4,"Z":-6,"F":-2,"M":-6,"P":-2,"V":-3,"W":-4,"X":-2,"E":-6,"H":-2,"K":-2,"B":-2}},"F":{"d":"162,-148r-13,69r-17,0v-1,-10,9,-26,-6,-26v-15,0,-34,-1,-55,-1r-15,88r41,1v-1,5,-2,11,-3,17r-93,0v1,-5,2,-12,3,-17v8,-1,21,1,26,-3r33,-196r-26,-1v1,-5,3,-12,4,-17r147,0v-2,19,-5,38,-7,57v-5,0,-12,1,-17,1r-1,-32v-6,-16,-40,-4,-73,-8r-16,93v30,-2,72,12,71,-26v6,0,12,1,17,1","w":187,"k":{"P":-4,";":10,":":10,".":33,",":33,"a":9,"e":9,"i":-1,"o":9,"u":-1,"A":9,"C":-3,"-":-6,"D":-4,"O":-3,"R":-4,"S":-6,"T":-7,"Y":-2,"E":-4}},"G":{"d":"50,-95v0,60,64,103,112,73r10,-61r-38,-1v1,-6,2,-11,3,-17r84,0v-1,6,-1,11,-2,17v-7,1,-16,0,-21,2r-13,73v-13,8,-37,13,-65,13v-62,2,-100,-42,-100,-96v0,-99,104,-177,199,-134v-3,19,-5,39,-8,59r-18,0r1,-36v-2,-16,-19,-16,-38,-16v-60,0,-106,54,-106,124","w":230,"k":{"a":-5,"e":-5,"i":-4,"l":-1,"o":-5,"r":-5,"u":-3,"y":-7,",":-1,"h":-1,".":-1,"w":-2,"A":-6,"C":-1,"D":-1,"G":-1,"I":-1,"L":-1,"N":-1,"O":-1,"R":-2,"Y":-1,"F":-1,"M":-2,"P":-1,"Q":-1,"E":-4,"H":-1,"K":-1,"B":-1}},"H":{"d":"4,-17v8,-1,21,2,26,-3r33,-196r-26,-1v1,-6,2,-12,3,-17r84,0v-1,5,-2,12,-3,17v-10,1,-23,-1,-31,2v-2,27,-14,60,-12,84r115,0r14,-85r-31,-1v1,-6,3,-12,4,-17r82,0v-1,5,-2,11,-3,16v-8,1,-19,0,-25,3r-34,197r26,1v-1,5,-2,11,-3,17r-83,0v1,-6,2,-11,3,-17v10,-1,24,2,31,-3r14,-93r-115,0r-17,95r32,1v-1,5,-2,11,-3,17r-84,0v1,-6,2,-11,3,-17","w":257,"k":{"v":1,"Q":1,"a":4,"e":6,"o":6,"u":1,"y":-1,"C":3,"G":3,"O":3,"Y":-1}},"I":{"d":"3,-17v9,-1,21,1,27,-3r33,-196r-28,-1v1,-5,2,-12,3,-17r84,0v-1,5,-3,12,-4,17v-9,1,-21,-1,-28,2r-34,197r30,1v-1,5,-2,12,-3,17r-83,0v1,-5,2,-11,3,-17","w":112,"k":{"c":3,"d":3,"k":-3,"l":-3,"n":1,"r":1,"t":-3,"b":-3,"f":-5,"h":-3,"m":1,"v":-2,"A":-2,"C":2,"G":2,"O":2,"S":-4,"T":-7,"Y":-6,"V":-1,"W":-4,"X":-1}},"J":{"d":"24,-23v12,20,58,7,66,-8v26,-44,26,-126,38,-186r-44,-1v1,-5,2,-11,3,-16r98,0v-1,5,-3,11,-4,16v-8,1,-21,-2,-26,3v-22,90,0,221,-113,220v-12,0,-27,-1,-40,-6r3,-55v6,-1,12,-2,18,-2","w":173,"k":{".":21,",":21,"a":8,"e":8,"i":-2,"o":7,"A":2}},"K":{"d":"157,0v-22,-20,-27,-126,-86,-111r-16,93r30,1v-1,5,-2,12,-3,17r-80,0v1,-5,2,-11,3,-17v8,-1,18,0,25,-2r33,-197r-26,-1v1,-5,3,-12,4,-17r78,0v-1,5,-2,12,-3,17v-9,1,-22,-2,-27,3r-15,86v6,0,17,0,24,-2v15,-14,63,-58,81,-86r-23,-1v1,-5,2,-12,3,-17r73,0v-1,5,-2,12,-3,17r-18,1r-92,93v28,19,37,62,54,96v7,13,22,8,37,10v-1,5,-3,11,-4,16","w":219,"k":{"a":-8,"e":-4,"i":-2,"l":-7,"o":-4,"r":-4,":":-3,",":-10,"h":-7,"j":-4,".":-10,";":-3,"v":5,"A":-5,"-":7,"D":-3,"G":5,"I":-3,"L":-3,"N":-3,"O":5,"R":-7,"S":-2,"T":-2,"U":-1,"Y":-2,"F":-3,"J":-4,"M":-3,"P":-3,"W":-1,"!":-3,"?":-1,"E":-3,"H":-3,"B":-3}},"L":{"d":"4,-17v8,-1,19,0,26,-2r34,-197r-26,-1v1,-5,3,-12,4,-17r84,0v-1,5,-1,12,-3,17v-10,1,-24,-1,-32,2r-34,191v-1,6,-1,7,14,7v76,0,60,-7,83,-47v6,1,13,3,18,4v-6,18,-15,41,-23,60r-148,0v1,-5,2,-12,3,-17","k":{"a":-9,"e":-6,"i":-3,"o":-6,"y":4,":":-1,",":-10,".":-10,";":-1,"A":-15,"-":-11,"I":-1,"L":-1,"S":-7,"T":23,"Y":19,"V":17,"W":6,"?":1,"E":-1}},"M":{"d":"59,-216r-25,-1v1,-6,2,-11,3,-17r60,0v7,20,24,132,44,195v37,-65,93,-173,106,-195r59,0v-1,6,-2,12,-3,17v-8,1,-20,-2,-24,3r-32,196r26,1v-1,6,-2,11,-3,17r-79,0v1,-6,2,-12,3,-17v9,-1,21,0,29,-2v10,-55,20,-126,30,-183r-2,0v-53,99,-87,159,-111,198r-16,0v-10,-37,-24,-97,-44,-199r-3,0r-32,185r31,1v-1,6,-2,11,-3,17r-77,0v1,-6,2,-12,3,-17v8,-1,19,0,26,-2","w":298,"k":{"W":-4,"V":-4,"c":1,"i":-2,"u":-2,"y":-3,"A":-3,"T":-1,"Y":-4}},"N":{"d":"1,-17v8,-1,20,2,25,-3r34,-196r-27,-1v1,-6,2,-11,3,-17r51,0r96,197r2,0r28,-179r-34,-1v1,-6,3,-12,4,-17r78,0v-1,5,-2,11,-3,17v-7,1,-19,-2,-23,3r-37,213v-4,1,-12,3,-19,3v-19,-28,-62,-122,-102,-197r-30,177r35,1v-1,6,-2,12,-3,17r-81,0v1,-6,2,-11,3,-17","w":250,"k":{"a":4,"e":4,"i":-2,"o":4,"u":-1,"C":-1,"O":-1,"S":-4,"T":-6,"Y":-3,"J":4,"V":-2,"W":-5}},"O":{"d":"153,-238v57,-2,90,51,88,97v-3,83,-52,143,-131,145v-56,1,-90,-43,-89,-96v3,-84,52,-143,132,-146xm147,-220v-64,5,-92,48,-97,129v-2,37,23,81,66,77v65,-5,92,-50,95,-128v2,-36,-17,-82,-64,-78","w":253,"k":{"a":-1,"c":-3,"g":-6,"i":-6,"k":-2,"l":-3,"n":-4,"r":-4,"s":-3,"t":-8,"u":-5,"y":-11,"b":-3,",":18,"f":-7,"h":-3,"j":-6,"m":-4,"p":-8,".":18,"v":-9,"w":-9,"x":-2,"A":2,"C":-2,"D":1,"G":-2,"I":1,"L":2,"N":1,"O":-2,"R":2,"U":-2,"Y":5,"F":2,"J":2,"M":1,"P":2,"Q":-2,"W":-1,"X":6,"E":1,"H":1,"K":1,"B":2}},"P":{"d":"188,-172v-4,61,-52,86,-120,81r-13,73r40,1v-1,5,-2,12,-3,17r-90,0v1,-6,2,-12,3,-17v8,-1,20,2,25,-3r33,-196r-24,-1v1,-5,2,-12,3,-17v72,-5,150,1,146,62xm72,-112v43,12,93,-13,88,-59v4,-32,-29,-51,-70,-45","w":194,"k":{"v":-1,"h":1,"f":1,"P":4,"M":1,"J":19,"H":4,"F":4,"B":4,";":5,":":5,".":48,",":48,"a":13,"e":14,"i":-3,"l":1,"o":13,"r":-3,"s":6,"u":-3,"y":-10,"A":16,"C":-3,"-":1,"D":4,"I":4,"L":4,"N":2,"R":4,"S":-1,"T":-1,"E":4,"K":4}},"Q":{"d":"118,4v-65,1,-97,-37,-97,-96v0,-86,56,-144,132,-146v57,-1,88,45,88,97v-1,73,-42,122,-96,141v29,22,58,42,102,29v1,5,2,12,2,17v-64,23,-89,-5,-131,-42xm147,-220v-62,0,-97,60,-97,126v0,51,21,80,67,80v61,0,95,-60,94,-128v-1,-47,-19,-78,-64,-78","w":252,"k":{";":-2,".":18,",":-14,"u":-6,"}":-9,"]":-9,")":-12}},"R":{"d":"154,0v-25,-30,-12,-115,-84,-100r-15,82r30,1v-1,6,-2,11,-3,17r-81,0v1,-6,2,-12,3,-17v8,-1,21,1,26,-3r33,-196r-25,-1v1,-6,2,-12,3,-17v71,-3,149,-2,149,56v0,35,-32,57,-59,71v29,-2,22,104,71,90v-1,5,-2,11,-3,16xm90,-216r-17,99v48,6,92,-22,88,-57v4,-34,-36,-51,-71,-42","w":208,"k":{"a":-11,"e":-8,"i":-7,"o":-8,"s":-2,"u":-6,"y":-3,"z":-8,":":-5,",":-13,"h":-5,".":-13,";":-5,"x":-14,"A":-9,"-":1,"D":-3,"G":2,"I":-3,"O":2,"R":-3,"S":-6,"T":4,"U":1,"Y":3,"Z":-10,"J":-11,"M":-1,"P":-3,"Q":1,"X":-9,"E":-3,"K":-3}},"S":{"d":"35,-169v0,-60,81,-84,132,-59v-1,17,-3,35,-5,53v-5,0,-11,1,-17,1r-1,-33v-1,-13,-15,-12,-30,-12v-29,0,-51,14,-52,45v0,23,12,31,45,45v85,36,39,133,-46,133v-19,0,-41,-5,-53,-11v2,-19,3,-38,5,-56v6,-1,12,-1,18,-1r1,37v27,26,102,10,95,-37v3,-46,-92,-52,-92,-105","w":175,"k":{"a":-2,"c":-4,"e":-4,"i":-3,"k":-4,"l":-4,"n":-3,"o":-4,"t":-5,"u":-3,"y":-1,",":-5,"h":-4,"m":-2,"p":-3,".":-5,"q":-4,"v":-2,"w":-3,"A":-6,"C":-3,"-":-13,"G":-3,"I":-1,"N":-2,"O":-3,"S":-3,"T":-2,"U":-2,"P":-1,"V":-3,"E":-1,"H":-1}},"T":{"d":"44,-17v10,-1,22,1,30,-2r33,-197v-38,2,-46,-5,-59,8r-11,34v-6,0,-13,0,-18,-1v4,-20,9,-40,13,-59r184,0v-2,20,-5,40,-8,59v-5,1,-12,1,-18,1v-3,-14,10,-39,-7,-41v-12,-1,-18,-1,-48,-1r-35,198r35,1v-1,5,-2,12,-3,17r-91,0v1,-5,2,-12,3,-17","w":200,"k":{"o":13,"a":14,"c":18,"e":18,"i":-7,"r":3,"s":4,"u":2,"y":1,":":16,",":18,"h":-8,".":18,";":16,"v":3,"w":1,"A":12,"C":-1,"-":8,"D":-1,"G":-1,"I":-6,"L":-1,"N":-3,"O":-1,"R":-3,"S":-6,"T":-14,"U":-2,"Y":-7,"F":-1,"M":-3,"P":-1,"V":-17,"W":-6,"!":-4,"?":-5,"E":-6,"H":-6,"K":-1,"B":-1,"}":2,"]":1,")":-1}},"U":{"d":"244,-217r-23,1v-23,93,-9,218,-119,220v-56,1,-79,-41,-69,-99r21,-121r-23,-1v1,-6,2,-12,3,-17r82,0v-1,5,-2,11,-3,17v-10,1,-25,-2,-32,3v-5,51,-32,135,-15,179v9,23,73,25,84,3v32,-31,35,-126,47,-183v-8,-3,-21,-1,-31,-2v1,-6,2,-12,3,-17r78,0v-1,5,-2,11,-3,17","w":232,"k":{"k":-6,"l":-7,"t":-3,"b":-6,",":24,"h":-5,"p":-1,".":24,"A":7,"G":-2,"S":-1,"T":-6,"Y":-3,"J":3,"V":-4,"W":-5}},"V":{"d":"96,-31r92,-185r-31,-1v1,-6,1,-11,2,-17r79,0v-1,5,-2,11,-3,17r-19,1r-121,219v-4,0,-13,1,-19,1v-19,-71,-24,-150,-41,-220r-20,-1v1,-5,2,-12,3,-17r85,0v-1,5,-2,12,-3,17r-35,1r28,185r3,0","w":213,"k":{"o":7,"W":-2,"V":-4,"?":-10,";":17,":":17,".":48,",":47,"!":-3,"a":21,"e":21,"i":-2,"l":-12,"r":5,"u":5,"A":19,"C":5,"-":5,"G":5,"O":3,"T":-2,"U":-1,"Y":-4,"E":-3,"}":-2,"]":-2,")":-5}},"W":{"d":"53,4r-13,-220r-21,-1v1,-5,2,-12,3,-17r85,0v-1,5,-3,11,-4,17r-33,1r3,179r3,0r90,-187r19,0v6,56,13,128,20,188r3,0r68,-180r-32,-1v1,-5,2,-11,3,-16r78,-1v-1,5,-2,12,-3,17r-19,1r-95,220r-20,0v-10,-52,-12,-125,-24,-179v-31,64,-63,128,-91,179r-20,0","w":303,"k":{"o":5,"h":-9,"a":8,"W":-3,"?":-3,".":30,",":30,"!":-1,"e":15,"g":7,"i":-3,"k":-3,"r":2,"u":2,"A":9,"O":1,"T":-4,"U":-1,"Y":-12,"E":-6,"}":-1,"]":-1,")":-4}},"X":{"d":"-12,-17v7,-1,18,1,22,-3r85,-100r-45,-96r-22,-1v1,-5,2,-12,3,-17r83,0v-1,5,-2,12,-3,17r-30,1v8,18,26,63,33,78v16,-11,54,-62,60,-78r-28,-1v1,-5,2,-12,3,-17r78,0v-1,5,-3,12,-4,17r-19,1r-80,96v15,32,32,70,48,102r24,1v-1,5,-2,12,-3,17r-82,0v1,-5,2,-12,3,-17r27,-1v-5,-25,-25,-56,-35,-83r-3,0v-14,17,-56,69,-66,83r30,1v-1,5,-2,12,-3,17r-79,0v1,-5,2,-12,3,-17","w":212,"k":{"W":-6,"V":-4,"Q":7,"?":-2,";":-2,":":-2,".":-2,",":-2,"A":-1,"C":6,"G":6,"O":7,"T":-1,"Y":-7}},"Y":{"d":"38,-17v10,-1,24,2,30,-3r12,-71r-48,-126r-18,0v1,-5,2,-12,3,-17r81,0v-1,5,-3,12,-4,17r-31,1r35,104r3,0v16,-25,61,-84,68,-104r-29,-1v1,-5,3,-12,4,-17r74,0v-1,5,-2,11,-3,16r-17,2r-91,125r-13,73r32,1v-1,5,-2,12,-3,17r-88,0v1,-5,2,-11,3,-17","w":191,"k":{"a":19,"e":19,"o":19,"r":7,"u":7,":":3,",":30,".":31,";":3,"v":4,"A":14,"C":4,"-":9,"G":4,"O":4,"T":-8,"U":-1,"J":3,"V":-11,"W":-11,"X":-1,"!":-3,"?":-11,"}":-2,"]":-3,")":-6}},"Z":{"d":"169,-213v-57,-4,-93,-11,-104,7r-14,38r-18,-3v6,-21,11,-42,17,-63r147,0v2,6,4,14,5,21r-172,194v59,0,91,2,108,-3v16,-5,17,-32,26,-47v6,1,13,3,18,4v-6,21,-14,44,-22,65r-160,0v-1,-5,-4,-11,-5,-16","w":199,"k":{"a":-4,"e":-4,"i":-4,"o":-4,"u":-1,",":-8,".":-8,"-":-9}},"[":{"d":"42,30r43,1v-1,5,-2,11,-3,16v-21,0,-45,-1,-66,-1r51,-298v21,0,45,-1,67,-1r-3,15v-14,2,-35,-3,-44,4","w":114,"k":{"k":-2,"l":-4,"b":-4,"h":-2,"j":-3,"T":-1,"Y":-7,"J":6,"V":-5,"W":-6}},"\\":{"d":"167,19r-154,-254v5,-4,11,-8,17,-11r153,256v-5,3,-11,6,-16,9","w":194},"]":{"d":"-13,31r44,-1r47,-264v-8,-8,-29,-2,-42,-4v0,-5,2,-10,3,-15r66,0r-54,299v-21,0,-44,1,-66,1v1,-5,1,-11,2,-16","w":114},"^":{"d":"158,-118v-21,-30,-41,-59,-59,-83r-59,82v-5,-3,-10,-7,-15,-11r66,-98r16,0r66,98v-5,4,-10,9,-15,12"},"_":{"d":"-16,26r180,0r0,20r-180,0r0,-20","w":180},"a":{"d":"6,-29v0,-62,56,-164,117,-108v8,-2,7,-13,11,-19v7,2,13,4,19,6v-9,33,-25,96,-33,133v4,5,12,-1,26,-4r3,15v-21,4,-43,18,-53,1v-1,-5,10,-27,7,-38v-33,37,-56,47,-68,47v-12,0,-29,-14,-29,-33xm88,-135v-34,0,-54,64,-55,102v0,10,5,16,11,16v33,-10,74,-53,75,-101v-8,-12,-18,-17,-31,-17","w":165},"b":{"d":"155,-120v0,60,-59,167,-123,106r-9,19v-6,-1,-12,-3,-18,-5r55,-230r-30,2v0,-5,-2,-10,-2,-15v44,-4,49,-18,62,-1v-9,34,-27,108,-36,139r2,1v26,-34,48,-51,72,-51v13,0,27,16,27,35xm70,-14v43,-2,56,-63,58,-101v0,-10,-4,-17,-12,-17v-33,7,-76,53,-78,97v6,11,20,21,32,21","w":167,"k":{"w":-1,"m":-1,"j":-4,"f":-1,".":4,",":4,"d":-1,"e":-1,"g":-5,"i":-1,"n":-1,"o":-1,"r":-1,"s":-1,"t":-4,"u":-1,"y":-2}},"c":{"d":"86,-134v-38,0,-51,51,-51,86v0,46,42,32,72,20v2,4,3,9,4,14v-35,22,-100,32,-103,-30v-3,-47,52,-138,119,-104v-1,7,-10,20,-15,22v-3,-1,-16,-8,-26,-8","w":129,"k":{"a":1,"c":4,"d":1,"e":3,"i":-1,"k":4,"l":2,"n":-1,"o":4,"r":-1,"s":-1,"u":-1,"y":-8,",":-1,"h":4,".":-1,"q":3,"-":6}},"d":{"d":"6,-29v2,-66,54,-156,123,-112v6,-26,13,-61,19,-88r-31,2v-1,-5,-1,-10,-1,-15v42,-2,48,-20,61,-2r-51,229v3,0,12,-2,23,-6v1,5,3,11,3,16v-22,6,-41,16,-52,0v-1,-4,9,-26,7,-39v-27,32,-55,48,-71,48v-13,0,-30,-15,-30,-33xm123,-121v-49,-47,-91,36,-90,87v0,13,6,17,13,17v37,-10,77,-54,77,-104","w":172,"k":{"a":-1,"d":-1,"g":-4,"k":-6,"l":-6,"n":-1,"r":-1,"s":-3,"t":-4,"y":-2,"b":-5,"f":-5,"h":-5,"j":-4,"m":-1,"p":-1,"v":-1,"w":-1}},"e":{"d":"135,-116v0,40,-48,46,-95,46v-9,23,-8,55,19,54v14,0,37,-8,57,-19v2,5,4,9,6,14v-36,25,-107,47,-114,-18v-4,-37,40,-115,88,-115v26,0,39,20,39,38xm43,-86v29,-2,63,-3,66,-28v3,-28,-35,-28,-48,-8v-5,8,-13,18,-18,36","w":145,"k":{"c":-1,"g":-4,"l":2,"t":-3,"u":-1,"y":-4,"z":-2,",":2,"f":-4,"j":-4,"p":-1,".":2,"v":-1,"w":-3}},"f":{"d":"48,-153v6,-60,54,-102,110,-86v0,7,-9,20,-14,23v-14,-5,-39,-10,-51,7v-10,14,-15,31,-21,59v17,0,35,-1,51,-1v-1,6,-3,13,-4,18v-14,0,-35,1,-50,1r-40,190r-25,0r39,-190r-29,0v1,-5,2,-12,3,-17v11,-3,26,2,31,-4","w":112,"k":{"'":-30,"w":-7,"j":-5,"h":-15,"b":-16,"?":-27,";":-4,":":-5,".":14,",":14,"\"":-30,"!":-21,"a":5,"c":6,"d":6,"e":7,"g":-3,"i":-2,"k":-19,"l":-17,"o":7,"r":-1,"s":1,"u":-3,"y":-13,"z":-1,"-":-3,"}":-21,"]":-22,")":-21}},"g":{"d":"-21,53v0,-28,26,-25,47,-45v-11,-4,-17,-9,-17,-21v-2,-4,5,-6,29,-24v-57,-39,-1,-140,75,-114r49,0r0,16v-11,2,-29,-2,-36,3v19,47,-7,108,-71,101v-12,8,-20,12,-20,18v-1,14,75,10,85,20v35,38,4,80,-77,81v-38,0,-64,-13,-64,-35xm107,-105v0,-21,-9,-36,-25,-35v-24,0,-41,28,-41,62v0,22,10,33,26,33v21,0,40,-25,40,-60xm109,38v6,-22,-45,-18,-64,-23v-26,16,-40,23,-40,36v0,38,111,24,104,-13","w":153,"k":{"a":-2,"c":-4,"d":-3,"e":-2,"g":-15,"i":-8,"k":-4,"l":-3,"n":-6,"o":-3,"r":-6,"s":-4,"t":-8,"u":-6,"y":-18,"z":-2,"b":-5,",":-8,"f":-12,"h":-3,"j":-24,"m":-6,"p":-14,".":8,";":-2,"v":-9,"w":-12,"}":-4,"]":-4,")":-4}},"h":{"d":"130,-154v54,18,12,75,-1,139v4,0,14,-1,26,-4v1,5,1,10,2,15v-21,4,-50,17,-57,-4v10,-33,26,-72,30,-110v0,-6,-3,-13,-11,-13v-22,0,-63,38,-69,59v-4,14,-14,58,-18,72r-25,0r54,-228r-32,2v-1,-5,-1,-10,-1,-15v39,-4,51,-21,63,-3r-35,135r2,1v32,-37,59,-46,72,-46","w":178,"k":{"w":-1,"v":3,"j":-1,"g":-2,"s":-1,"t":1,"y":1}},"i":{"d":"67,-224v26,2,19,36,-2,36v-11,0,-19,-9,-19,-18v0,-8,8,-18,21,-18xm43,-132r-31,2r0,-15v40,-3,47,-19,59,0r-29,131v5,0,15,-3,27,-6v1,5,3,10,3,15v-22,5,-47,17,-58,-3v8,-36,20,-83,29,-124","w":90,"k":{"g":-4,"o":1,"s":-1,"t":-1,"z":-3,"f":-3,"j":-5,"x":-2}},"j":{"d":"65,-224v26,2,19,36,-2,36v-10,0,-18,-8,-18,-18v0,-9,7,-18,20,-18xm44,-132r-35,2r0,-15v44,-3,51,-18,64,-1v-15,64,-14,145,-48,191v-26,36,-42,54,-61,22v70,-18,63,-125,80,-199","w":88,"k":{"f":-1,".":1,",":1,"a":-2,"d":-1,"g":-3,"i":-1,"o":-1,"s":-1,"t":-1,"z":-2}},"k":{"d":"108,2v-14,-13,-21,-90,-45,-74v-6,5,-11,11,-18,19v-4,15,-9,39,-13,53r-25,0r53,-228r-30,2v0,-5,-2,-11,-2,-16v36,-1,52,-21,62,-2v-7,30,-27,109,-41,165r2,1v42,-50,77,-77,94,-77v4,0,12,10,13,20v-27,5,-51,21,-72,45v27,11,25,59,45,74v6,0,14,-2,23,-5v1,5,2,11,2,16v-14,5,-34,7,-48,7","w":161,"k":{"a":-4,"c":-1,"d":-3,"e":-1,"g":-6,"n":-1,"o":-1,"r":-1,"s":-8,"t":-4,"u":-2,"y":-6,"z":-9,"b":-1,":":-6,",":-8,"f":-4,"j":-4,"m":-1,"p":-1,".":-7,";":-7,"w":-5,"-":4}},"l":{"d":"61,-229r-34,2v-1,-5,-1,-10,-1,-15v45,-3,50,-20,64,-2r-52,229v5,0,17,-1,31,-5v1,5,2,11,2,16v-25,4,-50,17,-61,-4v9,-36,40,-173,51,-221","w":89,"k":{"g":-4,"k":-1,"s":-2,"y":-1,"z":-2,"b":-1,"f":-4,"j":-3,"w":-2,"!":-1}},"m":{"d":"101,0r27,-121v0,-5,-4,-11,-11,-11v-21,0,-58,42,-63,63v-4,14,-13,55,-17,69r-24,0v8,-32,21,-91,30,-133r-29,3v0,-5,-1,-10,-1,-15v40,-3,40,-18,55,-2v-2,10,-4,21,-8,37r3,1v27,-33,51,-45,65,-45v18,0,30,20,21,46r3,0v27,-35,51,-46,66,-46v50,19,11,74,0,139v4,0,13,-1,25,-5r3,15v-20,4,-47,18,-56,-3v11,-35,23,-72,28,-110v0,-6,-3,-13,-12,-13v-20,0,-59,42,-64,63v-5,21,-11,45,-16,68r-25,0","w":266,"k":{"v":1,"f":-1,"a":-1,"c":-1,"g":-1}},"n":{"d":"106,-8v9,-32,27,-72,29,-110v0,-7,-3,-13,-11,-13v-22,0,-63,39,-69,60v-4,13,-14,57,-18,71r-25,0r31,-132r-28,3v0,-5,-1,-10,-1,-15v35,-3,43,-19,55,-3v0,9,-10,29,-7,40v29,-33,58,-47,74,-47v11,0,27,13,26,29v0,16,-12,61,-29,108v3,8,14,-1,28,-3v1,5,2,10,2,15v-19,4,-49,19,-57,-3","w":183,"k":{"T":19,"g":-3,"s":-1,"t":-1,"y":1,"z":-1,"f":-1,"j":-2,"v":3}},"o":{"d":"96,-154v32,0,47,19,47,53v0,46,-31,107,-88,105v-33,-1,-44,-17,-46,-49v-3,-54,35,-109,87,-109xm36,-48v0,21,7,36,26,36v38,0,54,-49,54,-88v0,-24,-5,-36,-26,-38v-36,4,-54,43,-54,90","w":158,"k":{"a":-1,"c":-1,"d":-1,"g":-4,"k":2,"l":3,"n":1,"o":-1,"s":-1,"u":1,"z":2,",":4,"f":-1,"h":1,"j":-1,"m":1,"p":-1,".":4,"v":2,"w":1,"x":4}},"p":{"d":"158,-122v3,63,-50,162,-118,112v-5,27,-13,67,-19,94v-8,0,-16,1,-25,1r43,-217r-30,1r0,-15v44,-3,40,-16,55,-1v-3,12,-6,29,-10,45r3,0v27,-36,51,-53,74,-53v11,0,27,16,27,33xm43,-30v53,51,91,-34,88,-86v0,-9,-4,-16,-12,-16v-34,9,-76,54,-76,102","w":169,"k":{"w":-2,"p":-1,"f":-3,".":4,",":4,"a":-1,"c":-1,"e":-1,"g":-5,"o":-1,"s":-2,"t":-1,"u":-1,"y":-2}},"q":{"d":"7,-28v2,-68,54,-160,123,-111r7,-17v6,1,14,4,20,6v-16,62,-42,174,-51,214v4,8,13,-1,29,-4v1,5,2,11,2,16v-27,6,-47,19,-58,-3v8,-35,19,-77,29,-117r-2,-1v-23,26,-50,49,-70,49v-12,0,-29,-13,-29,-32xm123,-120v-50,-51,-90,37,-90,88v0,9,6,15,12,15v35,-10,76,-54,78,-103","w":166,"k":{";":-1,",":-1,"}":-1,"]":-1,")":-1}},"r":{"d":"108,-126v-31,7,-67,76,-70,126r-24,0v7,-30,20,-93,29,-133r-28,3v0,-5,-1,-10,-1,-15v35,-2,42,-18,55,-2v-3,10,-6,24,-11,45r3,1v30,-38,41,-64,74,-48v-3,17,-9,33,-27,23","w":131,"k":{"a":7,"c":6,"d":8,"e":7,"i":-4,"k":2,"l":1,"n":-4,"o":6,"r":-5,"s":1,"t":-5,"u":-4,"y":-14,"z":-1,"b":1,":":1,",":27,"f":-6,"h":1,"j":-4,"m":-4,"p":-8,".":27,"q":7,";":1,"v":-10,"w":-12,"-":2,"?":9}},"s":{"d":"20,-108v4,-45,63,-55,101,-39v-1,13,-3,27,-4,40v-4,0,-10,1,-15,1v-1,-18,1,-32,-23,-32v-18,0,-34,7,-34,26v0,31,71,30,63,66v4,44,-63,61,-104,43v1,-14,1,-29,2,-44v5,-1,11,-1,16,-1v1,21,0,35,26,35v19,0,36,-7,35,-27v-1,-34,-66,-28,-63,-68","w":131,"k":{"a":-2,"c":-1,"d":-2,"e":-1,"g":-6,"k":1,"l":1,"o":-2,"t":-2,"u":-2,"y":-4,"z":-2,"b":-1,":":4,",":-1,"f":-4,"h":1,"j":-3,"p":-1,".":-1,"q":-1,";":4,"v":-1,"w":-3,"-":-5}},"t":{"d":"66,-132r-20,101v3,26,34,12,57,8v1,5,2,10,2,15v-38,13,-76,22,-86,-18v4,-30,17,-77,22,-106r-28,0v1,-5,2,-11,3,-16v10,-3,25,1,30,-5v3,-10,6,-23,9,-33v10,-4,20,-8,24,-5v-2,10,-6,27,-9,41r55,0v-1,6,-3,13,-4,18r-55,0","w":124,"k":{"a":1,"c":4,"d":3,"e":4,"g":-2,"i":-1,"k":4,"l":3,"o":3,"t":1,"u":-1,"y":-6,"z":-2,"b":1,",":-1,"h":4,"j":-1,"p":-2,".":-1,"v":-2,"w":-4,"-":3,"?":8}},"u":{"d":"45,4v-51,-15,-15,-79,-3,-136r-27,3v0,-5,-1,-10,-2,-15v37,-4,48,-21,58,-1v-11,37,-24,77,-28,114v0,9,5,13,11,13v18,0,58,-40,63,-58v3,-11,13,-55,17,-74v9,0,17,-1,25,-1v-2,18,-29,108,-27,136v4,0,13,-2,26,-6r3,15v-23,5,-43,18,-54,0v-1,-5,8,-25,5,-36v-27,29,-52,46,-67,46","w":175,"k":{"g":-4,"s":-2,"t":-1,"y":-1,"z":-1,"f":-1,"j":-4,"v":1,"w":-1,"x":1}},"v":{"d":"153,-143v3,45,-76,140,-95,146v-5,0,-17,-1,-27,-2v0,-33,4,-107,5,-133r-27,2v-1,-5,-2,-10,-2,-15v32,-4,43,-18,56,0v-3,35,-7,105,-8,128v27,-10,70,-85,72,-114v-3,-7,-17,0,-24,-1v-1,-5,-1,-10,-1,-15v27,-4,44,-15,51,4","w":161,"k":{"j":-1,";":5,":":5,".":24,",":24,"a":6,"d":4,"e":5,"i":-1,"o":3,"y":-6,"-":-5}},"w":{"d":"234,-143v3,39,-63,136,-83,146v-5,0,-16,-1,-25,-2v-1,-24,-1,-61,0,-101r-3,-1v-26,64,-62,104,-65,104v-6,0,-16,-1,-26,-3v-1,-36,1,-105,2,-132r-28,3v-1,-5,-1,-10,-1,-15v34,-5,43,-21,55,-1v-2,43,-5,102,-5,126v11,0,20,-23,31,-40v15,-23,31,-59,37,-85v6,-2,15,-3,22,-3v0,42,2,106,3,130v20,-11,64,-90,58,-117r-22,2v-1,-5,-1,-11,-1,-16v28,-4,43,-13,51,5","w":242,"k":{"h":3,"f":-2,"b":3,";":5,":":5,".":21,",":20,"a":4,"c":1,"d":4,"e":4,"k":4,"l":3,"o":4,"t":-4,"u":1,"y":-6,"-":-6}},"x":{"d":"-7,4v3,-19,41,-59,68,-88v-5,-14,-12,-30,-19,-48r-27,6v-1,-5,-3,-10,-4,-15v29,-7,37,-20,53,-8v8,17,8,38,18,51v20,-24,51,-56,60,-56v5,0,15,10,16,18v-17,9,-43,24,-71,55v10,27,15,41,24,62v6,7,15,1,29,-2v1,5,1,11,2,16v-12,5,-34,7,-49,7v-8,-14,-13,-46,-27,-68v-21,23,-37,49,-43,69v-8,1,-21,1,-30,1","w":156,"k":{"x":-3,"w":-4,"v":-3,"p":-3,";":-1,":":-1,".":-2,",":-3,"a":-2,"c":2,"e":2,"i":-4,"o":2,"t":-3,"u":-2,"y":-6,"-":3}},"y":{"d":"-18,71v30,-16,49,-31,68,-57v-5,-30,-14,-103,-19,-146r-28,5v-1,-5,-2,-10,-2,-15v36,-6,40,-21,55,-5v6,45,6,106,16,138v22,-34,46,-82,51,-122v-3,-7,-17,0,-25,-1v0,-5,-1,-11,-1,-16v30,-3,43,-14,51,5v-15,89,-83,186,-147,231v-6,0,-18,-10,-19,-17","w":154,"k":{"a":2,"c":-1,"e":2,"g":-3,"i":-1,"k":2,"l":2,"n":-1,"o":1,"r":-1,"s":-1,"t":-5,"u":-3,":":4,",":9,"f":-5,"h":1,"m":-1,"p":-4,".":9,";":4,"v":-4,"w":-6,"-":-8}},"z":{"d":"107,-132r0,-3v-13,2,-57,-4,-64,6r-11,29v-5,-1,-12,-2,-17,-3v4,-16,9,-32,13,-48r106,0v2,6,3,13,4,19v-20,23,-80,85,-110,114v23,3,66,6,77,-7r12,-28v6,1,12,2,17,3v-5,17,-11,33,-16,50r-116,0v-1,-4,-3,-9,-5,-14","w":149,"k":{"a":-3,"c":-1,"e":-2,"g":-1,"i":-1,"o":-1,"s":-1,"y":-5,",":-5,".":-5,"-":-2}},"{":{"d":"135,-240v-49,4,-57,26,-56,84v1,30,-13,43,-30,53v57,25,-61,132,35,138v0,5,-1,10,-2,15v-40,0,-62,-20,-62,-47v0,-28,24,-62,24,-83v0,-11,-6,-18,-28,-17v0,-5,1,-10,2,-15v37,-5,37,-4,37,-54v0,-62,26,-85,83,-89v0,5,-2,10,-3,15","w":120,"k":{"k":-2,"l":-5,"b":-3,"h":-2,"j":-3,"T":-1,"Y":-7,"J":9,"V":-6,"W":-6}},"|":{"d":"83,-270r19,0r0,360r-19,0r0,-360"},"}":{"d":"-9,34v47,-3,57,-24,55,-83v-2,-32,12,-45,30,-56v-57,-24,59,-131,-37,-135v0,-5,1,-10,2,-15v42,0,61,20,61,47v0,28,-21,63,-21,80v0,10,5,17,28,17v-1,5,-1,10,-2,15v-39,2,-37,13,-37,61v0,61,-30,82,-82,85v0,-5,2,-11,3,-16","w":120},"~":{"d":"123,-64v-34,0,-73,-54,-87,0r-17,0v3,-26,19,-48,41,-48v26,-1,39,26,63,26v11,0,19,-10,20,-27r18,0v-1,25,-15,49,-38,49"},"'":{"d":"68,-251v-4,18,-14,60,-17,76v-5,1,-14,2,-18,2v3,-26,6,-58,7,-75v6,-3,22,-3,28,-3","w":63},"`":{"d":"70,-229r50,48v-3,4,-7,6,-10,10r-55,-43","w":164},"\u00a0":{"w":72}}});;jQuery.ui||(function($){var _remove=$.fn.remove,isFF2=$.browser.mozilla&&(parseFloat($.browser.version)<1.9);$.ui={version:"1.7.2",plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]]);}},call:function(instance,name,args){var set=instance.plugins[name];if(!set||!instance.element[0].parentNode){return;}
for(var i=0;i<set.length;i++){if(instance.options[set[i][0]]){set[i][1].apply(instance.element,args);}}}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b);},hasScroll:function(el,a){if($(el).css('overflow')=='hidden'){return false;}
var scroll=(a&&a=='left')?'scrollLeft':'scrollTop',has=false;if(el[scroll]>0){return true;}
el[scroll]=1;has=(el[scroll]>0);el[scroll]=0;return has;},isOverAxis:function(x,reference,size){return(x>reference)&&(x<(reference+size));},isOver:function(y,x,top,left,height,width){return $.ui.isOverAxis(y,top,height)&&$.ui.isOverAxis(x,left,width);},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(isFF2){var attr=$.attr,removeAttr=$.fn.removeAttr,ariaNS="http://www.w3.org/2005/07/aaa",ariaState=/^aria-/,ariaRole=/^wairole:/;$.attr=function(elem,name,value){var set=value!==undefined;return(name=='role'?(set?attr.call(this,elem,name,"wairole:"+value):(attr.apply(this,arguments)||"").replace(ariaRole,"")):(ariaState.test(name)?(set?elem.setAttributeNS(ariaNS,name.replace(ariaState,"aaa:"),value):attr.call(this,elem,name.replace(ariaState,"aaa:"))):attr.apply(this,arguments)));};$.fn.removeAttr=function(name){return(ariaState.test(name)?this.each(function(){this.removeAttributeNS(ariaNS,name.replace(ariaState,""));}):removeAttr.call(this,name));};}
$.fn.extend({remove:function(){$("*",this).add(this).each(function(){$(this).triggerHandler("remove");});return _remove.apply(this,arguments);},enableSelection:function(){return this.attr('unselectable','off').css('MozUserSelect','').unbind('selectstart.ui');},disableSelection:function(){return this.attr('unselectable','on').css('MozUserSelect','none').bind('selectstart.ui',function(){return false;});},scrollParent:function(){var scrollParent;if(($.browser.msie&&(/(static|relative)/).test(this.css('position')))||(/absolute/).test(this.css('position'))){scrollParent=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test($.curCSS(this,'position',1))&&(/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));}).eq(0);}else{scrollParent=this.parents().filter(function(){return(/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));}).eq(0);}
return(/fixed/).test(this.css('position'))||!scrollParent.length?$(document):scrollParent;}});$.extend($.expr[':'],{data:function(elem,i,match){return!!$.data(elem,match[3]);},focusable:function(element){var nodeName=element.nodeName.toLowerCase(),tabIndex=$.attr(element,'tabindex');return(/input|select|textarea|button|object/.test(nodeName)?!element.disabled:'a'==nodeName||'area'==nodeName?element.href||!isNaN(tabIndex):!isNaN(tabIndex))&&!$(element)['area'==nodeName?'parents':'closest'](':hidden').length;},tabbable:function(element){var tabIndex=$.attr(element,'tabindex');return(isNaN(tabIndex)||tabIndex>=0)&&$(element).is(':focusable');}});function getter(namespace,plugin,method,args){function getMethods(type){var methods=$[namespace][plugin][type]||[];return(typeof methods=='string'?methods.split(/,?\s+/):methods);}
var methods=getMethods('getter');if(args.length==1&&typeof args[0]=='string'){methods=methods.concat(getMethods('getterSetter'));}
return($.inArray(method,methods)!=-1);}
$.widget=function(name,prototype){var namespace=name.split(".")[0];name=name.split(".")[1];$.fn[name]=function(options){var isMethodCall=(typeof options=='string'),args=Array.prototype.slice.call(arguments,1);if(isMethodCall&&options.substring(0,1)=='_'){return this;}
if(isMethodCall&&getter(namespace,name,options,args)){var instance=$.data(this[0],name);return(instance?instance[options].apply(instance,args):undefined);}
return this.each(function(){var instance=$.data(this,name);(!instance&&!isMethodCall&&$.data(this,name,new $[namespace][name](this,options))._init());(instance&&isMethodCall&&$.isFunction(instance[options])&&instance[options].apply(instance,args));});};$[namespace]=$[namespace]||{};$[namespace][name]=function(element,options){var self=this;this.namespace=namespace;this.widgetName=name;this.widgetEventPrefix=$[namespace][name].eventPrefix||name;this.widgetBaseClass=namespace+'-'+name;this.options=$.extend({},$.widget.defaults,$[namespace][name].defaults,$.metadata&&$.metadata.get(element)[name],options);this.element=$(element).bind('setData.'+name,function(event,key,value){if(event.target==element){return self._setData(key,value);}}).bind('getData.'+name,function(event,key){if(event.target==element){return self._getData(key);}}).bind('remove',function(){return self.destroy();});};$[namespace][name].prototype=$.extend({},$.widget.prototype,prototype);$[namespace][name].getterSetter='option';};$.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+'-disabled'+' '+this.namespace+'-state-disabled').removeAttr('aria-disabled');},option:function(key,value){var options=key,self=this;if(typeof key=="string"){if(value===undefined){return this._getData(key);}
options={};options[key]=value;}
$.each(options,function(key,value){self._setData(key,value);});},_getData:function(key){return this.options[key];},_setData:function(key,value){this.options[key]=value;if(key=='disabled'){this.element
[value?'addClass':'removeClass'](this.widgetBaseClass+'-disabled'+' '+
this.namespace+'-state-disabled').attr("aria-disabled",value);}},enable:function(){this._setData('disabled',false);},disable:function(){this._setData('disabled',true);},_trigger:function(type,event,data){var callback=this.options[type],eventName=(type==this.widgetEventPrefix?type:this.widgetEventPrefix+type);event=$.Event(event);event.type=eventName;if(event.originalEvent){for(var i=$.event.props.length,prop;i;){prop=$.event.props[--i];event[prop]=event.originalEvent[prop];}}
this.element.trigger(event,data);return!($.isFunction(callback)&&callback.call(this.element[0],event,data)===false||event.isDefaultPrevented());}};$.widget.defaults={disabled:false};$.ui.mouse={_mouseInit:function(){var self=this;this.element.bind('mousedown.'+this.widgetName,function(event){return self._mouseDown(event);}).bind('click.'+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false;event.stopImmediatePropagation();return false;}});if($.browser.msie){this._mouseUnselectable=this.element.attr('unselectable');this.element.attr('unselectable','on');}
this.started=false;},_mouseDestroy:function(){this.element.unbind('.'+this.widgetName);($.browser.msie&&this.element.attr('unselectable',this._mouseUnselectable));},_mouseDown:function(event){event.originalEvent=event.originalEvent||{};if(event.originalEvent.mouseHandled){return;}
(this._mouseStarted&&this._mouseUp(event));this._mouseDownEvent=event;var self=this,btnIsLeft=(event.which==1),elIsCancel=(typeof this.options.cancel=="string"?$(event.target).parents().add(event.target).filter(this.options.cancel).length:false);if(!btnIsLeft||elIsCancel||!this._mouseCapture(event)){return true;}
this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){self.mouseDelayMet=true;},this.options.delay);}
if(this._mouseDistanceMet(event)&&this._mouseDelayMet(event)){this._mouseStarted=(this._mouseStart(event)!==false);if(!this._mouseStarted){event.preventDefault();return true;}}
this._mouseMoveDelegate=function(event){return self._mouseMove(event);};this._mouseUpDelegate=function(event){return self._mouseUp(event);};$(document).bind('mousemove.'+this.widgetName,this._mouseMoveDelegate).bind('mouseup.'+this.widgetName,this._mouseUpDelegate);($.browser.safari||event.preventDefault());event.originalEvent.mouseHandled=true;return true;},_mouseMove:function(event){if($.browser.msie&&!event.button){return this._mouseUp(event);}
if(this._mouseStarted){this._mouseDrag(event);return event.preventDefault();}
if(this._mouseDistanceMet(event)&&this._mouseDelayMet(event)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,event)!==false);(this._mouseStarted?this._mouseDrag(event):this._mouseUp(event));}
return!this._mouseStarted;},_mouseUp:function(event){$(document).unbind('mousemove.'+this.widgetName,this._mouseMoveDelegate).unbind('mouseup.'+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(event.target==this._mouseDownEvent.target);this._mouseStop(event);}
return false;},_mouseDistanceMet:function(event){return(Math.max(Math.abs(this._mouseDownEvent.pageX-event.pageX),Math.abs(this._mouseDownEvent.pageY-event.pageY))>=this.options.distance);},_mouseDelayMet:function(event){return this.mouseDelayMet;},_mouseStart:function(event){},_mouseDrag:function(event){},_mouseStop:function(event){},_mouseCapture:function(event){return true;}};$.ui.mouse.defaults={cancel:null,distance:1,delay:0};})(jQuery);if($.browser.safari){(function($){$.ui=$.ui||{};$.ui.accordion={};$.extend($.ui.accordion,{defaults:{selectedClass:"selected",alwaysOpen:true,animated:'slide',event:"click",header:"a",autoheight:true},animations:{slide:function(settings,additions){settings=$.extend({easing:"swing",duration:300},settings,additions);if(!settings.toHide.size()){settings.toShow.animate({height:"show"},{duration:settings.duration,easing:settings.easing,complete:settings.finished});return;}
var hideHeight=settings.toHide.height(),showHeight=settings.toShow.height(),difference=showHeight/hideHeight;settings.toShow.css({height:0,overflow:'hidden'}).show();settings.toHide.filter(":hidden").each(settings.finished).end().filter(":visible").animate({height:"hide"},{step:function(now){settings.toShow.height((hideHeight-(now))*difference);},duration:settings.duration,easing:settings.easing,complete:settings.finished});},bounceslide:function(settings){this.slide(settings,{easing:settings.down?"bounceout":"swing",duration:settings.down?1000:200});},easeslide:function(settings){this.slide(settings,{easing:"easeinout",duration:700})}}});$.fn.extend({accordion:function(settings){if(!this.length)
return this;settings=$.extend({},$.ui.accordion.defaults,settings);if(settings.navigation){var current=this.find("a").filter(function(){return this.href==location.href;});if(current.length){if(current.filter(settings.header).length){settings.active=current;}else{settings.active=current.parent().parent().prev();current.addClass("current");}}}
var container=this,headers=container.find(settings.header),active=findActive(settings.active),running=0;if(settings.fillSpace){var maxHeight=this.parent().height();headers.each(function(){maxHeight-=$(this).outerHeight();});var maxPadding=0;headers.next().each(function(){maxPadding=Math.max(maxPadding,$(this).innerHeight()-$(this).height());}).height(maxHeight-maxPadding);}else if(settings.autoheight){var maxHeight=0;headers.next().each(function(){maxHeight=Math.max(maxHeight,$(this).outerHeight());}).height(maxHeight);}else{var maxHeight=0;headers.next().each(function(){maxHeight=$(this).outerHeight({margin:true});$(this).height(maxHeight)});}
headers.not(active||"").next().hide();active.parent().andSelf().addClass(settings.selectedClass);function findActive(selector){return selector!=undefined?typeof selector=="number"?headers.filter(":eq("+selector+")"):headers.not(headers.not(selector)):selector===false?$("<div>"):headers.filter(":eq(0)");}
function toggle(toShow,toHide,data,clickedActive,down){var finished=function(cancel){running=cancel?0:--running;if(running)
return;container.trigger("change",data);};running=toHide.size()==0?toShow.size():toHide.size();if(settings.animated){if(!settings.alwaysOpen&&clickedActive){toShow.slideToggle(settings.animated);finished(true);}else{$.ui.accordion.animations[settings.animated]({toShow:toShow,toHide:toHide,finished:finished,down:down});}}else{if(!settings.alwaysOpen&&clickedActive){toShow.toggle();}else{toHide.hide();toShow.show();}
finished(true);}}
function clickHandler(event){if(!event.target&&!settings.alwaysOpen){active.toggleClass(settings.selectedClass);var toHide=active.next();var toShow=active=$([]);toggle(toShow,toHide);return;}
var clicked=$(event.target);if(clicked.parents(settings.header).length)
while(!clicked.is(settings.header))
clicked=clicked.parent();var clickedActive=clicked[0]==active[0];if(running||(settings.alwaysOpen&&clickedActive)||!clicked.is(settings.header))
return;active.parent().andSelf().toggleClass(settings.selectedClass);if(!clickedActive){clicked.parent().andSelf().addClass(settings.selectedClass);}
var toShow=clicked.next(),toHide=active.next(),data=[clicked,active,toShow,toHide],down=headers.index(active[0])>headers.index(clicked[0]);active=clickedActive?$([]):clicked;toggle(toShow,toHide,data,clickedActive,down);return!toShow.length;};function activateHandler(event,index){if(arguments.length==1)
return;clickHandler({target:findActive(index)[0]});};return container.bind(settings.event||"",clickHandler).bind("activate",activateHandler);},activate:function(index){return this.trigger('activate',[index]);},unaccordion:function(){return this.find("*").andSelf().unbind().end().end();}});})(jQuery);}
else{(function($){$.widget("ui.accordion",{_init:function(){var o=this.options,self=this;this.running=0;if(o.collapsible==$.ui.accordion.defaults.collapsible&&o.alwaysOpen!=$.ui.accordion.defaults.alwaysOpen){o.collapsible=!o.alwaysOpen;}
if(o.navigation){var current=this.element.find("a").filter(o.navigationFilter);if($.browser.msie||$.browser.opera||$.browser.safari){current=Math.ceil(current);}
if(current.length){if(current.filter(o.header).length){this.active=current;}else{this.active=current.parent().parent().prev();current.addClass("ui-accordion-content-active");}}}
this.element.addClass("ui-accordion ui-widget ui-helper-reset");if(this.element[0].nodeName=="UL"){this.element.children("li").addClass("ui-accordion-li-fix");}
this.headers=this.element.find(o.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){$(this).addClass('ui-state-hover');}).bind("mouseleave.accordion",function(){$(this).removeClass('ui-state-hover');}).bind("focus.accordion",function(){$(this).addClass('ui-state-focus');}).bind("blur.accordion",function(){$(this).removeClass('ui-state-focus');});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");this.active=this._findActive(this.active||o.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass('ui-accordion-content-active');$("<span/>").addClass("ui-icon "+o.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(o.icons.header).toggleClass(o.icons.headerSelected);if($.browser.msie){this.element.find('a').css('zoom','1');}
this.resize();this.element.attr('role','tablist');this.headers.attr('role','tab').bind('keydown',function(event){return self._keydown(event);}).next().attr('role','tabpanel');this.headers.not(this.active||"").attr('aria-expanded','false').attr("tabIndex","-1").next().hide();if(!this.active.length){this.headers.eq(0).attr('tabIndex','0');}else{this.active.attr('aria-expanded','true').attr('tabIndex','0');}
if(!$.browser.safari)
this.headers.find('a').attr('tabIndex','-1');if(o.event){this.headers.bind((o.event)+".accordion",function(event){return self._clickHandler.call(self,event,this);});}},destroy:function(){var o=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind('.accordion').removeData('accordion');this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex");this.headers.find("a").removeAttr("tabindex");this.headers.children(".ui-icon").remove();var contents=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(o.autoHeight||o.fillHeight){contents.css("height","");}},_setData:function(key,value){if(key=='alwaysOpen'){key='collapsible';value=!value;}
$.widget.prototype._setData.apply(this,arguments);},_keydown:function(event){var o=this.options,keyCode=$.ui.keyCode;if(o.disabled||event.altKey||event.ctrlKey)
return;var length=this.headers.length;var currentIndex=this.headers.index(event.target);var toFocus=false;switch(event.keyCode){case keyCode.RIGHT:case keyCode.DOWN:toFocus=this.headers[(currentIndex+1)%length];break;case keyCode.LEFT:case keyCode.UP:toFocus=this.headers[(currentIndex-1+length)%length];break;case keyCode.SPACE:case keyCode.ENTER:return this._clickHandler({target:event.target},event.target);}
if(toFocus){$(event.target).attr('tabIndex','-1');$(toFocus).attr('tabIndex','0');toFocus.focus();return false;}
return true;},resize:function(){var o=this.options,maxHeight;if(o.fillSpace){if($.browser.msie){var defOverflow=this.element.parent().css('overflow');this.element.parent().css('overflow','hidden');}
maxHeight=this.element.parent().height();if($.browser.msie){this.element.parent().css('overflow',defOverflow);}
this.headers.each(function(){maxHeight-=$(this).outerHeight();});var maxPadding=0;this.headers.next().each(function(){maxPadding=Math.max(maxPadding,$(this).innerHeight()-$(this).height());}).height(Math.max(0,maxHeight-maxPadding)).css('overflow','auto');}else if(o.autoHeight){maxHeight=0;this.headers.next().each(function(){maxHeight=Math.max(maxHeight,$(this).outerHeight());}).height(maxHeight);}},activate:function(index){var active=this._findActive(index)[0];this._clickHandler({target:active},active);},_findActive:function(selector){return selector?typeof selector=="number"?this.headers.filter(":eq("+selector+")"):this.headers.not(this.headers.not(selector)):selector===false?$([]):this.headers.filter(":eq(0)");},_clickHandler:function(event,target){var o=this.options;if(o.disabled)return false;if(!event.target&&o.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(o.icons.headerSelected).addClass(o.icons.header);this.active.next().addClass('ui-accordion-content-active');var toHide=this.active.next(),data={options:o,newHeader:$([]),oldHeader:o.active,newContent:$([]),oldContent:toHide},toShow=(this.active=$([]));this._toggle(toShow,toHide,data);return false;}
var clicked=$(event.currentTarget||target);var clickedIsActive=clicked[0]==this.active[0];if(this.running||(!o.collapsible&&clickedIsActive)){return false;}
this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(o.icons.headerSelected).addClass(o.icons.header);this.active.next().addClass('ui-accordion-content-active');if(!clickedIsActive){clicked.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(o.icons.header).addClass(o.icons.headerSelected);clicked.next().addClass('ui-accordion-content-active');}
var toShow=clicked.next(),toHide=this.active.next(),data={options:o,newHeader:clickedIsActive&&o.collapsible?$([]):clicked,oldHeader:this.active,newContent:clickedIsActive&&o.collapsible?$([]):toShow.find('> *'),oldContent:toHide.find('> *')},down=this.headers.index(this.active[0])>this.headers.index(clicked[0]);this.active=clickedIsActive?$([]):clicked;this._toggle(toShow,toHide,data,clickedIsActive,down);return false;},_toggle:function(toShow,toHide,data,clickedIsActive,down){var o=this.options,self=this;this.toShow=toShow;this.toHide=toHide;this.data=data;var complete=function(){if(!self)return;return self._completed.apply(self,arguments);};this._trigger("changestart",null,this.data);this.running=toHide.size()===0?toShow.size():toHide.size();if(o.animated){var animOptions={};if(o.collapsible&&clickedIsActive){animOptions={toShow:$([]),toHide:toHide,complete:complete,down:down,autoHeight:o.autoHeight||o.fillSpace};}else{animOptions={toShow:toShow,toHide:toHide,complete:complete,down:down,autoHeight:o.autoHeight||o.fillSpace};}
if(!o.proxied){o.proxied=o.animated;}
if(!o.proxiedDuration){o.proxiedDuration=o.duration;}
o.animated=$.isFunction(o.proxied)?o.proxied(animOptions):o.proxied;o.duration=$.isFunction(o.proxiedDuration)?o.proxiedDuration(animOptions):o.proxiedDuration;var animations=$.ui.accordion.animations,duration=o.duration,easing=o.animated;if(!animations[easing]){animations[easing]=function(options){this.slide(options,{easing:easing,duration:duration||700});};}
animations[easing](animOptions);}else{if(o.collapsible&&clickedIsActive){toShow.toggle();}else{toHide.hide();toShow.show();}
complete(true);}
toHide.prev().attr('aria-expanded','false').attr("tabIndex","-1").blur();toShow.prev().attr('aria-expanded','true').attr("tabIndex","0").focus();},_completed:function(cancel){var o=this.options;this.running=cancel?0:--this.running;if(this.running)return;if(o.clearStyle){this.toShow.add(this.toHide).css({height:"",overflow:""});}
this._trigger('change',null,this.data);}});$.extend($.ui.accordion,{version:"1.7.2",defaults:{active:null,alwaysOpen:true,animated:'slide',autoHeight:false,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase();}},animations:{slide:function(options,additions){options=$.extend({easing:"swing",duration:300},options,additions);if(!options.toHide.size()){options.toShow.animate({height:"show"},options);return;}
if(!options.toShow.size()){options.toHide.animate({height:"hide"},options);return;}
var overflow=options.toShow.css('overflow'),percentDone,showProps={},hideProps={},fxAttrs=["height","paddingTop","paddingBottom"],originalWidth;var s=options.toShow;originalWidth=s[0].style.width;s.width(parseInt(s.parent().width(),10)-parseInt(s.css("paddingLeft"),10)-parseInt(s.css("paddingRight"),10)-(parseInt(s.css("borderLeftWidth"),10)||0)-(parseInt(s.css("borderRightWidth"),10)||0));$.each(fxAttrs,function(i,prop){hideProps[prop]='hide';var parts=(''+$.css(options.toShow[0],prop)).match(/^([\d+-.]+)(.*)$/);showProps[prop]={value:parts[1],unit:parts[2]||'px'};});options.toShow.css({height:0,overflow:'hidden'}).show();options.toHide.filter(":hidden").each(options.complete).end().filter(":visible").animate(hideProps,{step:function(now,settings){if(settings.prop=='height'){percentDone=(settings.now-settings.start)/(settings.end-settings.start);}
options.toShow[0].style[settings.prop]=(percentDone*showProps[settings.prop].value)+showProps[settings.prop].unit;},duration:options.duration,easing:options.easing,complete:function(){if(!options.autoHeight){options.toShow.css("height","");}
options.toShow.css("width",originalWidth);options.toShow.css({overflow:overflow});options.complete();}});},bounceslide:function(options){this.slide(options,{easing:options.down?"easeOutBounce":"swing",duration:options.down?1000:200});},easeslide:function(options){this.slide(options,{easing:"easeinout",duration:700});}}});})(jQuery);}
(function($){var colorbox='colorbox',hover='hover',TRUE=true,FALSE=false,cboxPublic,isIE=!$.support.opacity,isIE6=isIE&&!window.XMLHttpRequest,cbox_open='cbox_open',cbox_load='cbox_load',cbox_complete='cbox_complete',cbox_cleanup='cbox_cleanup',cbox_closed='cbox_closed',cbox_resize='resize.cbox_resize',$overlay,$cbox,$wrap,$content,$topBorder,$leftBorder,$rightBorder,$bottomBorder,$related,$window,$loaded,$loadingBay,$loadingOverlay,$loadingGraphic,$title,$current,$slideshow,$next,$prev,$close,interfaceHeight,interfaceWidth,loadedHeight,loadedWidth,element,bookmark,index,settings,open,active,defaults={transition:"elastic",speed:350,width:FALSE,height:FALSE,innerWidth:FALSE,innerHeight:FALSE,initialWidth:"400",initialHeight:"400",maxWidth:FALSE,maxHeight:FALSE,scalePhotos:TRUE,scrolling:TRUE,inline:FALSE,html:FALSE,iframe:FALSE,photo:FALSE,href:FALSE,title:FALSE,rel:FALSE,opacity:0.9,preloading:TRUE,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:FALSE,overlayClose:TRUE,slideshow:FALSE,slideshowAuto:TRUE,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:FALSE,onLoad:FALSE,onComplete:FALSE,onCleanup:FALSE,onClosed:FALSE};function setSize(size,dimension){dimension=dimension==='x'?$window.width():$window.height();return(typeof size==='string')?Math.round((size.match(/%/)?(dimension/100)*parseInt(size,10):parseInt(size,10))):size;}
function isImage(url){url=$.isFunction(url)?url.call(element):url;return settings.photo||url.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i);}
function process(){for(var i in settings){if($.isFunction(settings[i])&&i.substring(0,2)!=='on'){settings[i]=settings[i].call(element);}}
settings.rel=settings.rel||element.rel;settings.href=settings.href||element.href;settings.title=settings.title||element.title;}
function launch(elem){element=elem;settings=$(element).data(colorbox);process();if(settings.rel&&settings.rel!=='nofollow'){$related=$('.cboxElement').filter(function(){var relRelated=$(this).data(colorbox).rel||this.rel;return(relRelated===settings.rel);});index=$related.index(element);if(index<0){$related=$related.add(element);index=$related.length-1;}}else{$related=$(element);index=0;}
if(!open){open=TRUE;active=TRUE;bookmark=element;bookmark.blur();$(document).bind("keydown.cbox_close",function(e){if(e.keyCode===27){e.preventDefault();cboxPublic.close();}}).bind("keydown.cbox_arrows",function(e){if($related.length>1){if(e.keyCode===37){e.preventDefault();$prev.click();}else if(e.keyCode===39){e.preventDefault();$next.click();}}});if(settings.overlayClose){$overlay.css({"cursor":"pointer"}).one('click',cboxPublic.close);}
$.event.trigger(cbox_open);if(settings.onOpen){settings.onOpen.call(element);}
$overlay.css({"opacity":settings.opacity}).show();settings.w=setSize(settings.initialWidth,'x');settings.h=setSize(settings.initialHeight,'y');cboxPublic.position(0);if(isIE6){$window.bind('resize.cboxie6 scroll.cboxie6',function(){$overlay.css({width:$window.width(),height:$window.height(),top:$window.scrollTop(),left:$window.scrollLeft()});}).trigger("scroll.cboxie6");}}
$current.add($prev).add($next).add($slideshow).add($title).hide();$close.html(settings.close).show();cboxPublic.slideshow();cboxPublic.load();}
cboxPublic=$.fn.colorbox=function(options,callback){var $this=this;if(!$this.length){if($this.selector===''){$this=$('<a/>');options.open=TRUE;}else{return this;}}
$this.each(function(){var data=$.extend({},$(this).data(colorbox)?$(this).data(colorbox):defaults,options);$(this).data(colorbox,data).addClass("cboxElement");if(callback){$(this).data(colorbox).onComplete=callback;}});if(options&&options.open){launch($this);}
return this;};cboxPublic.init=function(){function $div(id){return $('<div id="cbox'+id+'"/>');}
$window=$(window);$cbox=$('<div id="colorbox"/>');$overlay=$div("Overlay").hide();$wrap=$div("Wrapper");$content=$div("Content").append($loaded=$div("LoadedContent").css({width:0,height:0}),$loadingOverlay=$div("LoadingOverlay"),$loadingGraphic=$div("LoadingGraphic"),$title=$div("Title"),$current=$div("Current"),$slideshow=$div("Slideshow"),$next=$div("Next"),$prev=$div("Previous"),$close=$div("Close"));$wrap.append($('<div/>').append($div("TopLeft"),$topBorder=$div("TopCenter"),$div("TopRight")),$('<div/>').append($leftBorder=$div("MiddleLeft"),$content,$rightBorder=$div("MiddleRight")),$('<div/>').append($div("BottomLeft"),$bottomBorder=$div("BottomCenter"),$div("BottomRight"))).children().children().css({'float':'left'});$loadingBay=$("<div style='position:absolute; top:0; left:0; width:9999px; height:0;'/>");$('body').prepend($overlay,$cbox.append($wrap,$loadingBay));if(isIE){$cbox.addClass('cboxIE');if(isIE6){$overlay.css('position','absolute');}}
$content.children().bind('mouseover mouseout',function(){$(this).toggleClass(hover);}).addClass(hover);interfaceHeight=$topBorder.height()+$bottomBorder.height()+$content.outerHeight(TRUE)-$content.height();interfaceWidth=$leftBorder.width()+$rightBorder.width()+$content.outerWidth(TRUE)-$content.width();loadedHeight=$loaded.outerHeight(TRUE);loadedWidth=$loaded.outerWidth(TRUE);$cbox.css({"padding-bottom":interfaceHeight,"padding-right":interfaceWidth}).hide();$next.click(cboxPublic.next);$prev.click(cboxPublic.prev);$close.click(cboxPublic.close);$content.children().removeClass(hover);$('.cboxElement').live('click',function(e){if(e.button!==0&&typeof e.button!=='undefined'){return TRUE;}else{launch(this);return FALSE;}});};cboxPublic.position=function(speed,loadedCallback){var
animate_speed,winHeight=$window.height(),posTop=Math.max(winHeight-settings.h-loadedHeight-interfaceHeight,0)/2+$window.scrollTop(),posLeft=Math.max(document.documentElement.clientWidth-settings.w-loadedWidth-interfaceWidth,0)/2+$window.scrollLeft();animate_speed=($cbox.width()===settings.w+loadedWidth&&$cbox.height()===settings.h+loadedHeight)?0:speed;$wrap[0].style.width=$wrap[0].style.height="9999px";function modalDimensions(that){$topBorder[0].style.width=$bottomBorder[0].style.width=$content[0].style.width=that.style.width;$loadingGraphic[0].style.height=$loadingOverlay[0].style.height=$content[0].style.height=$leftBorder[0].style.height=$rightBorder[0].style.height=that.style.height;}
$cbox.dequeue().animate({width:settings.w+loadedWidth,height:settings.h+loadedHeight,top:posTop,left:posLeft},{duration:animate_speed,complete:function(){modalDimensions(this);active=FALSE;$wrap[0].style.width=(settings.w+loadedWidth+interfaceWidth)+"px";$wrap[0].style.height=(settings.h+loadedHeight+interfaceHeight)+"px";if(loadedCallback){loadedCallback();}},step:function(){modalDimensions(this);}});};cboxPublic.resize=function(object){if(!open){return;}
var topMargin,prev,prevSrc,next,nextSrc,photo,timeout,speed=settings.transition==="none"?0:settings.speed;$window.unbind(cbox_resize);if(!object){timeout=setTimeout(function(){var $child=$loaded.wrapInner("<div style='overflow:auto'></div>").children();settings.h=$child.height();$loaded.css({height:settings.h});$child.replaceWith($child.children());cboxPublic.position(speed);},1);return;}
$loaded.remove();$loaded=$('<div id="cboxLoadedContent"/>').html(object);function getWidth(){settings.w=settings.w||$loaded.width();settings.w=settings.mw&&settings.mw<settings.w?settings.mw:settings.w;return settings.w;}
function getHeight(){settings.h=settings.h||$loaded.height();settings.h=settings.mh&&settings.mh<settings.h?settings.mh:settings.h;return settings.h;}
$loaded.hide().appendTo($loadingBay).css({width:getWidth(),overflow:settings.scrolling?'auto':'hidden'}).css({height:getHeight()}).prependTo($content);$('#cboxPhoto').css({cssFloat:'none'});if(isIE6){$('select:not(#colorbox select)').filter(function(){return this.style.visibility!=='hidden';}).css({'visibility':'hidden'}).one(cbox_cleanup,function(){this.style.visibility='inherit';});}
function setPosition(s){cboxPublic.position(s,function(){if(!open){return;}
if(isIE){if(photo){$loaded.fadeIn(100);}
$cbox[0].style.removeAttribute("filter");}
if(settings.iframe){$loaded.append("<iframe id='cboxIframe'"+(settings.scrolling?" ":"scrolling='no'")+" name='iframe_"+new Date().getTime()+"' frameborder=0 src='"+settings.href+"' "+(isIE?"allowtransparency='true'":'')+" />");}
$loaded.show();$title.show().html(settings.title);if($related.length>1){$current.html(settings.current.replace(/\{current\}/,index+1).replace(/\{total\}/,$related.length)).show();$next.html(settings.next).show();$prev.html(settings.previous).show();if(settings.slideshow){$slideshow.show();}}
$loadingOverlay.hide();$loadingGraphic.hide();$.event.trigger(cbox_complete);if(settings.onComplete){settings.onComplete.call(element);}
if(settings.transition==='fade'){$cbox.fadeTo(speed,1,function(){if(isIE){$cbox[0].style.removeAttribute("filter");}});}
$window.bind(cbox_resize,function(){cboxPublic.position(0);});});}
if((settings.transition==='fade'&&$cbox.fadeTo(speed,0,function(){setPosition(0);}))||setPosition(speed)){}
if(settings.preloading&&$related.length>1){prev=index>0?$related[index-1]:$related[$related.length-1];next=index<$related.length-1?$related[index+1]:$related[0];nextSrc=$(next).data(colorbox).href||next.href;prevSrc=$(prev).data(colorbox).href||prev.href;if(isImage(nextSrc)){$('<img />').attr('src',nextSrc);}
if(isImage(prevSrc)){$('<img />').attr('src',prevSrc);}}};cboxPublic.load=function(){var href,img,setResize,resize=cboxPublic.resize;active=TRUE;element=$related[index];settings=$(element).data(colorbox);process();$.event.trigger(cbox_load);if(settings.onLoad){settings.onLoad.call(element);}
settings.h=settings.height?setSize(settings.height,'y')-loadedHeight-interfaceHeight:settings.innerHeight?setSize(settings.innerHeight,'y'):FALSE;settings.w=settings.width?setSize(settings.width,'x')-loadedWidth-interfaceWidth:settings.innerWidth?setSize(settings.innerWidth,'x'):FALSE;settings.mw=settings.w;settings.mh=settings.h;if(settings.maxWidth){settings.mw=setSize(settings.maxWidth,'x')-loadedWidth-interfaceWidth;settings.mw=settings.w&&settings.w<settings.mw?settings.w:settings.mw;}
if(settings.maxHeight){settings.mh=setSize(settings.maxHeight,'y')-loadedHeight-interfaceHeight;settings.mh=settings.h&&settings.h<settings.mh?settings.h:settings.mh;}
href=settings.href;$loadingOverlay.show();$loadingGraphic.show();if(settings.inline){$('<div id="cboxInlineTemp" />').hide().insertBefore($(href)[0]).bind(cbox_load+' '+cbox_cleanup,function(){$(this).replaceWith($loaded.children());});resize($(href));}else if(settings.iframe){resize(" ");}else if(settings.html){resize(settings.html);}else if(isImage(href)){img=new Image();img.onload=function(){var percent;img.onload=null;img.id='cboxPhoto';$(img).css({margin:'auto',border:'none',display:'block',cssFloat:'left'});if(settings.scalePhotos){setResize=function(){img.height-=img.height*percent;img.width-=img.width*percent;};if(settings.mw&&img.width>settings.mw){percent=(img.width-settings.mw)/img.width;setResize();}
if(settings.mh&&img.height>settings.mh){percent=(img.height-settings.mh)/img.height;setResize();}}
if(settings.h){img.style.marginTop=Math.max(settings.h-img.height,0)/2+'px';}
resize(img);if($related.length>1){$(img).css({cursor:'pointer'}).click(cboxPublic.next);}
if(isIE){img.style.msInterpolationMode='bicubic';}};img.src=href;}else{$('<div />').appendTo($loadingBay).load(href,function(data,textStatus){if(textStatus==="success"){resize(this);}else{resize($("<p>Request unsuccessful.</p>"));}});}};cboxPublic.next=function(){if(!active){index=index<$related.length-1?index+1:0;cboxPublic.load();}};cboxPublic.prev=function(){if(!active){index=index>0?index-1:$related.length-1;cboxPublic.load();}};cboxPublic.slideshow=function(){var stop,timeOut,className='cboxSlideshow_';$slideshow.bind(cbox_closed,function(){$slideshow.unbind();clearTimeout(timeOut);$cbox.removeClass(className+"off"+" "+className+"on");});function start(){$slideshow.text(settings.slideshowStop).bind(cbox_complete,function(){timeOut=setTimeout(cboxPublic.next,settings.slideshowSpeed);}).bind(cbox_load,function(){clearTimeout(timeOut);}).one("click",function(){stop();$(this).removeClass(hover);});$cbox.removeClass(className+"off").addClass(className+"on");}
stop=function(){clearTimeout(timeOut);$slideshow.text(settings.slideshowStart).unbind(cbox_complete+' '+cbox_load).one("click",function(){start();timeOut=setTimeout(cboxPublic.next,settings.slideshowSpeed);$(this).removeClass(hover);});$cbox.removeClass(className+"on").addClass(className+"off");};if(settings.slideshow&&$related.length>1){if(settings.slideshowAuto){start();}else{stop();}}};cboxPublic.close=function(){$.event.trigger(cbox_cleanup);if(settings.onCleanup){settings.onCleanup.call(element);}
open=FALSE;$(document).unbind("keydown.cbox_close keydown.cbox_arrows");$window.unbind(cbox_resize+' resize.cboxie6 scroll.cboxie6');$overlay.css({cursor:'auto'}).fadeOut('fast');$cbox.stop(TRUE,FALSE).fadeOut('fast',function(){$('#colorbox iframe').attr('src','about:blank');$loaded.remove();$cbox.css({'opacity':1});try{bookmark.focus();}catch(er){}
$.event.trigger(cbox_closed);if(settings.onClosed){settings.onClosed.call(element);}});};cboxPublic.element=function(){return $(element);};cboxPublic.settings=defaults;$(cboxPublic.init);}(jQuery));(function($){$.extend($.fn,{validate:function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");return;}
var validator=$.data(this[0],'validator');if(validator){return validator;}
validator=new $.validator(options,this[0]);$.data(this[0],'validator',validator);if(validator.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){validator.cancelSubmit=true;});if(validator.settings.submitHandler){this.find("input, button").filter(":submit").click(function(){validator.submitButton=this;});}
this.submit(function(event){if(validator.settings.debug)
event.preventDefault();function handle(){if(validator.settings.submitHandler){if(validator.submitButton){var hidden=$("<input type='hidden'/>").attr("name",validator.submitButton.name).val(validator.submitButton.value).appendTo(validator.currentForm);}
validator.settings.submitHandler.call(validator,validator.currentForm);if(validator.submitButton){hidden.remove();}
return false;}
return true;}
if(validator.cancelSubmit){validator.cancelSubmit=false;return handle();}
if(validator.form()){if(validator.pendingRequest){validator.formSubmitted=true;return false;}
return handle();}else{validator.focusInvalid();return false;}});}
return validator;},valid:function(){if($(this[0]).is('form')){return this.validate().form();}else{var valid=true;var validator=$(this[0].form).validate();this.each(function(){valid&=validator.element(this);});return valid;}},removeAttrs:function(attributes){var result={},$element=this;$.each(attributes.split(/\s/),function(index,value){result[value]=$element.attr(value);$element.removeAttr(value);});return result;},rules:function(command,argument){var element=this[0];if(command){var settings=$.data(element.form,'validator').settings;var staticRules=settings.rules;var existingRules=$.validator.staticRules(element);switch(command){case"add":$.extend(existingRules,$.validator.normalizeRule(argument));staticRules[element.name]=existingRules;if(argument.messages)
settings.messages[element.name]=$.extend(settings.messages[element.name],argument.messages);break;case"remove":if(!argument){delete staticRules[element.name];return existingRules;}
var filtered={};$.each(argument.split(/\s/),function(index,method){filtered[method]=existingRules[method];delete existingRules[method];});return filtered;}}
var data=$.validator.normalizeRules($.extend({},$.validator.metadataRules(element),$.validator.classRules(element),$.validator.attributeRules(element),$.validator.staticRules(element)),element);if(data.required){var param=data.required;delete data.required;data=$.extend({required:param},data);}
return data;}});$.extend($.expr[":"],{blank:function(a){return!$.trim(""+a.value);},filled:function(a){return!!$.trim(""+a.value);},unchecked:function(a){return!a.checked;}});$.validator=function(options,form){this.settings=$.extend({},$.validator.defaults,options);this.currentForm=form;this.init();};$.validator.format=function(source,params){if(arguments.length==1)
return function(){var args=$.makeArray(arguments);args.unshift(source);return $.validator.format.apply(this,args);};if(arguments.length>2&&params.constructor!=Array){params=$.makeArray(arguments).slice(1);}
if(params.constructor!=Array){params=[params];}
$.each(params,function(i,n){source=source.replace(new RegExp("\\{"+i+"\\}","g"),n);});return source;};$.extend($.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:$([]),errorLabelContainer:$([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(element){this.lastActive=element;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,element,this.settings.errorClass,this.settings.validClass);this.errorsFor(element).hide();}},onfocusout:function(element){if(!this.checkable(element)&&(element.name in this.submitted||!this.optional(element))){this.element(element);}},onkeyup:function(element){if(element.name in this.submitted||element==this.lastElement){this.element(element);}},onclick:function(element){if(element.name in this.submitted)
this.element(element);else if(element.parentNode.name in this.submitted)
this.element(element.parentNode)},highlight:function(element,errorClass,validClass){$(element).addClass(errorClass).removeClass(validClass);},unhighlight:function(element,errorClass,validClass){$(element).removeClass(errorClass).addClass(validClass);}},setDefaults:function(settings){$.extend($.validator.defaults,settings);},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:$.validator.format("Please enter no more than {0} characters."),minlength:$.validator.format("Please enter at least {0} characters."),rangelength:$.validator.format("Please enter a value between {0} and {1} characters long."),range:$.validator.format("Please enter a value between {0} and {1}."),max:$.validator.format("Please enter a value less than or equal to {0}."),min:$.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){this.labelContainer=$(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||$(this.currentForm);this.containers=$(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var groups=(this.groups={});$.each(this.settings.groups,function(key,value){$.each(value.split(/\s/),function(index,name){groups[name]=key;});});var rules=this.settings.rules;$.each(rules,function(key,value){rules[key]=$.validator.normalizeRule(value);});function delegate(event){var validator=$.data(this[0].form,"validator");validator.settings["on"+event.type]&&validator.settings["on"+event.type].call(validator,this[0]);}
$(this.currentForm).delegate("focusin focusout keyup",":text, :password, :file, select, textarea",delegate).delegate("click",":radio, :checkbox, select, option",delegate);if(this.settings.invalidHandler)
$(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler);},form:function(){this.checkForm();$.extend(this.submitted,this.errorMap);this.invalid=$.extend({},this.errorMap);if(!this.valid())
$(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid();},checkForm:function(){this.prepareForm();for(var i=0,elements=(this.currentElements=this.elements());elements[i];i++){this.check(elements[i]);}
return this.valid();},element:function(element){element=this.clean(element);this.lastElement=element;this.prepareElement(element);this.currentElements=$(element);var result=this.check(element);if(result){delete this.invalid[element.name];}else{this.invalid[element.name]=true;}
if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers);}
this.showErrors();return result;},showErrors:function(errors){if(errors){$.extend(this.errorMap,errors);this.errorList=[];for(var name in errors){this.errorList.push({message:errors[name],element:this.findByName(name)[0]});}
this.successList=$.grep(this.successList,function(element){return!(element.name in errors);});}
this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors();},resetForm:function(){if($.fn.resetForm)
$(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass);},numberOfInvalids:function(){return this.objectLength(this.invalid);},objectLength:function(obj){var count=0;for(var i in obj)
count++;return count;},hideErrors:function(){this.addWrapper(this.toHide).hide();},valid:function(){return this.size()==0;},size:function(){return this.errorList.length;},focusInvalid:function(){if(this.settings.focusInvalid){try{$(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus();}catch(e){}}},findLastActive:function(){var lastActive=this.lastActive;return lastActive&&$.grep(this.errorList,function(n){return n.element.name==lastActive.name;}).length==1&&lastActive;},elements:function(){var validator=this,rulesCache={};return $([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&validator.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in rulesCache||!validator.objectLength($(this).rules()))
return false;rulesCache[this.name]=true;return true;});},clean:function(selector){return $(selector)[0];},errors:function(){return $(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext);},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=$([]);this.toHide=$([]);this.currentElements=$([]);},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers);},prepareElement:function(element){this.reset();this.toHide=this.errorsFor(element);},check:function(element){element=this.clean(element);if(this.checkable(element)){element=this.findByName(element.name)[0];}
var rules=$(element).rules();var dependencyMismatch=false;for(method in rules){var rule={method:method,parameters:rules[method]};try{var result=$.validator.methods[method].call(this,element.value.replace(/\r/g,""),element,rule.parameters);if(result=="dependency-mismatch"){dependencyMismatch=true;continue;}
dependencyMismatch=false;if(result=="pending"){this.toHide=this.toHide.not(this.errorsFor(element));return;}
if(!result){this.formatAndAdd(element,rule);return false;}}catch(e){this.settings.debug&&window.console&&console.log("exception occured when checking element "+element.id
+", check the '"+rule.method+"' method",e);throw e;}}
if(dependencyMismatch)
return;if(this.objectLength(rules))
this.successList.push(element);return true;},customMetaMessage:function(element,method){if(!$.metadata)
return;var meta=this.settings.meta?$(element).metadata()[this.settings.meta]:$(element).metadata();return meta&&meta.messages&&meta.messages[method];},customMessage:function(name,method){var m=this.settings.messages[name];return m&&(m.constructor==String?m:m[method]);},findDefined:function(){for(var i=0;i<arguments.length;i++){if(arguments[i]!==undefined)
return arguments[i];}
return undefined;},defaultMessage:function(element,method){return this.findDefined(this.customMessage(element.name,method),this.customMetaMessage(element,method),!this.settings.ignoreTitle&&element.title||undefined,$.validator.messages[method],"<strong>Warning: No message defined for "+element.name+"</strong>");},formatAndAdd:function(element,rule){var message=this.defaultMessage(element,rule.method),theregex=/\$?\{(\d+)\}/g;if(typeof message=="function"){message=message.call(this,rule.parameters,element);}else if(theregex.test(message)){message=jQuery.format(message.replace(theregex,'{$1}'),rule.parameters);}
this.errorList.push({message:message,element:element});this.errorMap[element.name]=message;this.submitted[element.name]=message;},addWrapper:function(toToggle){if(this.settings.wrapper)
toToggle=toToggle.add(toToggle.parent(this.settings.wrapper));return toToggle;},defaultShowErrors:function(){for(var i=0;this.errorList[i];i++){var error=this.errorList[i];this.settings.highlight&&this.settings.highlight.call(this,error.element,this.settings.errorClass,this.settings.validClass);this.showLabel(error.element,error.message);}
if(this.errorList.length){this.toShow=this.toShow.add(this.containers);}
if(this.settings.success){for(var i=0;this.successList[i];i++){this.showLabel(this.successList[i]);}}
if(this.settings.unhighlight){for(var i=0,elements=this.validElements();elements[i];i++){this.settings.unhighlight.call(this,elements[i],this.settings.errorClass,this.settings.validClass);}}
this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show();},validElements:function(){return this.currentElements.not(this.invalidElements());},invalidElements:function(){return $(this.errorList).map(function(){return this.element;});},showLabel:function(element,message){var label=this.errorsFor(element);if(label.length){label.removeClass().addClass(this.settings.errorClass);label.attr("generated")&&label.html(message);}else{label=$("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(element),generated:true}).addClass(this.settings.errorClass).html(message||"");if(this.settings.wrapper){label=label.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();}
if(!this.labelContainer.append(label).length)
this.settings.errorPlacement?this.settings.errorPlacement(label,$(element)):label.insertAfter(element);}
if(!message&&this.settings.success){label.text("");typeof this.settings.success=="string"?label.addClass(this.settings.success):this.settings.success(label);}
this.toShow=this.toShow.add(label);},errorsFor:function(element){var name=this.idOrName(element);return this.errors().filter(function(){return $(this).attr('for')==name});},idOrName:function(element){return this.groups[element.name]||(this.checkable(element)?element.name:element.id||element.name);},checkable:function(element){return/radio|checkbox/i.test(element.type);},findByName:function(name){var form=this.currentForm;return $(document.getElementsByName(name)).map(function(index,element){return element.form==form&&element.name==name&&element||null;});},getLength:function(value,element){switch(element.nodeName.toLowerCase()){case'select':return $("option:selected",element).length;case'input':if(this.checkable(element))
return this.findByName(element.name).filter(':checked').length;}
return value.length;},depend:function(param,element){return this.dependTypes[typeof param]?this.dependTypes[typeof param](param,element):true;},dependTypes:{"boolean":function(param,element){return param;},"string":function(param,element){return!!$(param,element.form).length;},"function":function(param,element){return param(element);}},optional:function(element){return!$.validator.methods.required.call(this,$.trim(element.value),element)&&"dependency-mismatch";},startRequest:function(element){if(!this.pending[element.name]){this.pendingRequest++;this.pending[element.name]=true;}},stopRequest:function(element,valid){this.pendingRequest--;if(this.pendingRequest<0)
this.pendingRequest=0;delete this.pending[element.name];if(valid&&this.pendingRequest==0&&this.formSubmitted&&this.form()){$(this.currentForm).submit();this.formSubmitted=false;}else if(!valid&&this.pendingRequest==0&&this.formSubmitted){$(this.currentForm).triggerHandler("invalid-form",[this]);this.formSubmitted=false;}},previousValue:function(element){return $.data(element,"previousValue")||$.data(element,"previousValue",{old:null,valid:true,message:this.defaultMessage(element,"remote")});}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(className,rules){className.constructor==String?this.classRuleSettings[className]=rules:$.extend(this.classRuleSettings,className);},classRules:function(element){var rules={};var classes=$(element).attr('class');classes&&$.each(classes.split(' '),function(){if(this in $.validator.classRuleSettings){$.extend(rules,$.validator.classRuleSettings[this]);}});return rules;},attributeRules:function(element){var rules={};var $element=$(element);for(method in $.validator.methods){var value=$element.attr(method);if(value){rules[method]=value;}}
if(rules.maxlength&&/-1|2147483647|524288/.test(rules.maxlength)){delete rules.maxlength;}
return rules;},metadataRules:function(element){if(!$.metadata)return{};var meta=$.data(element.form,'validator').settings.meta;return meta?$(element).metadata()[meta]:$(element).metadata();},staticRules:function(element){var rules={};var validator=$.data(element.form,'validator');if(validator.settings.rules){rules=$.validator.normalizeRule(validator.settings.rules[element.name])||{};}
return rules;},normalizeRules:function(rules,element){$.each(rules,function(prop,val){if(val===false){delete rules[prop];return;}
if(val.param||val.depends){var keepRule=true;switch(typeof val.depends){case"string":keepRule=!!$(val.depends,element.form).length;break;case"function":keepRule=val.depends.call(element,element);break;}
if(keepRule){rules[prop]=val.param!==undefined?val.param:true;}else{delete rules[prop];}}});$.each(rules,function(rule,parameter){rules[rule]=$.isFunction(parameter)?parameter(element):parameter;});$.each(['minlength','maxlength','min','max'],function(){if(rules[this]){rules[this]=Number(rules[this]);}});$.each(['rangelength','range'],function(){if(rules[this]){rules[this]=[Number(rules[this][0]),Number(rules[this][1])];}});if($.validator.autoCreateRanges){if(rules.min&&rules.max){rules.range=[rules.min,rules.max];delete rules.min;delete rules.max;}
if(rules.minlength&&rules.maxlength){rules.rangelength=[rules.minlength,rules.maxlength];delete rules.minlength;delete rules.maxlength;}}
if(rules.messages){delete rules.messages}
return rules;},normalizeRule:function(data){if(typeof data=="string"){var transformed={};$.each(data.split(/\s/),function(){transformed[this]=true;});data=transformed;}
return data;},addMethod:function(name,method,message){$.validator.methods[name]=method;$.validator.messages[name]=message!=undefined?message:$.validator.messages[name];if(method.length<3){$.validator.addClassRules(name,$.validator.normalizeRule(name));}},methods:{required:function(value,element,param){if(!this.depend(param,element))
return"dependency-mismatch";switch(element.nodeName.toLowerCase()){case'select':var val=$(element).val();return val&&val.length>0;case'input':if(this.checkable(element))
return this.getLength(value,element)>0;default:return $.trim(value).length>0;}},remote:function(value,element,param){if(this.optional(element))
return"dependency-mismatch";var previous=this.previousValue(element);if(!this.settings.messages[element.name])
this.settings.messages[element.name]={};previous.originalMessage=this.settings.messages[element.name].remote;this.settings.messages[element.name].remote=previous.message;param=typeof param=="string"&&{url:param}||param;if(previous.old!==value){previous.old=value;var validator=this;this.startRequest(element);var data={};data[element.name]=value;$.ajax($.extend(true,{url:param,mode:"abort",port:"validate"+element.name,dataType:"json",data:data,success:function(response){validator.settings.messages[element.name].remote=previous.originalMessage;var valid=response===true;if(valid){var submitted=validator.formSubmitted;validator.prepareElement(element);validator.formSubmitted=submitted;validator.successList.push(element);validator.showErrors();}else{var errors={};var message=(previous.message=response||validator.defaultMessage(element,"remote"));errors[element.name]=$.isFunction(message)?message(value):message;validator.showErrors(errors);}
previous.valid=valid;validator.stopRequest(element,valid);}},param));return"pending";}else if(this.pending[element.name]){return"pending";}
return previous.valid;},minlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)>=param;},maxlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)<=param;},rangelength:function(value,element,param){var length=this.getLength($.trim(value),element);return this.optional(element)||(length>=param[0]&&length<=param[1]);},min:function(value,element,param){return this.optional(element)||value>=param;},max:function(value,element,param){return this.optional(element)||value<=param;},range:function(value,element,param){return this.optional(element)||(value>=param[0]&&value<=param[1]);},email:function(value,element){return this.optional(element)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value);},url:function(value,element){return this.optional(element)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);},date:function(value,element){return this.optional(element)||!/Invalid|NaN/.test(new Date(value));},dateISO:function(value,element){return this.optional(element)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value);},number:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value);},digits:function(value,element){return this.optional(element)||/^\d+$/.test(value);},creditcard:function(value,element){if(this.optional(element))
return"dependency-mismatch";if(/[^0-9-]+/.test(value))
return false;var nCheck=0,nDigit=0,bEven=false;value=value.replace(/\D/g,"");for(var n=value.length-1;n>=0;n--){var cDigit=value.charAt(n);var nDigit=parseInt(cDigit,10);if(bEven){if((nDigit*=2)>9)
nDigit-=9;}
nCheck+=nDigit;bEven=!bEven;}
return(nCheck%10)==0;},accept:function(value,element,param){param=typeof param=="string"?param.replace(/,/g,'|'):"png|jpe?g|gif";return this.optional(element)||value.match(new RegExp(".("+param+")$","i"));},equalTo:function(value,element,param){var target=$(param).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){$(element).valid();});return value==target.val();}}});$.format=$.validator.format;})(jQuery);;(function($){var ajax=$.ajax;var pendingRequests={};$.ajax=function(settings){settings=$.extend(settings,$.extend({},$.ajaxSettings,settings));var port=settings.port;if(settings.mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort();}
return(pendingRequests[port]=ajax.apply(this,arguments));}
return ajax.apply(this,arguments);};})(jQuery);;(function($){$.each({focus:'focusin',blur:'focusout'},function(original,fix){$.event.special[fix]={setup:function(){if($.browser.msie)return false;this.addEventListener(original,$.event.special[fix].handler,true);},teardown:function(){if($.browser.msie)return false;this.removeEventListener(original,$.event.special[fix].handler,true);},handler:function(e){arguments[0]=$.event.fix(e);arguments[0].type=fix;return $.event.handle.apply(this,arguments);}};});$.extend($.fn,{delegate:function(type,delegate,handler){return this.bind(type,function(event){var target=$(event.target);if(target.is(delegate)){return handler.apply(target,arguments);}});},triggerEvent:function(type,target){return this.triggerHandler(type,[$.event.fix({type:type,target:target})]);}})})(jQuery);(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}
if(p==this){return false;}
var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}
if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);;(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl();},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}},o.delay);},getMenu=function($menu){var menu=$menu.parents(['ul.',c.menuClass,':first'].join(''))[0];sf.op=sf.o[menu.serial];return menu;},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone());};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass);});sf.o[s]=sf.op=o;$('li:has(ul)',this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).each(function(){if(o.autoArrows)addArrow($('>a:first-child',this));}).not('.'+c.bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});});o.onInit.call(this);}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7))menuClasses.push(c.shadowClass);$(this).addClass(menuClasses.join(' '));});};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined)
this.toggleClass(sf.c.shadowClass+'-off');};sf.c={bcClass:'sf-breadcrumb',menuClass:'sf-js-enabled',anchorClass:'sf-with-ul',arrowClass:'sf-sub-indicator',shadowClass:'sf-shadow'};sf.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',pathLevels:1,delay:800,animation:{opacity:'show'},speed:'normal',autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:'';o.retainPath=false;var $ul=$(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this;},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+'-off',$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul);});return this;}});})(jQuery);jQuery.extend(jQuery.easing,{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;}});jQuery(function(){jQuery("div.svwp").prepend("<img src='/images/slide_viewer/svwloader.gif' class='ldrgif' alt='loading...'/ >");});var j=0;jQuery.fn.slideViewerPro=function(settings){settings=jQuery.extend({testimonial:false,galBorderWidth:6,thumbsTopMargin:3,thumbsRightMargin:3,thumbsBorderWidth:3,buttonsWidth:20,galBorderColor:"#ff0000",thumbsBorderColor:"#d8d8d8",thumbsActiveBorderColor:"#ff0000",buttonsTextColor:"#ff0000",thumbsBorderOpacity:1.0,thumbsActiveBorderOpacity:1.0,easeTime:750,asTimer:4000,thumbs:5,thumbsPercentReduction:12,thumbsVis:true,easeFunc:"easeInOutExpo",leftButtonInner:"-",rightButtonInner:"+",autoslide:false,typo:false,typoFullOpacity:0.9,shuffle:false},settings);return this.each(function(){function shuffle(a){var i=a.size();while(--i){var j=Math.floor(Math.random()*(i));var tmp=a.slice(i,i+1);a.slice(j,j+1).insertAfter(tmp);}}
var container=jQuery(this);(!settings.shuffle)?null:shuffle(container.find("li"));container.find("img.ldrgif").remove();container.removeClass("svwp").addClass("slideViewer");container.attr("id","svwp"+j);var pictWidth=460;if(settings.testimonial){pictWidth=300;}
var pictHeight=500;if(settings.testimonial){pictHeight=300;}
var pictEls=container.find("li").size();(pictEls>=settings.thumbs)?null:settings.thumbs=pictEls;var slideViewerWidth=pictWidth*pictEls;var thumbsWidth=Math.round(pictWidth*settings.thumbsPercentReduction/100);var thumbsHeight=Math.round(pictHeight*settings.thumbsPercentReduction/100);var pos=0;var r_enabled=true;var l_enabled=true;container.find("ul").css("width",slideViewerWidth).wrap(jQuery("<div style='width:"+pictWidth+"px; overflow: hidden; position: relative; top: 0; left: 0'>"));container.css("width",pictWidth);container.css("height",pictHeight);container.each(function(i){if(settings.typo)
{jQuery(this).find("img").each(function(z){jQuery(this).after("<span class='typo' style='position: absolute; width:"+(pictWidth-12)+"px; margin: 0 0 0 -"+pictWidth+"px'>"+jQuery(this).attr("alt")+"<\/span>");});}
jQuery(this).after("<div class='thumbSlider' id='thumbSlider"+j+"'><ul><\/ul><\/div>");jQuery(this).next().after("<a href='#' class='left' id='left"+j+"'><span>"+settings.leftButtonInner+"</span><\/a><a href='#' class='right' id='right"+j+"'><span>"+settings.rightButtonInner+"<\/span><\/a>");jQuery(this).find("li").each(function(n){jQuery("div#thumbSlider"+j+" ul").append("<li><a title='"+jQuery(this).find("img").attr("alt")+"' href='#'><img width='"+thumbsWidth+"' height='"+thumbsHeight+"' src='"+jQuery(this).find("img").attr("src")+"' /><p class='tmbrdr'>&nbsp;<\/p><\/a><\/li>");});jQuery("div#thumbSlider"+j+" a").each(function(z){jQuery(this).bind("click",function(){jQuery(this).find("p.tmbrdr").css({borderColor:settings.thumbsActiveBorderColor,opacity:settings.thumbsActiveBorderOpacity});jQuery(this).parent().parent().find("p.tmbrdr").not(jQuery(this).find("p.tmbrdr")).css({borderColor:settings.thumbsBorderColor,opacity:settings.thumbsBorderOpacity});var cnt=-(pictWidth*z);(cnt!=container.find("ul").css("left").replace(/px/,""))?container.find("span.typo").animate({"opacity":0},250):null;container.find("ul").animate({left:cnt},settings.easeTime,settings.easeFunc,function(){container.find("span.typo").animate({"opacity":settings.typoFullOpacity},250)});return false;});});var jQuerybtl=jQuery("a#left"+j);var jQuerybtr=jQuery("a#right"+j);jQuerybtr.bind("click",function(){if(r_enabled)(pictEls-pos>settings.thumbs*2||pictEls%settings.thumbs==0)?pos+=settings.thumbs:pos+=pictEls%settings.thumbs;r_enabled=false;jQuery(this).prev().prev().find("ul:not(:animated)").animate({left:-(thumbsWidth+settings.thumbsRightMargin)*pos},500,settings.easeFunc,function(){authorityMixing();});return false;});jQuerybtl.bind("click",function(){if(l_enabled&&pos!=0)(pictEls-pos>settings.thumbs||pictEls%settings.thumbs==0)?pos-=settings.thumbs:pos-=pictEls%settings.thumbs;l_enabled=false;jQuery(this).prev().find("ul:not(:animated)").animate({left:-(thumbsWidth+settings.thumbsRightMargin)*pos},500,settings.easeFunc,function(){authorityMixing();});return false;});function authorityMixing()
{(pos==pictEls-settings.thumbs)?jQuerybtr.addClass("r_dis"):jQuerybtr.removeClass("r_dis");(pos==pictEls-settings.thumbs)?r_enabled=false:r_enabled=true;(pos==0)?jQuerybtl.addClass("l_dis"):jQuerybtl.removeClass("l_dis");(pos==0)?l_enabled=false:l_enabled=true;}
var tBorder=settings.thumbsBorderWidth;var contBorder=settings.galBorderWidth
jQuery(".slideViewer a img").css({border:"0"});if(settings.typo)
{jQuery(this).find("span.typo").each(function(z){jQuery(this).css({marginTop:(pictHeight-jQuery(this).innerHeight()),opacity:settings.typoFullOpacity});});}
jQuery("div#svwp"+j).css({border:settings.galBorderWidth+"px solid "+settings.galBorderColor});jQuery("div#thumbSlider"+j).css({position:"relative",left:contBorder,top:settings.thumbsTopMargin+"px",width:settings.thumbs*thumbsWidth+((settings.thumbsRightMargin*settings.thumbs)-settings.thumbsRightMargin),height:thumbsHeight,textAlign:"center",overflow:"hidden",margin:"0 auto"});jQuery("div#thumbSlider"+j+" ul").css({width:(thumbsWidth*pictEls)+settings.thumbsRightMargin*pictEls,position:"relative",left:"0",top:"0"});jQuery("div#thumbSlider"+j+" ul li").css({marginRight:settings.thumbsRightMargin});jQuery("div#thumbSlider"+j).find("p.tmbrdr").css({width:(thumbsWidth-tBorder*2)+"px",height:(thumbsHeight-tBorder*2)+"px",top:-(thumbsHeight)+"px",border:settings.thumbsBorderWidth+"px solid "+settings.thumbsBorderColor,opacity:settings.thumbsBorderOpacity});jQuery("div#thumbSlider"+j+" a:first p.tmbrdr").css({borderColor:settings.thumbsActiveBorderColor,opacity:settings.thumbsActiveBorderOpacity});var rbttLeftMargin=(pictWidth/2)+(jQuery("div#thumbSlider"+j).width()/2)+settings.thumbsRightMargin+contBorder;var lbttLeftMargin=(pictWidth/2)-(jQuery("div#thumbSlider"+j).width()/2)-(settings.buttonsWidth+settings.thumbsRightMargin)+contBorder;var innerImgH=jQuery("a#right"+j+" span img").attr("height");jQuery("a#left"+j).css({display:"block",textAlign:"center",width:settings.buttonsWidth+"px",height:thumbsHeight+"px",margin:-(thumbsHeight-settings.thumbsTopMargin)+"px 0 0 "+lbttLeftMargin+"px",textDecoration:"none",lineHeight:thumbsHeight+"px",color:settings.buttonsTextColor});jQuery("a#right"+j).css({display:"block",textAlign:"center",width:settings.buttonsWidth+"px",height:thumbsHeight+"px",margin:-(thumbsHeight)+"px 0 0 "+rbttLeftMargin+"px",textDecoration:"none",lineHeight:thumbsHeight+"px",color:settings.buttonsTextColor});jQuery("a#left"+j+" span img").css({margin:Math.round((thumbsHeight/2)-(innerImgH/2))+"px 0 0 0"});jQuery("a#right"+j+" span img").css({margin:Math.round((thumbsHeight/2)-(innerImgH/2))+"px 0 0 0"});authorityMixing();if(settings.autoslide){var i=1;jQuery("div#thumbSlider"+j).everyTime(settings.asTimer,"asld",function(){jQuery(this).find("a").eq(i).trigger("click");if(i==0)
{pos=0;l_enabled=false;jQuery("div#thumbSlider"+j).find("ul:not(:animated)").animate({left:-(thumbsWidth+settings.thumbsRightMargin)*pos},500,settings.easeFunc,function(){authorityMixing();});}
else l_enabled=true;(i%settings.thumbs==0)?jQuery(this).next().next().trigger("click"):null;(i<pictEls-1)?i++:i=0;});jQuery("a#right"+j).bind("mouseup",function(){jQuery(this).prev().prev().stopTime("asld");});jQuery("a#left"+j).bind("mouseup",function(){jQuery(this).prev().stopTime("asld");});jQuery("div#thumbSlider"+j+" a").bind("mouseup",function(){jQuery(this).parent().parent().parent().stopTime("asld");});}
var uiDisplay=(settings.thumbsVis)?"block":"none";jQuery("div#thumbSlider"+j+", a#left"+j+", a#right"+j).wrapAll("<div style='width:"+pictWidth+"px; display: "+uiDisplay+"' id='ui"+j+"'><\/div>");jQuery("div#svwp"+j+", div#ui"+j).wrapAll("<div style='width:"+pictWidth+"px'><\/div>");});(jQuery("div#thumbSlider"+j).width()+(settings.buttonsWidth*2)>=pictWidth)?alert("ALERT: THE THUMBNAILS SLIDER IS TOO WIDE! \nthumbsPercentReduction and/or buttonsWidth needs to be scaled down!"):null;j++;});};if($.browser.msie){var shadow=false;}else{var shadow=true;}
jQuery.ajaxSetup({'beforeSend':function(xhr){xhr.setRequestHeader("Accept","text/javascript")}})
jQuery(document).ready(function($){Cufon.replace('h1#cufon');Cufon.replace('h2#cufon');});$(document).ready(function(){jQuery('.about').accordion({autoheight:false});function initMenu(){$('.productRight .quoteFormHide').hide();$(".addInfo").hide();$('.productRight .quoteForm .quoteBar').click(function(){$(this).next().slideToggle('normal',function(){$(".addInfo").toggle();});});}
initMenu();$('#cancel').click(function(){$('.productRight .quoteForm .quoteBar').trigger('click')
return false;})
$('ul.sf-menu').superfish({delay:300,animation:{opacity:'.8',height:'show'},speed:10,autoArrows:false,dropShadows:shadow});$(".tagFilters").vchecks();$(".colorFilters").cvchecks();$('.imprintEnlarge').colorbox({transition:'elastic',speed:200});$('.contactEnlarge').colorbox({width:"60%",inline:true,href:"#inlineEnlarge",scrolling:false});$("form#bag_submission").validate({submitHandler:function(){$.post($("form#bag_submission").attr("action"),$("form#bag_submission").serialize(),null,"script");return false;}})
$("form#popup_submission").validate({submitHandler:function(){$.post($("form#popup_submission").attr("action"),$("form#popup_submission").serialize(),null,"script");return false;}})
$("form#personal_submission").validate({submitHandler:function(){$.post($("form#personal_submission").attr("action"),$("form#personal_submission").serialize(),null,"script");return false;}})
$(".availColors ul li").hover(function(){$("p.colorLabel").text($(this).attr("title"));},function(){$("p.colorLabel").text("");});$('#checkall').click(function(){$('.tagFilters li :input').each(function(){if($(this).is(':checked')){}
else{$(this).next().trigger('click');}});});$('#uncheckall').click(function(){$('.tagFilters li :input').each(function(){if($(this).is(':checked')){$(this).next().trigger('click');}});});$('.colorToggle').toggle(function(){$('.colorFilters li :input').each(function(){if($(this).is(':checked')){}
else{$(this).next().trigger('click');}
$('.colorToggle p#availLabel').removeClass('off');$('.colorToggle p#availLabel').addClass('on');});},function(){$('.colorFilters li :input').each(function(){if($(this).is(':checked')){$(this).next().trigger('click');}
$('.colorToggle p#availLabel').removeClass('on');$('.colorToggle p#availLabel').addClass('off');});});$('.check_div').click(function(){$(this).prev().trigger('click')})
var block=$(".productBox");block.click(function(){window.location=$(this).find("a:first").attr("href")});block.addClass("clickable");block.hover(function(){window.status=$(this).find("a:first").attr("href")},function(){window.status=""})});$(window).bind("load",function(){$("div.test").slideViewerPro({thumbs:3,testimonial:true,galBorderWidth:0,thumbsBorderOpacity:0,buttonsTextColor:"#000",buttonsWidth:20,thumbsActiveBorderOpacity:0.8,thumbsActiveBorderColor:"#B0D23F",thumbsRightMargin:15,thumbsBorderWidth:2,shuffle:false,thumbsPercentReduction:16,leftButtonInner:"<img src='/images/slide_viewer/arrow_left.jpg' />",rightButtonInner:"<img src='/images/slide_viewer/arrow_right.jpg' />"});});$(window).bind("load",function(){$("div#basic").slideViewerPro({thumbs:4,galBorderWidth:0,thumbsBorderOpacity:0,buttonsTextColor:"#000",buttonsWidth:40,thumbsActiveBorderOpacity:0.8,thumbsActiveBorderColor:"#B0D23F",thumbsRightMargin:15,thumbsBorderWidth:2,shuffle:false,thumbsPercentReduction:15,leftButtonInner:"<img src='/images/slide_viewer/arrow_left.jpg' />",rightButtonInner:"<img src='/images/slide_viewer/arrow_right.jpg' />"});});$(function(){var zIndexNumber=1000;$('.colorFilters li').each(function(){$(this).css('zIndex',zIndexNumber);zIndexNumber-=10;});});