(function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context);},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,userAgent=navigator.userAgent,browserMatch,readyBound=false,readyList=[],DOMContentLoaded,toString=Object.prototype.toString,hasOwnProperty=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,indexOf=Array.prototype.indexOf;jQuery.fn=jQuery.prototype={init:function(selector,context){var match,elem,ret,doc;if(!selector){return this;}
if(selector.nodeType){this.context=this[0]=selector;this.length=1;return this;}
if(selector==="body"&&!context){this.context=document;this[0]=document.body;this.selector="body";this.length=1;return this;}
if(typeof selector==="string"){match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]){doc=(context?context.ownerDocument||context:document);ret=rsingleTag.exec(selector);if(ret){if(jQuery.isPlainObject(context)){selector=[document.createElement(ret[1])];jQuery.fn.attr.call(selector,context,true);}else{selector=[doc.createElement(ret[1])];}}else{ret=buildFragment([match[1]],[doc]);selector=(ret.cacheable?ret.fragment.cloneNode(true):ret.fragment).childNodes;}
return jQuery.merge(this,selector);}else{elem=document.getElementById(match[2]);if(elem){if(elem.id!==match[2]){return rootjQuery.find(selector);}
this.length=1;this[0]=elem;}
this.context=document;this.selector=selector;return this;}}else if(!context&&/^\w+$/.test(selector)){this.selector=selector;this.context=document;selector=document.getElementsByTagName(selector);return jQuery.merge(this,selector);}else if(!context||context.jquery){return(context||rootjQuery).find(selector);}else{return jQuery(context).find(selector);}}else if(jQuery.isFunction(selector)){return rootjQuery.ready(selector);}
if(selector.selector!==undefined){this.selector=selector.selector;this.context=selector.context;}
return jQuery.makeArray(selector,this);},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length;},toArray:function(){return slice.call(this,0);},get:function(num){return num==null?this.toArray():(num<0?this.slice(num)[0]:this[num]);},pushStack:function(elems,name,selector){var ret=jQuery();if(jQuery.isArray(elems)){push.apply(ret,elems);}else{jQuery.merge(ret,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;},each:function(callback,args){return jQuery.each(this,callback,args);},ready:function(fn){jQuery.bindReady();if(jQuery.isReady){fn.call(document,jQuery);}else if(readyList){readyList.push(fn);}
return this;},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1);},first:function(){return this.eq(0);},last:function(){return this.eq(-1);},slice:function(){return this.pushStack(slice.apply(this,arguments),"slice",slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},end:function(){return this.prevObject||jQuery(null);},push:push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options,name,src,copy;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(name in options){src=target[name];copy=options[name];if(target===copy){continue;}
if(deep&&copy&&(jQuery.isPlainObject(copy)||jQuery.isArray(copy))){var clone=src&&(jQuery.isPlainObject(src)||jQuery.isArray(src))?src:jQuery.isArray(copy)?[]:{};target[name]=jQuery.extend(deep,clone,copy);}else if(copy!==undefined){target[name]=copy;}}}}
return target;};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep){window.jQuery=_jQuery;}
return jQuery;},isReady:false,ready:function(){if(!jQuery.isReady){if(!document.body){return setTimeout(jQuery.ready,13);}
jQuery.isReady=true;if(readyList){var fn,i=0;while((fn=readyList[i++])){fn.call(document,jQuery);}
readyList=null;}
if(jQuery.fn.triggerHandler){jQuery(document).triggerHandler("ready");}}},bindReady:function(){if(readyBound){return;}
readyBound=true;if(document.readyState==="complete"){return jQuery.ready();}
if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",jQuery.ready,false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",jQuery.ready);var toplevel=false;try{toplevel=window.frameElement==null;}catch(e){}
if(document.documentElement.doScroll&&toplevel){doScrollCheck();}}},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isPlainObject:function(obj){if(!obj||toString.call(obj)!=="[object Object]"||obj.nodeType||obj.setInterval){return false;}
if(obj.constructor&&!hasOwnProperty.call(obj,"constructor")&&!hasOwnProperty.call(obj.constructor.prototype,"isPrototypeOf")){return false;}
var key;for(key in obj){}
return key===undefined||hasOwnProperty.call(obj,key);},isEmptyObject:function(obj){for(var name in obj){return false;}
return true;},error:function(msg){throw msg;},parseJSON:function(data){if(typeof data!=="string"||!data){return null;}
data=jQuery.trim(data);if(/^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){return window.JSON&&window.JSON.parse?window.JSON.parse(data):(new Function("return "+data))();}else{jQuery.error("Invalid JSON: "+data);}},noop:function(){},globalEval:function(data){if(data&&rnotwhite.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,isObj=length===undefined||jQuery.isFunction(object);if(args){if(isObj){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(isObj){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;},trim:function(text){return(text||"").replace(rtrim,"");},makeArray:function(array,results){var ret=results||[];if(array!=null){if(array.length==null||typeof array==="string"||jQuery.isFunction(array)||(typeof array!=="function"&&array.setInterval)){push.call(ret,array);}else{jQuery.merge(ret,array);}}
return ret;},inArray:function(elem,array){if(array.indexOf){return array.indexOf(elem);}
for(var i=0,length=array.length;i<length;i++){if(array[i]===elem){return i;}}
return-1;},merge:function(first,second){var i=first.length,j=0;if(typeof second.length==="number"){for(var l=second.length;j<l;j++){first[i++]=second[j];}}else{while(second[j]!==undefined){first[i++]=second[j++];}}
first.length=i;return first;},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,arg){var ret=[],value;for(var i=0,length=elems.length;i<length;i++){value=callback(elems[i],i,arg);if(value!=null){ret[ret.length]=value;}}
return ret.concat.apply([],ret);},guid:1,proxy:function(fn,proxy,thisObject){if(arguments.length===2){if(typeof proxy==="string"){thisObject=fn;fn=thisObject[proxy];proxy=undefined;}else if(proxy&&!jQuery.isFunction(proxy)){thisObject=proxy;proxy=undefined;}}
if(!proxy&&fn){proxy=function(){return fn.apply(thisObject||this,arguments);};}
if(fn){proxy.guid=fn.guid=fn.guid||proxy.guid||jQuery.guid++;}
return proxy;},uaMatch:function(ua){ua=ua.toLowerCase();var match=/(webkit)[ \/]([\w.]+)/.exec(ua)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(ua)||/(msie) ([\w.]+)/.exec(ua)||!/compatible/.test(ua)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(ua)||[];return{browser:match[1]||"",version:match[2]||"0"};},browser:{}});browserMatch=jQuery.uaMatch(userAgent);if(browserMatch.browser){jQuery.browser[browserMatch.browser]=true;jQuery.browser.version=browserMatch.version;}
if(jQuery.browser.webkit){jQuery.browser.safari=true;}
if(indexOf){jQuery.inArray=function(elem,array){return indexOf.call(array,elem);};}
rootjQuery=jQuery(document);if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);jQuery.ready();};}else if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);jQuery.ready();}};}
function doScrollCheck(){if(jQuery.isReady){return;}
try{document.documentElement.doScroll("left");}catch(error){setTimeout(doScrollCheck,1);return;}
jQuery.ready();}
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 access(elems,key,value,exec,fn,pass){var length=elems.length;if(typeof key==="object"){for(var k in key){access(elems,k,key[k],exec,fn,value);}
return elems;}
if(value!==undefined){exec=!pass&&exec&&jQuery.isFunction(value);for(var i=0;i<length;i++){fn(elems[i],key,exec?value.call(elems[i],i,fn(elems[i],key)):value,pass);}
return elems;}
return length?fn(elems[0],key):undefined;}
function now(){return(new Date).getTime();}
(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+now();div.style.display="none";div.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";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,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:/^0.55$/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:div.getElementsByTagName("input")[0].value==="on",optSelected:document.createElement("select").appendChild(document.createElement("option")).selected,parentNode:div.removeChild(div.appendChild(document.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,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];}
try{delete script.test;}catch(e){jQuery.support.deleteExpando=false;}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function click(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",click);});div.cloneNode(true).fireEvent("onclick");}
div=document.createElement("div");div.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var fragment=document.createDocumentFragment();fragment.appendChild(div.firstChild);jQuery.support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;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';div=null;});var eventSupported=function(eventName){var el=document.createElement("div");eventName="on"+eventName;var isSupported=(eventName in el);if(!isSupported){el.setAttribute(eventName,"return;");isSupported=typeof el[eventName]==="function";}
el=null;return isSupported;};jQuery.support.submitBubbles=eventSupported("submit");jQuery.support.changeBubbles=eventSupported("change");root=script=div=all=a=null;})();jQuery.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({cache:{},expando:expando,noData:{"embed":true,"object":true,"applet":true},data:function(elem,name,data){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return;}
elem=elem==window?windowData:elem;var id=elem[expando],cache=jQuery.cache,thisCache;if(!id&&typeof name==="string"&&data===undefined){return null;}
if(!id){id=++uuid;}
if(typeof name==="object"){elem[expando]=id;thisCache=cache[id]=jQuery.extend(true,{},name);}else if(!cache[id]){elem[expando]=id;cache[id]={};}
thisCache=cache[id];if(data!==undefined){thisCache[name]=data;}
return typeof name==="string"?thisCache[name]:thisCache;},removeData:function(elem,name){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return;}
elem=elem==window?windowData:elem;var id=elem[expando],cache=jQuery.cache,thisCache=cache[id];if(name){if(thisCache){delete thisCache[name];if(jQuery.isEmptyObject(thisCache)){jQuery.removeData(elem);}}}else{if(jQuery.support.deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}
delete cache[id];}}});jQuery.fn.extend({data:function(key,value){if(typeof key==="undefined"&&this.length){return jQuery.data(this[0]);}else if(typeof key==="object"){return this.each(function(){jQuery.data(this,key);});}
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);});}});jQuery.extend({queue:function(elem,type,data){if(!elem){return;}
type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!data){return q||[];}
if(!q||jQuery.isArray(data)){q=jQuery.data(elem,type,jQuery.makeArray(data));}else{q.push(data);}
return q;},dequeue:function(elem,type){type=type||"fx";var queue=jQuery.queue(elem,type),fn=queue.shift();if(fn==="inprogress"){fn=queue.shift();}
if(fn){if(type==="fx"){queue.unshift("inprogress");}
fn.call(elem,function(){jQuery.dequeue(elem,type);});}}});jQuery.fn.extend({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(i,elem){var queue=jQuery.queue(this,type,data);if(type==="fx"&&queue[0]!=="inprogress"){jQuery.dequeue(this,type);}});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});},delay:function(time,type){time=jQuery.fx?jQuery.fx.speeds[time]||time:time;type=type||"fx";return this.queue(type,function(){var elem=this;setTimeout(function(){jQuery.dequeue(elem,type);},time);});},clearQueue:function(type){return this.queue(type||"fx",[]);}});var rclass=/[\n\t]/g,rspace=/\s+/,rreturn=/\r/g,rspecialurl=/href|src|style/,rtype=/(button|input)/i,rfocusable=/(button|input|object|select|textarea)/i,rclickable=/^(a|area)$/i,rradiocheck=/radio|checkbox/;jQuery.fn.extend({attr:function(name,value){return access(this,name,value,true,jQuery.attr);},removeAttr:function(name,fn){return this.each(function(){jQuery.attr(this,name,"");if(this.nodeType===1){this.removeAttribute(name);}});},addClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.addClass(value.call(this,i,self.attr("class")));});}
if(value&&typeof value==="string"){var classNames=(value||"").split(rspace);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1){if(!elem.className){elem.className=value;}else{var className=" "+elem.className+" ",setClass=elem.className;for(var c=0,cl=classNames.length;c<cl;c++){if(className.indexOf(" "+classNames[c]+" ")<0){setClass+=" "+classNames[c];}}
elem.className=jQuery.trim(setClass);}}}}
return this;},removeClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.removeClass(value.call(this,i,self.attr("class")));});}
if((value&&typeof value==="string")||value===undefined){var classNames=(value||"").split(rspace);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1&&elem.className){if(value){var className=(" "+elem.className+" ").replace(rclass," ");for(var c=0,cl=classNames.length;c<cl;c++){className=className.replace(" "+classNames[c]+" "," ");}
elem.className=jQuery.trim(className);}else{elem.className="";}}}}
return this;},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.toggleClass(value.call(this,i,self.attr("class"),stateVal),stateVal);});}
return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(rspace);while((className=classNames[i++])){state=isBool?state:!self.hasClass(className);self[state?"addClass":"removeClass"](className);}}else if(type==="undefined"||type==="boolean"){if(this.className){jQuery.data(this,"__className__",this.className);}
this.className=this.className||value===false?"":jQuery.data(this,"__className__")||"";}});},hasClass:function(selector){var className=" "+selector+" ";for(var i=0,l=this.length;i<l;i++){if((" "+this[i].className+" ").replace(rclass," ").indexOf(className)>-1){return true;}}
return false;},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;}
if(rradiocheck.test(elem.type)&&!jQuery.support.checkOn){return elem.getAttribute("value")===null?"on":elem.value;}
return(elem.value||"").replace(rreturn,"");}
return undefined;}
var isFunction=jQuery.isFunction(value);return this.each(function(i){var self=jQuery(this),val=value;if(this.nodeType!==1){return;}
if(isFunction){val=value.call(this,i,self.val());}
if(typeof val==="number"){val+="";}
if(jQuery.isArray(val)&&rradiocheck.test(this.type)){this.checked=jQuery.inArray(self.val(),val)>=0;}else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(val);jQuery("option",this).each(function(){this.selected=jQuery.inArray(jQuery(this).val(),values)>=0;});if(!values.length){this.selectedIndex=-1;}}else{this.value=val;}});}});jQuery.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(elem,name,value,pass){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
if(pass&&name in jQuery.attrFn){return jQuery(elem)[name](value);}
var notxml=elem.nodeType!==1||!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.nodeType===1){var special=rspecialurl.test(name);if(name==="selected"&&!jQuery.support.optSelected){var parent=elem.parentNode;if(parent){parent.selectedIndex;if(parent.parentNode){parent.parentNode.selectedIndex;}}}
if(name in elem&&notxml&&!special){if(set){if(name==="type"&&rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("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:rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name==="style"){if(set){elem.style.cssText=""+value;}
return elem.style.cssText;}
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;}
return jQuery.style(elem,name,value);}});var rnamespaces=/\.(.*)$/,fcleanup=function(nm){return nm.replace(/[^\w\s\.\|`]/g,function(ch){return"\\"+ch;});};jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return;}
if(elem.setInterval&&(elem!==window&&!elem.frameElement)){elem=window;}
var handleObjIn,handleObj;if(handler.handler){handleObjIn=handler;handler=handleObjIn.handler;}
if(!handler.guid){handler.guid=jQuery.guid++;}
var elemData=jQuery.data(elem);if(!elemData){return;}
var events=elemData.events=elemData.events||{},eventHandle=elemData.handle,eventHandle;if(!eventHandle){elemData.handle=eventHandle=function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined;};}
eventHandle.elem=elem;types=types.split(" ");var type,i=0,namespaces;while((type=types[i++])){handleObj=handleObjIn?jQuery.extend({},handleObjIn):{handler:handler,data:data};if(type.indexOf(".")>-1){namespaces=type.split(".");type=namespaces.shift();handleObj.namespace=namespaces.slice(0).sort().join(".");}else{namespaces=[];handleObj.namespace="";}
handleObj.type=type;handleObj.guid=handler.guid;var handlers=events[type],special=jQuery.event.special[type]||{};if(!handlers){handlers=events[type]=[];if(!special.setup||special.setup.call(elem,data,namespaces,eventHandle)===false){if(elem.addEventListener){elem.addEventListener(type,eventHandle,false);}else if(elem.attachEvent){elem.attachEvent("on"+type,eventHandle);}}}
if(special.add){special.add.call(elem,handleObj);if(!handleObj.handler.guid){handleObj.handler.guid=handler.guid;}}
handlers.push(handleObj);jQuery.event.global[type]=true;}
elem=null;},global:{},remove:function(elem,types,handler,pos){if(elem.nodeType===3||elem.nodeType===8){return;}
var ret,type,fn,i=0,all,namespaces,namespace,special,eventType,handleObj,origType,elemData=jQuery.data(elem),events=elemData&&elemData.events;if(!elemData||!events){return;}
if(types&&types.type){handler=types.handler;types=types.type;}
if(!types||typeof types==="string"&&types.charAt(0)==="."){types=types||"";for(type in events){jQuery.event.remove(elem,type+types);}
return;}
types=types.split(" ");while((type=types[i++])){origType=type;handleObj=null;all=type.indexOf(".")<0;namespaces=[];if(!all){namespaces=type.split(".");type=namespaces.shift();namespace=new RegExp("(^|\\.)"+
jQuery.map(namespaces.slice(0).sort(),fcleanup).join("\\.(?:.*\\.)?")+"(\\.|$)")}
eventType=events[type];if(!eventType){continue;}
if(!handler){for(var j=0;j<eventType.length;j++){handleObj=eventType[j];if(all||namespace.test(handleObj.namespace)){jQuery.event.remove(elem,origType,handleObj.handler,j);eventType.splice(j--,1);}}
continue;}
special=jQuery.event.special[type]||{};for(var j=pos||0;j<eventType.length;j++){handleObj=eventType[j];if(handler.guid===handleObj.guid){if(all||namespace.test(handleObj.namespace)){if(pos==null){eventType.splice(j--,1);}
if(special.remove){special.remove.call(elem,handleObj);}}
if(pos!=null){break;}}}
if(eventType.length===0||pos!=null&&eventType.length===1){if(!special.teardown||special.teardown.call(elem,namespaces)===false){removeEvent(elem,type,elemData.handle);}
ret=null;delete events[type];}}
if(jQuery.isEmptyObject(events)){var handle=elemData.handle;if(handle){handle.elem=null;}
delete elemData.events;delete elemData.handle;if(jQuery.isEmptyObject(elemData)){jQuery.removeData(elem);}}},trigger:function(event,data,elem){var type=event.type||event,bubbling=arguments[3];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(jQuery.event.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);}
var parent=elem.parentNode||elem.ownerDocument;try{if(!(elem&&elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()])){if(elem["on"+type]&&elem["on"+type].apply(elem,data)===false){event.result=false;}}}catch(e){}
if(!event.isPropagationStopped()&&parent){jQuery.event.trigger(event,data,parent,true);}else if(!event.isDefaultPrevented()){var target=event.target,old,isClick=jQuery.nodeName(target,"a")&&type==="click",special=jQuery.event.special[type]||{};if((!special._default||special._default.call(elem,event)===false)&&!isClick&&!(target&&target.nodeName&&jQuery.noData[target.nodeName.toLowerCase()])){try{if(target[type]){old=target["on"+type];if(old){target["on"+type]=null;}
jQuery.event.triggered=true;target[type]();}}catch(e){}
if(old){target["on"+type]=old;}
jQuery.event.triggered=false;}}},handle:function(event){var all,handlers,namespaces,namespace,events;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;all=event.type.indexOf(".")<0&&!event.exclusive;if(!all){namespaces=event.type.split(".");event.type=namespaces.shift();namespace=new RegExp("(^|\\.)"+namespaces.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)");}
var events=jQuery.data(this,"events"),handlers=events[event.type];if(events&&handlers){handlers=handlers.slice(0);for(var j=0,l=handlers.length;j<l;j++){var handleObj=handlers[j];if(all||namespace.test(handleObj.namespace)){event.handler=handleObj.handler;event.data=handleObj.data;event.handleObj=handleObj;var ret=handleObj.handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped()){break;}}}}
return event.result;},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY 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&&doc.clientLeft||body&&body.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.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!==undefined){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));}
return event;},guid:1E8,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(handleObj){jQuery.event.add(this,handleObj.origType,jQuery.extend({},handleObj,{handler:liveHandler}));},remove:function(handleObj){var remove=true,type=handleObj.origType.replace(rnamespaces,"");jQuery.each(jQuery.data(this,"events").live||[],function(){if(type===this.origType.replace(rnamespaces,"")){remove=false;return false;}});if(remove){jQuery.event.remove(this,handleObj.origType,liveHandler);}}},beforeunload:{setup:function(data,namespaces,eventHandle){if(this.setInterval){this.onbeforeunload=eventHandle;}
return false;},teardown:function(namespaces,eventHandle){if(this.onbeforeunload===eventHandle){this.onbeforeunload=null;}}}}};var removeEvent=document.removeEventListener?function(elem,type,handle){elem.removeEventListener(type,handle,false);}:function(elem,type,handle){elem.detachEvent("on"+type,handle);};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;try{while(parent&&parent!==this){parent=parent.parentNode;}
if(parent!==this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}}catch(e){}},delegate=function(event){event.type=event.data;jQuery.event.handle.apply(this,arguments);};jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={setup:function(data){jQuery.event.add(this,fix,data&&data.selector?delegate:withinElement,orig);},teardown:function(data){jQuery.event.remove(this,fix,data&&data.selector?delegate:withinElement);}};});if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(data,namespaces){if(this.nodeName.toLowerCase()!=="form"){jQuery.event.add(this,"click.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){return trigger("submit",this,arguments);}});jQuery.event.add(this,"keypress.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){return trigger("submit",this,arguments);}});}else{return false;}},teardown:function(namespaces){jQuery.event.remove(this,".specialSubmit");}};}
if(!jQuery.support.changeBubbles){var formElems=/textarea|input|select/i,changeFilters,getVal=function(elem){var type=elem.type,val=elem.value;if(type==="radio"||type==="checkbox"){val=elem.checked;}else if(type==="select-multiple"){val=elem.selectedIndex>-1?jQuery.map(elem.options,function(elem){return elem.selected;}).join("-"):"";}else if(elem.nodeName.toLowerCase()==="select"){val=elem.selectedIndex;}
return val;},testChange=function testChange(e){var elem=e.target,data,val;if(!formElems.test(elem.nodeName)||elem.readOnly){return;}
data=jQuery.data(elem,"_change_data");val=getVal(elem);if(e.type!=="focusout"||elem.type!=="radio"){jQuery.data(elem,"_change_data",val);}
if(data===undefined||val===data){return;}
if(data!=null||val){e.type="change";return jQuery.event.trigger(e,arguments[1],elem);}};jQuery.event.special.change={filters:{focusout:testChange,click:function(e){var elem=e.target,type=elem.type;if(type==="radio"||type==="checkbox"||elem.nodeName.toLowerCase()==="select"){return testChange.call(this,e);}},keydown:function(e){var elem=e.target,type=elem.type;if((e.keyCode===13&&elem.nodeName.toLowerCase()!=="textarea")||(e.keyCode===32&&(type==="checkbox"||type==="radio"))||type==="select-multiple"){return testChange.call(this,e);}},beforeactivate:function(e){var elem=e.target;jQuery.data(elem,"_change_data",getVal(elem));}},setup:function(data,namespaces){if(this.type==="file"){return false;}
for(var type in changeFilters){jQuery.event.add(this,type+".specialChange",changeFilters[type]);}
return formElems.test(this.nodeName);},teardown:function(namespaces){jQuery.event.remove(this,".specialChange");return formElems.test(this.nodeName);}};changeFilters=jQuery.event.special.change.filters;}
function trigger(type,elem,args){args[0].type=type;return jQuery.event.handle.apply(elem,args);}
if(document.addEventListener){jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){jQuery.event.special[fix]={setup:function(){this.addEventListener(orig,handler,true);},teardown:function(){this.removeEventListener(orig,handler,true);}};function handler(e){e=jQuery.event.fix(e);e.type=fix;return jQuery.event.handle.call(this,e);}});}
jQuery.each(["bind","one"],function(i,name){jQuery.fn[name]=function(type,data,fn){if(typeof type==="object"){for(var key in type){this[name](key,data,type[key],fn);}
return this;}
if(jQuery.isFunction(data)){fn=data;data=undefined;}
var handler=name==="one"?jQuery.proxy(fn,function(event){jQuery(this).unbind(event,handler);return fn.apply(this,arguments);}):fn;if(type==="unload"&&name!=="one"){this.one(type,data,fn);}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.add(this[i],type,handler,data);}}
return this;};});jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key]);}}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.remove(this[i],type,fn);}}
return this;},delegate:function(selector,types,data,fn){return this.live(types,data,fn,selector);},undelegate:function(selector,types,fn){if(arguments.length===0){return this.unbind("live");}else{return this.die(types,null,fn,selector);}},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.proxy(fn,args[i++]);}
return this.click(jQuery.proxy(fn,function(event){var lastToggle=(jQuery.data(this,"lastToggle"+fn.guid)||0)%i;jQuery.data(this,"lastToggle"+fn.guid,lastToggle+1);event.preventDefault();return args[lastToggle].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver);}});var liveMap={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};jQuery.each(["live","die"],function(i,name){jQuery.fn[name]=function(types,data,fn,origSelector){var type,i=0,match,namespaces,preType,selector=origSelector||this.selector,context=origSelector?this:jQuery(this.context);if(jQuery.isFunction(data)){fn=data;data=undefined;}
types=(types||"").split(" ");while((type=types[i++])!=null){match=rnamespaces.exec(type);namespaces="";if(match){namespaces=match[0];type=type.replace(rnamespaces,"");}
if(type==="hover"){types.push("mouseenter"+namespaces,"mouseleave"+namespaces);continue;}
preType=type;if(type==="focus"||type==="blur"){types.push(liveMap[type]+namespaces);type=type+namespaces;}else{type=(liveMap[type]||type)+namespaces;}
if(name==="live"){context.each(function(){jQuery.event.add(this,liveConvert(type,selector),{data:data,selector:selector,handler:fn,origType:type,origHandler:fn,preType:preType});});}else{context.unbind(liveConvert(type,selector),fn);}}
return this;}});function liveHandler(event){var stop,elems=[],selectors=[],args=arguments,related,match,handleObj,elem,j,i,l,data,events=jQuery.data(this,"events");if(event.liveFired===this||!events||!events.live||event.button&&event.type==="click"){return;}
event.liveFired=this;var live=events.live.slice(0);for(j=0;j<live.length;j++){handleObj=live[j];if(handleObj.origType.replace(rnamespaces,"")===event.type){selectors.push(handleObj.selector);}else{live.splice(j--,1);}}
match=jQuery(event.target).closest(selectors,event.currentTarget);for(i=0,l=match.length;i<l;i++){for(j=0;j<live.length;j++){handleObj=live[j];if(match[i].selector===handleObj.selector){elem=match[i].elem;related=null;if(handleObj.preType==="mouseenter"||handleObj.preType==="mouseleave"){related=jQuery(event.relatedTarget).closest(handleObj.selector)[0];}
if(!related||related!==elem){elems.push({elem:elem,handleObj:handleObj});}}}}
for(i=0,l=elems.length;i<l;i++){match=elems[i];event.currentTarget=match.elem;event.data=match.handleObj.data;event.handleObj=match.handleObj;if(match.handleObj.origHandler.apply(match.elem,args)===false){stop=false;break;}}
return stop;}
function liveConvert(type,selector){return"live."+(type&&type!=="*"?type+".":"")+selector.replace(/\./g,"`").replace(/ /g,"&");}
jQuery.each(("blur focus focusin focusout 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);};if(jQuery.attrFn){jQuery.attrFn[name]=true;}});if(window.attachEvent&&!window.addEventListener){window.attachEvent("onunload",function(){for(var id in jQuery.cache){if(jQuery.cache[id].handle){try{jQuery.event.remove(jQuery.cache[id].handle.elem);}catch(e){}}}});}
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;[0,0].sort(function(){baseHasDuplicate=false;return 0;});var Sizzle=function(selector,context,results,seed){results=results||[];var origContext=context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[];}
if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,extra,prune=true,contextXML=isXML(context),soFar=selector;while((chunker.exec(""),m=chunker.exec(soFar))!==null){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];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{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}
if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):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,contextXML);}}else{checkSet=parts=[];}}
if(!checkSet){checkSet=set;}
if(!checkSet){Sizzle.error(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context&&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,origContext,results,seed);Sizzle.uniqueSort(results);}
return results;};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;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.leftMatch[type].exec(expr))){var left=match[1];match.splice(1,1);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.leftMatch[type].exec(expr))!=null&&match[2]){var filter=Expr.filter[type],found,item,left=match[1];anyFound=false;match.splice(1,1);if(left.substr(left.length-1)==="\\"){continue;}
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){Sizzle.error(expr);}else{break;}}
old=expr;}
return curLoop;};Sizzle.error=function(msg){throw"Syntax error, unrecognized expression: "+msg;};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\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag){part=part.toLowerCase();}
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.toLowerCase()===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===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(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();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){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+" ").replace(/[\t\n]/g," ").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){return match[1].toLowerCase();},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((chunker.exec(match[3])||"").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.toLowerCase()==="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||getText([elem])||"").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;}else{Sizzle.error("Syntax error, unrecognized expression: "+name);}},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.toLowerCase()===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]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source.replace(/\\(\d+)/g,function(all,num){return"\\"+(num-0+1);}));}
var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes,0)[0].nodeType;}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){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true;}
return a.compareDocumentPosition?-1:1;}
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){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true;}
return a.sourceIndex?-1:1;}
var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true;}
return a.ownerDocument?-1:1;}
var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.setStart(a,0);aRange.setEnd(a,0);bRange.setStart(b,0);bRange.setEnd(b,0);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
function getText(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue;}else if(elem.nodeType!==8){ret+=getText(elem.childNodes);}}
return ret;}
(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();form.innerHTML="<a 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);root=form=null;})();(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);};}
div=null;})();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);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();}
(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||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]);}};div=null;})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){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.toLowerCase()===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){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){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};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.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;jQuery.unique=Sizzle.uniqueSort;jQuery.text=getText;jQuery.isXMLDoc=isXML;jQuery.contains=contains;return;window.Sizzle=Sizzle;})();var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,slice=Array.prototype.slice;var winnow=function(elements,qualifier,keep){if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){return!!qualifier.call(elem,i,elem)===keep;});}else if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return(elem===qualifier)===keep;});}else if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1;});if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep);}else{qualifier=jQuery.filter(qualifier,filtered);}}
return jQuery.grep(elements,function(elem,i){return(jQuery.inArray(elem,qualifier)>=0)===keep;});};jQuery.fn.extend({find:function(selector){var ret=this.pushStack("","find",selector),length=0;for(var i=0,l=this.length;i<l;i++){length=ret.length;jQuery.find(selector,this[i],ret);if(i>0){for(var n=length;n<ret.length;n++){for(var r=0;r<length;r++){if(ret[r]===ret[n]){ret.splice(n--,1);break;}}}}}
return ret;},has:function(target){var targets=jQuery(target);return this.filter(function(){for(var i=0,l=targets.length;i<l;i++){if(jQuery.contains(this,targets[i])){return true;}}});},not:function(selector){return this.pushStack(winnow(this,selector,false),"not",selector);},filter:function(selector){return this.pushStack(winnow(this,selector,true),"filter",selector);},is:function(selector){return!!selector&&jQuery.filter(selector,this).length>0;},closest:function(selectors,context){if(jQuery.isArray(selectors)){var ret=[],cur=this[0],match,matches={},selector;if(cur&&selectors.length){for(var i=0,l=selectors.length;i<l;i++){selector=selectors[i];if(!matches[selector]){matches[selector]=jQuery.expr.match.POS.test(selector)?jQuery(selector,context||this.context):selector;}}
while(cur&&cur.ownerDocument&&cur!==context){for(selector in matches){match=matches[selector];if(match.jquery?match.index(cur)>-1:jQuery(cur).is(match)){ret.push({selector:selector,elem:cur});delete matches[selector];}}
cur=cur.parentNode;}}
return ret;}
var pos=jQuery.expr.match.POS.test(selectors)?jQuery(selectors,context||this.context):null;return this.map(function(i,cur){while(cur&&cur.ownerDocument&&cur!==context){if(pos?pos.index(cur)>-1:jQuery(cur).is(selectors)){return cur;}
cur=cur.parentNode;}
return null;});},index:function(elem){if(!elem||typeof elem==="string"){return jQuery.inArray(this[0],elem?jQuery(elem):this.parent().children());}
return jQuery.inArray(elem.jquery?elem[0]:elem,this);},add:function(selector,context){var set=typeof selector==="string"?jQuery(selector,context||this.context):jQuery.makeArray(selector),all=jQuery.merge(this.get(),set);return this.pushStack(isDisconnected(set[0])||isDisconnected(all[0])?all:jQuery.unique(all));},andSelf:function(){return this.add(this.prevObject);}});function isDisconnected(node){return!node||!node.parentNode||node.parentNode.nodeType===11;}
jQuery.each({parent:function(elem){var parent=elem.parentNode;return parent&&parent.nodeType!==11?parent:null;},parents:function(elem){return jQuery.dir(elem,"parentNode");},parentsUntil:function(elem,i,until){return jQuery.dir(elem,"parentNode",until);},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");},nextUntil:function(elem,i,until){return jQuery.dir(elem,"nextSibling",until);},prevUntil:function(elem,i,until){return jQuery.dir(elem,"previousSibling",until);},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(until,selector){var ret=jQuery.map(this,fn,until);if(!runtil.test(name)){selector=until;}
if(selector&&typeof selector==="string"){ret=jQuery.filter(selector,ret);}
ret=this.length>1?jQuery.unique(ret):ret;if((this.length>1||rmultiselector.test(selector))&&rparentsprev.test(name)){ret=ret.reverse();}
return this.pushStack(ret,name,slice.call(arguments).join(","));};});jQuery.extend({filter:function(expr,elems,not){if(not){expr=":not("+expr+")";}
return jQuery.find.matches(expr,elems);},dir:function(elem,dir,until){var matched=[],cur=elem[dir];while(cur&&cur.nodeType!==9&&(until===undefined||cur.nodeType!==1||!jQuery(cur).is(until))){if(cur.nodeType===1){matched.push(cur);}
cur=cur[dir];}
return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]){if(cur.nodeType===1&&++num===result){break;}}
return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType===1&&n!==elem){r.push(n);}}
return r;}});var rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/(<([\w:]+)[^>]*?)\/>/g,rselfClosing=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&#?\w+;/,rnocache=/<script|<object|<embed|<option|<style/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,fcloseTag=function(all,front,tag){return rselfClosing.test(tag)?all:front+"></"+tag+">";},wrapMap={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};wrapMap.optgroup=wrapMap.option;wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead;wrapMap.th=wrapMap.td;if(!jQuery.support.htmlSerialize){wrapMap._default=[1,"div<div>","</div>"];}
jQuery.fn.extend({text:function(text){if(jQuery.isFunction(text)){return this.each(function(i){var self=jQuery(this);self.text(text.call(this,i,self.text()));});}
if(typeof text!=="object"&&text!==undefined){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));}
return jQuery.text(this);},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i));});}
if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){wrap.insertBefore(this[0]);}
wrap.map(function(){var elem=this;while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild;}
return elem;}).append(this);}
return this;},wrapInner:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapInner(html.call(this,i));});}
return this.each(function(){var self=jQuery(this),contents=self.contents();if(contents.length){contents.wrapAll(html);}else{self.append(html);}});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes);}}).end();},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(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});}else if(arguments.length){var set=jQuery(arguments[0]);set.push.apply(set,this.toArray());return this.pushStack(set,"before",arguments);}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});}else if(arguments.length){var set=this.pushStack(this,"after",arguments);set.push.apply(set,jQuery(arguments[0]).toArray());return set;}},remove:function(selector,keepData){for(var i=0,elem;(elem=this[i])!=null;i++){if(!selector||jQuery.filter(selector,[elem]).length){if(!keepData&&elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));jQuery.cleanData([elem]);}
if(elem.parentNode){elem.parentNode.removeChild(elem);}}}
return this;},empty:function(){for(var i=0,elem;(elem=this[i])!=null;i++){if(elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));}
while(elem.firstChild){elem.removeChild(elem.firstChild);}}
return this;},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML,ownerDocument=this.ownerDocument;if(!html){var div=ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(rinlinejQuery,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(rleadingWhitespace,"")],ownerDocument)[0];}else{return this.cloneNode(true);}});if(events===true){cloneCopyEvent(this,ret);cloneCopyEvent(this.find("*"),ret.find("*"));}
return ret;},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null;}else if(typeof value==="string"&&!rnocache.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,fcloseTag);try{for(var i=0,l=this.length;i<l;i++){if(this[i].nodeType===1){jQuery.cleanData(this[i].getElementsByTagName("*"));this[i].innerHTML=value;}}}catch(e){this.empty().append(value);}}else if(jQuery.isFunction(value)){this.each(function(i){var self=jQuery(this),old=self.html();self.empty().append(function(){return value.call(this,i,old);});});}else{this.empty().append(value);}
return this;},replaceWith:function(value){if(this[0]&&this[0].parentNode){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this),old=self.html();self.replaceWith(value.call(this,i,old));});}
if(typeof value!=="string"){value=jQuery(value).detach();}
return this.each(function(){var next=this.nextSibling,parent=this.parentNode;jQuery(this).remove();if(next){jQuery(next).before(value);}else{jQuery(parent).append(value);}});}else{return this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value);}},detach:function(selector){return this.remove(selector,true);},domManip:function(args,table,callback){var results,first,value=args[0],scripts=[],fragment,parent;if(!jQuery.support.checkClone&&arguments.length===3&&typeof value==="string"&&rchecked.test(value)){return this.each(function(){jQuery(this).domManip(args,table,callback,true);});}
if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);args[0]=value.call(this,i,table?self.html():undefined);self.domManip(args,table,callback);});}
if(this[0]){parent=value&&value.parentNode;if(jQuery.support.parentNode&&parent&&parent.nodeType===11&&parent.childNodes.length===this.length){results={fragment:parent};}else{results=buildFragment(args,this,scripts);}
fragment=results.fragment;if(fragment.childNodes.length===1){first=fragment=fragment.firstChild;}else{first=fragment.firstChild;}
if(first){table=table&&jQuery.nodeName(first,"tr");for(var i=0,l=this.length;i<l;i++){callback.call(table?root(this[i],first):this[i],i>0||results.cacheable||this.length>1?fragment.cloneNode(true):fragment);}}
if(scripts.length){jQuery.each(scripts,evalScript);}}
return this;function root(elem,cur){return jQuery.nodeName(elem,"table")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}});function cloneCopyEvent(orig,ret){var i=0;ret.each(function(){if(this.nodeName!==(orig[i]&&orig[i].nodeName)){return;}
var oldData=jQuery.data(orig[i++]),curData=jQuery.data(this,oldData),events=oldData&&oldData.events;if(events){delete curData.handle;curData.events={};for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}}});}
function buildFragment(args,nodes,scripts){var fragment,cacheable,cacheresults,doc=(nodes&&nodes[0]?nodes[0].ownerDocument||nodes[0]:document);if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&doc===document&&!rnocache.test(args[0])&&(jQuery.support.checkClone||!rchecked.test(args[0]))){cacheable=true;cacheresults=jQuery.fragments[args[0]];if(cacheresults){if(cacheresults!==1){fragment=cacheresults;}}}
if(!fragment){fragment=doc.createDocumentFragment();jQuery.clean(args,doc,fragment,scripts);}
if(cacheable){jQuery.fragments[args[0]]=cacheresults?fragment:1;}
return{fragment:fragment,cacheable:cacheable};}
jQuery.fragments={};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),parent=this.length===1&&this[0].parentNode;if(parent&&parent.nodeType===11&&parent.childNodes.length===1&&insert.length===1){insert[original](this[0]);return this;}else{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,insert.selector);}};});jQuery.extend({clean:function(elems,context,fragment,scripts){context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;}
var ret=[];for(var i=0,elem;(elem=elems[i])!=null;i++){if(typeof elem==="number"){elem+="";}
if(!elem){continue;}
if(typeof elem==="string"&&!rhtml.test(elem)){elem=context.createTextNode(elem);}else if(typeof elem==="string"){elem=elem.replace(rxhtmlTag,fcloseTag);var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");div.innerHTML=wrap[1]+elem+wrap[2];while(depth--){div=div.lastChild;}
if(!jQuery.support.tbody){var hasBody=rtbody.test(elem),tbody=tag==="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&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild);}
elem=div.childNodes;}
if(elem.nodeType){ret.push(elem);}else{ret=jQuery.merge(ret,elem);}}
if(fragment){for(var i=0;ret[i];i++){if(scripts&&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 ret;},cleanData:function(elems){var data,id,cache=jQuery.cache,special=jQuery.event.special,deleteExpando=jQuery.support.deleteExpando;for(var i=0,elem;(elem=elems[i])!=null;i++){id=elem[jQuery.expando];if(id){data=cache[id];if(data.events){for(var type in data.events){if(special[type]){jQuery.event.remove(elem,type);}else{removeEvent(elem,type,data.handle);}}}
if(deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}
delete cache[id];}}}});var rexclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,ralpha=/alpha\([^)]*\)/,ropacity=/opacity=([^)]*)/,rfloat=/float/i,rdashAlpha=/-([a-z])/ig,rupper=/([A-Z])/g,rnumpx=/^-?\d+(?:px)?$/i,rnum=/^-?\d/,cssShow={position:"absolute",visibility:"hidden",display:"block"},cssWidth=["Left","Right"],cssHeight=["Top","Bottom"],getComputedStyle=document.defaultView&&document.defaultView.getComputedStyle,styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat",fcamelCase=function(all,letter){return letter.toUpperCase();};jQuery.fn.css=function(name,value){return access(this,name,value,true,function(elem,name,value){if(value===undefined){return jQuery.curCSS(elem,name);}
if(typeof value==="number"&&!rexclude.test(name)){value+="px";}
jQuery.style(elem,name,value);});};jQuery.extend({style:function(elem,name,value){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
if((name==="width"||name==="height")&&parseFloat(value)<0){value=undefined;}
var style=elem.style||elem,set=value!==undefined;if(!jQuery.support.opacity&&name==="opacity"){if(set){style.zoom=1;var opacity=parseInt(value,10)+""==="NaN"?"":"alpha(opacity="+value*100+")";var filter=style.filter||jQuery.curCSS(elem,"filter")||"";style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):opacity;}
return style.filter&&style.filter.indexOf("opacity=")>=0?(parseFloat(ropacity.exec(style.filter)[1])/100)+"":"";}
if(rfloat.test(name)){name=styleFloat;}
name=name.replace(rdashAlpha,fcamelCase);if(set){style[name]=value;}
return style[name];},css:function(elem,name,force,extra){if(name==="width"||name==="height"){var val,props=cssShow,which=name==="width"?cssWidth:cssHeight;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,filter;if(!jQuery.support.opacity&&name==="opacity"&&elem.currentStyle){ret=ropacity.test(elem.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";return ret===""?"1":ret;}
if(rfloat.test(name)){name=styleFloat;}
if(!force&&style&&style[name]){ret=style[name];}else if(getComputedStyle){if(rfloat.test(name)){name="float";}
name=name.replace(rupper,"-$1").toLowerCase();var defaultView=elem.ownerDocument.defaultView;if(!defaultView){return null;}
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(rdashAlpha,fcamelCase);ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!rnumpx.test(ret)&&rnum.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=camelCase==="fontSize"?"1em":(ret||0);ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}
return ret;},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];}}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight,skip=elem.nodeName.toLowerCase()==="tr";return width===0&&height===0&&!skip?true:width>0&&height>0&&!skip?false:jQuery.curCSS(elem,"display")==="none";};jQuery.expr.filters.visible=function(elem){return!jQuery.expr.filters.hidden(elem);};}
var jsc=now(),rscript=/<script(.|\s)*?\/script>/gi,rselectTextarea=/select|textarea/i,rinput=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,jsre=/=\?(&|$)/,rquery=/\?/,rts=/(\?|&)_=.*?(&|$)/,rurl=/^(\w+:)?\/\/([^\/?#]+)/,r20=/%20/g,_load=jQuery.fn.load;jQuery.fn.extend({load:function(url,params,callback){if(typeof url!=="string"){return _load.call(this,url);}else if(!this.length){return this;}
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,jQuery.ajaxSettings.traditional);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(rscript,"")).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||rselectTextarea.test(this.nodeName)||rinput.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);};});jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;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)){type=type||callback;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:window.XMLHttpRequest&&(window.location.protocol!=="file:"||!window.ActiveXObject)?function(){return new window.XMLHttpRequest();}:function(){try{return new window.ActiveXObject("Microsoft.XMLHTTP");}catch(e){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(origSettings){var s=jQuery.extend(true,{},jQuery.ajaxSettings,origSettings);var jsonp,status,data,callbackContext=origSettings&&origSettings.context||s,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional);}
if(s.dataType==="jsonp"){if(type==="GET"){if(!jsre.test(s.url)){s.url+=(rquery.test(s.url)?"&":"?")+(s.jsonp||"callback")+"=?";}}else if(!s.data||!jsre.test(s.data)){s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";}
s.dataType="json";}
if(s.dataType==="json"&&(s.data&&jsre.test(s.data)||jsre.test(s.url))){jsonp=s.jsonpCallback||("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]=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(rts,"$1_="+ts+"$2");s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"");}
if(s.data&&type==="GET"){s.url+=(rquery.test(s.url)?"&":"?")+s.data;}
if(s.global&&!jQuery.active++){jQuery.event.trigger("ajaxStart");}
var parts=rurl.exec(s.url),remote=parts&&(parts[1]&&parts[1]!==location.protocol||parts[2]!==location.host);if(s.dataType==="script"&&type==="GET"&&remote){var head=document.getElementsByTagName("head")[0]||document.documentElement;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;if(head&&script.parentNode){head.removeChild(script);}}};}
head.insertBefore(script,head.firstChild);return undefined;}
var requestDone=false;var xhr=s.xhr();if(!xhr){return;}
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||origSettings&&origSettings.contentType){xhr.setRequestHeader("Content-Type",s.contentType);}
if(s.ifModified){if(jQuery.lastModified[s.url]){xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]);}
if(jQuery.etag[s.url]){xhr.setRequestHeader("If-None-Match",jQuery.etag[s.url]);}}
if(!remote){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.call(callbackContext,xhr,s)===false){if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop");}
xhr.abort();return false;}
if(s.global){trigger("ajaxSend",[xhr,s]);}
var onreadystatechange=xhr.onreadystatechange=function(isTimeout){if(!xhr||xhr.readyState===0||isTimeout==="abort"){if(!requestDone){complete();}
requestDone=true;if(xhr){xhr.onreadystatechange=jQuery.noop;}}else if(!requestDone&&xhr&&(xhr.readyState===4||isTimeout==="timeout")){requestDone=true;xhr.onreadystatechange=jQuery.noop;status=isTimeout==="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";var errMsg;if(status==="success"){try{data=jQuery.httpData(xhr,s.dataType,s);}catch(err){status="parsererror";errMsg=err;}}
if(status==="success"||status==="notmodified"){if(!jsonp){success();}}else{jQuery.handleError(s,xhr,status,errMsg);}
complete();if(isTimeout==="timeout"){xhr.abort();}
if(s.async){xhr=null;}}};try{var oldAbort=xhr.abort;xhr.abort=function(){if(xhr){if(oldAbort.call===undefined){oldAbort();}else{oldAbort.call(xhr);}}
onreadystatechange("abort");};}catch(e){}
if(s.async&&s.timeout>0){setTimeout(function(){if(xhr&&!requestDone){onreadystatechange("timeout");}},s.timeout);}
try{xhr.send(type==="POST"||type==="PUT"||type==="DELETE"?s.data:null);}catch(e){jQuery.handleError(s,xhr,null,e);complete();}
if(!s.async){onreadystatechange();}
function success(){if(s.success){s.success.call(callbackContext,data,status,xhr);}
if(s.global){trigger("ajaxSuccess",[xhr,s]);}}
function complete(){if(s.complete){s.complete.call(callbackContext,xhr,status);}
if(s.global){trigger("ajaxComplete",[xhr,s]);}
if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop");}}
function trigger(type,args){(s.context?jQuery(s.context):jQuery.event).trigger(type,args);}
return xhr;},handleError:function(s,xhr,status,e){if(s.error){s.error.call(s.context||s,xhr,status,e);}
if(s.global){(s.context?jQuery(s.context):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||xhr.status===0;}catch(e){}
return false;},httpNotModified:function(xhr,url){var lastModified=xhr.getResponseHeader("Last-Modified"),etag=xhr.getResponseHeader("Etag");if(lastModified){jQuery.lastModified[url]=lastModified;}
if(etag){jQuery.etag[url]=etag;}
return xhr.status===304||xhr.status===0;},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type")||"",xml=type==="xml"||!type&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.nodeName==="parsererror"){jQuery.error("parsererror");}
if(s&&s.dataFilter){data=s.dataFilter(data,type);}
if(typeof data==="string"){if(type==="json"||!type&&ct.indexOf("json")>=0){data=jQuery.parseJSON(data);}else if(type==="script"||!type&&ct.indexOf("javascript")>=0){jQuery.globalEval(data);}}
return data;},param:function(a,traditional){var s=[];if(traditional===undefined){traditional=jQuery.ajaxSettings.traditional;}
if(jQuery.isArray(a)||a.jquery){jQuery.each(a,function(){add(this.name,this.value);});}else{for(var prefix in a){buildParams(prefix,a[prefix]);}}
return s.join("&").replace(r20,"+");function buildParams(prefix,obj){if(jQuery.isArray(obj)){jQuery.each(obj,function(i,v){if(traditional||/\[\]$/.test(prefix)){add(prefix,v);}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v);}});}else if(!traditional&&obj!=null&&typeof obj==="object"){jQuery.each(obj,function(k,v){buildParams(prefix+"["+k+"]",v);});}else{add(prefix,obj);}}
function add(key,value){value=jQuery.isFunction(value)?value():value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value);}}});var elemdisplay={},rfxtypes=/toggle|show|hide/,rfxnum=/^([+-]=)?([\d+-.]+)(.*)$/,timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];jQuery.fn.extend({show:function(speed,callback){if(speed||speed===0){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 nodeName=this[i].nodeName,display;if(elemdisplay[nodeName]){display=elemdisplay[nodeName];}else{var elem=jQuery("<"+nodeName+" />").appendTo("body");display=elem.css("display");if(display==="none"){display="block";}
elem.remove();elemdisplay[nodeName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var j=0,k=this.length;j<k;j++){this[j].style.display=jQuery.data(this[j],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed||speed===0){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 j=0,k=this.length;j<k;j++){this[j].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";if(jQuery.isFunction(fn)&&jQuery.isFunction(fn2)){this._toggle.apply(this,arguments);}else if(fn==null||bool){this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();});}else{this.animate(genFx("toggle",3),fn,fn2);}
return this;},fadeTo:function(speed,to,callback){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);if(jQuery.isEmptyObject(prop)){return this.each(optall.complete);}
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){var name=p.replace(rdashAlpha,fcamelCase);if(p!==name){prop[name]=prop[p];delete prop[p];p=name;}
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(jQuery.isArray(prop[p])){(opt.specialEasing=opt.specialEasing||{})[p]=prop[p][1];prop[p]=prop[p][0];}}
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(rfxtypes.test(val)){e[val==="toggle"?hidden?"show":"hide":val](prop);}else{var parts=rfxnum.exec(val),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=speed&&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(jQuery.fx.tick,13);}},show:function(){this.options.orig[this.prop]=jQuery.style(this.elem,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.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now(),done=true;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;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;var old=jQuery.data(this.elem,"olddisplay");this.elem.style.display=old?old: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.style(this.elem,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;var specialEasing=this.options.specialEasing&&this.options.specialEasing[this.prop];var defaultEasing=this.options.easing||(jQuery.easing.swing?"swing":"linear");this.pos=jQuery.easing[specialEasing||defaultEasing](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,{tick:function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++){if(!timers[i]()){timers.splice(i--,1);}}
if(!timers.length){jQuery.fx.stop();}},stop:function(){clearInterval(timerId);timerId=null;},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.style(fx.elem,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null){fx.elem.style[fx.prop]=(fx.prop==="width"||fx.prop==="height"?Math.max(0,fx.now):fx.now)+fx.unit;}else{fx.elem[fx.prop]=fx.now;}}}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};}
function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
if("getBoundingClientRect"in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
var box=elem.getBoundingClientRect(),doc=elem.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.support.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};}else{jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
jQuery.offset.initialize();var offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle,top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){break;}
computedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle;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.nodeName))){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible"){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static"){top+=body.offsetTop;left+=body.offsetLeft;}
if(jQuery.offset.supportsFixedPosition&&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(){var body=document.body,container=document.createElement("div"),innerDiv,checkDiv,table,td,bodyMarginTop=parseFloat(jQuery.curCSS(body,"marginTop",true))||0,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>";jQuery.extend(container.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});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);checkDiv.style.position="fixed",checkDiv.style.top="20px";this.supportsFixedPosition=(checkDiv.offsetTop===20||checkDiv.offsetTop===15);checkDiv.style.position=checkDiv.style.top="";innerDiv.style.overflow="hidden",innerDiv.style.position="relative";this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);this.doesNotIncludeMarginInBodyOffset=(body.offsetTop!==bodyMarginTop);body.removeChild(container);body=container=innerDiv=checkDiv=table=td=null;jQuery.offset.initialize=jQuery.noop;},bodyOffset:function(body){var top=body.offsetTop,left=body.offsetLeft;jQuery.offset.initialize();if(jQuery.offset.doesNotIncludeMarginInBodyOffset){top+=parseFloat(jQuery.curCSS(body,"marginTop",true))||0;left+=parseFloat(jQuery.curCSS(body,"marginLeft",true))||0;}
return{top:top,left:left};},setOffset:function(elem,options,i){if(/static/.test(jQuery.curCSS(elem,"position"))){elem.style.position="relative";}
var curElem=jQuery(elem),curOffset=curElem.offset(),curTop=parseInt(jQuery.curCSS(elem,"top",true),10)||0,curLeft=parseInt(jQuery.curCSS(elem,"left",true),10)||0;if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset);}
var props={top:(options.top-curOffset.top)+curTop,left:(options.left-curOffset.left)+curLeft};if("using"in options){options.using.call(elem,props);}else{curElem.css(props);}}};jQuery.fn.extend({position:function(){if(!this[0]){return null;}
var elem=this[0],offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();offset.top-=parseFloat(jQuery.curCSS(elem,"marginTop",true))||0;offset.left-=parseFloat(jQuery.curCSS(elem,"marginLeft",true))||0;parentOffset.top+=parseFloat(jQuery.curCSS(offsetParent[0],"borderTopWidth",true))||0;parentOffset.left+=parseFloat(jQuery.curCSS(offsetParent[0],"borderLeftWidth",true))||0;return{top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};},offsetParent:function(){return this.map(function(){var offsetParent=this.offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.nodeName)&&jQuery.css(offsetParent,"position")==="static")){offsetParent=offsetParent.offsetParent;}
return offsetParent;});}});jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;jQuery.fn[method]=function(val){var elem=this[0],win;if(!elem){return null;}
if(val!==undefined){return this.each(function(){win=getWindow(this);if(win){win.scrollTo(!i?val:jQuery(win).scrollLeft(),i?val:jQuery(win).scrollTop());}else{this[method]=val;}});}else{win=getWindow(elem);return win?("pageXOffset"in win)?win[i?"pageYOffset":"pageXOffset"]:jQuery.support.boxModel&&win.document.documentElement[method]||win.document.body[method]:elem[method];}};});function getWindow(elem){return("scrollTo"in elem&&elem.document)?elem:elem.nodeType===9?elem.defaultView||elem.parentWindow:false;}
jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],type,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],type,false,margin?"margin":"border"):null;};jQuery.fn[type]=function(size){var elem=this[0];if(!elem){return size==null?null:this;}
if(jQuery.isFunction(size)){return this.each(function(i){var self=jQuery(this);self[type](size.call(this,i,self[type]()));});}
return("scrollTo"in elem&&elem.document)?elem.document.compatMode==="CSS1Compat"&&elem.document.documentElement["client"+name]||elem.document.body["client"+name]:(elem.nodeType===9)?Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]):size===undefined?jQuery.css(elem,type):this.css(type,typeof size==="string"?size:size+"px");};});window.jQuery=window.$=jQuery;})(window);(function(){var dep={"jQuery":"http://code.jquery.com/jquery-latest.min.js"};var init=function(){(function($){$.fn.idTabs=function(){var s={};for(var i=0;i<arguments.length;++i){var a=arguments[i];switch(a.constructor){case Object:$.extend(s,a);break;case Boolean:s.change=a;break;case Number:s.start=a;break;case Function:s.click=a;break;case String:if(a.charAt(0)=='.')s.selected=a;else if(a.charAt(0)=='!')s.event=a;else s.start=a;break;}}
if(typeof s['return']=="function")
s.change=s['return'];return this.each(function(){$.idTabs(this,s);});}
$.idTabs=function(tabs,options){var meta=($.metadata)?$(tabs).metadata():{};var s=$.extend({},$.idTabs.settings,meta,options);if(s.selected.charAt(0)=='.')s.selected=s.selected.substr(1);if(s.event.charAt(0)=='!')s.event=s.event.substr(1);if(s.start==null)s.start=-1;var showId=function(){if($(this).is('.'+s.selected))
return s.change;var id="#"+this.href.split('#')[1];var aList=[];var idList=[];$("a",tabs).each(function(){if(this.href.match(/#/)){aList.push(this);idList.push("#"+this.href.split('#')[1]);}});if(s.click&&!s.click.apply(this,[id,idList,tabs,s]))return s.change;for(i in aList)$(aList[i]).removeClass(s.selected);for(i in idList)$(idList[i]).hide();$(this).addClass(s.selected);$(id).show();return s.change;}
var list=$("a[href*='#']",tabs).unbind(s.event,showId).bind(s.event,showId);list.each(function(){$("#"+this.href.split('#')[1]).hide();});var test=false;if((test=list.filter('.'+s.selected)).length);else if(typeof s.start=="number"&&(test=list.eq(s.start)).length);else if(typeof s.start=="string"&&(test=list.filter("[href*='#"+s.start+"']")).length);if(test){test.removeClass(s.selected);test.trigger(s.event);}
return s;}
$.idTabs.settings={start:0,change:false,click:null,selected:".selected",event:"!click"};$.idTabs.version="2.2";$(function(){$(".idTabs").idTabs();});})(jQuery);}
var check=function(o,s){s=s.split('.');while(o&&s.length)o=o[s.shift()];return o;}
var head=document.getElementsByTagName("head")[0];var add=function(url){var s=document.createElement("script");s.type="text/javascript";s.src=url;head.appendChild(s);}
var s=document.getElementsByTagName('script');var src=s[s.length-1].src;var ok=true;for(d in dep){if(check(this,d))continue;ok=false;add(dep[d]);}if(ok)return init();add(src);})();(function($){$.fn.ajaxForm=function(options){return this.each(function(){new $.AjaxForm(this,options);});};$.AjaxForm=function(e,o){var form=$(e);form.submit(submitForm);$(window).unload(function(){form=null;e=null;});var defaults={url:postUrl(),type:form.attr('method')||'GET'};function submitForm(e){e.preventDefault();var options=$.extend({},defaults,o);if(options.dataType=='jsonp'){options.type='GET';}
options.data=form.serialize();$.ajax(options);};function postUrl(){var url=form.attr('action')||window.location.href;url=(url.match(/^([^#]+)/)||[])[1];url=url||'';return url;};};})(jQuery);(function($){$.fn.defaultValueIsHint=function(options){return this.each(function(){new $.DefaultValueIsHint(this,options);});};$.DefaultValueIsHint=function(e,o){var options=$.extend({},{beforeXHR:false},o||{});var input=$(e);input[0].defaultValue=input.val();input.addClass('inactive');input.focus(function(){if(input.val()==input.attr('defaultValue')){input.val('');}
input.removeClass('inactive');});input.blur(function(){if($.trim(input.val()).length==0){input.val(input.attr('defaultValue'));}
if(input.val()==input.attr('defaultValue')){input.addClass('inactive');}});if(options.beforeXHR){input.each(function(){$(this).closest('form').bind('beforeXHR',function(){if(input.val()==input.attr('defaultValue')){input.val('');}});});}else{input.each(function(){$(this).closest('form').submit(function(){if(input.val()==input.attr('defaultValue')){input.val('');}});});}}})(jQuery);jQuery(document).ready(function(){jQuery(':input.default-value').defaultValueIsHint();});jQuery.cookie=function(name,value,options){if(typeof value!='undefined'){options=options||{};if(value===null){value='';options.expires=-1;}
var expires='';if(options.expires&&(typeof options.expires=='number'||options.expires.toUTCString)){var date;if(typeof options.expires=='number'){date=new Date();date.setTime(date.getTime()+(options.expires*24*60*60*1000));}else{date=options.expires;}
expires='; expires='+date.toUTCString();}
var path=options.path?'; path='+(options.path):'';var domain=options.domain?'; domain='+(options.domain):'';var secure=options.secure?'; secure':'';document.cookie=[name,'=',encodeURIComponent(value),expires,path,domain,secure].join('');}else{var cookieValue=null;if(document.cookie&&document.cookie!=''){var cookies=document.cookie.split(';');for(var i=0;i<cookies.length;i++){var cookie=jQuery.trim(cookies[i]);if(cookie.substring(0,name.length+1)==(name+'=')){cookieValue=decodeURIComponent(cookie.substring(name.length+1));break;}}}
return cookieValue;}};(function(jQuery){function openInNewWindow(e){if(e.button!=0)return true;e.preventDefault();window.open(this.href);};$("a:not(.internal)[href^='http']:not([href*='"+location.host+"'])").live('click',openInNewWindow);$("a.external").live('click',openInNewWindow);})(jQuery);(function($){$.fn.tabNavigation=function(o){var TAB_KEY_CODE=9;var defaults={'unless':function(){return false;}};var options=$.extend({},defaults,o);return this.each(function(){$(this).bind("keydown",function(event){if(event.keyCode==TAB_KEY_CODE&&!options.unless()){$(this).closest('form').find(':submit').focus();return false;}});});};})(jQuery);jQuery.url=function()
{var segments={};var parsed={};var options={url:window.location,strictMode:false,key:["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],q:{name:"queryKey",parser:/(?:^|&)([^&=]*)=?([^&]*)/g},parser:{strict:/^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,loose:/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/}};var parseUri=function()
{str=decodeURI(options.url);var m=options.parser[options.strictMode?"strict":"loose"].exec(str);var uri={};var i=14;while(i--){uri[options.key[i]]=m[i]||"";}
uri[options.q.name]={};uri[options.key[12]].replace(options.q.parser,function($0,$1,$2){if($1){uri[options.q.name][$1]=$2;}});return uri;};var key=function(key)
{if(!parsed.length)
{setUp();}
if(key=="base")
{if(parsed.port!==null&&parsed.port!=="")
{return parsed.protocol+"://"+parsed.host+":"+parsed.port+"/";}
else
{return parsed.protocol+"://"+parsed.host+"/";}}
return(parsed[key]==="")?null:parsed[key];};var param=function(item)
{if(!parsed.length)
{setUp();}
return(parsed.queryKey[item]===null)?null:parsed.queryKey[item];};var setUp=function()
{parsed=parseUri();getSegments();};var getSegments=function()
{var p=parsed.path;segments=[];segments=parsed.path.length==1?{}:(p.charAt(p.length-1)=="/"?p.substring(1,p.length-1):path=p.substring(1)).split("/");};return{setMode:function(mode)
{strictMode=mode=="strict"?true:false;return this;},setUrl:function(newUri)
{options.url=newUri===undefined?window.location:newUri;setUp();return this;},segment:function(pos)
{if(!parsed.length)
{setUp();}
if(pos===undefined)
{return segments.length;}
return(segments[pos]===""||segments[pos]===undefined)?null:segments[pos];},attr:key,param:param};}();(function($){$.fn.spinner=function(o){var options=$.extend({},{append:false},o||{});if(this.find('img.spinner').length>0){return this;}
var img=$('<img class="spinner" src="/images/ajax-loader.gif"/>');if(options.append){return this.append(img);}else{return this.prepend(img);}};$.fn.stopSpinner=function(){this.find('img.spinner').remove();return this;};})(jQuery);;(function(){var $$;$$=jQuery.fn.flash=function(htmlOptions,pluginOptions,replace,update){var block=replace||$$.replace;pluginOptions=$$.copy($$.pluginOptions,pluginOptions);if(!$$.hasFlash(pluginOptions.version)){if(pluginOptions.expressInstall&&$$.hasFlash(6,0,65)){var expressInstallOptions={flashvars:{MMredirectURL:location,MMplayerType:'PlugIn',MMdoctitle:jQuery('title').text()}};}else if(pluginOptions.update){block=update||$$.update;}else{return this;}}
htmlOptions=$$.copy($$.htmlOptions,expressInstallOptions,htmlOptions);return this.each(function(){block.call(this,$$.copy(htmlOptions));});};$$.copy=function(){var options={},flashvars={};for(var i=0;i<arguments.length;i++){var arg=arguments[i];if(arg==undefined)continue;jQuery.extend(options,arg);if(arg.flashvars==undefined)continue;jQuery.extend(flashvars,arg.flashvars);}
options.flashvars=flashvars;return options;};$$.hasFlash=function(){if(/hasFlash\=true/.test(location))return true;if(/hasFlash\=false/.test(location))return false;var pv=$$.hasFlash.playerVersion().match(/\d+/g);var rv=String([arguments[0],arguments[1],arguments[2]]).match(/\d+/g)||String($$.pluginOptions.version).match(/\d+/g);for(var i=0;i<3;i++){pv[i]=parseInt(pv[i]||0);rv[i]=parseInt(rv[i]||0);if(pv[i]<rv[i])return false;if(pv[i]>rv[i])return true;}
return true;};$$.hasFlash.playerVersion=function(){try{try{var axo=new ActiveXObject('ShockwaveFlash.ShockwaveFlash.6');try{axo.AllowScriptAccess='always';}
catch(e){return'6,0,0';}}catch(e){}
return new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version').replace(/\D+/g,',').match(/^,?(.+),?$/)[1];}catch(e){try{if(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){return(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g,",").match(/^,?(.+),?$/)[1];}}catch(e){}}
return'0,0,0';};$$.htmlOptions={height:240,flashvars:{},pluginspage:'http://www.adobe.com/go/getflashplayer',src:'#',type:'application/x-shockwave-flash',width:320};$$.pluginOptions={expressInstall:false,update:true,version:'6.0.65'};$$.replace=function(htmlOptions){this.innerHTML='<div class="alt">'+this.innerHTML+'</div>';jQuery(this).addClass('flash-replaced').prepend($$.transform(htmlOptions));};$$.update=function(htmlOptions){var url=String(location).split('?');url.splice(1,0,'?hasFlash=true&');url=url.join('');var msg='<p>This content requires the Flash Player. <a href="http://www.adobe.com/go/getflashplayer">Download Flash Player</a>. Already have Flash Player? <a href="'+url+'">Click here.</a></p>';this.innerHTML='<span class="alt">'+this.innerHTML+'</span>';jQuery(this).addClass('flash-update').prepend(msg);};function toAttributeString(){var s='';for(var key in this)
if(typeof this[key]!='function')
s+=key+'="'+this[key]+'" ';return s;};function toFlashvarsString(){var s='';for(var key in this)
if(typeof this[key]!='function')
s+=key+'='+encodeURIComponent(this[key])+'&';return s.replace(/&$/,'');};$$.transform=function(htmlOptions){htmlOptions.toString=toAttributeString;if(htmlOptions.flashvars)htmlOptions.flashvars.toString=toFlashvarsString;return'<embed '+String(htmlOptions)+'/>';};if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};});}})();;(function($){var $overlay,$wrapper,$container,$superbox,$closeBtn,$loading,$nextprev,$nextBtn,$prevBtn,settings,defaultSettings={boxId:"superbox",boxClasses:"",overlayOpacity:.8,boxWidth:"600",boxHeight:"400",loadTxt:"Loading...",closeTxt:"Close",prevTxt:"Previous",nextTxt:"Next",beforeShow:function(){}},galleryGroups={},galleryMode=false,hideElts=$([]);$.superbox=function(){settings=$.extend({},defaultSettings,$.superbox.settings);if($.browser.msie&&$.browser.version<7){hideElts=hideElts.add("select");}
createElements();dispatch();};function dispatch(){$("a[rel^=superbox],area[rel^=superbox]").each(function(){var $this=$(this),relAttr=$this.attr("rel"),type=relAttr.match(/^superbox\[([^#\.\]]+)/)[1],boxCurrentAttrs=relAttr.replace("superbox","").match(/([#\.][^#\.\]]+)/g)||[],newBoxId=settings.boxId,newBoxClasses=settings.boxClasses;this._relSettings=relAttr.replace("superbox["+type+boxCurrentAttrs.join("")+"]","");$.each(boxCurrentAttrs,function(i,val){if(val.substr(0,1)=="#"){newBoxId=val.substr(1);}
else if(val.substr(0,1)=="."){newBoxClasses+=" "+val.substr(1);}});if(type.search(/^image|gallery|iframe|content|ajax$/)!=-1){$this.superbox(type,{boxId:newBoxId,boxClasses:newBoxClasses});}});};$.fn.superbox=function(type,curSettings){curSettings=$.extend({},settings,curSettings);$.superbox[type](this,curSettings);};$.extend($.superbox,{image:function($elt,curSettings,type){var relSettings=getRelSettings($elt.get(0)),dimensions=false;if(relSettings&&type=="gallery")
dimensions=relSettings[1];else if(relSettings)
dimensions=relSettings[0];$elt.click(function(e){e.preventDefault();prepareBox();if(type=="gallery")
nextPrev($elt,relSettings[0]);initLoading(function(){var dims=false,$curImg;if(dimensions){dims=dimensions.split("x");}
$curImg=$('<img src="'+$elt.attr("href")+'" title="'+($elt.attr("title")||$elt.text())+'" />');$curImg.load(function(){resizeImageBox($curImg,dims);setBoxAttrs({boxClasses:"image "+curSettings.boxClasses,boxId:curSettings.boxId});showBox();}).appendTo($innerbox);});});},gallery:function($elt,curSettings){var extraSettings=getRelSettings($elt.get(0));if(!galleryGroups[extraSettings[0]]){galleryGroups[extraSettings[0]]=[];}
galleryGroups[extraSettings[0]].push($elt);$elt.get(0)._superboxGroupKey=(galleryGroups[extraSettings[0]].length-1);$.superbox["image"]($elt,curSettings,"gallery");},iframe:function($elt,curSettings){var extraSettings=getRelSettings($elt.get(0));$elt.click(function(e){e.preventDefault();prepareBox();initLoading(function(){var dims=false,$iframe;if(extraSettings){dims=extraSettings[0].split("x");}
curSettings=$.extend({},curSettings,{boxWidth:dims[0]||curSettings.boxWidth,boxHeight:dims[1]||curSettings.boxHeight});$iframe=$('<iframe src="'+$elt.attr("href")+'" name="'+$elt.attr("href")+'" frameborder="0" scrolling="auto" hspace="0" width="'+curSettings.boxWidth+'" height="'+curSettings.boxHeight+'"></iframe>');$iframe.load(function(){$superbox.width(curSettings.boxWidth+"px");$innerbox.height(curSettings.boxHeight+"px");setBoxAttrs({boxClasses:"iframe "+curSettings.boxClasses,boxId:curSettings.boxId});showBox();}).appendTo($innerbox);});});},content:function($elt,curSettings){var extraSettings=getRelSettings($elt.get(0));$elt.click(function(e){e.preventDefault();prepareBox();initLoading(function(){var dims=false;if(extraSettings)
dims=extraSettings[0].split("x");curSettings=$.extend({},curSettings,{boxWidth:dims[0]||curSettings.boxWidth,boxHeight:dims[1]||curSettings.boxHeight});$superbox.width(curSettings.boxWidth+"px");$innerbox.height(curSettings.boxHeight+"px");$($elt.attr('href')).clone().appendTo($innerbox).show();setBoxAttrs({boxClasses:"content "+curSettings.boxClasses,boxId:curSettings.boxId});showBox();});});},ajax:function($elt,curSettings){var extraSettings=getRelSettings($elt.get(0));$elt.click(function(e){e.preventDefault();prepareBox();initLoading(function(){var dims=false;if(extraSettings&&extraSettings[3]){dims=extraSettings[3].split("x");}
curSettings=$.extend({},curSettings,{boxWidth:dims[0]||curSettings.boxWidth,boxHeight:dims[1]||curSettings.boxHeight});$superbox.width(curSettings.boxWidth+"px");$innerbox.height(curSettings.boxHeight+"px");$.get(extraSettings[2],function(data){$(data).appendTo($innerbox);});setBoxAttrs({boxClasses:"ajax "+curSettings.boxClasses,boxId:curSettings.boxId});showBox();});});}});function getRelSettings(elt){return elt._relSettings.match(/([^\[\]]+)/g);};function resizeImageBox($curImg,dims){$superbox.width($curImg.width()+($innerbox.css("paddingLeft").slice(0,-2)-0)+($innerbox.css("paddingRight").slice(0,-2)-0));$innerbox.height($curImg.height());if(dims&&dims[0]!=""){$superbox.width(dims[0]+"px");}
if(dims&&dims[1]!=""&&dims[1]>$curImg.height()){$innerbox.height(dims[1]+"px");}};function nextPrev($elt,group){$nextprev.show();galleryMode=true;var nextKey=$elt.get(0)._superboxGroupKey+1,prevKey=nextKey-2;if(galleryGroups[group][nextKey]){$nextBtn.removeClass("disabled").unbind("click").bind("click",function(){galleryGroups[group][nextKey].click();});}
else
$nextBtn.addClass("disabled").unbind("click");if(galleryGroups[group][prevKey]){$prevBtn.removeClass("disabled").unbind("click").bind("click",function(){galleryGroups[group][prevKey].click();});}
else
$prevBtn.addClass("disabled").unbind("click");};function setBoxAttrs(attrs){$superbox.attr("id",attrs.boxId).attr("class",attrs.boxClasses);};function hideBox(){$(document).unbind("keydown");$loading.hide();$nextprev.hide();$wrapper.hide().css({position:"fixed",top:0});$innerbox.empty();};function hideAll(callback){hideBox();$overlay.fadeOut(300,function(){hideElts.show();});galleryMode=false;};function initLoading(callback){var loading=function(){if($.browser.msie&&$.browser.version<7){$wrapper.css({position:"absolute",top:"50%"});}
hideElts.hide();$loading.show();callback();};if(galleryMode){$overlay.css("opacity",settings.overlayOpacity).show();loading();}
else{$overlay.css("opacity",0).show().fadeTo(300,settings.overlayOpacity,loading);}};function prepareBox(){$wrapper.show();$innerbox.empty();$superbox.css({position:"absolute",top:"-99999px"});};function showBox(curSettings,$elt){$loading.hide();$(document).unbind("keydown").bind("keydown",function(e){if(e.keyCode==27)
hideAll();if(e.keyCode==39&&$nextBtn.is(":visible"))
$nextBtn.click();if(e.keyCode==37&&$prevBtn.is(":visible"))
$prevBtn.click();});$superbox.css({position:"static",top:0,opacity:0});if($.browser.msie&&$.browser.version<8){$superbox.css({position:"relative",top:"-50%"});if($.browser.msie&&$.browser.version<7)
$wrapper.css({position:"absolute",top:"50%"});}
if($(window).height()<$wrapper.height()){$wrapper.css({position:"absolute",top:($wrapper.offset().top+10)+"px"});}
settings.beforeShow();$superbox.fadeTo(300,1);};function createElements(){if(!$.superbox.elementsReady){$overlay=$('<div id="superbox-overlay"></div>').appendTo("body").hide();$wrapper=$('<div id="superbox-wrapper"></div>').appendTo("body").hide();$container=$('<div id="superbox-container"></div>').appendTo($wrapper);$superbox=$('<div id="superbox"></div>').appendTo($container);$innerbox=$('<div id="superbox-innerbox"></div>').appendTo($superbox);$nextprev=$('<p class="nextprev"></p>').appendTo($superbox).hide();$prevBtn=$('<a class="prev"><strong><span>'+settings.prevTxt+'</span></strong></a>').appendTo($nextprev);$nextBtn=$('<a class="next"><strong><span>'+settings.nextTxt+'</span></strong></a>').appendTo($nextprev);$closeBtn=$('<p class="close"><a><strong><span>'+settings.closeTxt+'</span></strong></a></p>').prependTo($superbox).find("a");$loading=$('<p class="loading">'+settings.loadTxt+'</p>').appendTo($container).hide();$overlay.add($wrapper).add($closeBtn).click(function(){hideAll();});$superbox.click(function(e){e.stopPropagation();});$.superbox.elementsReady=true;}};})(jQuery);(function($){$.fn.autogrow=function(options){return this.each(function(){new $.Autogrow(this,options);});};$.Autogrow=function(e,o){var element=e;var options=$.extend({},{initialGrow:0,dependents:0},o||{});var textarea=$(e);var interval=null;var originalHeight=null;var tempHeight=null;var lineHeight=parseInt(textarea.css('lineHeight'));options.initialGrow=(typeof(options.initialGrow)=="number"&&options.initialGrow>0)?parseInt(options.initialGrow):0;textarea.css({overflow:'hidden'});textarea.bind('focus',startExpand);textarea.bind('blur',stopExpand);textarea.bind('keypress',function(e){setTimeout(expand,0);});function startExpand(){if(originalHeight==null&&textarea.height()!=0){originalHeight=textarea.height();}
if(options.initialGrow>1){if(tempHeight==null){tempHeight=originalHeight*options.initialGrow;}
if(textarea.height()<=originalHeight){textarea.css('height',tempHeight+'px');if(options.alertChanged){textarea.trigger('alertChanged');}}}
interval=window.setInterval(expand,100);};function stopExpand(){var cancelShrink=false;var textAreaLength=$.trim(textarea.val()).length;if(options.dependents&&options.dependents.length>0){options.dependents.each(function(){if($(this).data('stayVisible')){cancelShrink=true;};});}
if(!cancelShrink&&textarea.val()!==textarea.attr('defaultValue')&&textAreaLength>0){cancelShrink=true;}
if(!cancelShrink){if(textAreaLength==0){textarea.val('').css('height',originalHeight);}
if(options.initialGrow>1){textarea.css('height',originalHeight);}
if(options.alertChanged){textarea.trigger('alertChanged');}}
clearInterval(interval);};$(element.form).bind('reset',resetHeight);function resetHeight(){if(originalHeight!=null){textarea.height(originalHeight);}};function expand(){var textHeight=element.scrollHeight;var inputHeight=element.offsetHeight;if(textHeight>inputHeight){if(options.maxHeight&&options.maxHeight<(inputHeight+lineHeight)){textarea.css({overflow:'auto'});return;}
textarea.height(textHeight);if(options.alertChanged){textarea.trigger('alertChanged');}}};$(window).unload(function(){element=null;textarea=null;});};})(jQuery);this.tablecloth=function(){var highlightCols=true;var highlightRows=false;var selectable=false;this.clickAction=function(obj){};var tableover=false;this.start=function(){var tables=document.getElementsByTagName("table");for(var i=0;i<tables.length;i++){tables[i].onmouseover=function(){tableover=true};tables[i].onmouseout=function(){tableover=false};rows(tables[i]);};};this.rows=function(table){var css="";var tr=table.getElementsByTagName("tr");for(var i=0;i<tr.length;i++){css=(css=="odd")?"even":"odd";tr[i].className=css;var arr=new Array();for(var j=0;j<tr[i].childNodes.length;j++){if(tr[i].childNodes[j].nodeType==1)arr.push(tr[i].childNodes[j]);};for(var j=0;j<arr.length;j++){arr[j].row=i;arr[j].col=j;if(arr[j].innerHTML=="&nbsp;"||arr[j].innerHTML=="")arr[j].className+=" empty";arr[j].css=arr[j].className;arr[j].onmouseover=function(){over(table,this,this.row,this.col);};arr[j].onmouseout=function(){out(table,this,this.row,this.col);};arr[j].onmousedown=function(){down(table,this,this.row,this.col);};arr[j].onmouseup=function(){up(table,this,this.row,this.col);};arr[j].onclick=function(){click(table,this,this.row,this.col);};};};};this.over=function(table,obj,row,col){if(!highlightCols&&!highlightRows)obj.className=obj.css+" over";if(check1(obj,col)){if(highlightCols)highlightCol(table,obj,col);if(highlightRows)highlightRow(table,obj,row);};};this.out=function(table,obj,row,col){if(!highlightCols&&!highlightRows)obj.className=obj.css;unhighlightCol(table,col);unhighlightRow(table,row);};this.down=function(table,obj,row,col){obj.className=obj.css+" down";};this.up=function(table,obj,row,col){obj.className=obj.css+" over";};this.click=function(table,obj,row,col){if(check1){if(selectable){unselect(table);if(highlightCols)highlightCol(table,obj,col,true);if(highlightRows)highlightRow(table,obj,row,true);document.onclick=unselectAll;}};clickAction(obj);};this.highlightCol=function(table,active,col,sel){var css=(typeof(sel)!="undefined")?"selected":"over";var tr=table.getElementsByTagName("tr");for(var i=0;i<tr.length;i++){var arr=new Array();for(j=0;j<tr[i].childNodes.length;j++){if(tr[i].childNodes[j].nodeType==1)arr.push(tr[i].childNodes[j]);};var obj=arr[col];if(check2(active,obj)&&check3(obj))obj.className=obj.css+" "+css;};};this.unhighlightCol=function(table,col){var tr=table.getElementsByTagName("tr");for(var i=0;i<tr.length;i++){var arr=new Array();for(j=0;j<tr[i].childNodes.length;j++){if(tr[i].childNodes[j].nodeType==1)arr.push(tr[i].childNodes[j])};var obj=arr[col];if(check3(obj))obj.className=obj.css;};};this.highlightRow=function(table,active,row,sel){var css=(typeof(sel)!="undefined")?"selected":"over";var tr=table.getElementsByTagName("tr")[row];for(var i=0;i<tr.childNodes.length;i++){var obj=tr.childNodes[i];if(check2(active,obj)&&check3(obj))obj.className=obj.css+" "+css;};};this.unhighlightRow=function(table,row){var tr=table.getElementsByTagName("tr")[row];for(var i=0;i<tr.childNodes.length;i++){var obj=tr.childNodes[i];if(check3(obj))obj.className=obj.css;};};this.unselect=function(table){tr=table.getElementsByTagName("tr")
for(var i=0;i<tr.length;i++){for(var j=0;j<tr[i].childNodes.length;j++){var obj=tr[i].childNodes[j];if(obj.className)obj.className=obj.className.replace("selected","");};};};this.unselectAll=function(){if(!tableover){tables=document.getElementsByTagName("table");for(var i=0;i<tables.length;i++){unselect(tables[i])};};};this.check1=function(obj,col){return(!(col==0&&obj.className.indexOf("empty")!=-1));}
this.check2=function(active,obj){return(!(active.tagName=="TH"&&obj.tagName=="TH"));};this.check3=function(obj){return(obj.className)?(obj.className.indexOf("selected")==-1):true;};start();};window.onload=tablecloth;(function(){function g(o){console.log("$f.fireEvent",[].slice.call(o))}function k(q){if(!q||typeof q!="object"){return q}var o=new q.constructor();for(var p in q){if(q.hasOwnProperty(p)){o[p]=k(q[p])}}return o}function m(t,q){if(!t){return}var o,p=0,r=t.length;if(r===undefined){for(o in t){if(q.call(t[o],o,t[o])===false){break}}}else{for(var s=t[0];p<r&&q.call(s,p,s)!==false;s=t[++p]){}}return t}function c(o){return document.getElementById(o)}function i(q,p,o){if(typeof p!="object"){return q}if(q&&p){m(p,function(r,s){if(!o||typeof s!="function"){q[r]=s}})}return q}function n(s){var q=s.indexOf(".");if(q!=-1){var p=s.substring(0,q)||"*";var o=s.substring(q+1,s.length);var r=[];m(document.getElementsByTagName(p),function(){if(this.className&&this.className.indexOf(o)!=-1){r.push(this)}});return r}}function f(o){o=o||window.event;if(o.preventDefault){o.stopPropagation();o.preventDefault()}else{o.returnValue=false;o.cancelBubble=true}return false}function j(q,o,p){q[o]=q[o]||[];q[o].push(p)}function e(){return"_"+(""+Math.random()).substring(2,10)}var h=function(t,r,s){var q=this;var p={};var u={};q.index=r;if(typeof t=="string"){t={url:t}}i(this,t,true);m(("Begin*,Start,Pause*,Resume*,Seek*,Stop*,Finish*,LastSecond,Update,BufferFull,BufferEmpty,BufferStop").split(","),function(){var v="on"+this;if(v.indexOf("*")!=-1){v=v.substring(0,v.length-1);var w="onBefore"+v.substring(2);q[w]=function(x){j(u,w,x);return q}}q[v]=function(x){j(u,v,x);return q};if(r==-1){if(q[w]){s[w]=q[w]}if(q[v]){s[v]=q[v]}}});i(this,{onCuepoint:function(x,w){if(arguments.length==1){p.embedded=[null,x];return q}if(typeof x=="number"){x=[x]}var v=e();p[v]=[x,w];if(s.isLoaded()){s._api().fp_addCuepoints(x,r,v)}return q},update:function(w){i(q,w);if(s.isLoaded()){s._api().fp_updateClip(w,r)}var v=s.getConfig();var x=(r==-1)?v.clip:v.playlist[r];i(x,w,true)},_fireEvent:function(v,y,w,A){if(v=="onLoad"){m(p,function(B,C){if(C[0]){s._api().fp_addCuepoints(C[0],r,B)}});return false}A=A||q;if(v=="onCuepoint"){var z=p[y];if(z){return z[1].call(s,A,w)}}if(y&&"onBeforeBegin,onMetaData,onStart,onUpdate,onResume".indexOf(v)!=-1){i(A,y);if(y.metaData){if(!A.duration){A.duration=y.metaData.duration}else{A.fullDuration=y.metaData.duration}}}var x=true;m(u[v],function(){x=this.call(s,A,y,w)});return x}});if(t.onCuepoint){var o=t.onCuepoint;q.onCuepoint.apply(q,typeof o=="function"?[o]:o);delete t.onCuepoint}m(t,function(v,w){if(typeof w=="function"){j(u,v,w);delete t[v]}});if(r==-1){s.onCuepoint=this.onCuepoint}};var l=function(p,r,q,t){var s={};var o=this;var u=false;if(t){i(s,t)}m(r,function(v,w){if(typeof w=="function"){s[v]=w;delete r[v]}});i(this,{animate:function(y,z,x){if(!y){return o}if(typeof z=="function"){x=z;z=500}if(typeof y=="string"){var w=y;y={};y[w]=z;z=500}if(x){var v=e();s[v]=x}if(z===undefined){z=500}r=q._api().fp_animate(p,y,z,v);return o},css:function(w,x){if(x!==undefined){var v={};v[w]=x;w=v}r=q._api().fp_css(p,w);i(o,r);return o},show:function(){this.display="block";q._api().fp_showPlugin(p);return o},hide:function(){this.display="none";q._api().fp_hidePlugin(p);return o},toggle:function(){this.display=q._api().fp_togglePlugin(p);return o},fadeTo:function(y,x,w){if(typeof x=="function"){w=x;x=500}if(w){var v=e();s[v]=w}this.display=q._api().fp_fadeTo(p,y,x,v);this.opacity=y;return o},fadeIn:function(w,v){return o.fadeTo(1,w,v)},fadeOut:function(w,v){return o.fadeTo(0,w,v)},getName:function(){return p},getPlayer:function(){return q},_fireEvent:function(w,v,x){if(w=="onUpdate"){var y=q._api().fp_getPlugin(p);if(!y){return}i(o,y);delete o.methods;if(!u){m(y.methods,function(){var A=""+this;o[A]=function(){var B=[].slice.call(arguments);var C=q._api().fp_invoke(p,A,B);return C==="undefined"||C===undefined?o:C}});u=true}}var z=s[w];if(z){z.apply(o,v);if(w.substring(0,1)=="_"){delete s[w]}}}})};function b(o,t,z){var E=this,y=null,x,u,p=[],s={},B={},r,v,w,D,A,q;i(E,{id:function(){return r},isLoaded:function(){return(y!==null)},getParent:function(){return o},hide:function(F){if(F){o.style.height="0px"}if(y){y.style.height="0px"}return E},show:function(){o.style.height=q+"px";if(y){y.style.height=A+"px"}return E},isHidden:function(){return y&&parseInt(y.style.height,10)===0},load:function(F){if(!y&&E._fireEvent("onBeforeLoad")!==false){m(a,function(){this.unload()});x=o.innerHTML;if(x&&!flashembed.isSupported(t.version)){o.innerHTML=""}flashembed(o,t,{config:z});if(F){F.cached=true;j(B,"onLoad",F)}}return E},unload:function(){if(x.replace(/\s/g,"")!==""){if(E._fireEvent("onBeforeUnload")===false){return E}try{if(y){y.fp_close();E._fireEvent("onUnload")}}catch(F){}y=null;o.innerHTML=x}return E},getClip:function(F){if(F===undefined){F=D}return p[F]},getCommonClip:function(){return u},getPlaylist:function(){return p},getPlugin:function(F){var H=s[F];if(!H&&E.isLoaded()){var G=E._api().fp_getPlugin(F);if(G){H=new l(F,G,E);s[F]=H}}return H},getScreen:function(){return E.getPlugin("screen")},getControls:function(){return E.getPlugin("controls")},getConfig:function(F){return F?k(z):z},getFlashParams:function(){return t},loadPlugin:function(I,H,K,J){if(typeof K=="function"){J=K;K={}}var G=J?e():"_";E._api().fp_loadPlugin(I,H,K,G);var F={};F[G]=J;var L=new l(I,null,E,F);s[I]=L;return L},getState:function(){return y?y.fp_getState():-1},play:function(G,F){function H(){if(G!==undefined){E._api().fp_play(G,F)}else{E._api().fp_play()}}if(y){H()}else{E.load(function(){H()})}return E},getVersion:function(){var G="flowplayer.js 3.1.4";if(y){var F=y.fp_getVersion();F.push(G);return F}return G},_api:function(){if(!y){throw"Flowplayer "+E.id()+" not loaded when calling an API method"}return y},setClip:function(F){E.setPlaylist([F]);return E},getIndex:function(){return w}});m(("Click*,Load*,Unload*,Keypress*,Volume*,Mute*,Unmute*,PlaylistReplace,ClipAdd,Fullscreen*,FullscreenExit,Error,MouseOver,MouseOut").split(","),function(){var F="on"+this;if(F.indexOf("*")!=-1){F=F.substring(0,F.length-1);var G="onBefore"+F.substring(2);E[G]=function(H){j(B,G,H);return E}}E[F]=function(H){j(B,F,H);return E}});m(("pause,resume,mute,unmute,stop,toggle,seek,getStatus,getVolume,setVolume,getTime,isPaused,isPlaying,startBuffering,stopBuffering,isFullscreen,toggleFullscreen,reset,close,setPlaylist,addClip,playFeed").split(","),function(){var F=this;E[F]=function(H,G){if(!y){return E}var I=null;if(H!==undefined&&G!==undefined){I=y["fp_"+F](H,G)}else{I=(H===undefined)?y["fp_"+F]():y["fp_"+F](H)}return I==="undefined"||I===undefined?E:I}});E._fireEvent=function(O){if(typeof O=="string"){O=[O]}var P=O[0],M=O[1],K=O[2],J=O[3],I=0;if(z.debug){g(O)}if(!y&&P=="onLoad"&&M=="player"){y=y||c(v);A=y.clientHeight;m(p,function(){this._fireEvent("onLoad")});m(s,function(Q,R){R._fireEvent("onUpdate")});u._fireEvent("onLoad")}if(P=="onLoad"&&M!="player"){return}if(P=="onError"){if(typeof M=="string"||(typeof M=="number"&&typeof K=="number")){M=K;K=J}}if(P=="onContextMenu"){m(z.contextMenu[M],function(Q,R){R.call(E)});return}if(P=="onPluginEvent"){var F=M.name||M;var G=s[F];if(G){G._fireEvent("onUpdate",M);G._fireEvent(K,O.slice(3))}return}if(P=="onPlaylistReplace"){p=[];var L=0;m(M,function(){p.push(new h(this,L++,E))})}if(P=="onClipAdd"){if(M.isInStream){return}M=new h(M,K,E);p.splice(K,0,M);for(I=K+1;I<p.length;I++){p[I].index++}}var N=true;if(typeof M=="number"&&M<p.length){D=M;var H=p[M];if(H){N=H._fireEvent(P,K,J)}if(!H||N!==false){N=u._fireEvent(P,K,J,H)}}m(B[P],function(){N=this.call(E,M,K);if(this.cached){B[P].splice(I,1)}if(N===false){return false}I++});return N};function C(){if($f(o)){$f(o).getParent().innerHTML="";w=$f(o).getIndex();a[w]=E}else{a.push(E);w=a.length-1}q=parseInt(o.style.height,10)||o.clientHeight;if(typeof t=="string"){t={src:t}}r=o.id||"fp"+e();v=t.id||r+"_api";t.id=v;z.playerId=r;if(typeof z=="string"){z={clip:{url:z}}}if(typeof z.clip=="string"){z.clip={url:z.clip}}z.clip=z.clip||{};if(o.getAttribute("href",2)&&!z.clip.url){z.clip.url=o.getAttribute("href",2)}u=new h(z.clip,-1,E);z.playlist=z.playlist||[z.clip];var F=0;m(z.playlist,function(){var H=this;if(typeof H=="object"&&H.length){H={url:""+H}}m(z.clip,function(I,J){if(J!==undefined&&H[I]===undefined&&typeof J!="function"){H[I]=J}});z.playlist[F]=H;H=new h(H,F,E);p.push(H);F++});m(z,function(H,I){if(typeof I=="function"){if(u[H]){u[H](I)}else{j(B,H,I)}delete z[H]}});m(z.plugins,function(H,I){if(I){s[H]=new l(H,I,E)}});if(!z.plugins||z.plugins.controls===undefined){s.controls=new l("controls",null,E)}s.canvas=new l("canvas",null,E);t.bgcolor=t.bgcolor||"#000000";t.version=t.version||[9,0];t.expressInstall="http://www.flowplayer.org/swf/expressinstall.swf";function G(H){if(!E.isLoaded()&&E._fireEvent("onBeforeClick")!==false){E.load()}return f(H)}x=o.innerHTML;if(x.replace(/\s/g,"")!==""){if(o.addEventListener){o.addEventListener("click",G,false)}else{if(o.attachEvent){o.attachEvent("onclick",G)}}}else{if(o.addEventListener){o.addEventListener("click",f,false)}E.load()}}if(typeof o=="string"){flashembed.domReady(function(){var F=c(o);if(!F){throw"Flowplayer cannot access element: "+o}else{o=F;C()}})}else{C()}}var a=[];function d(o){this.length=o.length;this.each=function(p){m(o,p)};this.size=function(){return o.length}}window.flowplayer=window.$f=function(){var p=null;var o=arguments[0];if(!arguments.length){m(a,function(){if(this.isLoaded()){p=this;return false}});return p||a[0]}if(arguments.length==1){if(typeof o=="number"){return a[o]}else{if(o=="*"){return new d(a)}m(a,function(){if(this.id()==o.id||this.id()==o||this.getParent()==o){p=this;return false}});return p}}if(arguments.length>1){var r=arguments[1];var q=(arguments.length==3)?arguments[2]:{};if(typeof o=="string"){if(o.indexOf(".")!=-1){var t=[];m(n(o),function(){t.push(new b(this,k(r),k(q)))});return new d(t)}else{var s=c(o);return new b(s!==null?s:o,r,q)}}else{if(o){return new b(o,r,q)}}}return null};i(window.$f,{fireEvent:function(){var o=[].slice.call(arguments);var q=$f(o[0]);return q?q._fireEvent(o.slice(1)):null},addPlugin:function(o,p){b.prototype[o]=p;return $f},each:m,extend:i});if(typeof jQuery=="function"){jQuery.prototype.flowplayer=function(q,p){if(!arguments.length||typeof arguments[0]=="number"){var o=[];this.each(function(){var r=$f(this);if(r){o.push(r)}});return arguments.length?o[arguments[0]]:new d(o)}return this.each(function(){$f(this,k(q),p?k(p):{})})}}})();(function(){var e=typeof jQuery=="function";var i={width:"100%",height:"100%",allowfullscreen:true,allowscriptaccess:"always",quality:"high",version:null,onFail:null,expressInstall:null,w3c:false,cachebusting:false};if(e){jQuery.tools=jQuery.tools||{};jQuery.tools.flashembed={version:"1.0.4",conf:i}}function j(){if(c.done){return false}var l=document;if(l&&l.getElementsByTagName&&l.getElementById&&l.body){clearInterval(c.timer);c.timer=null;for(var k=0;k<c.ready.length;k++){c.ready[k].call()}c.ready=null;c.done=true}}var c=e?jQuery:function(k){if(c.done){return k()}if(c.timer){c.ready.push(k)}else{c.ready=[k];c.timer=setInterval(j,13)}};function f(l,k){if(k){for(key in k){if(k.hasOwnProperty(key)){l[key]=k[key]}}}return l}function g(k){switch(h(k)){case"string":k=k.replace(new RegExp('(["\\\\])',"g"),"\\$1");k=k.replace(/^\s?(\d+)%/,"$1pct");return'"'+k+'"';case"array":return"["+b(k,function(n){return g(n)}).join(",")+"]";case"function":return'"function()"';case"object":var l=[];for(var m in k){if(k.hasOwnProperty(m)){l.push('"'+m+'":'+g(k[m]))}}return"{"+l.join(",")+"}"}return String(k).replace(/\s/g," ").replace(/\'/g,'"')}function h(l){if(l===null||l===undefined){return false}var k=typeof l;return(k=="object"&&l.push)?"array":k}if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){}})}function b(k,n){var m=[];for(var l in k){if(k.hasOwnProperty(l)){m[l]=n(k[l])}}return m}function a(r,t){var q=f({},r);var s=document.all;var n='<object width="'+q.width+'" height="'+q.height+'"';if(s&&!q.id){q.id="_"+(""+Math.random()).substring(9)}if(q.id){n+=' id="'+q.id+'"'}if(q.cachebusting){q.src+=((q.src.indexOf("?")!=-1?"&":"?")+Math.random())}if(q.w3c||!s){n+=' data="'+q.src+'" type="application/x-shockwave-flash"'}else{n+=' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'}n+=">";if(q.w3c||s){n+='<param name="movie" value="'+q.src+'" />'}q.width=q.height=q.id=q.w3c=q.src=null;for(var l in q){if(q[l]!==null){n+='<param name="'+l+'" value="'+q[l]+'" />'}}var o="";if(t){for(var m in t){if(t[m]!==null){o+=m+"="+(typeof t[m]=="object"?g(t[m]):t[m])+"&"}}o=o.substring(0,o.length-1);n+='<param name="flashvars" value=\''+o+"' />"}n+="</object>";return n}function d(m,p,l){var k=flashembed.getVersion();f(this,{getContainer:function(){return m},getConf:function(){return p},getVersion:function(){return k},getFlashvars:function(){return l},getApi:function(){return m.firstChild},getHTML:function(){return a(p,l)}});var q=p.version;var r=p.expressInstall;var o=!q||flashembed.isSupported(q);if(o){p.onFail=p.version=p.expressInstall=null;m.innerHTML=a(p,l)}else{if(q&&r&&flashembed.isSupported([6,65])){f(p,{src:r});l={MMredirectURL:location.href,MMplayerType:"PlugIn",MMdoctitle:document.title};m.innerHTML=a(p,l)}else{if(m.innerHTML.replace(/\s/g,"")!==""){}else{m.innerHTML="<h2>Flash version "+q+" or greater is required</h2><h3>"+(k[0]>0?"Your version is "+k:"You have no flash plugin installed")+"</h3>"+(m.tagName=="A"?"<p>Click here to download latest version</p>":"<p>Download latest version from <a href='http://www.adobe.com/go/getflashplayer'>here</a></p>");if(m.tagName=="A"){m.onclick=function(){location.href="http://www.adobe.com/go/getflashplayer"}}}}}if(!o&&p.onFail){var n=p.onFail.call(this);if(typeof n=="string"){m.innerHTML=n}}if(document.all){window[p.id]=document.getElementById(p.id)}}window.flashembed=function(l,m,k){if(typeof l=="string"){var n=document.getElementById(l);if(n){l=n}else{c(function(){flashembed(l,m,k)});return}}if(!l){return}if(typeof m=="string"){m={src:m}}var o=f({},i);f(o,m);return new d(l,o,k)};f(window.flashembed,{getVersion:function(){var m=[0,0];if(navigator.plugins&&typeof navigator.plugins["Shockwave Flash"]=="object"){var l=navigator.plugins["Shockwave Flash"].description;if(typeof l!="undefined"){l=l.replace(/^.*\s+(\S+\s+\S+$)/,"$1");var n=parseInt(l.replace(/^(.*)\..*$/,"$1"),10);var r=/r/.test(l)?parseInt(l.replace(/^.*r(.*)$/,"$1"),10):0;m=[n,r]}}else{if(window.ActiveXObject){try{var p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")}catch(q){try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");m=[6,0];p.AllowScriptAccess="always"}catch(k){if(m[0]==6){return m}}try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash")}catch(o){}}if(typeof p=="object"){l=p.GetVariable("$version");if(typeof l!="undefined"){l=l.replace(/^\S+\s+(.*)$/,"$1").split(",");m=[parseInt(l[0],10),parseInt(l[2],10)]}}}}return m},isSupported:function(k){var m=flashembed.getVersion();var l=(m[0]>k[0])||(m[0]==k[0]&&m[1]>=k[1]);return l},domReady:c,asString:g,getHTML:a});if(e){jQuery.fn.flashembed=function(l,k){var m=null;this.each(function(){m=flashembed(this,l,k)});return l.api===false?this:m}}})();function css_browser_selector(u){var ua=u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1;},g='gecko',w='webkit',s='safari',o='opera',h=document.documentElement,b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?g+' ff2':is('firefox/3.5')?g+' ff3 ff3_5':is('firefox/3')?g+' ff3':is('gecko/')?g:is('opera')?o+(/version\/(\d+)/.test(ua)?' '+o+RegExp.$1:(/opera(\s|\/)(\d+)/.test(ua)?' '+o+RegExp.$2:'')):is('konqueror')?'konqueror':is('chrome')?w+' chrome':is('iron')?w+' iron':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):is('mozilla/')?g:'',is('j2me')?'mobile':is('iphone')?'iphone':is('ipod')?'ipod':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win':is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js'];c=b.join(' ');h.className+=' '+c;return c;};css_browser_selector(navigator.userAgent);$(function(){$("form#sign_up input[type='text']").tabNavigation();$("form#login input[type='password']").tabNavigation();});$(document).ready(function(){if(!$(document.body).hasClass('index')&&$.cookie('default_domain')!=null){var domain=$.cookie('default_domain');var url="http://"+domain+"/users/badge?format=json&callback=?";$.getJSON(url,function(data){if(data.user_badge){$(".masthead.content .login").replaceWith(data.user_badge);}});}else{$(".masthead.content .login").show();}});$(function(){$('#password_placeholder').focus(function(){$(this).closest('span').hide();$('#password').closest('span').show();$('#password').focus();});$('#resend_registration').click(function(e){e.preventDefault();$(this).closest('form').submit();});$('#password').tabNavigation();function showLoginForm(e){if(e){e.preventDefault();}
$('#login').show();var downArrow="&#9650;";$('#login').parent().addClass('open');$('#login_link').addClass('active');$('#login_link span').html(downArrow);$(document).click(hideIfLoginFormNotClicked);};function hideLoginForm(e){if(e){e.preventDefault();}
$('#login').hide();$('#login').parent().removeClass('open').addClass('hidden');$('#login_link').removeClass('active');var upArrow="&#9660;";if($(document.body).hasClass('ie')){upArrow="&#9660;"}
$('#login_link span').html(upArrow);$(document).unbind('click',hideIfLoginFormNotClicked);};function hideIfLoginFormNotClicked(e){var clicked=$(e.target);if(clicked.parents('#login_link').length==0&&clicked.parents('#login').length==0){$('#login_link').click();}}
if($("#login #errorExplanation").length>0){showLoginForm();$('#login_link').toggle(hideLoginForm,showLoginForm);}else{hideLoginForm();$('#login_link').toggle(showLoginForm,hideLoginForm);}});jQuery.fn.newsFeed=function(maxResults){var MONTH_NAMES=['January','February','March','April','May','June','July','August','September','October','November','December'];if(maxResults==undefined){maxResults=5000;}
return $(this).each(function(){var news=$(this);$.getJSON('http://scnewsfeed.blogspot.com/feeds/posts/default?alt=json-in-script&callback=?&max-results='+maxResults,function(data){$.each(data.feed.entry,function(i,entry){var item=$('<li></li>');var publishedDate=entry.published.$t.split('T')[0];var timeSegments=publishedDate.split('-');var month=parseInt(timeSegments[1].replace(new RegExp('^0',''),''));$('<span class="date"></span>').append(MONTH_NAMES[month-1]).append(' ').append(timeSegments[2].replace(new RegExp('^0'),'')).append(', ').append(timeSegments[0]).appendTo(item);item.append(entry.content.$t);item.appendTo(news);});});});};jQuery.fn.twitterFavorites=function(maxResults){if(maxResults==undefined){maxResults=5000;}
return $(this).each(function(){var news=$(this);$.getJSON('http://twitter.com/favorites/socialcast.json?callback=?',function(data){$.each(data,function(i,entry){if(i>=maxResults){return;}
var item=$('<li></li>');var profileUrl='http://twitter.com/'+entry.user.screen_name;$('<span class="text"></span>').html(entry.text).twitterAutolink().appendTo(item);var user=$('<div class="user"></div>').appendTo(item);$('<a class="profile_pic"></a>').attr('href',profileUrl).html($('<img src=""></img>').attr('src',entry.user.profile_image_url)).appendTo(user);$('<a class="screen_name"></a>').attr('href',profileUrl).html(entry.user.screen_name).appendTo(user);item.appendTo(news);});});});};jQuery.fn.twitterAutolink=function(){return this.each(function(){var urls=/((http|https|ftp):\/\/[\w?=&.\/-;#~%-]+(?![\w\s?&.\/;#~%"=-]*>))/g;$(this).html($(this).html().replace(urls,'<a target="_blank" href="$1">$1</a>'));var usernames=/@(\w+)/g;$(this).html($(this).html().replace(usernames,'<a target="_blank" href="http://twitter.com/$1">@$1</a>'));var hashtags=/#(\w+)/g;$(this).html($(this).html().replace(hashtags,'<a target="_blank" href="http://search.twitter.com/search?q=%23$1">#$1</a>'));});};;(function($){var ver='2.72';if($.support==undefined){$.support={opacity:!($.browser.msie)};}
function debug(s){if($.fn.cycle.debug)
log(s);}
function log(){if(window.console&&window.console.log)
window.console.log('[cycle] '+Array.prototype.join.call(arguments,' '));};$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!='stop'){if(!$.isReady&&o.s){log('DOM not ready, queuing slideshow');$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}
log('terminating; zero elements found by selector'+($.isReady?'':' (DOM not ready)'));return this;}
return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false)
return;if(this.cycleTimeout)
clearTimeout(this.cycleTimeout);this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log('terminating; too few slides: '+els.length);return;}
var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false)
return;var startTime=opts2.continuous?10:getTimeout(opts2.currSlide,opts2.nextSlide,opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10)
startTime=10;debug('first timeout: '+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts2.rev)},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined)
cont.cycleStop=0;if(options===undefined||options===null)
options={};if(options.constructor==String){switch(options){case'stop':cont.cycleStop++;if(cont.cycleTimeout)
clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;$(cont).removeData('cycle.opts');return false;case'pause':cont.cyclePause=1;return false;case'resume':cont.cyclePause=0;if(arg2===true){options=$(cont).data('cycle.opts');if(!options){log('options not found, can not resume');return false;}
if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}
go(options.elements,options,1,1);}
return false;case'prev':case'next':var opts=$(cont).data('cycle.opts');if(!opts){log('options not found, "prev/next" ignored');return false;}
$.fn.cycle[options](opts);return false;default:options={fx:options};};return options;}
else if(options.constructor==Number){var num=options;options=$(cont).data('cycle.opts');if(!options){log('options not found, can not advance slide');return false;}
if(num<0||num>=options.elements.length){log('invalid slide index: '+num);return false;}
options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}
if(typeof arg2=='string')
options.oneTimeFx=arg2;go(options.elements,options,1,num>=options.currSlide);return false;}
return options;};function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute('filter');}
catch(smother){}}};function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop)
opts.countdown=opts.autostopCount||els.length;var cont=$cont[0];$cont.data('cycle.opts',opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype)
opts.after.push(function(){removeFilter(this,opts);});if(opts.continuous)
opts.after.push(function(){go(els,opts,0,!opts.rev);});saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg)
clearTypeFix($slides);if($cont.css('position')=='static')
$cont.css('position','relative');if(opts.width)
$cont.width(opts.width);if(opts.height&&opts.height!='auto')
$cont.height(opts.height);if(opts.startingSlide)
opts.startingSlide=parseInt(opts.startingSlide);if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++)
opts.randomMap.push(i);opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}
else if(opts.startingSlide>=els.length)
opts.startingSlide=0;opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:'absolute',top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css('z-index',z)});$(els[first]).css('opacity',1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width)
$slides.width(opts.width);if(opts.fit&&opts.height&&opts.height!='auto')
$slides.height(opts.height);var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w)w=e.offsetWidth;if(!h)h=e.offsetHeight;maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}
if(maxw>0&&maxh>0)
$cont.css({width:maxw+'px',height:maxh+'px'});}
if(opts.pause)
$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});if(supportMultiTransitions(opts)===false)
return false;var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is('img')){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts,' - img slide not loaded, requeuing slideshow: ',this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options)},opts.requeueTimeout);requeue=true;return false;}
else{log('could not determine size of image: '+this.src,this.cycleW,this.cycleH);}}}
return true;});if(requeue)
return false;opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(':eq('+first+')').css(opts.cssBefore);if(opts.cssFirst)
$($slides[first]).css(opts.cssFirst);if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String)
opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);if(!opts.sync)
opts.speed=opts.speed/2;while((opts.timeout-opts.speed)<250)
opts.timeout+=opts.speed;}
if(opts.easing)
opts.easeIn=opts.easeOut=opts.easing;if(!opts.speedIn)
opts.speedIn=opts.speed;if(!opts.speedOut)
opts.speedOut=opts.speed;opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length)
opts.randomIndex=0;opts.nextSlide=opts.randomMap[opts.randomIndex];}
else
opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init))
init($cont,$slides,opts);else if(opts.fx!='custom'&&!opts.multiFx){log('unknown transition: '+opts.fx,'; slideshow terminating');return false;}}
var e0=$slides[first];if(opts.before.length)
opts.before[0].apply(e0,[e0,e0,opts,true]);if(opts.after.length>1)
opts.after[1].apply(e0,[e0,e0,opts,true]);if(opts.next)
$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1)});if(opts.prev)
$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1)});if(opts.pager)
buildPager(els,opts);exposeAddSlide(opts,els);return opts;};function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});};function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(',')>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,'').split(',');for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log('discarding unknown transition: ',fx);opts.fxs.splice(i,1);i--;}}
if(!opts.fxs.length){log('No valid transitions named; slideshow terminating.');return false;}}
else if(opts.fx=='all'){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx))
opts.fxs.push(p);}}
if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}
debug('randomized fx sequence: ',opts.fxs);}
return true;};function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount)
opts.countdown++;els[prepend?'unshift':'push'](s);if(opts.els)
opts.els[prepend?'unshift':'push'](s);opts.slideCount=els.length;$s.css('position','absolute');$s[prepend?'prependTo':'appendTo'](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}
if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg)
clearTypeFix($s);if(opts.fit&&opts.width)
$s.width(opts.width);if(opts.fit&&opts.height&&opts.height!='auto')
$slides.height(opts.height);s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager)
$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);if($.isFunction(opts.onAddSlide))
opts.onAddSlide($s);else
$s.hide();};}
$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init))
init(opts.$cont,$(opts.elements),opts);};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}
if(opts.busy)
return;var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual)
return;if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end)
opts.end(opts);return;}
if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length)
opts.lastFx=0;fx=opts.fxs[opts.lastFx];opts.currFx=fx;}
if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}
$.fn.cycle.resetState(opts,fx);if(opts.before.length)
$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount)return;o.apply(next,[curr,next,opts,fwd]);});var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount)return;o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn)
opts.fxFn(curr,next,opts,after,fwd);else if($.isFunction($.fn.cycle[opts.fx]))
$.fn.cycle[opts.fx](curr,next,opts,after);else
$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}
opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length)
opts.randomIndex=0;opts.nextSlide=opts.randomMap[opts.randomIndex];}
else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}
if(opts.pager)
$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}
var ms=0;if(opts.timeout&&!opts.continuous)
ms=getTimeout(curr,next,opts,fwd);else if(opts.continuous&&p.cyclePause)
ms=10;if(ms>0)
p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev)},ms);};$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find('a').removeClass('activeSlide').filter('a:eq('+currSlide+')').addClass('activeSlide');};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);while((t-opts.speed)<250)
t+=opts.speed;debug('calculated timeout: '+t+'; speed: '+opts.speed);if(t!==false)
return t;}
return opts.timeout;};$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}
if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2)
opts.randomIndex=els.length-2;else if(opts.randomIndex==-1)
opts.randomIndex=els.length-1;opts.nextSlide=opts.randomMap[opts.randomIndex];}
else if(opts.random){if(++opts.randomIndex==els.length)
opts.randomIndex=0;opts.nextSlide=opts.randomMap[opts.randomIndex];}
else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap)return false;opts.nextSlide=els.length-1;}
else if(opts.nextSlide>=els.length){if(opts.nowrap)return false;opts.nextSlide=0;}}
if($.isFunction(opts.prevNextClick))
opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);go(els,opts,1,val>=0);return false;};function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);};$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder))
a=opts.pagerAnchorBuilder(i,el);else
a='<a href="#">'+(i+1)+'</a>';if(!a)
return;var $a=$(a);if($a.parents('body').length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}
else{$a.appendTo($p);}}
$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}
if($.isFunction(opts.pagerClick))
opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);go(els,opts,1,opts.currSlide<i);return false;});if(opts.pagerEvent!='click')
$a.click(function(){return false;});if(opts.pauseOnPagerHover)
$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd)
hops=c>l?c-l:opts.slideCount-l;else
hops=c<l?l-c:l+opts.slideCount-c;return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?'0'+s:s;};function getBg(e){for(;e&&e.nodeName.toLowerCase()!='html';e=e.parentNode){var v=$.css(e,'background-color');if(v.indexOf('rgb')>=0){var rgb=v.match(/\d+/g);return'#'+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}
if(v&&v!='transparent')
return v;}
return'#ffffff';};$slides.each(function(){$(this).css('background-color',getBg(this));});};$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display='block';if(w!==false&&next.cycleW>0)
opts.cssBefore.width=next.cycleW;if(h!==false&&next.cycleH>0)
opts.cssBefore.height=next.cycleH;opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display='none';$(curr).css('zIndex',opts.slideCount+(rev===true?1:0));$(next).css('zIndex',opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=='number')
speedIn=speedOut=speedOverride;else
speedIn=speedOut=1;easeIn=easeOut=null;}
var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb)};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter)$l.css(opts.cssAfter);if(!opts.sync)fn();});if(opts.sync)fn();};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(':eq('+opts.currSlide+')').css('opacity',0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:'fade',timeout:8000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:'click',pager:null,pagerClick:null,pagerEvent:'click',pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:'auto',startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};}
$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css('overflow','hidden').width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:'show'};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:'show'};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css('overflow','visible').width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}
opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++)
opts.els.push($slides[i]);for(i=0;i<opts.currSlide;i++)
opts.els.push(opts.els.shift());opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++)
fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());if(fwd){for(var i=0,len=opts.els.length;i<len;i++)
$(opts.els[i]).css('z-index',len-i+count);}
else{var z=$(curr).css('z-index');$el.css('z-index',parseInt(z)+1+count);}
$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb)cb();});});};opts.cssBefore={display:'block',opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css('overflow','hidden').width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css('overflow','hidden').height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css('overflow','hidden').height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||'left';var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=='right')
opts.cssBefore.left=-w;else if(d=='up')
opts.cssBefore.top=h;else if(d=='down')
opts.cssBefore.top=-h;else
opts.cssBefore.left=w;});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||'left';var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=='right')
opts.animOut.left=w;else if(d=='up')
opts.animOut.top=-h;else if(d=='down')
opts.animOut.top=h;else
opts.animOut.left=-w;});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css('overflow','visible').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top)
opts.animOut={left:w*2,top:-h/2,opacity:0};else
opts.animOut.opacity=0;});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip))
clip='rect(0px 0px '+h+'px 0px)';else if(/r2l/.test(opts.clip))
clip='rect(0px '+w+'px '+h+'px '+w+'px)';else if(/t2b/.test(opts.clip))
clip='rect(0px '+w+'px 0px 0px)';else if(/b2t/.test(opts.clip))
clip='rect('+h+'px '+w+'px '+h+'px 0px)';else if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip='rect('+top+'px '+left+'px '+top+'px '+left+'px)';}}
opts.cssBefore.clip=opts.cssBefore.clip||clip||'rect(0px 0px 0px 0px)';var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next)return;var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display='block';var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)'});(step++<=count)?setTimeout(f,13):$curr.css('display','none');})();});opts.cssBefore={display:'block',opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);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":72,"face":{"font-family":"Alright Sans","font-weight":275,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 3 0 0 0 0 0 0 0","ascent":"274","descent":"-86","x-height":"4","bbox":"-14 -274.372 352 76","underline-thickness":"18","underline-position":"-18","stemh":"13","stemv":"14","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":92},"A":{"d":"13,0r99,-252r18,0r98,252r-16,0r-27,-72r-128,0r-27,72r-17,0xm121,-240v-22,50,-39,105,-60,156r119,0","w":241,"k":{"-":4,"\u2018":11,"\u2019":18,"J":3,"S":4,"T":27,"W":14,"Y":29,")":4,"]":4,"}":4,"?":16,"'":6,"\"":6,"C":8,"G":8,"O":8,"Q":8,"@":1,"\u00a9":1,"\u00ae":1,"d":4,"q":4,"f":12,"g":3,"c":7,"e":7,"o":7,"s":1,"u":5,"v":10,"w":10,"y":10,"U":10,"t":12,"V":21,"X":3,"*":31,"\\":22,"\u2122":31,"x":1}},"B":{"d":"33,0r0,-252r96,0v94,-6,100,105,33,122v33,6,56,28,56,61v0,44,-30,69,-80,69r-105,0xm48,-12v68,-1,156,13,156,-57v0,-66,-89,-52,-156,-53r0,110xm48,-135r81,0v45,0,64,-24,64,-53v0,-28,-19,-52,-64,-52r-81,0r0,105","w":241,"k":{"\u2018":6,"\u2019":3,"A":3,"J":3,"S":3,"T":11,"W":2,"Y":10,"Z":3,"a":1,")":3,"]":3,"}":3,"?":5,"'":3,"\"":3,"z":3,"f":1,"g":3,"s":1,"u":2,"U":1,"t":1,"V":4,"X":6,"*":6,"\u2122":5,"x":5,"\/":10}},"C":{"d":"23,-129v0,-109,120,-161,202,-103r-8,11v-72,-54,-180,-6,-180,92v0,106,114,155,185,94r9,9v-21,19,-51,30,-84,30v-75,0,-124,-53,-124,-133","w":256,"k":{"-":11,"\u2018":3,"A":1,"J":5,"S":3,"T":4,"W":4,"Y":11,"a":4,"z":3,"C":9,"G":9,"O":9,"Q":9,"&":3,"d":7,"q":7,"f":9,"g":3,"m":2,"n":2,"p":2,"r":2,"c":10,"e":10,"o":10,"s":5,"u":6,"v":13,"w":13,"y":13,"U":2,"t":8,"V":6,"X":8,"*":2,"x":10}},"D":{"d":"33,0r0,-252r67,0v86,0,131,47,131,123v0,81,-42,129,-131,129r-67,0xm48,-13v103,9,169,-22,169,-116v0,-87,-69,-119,-169,-110r0,226","w":253,"k":{"\u2019":7,"A":8,"J":11,"S":7,"T":19,"W":6,"Y":14,"Z":8,"a":3,")":6,"]":6,"}":6,".":12,",":12,"\u201a":12,"?":7,"z":2,"V":8,"X":16,"*":1,"\\":4,"\u2122":8,"x":4,"\/":24}},"E":{"d":"33,0r0,-252r166,0r0,13r-151,0r0,104r136,0r0,13r-136,0r0,109r154,0r0,13r-169,0","w":227,"k":{"-":8,"\u2018":3,"J":4,"S":1,"W":1,"Y":1,"a":4,"?":3,"z":1,"C":7,"G":7,"O":7,"Q":7,"&":2,"@":7,"\u00a9":7,"\u00ae":7,"d":5,"q":5,"f":6,"g":3,"m":1,"n":1,"p":1,"r":1,"c":6,"e":6,"o":6,"s":4,"u":6,"v":9,"w":9,"y":9,"U":1,"t":2,"V":1,"x":3}},"F":{"d":"33,0r0,-252r163,0r0,13r-148,0r0,105r133,0r0,13r-133,0r0,121r-15,0","w":220,"k":{"-":13,"\u2018":3,"A":32,"J":44,"S":10,"W":4,"Y":10,"Z":5,"a":26,".":35,",":35,"\u201a":35,"?":1,"z":24,"C":10,"G":10,"O":10,"Q":10,"&":16,"@":18,"\u00a9":18,"\u00ae":18,":":9,";":9,"d":20,"q":20,"f":8,"g":21,"m":13,"n":13,"p":13,"r":13,"c":22,"e":22,"o":22,"s":17,"u":19,"v":12,"w":12,"y":12,"U":3,"t":5,"i":6,"V":4,"X":16,"x":20,"\/":49}},"G":{"d":"23,-129v0,-108,116,-158,203,-107r-7,11v-77,-47,-182,-3,-182,96v0,104,102,149,180,103r0,-88r-79,0r0,-12r92,0r0,107v-22,15,-52,23,-83,23v-77,0,-124,-52,-124,-133","w":260,"k":{"\u2018":3,"T":4,"W":1,"Y":4,"?":2,"f":5,"g":3,"v":3,"w":3,"y":3,"t":3,"V":2,"X":4,"*":1,"\u2122":3,"x":2,"\/":5}},"H":{"d":"33,0r0,-252r15,0r0,117r154,0r0,-117r14,0r0,252r-14,0r0,-122r-154,0r0,122r-15,0","w":249},"I":{"d":"33,0r0,-252r15,0r0,252r-15,0","w":81},"J":{"d":"21,-49r12,-5v7,22,25,46,61,46v44,0,63,-31,63,-74r0,-170r14,0v-8,103,36,257,-77,256v-43,0,-64,-27,-73,-53","w":203,"k":{"A":10,"J":10,"Y":3,"Z":1,"a":3,".":11,",":11,"\u201a":11,"C":1,"G":1,"O":1,"Q":1,"g":4,"X":2,"x":3,"\/":14}},"K":{"d":"33,0r0,-252r15,0r0,159r141,-159r18,0r-83,93r94,159r-17,0r-86,-149r-67,76r0,73r-15,0","w":236,"k":{"-":16,"\u2018":10,"\u2019":6,"J":8,"S":8,"T":9,"W":3,"Y":3,"Z":1,"a":5,")":3,"]":3,"}":3,"?":6,"'":2,"\"":2,"z":3,"C":12,"G":12,"O":12,"Q":12,"&":2,"@":9,"\u00a9":9,"\u00ae":9,"d":9,"q":9,"f":6,"g":5,"m":3,"n":3,"p":3,"r":3,"c":10,"e":10,"o":10,"s":5,"u":12,"v":5,"w":5,"y":5,"U":9,"t":6,"V":4,"X":4,"*":8,"\u2122":4,"x":8}},"L":{"d":"33,0r0,-252r15,0r0,239r151,0r0,13r-166,0","w":217,"k":{"-":13,"\u2018":13,"\u2019":19,"J":4,"S":2,"T":41,"W":19,"Y":34,"?":20,"'":7,"\"":7,"z":1,"C":16,"G":16,"O":16,"Q":16,"@":8,"\u00a9":8,"\u00ae":8,"d":5,"q":5,"f":6,"g":2,"c":6,"e":6,"o":6,"s":2,"u":6,"v":14,"w":14,"y":14,"U":11,"t":15,"V":22,"X":4,"*":6,"\\":31,"\u2122":36,"x":1}},"M":{"d":"33,0r0,-252r20,0r99,147r99,-147r19,0r0,252r-14,0r0,-236r-104,154r-105,-154r0,236r-14,0","w":303},"N":{"d":"33,0r0,-252r18,0r159,234r0,-234r14,0r0,252r-18,0r-159,-234r0,234r-14,0","w":257},"O":{"d":"23,-128v0,-78,55,-128,122,-128v68,0,123,50,123,128v0,82,-54,132,-123,132v-69,0,-122,-50,-122,-132xm37,-128v0,75,48,120,108,120v61,0,108,-45,108,-120v0,-70,-49,-116,-108,-116v-59,0,-108,46,-108,116","w":290,"k":{"\u2019":7,"A":8,"J":11,"S":7,"T":19,"W":6,"Y":14,"Z":8,"a":3,")":6,"]":6,"}":6,".":12,",":12,"\u201a":12,"?":7,"z":2,"V":8,"X":16,"*":1,"\\":4,"\u2122":8,"x":4,"\/":24}},"P":{"d":"33,0r0,-252r97,0v60,0,81,37,81,72v0,33,-22,73,-82,73r-81,0r0,107r-15,0xm48,-120r81,0v50,0,68,-32,68,-60v0,-29,-17,-60,-67,-60r-82,0r0,120","w":234,"k":{"-":13,"A":27,"J":40,"S":1,"T":4,"W":2,"Y":5,"Z":9,"a":10,")":1,"]":1,"}":1,".":40,",":40,"\u201a":40,"?":2,"z":5,"C":2,"G":2,"O":2,"Q":2,"&":10,"@":9,"\u00a9":9,"\u00ae":9,"d":9,"q":9,"g":12,"m":4,"n":4,"p":4,"r":4,"c":12,"e":12,"o":12,"s":5,"u":3,"U":3,"V":1,"X":21,"x":3,"\/":55}},"Q":{"d":"23,-128v0,-78,55,-128,122,-128v68,0,123,50,123,128v0,39,-12,70,-32,93r35,30r-8,10r-35,-31v-78,67,-205,17,-205,-102xm167,-79r9,-10r50,45v17,-20,27,-49,27,-84v0,-70,-49,-116,-108,-116v-59,0,-108,46,-108,116v0,108,111,154,180,92","w":293,"k":{".":12,"\u2019":7,"A":8,"J":11,"S":7,"T":19,"W":6,"Y":14,"Z":8,"a":3,")":6,"]":6,"}":6,",":12,"\u201a":12,"?":7,"z":2,"V":8,"X":16,"*":1,"\\":4,"\u2122":8,"x":4,"\/":24}},"R":{"d":"33,0r0,-252r101,0v106,1,106,123,21,143r58,109r-16,0r-56,-108r-93,0r0,108r-15,0xm48,-120r85,0v49,0,68,-32,68,-60v0,-29,-18,-60,-67,-60r-86,0r0,120","w":240,"k":{"-":11,"A":3,"J":12,"T":3,"W":2,"Y":8,"a":1,")":3,"]":3,"}":3,"?":2,"C":1,"G":1,"O":1,"Q":1,"&":1,"@":4,"\u00a9":4,"\u00ae":4,"d":3,"q":3,"g":1,"c":4,"e":4,"o":4,"u":4,"U":1,"V":1,"X":5,"\u2122":4}},"S":{"d":"21,-20r8,-12v33,33,152,35,152,-30v0,-84,-155,-31,-155,-129v0,-37,30,-65,81,-65v34,0,60,8,78,17r-6,12v-37,-27,-139,-23,-139,36v0,85,155,29,155,129v0,38,-27,66,-86,66v-37,0,-70,-11,-88,-24","w":216,"k":{"v":6,"\u2018":7,"\u2019":3,"A":1,"S":3,"T":3,"W":4,"Y":6,"Z":1,"a":1,".":1,",":1,"\u201a":1,"?":4,"'":3,"\"":3,"z":5,"C":3,"G":3,"O":3,"Q":3,"f":3,"u":2,"w":6,"y":6,"t":3,"V":4,"X":9,"*":3,"\u2122":3,"x":6,"\/":8}},"T":{"d":"108,0r0,-239r-96,0r0,-13r207,0r0,13r-97,0r0,239r-14,0","w":230,"k":{"-":24,"A":27,"J":40,"S":5,"Y":4,"a":29,".":29,",":29,"\u201a":29,"?":3,"z":28,"C":19,"G":19,"O":19,"Q":19,"&":13,"@":25,"\u00a9":25,"\u00ae":25,":":22,";":22,"d":28,"q":28,"f":9,"g":32,"m":21,"n":21,"p":21,"r":21,"c":32,"e":32,"o":32,"s":28,"u":30,"v":23,"w":23,"y":23,"t":10,"X":2,"x":23,"\/":46}},"U":{"d":"32,-91r0,-161r14,0r0,161v0,54,37,83,82,83v45,0,81,-29,81,-83r0,-161r14,0r0,161v0,63,-42,95,-95,95v-53,0,-96,-32,-96,-95","w":255,"k":{"A":10,"J":10,"Y":3,"Z":1,"a":3,".":11,",":11,"\u201a":11,"C":1,"G":1,"O":1,"Q":1,"g":4,"X":2,"x":3,"\/":14}},"V":{"d":"109,0r-96,-252r16,0r89,238r88,-238r15,0r-95,252r-17,0","w":234,"k":{"\/":39,"x":8,"X":3,"-":15,"A":21,"J":29,"S":4,"Z":1,"a":15,".":35,",":35,"\u201a":35,"z":11,"C":8,"G":8,"O":8,"Q":8,"&":11,"@":18,"\u00a9":18,"\u00ae":18,":":17,";":17,"d":9,"q":9,"f":1,"g":19,"m":10,"n":10,"p":10,"r":10,"c":15,"e":15,"o":15,"s":13,"u":11,"v":5,"w":5,"y":5}},"W":{"d":"95,0r-81,-252r15,0r75,235r71,-235r16,0r72,235r74,-235r15,0r-81,252r-17,0r-71,-234r-71,234r-17,0","w":365,"k":{"-":9,"A":14,"J":33,"S":4,"Z":1,"a":12,".":26,",":26,"\u201a":26,"?":2,"z":9,"C":6,"G":6,"O":6,"Q":6,"&":9,"@":15,"\u00a9":15,"\u00ae":15,":":9,";":9,"d":9,"q":9,"f":1,"g":16,"m":9,"n":9,"p":9,"r":9,"c":13,"e":13,"o":13,"s":12,"u":10,"v":4,"w":4,"y":4,"X":3,"x":8,"\/":26}},"X":{"d":"17,0r94,-129r-90,-123r18,0r81,113r81,-113r17,0r-90,123r94,129r-18,0r-85,-118r-84,118r-18,0","w":238,"k":{"\u2122":1,"*":6,"x":3,"V":3,"-":13,"\u2018":3,"\u2019":3,"A":3,"J":12,"S":9,"T":2,"W":3,"Y":4,"a":6,")":2,"]":2,"}":2,"?":9,"z":5,"C":15,"G":15,"O":15,"Q":15,"&":3,"@":17,"\u00a9":17,"\u00ae":17,"d":9,"q":9,"f":3,"g":3,"m":4,"n":4,"p":4,"r":4,"c":11,"e":11,"o":11,"s":6,"u":13,"v":16,"w":16,"y":16,"U":3,"t":4}},"Y":{"d":"108,0r0,-104r-95,-148r18,0r85,135r84,-135r17,0r-95,148r0,104r-14,0","w":230,"k":{"-":27,"\u2018":1,"A":29,"J":40,"S":7,"T":4,"Z":1,"a":19,".":34,",":34,"\u201a":34,"?":1,"z":19,"C":14,"G":14,"O":14,"Q":14,"&":22,"@":31,"\u00a9":31,"\u00ae":31,":":22,";":22,"d":23,"q":23,"f":8,"g":30,"m":19,"n":19,"p":19,"r":19,"c":26,"e":26,"o":26,"s":20,"u":20,"v":21,"w":21,"y":21,"U":1,"t":9,"X":4,"x":25,"\/":38}},"Z":{"d":"23,0r0,-15r166,-224r-166,0r0,-13r182,0r0,15r-166,224r170,0r0,13r-186,0","w":231,"k":{"-":4,"\u2018":1,"J":5,"S":2,"W":1,"Y":1,"a":3,"?":2,"C":10,"G":10,"O":10,"Q":10,"&":2,"@":6,"\u00a9":6,"\u00ae":6,"d":3,"q":3,"f":2,"g":4,"m":3,"n":3,"p":3,"r":3,"c":5,"e":5,"o":5,"s":5,"u":3,"v":5,"w":5,"y":5,"U":1,"t":3,"V":1,"x":2}},"a":{"d":"19,-39v0,-48,64,-58,115,-60v1,-42,3,-75,-44,-75v-21,0,-43,8,-58,16r-6,-12v37,-25,121,-24,121,35r0,102v0,14,8,22,21,22r0,11v-19,0,-30,-9,-33,-25v-20,35,-116,44,-116,-14xm33,-40v1,50,89,32,101,3r0,-52v-43,2,-101,10,-101,49","w":181,"k":{"\u2018":4,"\u2019":8,"T":24,"W":8,"Y":21,"?":14,"f":2,"g":1,"c":1,"e":1,"o":1,"u":2,"v":5,"w":5,"y":5,"V":11,"*":17,"\\":6,"\u2122":14}},"b":{"d":"33,0r0,-272r14,0r0,116v45,-55,137,-30,137,62v0,94,-89,127,-138,67r-1,27r-12,0xm47,-41v41,57,123,35,123,-53v0,-85,-84,-102,-123,-48r0,101","w":206,"k":{"\u2018":4,"\u2019":3,"A":4,"S":1,"T":28,"W":9,"Y":23,"a":1,".":3,",":3,"\u201a":3,"?":13,"'":4,"\"":4,"z":1,"v":2,"w":2,"y":2,"V":9,"X":9,"\\":6,"x":3,"\/":4}},"c":{"d":"22,-94v0,-82,82,-114,136,-76r-8,11v-43,-33,-114,-7,-114,65v0,78,71,108,118,68r9,9v-55,47,-141,12,-141,-77","w":181,"k":{"-":1,"J":1,"T":18,"W":6,"Y":13,"a":1,"?":5,"z":1,"d":4,"q":4,"g":1,"c":5,"e":5,"o":5,"u":1,"V":7,"X":3,"*":3,"\u2122":9,"x":1}},"d":{"d":"160,-27v-49,60,-138,27,-138,-67v0,-91,92,-118,137,-62r0,-116r14,0r0,272r-11,0xm36,-94v0,88,81,111,123,53r0,-101v-39,-53,-123,-37,-123,48","w":206},"e":{"d":"22,-94v0,-57,36,-92,84,-92v53,1,73,37,70,90v-45,2,-99,-4,-140,2v-8,80,73,107,126,68r8,11v-15,11,-40,19,-64,19v-56,0,-84,-37,-84,-98xm106,-175v-37,0,-64,26,-69,68r126,0v1,-37,-15,-68,-57,-68","w":199,"k":{"\u2018":2,"\u2019":2,"A":1,"J":1,"S":2,"T":21,"W":7,"Y":22,"a":2,"?":6,"z":1,"d":1,"q":1,"g":1,"c":1,"e":1,"o":1,"v":1,"w":1,"y":1,"V":8,"X":4,"*":10,"\\":6,"\u2122":15,"x":6,"\/":3}},"f":{"d":"44,0r0,-170r-35,0r0,-12r35,0v-6,-68,28,-104,86,-89r-3,11v-47,-12,-76,19,-69,78r54,0r0,12r-54,0r0,170r-14,0","w":125,"k":{"-":5,"\u2018":-7,"\u2019":-14,"A":9,"J":14,"a":4,".":15,",":15,"\u201a":15,"'":-3,"\"":-3,"z":1,"&":3,"@":5,"\u00a9":5,"\u00ae":5,"d":10,"q":10,"g":9,"c":13,"e":13,"o":13,"s":3,"u":2,"t":-2,"*":-3,"\\":-22,"x":1,"\/":18}},"g":{"d":"98,76v-85,0,-111,-65,-47,-89v-23,-10,-21,-40,-1,-52v-56,-31,-29,-121,42,-121v18,0,34,5,47,14v13,-9,29,-15,51,-14r0,11v-21,-1,-35,3,-45,9v54,50,-13,142,-87,106v-7,4,-12,11,-12,19v0,22,28,23,59,25v42,2,81,12,81,44v0,31,-31,48,-88,48xm92,-65v33,0,60,-23,60,-55v0,-31,-27,-55,-60,-55v-33,0,-59,24,-59,55v0,32,26,55,59,55xm172,29v0,-36,-73,-29,-108,-38v-20,6,-35,19,-35,37v0,23,25,36,69,36v47,0,74,-12,74,-35","w":200,"k":{"y":-5,"-":3,"\u2018":-1,"\u2019":-1,"A":7,"J":9,"T":14,"W":2,"Y":8,"a":2,"?":5,"'":-1,"\"":-1,"&":3,"@":3,"\u00a9":3,"\u00ae":3,"f":-4,"c":6,"e":6,"o":6,"s":1,"u":1,"t":-5,"j":-13,"V":4,"X":8,"\u2122":3}},"h":{"d":"33,0r0,-272r14,0r0,119v29,-45,125,-48,125,26r0,127r-14,0r0,-127v0,-28,-11,-48,-44,-48v-27,0,-49,15,-67,36r0,139r-14,0","w":203,"k":{"\u2018":1,"\u2019":3,"T":18,"W":6,"Y":17,"?":11,"'":3,"\"":3,"v":3,"w":3,"y":3,"V":11,"*":12,"\\":5,"\u2122":18}},"i":{"d":"33,0r0,-182r14,0r0,182r-14,0xm33,-239r0,-26r14,0r0,26r-14,0","w":80,"k":{"T":4,"Y":1,"g":2,"V":1}},"j":{"d":"36,14r0,-196r14,0r0,195v-1,51,-26,69,-64,61r3,-12v30,5,46,-7,47,-48xm36,-239r0,-26r14,0r0,26r-14,0","w":83,"k":{"T":4,"Y":1,"g":2,"V":1}},"k":{"d":"33,0r0,-272r14,0r0,195r96,-105r17,0r-55,59r66,123r-16,0r-59,-113r-49,53r0,60r-14,0","w":181,"k":{"-":5,"T":16,"W":3,"Y":10,"a":3,"?":7,"@":1,"\u00a9":1,"\u00ae":1,"d":2,"q":2,"g":2,"c":5,"e":5,"o":5,"V":6,"*":5,"\u2122":6}},"l":{"d":"33,0r0,-272r14,0r0,272r-14,0","w":80},"m":{"d":"32,0r0,-182r12,0r2,26v24,-33,103,-46,115,2v29,-43,123,-47,123,27r0,127r-14,0r0,-127v4,-64,-82,-54,-106,-15r1,142r-14,0r0,-127v5,-65,-82,-55,-105,-14r0,141r-14,0","w":314,"k":{"\u2018":1,"\u2019":3,"T":18,"W":6,"Y":17,"?":11,"'":3,"\"":3,"v":3,"w":3,"y":3,"V":11,"*":12,"\\":5,"\u2122":18}},"n":{"d":"32,0r0,-182r12,0r2,28v29,-43,125,-47,125,27r0,127r-14,0r0,-127v0,-28,-11,-48,-44,-48v-27,0,-49,14,-67,36r0,139r-14,0","w":201,"k":{"\u2018":1,"\u2019":3,"T":18,"W":6,"Y":17,"?":11,"'":3,"\"":3,"v":3,"w":3,"y":3,"V":11,"*":12,"\\":5,"\u2122":18}},"o":{"d":"22,-94v0,-57,36,-92,85,-92v48,0,83,35,83,92v0,60,-33,98,-83,98v-50,0,-85,-38,-85,-98xm36,-94v0,52,29,86,71,86v42,0,69,-34,69,-86v0,-49,-29,-80,-69,-80v-41,0,-71,31,-71,80","w":212,"k":{"\u2018":9,"\u2019":8,"A":7,"S":2,"T":32,"W":13,"Y":26,"a":2,")":5,"]":5,"}":5,".":3,",":3,"\u201a":3,"?":16,"'":3,"\"":3,"z":2,"v":3,"w":3,"y":3,"t":2,"V":14,"X":11,"*":16,"\\":8,"\u2122":20,"x":5,"\/":5}},"p":{"d":"47,-27r0,99r-14,0r0,-254r12,0r1,27v44,-57,138,-31,138,61v0,94,-89,127,-137,67xm47,-41v41,57,123,35,123,-53v0,-85,-85,-102,-123,-48r0,101","w":206,"k":{"\u2018":4,"\u2019":3,"A":4,"S":1,"T":28,"W":9,"Y":23,"a":1,".":3,",":3,"\u201a":3,"?":13,"'":4,"\"":4,"z":1,"v":2,"w":2,"y":2,"V":9,"X":9,"\\":6,"x":3,"\/":4}},"q":{"d":"36,-94v0,88,81,111,123,53r0,-101v-39,-53,-123,-37,-123,48xm159,-27v-48,60,-137,27,-137,-67v0,-91,93,-119,137,-61r3,-27r11,0r0,254r-14,0r0,-99","w":206,"k":{"T":27,"W":8,"Y":16,"?":7,"g":1,"V":11,"\u2122":14}},"r":{"d":"32,0r0,-182r12,0r2,32v18,-30,43,-41,80,-34r-3,14v-35,-9,-58,4,-77,35r0,135r-14,0","w":134,"k":{"-":9,"A":9,"J":16,"T":13,"W":1,"Y":2,"Z":2,"a":5,".":18,",":18,"\u201a":18,"?":1,"&":4,"@":3,"\u00a9":3,"\u00ae":3,"d":8,"q":8,"g":9,"c":10,"e":10,"o":10,"s":6,"V":1,"X":2,"\/":19}},"s":{"d":"16,-12r7,-11v24,20,107,24,107,-21v0,-58,-112,-22,-112,-93v0,-51,80,-59,117,-37r-5,12v-28,-17,-98,-19,-98,24v0,58,111,21,111,93v0,56,-95,59,-127,33","w":159,"k":{"\u2018":3,"\u2019":1,"T":16,"W":4,"Y":15,"?":9,"g":1,"c":1,"e":1,"o":1,"s":-1,"u":1,"V":6,"X":1,"*":6,"\u2122":7,"x":2}},"t":{"d":"121,-6v-107,49,-71,-90,-77,-164r-35,0r0,-12r35,0r0,-60r14,0r0,60r54,0r0,12r-54,0r0,125v-4,36,32,45,57,30","w":128,"k":{"-":2,"\u2018":3,"T":12,"W":1,"Y":7,"a":-2,"?":6,"g":1,"c":1,"e":1,"o":1,"V":4,"\u2122":6}},"u":{"d":"87,4v-88,2,-47,-112,-56,-186r14,0r0,127v-4,65,87,54,111,12r0,-139r14,0r0,182r-11,0r-2,-28v-17,18,-42,32,-70,32","w":201,"k":{"T":27,"W":8,"Y":16,"?":7,"g":1,"V":11,"\u2122":14}},"v":{"d":"78,0r-68,-182r16,0r60,166r60,-166r15,0r-68,182r-15,0","w":170,"k":{"-":2,"A":9,"J":6,"T":16,"W":4,"Y":9,"Z":4,"a":1,".":18,",":18,"\u201a":18,"?":8,"d":2,"q":2,"g":8,"c":3,"e":3,"o":3,"s":1,"V":5,"X":10,"\/":16}},"w":{"d":"73,0r-63,-182r15,0r56,167r53,-167r15,0r53,167r56,-167r15,0r-63,182r-16,0r-53,-163r-52,163r-16,0","w":283,"k":{"-":2,"A":9,"J":6,"T":16,"W":4,"Y":9,"Z":4,"a":1,".":18,",":18,"\u201a":18,"?":8,"d":2,"q":2,"g":8,"c":3,"e":3,"o":3,"s":1,"V":5,"X":10,"\/":16}},"x":{"d":"12,0r67,-92r-63,-90r16,0r55,80r55,-80r16,0r-62,90r66,92r-17,0r-58,-82r-58,82r-17,0","w":174,"k":{"\u2122":4,"\\":4,"V":6,"-":6,"J":1,"T":16,"W":4,"Y":13,"a":2,"?":1,"&":1,"@":4,"\u00a9":4,"\u00ae":4,"d":3,"q":3,"g":2,"c":5,"e":5,"o":5,"s":2,"u":3}},"y":{"d":"12,59v23,8,41,6,52,-22r15,-38r-69,-181r16,0r60,162r60,-162r15,0r-84,222v-13,35,-38,42,-69,31","w":171,"k":{"-":2,"A":9,"J":6,"T":16,"W":4,"Y":9,"Z":4,"a":1,".":18,",":18,"\u201a":18,"?":8,"d":2,"q":2,"g":8,"c":3,"e":3,"o":3,"s":1,"V":5,"X":10,"\/":16}},"z":{"d":"20,0r0,-12r116,-158r-113,0r0,-12r130,0r0,11r-116,159r120,0r0,12r-137,0","w":173,"k":{"-":2,"T":13,"W":1,"Y":9,"?":6,"@":1,"\u00a9":1,"\u00ae":1,"c":3,"e":3,"o":3,"V":1,"\u2122":4,"b":1,"h":1,"k":1,"l":1}},"`":{"d":"138,-202r-51,-51r11,-8r50,59r-10,0","w":235},".":{"d":"28,0r0,-35r16,0r0,35r-16,0","k":{"\u2018":29,"\u2019":15,"S":5,"T":32,"W":26,"Y":37,"?":29,"'":11,"\"":11,"C":12,"G":12,"O":12,"Q":12,"d":3,"q":3,"f":4,"c":3,"e":3,"o":3,"v":18,"w":18,"y":18,"U":11,"t":5,"V":35,"*":36,"8":1,"5":6,"9":2,"1":24,"7":8,"6":5,"3":6,"0":6}},",":{"d":"28,0r0,-35r16,0v1,39,1,73,-28,83r-4,-8v16,-9,20,-21,20,-40r-4,0","k":{"\u2018":29,"\u2019":15,"S":5,"T":32,"W":26,"Y":37,"?":29,"'":11,"\"":11,"C":12,"G":12,"O":12,"Q":12,"d":3,"q":3,"f":4,"c":3,"e":3,"o":3,"v":18,"w":18,"y":18,"U":11,"t":5,"V":35,"*":36,"8":1,"5":6,"9":2,"1":24,"7":8,"6":5,"3":6,"0":6}},":":{"d":"28,0r0,-35r16,0r0,35r-16,0xm28,-148r0,-34r16,0r0,34r-16,0"},";":{"d":"28,0r0,-35r16,0v1,39,1,73,-28,83r-4,-8v16,-9,20,-21,20,-40r-4,0xm28,-148r0,-34r16,0r0,34r-16,0"},"!":{"d":"37,-72r-3,-180r16,0r0,90r-4,90r-9,0xm35,0r0,-33r14,0r0,33r-14,0","w":83},"?":{"d":"81,-72v-4,-1,-14,3,-12,-4v0,-67,77,-61,77,-118v0,-55,-95,-65,-121,-23r-9,-9v33,-48,147,-35,144,32v-3,67,-81,60,-79,122xm67,0r0,-33r15,0r0,33r-15,0","w":180,"k":{".":51,",":51,"\u201a":51,"?":3}},"'":{"d":"28,-170r0,-82r17,0r-8,83","w":73,"k":{"A":6,"J":5,".":12,",":12,"\u201a":12,"C":1,"G":1,"O":1,"Q":1,"d":4,"q":4,"g":5,"c":4,"e":4,"o":4,"s":1,"1":-1,"0":4,"4":10}},"\"":{"d":"28,-170r0,-82r17,0r-8,83xm93,-170r0,-82r16,0r-7,83","w":137,"k":{"A":6,"J":5,".":12,",":12,"\u201a":12,"C":1,"G":1,"O":1,"Q":1,"d":4,"q":4,"g":5,"c":4,"e":4,"o":4,"s":1,"1":-1,"0":4,"4":10}},"\u2018":{"d":"44,-204r0,34r-16,0v-1,-39,-1,-73,28,-82r4,7v-16,9,-20,22,-20,41r4,0","k":{"A":12,"J":17,"a":4,".":26,",":26,"\u201a":26,"@":10,"\u00a9":10,"\u00ae":10,"d":4,"q":4,"g":8,"c":9,"e":9,"o":9,"s":5,"X":3,"8":2,"5":5,"9":5,"1":-2,"2":4,"0":6,"4":23,"$":1}},"\u2019":{"d":"28,-217r0,-35r16,0v1,39,1,73,-28,82r-4,-7v16,-9,20,-21,20,-40r-4,0","k":{"A":18,"J":42,"S":2,"a":5,".":31,",":31,"\u201a":31,"C":4,"G":4,"O":4,"Q":4,"d":8,"q":8,"f":2,"g":9,"m":10,"n":10,"p":10,"r":10,"c":20,"e":20,"o":20,"s":21,"X":3,"8":2,"5":2,"9":9,"1":-1,"6":4,"3":3,"2":7,"0":9,"4":35,"$":2}},"\u201a":{"d":"28,0r0,-35r16,0v1,39,1,73,-28,83r-4,-8v16,-9,20,-21,20,-40r-4,0","k":{"\u2018":29,"\u2019":15,"S":5,"T":32,"W":26,"Y":37,"?":29,"'":11,"\"":11,"C":12,"G":12,"O":12,"Q":12,"d":3,"q":3,"f":4,"c":3,"e":3,"o":3,"v":18,"w":18,"y":18,"U":11,"t":5,"V":35,"*":36,"8":1,"5":6,"9":2,"1":24,"7":8,"6":5,"3":6,"0":6}},"_":{"d":"0,4r195,0r0,13r-195,0r0,-13","w":195,"k":{"_":1}},"\/":{"d":"-4,72r161,-344r15,0r-161,344r-15,0","w":168,"k":{"9":1,"4":32,"3":2,"2":4,"1":3,"0":10,"\/":40,"A":22,"J":43,"a":8,"C":4,"G":4,"O":4,"Q":4,"d":4,"q":4,"f":-6,"g":11,"c":7,"e":7,"o":7,"s":6}},"\\":{"d":"11,-272r161,344r-15,0r-161,-344r15,0","w":168,"k":{"9":-4,"8":7,"7":4,"6":22,"5":-4,"3":-2,"1":16,"0":12,"\\":40,"y":16,"V":39,"J":4,"S":4,"T":46,"W":26,"Y":38,"a":3,"C":24,"G":24,"O":24,"Q":24,"d":4,"q":4,"f":4,"c":5,"e":5,"o":5,"u":5,"v":16,"w":16,"U":14,"t":2,"j":-23}},"|":{"d":"39,72r0,-344r14,0r0,344r-14,0","w":91},"*":{"d":"54,-145r17,-50r-53,5r0,-15v17,0,38,4,53,1r-21,-48r14,-4v6,16,7,37,16,50r39,-34r8,11v-14,10,-30,18,-43,30r46,27r-9,12r-41,-32r-13,52","w":150,"k":{".":36,",":36,"\u201a":36}},"-":{"d":"17,-86r0,-13r99,0r0,13r-99,0","w":132,"k":{"A":4,"J":8,"S":9,"T":24,"W":9,"Y":27,"a":1,"z":2,"v":2,"w":2,"y":2,"V":14,"X":13,"x":6,"8":2,"5":1,"1":8,"7":18,"3":12,"2":12,"4":12}},"(":{"d":"23,-100v0,-76,34,-131,71,-172r16,0v-37,37,-73,95,-73,172v0,77,36,133,73,172r-16,0v-37,-41,-71,-96,-71,-172","w":128,"k":{"A":4,"J":6,"S":1,"a":1,"C":6,"G":6,"O":6,"Q":6,"d":3,"q":3,"c":5,"e":5,"o":5,"s":1,"(":11,"[":11,"{":11,"X":2,"1":2,"6":3,"2":2,"0":2,"4":6}},")":{"d":"105,-100v0,76,-33,131,-70,172r-17,0v37,-39,73,-95,73,-172v0,-77,-36,-135,-73,-172r17,0v37,41,70,96,70,172","w":128,"k":{")":11,"]":11,"}":11,"*":1}},"[":{"d":"46,60r56,0r0,12r-70,0r0,-344r70,0r0,12r-56,0r0,320","w":126,"k":{"A":4,"J":6,"S":1,"a":1,"C":6,"G":6,"O":6,"Q":6,"d":3,"q":3,"c":5,"e":5,"o":5,"s":1,"(":11,"[":11,"{":11,"X":2,"1":2,"6":3,"2":2,"0":2,"4":6}},"]":{"d":"25,60r56,0r0,-320r-56,0r0,-12r70,0r0,344r-70,0r0,-12","w":126,"k":{")":11,"]":11,"}":11,"*":1}},"{":{"d":"74,25v0,33,21,38,54,36r0,11v-41,3,-68,-9,-68,-47v0,-51,23,-127,-48,-116r0,-13v32,2,48,-6,48,-37v0,-66,-18,-145,68,-131r0,11v-33,-2,-54,3,-54,36v0,47,12,121,-28,127v39,6,28,77,28,123","w":150,"k":{"A":4,"J":6,"S":1,"a":1,"C":6,"G":6,"O":6,"Q":6,"d":3,"q":3,"c":5,"e":5,"o":5,"s":1,"(":11,"[":11,"{":11,"X":2,"1":2,"6":3,"2":2,"0":2,"4":6}},"}":{"d":"23,61v33,2,54,-4,54,-36v0,-46,-11,-117,28,-123v-40,-6,-28,-80,-28,-127v0,-32,-21,-38,-54,-36r0,-11v41,-3,68,9,68,47v0,52,-25,132,48,121r0,13v-109,-22,23,179,-116,163r0,-11","w":150,"k":{")":11,"]":11,"}":11,"*":1}},"@":{"d":"25,-100v0,-72,58,-131,131,-131v72,0,121,50,121,117v0,55,-34,87,-67,87v-22,0,-34,-14,-33,-32v-21,38,-90,37,-90,-20v0,-41,28,-91,75,-91v18,0,30,10,37,19r5,-16r11,0r-25,90v-7,23,-1,41,21,41v27,0,56,-30,56,-78v0,-63,-45,-106,-111,-106v-67,0,-121,54,-121,120v0,88,102,151,182,103r6,9v-87,52,-198,-15,-198,-112xm100,-80v0,23,10,38,30,38v43,0,57,-61,67,-100v-6,-9,-17,-18,-35,-18v-39,0,-62,47,-62,80","w":302,"k":{"\u2018":10,"A":5,"J":11,"S":2,"T":22,"W":14,"Y":31,"Z":9,"z":1,"V":17,"X":18,"x":4,"1":5,"7":10,"3":3,"2":3,"4":11}},"\u00a9":{"d":"86,-100v0,-60,72,-93,120,-59r-7,9v-40,-29,-101,-1,-101,50v0,57,66,82,104,49r7,8v-44,39,-123,10,-123,-57xm26,-100v0,-72,58,-131,131,-131v73,0,132,59,132,131v0,72,-59,130,-132,130v-73,0,-131,-58,-131,-130xm37,-100v0,66,53,120,120,120v67,0,121,-54,121,-120v0,-66,-54,-120,-121,-120v-67,0,-120,54,-120,120","w":315,"k":{"\u2018":10,"A":5,"J":11,"S":2,"T":22,"W":14,"Y":31,"Z":9,"z":1,"V":17,"X":18,"x":4,"1":5,"7":10,"3":3,"2":3,"4":11}},"\u00ae":{"d":"105,-29r0,-142r64,0v64,0,68,70,14,82v1,2,35,59,36,60r-15,0r-33,-58r-54,0r0,58r-12,0xm117,-98v38,3,97,1,91,-31v6,-32,-53,-34,-91,-31r0,62xm26,-100v0,-72,58,-131,131,-131v73,0,132,59,132,131v0,72,-59,130,-132,130v-73,0,-131,-58,-131,-130xm37,-100v0,66,53,119,120,119v67,0,121,-53,121,-119v0,-66,-54,-120,-121,-120v-67,0,-120,54,-120,120","w":315,"k":{"\u2018":10,"A":5,"J":11,"S":2,"T":22,"W":14,"Y":31,"Z":9,"z":1,"V":17,"X":18,"x":4,"1":5,"7":10,"3":3,"2":3,"4":11}},"&":{"d":"18,-69v0,-35,24,-62,55,-79v-38,-44,-21,-108,41,-108v26,0,45,10,57,24r-9,8v-21,-32,-103,-23,-95,25v10,64,81,107,126,144v13,-19,22,-42,22,-66r13,0v0,27,-10,52,-25,73v17,13,35,25,53,38r-9,10r-52,-37v-23,25,-56,41,-93,41v-56,0,-84,-35,-84,-73xm185,-45v-36,-28,-73,-58,-105,-94v-63,25,-72,130,22,131v32,0,62,-14,83,-37","w":266,"k":{"\u2018":4,"A":3,"J":6,"S":4,"T":29,"W":22,"Y":34,"Z":6,"a":5,"?":8,"z":3,"C":6,"G":6,"O":6,"Q":6,"f":3,"g":5,"c":6,"e":6,"o":6,"u":5,"v":7,"w":7,"y":7,"U":10,"t":6,"V":24,"X":7,"x":1,"8":5,"5":9,"9":6,"1":14,"7":20,"6":9,"3":17,"2":3,"0":5}},"0":{"d":"21,-95v0,-59,42,-100,95,-100v53,0,95,41,95,100v0,59,-42,99,-95,99v-53,0,-95,-40,-95,-99xm35,-95v0,50,35,87,81,87v46,0,80,-37,80,-87v0,-50,-34,-88,-80,-88v-46,0,-81,38,-81,88","w":231,"k":{"\u2122":17,"$":1,"7":15,"4":6,"3":10,"2":4,"1":4,"*":15,"\\":10,"\/":12,"\u2018":8,"\u2019":5,")":2,"]":2,"}":2,".":6,",":6,"\u201a":6,"?":12,"'":3,"\"":3,"&":-2}},"1":{"d":"96,0r-14,0r0,-177r-48,21r-6,-11v23,-8,38,-24,68,-25r0,192","w":149,"k":{"\u2122":5,"9":1,"7":10,"5":1,"3":4,"1":1,"0":1,"*":8,"\\":15,"\/":5,"-":9,"\u2018":14,"\u2019":10,".":4,",":4,"\u201a":4,"?":11,"'":5,"\"":5,"@":11,"\u00a9":11,"\u00ae":11}},"2":{"d":"188,0r-162,0v-8,-99,146,-76,146,-140v0,-61,-108,-49,-136,-13r-9,-9v36,-44,160,-49,160,22v0,73,-146,54,-147,128r148,0r0,12","w":210,"k":{"\u2122":8,"9":1,"8":4,"7":6,"5":1,"4":3,"3":3,"2":2,"*":7,"-":3,"\u2018":2,"?":7}},"3":{"d":"17,51r5,-12v49,27,158,14,153,-51v-3,-48,-54,-56,-106,-53r0,-12v51,4,95,-6,95,-55v0,-28,-26,-52,-70,-52v-27,0,-53,13,-70,30r-9,-9v38,-51,163,-40,163,31v0,33,-21,53,-52,60v32,4,63,23,63,60v0,74,-112,94,-172,63","w":203,"k":{"\u2122":10,"8":1,"7":4,"3":2,"*":7,"\\":4,"\/":-2,"\u2018":6,"\u2019":3,".":-1,",":-1,"\u201a":-1,"?":8,"'":2,"\"":2}},"4":{"d":"17,0r-5,-14r137,-178r17,0r0,180r45,0r0,12r-45,0r0,61r-13,0r0,-61r-136,0xm28,-12r125,0r0,-165","w":221,"k":{"\u2122":15,"9":3,"8":5,"7":6,"6":3,"5":1,"3":2,"*":9,"\\":13,"\/":-4,"-":10,"\u2018":9,"?":17,"'":2,"\"":2,"@":3,"\u00a9":3,"\u00ae":3}},"5":{"d":"19,50r6,-11v50,29,145,11,145,-57v0,-58,-74,-78,-130,-54r-9,-6r3,-113r134,0r1,12r-122,0r-3,95v62,-28,140,0,140,66v0,78,-106,101,-165,68","w":201,"k":{"\u2122":9,"9":1,"8":3,"7":6,"6":2,"5":2,"3":5,"1":3,"0":1,"*":6,"-":9,"\u2018":1,".":-1,",":-1,"\u201a":-1,"?":13,"@":1,"\u00a9":1,"\u00ae":1}},"6":{"d":"23,-117v0,-128,77,-158,163,-128r-6,11v-76,-27,-142,-1,-143,118v40,-57,165,-51,165,39v0,42,-31,81,-85,81v-68,0,-94,-54,-94,-121xm38,-102v4,53,27,94,79,94v45,0,71,-32,71,-68v0,-85,-119,-80,-150,-26","w":222,"k":{"\u2122":5,"$":2,"9":3,"8":1,"7":10,"6":1,"5":6,"4":8,"3":13,"2":7,"1":2,"*":6,"\\":-4,"\/":5,"\u2018":3,"\u2019":1,".":1,",":1,"\u201a":1,"?":9}},"7":{"d":"60,61r112,-240r-155,0r0,-12r169,0r0,10r-110,242r-16,0","w":204,"k":{"$":3,"9":6,"8":6,"5":4,"4":27,"3":2,"2":9,"1":2,"0":8,"\/":17,"-":13,"\u2018":-2,".":18,",":18,"\u201a":18,"?":6,"&":5,"@":6,"\u00a9":6,"\u00ae":6}},"8":{"d":"21,-64v0,-38,33,-59,73,-67v-35,-6,-61,-27,-61,-60v0,-40,36,-65,83,-65v47,0,83,25,83,65v0,33,-26,54,-61,60v40,8,73,29,73,67v0,43,-40,68,-95,68v-54,0,-95,-25,-95,-68xm35,-64v0,35,35,56,81,56v46,0,81,-21,81,-56v0,-37,-39,-60,-81,-60v-41,0,-81,23,-81,60xm116,-136v39,-4,68,-23,68,-55v0,-32,-29,-53,-68,-53v-39,0,-68,21,-68,53v0,32,29,51,68,55","w":231,"k":{"\u2122":8,"$":3,"9":4,"7":6,"6":1,"5":3,"4":5,"3":9,"2":3,"1":3,"*":5,"\/":3,"-":2,"\u2018":2,"\u2019":2,".":1,",":1,"\u201a":1,"?":8}},"9":{"d":"32,50r7,-11v71,34,147,8,146,-114v-39,58,-166,51,-166,-39v0,-42,31,-81,86,-81v68,0,94,55,94,122v0,131,-87,162,-167,123xm33,-114v0,83,123,80,152,26v-4,-53,-28,-95,-81,-95v-45,0,-71,33,-71,69","w":221,"k":{"\u2122":18,"$":1,"7":12,"3":9,"2":3,"1":1,"*":8,"\\":6,"\u2018":9,"\u2019":14,"?":8}},"#":{"d":"26,-130r0,-11r51,0r9,-50r13,0r-9,50r61,0r8,-50r13,0r-8,50r52,0r0,11r-54,0r-11,66r52,0r0,11r-54,0r-9,53r-13,0r9,-53r-60,0r-9,53r-12,0r8,-53r-49,0r0,-11r51,0r11,-66r-50,0xm89,-130r-11,66r60,0r11,-66r-60,0","w":229},"$":{"d":"20,-14r7,-11v14,9,37,16,63,17r0,-83v-33,-7,-67,-15,-67,-54v0,-28,24,-49,66,-50r0,-39r11,0r0,39v24,1,44,6,58,12r-5,12v-13,-6,-31,-11,-53,-12r0,81v33,7,67,15,67,54v0,29,-22,50,-67,52r0,44r-11,0r0,-44v-29,-1,-54,-9,-69,-18xm153,-48v0,-28,-25,-35,-53,-41r0,81v37,-2,53,-18,53,-40xm37,-145v0,28,25,35,53,41r0,-79v-34,1,-53,17,-53,38","w":185,"k":{"9":3,"8":2,"7":4,"5":4,"4":5,"3":5,"1":5}},"+":{"d":"19,-85r0,-13r85,0r0,-84r13,0r0,84r84,0r0,13r-84,0r0,85r-13,0r0,-85r-85,0","w":220},"=":{"d":"19,-128r0,-13r182,0r0,13r-182,0xm19,-42r0,-13r182,0r0,13r-182,0","w":220},"<":{"d":"207,-15r0,15r-191,-84r0,-14r191,-84r0,15r-175,76","w":231},">":{"d":"24,0r0,-15r175,-76r-175,-76r0,-15r191,84r0,14","w":231},"%":{"d":"191,-191r13,0r-142,191r-13,0xm21,-148v0,-26,21,-47,47,-47v26,0,48,21,48,47v0,27,-21,47,-48,47v-27,0,-47,-20,-47,-47xm32,-148v0,21,16,37,37,37v21,0,36,-16,36,-37v0,-21,-15,-36,-36,-36v-21,0,-37,15,-37,36xm140,-43v0,-26,21,-47,48,-47v26,0,47,21,47,47v0,27,-21,47,-47,47v-27,0,-48,-20,-48,-47xm151,-43v0,21,16,37,37,37v20,0,36,-16,36,-37v0,-20,-16,-37,-36,-37v-21,0,-37,17,-37,37","w":255,"k":{"\u2019":11}},"~":{"d":"40,-72v-6,0,-14,2,-12,-6v0,-28,14,-43,36,-43v30,0,52,43,76,43v14,0,26,-10,24,-36v6,0,14,-2,12,6v0,28,-14,43,-36,43v-29,0,-52,-43,-76,-43v-14,0,-26,10,-24,36","w":204},"^":{"d":"36,-202r50,-62r13,0r50,62r-14,0r-43,-45r-43,45r-13,0","w":184},"\u2122":{"d":"162,-119r0,-133r15,0r49,66r49,-66r16,0r0,133r-13,0r0,-117r-52,70r-52,-70r0,117r-12,0xm68,-119r0,-122r-55,0r0,-11r124,0r0,11r-57,0r0,122r-12,0","w":314},"\u00a0":{"w":92}}});Cufon.registerFont({"w":88,"face":{"font-family":"Alright Sans","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 5 0 0 0 0 0 0 0","ascent":"274","descent":"-86","x-height":"4","bbox":"-27 -280 378 76","underline-thickness":"18","underline-position":"-18","stemh":"44","stemv":"55","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86},"A":{"d":"6,0r91,-252r62,0r91,252r-58,0r-16,-47r-96,0r-15,47r-59,0xm128,-192v-14,32,-22,69,-34,103r68,0","w":256,"k":{"-":4,"\u2018":12,"\u2019":17,"J":2,"S":3,"T":27,"U":9,"W":17,"Y":32,"a":1,"&":1,"g":1,"c":5,"e":5,"o":5,")":4,"]":4,"}":4,"?":22,"'":1,"\"":1,"s":1,"v":14,"w":14,"y":14,"C":10,"G":10,"O":10,"Q":10,"@":5,"\u00a9":5,"\u00ae":5,"d":3,"q":3,"f":10,"t":13,"u":6,"V":23,"X":1,"*":31,"\\":23,"\u2122":32,"x":1}},"B":{"d":"24,0r0,-252r106,0v95,-7,117,92,51,121v85,31,49,131,-46,131r-111,0xm78,-44v41,-1,96,9,96,-33v0,-41,-56,-31,-96,-32r0,65xm78,-147v37,1,87,5,87,-31v0,-35,-50,-31,-87,-30r0,61","w":243,"k":{"\u2018":3,"\u2019":4,"A":5,"J":5,"S":3,"T":8,"U":1,"W":4,"Y":12,"Z":1,"a":2,"g":3,")":3,"]":3,"}":3,"?":4,"s":2,"z":1,"C":1,"G":1,"O":1,"Q":1,"f":1,"t":1,"u":1,"V":4,"X":10,"*":4,"\\":2,"\u2122":2,"x":4,"\/":16}},"C":{"d":"15,-127v0,-114,141,-168,223,-97r-30,37v-50,-46,-138,-19,-138,60v0,83,92,110,140,59r32,35v-78,77,-227,27,-227,-94","w":253,"k":{"-":10,"\u2018":1,"A":1,"J":4,"S":1,"T":2,"U":1,"W":2,"Y":5,"a":3,"g":4,"c":9,"e":9,"o":9,"s":4,"v":8,"w":8,"y":8,"z":1,"C":9,"G":9,"O":9,"Q":9,"@":2,"\u00a9":2,"\u00ae":2,"d":6,"q":6,"f":5,"m":2,"n":2,"p":2,"r":2,"t":4,"u":3,"V":3,"X":5,"*":1,"x":6,"\/":9}},"D":{"d":"24,0r0,-252r83,0v90,0,139,47,139,125v0,80,-46,127,-139,127r-83,0xm79,-44v70,7,112,-20,112,-83v0,-61,-43,-88,-112,-81r0,164","w":260,"k":{"\u2019":3,"A":10,"J":12,"S":4,"T":9,"W":9,"Y":20,"Z":5,"a":3,")":8,"]":8,"}":8,".":9,",":9,"\u201a":9,"?":6,"z":1,"V":8,"X":15,"*":3,"\\":6,"\u2122":6,"x":4,"\/":28}},"E":{"d":"24,0r0,-252r184,0r0,48r-129,0r0,55r115,0r0,42r-115,0r0,59r131,0r0,48r-186,0","w":228,"k":{"-":4,"\u2018":1,"J":3,"S":1,"Y":1,"a":3,"g":1,"c":5,"e":5,"o":5,"s":3,"v":4,"w":4,"y":4,"z":1,"C":4,"G":4,"O":4,"Q":4,"d":2,"q":2,"f":3,"m":1,"n":1,"p":1,"r":1,"t":1,"u":3,"V":1,"x":2}},"F":{"d":"24,0r0,-252r181,0r0,48r-126,0r0,59r109,0r0,44r-109,0r0,101r-55,0","w":223,"k":{"-":10,"\u2018":1,"A":27,"J":38,"S":5,"U":1,"W":2,"Y":5,"Z":3,"a":15,"&":11,"g":15,"c":17,"e":17,"o":17,".":28,",":28,"\u201a":28,"?":2,"s":12,"v":6,"w":6,"y":6,"z":14,"C":6,"G":6,"O":6,"Q":6,"@":14,"\u00a9":14,"\u00ae":14,":":9,";":9,"d":14,"q":14,"f":4,"m":8,"n":8,"p":8,"r":8,"t":1,"u":10,"i":5,"V":2,"X":8,"x":10,"\/":46}},"G":{"d":"15,-127v0,-73,51,-129,131,-129v38,0,67,12,93,31r-28,36v-53,-43,-141,-16,-141,62v0,70,65,104,122,74r0,-50r-57,0r0,-37r106,0r0,115v-25,18,-58,29,-95,29v-80,0,-131,-54,-131,-131","w":263,"k":{"\u2018":1,"\u2019":1,"A":1,"T":4,"W":3,"Y":6,"a":3,"g":4,"?":3,"v":3,"w":3,"y":3,"f":3,"t":1,"V":4,"X":5,"*":2,"\u2122":1,"x":4,"\/":11}},"H":{"d":"24,0r0,-252r55,0r0,101r98,0r0,-101r55,0r0,252r-55,0r0,-104r-98,0r0,104r-55,0","w":256},"I":{"d":"24,0r0,-252r55,0r0,252r-55,0","w":103},"J":{"d":"12,-45r41,-27v15,38,75,40,75,-12r0,-168r55,0r0,169v7,103,-136,113,-171,38","w":205,"k":{"A":9,"J":9,"Y":1,"Z":1,"a":3,"g":3,".":8,",":8,"\u201a":8,"C":1,"G":1,"O":1,"Q":1,"X":1,"x":3,"\/":18}},"K":{"d":"24,0r0,-252r55,0r0,118r96,-118r60,0r-79,94r87,158r-62,0r-60,-116r-42,50r0,66r-55,0","w":249,"k":{"-":13,"\u2018":9,"\u2019":4,"J":4,"S":4,"T":4,"U":5,"W":1,"Y":1,"Z":1,"a":4,"&":2,"g":3,"c":10,"e":10,"o":10,"?":6,"s":3,"v":6,"w":6,"y":6,"z":1,"C":14,"G":14,"O":14,"Q":14,"@":11,"\u00a9":11,"\u00ae":11,"d":7,"q":7,"f":4,"m":1,"n":1,"p":1,"r":1,"t":4,"u":7,"V":2,"X":2,"*":7,"\u2122":2,"x":4}},"L":{"d":"24,0r0,-252r55,0r0,205r125,0r0,47r-180,0","w":216,"k":{"-":6,"\u2018":14,"\u2019":18,"J":2,"S":1,"T":32,"U":5,"W":20,"Y":34,"a":1,"g":1,"c":3,"e":3,"o":3,"?":21,"'":3,"\"":3,"s":1,"v":10,"w":10,"y":10,"z":1,"C":9,"G":9,"O":9,"Q":9,"@":3,"\u00a9":3,"\u00ae":3,"d":2,"q":2,"f":3,"t":9,"u":3,"V":22,"X":2,"*":15,"\\":19,"\u2122":34,"x":1}},"M":{"d":"24,0r0,-252r55,0r76,108r76,-108r54,0r0,252r-51,0r0,-174r-79,108r-79,-108r0,174r-52,0","w":309},"N":{"d":"24,0r0,-252r52,0r113,166r0,-166r51,0r0,252r-51,0r-113,-165r0,165r-52,0","w":264},"O":{"d":"15,-127v0,-76,54,-129,130,-129v77,0,131,53,131,129v0,76,-54,131,-131,131v-76,0,-130,-55,-130,-131xm70,-127v0,51,31,85,75,85v44,0,76,-34,76,-85v0,-50,-31,-84,-76,-84v-44,0,-75,34,-75,84","w":290,"k":{"\u2019":3,"A":10,"J":12,"S":4,"T":9,"W":9,"Y":20,"Z":5,"a":3,")":8,"]":8,"}":8,".":9,",":9,"\u201a":9,"?":6,"z":1,"V":8,"X":15,"*":3,"\\":6,"\u2122":6,"x":4,"\/":28}},"P":{"d":"24,0r0,-252r106,0v72,0,97,40,97,80v0,40,-25,81,-97,81r-51,0r0,91r-55,0xm79,-134v42,2,99,3,94,-37v4,-41,-51,-39,-94,-37r0,74","w":243,"k":{"-":12,"\u2019":1,"A":28,"J":42,"S":3,"T":2,"U":1,"W":5,"Y":10,"Z":5,"a":7,"&":10,"g":9,"c":9,"e":9,"o":9,")":4,"]":4,"}":4,".":40,",":40,"\u201a":40,"?":5,"s":4,"z":3,"C":1,"G":1,"O":1,"Q":1,"@":8,"\u00a9":8,"\u00ae":8,"d":6,"q":6,"m":3,"n":3,"p":3,"r":3,"u":3,"V":3,"X":17,"\\":2,"x":3,"\/":59}},"Q":{"d":"15,-127v0,-76,54,-129,130,-129v111,0,167,128,105,211r28,24r-27,30r-30,-27v-86,56,-206,-2,-206,-109xm145,-86r25,-28r40,36v29,-55,-1,-133,-65,-133v-44,0,-75,34,-75,84v0,67,59,104,114,75","w":292,"k":{".":9,"\u2019":3,"A":10,"J":12,"S":4,"T":9,"W":9,"Y":20,"Z":5,"a":3,")":8,"]":8,"}":8,",":9,"\u201a":9,"?":6,"z":1,"V":8,"X":15,"*":3,"\\":6,"\u2122":6,"x":4,"\/":28}},"R":{"d":"24,0r0,-252r111,0v114,-2,125,113,51,149r48,103r-58,0r-39,-94r-58,0r0,94r-55,0xm79,-134v43,1,98,5,98,-37v0,-43,-54,-38,-98,-37r0,74","w":252,"k":{"-":9,"\u2019":2,"A":4,"J":12,"S":2,"T":3,"U":2,"W":6,"Y":13,"a":3,"&":2,"g":2,"c":5,"e":5,"o":5,"?":3,"C":2,"G":2,"O":2,"Q":2,"@":5,"\u00a9":5,"\u00ae":5,"d":3,"q":3,"u":3,"V":3,"X":5,"*":1,"\\":4,"\u2122":4}},"S":{"d":"14,-23r26,-43v22,13,49,23,74,23v27,0,41,-12,41,-28v0,-47,-136,-15,-136,-110v0,-41,34,-75,92,-75v33,0,63,8,91,21r-20,43v-32,-18,-107,-30,-107,10v0,46,136,14,136,111v0,42,-32,75,-97,75v-38,0,-76,-12,-100,-27","w":227,"k":{"v":8,"\u2018":6,"\u2019":6,"A":5,"S":3,"T":5,"W":4,"Y":6,"a":4,"g":2,".":1,",":1,"\u201a":1,"?":4,"s":3,"w":8,"y":8,"z":4,"C":3,"G":3,"O":3,"Q":3,"f":3,"t":3,"u":2,"V":4,"X":8,"*":5,"\\":2,"\u2122":4,"x":7,"\/":15}},"T":{"d":"93,0r0,-204r-84,0r0,-48r221,0r0,48r-83,0r0,204r-54,0","w":239,"k":{"-":24,"A":27,"J":40,"S":2,"Y":2,"a":17,"&":10,"g":21,"c":24,"e":24,"o":24,".":27,",":27,"\u201a":27,"?":1,"s":17,"v":12,"w":12,"y":12,"z":14,"C":8,"G":8,"O":8,"Q":8,"@":21,"\u00a9":21,"\u00ae":21,":":22,";":22,"d":18,"q":18,"f":4,"m":12,"n":12,"p":12,"r":12,"t":5,"u":16,"X":2,"x":12,"\/":43}},"U":{"d":"23,-96r0,-156r55,0r0,156v0,34,21,54,52,54v30,0,51,-20,51,-54r0,-156r55,0r0,156v0,67,-44,100,-106,100v-62,0,-107,-33,-107,-100","w":259,"k":{"A":9,"J":9,"Y":1,"Z":1,"a":3,"g":3,".":8,",":8,"\u201a":8,"C":1,"G":1,"O":1,"Q":1,"X":1,"x":3,"\/":18}},"V":{"d":"96,0r-90,-252r59,0r63,189r62,-189r59,0r-91,252r-62,0","w":254,"k":{"\/":48,"x":6,"X":1,"-":12,"\u2018":2,"A":23,"J":32,"S":6,"Z":1,"a":15,"&":13,"g":19,"c":15,"e":15,"o":15,".":28,",":28,"\u201a":28,"?":1,"s":14,"v":5,"w":5,"y":5,"z":8,"C":8,"G":8,"O":8,"Q":8,"@":19,"\u00a9":19,"\u00ae":19,":":17,";":17,"d":11,"q":11,"f":1,"m":8,"n":8,"p":8,"r":8,"u":8}},"W":{"d":"87,0r-79,-252r57,0r53,174r50,-174r50,0r51,174r52,-174r57,0r-80,252r-55,0r-50,-171r-50,171r-56,0","w":385,"k":{"-":8,"\u2018":2,"A":17,"J":34,"S":5,"a":15,"&":14,"g":16,"c":16,"e":16,"o":16,".":22,",":22,"\u201a":22,"?":1,"s":13,"v":4,"w":4,"y":4,"z":6,"C":9,"G":9,"O":9,"Q":9,"@":16,"\u00a9":16,"\u00ae":16,":":9,";":9,"d":10,"q":10,"f":1,"m":9,"n":9,"p":9,"r":9,"u":6,"X":1,"x":5,"\/":39}},"X":{"d":"9,0r86,-129r-83,-123r66,0r53,81r53,-81r64,0r-83,123r86,129r-66,0r-56,-86r-56,86r-64,0","w":259,"k":{"\u2122":2,"*":5,"x":1,"V":1,"-":13,"\u2018":8,"\u2019":1,"A":1,"J":9,"S":7,"T":2,"U":1,"W":1,"Y":2,"a":7,"&":4,"g":1,"c":14,"e":14,"o":14,")":2,"]":2,"}":2,"?":9,"s":6,"v":15,"w":15,"y":15,"z":3,"C":15,"G":15,"O":15,"Q":15,"@":18,"\u00a9":18,"\u00ae":18,"d":11,"q":11,"f":3,"m":3,"n":3,"p":3,"r":3,"t":5,"u":11}},"Y":{"d":"99,0r0,-101r-94,-151r63,0r59,97r59,-97r62,0r-94,151r0,101r-55,0","w":253,"k":{"-":25,"\u2018":3,"A":32,"J":43,"S":12,"T":2,"U":1,"Z":1,"a":23,"&":24,"g":32,"c":31,"e":31,"o":31,".":33,",":33,"\u201a":33,"?":4,"s":24,"v":19,"w":19,"y":19,"z":17,"C":20,"G":20,"O":20,"Q":20,"@":36,"\u00a9":36,"\u00ae":36,":":22,";":22,"d":25,"q":25,"f":9,"m":18,"n":18,"p":18,"r":18,"t":6,"u":18,"X":2,"*":2,"x":20,"\/":53}},"Z":{"d":"17,0r0,-41r127,-162r-127,0r0,-49r199,0r0,41r-127,162r131,0r0,49r-203,0","w":234,"k":{"-":2,"\u2018":2,"J":2,"S":1,"U":1,"Y":1,"a":1,"&":1,"g":2,"c":2,"e":2,"o":2,"s":3,"v":3,"w":3,"y":3,"C":5,"G":5,"O":5,"Q":5,"@":3,"\u00a9":3,"\u00ae":3,"f":1,"m":1,"n":1,"p":1,"r":1,"t":1,"u":1,"V":1,"*":1,"x":1}},"a":{"d":"14,-47v0,-42,40,-64,112,-69v2,-24,-1,-40,-27,-40v-18,0,-38,7,-62,19r-18,-39v55,-35,159,-31,159,45r0,81v0,10,6,15,16,15r0,36v-36,0,-51,-6,-62,-24v-28,41,-118,36,-118,-24xm67,-53v1,31,49,20,59,3r0,-37v-30,2,-59,10,-59,34","w":203,"k":{"\u2018":6,"\u2019":8,"T":17,"W":13,"Y":27,"g":1,"c":1,"e":1,"o":1,"?":14,"'":1,"\"":1,"v":6,"w":6,"y":6,"f":1,"t":1,"u":1,"V":14,"*":14,"\\":9,"\u2122":14}},"b":{"d":"23,0r0,-272r53,0r0,100v50,-53,130,-22,130,73v0,101,-82,130,-133,76r-4,23r-46,0xm76,-55v32,37,77,18,77,-44v0,-62,-47,-73,-77,-38r0,82","w":219,"k":{"\u2018":1,"\u2019":4,"A":3,"T":18,"W":10,"Y":25,"a":1,".":1,",":1,"\u201a":1,"?":14,"'":1,"\"":1,"v":3,"w":3,"y":3,"z":5,"V":11,"X":11,"\\":5,"x":6,"\/":5}},"c":{"d":"13,-98v0,-92,101,-128,167,-76r-27,34v-33,-29,-87,-16,-87,42v0,60,53,75,87,44r29,31v-62,57,-169,21,-169,-75","w":189,"k":{"-":1,"J":1,"T":10,"W":5,"Y":12,"g":1,"c":6,"e":6,"o":6,"?":5,"z":1,"d":3,"q":3,"u":1,"V":5,"X":2,"\u2122":2,"x":1}},"d":{"d":"147,-23v-50,53,-134,26,-134,-76v0,-94,80,-126,131,-73r0,-100r53,0r0,272r-47,0xm66,-99v0,63,45,81,78,44r0,-82v-30,-35,-78,-25,-78,38","w":218,"k":{"g":1}},"e":{"d":"13,-98v0,-62,43,-100,97,-100v63,0,95,48,84,112r-127,0v1,59,65,57,101,32r22,33v-68,52,-177,25,-177,-77xm112,-160v-22,0,-39,15,-44,43r78,0v0,-24,-9,-43,-34,-43","w":210,"k":{"\u2019":2,"A":3,"J":1,"T":15,"W":13,"Y":26,"a":3,"g":1,"?":5,"v":3,"w":3,"y":3,"z":3,"V":12,"X":8,"*":6,"\\":7,"\u2122":12,"x":9,"\/":5}},"f":{"d":"36,0r0,-153r-30,0r0,-37r30,0v-8,-79,63,-99,124,-76r-13,36v-30,-12,-67,-3,-58,40r49,0r0,37r-49,0r0,153r-53,0","w":149,"k":{"-":5,"\u2018":-5,"\u2019":-13,"A":9,"J":23,"a":4,"&":1,"g":4,"c":12,"e":12,"o":12,")":-7,"]":-7,"}":-7,".":14,",":14,"\u201a":14,"?":-2,"'":-15,"\"":-15,"s":1,"z":1,"@":4,"\u00a9":4,"\u00ae":4,"d":8,"q":8,"u":1,"i":-4,"*":-5,"\\":-26,"\u2122":-9,"x":1,"\/":22,"b":-4,"h":-4,"k":-4,"l":-4}},"g":{"d":"103,76v-88,0,-128,-54,-69,-91v-20,-18,-13,-47,8,-58v-56,-38,-21,-125,56,-125v22,0,41,7,55,17v13,-10,29,-17,54,-17r0,35v-13,0,-24,1,-34,4v30,63,-33,119,-105,99v-5,2,-7,5,-7,10v0,9,11,14,52,15v57,2,89,17,89,54v0,35,-32,57,-99,57xm98,-91v20,0,33,-14,33,-36v0,-22,-13,-36,-33,-36v-19,0,-33,14,-33,36v0,22,14,36,33,36xm107,6v-15,0,-28,-2,-39,-5v-24,22,-16,42,34,42v35,0,51,-6,51,-18v0,-13,-10,-18,-46,-19","w":214,"k":{"-":4,"\u2018":-1,"\u2019":-1,"J":13,"T":7,"W":4,"Y":5,"a":4,"&":3,"c":9,"e":9,"o":9,".":2,",":2,"\u201a":2,"?":3,"'":-3,"\"":-3,"s":4,"@":4,"\u00a9":4,"\u00ae":4,"f":-2,"t":-2,"u":1,"j":-21,"V":2,"X":4,"\\":2}},"h":{"d":"23,0r0,-272r53,0r0,101v34,-44,119,-34,119,43r0,128r-53,0r0,-129v1,-41,-50,-33,-66,-7r0,136r-53,0","w":215,"k":{"\u2018":1,"\u2019":3,"T":10,"W":12,"Y":27,")":1,"]":1,"}":1,"?":10,"'":1,"\"":1,"v":4,"w":4,"y":4,"V":9,"*":8,"\\":5,"\u2122":13}},"i":{"d":"23,0r0,-190r53,0r0,190r-53,0xm23,-225r0,-45r53,0r0,45r-53,0","w":97,"k":{"T":9,"Y":2,"g":1,"j":-9,"V":2}},"j":{"d":"27,5r0,-195r53,0r0,192v5,68,-56,86,-107,66r12,-38v21,6,42,6,42,-25xm27,-224r0,-46r53,0r0,46r-53,0","w":102,"k":{"T":9,"Y":2,"g":1,"j":-9,"V":2}},"k":{"d":"23,0r0,-272r53,0r0,163r70,-84r56,0r-60,68r64,125r-59,0r-40,-85r-31,36r0,49r-53,0","w":210,"k":{"-":5,"J":1,"T":10,"U":1,"W":2,"Y":5,"a":3,"g":1,"c":12,"e":12,"o":12,"C":3,"G":3,"O":3,"Q":3,"@":3,"\u00a9":3,"\u00ae":3,"d":6,"q":6,"V":2,"\u2122":2}},"l":{"d":"23,0r0,-272r53,0r0,272r-53,0","w":98,"k":{"g":1}},"m":{"d":"22,0r0,-193r50,0r2,21v26,-30,91,-38,108,2v40,-46,123,-36,123,41r0,129r-52,0r0,-130v0,-40,-45,-32,-63,-8r0,138r-52,0r0,-130v0,-41,-48,-31,-63,-6r0,136r-53,0","w":326,"k":{"\u2018":1,"\u2019":3,"T":10,"W":12,"Y":27,")":1,"]":1,"}":1,"?":10,"'":1,"\"":1,"v":4,"w":4,"y":4,"V":9,"*":8,"\\":5,"\u2122":13}},"n":{"d":"22,0r0,-193r50,0r2,22v34,-44,120,-34,120,43r0,128r-53,0r0,-129v1,-41,-50,-33,-66,-7r0,136r-53,0","w":214,"k":{"\u2018":1,"\u2019":3,"T":10,"W":12,"Y":27,")":1,"]":1,"}":1,"?":10,"'":1,"\"":1,"v":4,"w":4,"y":4,"V":9,"*":8,"\\":5,"\u2122":13}},"o":{"d":"13,-99v0,-60,42,-99,98,-99v55,0,96,39,96,99v0,64,-38,103,-96,103v-58,0,-98,-39,-98,-103xm67,-98v0,38,16,63,44,63v27,0,43,-25,43,-63v0,-36,-17,-60,-43,-60v-27,0,-44,24,-44,60","w":221,"k":{"z":6,"\u2018":2,"\u2019":6,"A":4,"J":1,"T":24,"W":15,"Y":31,"a":4,"g":1,")":3,"]":3,"}":3,".":1,",":1,"\u201a":1,"?":19,"v":5,"w":5,"y":5,"t":1,"V":15,"X":14,"*":12,"\\":8,"\u2122":14,"x":10,"\/":9}},"p":{"d":"75,-21r0,93r-53,0r0,-265r48,0r4,23v49,-56,131,-25,131,71v0,99,-78,129,-130,78xm75,-55v32,37,78,18,78,-44v0,-62,-48,-73,-78,-38r0,82","w":218,"k":{"\u2018":1,"\u2019":4,"A":3,"T":18,"W":10,"Y":25,"a":1,".":1,",":1,"\u201a":1,"?":14,"'":1,"\"":1,"v":3,"w":3,"y":3,"z":5,"V":11,"X":11,"\\":5,"x":6,"\/":5}},"q":{"d":"66,-99v0,63,45,81,78,44r0,-82v-29,-35,-78,-25,-78,38xm144,-21v-52,50,-131,22,-131,-78v0,-96,83,-127,132,-71r4,-23r48,0r0,265r-53,0r0,-93","w":218,"k":{"T":10,"W":3,"Y":5,"g":1,"?":3,"V":2,"\u2122":6}},"r":{"d":"22,0r0,-193r49,0r3,30v19,-33,44,-42,79,-32r-8,48v-32,-11,-56,1,-70,31r0,116r-53,0","w":159,"k":{"-":9,"A":13,"J":29,"T":10,"W":2,"Y":2,"Z":2,"a":5,"&":3,"g":6,"c":10,"e":10,"o":10,".":21,",":21,"\u201a":21,"?":2,"s":6,"@":3,"\u00a9":3,"\u00ae":3,"d":6,"q":6,"V":2,"X":7,"\/":23}},"s":{"d":"11,-17r20,-36v19,10,40,17,60,17v18,0,29,-5,29,-18v0,-33,-105,-12,-105,-84v0,-66,91,-74,149,-43r-19,37v-18,-9,-39,-14,-52,-14v-16,0,-26,6,-26,18v0,32,104,10,104,83v0,72,-111,72,-160,40","w":183,"k":{"\u2018":2,"\u2019":1,"A":2,"T":12,"W":5,"Y":14,"g":2,"c":1,"e":1,"o":1,"?":13,"s":1,"@":1,"\u00a9":1,"\u00ae":1,"u":1,"V":7,"X":8,"*":6,"\\":1,"\u2122":4,"x":2,"\/":4}},"t":{"d":"96,4v-77,0,-58,-90,-60,-160r-30,0r0,-37r30,0r0,-49r53,0r0,49r53,0r0,37r-53,0r0,96v-2,28,29,25,44,13r20,32v-15,12,-36,19,-57,19","w":157,"k":{"-":2,"\u2019":1,"T":9,"W":4,"Y":4,"g":3,"c":6,"e":6,"o":6,"?":3,"@":1,"\u00a9":1,"\u00ae":1,"d":3,"q":3,"V":5,"*":1,"\u2122":2}},"u":{"d":"82,4v-89,3,-54,-118,-61,-197r53,0r0,129v-2,41,52,33,67,7r0,-136r53,0r0,193r-49,0r-4,-22v-14,14,-35,26,-59,26","w":215,"k":{"T":10,"W":3,"Y":5,"g":1,"?":3,"V":2,"\u2122":6}},"v":{"d":"69,0r-64,-193r52,0r42,136r41,-136r50,0r-64,193r-57,0","w":195,"k":{"-":2,"A":13,"J":18,"T":5,"W":2,"Y":2,"a":3,"&":1,"g":7,"c":5,"e":5,"o":5,".":14,",":14,"\u201a":14,"?":2,"s":2,"@":1,"\u00a9":1,"\u00ae":1,"d":3,"q":3,"V":2,"X":4,"\/":19}},"w":{"d":"68,0r-63,-193r52,0r39,125r35,-125r43,0r36,125r38,-125r51,0r-63,193r-48,0r-36,-119r-36,119r-48,0","w":304,"k":{"-":2,"A":13,"J":18,"T":5,"W":2,"Y":2,"a":3,"&":1,"g":7,"c":5,"e":5,"o":5,".":14,",":14,"\u201a":14,"?":2,"s":2,"@":1,"\u00a9":1,"\u00ae":1,"d":3,"q":3,"V":2,"X":4,"\/":19}},"x":{"d":"6,0r62,-98r-60,-95r55,0r36,60r35,-60r55,0r-59,95r60,98r-54,0r-38,-62r-38,62r-54,0","w":196,"k":{"\u2122":4,"\\":4,"V":2,"-":6,"A":1,"J":4,"T":5,"W":2,"Y":12,"a":3,"&":4,"g":1,"c":10,"e":10,"o":10,"?":3,"s":2,"C":1,"G":1,"O":1,"Q":1,"@":7,"\u00a9":7,"\u00ae":7,"d":6,"q":6,"u":3}},"y":{"d":"18,27v21,7,44,13,51,-13r7,-16r-71,-191r53,0r44,127r42,-127r51,0r-72,204v-24,70,-62,73,-120,57","w":200,"k":{"-":2,"A":13,"J":18,"T":5,"W":2,"Y":2,"a":3,"&":1,"g":7,"c":5,"e":5,"o":5,".":14,",":14,"\u201a":14,"?":2,"s":2,"@":1,"\u00a9":1,"\u00ae":1,"d":3,"q":3,"V":2,"X":4,"\/":19}},"z":{"d":"15,0r0,-35r92,-118r-89,0r0,-40r153,0r0,35r-90,118r94,0r0,40r-160,0","w":187,"k":{"-":1,"T":5,"W":2,"Y":9,"&":1,"c":4,"e":4,"o":4,"?":4,"V":2,"\u2122":2,"b":1,"h":1,"k":1,"l":1}},"`":{"d":"114,-213r-48,-44r35,-23r46,67r-33,0","w":211},".":{"d":"17,0r0,-55r55,0r0,55r-55,0","k":{"\u2018":27,"\u2019":14,"S":3,"T":27,"U":8,"W":22,"Y":33,"c":2,"e":2,"o":2,"?":30,"'":8,"\"":8,"v":14,"w":14,"y":14,"C":9,"G":9,"O":9,"Q":9,"d":1,"q":1,"f":2,"t":7,"V":28,"*":37,"8":1,"5":3,"9":4,"1":15,"7":6,"6":3,"3":5,"0":5}},",":{"d":"17,0r0,-55r55,0v3,56,-2,98,-47,109r-11,-20v17,-6,27,-19,27,-34r-24,0","k":{"\u2018":27,"\u2019":14,"S":3,"T":27,"U":8,"W":22,"Y":33,"c":2,"e":2,"o":2,"?":30,"'":8,"\"":8,"v":14,"w":14,"y":14,"C":9,"G":9,"O":9,"Q":9,"d":1,"q":1,"f":2,"t":7,"V":28,"*":37,"8":1,"5":3,"9":4,"1":15,"7":6,"6":3,"3":5,"0":5}},":":{"d":"17,0r0,-55r55,0r0,55r-55,0xm17,-139r0,-55r55,0r0,55r-55,0"},";":{"d":"17,0r0,-55r55,0v3,56,-2,98,-47,109r-11,-20v17,-6,27,-19,27,-34r-24,0xm17,-139r0,-55r55,0r0,55r-55,0"},"!":{"d":"36,-78v-5,-57,-15,-110,-13,-174r54,0v2,65,-9,117,-14,174r-27,0xm23,0r0,-47r54,0r0,47r-54,0","w":100},"?":{"d":"71,-78v-16,-66,63,-69,63,-107v0,-41,-67,-32,-90,-4r-32,-29v39,-56,176,-51,174,29v-1,68,-78,61,-76,111r-39,0xm63,0r0,-47r54,0r0,47r-54,0","w":201,"k":{".":51,",":51,"\u201a":51,"?":3}},"'":{"d":"15,-145r0,-107r55,0r-25,107r-30,0","w":83,"k":{"A":5,"J":17,"S":3,"a":4,"g":8,"c":6,"e":6,"o":6,".":19,",":19,"\u201a":19,"s":5,"C":4,"G":4,"O":4,"Q":4,"d":5,"q":5,"8":2,"5":4,"9":3,"1":-3,"6":2,"3":6,"0":9,"4":22,"2":2}},"\"":{"d":"15,-145r0,-107r55,0r-25,107r-30,0xm94,-145r0,-107r55,0r-25,107r-30,0","w":163,"k":{"A":5,"J":17,"S":3,"a":4,"g":8,"c":6,"e":6,"o":6,".":19,",":19,"\u201a":19,"s":5,"C":4,"G":4,"O":4,"Q":4,"d":5,"q":5,"8":2,"5":4,"9":3,"1":-3,"6":2,"3":6,"0":9,"4":22,"2":2}},"\u2018":{"d":"72,-200r0,55r-55,0v-3,-55,1,-98,46,-109r11,20v-17,6,-26,19,-26,34r24,0","k":{"A":13,"J":27,"a":4,"g":5,"c":2,"e":2,"o":2,".":31,",":31,"\u201a":31,"s":4,"@":10,"\u00a9":10,"\u00ae":10,"d":1,"q":1,"X":3,"8":4,"5":5,"9":4,"1":-5,"3":4,"0":3,"4":25,"2":3,"$":2}},"\u2019":{"d":"17,-197r0,-55r55,0v3,56,-2,98,-47,109r-11,-20v17,-6,27,-19,27,-34r-24,0","k":{"A":16,"J":38,"S":1,"a":5,"g":14,"c":16,"e":16,"o":16,".":31,",":31,"\u201a":31,"s":14,"z":1,"C":8,"G":8,"O":8,"Q":8,"d":6,"q":6,"f":1,"m":9,"n":9,"p":9,"r":9,"X":1,"8":3,"5":7,"9":12,"1":-7,"6":3,"3":3,"0":12,"4":39,"2":6,"$":4}},"\u201a":{"d":"17,0r0,-55r55,0v3,56,-2,98,-47,109r-11,-20v17,-6,27,-19,27,-34r-24,0","k":{"\u2018":27,"\u2019":14,"S":3,"T":27,"U":8,"W":22,"Y":33,"c":2,"e":2,"o":2,"?":30,"'":8,"\"":8,"v":14,"w":14,"y":14,"C":9,"G":9,"O":9,"Q":9,"d":1,"q":1,"f":2,"t":7,"V":28,"*":37,"8":1,"5":3,"9":4,"1":15,"7":6,"6":3,"3":5,"0":5}},"_":{"d":"0,5r200,0r0,44r-200,0r0,-44","w":199,"k":{"_":1}},"\/":{"d":"-4,72r158,-344r50,0r-158,344r-50,0","w":200,"k":{"9":3,"5":2,"4":38,"3":2,"2":4,"1":1,"0":13,"\/":40,"A":23,"J":43,"S":2,"a":8,"g":15,"c":9,"e":9,"o":9,"s":9,"C":6,"G":6,"O":6,"Q":6,"d":4,"q":4,"f":-1}},"\\":{"d":"46,-272r158,344r-50,0r-158,-344r50,0","w":200,"k":{"9":-2,"8":7,"7":4,"6":19,"5":-2,"4":1,"3":-2,"1":14,"0":16,"\\":40,"y":19,"V":48,"J":6,"S":3,"T":43,"U":19,"W":39,"Y":53,"Z":-4,"a":5,"c":9,"e":9,"o":9,"v":19,"w":19,"z":-4,"C":29,"G":29,"O":29,"Q":29,"d":6,"q":6,"f":5,"t":8,"u":5,"i":4,"j":-29}},"|":{"d":"33,72r0,-344r49,0r0,344r-49,0","w":115},"*":{"d":"39,-148v5,-13,16,-28,18,-39r-42,5r1,-36r43,6r-17,-39r31,-9v4,13,4,30,10,41r32,-25r20,28v-12,6,-27,10,-37,18r36,22r-22,27v-11,-10,-19,-21,-31,-30r-12,42","w":152,"k":{".":36,",":36,"\u201a":36}},"-":{"d":"13,-75r0,-44r112,0r0,44r-112,0","w":138,"k":{"A":4,"J":7,"S":4,"T":24,"W":8,"Y":25,"v":2,"w":2,"y":2,"z":1,"V":12,"X":13,"x":6,"8":2,"5":1,"1":4,"7":10,"3":9,"4":8,"2":11}},"(":{"d":"19,-100v0,-75,28,-131,61,-172r57,0v-34,37,-67,95,-67,172v0,76,33,135,67,172r-56,0v-33,-40,-62,-97,-62,-172","w":147,"k":{"A":4,"J":7,"S":1,"a":1,"c":3,"e":3,"o":3,"s":1,"C":8,"G":8,"O":8,"Q":8,"d":1,"q":1,"(":11,"[":11,"{":11,"X":2,"1":5,"6":3,"0":2,"4":11,"2":2}},")":{"d":"129,-100v0,75,-29,132,-62,172r-56,0v34,-37,67,-96,67,-172v0,-77,-33,-135,-67,-172r57,0v33,41,61,97,61,172","w":147,"k":{")":11,"]":11,"}":11,"*":2}},"[":{"d":"80,35r56,0r0,37r-109,0r0,-344r109,0r0,37r-56,0r0,270","w":156,"k":{"A":4,"J":7,"S":1,"a":1,"c":3,"e":3,"o":3,"s":1,"C":8,"G":8,"O":8,"Q":8,"d":1,"q":1,"(":11,"[":11,"{":11,"X":2,"1":5,"6":3,"0":2,"4":11,"2":2}},"]":{"d":"20,35r56,0r0,-270r-56,0r0,-37r109,0r0,344r-109,0r0,-37","w":156,"k":{")":11,"]":11,"}":11,"*":2}},"{":{"d":"109,10v0,27,23,26,49,25r0,37v-59,4,-101,-12,-101,-62v0,-42,17,-99,-46,-86r0,-46v26,1,48,0,46,-27v-4,-71,-4,-127,75,-123r26,0r0,38v-26,-1,-49,-3,-49,25v0,51,10,99,-37,110v47,12,37,57,37,109","w":178,"k":{"A":4,"J":7,"S":1,"a":1,"c":3,"e":3,"o":3,"s":1,"C":8,"G":8,"O":8,"Q":8,"d":1,"q":1,"(":11,"[":11,"{":11,"X":2,"1":5,"6":3,"0":2,"4":11,"2":2}},"}":{"d":"20,35v26,1,49,3,49,-25v0,-51,-10,-97,37,-109v-47,-11,-37,-59,-37,-110v0,-27,-23,-26,-49,-25r0,-38v60,-4,102,12,102,62v0,42,-19,101,45,88r0,46v-26,-1,-48,0,-45,27v8,82,-8,132,-102,121r0,-37","w":178,"k":{")":11,"]":11,"}":11,"*":2}},"@":{"d":"22,-102v0,-72,58,-131,130,-131v70,0,123,52,123,119v0,57,-40,84,-72,84v-23,0,-36,-11,-41,-24v-23,31,-82,23,-82,-30v0,-53,61,-118,102,-70r6,-13r32,0r-25,85v-6,20,1,30,15,30v20,0,44,-21,44,-62v0,-55,-43,-97,-101,-97v-60,0,-109,49,-109,109v0,83,98,138,169,90r13,17v-84,59,-204,-6,-204,-107xm117,-86v3,35,37,26,45,-3r12,-44v-27,-25,-60,16,-57,47","w":297,"k":{"\u2018":10,"A":5,"J":14,"S":3,"T":21,"W":16,"Y":36,"Z":3,"v":1,"w":1,"y":1,"V":18,"X":19,"x":6,"5":4,"7":10,"3":12,"4":10,"2":4}},"\u00a9":{"d":"79,-102v0,-62,82,-94,129,-51r-22,26v-23,-25,-69,-14,-69,25v0,40,46,50,70,25r23,23v-40,45,-131,19,-131,-48xm20,-102v0,-72,58,-131,130,-131v72,0,131,59,131,131v0,72,-59,130,-131,130v-72,0,-130,-58,-130,-130xm42,-102v0,60,48,108,108,108v60,0,109,-48,109,-108v0,-60,-49,-109,-109,-109v-60,0,-108,49,-108,109","w":300,"k":{"\u2018":10,"A":5,"J":14,"S":3,"T":21,"W":16,"Y":36,"Z":3,"v":1,"w":1,"y":1,"V":18,"X":19,"x":6,"5":4,"7":10,"3":12,"4":10,"2":4}},"\u00ae":{"d":"94,-35r0,-136r69,0v59,0,70,62,29,84v5,8,20,44,25,52r-40,0r-20,-47r-25,0r0,47r-38,0xm132,-108v20,1,49,0,46,-17v2,-17,-25,-20,-46,-18r0,35xm20,-102v0,-72,58,-131,130,-131v72,0,131,59,131,131v0,72,-59,130,-131,130v-72,0,-130,-58,-130,-130xm42,-102v0,60,48,108,108,108v60,0,109,-48,109,-108v0,-60,-49,-109,-109,-109v-60,0,-108,49,-108,109","w":300,"k":{"\u2018":10,"A":5,"J":14,"S":3,"T":21,"W":16,"Y":36,"Z":3,"v":1,"w":1,"y":1,"V":18,"X":19,"x":6,"5":4,"7":10,"3":12,"4":10,"2":4}},"&":{"d":"105,4v-104,3,-119,-114,-43,-148v-37,-45,-9,-112,58,-112v31,0,55,14,74,34r-33,28v-17,-24,-62,-31,-66,3v12,46,61,71,91,100v6,-14,9,-29,9,-46r47,0v0,26,-8,51,-20,73v14,10,28,21,43,31r-28,36v-14,-10,-29,-20,-43,-31v-23,20,-54,32,-89,32xm158,-55v-25,-20,-49,-40,-71,-62v-37,19,-33,82,22,79v19,0,35,-7,49,-17","w":270,"k":{"\u2018":4,"J":4,"S":1,"T":23,"U":4,"W":13,"Y":30,"Z":1,"?":8,"v":1,"w":1,"y":1,"C":2,"G":2,"O":2,"Q":2,"u":1,"V":17,"X":1,"8":1,"5":7,"9":3,"1":4,"7":10,"6":2,"3":12,"0":4}},"0":{"d":"17,-102v0,-65,47,-105,105,-105v58,0,106,40,106,105v0,66,-48,106,-106,106v-58,0,-105,-40,-105,-106xm72,-102v0,37,19,62,50,62v30,0,51,-25,51,-62v0,-36,-21,-61,-51,-61v-31,0,-50,25,-50,61","w":244,"k":{"\u2122":14,"$":1,"7":9,"4":7,"3":10,"2":4,"1":2,"*":15,"\\":13,"\/":16,"\u2018":3,"\u2019":3,"&":-1,")":2,"]":2,"}":2,".":5,",":5,"\u201a":5,"?":19}},"1":{"d":"114,0r-55,0r0,-153r-38,14r-17,-38v35,-12,59,-34,110,-29r0,206","w":143,"k":{"9":2,"8":1,"7":3,"6":2,"5":3,"3":5,"1":1,"0":1,"\\":5,"-":4,"\u2018":3,"\u2019":7,"?":5}},"2":{"d":"202,0r-180,0v-12,-109,128,-101,129,-141v-8,-41,-82,-22,-106,2r-25,-36v45,-46,185,-45,185,31v0,68,-111,68,-125,102r122,0r0,42","w":221,"k":{"\u2122":4,"$":1,"9":1,"8":4,"7":4,"5":1,"4":3,"3":2,"2":1,"*":4,"-":3,"\u2018":1,"?":4}},"3":{"d":"13,32r20,-38v35,23,123,27,124,-21v1,-36,-49,-34,-88,-33r0,-40v38,1,82,3,79,-34v-3,-43,-80,-35,-106,-9r-25,-35v48,-46,186,-39,186,39v0,27,-15,43,-37,54v30,12,45,32,45,61v0,82,-134,96,-198,56","w":221,"k":{"\u2122":7,"8":3,"7":3,"5":1,"4":1,"3":2,"*":4,"\\":4,"\/":-1,"\u2018":2,"\u2019":3,"?":4,"@":1,"\u00a9":1,"\u00ae":1}},"4":{"d":"30,0r-17,-40r131,-163r53,0r0,162r32,0r0,41r-32,0r0,49r-52,0r0,-49r-115,0xm65,-41r80,0r0,-104","w":239,"k":{"\u2122":9,"9":1,"8":1,"7":4,"6":3,"3":2,"*":7,"\\":4,"\/":-2,"-":8,"\u2018":6,"?":13,"@":1,"\u00a9":1,"\u00ae":1}},"5":{"d":"13,32r21,-40v36,24,116,28,116,-25v1,-42,-53,-47,-88,-29r-32,-19r6,-122r153,0r0,40r-105,0r-2,59v55,-24,122,2,122,69v0,90,-124,109,-191,67","w":216,"k":{"\u2122":4,"9":1,"8":2,"7":3,"6":2,"5":1,"3":3,"2":1,"0":2,"*":4,"-":4,"\u2018":2,"?":5,"@":1,"\u00a9":1,"\u00ae":1}},"6":{"d":"17,-119v0,-129,97,-162,187,-119r-20,36v-51,-26,-110,-11,-112,60v49,-43,143,-21,143,59v0,47,-37,87,-97,87v-71,0,-101,-55,-101,-123xm72,-105v1,41,16,68,47,68v26,0,42,-20,42,-45v0,-53,-64,-53,-89,-23","w":230,"k":{"$":2,"9":3,"8":1,"7":6,"6":2,"5":6,"4":10,"3":14,"2":9,"1":4,"*":4,"\\":-2,"\/":8,"\u2018":4,"\u2019":2,".":1,",":1,"\u201a":1,"?":7}},"7":{"d":"42,49r97,-208r-125,0r0,-44r180,0r0,38r-94,214r-58,0","w":207,"k":{"$":3,"9":3,"8":3,"6":1,"5":1,"4":23,"3":2,"2":4,"1":1,"0":4,"\/":14,"-":13,"\u2018":-1,"&":5,".":15,",":15,"\u201a":15,"?":4,"@":3,"\u00a9":3,"\u00ae":3}},"8":{"d":"17,-67v0,-31,24,-54,54,-64v-82,-34,-39,-125,51,-125v54,0,95,26,95,70v0,26,-21,46,-44,55v30,10,54,33,54,64v0,46,-44,71,-105,71v-61,0,-105,-25,-105,-71xm71,-70v0,22,21,35,51,35v29,0,51,-13,51,-35v0,-22,-23,-37,-51,-41v-29,4,-51,19,-51,41xm122,-150v51,-2,53,-68,0,-67v-57,0,-51,64,0,67","w":243,"k":{"\u2122":5,"$":4,"9":4,"7":5,"6":1,"5":2,"4":5,"3":14,"2":5,"1":3,"*":2,"\/":6,"-":2,"\u2018":2,"\u2019":3,".":1,",":1,"\u201a":1,"?":5}},"9":{"d":"23,33r23,-36v46,31,113,14,112,-57v-49,42,-143,18,-143,-60v0,-47,36,-87,96,-87v72,0,103,55,103,123v-2,132,-102,165,-191,117xm68,-120v0,52,66,52,90,22v-1,-42,-17,-68,-48,-68v-26,0,-42,21,-42,46","w":230,"k":{"\u2122":10,"$":1,"7":8,"5":1,"3":10,"2":4,"1":2,"*":8,"\\":11,"\u2018":8,"\u2019":13,"?":14}},"#":{"d":"22,-123r0,-36r47,0r7,-44r41,0r-8,44r44,0r7,-44r41,0r-8,44r41,0r0,36r-46,0r-7,43r41,0r0,36r-47,0r-7,44r-41,0r7,-44r-44,0r-7,44r-40,0r7,-44r-40,0r0,-36r46,0r7,-43r-41,0xm103,-123r-7,43r44,0r7,-43r-44,0","w":244},"$":{"d":"15,-19r23,-37v17,10,38,19,58,20r0,-47v-35,-8,-78,-18,-78,-62v0,-33,27,-58,75,-62r0,-31r25,0r0,31v23,1,45,8,65,17r-20,37v-15,-7,-34,-12,-49,-14r0,45v35,8,76,18,76,64v0,32,-23,58,-72,62r0,44r-25,0r0,-44v-30,-2,-57,-10,-78,-23xm142,-57v0,-12,-12,-16,-28,-21r0,42v20,-2,28,-11,28,-21xm67,-148v0,12,12,18,29,22r0,-41v-20,1,-29,9,-29,19","w":205,"k":{"9":4,"8":2,"7":6,"5":6,"4":6,"3":9,"2":3,"1":3}},"+":{"d":"14,-75r0,-44r73,0r0,-75r48,0r0,75r73,0r0,44r-73,0r0,75r-48,0r0,-75r-73,0","w":221},"=":{"d":"14,-120r0,-43r194,0r0,43r-194,0xm14,-31r0,-43r194,0r0,43r-194,0","w":221},"<":{"d":"199,-52r0,52r-186,-74r0,-47r186,-73r0,53r-124,44","w":216},">":{"d":"18,0r0,-52r123,-45r-123,-44r0,-53r186,73r0,47","w":216},"%":{"d":"207,-203r33,0r-155,203r-34,0xm15,-152v0,-32,26,-55,59,-55v33,0,58,23,58,55v0,33,-24,56,-58,56v-34,0,-59,-23,-59,-56xm48,-152v0,17,11,29,26,29v16,0,25,-12,25,-29v0,-15,-10,-27,-25,-27v-15,0,-26,12,-26,27xm159,-53v0,-32,26,-54,59,-54v33,0,59,22,59,54v0,33,-25,56,-59,56v-34,0,-59,-23,-59,-56xm192,-53v0,17,10,29,26,29v15,0,26,-12,26,-29v0,-15,-11,-27,-26,-27v-15,0,-26,12,-26,27","w":291,"k":{"\u2019":11}},"~":{"d":"23,-68v-2,-38,13,-67,47,-67v30,0,45,27,66,27v11,0,14,-8,14,-21r34,0v2,38,-12,66,-46,66v-30,0,-45,-27,-66,-27v-12,0,-15,9,-14,22r-35,0","w":207},"^":{"d":"31,-202r51,-67r50,0r51,67r-43,0r-33,-32r-34,32r-42,0","w":213},"\u2122":{"d":"158,-119r0,-133r34,0r37,48r37,-48r35,0r0,133r-36,0r0,-80r-35,46r-37,-46r0,80r-35,0xm57,-119r0,-103r-45,0r0,-30r126,0r0,30r-45,0r0,103r-36,0","w":318},"\u00a0":{"w":86}}});Cufon.registerFont({"w":73,"face":{"font-family":"Alright Sans","font-weight":300,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"274","descent":"-86","x-height":"4","bbox":"-53 -274.813 373 75.895","underline-thickness":"18","underline-position":"-18","slope":"-10","stemh":"18","stemv":"20","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":91},"A":{"d":"-10,0r140,-252r26,0r50,252r-21,0r-13,-68r-122,0r-37,68r-23,0xm59,-85r109,0r-28,-148","w":241,"k":{"-":10,"\u2018":17,"\u2019":18,"J":4,"S":5,"T":32,"W":23,"Y":35,")":4,"]":4,"}":4,"?":19,"'":20,"\"":20,"s":3,"v":14,"w":14,"y":14,"U":14,"C":20,"G":20,"O":20,"Q":20,"&":2,"@":14,"\u00a9":14,"\u00ae":14,"a":12,"d":12,"g":12,"q":12,"f":12,"c":12,"e":12,"o":12,"u":7,"t":14,"V":28,"X":2,"*":34,"\\":29,"\u2122":37,"x":1}},"B":{"d":"10,0r44,-252r95,0v46,0,71,25,71,57v0,35,-24,57,-55,66v27,8,44,23,44,53v0,45,-34,76,-95,76r-104,0xm33,-18r83,0v80,9,101,-103,19,-102r-84,0xm54,-137r75,0v77,3,103,-96,17,-97r-74,0","w":239,"k":{"\u2018":5,"\u2019":6,"A":3,"J":1,"S":3,"T":14,"W":8,"Y":19,"Z":2,")":4,"]":4,"}":4,".":1,",":1,"\u201a":1,"?":7,"'":8,"\"":8,"s":1,"v":1,"w":1,"y":1,"z":3,"U":1,"C":1,"G":1,"O":1,"Q":1,"a":1,"d":1,"g":1,"q":1,"f":1,"u":2,"t":1,"V":12,"X":6,"*":9,"\\":1,"\u2122":13,"x":5,"\/":11}},"C":{"d":"19,-107v0,-115,134,-192,223,-123r-12,14v-78,-58,-190,8,-190,109v0,94,105,117,162,65r11,15v-24,19,-55,31,-90,31v-63,0,-104,-44,-104,-111","w":253,"k":{"-":12,"\u2018":4,"\u2019":3,"A":1,"J":6,"S":2,"T":6,"W":6,"Y":12,"Z":1,"?":3,"'":5,"\"":5,"s":5,"v":17,"w":17,"y":17,"z":3,"U":5,"C":15,"G":15,"O":15,"Q":15,"&":3,"@":9,"\u00a9":9,"\u00ae":9,"a":12,"d":12,"g":12,"q":12,"f":8,"m":2,"n":2,"p":2,"r":2,"c":9,"e":9,"o":9,"u":9,"t":8,"V":7,"X":7,"*":4,"\u2122":4,"x":10,"\/":1}},"D":{"d":"10,0r44,-252r68,0v72,0,113,38,113,105v0,81,-50,147,-157,147r-68,0xm33,-18v112,12,181,-41,181,-128v0,-76,-59,-95,-142,-88","w":252,"k":{"\u2018":10,"\u2019":14,"J":3,"S":7,"T":15,"W":8,"Y":22,"Z":1,")":7,"]":7,"}":7,"?":8,"'":14,"\"":14,"z":2,"U":2,"V":9,"X":10,"*":7,"\\":8,"\u2122":12,"x":4,"\/":23}},"E":{"d":"10,0r44,-252r167,0r-4,18r-145,0r-18,97r132,0r-3,17r-132,0r-18,102r148,0r-2,18r-169,0","w":225,"k":{"-":7,"\u2018":3,"\u2019":1,"J":5,"S":5,"W":1,"Y":1,"?":3,"s":4,"v":10,"w":10,"y":10,"z":1,"U":1,"C":9,"G":9,"O":9,"Q":9,"&":4,"@":7,"\u00a9":7,"\u00ae":7,"a":10,"d":10,"g":10,"q":10,"f":7,"m":1,"n":1,"p":1,"r":1,"c":10,"e":10,"o":10,"u":6,"t":1,"V":1,"x":3}},"F":{"d":"10,0r44,-252r163,0r-3,18r-142,0r-18,98r127,0r-3,18r-127,0r-21,118r-20,0","w":218,"k":{"-":13,"\u2018":3,"\u2019":1,"A":28,"J":43,"S":9,"W":4,"Y":9,"Z":5,".":28,",":28,"\u201a":28,"?":1,"s":16,"v":11,"w":11,"y":11,"z":23,"U":3,"C":10,"G":10,"O":10,"Q":10,"&":16,"@":17,"\u00a9":17,"\u00ae":17,":":9,";":9,"a":19,"d":19,"g":19,"q":19,"f":7,"m":12,"n":12,"p":12,"r":12,"c":19,"e":19,"o":19,"u":18,"t":5,"i":5,"V":4,"X":14,"x":18,"\/":49}},"G":{"d":"18,-105v0,-117,130,-190,226,-128r-12,13v-83,-50,-193,11,-193,113v0,88,92,114,155,75r14,-80r-75,0r3,-17r94,0r-19,109v-24,15,-54,24,-88,24v-64,0,-105,-42,-105,-109","w":257,"k":{"\u2018":4,"\u2019":3,"T":5,"W":4,"Y":9,"?":3,"'":5,"\"":5,"v":2,"w":2,"y":2,"f":5,"c":1,"e":1,"o":1,"t":1,"V":4,"X":5,"*":2,"\u2122":7,"x":3,"\/":5}},"H":{"d":"10,0r44,-252r21,0r-21,114r144,0r20,-114r21,0r-45,252r-20,0r21,-119r-144,0r-21,119r-20,0","w":248},"I":{"d":"10,0r44,-252r21,0r-45,252r-20,0","w":83},"J":{"d":"6,-49r17,-8v6,22,17,44,52,44v39,0,61,-29,68,-71r29,-168r21,0r-30,170v-9,52,-40,86,-90,86v-42,0,-61,-26,-67,-53","w":201,"k":{"A":6,"J":10,"Y":3,"Z":1,".":8,",":8,"\u201a":8,"C":1,"G":1,"O":1,"Q":1,"X":3,"x":1,"\/":14}},"K":{"d":"10,0r44,-252r21,0r-27,151r159,-151r24,0r-98,94r62,158r-21,0r-56,-144r-75,72r-13,72r-20,0","w":235,"k":{"-":23,"\u2018":18,"\u2019":9,"A":3,"J":8,"S":7,"T":8,"W":3,"Y":3,"Z":1,")":3,"]":3,"}":3,"?":7,"'":6,"\"":6,"s":4,"v":11,"w":11,"y":11,"z":3,"U":8,"C":19,"G":19,"O":19,"Q":19,"&":7,"@":17,"\u00a9":17,"\u00ae":17,"a":14,"d":14,"g":14,"q":14,"f":6,"m":3,"n":3,"p":3,"r":3,"c":15,"e":15,"o":15,"u":11,"t":7,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"M":3,"N":3,"P":3,"R":3,"V":4,"X":4,"*":12,"\u2122":8,"x":7}},"L":{"d":"10,0r44,-252r21,0r-42,234r146,0r-3,18r-166,0","w":214,"k":{"-":22,"\u2018":36,"\u2019":30,"J":4,"S":3,"T":44,"W":24,"Y":39,"?":27,"'":19,"\"":19,"s":2,"v":15,"w":15,"y":15,"z":1,"U":15,"C":20,"G":20,"O":20,"Q":20,"&":3,"@":19,"\u00a9":19,"\u00ae":19,"a":10,"d":10,"g":10,"q":10,"f":6,"c":10,"e":10,"o":10,"u":6,"t":15,"V":32,"X":4,"*":30,"\\":48,"\u2122":43,"x":1}},"M":{"d":"10,0r44,-252r23,0r70,141r119,-141r25,0r-44,252r-20,0r40,-225r-125,146r-73,-147r-39,226r-20,0","w":300},"N":{"d":"10,0r44,-252r20,0r112,223r40,-223r20,0r-44,252r-21,0r-112,-223r-39,223r-20,0","w":255},"O":{"d":"19,-105v0,-87,66,-151,146,-151v58,0,105,41,105,109v0,87,-67,151,-147,151v-58,0,-104,-41,-104,-109xm40,-107v0,58,34,93,85,93v65,0,123,-54,123,-131v0,-58,-35,-93,-85,-93v-65,0,-123,54,-123,131","w":287,"k":{"\u2018":10,"\u2019":14,"J":3,"S":7,"T":15,"W":8,"Y":22,"Z":1,")":7,"]":7,"}":7,"?":8,"'":14,"\"":14,"z":2,"U":2,"V":9,"X":10,"*":7,"\\":8,"\u2122":12,"x":4,"\/":23}},"P":{"d":"10,0r44,-252r96,0v50,0,72,30,72,63v0,39,-26,84,-97,84r-76,0r-19,105r-20,0xm52,-122r75,0v52,0,74,-37,74,-67v0,-25,-13,-45,-53,-45r-76,0","w":232,"k":{"-":9,"\u2019":1,"A":26,"J":40,"S":3,"T":7,"W":2,"Y":9,"Z":8,")":3,"]":3,"}":3,".":33,",":33,"\u201a":33,"?":5,"'":2,"\"":2,"z":5,"U":3,"&":8,"a":5,"d":5,"g":5,"q":5,"m":4,"n":4,"p":4,"r":4,"c":5,"e":5,"o":5,"u":3,"V":3,"X":19,"\\":1,"\u2122":4,"x":3,"\/":53}},"Q":{"d":"19,-105v0,-87,66,-151,146,-151v58,0,105,41,105,109v0,46,-18,85,-47,112r28,29r-12,11r-28,-30v-70,57,-192,29,-192,-80xm156,-83r12,-11r42,45v23,-23,38,-57,38,-96v0,-58,-35,-93,-85,-93v-65,0,-123,54,-123,131v0,93,99,117,158,68","w":290,"k":{"\u2018":10,"\u2019":14,"J":3,"S":7,"T":15,"W":8,"Y":22,"Z":1,")":7,"]":7,"}":7,"?":8,"'":14,"\"":14,"z":2,"U":2,"V":9,"X":10,"*":7,"\\":8,"\u2122":12,"x":4,"\/":23}},"R":{"d":"10,0r44,-252r100,0v104,3,89,130,1,144r36,108r-21,0r-34,-105r-87,0r-19,105r-20,0xm52,-122r80,0v51,0,73,-37,73,-67v0,-24,-12,-45,-53,-45r-80,0","w":239,"k":{"-":10,"\u2019":1,"A":3,"J":12,"T":13,"W":3,"Y":10,")":3,"]":3,"}":3,"?":3,"'":2,"\"":2,"U":2,"&":2,"@":4,"\u00a9":4,"\u00ae":4,"a":2,"d":2,"g":2,"q":2,"c":3,"e":3,"o":3,"u":4,"V":6,"X":5,"*":1,"\\":1,"\u2122":8}},"S":{"d":"55,-183v6,66,131,30,131,111v0,41,-32,76,-99,76v-37,0,-66,-13,-84,-27r12,-14v16,12,42,23,74,23v50,0,76,-26,76,-56v0,-69,-131,-32,-131,-111v0,-42,37,-75,95,-75v33,0,58,9,75,19r-10,16v-38,-29,-144,-20,-139,38","w":216,"k":{"v":7,"\u2018":14,"\u2019":7,"S":4,"T":6,"W":5,"Y":8,"?":5,"'":9,"\"":9,"s":1,"w":7,"y":7,"z":5,"C":4,"G":4,"O":4,"Q":4,"f":3,"u":1,"t":3,"V":5,"X":8,"*":7,"\\":2,"\u2122":5,"x":6,"\/":7}},"T":{"d":"82,0r41,-234r-93,0r3,-18r207,0r-3,18r-93,0r-41,234r-21,0","w":228,"k":{"-":23,"A":22,"J":41,"S":4,"Y":4,".":18,",":18,"\u201a":18,"?":2,"s":19,"v":17,"w":17,"y":17,"z":19,"C":11,"G":11,"O":11,"Q":11,"&":14,"@":23,"\u00a9":23,"\u00ae":23,":":22,";":22,"a":27,"d":27,"g":27,"q":27,"f":9,"m":18,"n":18,"p":18,"r":18,"c":30,"e":30,"o":30,"u":24,"t":5,"X":2,"x":16,"\/":44}},"U":{"d":"23,-70v0,-64,21,-121,30,-182r21,0r-31,181v0,37,25,57,64,57v41,0,80,-25,89,-79r28,-159r21,0r-28,160v-11,64,-58,96,-114,96v-46,0,-80,-26,-80,-74","w":253,"k":{"A":6,"J":10,"Y":3,"Z":1,".":8,",":8,"\u201a":8,"C":1,"G":1,"O":1,"Q":1,"X":3,"x":1,"\/":14}},"V":{"d":"82,0r-49,-252r21,0r44,230r123,-230r23,0r-137,252r-25,0","w":234,"k":{"\/":36,"x":6,"X":3,"-":12,"A":17,"J":30,"S":4,"Z":1,".":18,",":18,"\u201a":18,"?":2,"s":6,"v":2,"w":2,"y":2,"z":4,"C":3,"G":3,"O":3,"Q":3,"&":9,"@":3,"\u00a9":3,"\u00ae":3,":":17,";":17,"a":8,"d":8,"g":8,"q":8,"f":1,"m":6,"n":6,"p":6,"r":6,"c":10,"e":10,"o":10,"u":7}},"W":{"d":"69,0r-34,-252r20,0r31,226r105,-226r22,0r28,226r109,-226r23,0r-124,252r-24,0r-27,-223r-105,223r-24,0","w":363,"k":{"-":6,"A":10,"J":33,"S":4,"Y":1,"Z":1,".":12,",":12,"\u201a":12,"?":2,"s":5,"v":1,"w":1,"y":1,"z":3,"&":9,"@":4,"\u00a9":4,"\u00ae":4,":":9,";":9,"a":7,"d":7,"g":7,"q":7,"m":4,"n":4,"p":4,"r":4,"c":9,"e":9,"o":9,"u":5,"X":3,"x":5,"\/":25}},"X":{"d":"-7,0r115,-130r-65,-122r23,0r57,107r93,-107r27,0r-109,124r67,128r-23,0r-59,-113r-99,113r-27,0","w":239,"k":{"\u2122":1,"*":8,"x":3,"V":3,"-":13,"\u2018":6,"\u2019":3,"A":4,"J":11,"S":8,"T":2,"W":3,"Y":4,")":2,"]":2,"}":2,"?":9,"s":5,"v":16,"w":16,"y":16,"z":5,"U":3,"C":19,"G":19,"O":19,"Q":19,"&":8,"@":19,"\u00a9":19,"\u00ae":19,"a":14,"d":14,"g":14,"q":14,"f":1,"m":4,"n":4,"p":4,"r":4,"c":16,"e":16,"o":16,"u":11,"t":5}},"Y":{"d":"82,0r18,-103r-67,-149r22,0r58,129r102,-129r25,0r-119,149r-18,103r-21,0","w":230,"k":{"-":25,"\u2018":5,"A":26,"J":41,"S":7,"T":4,"Z":1,".":20,",":20,"\u201a":20,"?":1,"s":17,"v":14,"w":14,"y":14,"z":14,"U":1,"C":9,"G":9,"O":9,"Q":9,"&":19,"@":12,"\u00a9":12,"\u00ae":12,":":22,";":22,"a":25,"d":25,"g":25,"q":25,"f":8,"m":18,"n":18,"p":18,"r":18,"c":27,"e":27,"o":27,"u":19,"t":4,"X":4,"x":19,"\/":37}},"Z":{"d":"-1,0r4,-19r195,-215r-157,0r3,-18r183,0r-4,19r-194,214r160,0r-3,19r-187,0","w":228,"k":{"-":6,"\u2018":2,"J":8,"S":2,"W":1,"Y":1,"?":2,"s":4,"v":3,"w":3,"y":3,"U":1,"C":10,"G":10,"O":10,"Q":10,"&":5,"@":6,"\u00a9":6,"\u00ae":6,"a":10,"d":10,"g":10,"q":10,"f":1,"m":3,"n":3,"p":3,"r":3,"c":11,"e":11,"o":11,"u":3,"t":3,"V":1,"x":2}},"a":{"d":"142,-35v-37,59,-129,51,-129,-36v0,-94,95,-152,150,-91r6,-22r17,0r-27,155v0,9,6,14,17,14r-3,15v-24,1,-35,-12,-31,-35xm144,-60r16,-87v-49,-56,-127,-10,-127,75v0,37,15,60,45,60v23,0,44,-15,66,-48","w":208,"k":{"\u2018":5,"\u2019":1,"S":1,"T":29,"W":9,"Y":22,"?":14,"'":8,"\"":8,"c":1,"e":1,"o":1,"V":12,"*":26,"\\":20,"\u2122":24}},"b":{"d":"9,0r48,-272r20,0r-22,124v33,-57,128,-56,128,35v0,89,-94,156,-151,90r-6,23r-17,0xm36,-39v13,17,28,27,51,27v46,0,75,-48,75,-101v0,-39,-15,-59,-45,-59v-23,0,-47,19,-66,48","w":207,"k":{"\u2018":18,"\u2019":18,"A":1,"S":5,"T":29,"W":15,"Y":28,".":1,",":1,"\u201a":1,"?":17,"'":18,"\"":18,"v":3,"w":3,"y":3,"z":1,"V":18,"X":5,"\\":22,"x":4,"\/":4}},"c":{"d":"12,-76v0,-88,93,-142,155,-93r-11,12v-52,-37,-124,6,-124,80v0,66,65,80,103,46r11,14v-47,40,-134,23,-134,-59","w":181,"k":{"-":2,"\u2018":3,"\u2019":1,"J":7,"T":23,"W":7,"Y":22,"?":10,"'":5,"\"":5,"z":1,"C":1,"G":1,"O":1,"Q":1,"&":1,"a":6,"d":6,"g":6,"q":6,"c":9,"e":9,"o":9,"u":2,"V":9,"X":3,"*":10,"\\":3,"\u2122":12,"x":1}},"d":{"d":"141,-35v-32,56,-128,53,-128,-37v0,-92,93,-151,150,-91r19,-109r20,0r-48,272r-16,0xm33,-73v0,85,83,73,111,13r16,-87v-49,-56,-127,-9,-127,74","w":206},"e":{"d":"12,-74v0,-67,49,-114,110,-114v35,0,57,20,57,44v0,40,-71,55,-145,51v-8,44,9,82,53,80v22,0,42,-7,57,-17r8,14v-50,37,-140,23,-140,-58xm120,-172v-37,0,-71,24,-83,63v58,2,131,-7,122,-35v0,-15,-14,-28,-39,-28","w":197,"k":{"-":1,"\u2018":7,"\u2019":6,"A":1,"J":6,"S":4,"T":28,"W":13,"Y":31,"Z":2,".":3,",":3,"\u201a":3,"?":13,"'":9,"\"":9,"s":1,"v":3,"w":3,"y":3,"z":3,"U":1,"C":1,"G":1,"O":1,"Q":1,"a":3,"d":3,"g":3,"q":3,"c":4,"e":4,"o":4,"u":1,"t":1,"i":1,"V":16,"X":6,"*":21,"\\":15,"\u2122":22,"x":8,"\/":3,"b":1,"h":1,"k":1,"l":1}},"f":{"d":"20,0r30,-167r-34,0r3,-16r33,0v5,-65,44,-108,108,-86r-8,14v-48,-16,-75,20,-80,72r53,0r-3,16r-53,0r-29,167r-20,0","w":127,"k":{"-":5,"\u2018":-8,"\u2019":-14,"A":10,"J":17,")":-3,"]":-3,"}":-3,".":8,",":8,"\u201a":8,"'":-10,"\"":-10,"s":1,"z":1,"@":3,"\u00a9":3,"\u00ae":3,"a":3,"d":3,"g":3,"q":3,"f":5,"c":5,"e":5,"o":5,"t":5,"i":-1,"*":-4,"\\":-22,"\u2122":-2,"x":1,"\/":19,"b":-1,"h":-1,"k":-1,"l":-1}},"g":{"d":"72,59v47,0,62,-47,68,-95v-33,56,-128,55,-128,-36v0,-93,94,-151,151,-91r5,-21r18,0r-33,184v-3,80,-100,96,-148,50r12,-13v13,13,33,22,55,22xm144,-60r15,-87v-48,-57,-131,-8,-127,74v3,82,79,74,112,13","w":207,"k":{"-":1,"\u2018":7,"T":26,"W":11,"Y":21,"?":12,"j":-5,"V":14,"X":2,"*":7,"\\":8,"\u2122":18}},"h":{"d":"9,0r48,-272r20,0r-23,130v17,-23,43,-46,76,-46v43,-1,50,34,43,71r-21,117r-20,0r24,-143v0,-17,-9,-29,-31,-29v-27,0,-52,19,-75,54r-21,118r-20,0","w":204,"k":{"\u2018":16,"\u2019":14,"T":27,"W":10,"Y":23,"?":17,"'":16,"\"":16,"v":4,"w":4,"y":4,"V":15,"*":20,"\\":17,"\u2122":22}},"i":{"d":"9,0r32,-183r20,0r-32,183r-20,0xm51,-237r5,-29r20,0r-5,29r-20,0","w":82,"k":{"Y":2,"V":1}},"j":{"d":"9,10r35,-193r19,0r-34,196v-9,54,-41,74,-82,57r8,-15v29,9,46,-3,54,-45xm53,-237r5,-29r20,0r-5,29r-20,0","w":84,"k":{"j":-3,"Y":2,"V":1}},"k":{"d":"9,0r48,-272r20,0r-33,187r106,-99r25,0r-66,61r42,123r-21,0r-35,-109r-56,51r-10,58r-20,0","w":183,"k":{"-":8,"\u2018":6,"\u2019":3,"J":3,"T":17,"W":6,"Y":12,"?":9,"'":8,"\"":8,"C":4,"G":4,"O":4,"Q":4,"&":1,"@":1,"\u00a9":1,"\u00ae":1,"a":5,"d":5,"g":5,"q":5,"c":10,"e":10,"o":10,"V":8,"*":10,"\\":3,"\u2122":13}},"l":{"d":"9,0r48,-272r20,0r-48,272r-20,0","w":82},"m":{"d":"49,-118r-22,118r-19,0r32,-184r16,0r-4,42v17,-24,43,-46,74,-46v29,0,43,18,43,43v19,-24,45,-43,75,-43v40,-1,45,35,39,70r-21,118r-19,0r24,-144v0,-17,-8,-28,-28,-28v-26,0,-54,21,-73,54r-21,118r-20,0r22,-120v3,-24,6,-52,-25,-52v-27,0,-50,20,-73,54","w":315,"k":{"\u2018":16,"\u2019":14,"T":27,"W":10,"Y":23,"?":17,"'":16,"\"":16,"v":4,"w":4,"y":4,"V":15,"*":20,"\\":17,"\u2122":22}},"n":{"d":"131,0r24,-144v0,-16,-9,-28,-31,-28v-27,0,-52,19,-75,54r-21,118r-20,0r32,-184r17,0r-5,42v18,-24,44,-46,77,-46v42,0,49,35,42,71r-21,117r-19,0","w":203,"k":{"\u2018":16,"\u2019":14,"T":27,"W":10,"Y":23,"?":17,"'":16,"\"":16,"v":4,"w":4,"y":4,"V":15,"*":20,"\\":17,"\u2122":22}},"o":{"d":"85,4v-44,0,-72,-30,-72,-80v0,-65,45,-112,103,-112v44,0,72,30,72,80v0,65,-45,112,-103,112xm87,-12v44,0,81,-41,81,-95v0,-41,-19,-65,-54,-65v-44,0,-82,42,-82,96v0,41,20,64,55,64","w":211,"k":{"\u2018":17,"\u2019":16,"A":2,"S":5,"T":33,"W":14,"Y":31,".":1,",":1,"\u201a":1,"?":19,"'":18,"\"":18,"v":3,"w":3,"y":3,"z":1,"t":1,"V":16,"X":6,"*":26,"\\":23,"\u2122":27,"x":4,"\/":4}},"p":{"d":"33,-23r-17,95r-20,0r45,-256r17,0r-4,36v34,-57,129,-56,129,35v0,89,-93,156,-150,90xm36,-39v13,17,29,27,51,27v47,0,75,-48,75,-101v0,-85,-82,-67,-111,-12","w":207,"k":{"\u2018":18,"\u2019":18,"A":1,"S":5,"T":29,"W":15,"Y":28,".":1,",":1,"\u201a":1,"?":17,"'":18,"\"":18,"v":3,"w":3,"y":3,"z":1,"V":18,"X":5,"\\":22,"x":4,"\/":4}},"q":{"d":"140,-34v-33,56,-127,51,-127,-38v0,-93,95,-151,150,-90r6,-22r17,0r-45,256r-20,0xm79,-12v23,0,45,-18,65,-48r16,-87v-49,-56,-127,-9,-127,74v0,39,16,61,46,61","w":206,"k":{"-":1,"\u2018":7,"T":26,"W":11,"Y":21,"?":12,"j":-5,"V":14,"X":2,"*":7,"\\":8,"\u2122":18}},"r":{"d":"8,0r32,-184r16,0r-5,41v21,-34,48,-53,88,-42r-7,18v-41,-11,-57,9,-84,51r-20,116r-20,0","w":136,"k":{"-":5,"\u2018":-1,"\u2019":-2,"A":9,"J":18,"T":14,"W":1,"Y":4,".":13,",":13,"\u201a":13,"?":2,"'":-3,"\"":-3,"&":4,"a":1,"d":1,"g":1,"q":1,"c":1,"e":1,"o":1,"V":1,"X":3,"\/":20}},"s":{"d":"38,-132v4,48,100,20,96,80v9,57,-104,70,-138,37r11,-14v23,25,112,23,107,-22v-5,-49,-96,-22,-96,-81v0,-55,88,-71,129,-41r-10,14v-29,-22,-103,-15,-99,27","w":161,"k":{"\u2018":11,"\u2019":5,"T":21,"W":10,"Y":24,"?":14,"'":5,"\"":5,"s":1,"v":1,"w":1,"y":1,"U":1,"a":1,"d":1,"g":1,"q":1,"c":2,"e":2,"o":2,"u":1,"t":1,"V":11,"X":3,"*":11,"\\":11,"\u2122":15,"x":2,"\/":1}},"t":{"d":"27,-32r23,-136r-34,0r3,-16r34,0r10,-58r19,0r-10,58r54,0r-3,16r-54,0r-22,134v-3,27,35,25,51,12r7,15v-26,18,-84,13,-78,-25","w":131,"k":{"-":3,"\u2018":5,"\u2019":1,"J":3,"T":15,"W":4,"Y":13,".":-2,",":-2,"\u201a":-2,"?":6,"'":5,"\"":5,"a":1,"d":1,"g":1,"q":1,"c":3,"e":3,"o":3,"V":9,"*":4,"\\":5,"\u2122":8}},"u":{"d":"182,-184r-32,184r-16,0r4,-42v-18,24,-43,46,-77,46v-42,1,-50,-33,-43,-71r21,-117r20,0r-24,144v0,16,9,28,31,28v27,0,52,-20,76,-54r20,-118r20,0","w":201,"k":{"-":1,"\u2018":7,"T":26,"W":11,"Y":21,"?":12,"j":-5,"V":14,"X":2,"*":7,"\\":8,"\u2122":18}},"v":{"d":"52,0r-34,-184r19,0r30,162r84,-162r21,0r-97,184r-23,0","w":172,"k":{"-":1,"A":5,"J":7,"T":18,"W":6,"Y":15,"Z":4,".":8,",":8,"\u201a":8,"?":9,"a":1,"d":1,"g":1,"q":1,"c":2,"e":2,"o":2,"V":8,"X":10,"\u2122":4,"\/":12}},"w":{"d":"48,0r-30,-184r19,0r26,160r77,-160r19,0r22,160r80,-160r22,0r-94,184r-22,0r-22,-157r-76,157r-21,0","w":283,"k":{"-":1,"A":5,"J":7,"T":18,"W":6,"Y":15,"Z":4,".":8,",":8,"\u201a":8,"?":9,"a":1,"d":1,"g":1,"q":1,"c":2,"e":2,"o":2,"V":8,"X":10,"\u2122":4,"\/":12}},"x":{"d":"-10,0r81,-94r-46,-90r20,0r39,76r64,-76r23,0r-77,91r48,93r-20,0r-41,-79r-68,79r-23,0","w":175,"k":{"\u2122":11,"\\":4,"V":10,"-":7,"J":2,"T":16,"W":5,"Y":17,"?":6,"s":2,"&":3,"@":1,"\u00a9":1,"\u00ae":1,"a":6,"d":6,"g":6,"q":6,"c":8,"e":8,"o":8,"u":1}},"y":{"d":"-21,54v41,22,59,-28,75,-55r-35,-183r19,0r30,157r83,-157r22,0r-120,221v-22,40,-45,46,-81,32","w":173,"k":{"-":1,"A":5,"J":7,"T":18,"W":6,"Y":15,"Z":4,".":8,",":8,"\u201a":8,"?":9,"a":1,"d":1,"g":1,"q":1,"c":2,"e":2,"o":2,"V":8,"X":10,"\u2122":4,"\/":12}},"z":{"d":"-3,0r3,-15r136,-152r-106,0r2,-17r132,0r-2,16r-137,152r114,0r-3,16r-139,0","w":174,"k":{"-":2,"T":15,"W":2,"Y":13,"?":6,"a":4,"d":4,"g":4,"q":4,"c":5,"e":5,"o":5,"V":5,"\u2122":4}},"`":{"d":"146,-204r-40,-49r16,-12r38,61r-14,0","w":229},".":{"d":"4,0r6,-37r22,0r-6,37r-22,0","k":{"\u2018":36,"\u2019":34,"J":5,"S":6,"T":28,"W":22,"Y":28,"?":32,"'":35,"\"":35,"s":3,"v":17,"w":17,"y":17,"U":16,"C":24,"G":24,"O":24,"Q":24,"a":10,"d":10,"g":10,"q":10,"f":4,"c":15,"e":15,"o":15,"u":10,"t":23,"i":6,"V":29,"*":37,"x":1,"8":11,"5":9,"9":15,"1":24,"7":18,"6":19,"3":12,"0":13,"%":7}},",":{"d":"4,0r6,-37r22,0v-5,40,-11,76,-45,87r-4,-10v18,-9,25,-21,28,-40r-7,0","k":{"\u2018":36,"\u2019":34,"J":5,"S":6,"T":28,"W":22,"Y":28,"?":32,"'":35,"\"":35,"s":3,"v":17,"w":17,"y":17,"U":16,"C":24,"G":24,"O":24,"Q":24,"a":10,"d":10,"g":10,"q":10,"f":4,"c":15,"e":15,"o":15,"u":10,"t":23,"i":6,"V":29,"*":37,"x":1,"8":11,"5":9,"9":15,"1":24,"7":18,"6":19,"3":12,"0":13,"%":7}},":":{"d":"4,0r6,-37r22,0r-6,37r-22,0xm30,-147r6,-37r22,0r-7,37r-21,0"},";":{"d":"4,0r6,-37r22,0v-5,40,-11,76,-45,87r-4,-10v18,-9,25,-21,28,-40r-7,0xm30,-147r6,-37r22,0r-7,37r-21,0"},"!":{"d":"28,-73r12,-99r15,-80r22,0r-38,179r-11,0xm10,0r6,-36r21,0r-6,36r-21,0","w":86},"?":{"d":"58,-73v-1,-67,97,-69,97,-124v-1,-55,-85,-49,-113,-15r-11,-13v36,-44,145,-43,145,27v0,67,-102,68,-101,125r-17,0xm42,0r7,-36r21,0r-6,36r-22,0","w":181,"k":{".":69,",":69,"\u201a":69,"?":3}},"'":{"d":"35,-173r13,-79r23,0r-23,81","k":{"A":3,"J":4,".":24,",":24,"\u201a":24,"a":10,"d":10,"g":10,"q":10,"c":7,"e":7,"o":7,"5":3,"4":8,"1":-7}},"\"":{"d":"35,-173r13,-79r23,0r-23,81xm101,-173r13,-79r23,0r-23,81","w":138,"k":{"A":3,"J":4,".":24,",":24,"\u201a":24,"a":10,"d":10,"g":10,"q":10,"c":7,"e":7,"o":7,"5":3,"4":8,"1":-7}},"\u2018":{"d":"62,-203r-7,38r-22,0v7,-39,11,-77,45,-88r4,10v-18,9,-25,21,-28,40r8,0","k":{"A":4,"J":13,".":25,",":25,"\u201a":25,"s":3,"@":10,"\u00a9":10,"\u00ae":10,"a":4,"d":4,"g":4,"q":4,"c":7,"e":7,"o":7,"X":4,"5":5,"4":20,"9":4,"1":-5,"2":3,"0":4,"$":1}},"\u2019":{"d":"41,-215r7,-37r22,0v-7,39,-11,76,-45,87r-4,-10v18,-9,25,-21,28,-40r-8,0","k":{"A":7,"J":32,"S":2,".":28,",":28,"\u201a":28,"s":9,"C":3,"G":3,"O":3,"Q":3,"a":13,"d":13,"g":13,"q":13,"f":2,"m":8,"n":8,"p":8,"r":8,"c":12,"e":12,"o":12,"u":5,"X":3,"x":4,"8":7,"5":4,"4":33,"9":9,"1":-4,"6":1,"3":3,"2":5,"0":11,"$":2}},"\u201a":{"d":"4,0r6,-37r22,0v-5,40,-11,76,-45,87r-4,-10v18,-9,25,-21,28,-40r-7,0","k":{"\u2018":36,"\u2019":34,"J":5,"S":6,"T":28,"W":22,"Y":28,"?":32,"'":35,"\"":35,"s":3,"v":17,"w":17,"y":17,"U":16,"C":24,"G":24,"O":24,"Q":24,"a":10,"d":10,"g":10,"q":10,"f":4,"c":15,"e":15,"o":15,"u":10,"t":23,"i":6,"V":29,"*":37,"x":1,"8":11,"5":9,"9":15,"1":24,"7":18,"6":19,"3":12,"0":13,"%":7}},"_":{"d":"-23,4r194,0r-3,19r-194,0","w":193,"k":{"_":1}},"\/":{"d":"-39,72r219,-344r22,0r-220,344r-21,0","w":171,"k":{"9":4,"4":35,"3":3,"2":5,"0":6,"\/":38,"A":17,"J":43,"s":6,"a":8,"d":8,"g":8,"q":8,"f":-5,"c":9,"e":9,"o":9,"t":-1}},"\\":{"d":"140,72r-19,0r-98,-344r19,0","w":171,"k":{"9":1,"8":13,"7":7,"6":27,"5":-4,"4":3,"3":-2,"1":24,"0":23,"\\":43,"y":23,"X":1,"V":45,"J":5,"S":9,"T":58,"W":31,"Y":52,"Z":-1,"s":5,"v":23,"w":23,"z":-1,"U":17,"C":33,"G":33,"O":33,"Q":33,"a":17,"d":17,"g":17,"q":17,"f":7,"c":18,"e":18,"o":18,"u":8,"t":14,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"M":3,"N":3,"P":3,"R":3,"i":1,"j":-32}},"|":{"d":"3,72r61,-344r19,0r-61,344r-19,0","w":94},"*":{"d":"63,-145r18,-49r-51,5r0,-18v16,0,37,4,51,2r-20,-47r16,-5v6,16,8,35,15,49r38,-33r11,14v-14,10,-30,17,-43,28r44,26r-11,15v-14,-10,-25,-23,-40,-32r-12,50","w":149,"k":{".":35,",":35,"\u201a":35}},"-":{"d":"10,-84r3,-18r99,0r-3,18r-99,0","w":132,"k":{"J":9,"S":13,"T":23,"W":10,"Y":30,"s":1,"v":3,"w":3,"y":3,"z":2,"V":18,"X":10,"x":6,"8":2,"5":1,"4":8,"1":9,"7":22,"3":14,"2":13}},"(":{"d":"15,-67v0,-82,38,-155,99,-205r25,0v-62,49,-104,122,-104,207v0,60,23,106,46,137r-21,0v-24,-32,-45,-80,-45,-139","w":129,"k":{"A":4,"J":6,"S":1,"s":1,"C":7,"G":7,"O":7,"Q":7,"a":6,"d":6,"g":6,"q":6,"c":6,"e":6,"o":6,"(":11,"[":11,"{":11,"X":2,"4":6,"1":4,"6":3,"2":2,"0":6}},")":{"d":"104,-133v0,82,-37,155,-98,205r-25,0v62,-50,104,-122,104,-207v0,-60,-23,-106,-46,-137r21,0v24,32,44,80,44,139","w":129,"k":{")":11,"]":11,"}":11,"*":1}},"[":{"d":"75,56r-3,16r-75,0r60,-344r76,0r-3,16r-55,0r-56,312r56,0","w":131,"k":{"A":4,"J":6,"S":1,"s":1,"C":7,"G":7,"O":7,"Q":7,"a":6,"d":6,"g":6,"q":6,"c":6,"e":6,"o":6,"(":11,"[":11,"{":11,"X":2,"4":6,"1":4,"6":3,"2":2,"0":6}},"]":{"d":"-9,56r56,0r55,-312r-56,0r3,-16r76,0r-61,344r-75,0","w":131,"k":{")":11,"]":11,"}":11,"*":1}},"{":{"d":"100,57r-3,15v-43,3,-71,-9,-64,-52r15,-86v2,-19,-19,-25,-43,-23r4,-18v110,14,3,-185,149,-165r-3,16v-33,-2,-53,6,-59,34v-9,45,-5,119,-50,125v48,22,6,84,6,131v0,21,23,25,48,23","w":154,"k":{"A":4,"J":6,"S":1,"s":1,"C":7,"G":7,"O":7,"Q":7,"a":6,"d":6,"g":6,"q":6,"c":6,"e":6,"o":6,"(":11,"[":11,"{":11,"X":2,"4":6,"1":4,"6":3,"2":2,"0":6}},"}":{"d":"46,-256r2,-16v42,-3,72,9,64,52r-16,90v-3,20,19,25,43,23r-3,18v-110,-14,-5,182,-149,161r3,-15v34,3,53,-6,59,-35v9,-43,7,-114,50,-120v-50,-23,-3,-87,-6,-136v3,-20,-23,-24,-47,-22","w":154,"k":{")":11,"]":11,"}":11,"*":1}},"@":{"d":"20,-100v0,-72,58,-131,131,-131v72,0,121,50,121,117v0,56,-35,87,-68,87v-22,0,-34,-14,-34,-31v-21,37,-88,37,-88,-22v0,-40,27,-90,74,-90v17,0,29,9,36,18r5,-15r14,0r-25,89v-7,23,0,38,20,38v26,0,54,-27,54,-74v0,-61,-44,-104,-109,-104v-65,0,-118,53,-118,118v0,86,101,148,179,100r7,11v-86,53,-199,-14,-199,-111xm98,-81v0,52,61,41,74,-4r16,-55v-6,-8,-15,-17,-32,-17v-36,0,-58,44,-58,76","w":301,"k":{"\u2018":10,"A":5,"J":10,"S":8,"T":34,"W":28,"Y":43,"Z":9,"v":11,"w":11,"y":11,"z":1,"U":4,"f":4,"t":5,"V":30,"X":16,"x":6,"5":1,"4":8,"1":8,"7":17,"3":11,"2":3}},"\u00a9":{"d":"81,-100v0,-61,74,-94,121,-58r-9,12v-38,-28,-96,-4,-96,46v0,53,62,76,98,45r10,10v-43,41,-124,12,-124,-55xm21,-100v0,-72,58,-131,131,-131v73,0,131,59,131,131v0,72,-58,130,-131,130v-73,0,-131,-58,-131,-130xm34,-100v0,64,52,117,118,117v65,0,118,-53,118,-117v0,-65,-53,-118,-118,-118v-66,0,-118,53,-118,118","w":312,"k":{"\u2018":10,"A":5,"J":10,"S":8,"T":34,"W":28,"Y":43,"Z":9,"v":11,"w":11,"y":11,"z":1,"U":4,"f":4,"t":5,"V":30,"X":16,"x":6,"5":1,"4":8,"1":8,"7":17,"3":11,"2":3}},"\u00ae":{"d":"21,-100v0,-72,58,-131,131,-131v73,0,131,59,131,131v0,72,-58,130,-131,130v-73,0,-131,-58,-131,-130xm34,-100v0,64,52,117,118,117v65,0,118,-53,118,-117v0,-65,-53,-118,-118,-118v-66,0,-118,53,-118,118xm99,-30r0,-140r64,0v64,-1,69,68,17,82r34,58r-18,0r-32,-56r-48,0r0,56r-17,0xm116,-99v35,3,87,0,82,-29v5,-30,-47,-32,-82,-29r0,58","w":312,"k":{"\u2018":10,"A":5,"J":10,"S":8,"T":34,"W":28,"Y":43,"Z":9,"v":11,"w":11,"y":11,"z":1,"U":4,"f":4,"t":5,"V":30,"X":16,"x":6,"5":1,"4":8,"1":8,"7":17,"3":11,"2":3}},"&":{"d":"6,-60v0,-39,29,-70,68,-88v-32,-48,0,-108,60,-108v27,0,46,12,58,26r-15,12v-23,-36,-103,-20,-96,28v8,57,59,93,97,130v15,-18,26,-39,30,-63r19,0v-5,28,-18,54,-36,75r44,36r-13,13r-44,-36v-26,24,-61,39,-98,39v-50,0,-74,-29,-74,-64xm165,-46v-31,-27,-59,-56,-83,-89v-32,15,-57,41,-57,73v0,27,16,49,58,49v31,0,59,-12,82,-33","w":263,"k":{"\u2018":4,"A":3,"J":7,"S":7,"T":39,"W":32,"Y":48,"Z":5,"?":8,"s":1,"v":10,"w":10,"y":10,"z":3,"U":10,"C":13,"G":13,"O":13,"Q":13,"a":6,"d":6,"g":6,"q":6,"f":5,"c":7,"e":7,"o":7,"u":6,"t":7,"V":32,"X":9,"x":3,"8":10,"5":12,"4":1,"9":10,"1":17,"7":26,"6":12,"3":19,"2":3,"0":12}},"0":{"d":"95,4v-48,0,-82,-34,-82,-85v0,-66,54,-116,117,-116v48,0,83,34,83,86v0,66,-55,115,-118,115xm127,-180v-50,0,-94,45,-94,98v0,41,25,69,65,69v50,0,94,-44,94,-97v0,-42,-25,-70,-65,-70","w":235,"k":{"\u2122":30,"$":1,"7":22,"4":1,"3":11,"2":3,"1":1,"*":36,"\\":22,"\/":4,"\u2018":23,"\u2019":20,"?":19,"'":12,"\"":12,"&":-2}},"1":{"d":"67,0r-21,0r31,-174r-55,23r-7,-16v29,-8,49,-27,86,-27","w":132,"k":{"\u2122":14,"9":1,"7":10,"5":2,"3":6,"0":1,"*":9,"\\":12,"-":8,"\u2018":19,"\u2019":17,".":1,",":1,"\u201a":1,"?":14,"'":9,"\"":9,"@":4,"\u00a9":4,"\u00ae":4}},"2":{"d":"4,0v5,-102,166,-88,166,-145v0,-54,-99,-37,-128,-5r-11,-14v38,-40,160,-52,160,19v0,71,-150,59,-164,128r143,0r-3,17r-163,0","w":210,"k":{"\u2122":13,"9":1,"8":4,"7":9,"5":3,"4":3,"3":5,"2":3,"*":15,"\\":9,"-":2,"\u2018":11,"\u2019":5,"?":15,"'":1,"\"":1}},"3":{"d":"-11,47r10,-15v48,31,157,10,153,-52v-3,-42,-47,-46,-93,-44r3,-16v53,4,101,-9,101,-57v0,-58,-98,-50,-130,-14r-10,-14v40,-45,162,-45,160,27v0,34,-24,57,-59,66v29,7,49,23,49,53v0,75,-122,104,-184,66","w":205,"k":{"\u2122":21,"8":1,"7":5,"4":1,"3":4,"*":18,"\\":18,"\/":-2,"\u2018":17,"\u2019":7,".":-4,",":-4,"\u201a":-4,"?":11,"'":6,"\"":6}},"4":{"d":"0,0r-3,-18r160,-175r24,0r-31,176r42,0r-3,17r-42,0r-10,59r-20,0r10,-59r-127,0xm19,-17r111,0r27,-154","w":222,"k":{"\u2122":22,"$":3,"9":6,"8":7,"7":9,"6":6,"5":4,"3":6,"0":5,"*":20,"\\":19,"\/":-4,"-":9,"\u2018":20,"\u2019":6,".":-1,",":-1,"\u201a":-1,"?":18,"'":5,"\"":5,"&":3,"@":10,"\u00a9":10,"\u00ae":10}},"5":{"d":"-11,46r10,-14v53,33,149,4,149,-62v0,-53,-66,-61,-113,-40r-12,-8r25,-115r136,0r-3,17r-117,0r-19,89v52,-25,123,-5,123,56v0,82,-113,117,-179,77","w":201,"k":{"\u2122":14,"9":1,"8":4,"7":6,"6":2,"5":3,"3":5,"0":2,"*":7,"\\":3,"-":8,"\u2018":7,"\u2019":5,".":-4,",":-4,"\u201a":-4,"?":16,"'":5,"\"":5,"@":6,"\u00a9":6,"\u00ae":6}},"6":{"d":"18,-89v0,-74,46,-167,135,-167v22,0,42,5,58,13r-10,14v-77,-29,-139,7,-160,108v42,-48,159,-51,158,32v0,48,-41,93,-102,93v-54,0,-79,-39,-79,-93xm39,-103v-3,49,10,87,61,90v82,4,115,-125,23,-127v-31,0,-63,15,-84,37","w":223,"k":{"\u2122":8,"$":2,"9":5,"7":11,"6":1,"5":6,"4":2,"3":17,"2":6,"1":3,"*":10,"\\":-2,"\/":5,"\u2018":11,"\u2019":9,"?":9,"'":9,"\"":9}},"7":{"d":"24,59r148,-235r-147,0r3,-17r170,0r-3,14r-148,238r-23,0","w":203,"k":{"\u2122":4,"$":3,"9":2,"8":4,"5":4,"4":13,"3":1,"2":5,"0":1,"\\":3,"\/":17,"-":9,"\u2018":-2,"\u2019":1,".":6,",":6,"\u201a":6,"?":8,"&":5}},"8":{"d":"8,-57v0,-42,40,-67,82,-74v-27,-8,-48,-25,-48,-53v0,-43,43,-72,96,-72v43,0,73,23,73,58v0,37,-29,59,-67,68v32,8,57,27,57,59v0,47,-47,75,-109,75v-50,0,-84,-23,-84,-61xm29,-59v0,29,26,47,67,47v47,0,85,-23,85,-59v0,-31,-27,-45,-66,-51v-44,4,-86,26,-86,63xm118,-139v41,-4,73,-25,73,-57v0,-27,-22,-44,-56,-44v-39,0,-72,23,-72,56v0,26,22,41,55,45","w":230,"k":{"\u2122":12,"$":3,"9":6,"7":8,"5":3,"4":2,"3":12,"2":3,"*":6,"\\":5,"\/":1,"-":2,"\u2018":10,"\u2019":3,"?":10,"'":3,"\"":3}},"9":{"d":"173,-72v-41,48,-159,52,-158,-31v0,-48,41,-94,101,-94v55,0,80,40,80,93v0,75,-46,168,-135,168v-22,0,-43,-7,-58,-15r10,-14v75,33,140,-5,160,-107xm36,-105v1,74,107,57,139,15v6,-49,-11,-89,-61,-90v-48,0,-78,38,-78,75","w":222,"k":{"\u2122":27,"$":1,"7":16,"3":10,"2":4,"1":2,"*":24,"\\":21,"\u2018":25,"\u2019":20,".":-4,",":-4,"\u201a":-4,"?":14,"'":13,"\"":13}},"#":{"d":"25,-129r3,-15r49,0r17,-49r19,0r-17,49r56,0r17,-49r19,0r-17,49r49,0r-3,15r-51,0r-21,62r49,0r-3,16r-52,0r-17,51r-18,0r17,-51r-57,0r-17,51r-18,0r17,-51r-46,0r3,-16r48,0r21,-62r-47,0xm91,-129r-21,62r56,0r21,-62r-56,0","w":229},"$":{"d":"0,-17r11,-13v13,9,33,17,58,18r14,-78v-29,-7,-60,-16,-60,-49v0,-33,30,-57,79,-58r6,-37r13,0r-6,37v22,2,40,9,53,15r-10,14v-12,-6,-28,-11,-47,-12r-13,75v28,7,57,17,57,50v0,32,-24,57,-76,59r-7,44r-14,0r8,-44v-28,-1,-51,-11,-66,-21xm43,-140v0,20,20,26,43,32r13,-73v-34,1,-56,19,-56,41xm136,-53v0,-21,-19,-28,-41,-34r-14,75v36,-2,55,-20,55,-41","w":186,"k":{"9":4,"8":2,"7":10,"5":6,"4":2,"3":6,"1":1,"\u2018":1,"\u2019":1}},"+":{"d":"11,-83r3,-18r81,0r15,-83r19,0r-15,83r82,0r-4,18r-81,0r-15,83r-19,0r15,-83r-81,0","w":217},"=":{"d":"3,-40r3,-18r182,0r-3,18r-182,0xm18,-126r4,-18r181,0r-3,18r-182,0","w":217},"<":{"d":"182,0r-174,-82r3,-20r203,-82r-4,22r-177,71r152,71","w":226},">":{"d":"34,-184r174,82r-4,20r-203,82r4,-22r177,-71r-152,-71","w":226},"%":{"d":"201,-193r18,0r-172,193r-18,0xm21,-141v-5,-57,98,-81,100,-15v5,57,-98,81,-100,15xm77,-184v-40,-4,-60,69,-12,71v40,4,60,-69,12,-71xm129,-37v-5,-58,98,-81,100,-14v5,57,-98,79,-100,14xm185,-79v-41,-4,-60,68,-12,70v40,4,61,-68,12,-70","w":259,"k":{"\u2018":5,"\u2019":11}},"~":{"d":"18,-72v1,-27,14,-52,42,-52v31,0,46,41,72,41v13,0,23,-11,25,-34r16,0v-1,27,-14,52,-42,52v-31,0,-47,-41,-72,-41v-13,0,-23,11,-25,34r-16,0","w":201},"^":{"d":"48,-202r61,-63r18,0r39,63r-16,0r-34,-43r-49,43r-19,0","w":186},"\u2122":{"d":"157,-119r24,-133r16,0r36,64r58,-64r19,0r-23,133r-16,0r19,-111r-59,66r-38,-66r-20,111r-16,0xm64,-119r20,-119r-52,0r3,-14r122,0r-3,14r-54,0r-20,119r-16,0","w":310},"\u00a0":{"w":91}}});Cufon.registerFont({"w":95,"face":{"font-family":"Alright Sans","font-weight":425,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 5 0 0 0 0 0 0 0","ascent":"274","descent":"-86","x-height":"5","bbox":"-63 -285 411 76.112","underline-thickness":"18","underline-position":"-18","slope":"-10","stemh":"55","stemv":"70","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":82},"A":{"d":"-15,0r130,-252r79,0r40,252r-71,0r-5,-37r-77,0r-17,37r-79,0xm143,-171v-15,25,-25,55,-39,82r48,0","w":252,"k":{"-":6,"\u2018":6,"\u2019":19,"J":3,"S":3,"T":29,"U":16,"W":28,"Y":40,")":4,"]":4,"}":4,"?":29,"'":9,"\"":9,"s":1,"v":23,"w":23,"y":23,"@":19,"\u00a9":19,"\u00ae":19,"C":22,"G":22,"O":22,"Q":22,"&":10,"a":10,"d":10,"g":10,"q":10,"f":9,"c":12,"e":12,"o":12,"t":20,"u":8,"V":30,"X":1,"*":35,"\\":35,"\u2122":36}},"B":{"d":"4,0r44,-252r110,0v91,-6,108,101,34,124v23,8,36,23,36,51v0,50,-39,77,-108,77r-116,0xm82,-54v36,0,79,6,79,-30v0,-29,-42,-21,-70,-22xm99,-149v33,2,69,1,69,-30v0,-24,-36,-18,-60,-19","w":239,"k":{"\u2018":3,"\u2019":5,"A":1,"J":1,"S":1,"T":6,"U":2,"W":10,"Y":19,")":5,"]":5,"}":5,"?":9,"s":1,"v":3,"w":3,"y":3,"z":1,"f":1,"V":12,"X":8,"*":6,"\\":4,"\u2122":8,"x":5,"\/":19}},"C":{"d":"15,-112v0,-78,60,-145,146,-145v41,0,73,15,96,38r-41,42v-45,-45,-129,-11,-129,62v0,72,78,74,111,36r37,46v-23,21,-53,38,-100,38v-67,0,-120,-41,-120,-117","w":249,"k":{"-":9,"\u2018":4,"\u2019":4,"A":-2,"J":2,"S":1,"T":3,"U":6,"W":4,"Y":11,"?":3,"s":1,"v":11,"w":11,"y":11,"@":10,"\u00a9":10,"\u00ae":10,"C":11,"G":11,"O":11,"Q":11,"&":3,"a":10,"d":10,"g":10,"q":10,"f":4,"m":2,"n":2,"p":2,"r":2,"c":12,"e":12,"o":12,"t":10,"u":1,"V":4,"X":3,"*":3,"\\":3,"\u2122":3,"x":4,"\/":12}},"D":{"d":"3,0r45,-252v110,-6,208,1,208,109v0,82,-52,143,-163,143r-90,0xm84,-55v65,7,99,-32,100,-87v1,-47,-28,-59,-75,-55","w":259,"k":{"\u2018":1,"\u2019":8,"A":4,"J":5,"S":5,"T":14,"U":1,"W":15,"Y":32,"Z":2,")":9,"]":9,"}":9,"?":14,"'":1,"\"":1,"v":3,"w":3,"y":3,"z":1,"V":15,"X":17,"*":9,"\\":16,"\u2122":12,"x":9,"\/":26}},"E":{"d":"3,0r45,-252r187,0r-11,60r-116,0r-7,38r102,0r-9,52r-102,0r-8,42r118,0r-11,60r-188,0","w":223,"k":{"-":1,"J":1,"S":1,"s":2,"v":2,"w":2,"y":2,"@":4,"\u00a9":4,"\u00ae":4,"C":4,"G":4,"O":4,"Q":4,"a":8,"d":8,"g":8,"q":8,"f":1,"c":8,"e":8,"o":8,"u":1,"x":1}},"F":{"d":"3,0r45,-252r184,0r-11,60r-113,0r-8,43r98,0r-10,56r-98,0r-16,93r-71,0","w":218,"k":{"-":9,"A":22,"J":36,"S":2,"U":1,"W":1,"Y":2,"Z":1,".":21,",":21,"\u201a":21,"?":1,"s":9,"v":3,"w":3,"y":3,"z":8,"@":11,"\u00a9":11,"\u00ae":11,"C":5,"G":5,"O":5,"Q":5,"&":10,":":9,";":9,"a":13,"d":13,"g":13,"q":13,"f":1,"m":4,"n":4,"p":4,"r":4,"c":12,"e":12,"o":12,"t":1,"u":6,"i":3,"V":1,"X":3,"x":4,"\/":45}},"G":{"d":"15,-110v0,-81,57,-147,150,-147v41,0,73,18,95,38r-41,41v-48,-43,-132,-12,-132,64v0,52,48,73,88,52r6,-38r-47,0r8,-44r110,0r-22,120v-24,17,-57,29,-96,29v-72,0,-119,-49,-119,-115","w":260,"k":{"\u2018":1,"\u2019":3,"A":1,"S":1,"T":7,"W":10,"Y":16,"?":3,"v":6,"w":6,"y":6,"a":2,"d":2,"g":2,"q":2,"f":2,"c":2,"e":2,"o":2,"t":1,"V":9,"X":7,"*":4,"\\":4,"\u2122":4,"x":6,"\/":12}},"H":{"d":"3,0r45,-252r70,0r-16,95r73,0r17,-95r71,0r-44,252r-71,0r17,-98r-73,0r-18,98r-71,0","w":254,"k":{"a":1,"d":1,"g":1,"q":1}},"I":{"d":"3,0r45,-252r70,0r-44,252r-71,0","w":110,"k":{"a":1,"d":1,"g":1,"q":1}},"J":{"d":"-3,-48r52,-30v13,29,52,33,58,-5r29,-169r71,0r-30,170v-9,101,-143,115,-180,34","w":198,"k":{"A":9,"J":9,"Y":1,".":4,",":4,"\u201a":4,"s":2,"X":1,"x":3,"\/":18}},"K":{"d":"3,0r45,-252r70,0r-17,99r93,-99r81,0r-92,93r50,159r-72,0r-31,-105r-46,47r-10,58r-71,0","w":249,"k":{"-":16,"\u2018":9,"\u2019":2,"J":4,"S":3,"T":2,"U":3,"W":1,"Y":1,"?":5,"s":3,"v":16,"w":16,"y":16,"z":1,"@":19,"\u00a9":19,"\u00ae":19,"C":17,"G":17,"O":17,"Q":17,"&":6,"a":16,"d":16,"g":16,"q":16,"f":3,"m":1,"n":1,"p":1,"r":1,"c":18,"e":18,"o":18,"t":9,"u":6,"V":1,"X":1,"*":7,"\u2122":1,"x":1}},"L":{"d":"3,0r45,-252r70,0r-33,193r109,0r-10,59r-181,0","w":209,"k":{"-":3,"\u2018":25,"\u2019":23,"J":1,"S":1,"T":32,"U":7,"W":26,"Y":40,"?":26,"'":3,"\"":3,"v":19,"w":19,"y":19,"@":12,"\u00a9":12,"\u00ae":12,"C":16,"G":16,"O":16,"Q":16,"&":1,"a":6,"d":6,"g":6,"q":6,"f":4,"c":8,"e":8,"o":8,"t":15,"u":1,"V":27,"X":1,"*":28,"\\":44,"\u2122":40}},"M":{"d":"3,0r45,-252r65,0r48,93r79,-93r75,0r-45,252r-66,0r27,-155r-83,95r-51,-95r-27,155r-67,0","w":306,"k":{"a":1,"d":1,"g":1,"q":1}},"N":{"d":"3,0r45,-252r57,0r74,145r25,-145r66,0r-45,252r-58,0r-72,-145r-25,145r-67,0","w":261,"k":{"a":1,"d":1,"g":1,"q":1}},"O":{"d":"17,-113v0,-75,53,-144,146,-144v66,0,120,44,120,118v0,75,-53,144,-147,144v-66,0,-119,-44,-119,-118xm160,-199v-72,-9,-104,146,-20,146v72,9,104,-146,20,-146","w":287,"k":{"\u2018":1,"\u2019":8,"A":4,"J":5,"S":5,"T":14,"U":1,"W":15,"Y":32,"Z":2,")":9,"]":9,"}":9,"?":14,"'":1,"\"":1,"v":3,"w":3,"y":3,"z":1,"V":15,"X":17,"*":9,"\\":16,"\u2122":12,"x":9,"\/":26}},"P":{"d":"3,0r45,-252r104,0v62,0,93,32,93,76v0,46,-26,90,-116,90r-40,0r-15,86r-71,0xm99,-138v37,2,74,0,74,-35v0,-31,-35,-25,-64,-25","w":242,"k":{"-":1,"\u2019":1,"A":28,"J":44,"T":1,"U":1,"W":8,"Y":18,"Z":3,")":5,"]":5,"}":5,".":31,",":31,"\u201a":31,"?":10,"z":2,"&":4,"m":2,"n":2,"p":2,"r":2,"u":2,"V":7,"X":25,"*":3,"\\":7,"\u2122":4,"x":3,"\/":52}},"Q":{"d":"17,-113v0,-75,53,-144,146,-144v66,0,120,44,120,118v0,38,-14,75,-40,102r19,21r-35,28r-20,-23v-83,41,-190,1,-190,-102xm136,-95r32,-27r29,34v26,-37,16,-117,-37,-111v-72,-9,-104,146,-20,146v10,0,20,-3,28,-7","w":287,"k":{".":3,"\u2018":1,"\u2019":8,"A":4,"J":5,"S":5,"T":14,"U":1,"W":15,"Y":32,"Z":2,")":9,"]":9,"}":9,"?":14,"'":1,"\"":1,"v":3,"w":3,"y":3,"z":1,"V":15,"X":17,"*":9,"\\":16,"\u2122":12,"x":9,"\/":26}},"R":{"d":"3,0r45,-252r107,0v105,-4,131,118,38,154r23,98r-67,0r-17,-89r-42,0r-16,89r-71,0xm99,-138v38,2,77,1,77,-35v0,-32,-37,-24,-67,-25","w":248,"k":{"-":2,"\u2019":2,"A":4,"J":13,"T":8,"U":3,"W":11,"Y":22,"Z":1,".":1,",":1,"\u201a":1,"?":8,"&":4,"a":2,"d":2,"g":2,"q":2,"c":2,"e":2,"o":2,"u":1,"V":10,"X":7,"*":5,"\\":9,"\u2122":7}},"S":{"d":"0,-30r38,-49v20,13,44,23,67,23v19,0,30,-8,30,-19v0,-14,-18,-18,-41,-26v-31,-10,-66,-24,-66,-72v0,-47,38,-84,103,-84v35,0,69,12,94,27r-32,51v-22,-12,-42,-18,-62,-18v-18,0,-28,9,-28,20v0,13,17,17,39,24v31,10,68,22,68,72v0,48,-35,86,-108,86v-39,0,-79,-17,-102,-35","w":223,"k":{"v":15,"\u2018":10,"\u2019":11,"S":5,"T":10,"U":3,"W":13,"Y":15,"?":9,"'":6,"\"":6,"s":3,"w":15,"y":15,"z":3,"@":4,"\u00a9":4,"\u00ae":4,"C":6,"G":6,"O":6,"Q":6,"a":1,"d":1,"g":1,"q":1,"f":5,"c":1,"e":1,"o":1,"t":9,"V":9,"X":10,"*":10,"\\":10,"\u2122":11,"x":8,"\/":16}},"T":{"d":"68,0r34,-191r-77,0r10,-61r222,0r-11,61r-74,0r-33,191r-71,0","w":236,"k":{"-":23,"A":22,"J":40,"S":1,"Y":1,".":21,",":21,"\u201a":21,"?":1,"s":9,"v":3,"w":3,"y":3,"z":6,"@":10,"\u00a9":10,"\u00ae":10,"C":4,"G":4,"O":4,"Q":4,"&":13,":":22,";":22,"a":16,"d":16,"g":16,"q":16,"f":2,"m":5,"n":5,"p":5,"r":5,"c":17,"e":17,"o":17,"u":6,"X":2,"x":3,"\/":44}},"U":{"d":"19,-77v0,-62,20,-117,28,-175r71,0r-29,167v0,19,13,31,33,31v24,0,41,-15,47,-51r26,-147r70,0r-27,154v-12,71,-56,103,-126,103v-56,0,-93,-31,-93,-82","w":256,"k":{"A":9,"J":9,"Y":1,".":4,",":4,"\u201a":4,"s":2,"X":1,"x":3,"\/":18}},"V":{"d":"71,0r-41,-252r72,0r20,169r77,-169r79,0r-130,252r-77,0","w":251,"k":{"\/":46,"x":5,"X":1,"-":9,"\u2018":1,"A":22,"J":33,"S":1,".":22,",":22,"\u201a":22,"s":11,"v":5,"w":5,"y":5,"z":6,"@":12,"\u00a9":12,"\u00ae":12,"C":3,"G":3,"O":3,"Q":3,"&":15,":":17,";":17,"a":15,"d":15,"g":15,"q":15,"m":6,"n":6,"p":6,"r":6,"c":13,"e":13,"o":13,"t":1,"u":6}},"W":{"d":"64,0r-33,-252r70,0r17,150r68,-150r63,0r17,150r70,-150r75,0r-122,252r-70,0r-17,-151r-69,151r-69,0","w":387,"k":{"-":4,"\u2018":1,"A":21,"J":32,"S":2,".":16,",":16,"\u201a":16,"?":1,"s":9,"v":3,"w":3,"y":3,"z":4,"@":9,"\u00a9":9,"\u00ae":9,"C":2,"G":2,"O":2,"Q":2,"&":13,":":9,";":9,"a":14,"d":14,"g":14,"q":14,"m":9,"n":9,"p":9,"r":9,"c":14,"e":14,"o":14,"u":4,"X":1,"x":4,"\/":40}},"X":{"d":"-12,0r103,-129r-56,-123r79,0r29,69r51,-69r88,0r-100,125r56,127r-78,0r-29,-74r-55,74r-88,0","w":257,"k":{"\u2122":1,"*":1,"x":1,"V":1,"-":16,"\u2018":7,"\u2019":1,"A":1,"J":7,"S":6,"U":3,"Y":1,")":2,"]":2,"}":2,"?":4,"s":6,"v":14,"w":14,"y":14,"z":1,"@":22,"\u00a9":22,"\u00ae":22,"C":16,"G":16,"O":16,"Q":16,"&":11,"a":19,"d":19,"g":19,"q":19,"f":2,"m":2,"n":2,"p":2,"r":2,"c":23,"e":23,"o":23,"t":8,"u":9}},"Y":{"d":"75,0r17,-100r-64,-152r76,0r33,81r61,-81r84,0r-119,152r-17,100r-71,0","w":253,"k":{"-":24,"\u2018":4,"A":31,"J":42,"S":6,"T":1,".":26,",":26,"\u201a":26,"?":4,"s":25,"v":17,"w":17,"y":17,"z":16,"@":24,"\u00a9":24,"\u00ae":24,"C":12,"G":12,"O":12,"Q":12,"&":16,":":22,";":22,"a":28,"d":28,"g":28,"q":28,"f":9,"m":18,"n":18,"p":18,"r":18,"c":28,"e":28,"o":28,"t":4,"u":16,"X":1,"x":17,"\/":58}},"Z":{"d":"-3,0r9,-51r129,-139r-105,0r11,-62r202,0r-9,51r-128,139r108,0r-11,62r-206,0","w":229,"k":{"-":1,"J":1,"v":1,"w":1,"y":1,"@":1,"\u00a9":1,"\u00ae":1,"C":3,"G":3,"O":3,"Q":3,"&":1,"a":3,"d":3,"g":3,"q":3,"m":1,"n":1,"p":1,"r":1,"c":3,"e":3,"o":3,"t":1,"u":1}},"a":{"d":"137,-24v-41,49,-126,34,-126,-51v0,-94,83,-163,146,-104r7,-18r61,0r-25,145v0,6,4,8,12,8r-8,45v-32,4,-58,-1,-67,-25xm135,-72r13,-70v-37,-28,-70,8,-69,60v0,51,41,41,56,10","w":226,"k":{"\u2019":2,"J":-6,"T":9,"W":9,"Y":19,"?":8,"'":2,"\"":2,"c":1,"e":1,"o":1,"j":-3,"V":9,"*":22,"\\":14,"\u2122":24,"\/":3}},"b":{"d":"1,0r48,-272r68,0r-17,95v40,-45,115,-25,115,56v0,101,-84,160,-146,101r-7,20r-61,0xm78,-55v36,29,72,-11,70,-61v-1,-50,-41,-41,-57,-10","w":223,"k":{"\u2018":4,"\u2019":11,"A":3,"S":8,"T":23,"W":20,"Y":37,"Z":2,")":4,"]":4,"}":4,"?":30,"'":7,"\"":7,"s":2,"v":12,"w":12,"y":12,"z":6,"t":4,"V":23,"X":10,"\\":26,"x":9,"\/":12}},"c":{"d":"9,-86v0,-97,120,-149,186,-89r-37,40v-33,-30,-80,-4,-80,48v0,43,45,46,67,24r32,42v-57,47,-168,32,-168,-65","w":190,"k":{"-":3,"\u2019":1,"J":4,"T":5,"U":4,"W":13,"Y":25,"?":18,"s":-2,"@":1,"\u00a9":1,"\u00ae":1,"&":4,"a":8,"d":8,"g":8,"q":8,"c":9,"e":9,"o":9,"V":9,"X":1,"*":7,"\\":13,"\u2122":13}},"d":{"d":"133,-24v-38,49,-122,32,-122,-52v0,-92,78,-160,143,-105r16,-91r68,0r-48,272r-56,0xm78,-82v1,52,42,41,57,10r12,-70v-36,-28,-70,10,-69,60","w":223},"e":{"d":"12,-82v0,-72,55,-119,120,-119v46,0,78,23,78,58v0,45,-62,65,-130,61v-1,49,57,34,83,17r23,44v-56,45,-174,31,-174,-61xm127,-155v-19,0,-35,16,-42,39v33,2,67,-8,61,-23v0,-9,-7,-16,-19,-16","w":213,"k":{"\u2018":-1,"\u2019":7,"J":9,"S":3,"T":19,"U":2,"W":23,"Y":36,".":3,",":3,"\u201a":3,"?":25,"v":5,"w":5,"y":5,"z":1,"&":1,"c":1,"e":1,"o":1,"V":19,"X":5,"*":22,"\\":25,"\u2122":21,"x":4,"\/":9,"b":1,"h":1,"k":1,"l":1}},"f":{"d":"14,0r26,-149r-28,0r8,-44r28,0v3,-79,84,-100,146,-69r-22,40v-26,-11,-55,-4,-56,29r45,0r-8,44r-45,0r-26,149r-68,0","w":151,"k":{"-":3,"\u2018":-6,"\u2019":-12,"A":10,"J":28,")":-20,"]":-20,"}":-20,".":10,",":10,"\u201a":10,"?":-4,"'":-15,"\"":-15,"@":-2,"\u00a9":-2,"\u00ae":-2,"&":2,"a":2,"d":2,"g":2,"q":2,"f":1,"c":1,"e":1,"o":1,"t":1,"i":-6,"*":-7,"\\":-23,"\u2122":-14,"\/":23,"b":-6,"h":-6,"k":-6,"l":-6}},"g":{"d":"29,6v34,25,100,26,98,-30v-42,35,-115,25,-115,-56v0,-90,82,-156,146,-100r5,-17r62,0r-33,186v-10,60,-43,87,-111,87v-30,0,-60,-11,-78,-23xm136,-77r12,-67v-36,-27,-69,10,-69,58v1,50,42,40,57,9","w":223,"k":{"-":1,"T":4,"W":7,"Y":19,"?":4,"j":-26,"V":8,"X":1,"*":2,"\\":5,"\u2122":3}},"h":{"d":"1,0r49,-272r67,0r-17,98v26,-37,117,-38,112,24v-4,51,-17,101,-25,150r-67,0r23,-138v0,-9,-4,-13,-14,-13v-13,0,-26,11,-38,29r-22,122r-68,0","w":219,"k":{"\u2018":2,"\u2019":6,"T":15,"W":15,"Y":31,")":2,"]":2,"}":2,"?":18,"'":3,"\"":3,"v":5,"w":5,"y":5,"V":17,"*":17,"\\":21,"\u2122":16}},"i":{"d":"1,0r35,-193r67,0r-34,193r-68,0xm40,-219r9,-52r68,0r-9,52r-68,0","w":102,"k":{"W":4,"Y":11,"V":5}},"j":{"d":"4,-8r32,-185r68,0r-33,189v-5,79,-81,97,-134,64r23,-43v21,12,39,7,44,-25xm41,-219r9,-52r68,0r-9,52r-68,0","w":103,"k":{"j":-22,"W":4,"Y":11,"V":5}},"k":{"d":"1,0r48,-272r68,0r-26,150r74,-75r73,0r-76,74r35,123r-67,0r-20,-74r-34,33r-7,41r-68,0","w":218,"k":{"-":8,"\u2018":1,"\u2019":1,"J":7,"T":4,"W":1,"Y":9,"?":1,"'":1,"\"":1,"@":3,"\u00a9":3,"\u00ae":3,"C":5,"G":5,"O":5,"Q":5,"&":5,"a":12,"d":12,"g":12,"q":12,"c":15,"e":15,"o":15,"V":2,"*":2,"\u2122":3}},"l":{"d":"1,0r48,-272r68,0r-48,272r-68,0","w":102},"m":{"d":"89,-124r-22,124r-66,0r35,-197r57,0r0,26v25,-32,95,-49,111,3v22,-23,43,-33,66,-33v46,-1,52,42,44,86r-20,115r-65,0r23,-137v0,-9,-4,-14,-13,-14v-13,0,-27,9,-37,27r-22,124r-64,0r23,-137v0,-9,-4,-14,-13,-14v-13,0,-25,10,-37,27","w":326,"k":{"\u2018":2,"\u2019":6,"T":15,"W":15,"Y":31,")":2,"]":2,"}":2,"?":18,"'":3,"\"":3,"v":5,"w":5,"y":5,"V":17,"*":17,"\\":21,"\u2122":16}},"n":{"d":"119,0r23,-138v0,-9,-4,-13,-13,-13v-13,0,-27,11,-39,29r-21,122r-68,0r35,-197r57,0r1,26v26,-40,121,-44,117,21v-3,51,-17,101,-25,150r-67,0","w":219,"k":{"\u2018":2,"\u2019":6,"T":15,"W":15,"Y":31,")":2,"]":2,"}":2,"?":18,"'":3,"\"":3,"v":5,"w":5,"y":5,"V":17,"*":17,"\\":21,"\u2122":16}},"o":{"d":"102,5v-51,0,-91,-34,-91,-91v0,-68,47,-115,115,-115v51,0,90,33,90,90v0,68,-46,116,-114,116xm106,-44v24,0,42,-34,42,-69v0,-27,-9,-40,-26,-40v-24,0,-42,34,-42,69v0,27,9,40,26,40","w":224,"k":{"\u2018":5,"\u2019":15,"A":1,"S":6,"T":29,"W":19,"Y":41,")":1,"]":1,"}":1,".":-2,",":-2,"\u201a":-2,"?":33,"'":2,"\"":2,"s":3,"v":10,"w":10,"y":10,"z":4,"f":1,"t":3,"V":22,"X":9,"*":23,"\\":27,"\u2122":25,"x":9,"\/":13}},"p":{"d":"72,-18r-16,90r-68,0r48,-269r59,0r1,23v42,-47,119,-35,119,54v0,97,-81,159,-143,102xm78,-55v36,29,72,-11,70,-61v-1,-49,-41,-41,-57,-10","w":223,"k":{"\u2018":4,"\u2019":11,"A":3,"S":8,"T":23,"W":20,"Y":37,"Z":2,")":4,"]":4,"}":4,"?":30,"'":7,"\"":7,"s":2,"v":12,"w":12,"y":12,"z":6,"t":4,"V":23,"X":10,"\\":26,"x":9,"\/":12}},"q":{"d":"126,-18v-41,44,-115,21,-115,-59v0,-95,84,-159,146,-102r7,-18r61,0r-48,269r-67,0xm79,-82v0,51,41,41,56,10r13,-70v-36,-28,-70,9,-69,60","w":222,"k":{"-":1,"T":4,"W":7,"Y":19,"?":4,"j":-26,"V":8,"X":1,"*":2,"\\":5,"\u2122":3}},"r":{"d":"1,0r35,-197r57,0r1,30v23,-33,48,-42,85,-32r-19,59v-35,-12,-57,6,-73,37r-19,103r-67,0","w":162,"k":{"-":2,"A":16,"J":30,"T":4,"W":1,"Y":6,".":17,",":17,"\u201a":17,"?":1,"'":-9,"\"":-9,"@":-2,"\u00a9":-2,"\u00ae":-2,"&":3,"V":1,"X":12,"\\":3,"\/":25}},"s":{"d":"-4,-21r28,-42v18,11,37,18,56,18v14,0,24,-6,24,-14v0,-10,-14,-13,-31,-18v-31,-8,-55,-25,-55,-58v0,-74,107,-82,165,-44r-29,40v-17,-9,-35,-14,-48,-14v-12,0,-21,6,-21,14v0,10,15,14,33,18v31,8,52,22,52,55v2,79,-124,88,-174,45","w":183,"k":{"\u2018":7,"\u2019":10,"T":12,"U":5,"W":17,"Y":30,"?":21,"'":4,"\"":4,"s":1,"v":7,"w":7,"y":7,"C":4,"G":4,"O":4,"Q":4,"a":3,"d":3,"g":3,"q":3,"f":2,"c":1,"e":1,"o":1,"t":5,"V":15,"X":10,"*":16,"\\":21,"\u2122":14,"x":5,"\/":5}},"t":{"d":"26,-47v2,-35,11,-72,16,-105r-28,0r8,-45r28,0r8,-45r68,0r-8,45r52,0r-8,45r-52,0r-16,91v1,20,29,11,37,3r19,43v-37,30,-126,29,-124,-32","w":163,"k":{"-":2,"\u2019":2,"J":1,"T":3,"W":5,"Y":17,".":-3,",":-3,"\u201a":-3,"?":7,"'":1,"\"":1,"@":2,"\u00a9":2,"\u00ae":2,"a":5,"d":5,"g":5,"q":5,"c":6,"e":6,"o":6,"V":7,"*":1,"\\":12,"\u2122":1}},"u":{"d":"219,-197r-35,197r-55,0r-2,-26v-17,18,-37,31,-64,31v-98,0,-34,-133,-30,-202r68,0r-24,139v0,8,4,14,13,14v13,0,27,-13,40,-33r21,-120r68,0","w":218,"k":{"-":1,"T":4,"W":7,"Y":19,"?":4,"j":-26,"V":8,"X":1,"*":2,"\\":5,"\u2122":3}},"v":{"d":"47,0r-26,-197r61,0r12,124r55,-124r64,0r-96,197r-70,0","w":196,"k":{"-":1,"A":15,"J":17,"T":2,"W":1,"Y":4,".":9,",":9,"\u201a":9,"?":1,"&":2,"a":5,"d":5,"g":5,"q":5,"c":5,"e":5,"o":5,"V":1,"X":6,"\u2122":1,"\/":18}},"w":{"d":"46,0r-25,-197r61,0r12,110r47,-110r50,0r11,110r49,-110r65,0r-95,197r-57,0r-12,-103r-47,103r-59,0","w":300,"k":{"-":1,"A":15,"J":17,"T":2,"W":1,"Y":4,".":9,",":9,"\u201a":9,"?":1,"&":2,"a":5,"d":5,"g":5,"q":5,"c":5,"e":5,"o":5,"V":1,"X":6,"\u2122":1,"\/":18}},"x":{"d":"-13,0r76,-100r-40,-97r63,0r19,51r38,-51r71,0r-75,98r40,99r-61,0r-22,-54r-40,54r-69,0","w":198,"k":{"\u2122":5,"\\":4,"V":2,"-":6,"J":6,"T":2,"W":1,"Y":14,"?":3,"@":3,"\u00a9":3,"\u00ae":3,"&":8,"a":10,"d":10,"g":10,"q":10,"c":10,"e":10,"o":10}},"y":{"d":"-1,16v23,15,48,6,56,-19r-35,-194r63,0r16,115r55,-115r67,0r-98,192v-42,84,-78,95,-147,68","w":205,"k":{"-":1,"A":15,"J":17,"T":2,"W":1,"Y":4,".":9,",":9,"\u201a":9,"?":1,"&":2,"a":5,"d":5,"g":5,"q":5,"c":5,"e":5,"o":5,"V":1,"X":6,"\u2122":1,"\/":18}},"z":{"d":"-4,0r8,-43r99,-105r-78,0r9,-49r158,0r-8,45r-97,103r82,0r-8,49r-165,0","w":188,"k":{"T":2,"W":1,"Y":13,"?":2,"a":4,"d":4,"g":4,"q":4,"c":5,"e":5,"o":5,"V":1,"\u2122":1}},"`":{"d":"121,-217r-35,-41r47,-27r26,68r-38,0","w":192},".":{"d":"-1,0r12,-64r65,0r-12,64r-65,0","k":{"\u2018":26,"\u2019":23,"S":5,"T":28,"U":10,"W":22,"Y":31,"?":30,"'":21,"\"":21,"s":1,"v":15,"w":15,"y":15,"C":17,"G":17,"O":17,"Q":17,"a":6,"d":6,"g":6,"q":6,"f":4,"c":9,"e":9,"o":9,"t":18,"u":1,"V":30,"*":42,"8":2,"5":4,"4":1,"9":8,"1":24,"7":18,"6":13,"3":6,"0":11,"%":6}},",":{"d":"-1,0r12,-64r65,0v-9,58,-19,114,-77,123r-8,-24v21,-6,33,-19,36,-35r-28,0","k":{"\u2018":26,"\u2019":23,"S":5,"T":28,"U":10,"W":22,"Y":31,"?":30,"'":21,"\"":21,"s":1,"v":15,"w":15,"y":15,"C":17,"G":17,"O":17,"Q":17,"a":6,"d":6,"g":6,"q":6,"f":4,"c":9,"e":9,"o":9,"t":18,"u":1,"V":30,"*":42,"8":2,"5":4,"4":1,"9":8,"1":24,"7":18,"6":13,"3":6,"0":11,"%":6}},":":{"d":"-1,0r12,-64r65,0r-12,64r-65,0xm23,-134r12,-64r65,0r-12,64r-65,0"},";":{"d":"-1,0r12,-64r65,0v-9,58,-19,114,-77,123r-8,-24v21,-6,33,-19,36,-35r-28,0xm23,-134r12,-64r65,0r-12,64r-65,0"},"!":{"d":"31,-81v3,-59,2,-122,15,-171r67,0v-10,63,-31,115,-48,171r-34,0xm2,0r10,-54r63,0r-9,54r-64,0","w":102},"?":{"d":"67,-81v-7,-66,77,-74,77,-105v0,-12,-12,-18,-24,-18v-19,0,-37,8,-57,25r-35,-38v28,-26,63,-40,100,-40v40,0,85,19,85,67v-1,69,-94,64,-97,109r-49,0xm45,0r10,-54r63,0r-9,54r-64,0","w":205,"k":{".":49,",":49,"\u201a":49,"?":3}},"'":{"d":"28,-175r14,-77r66,0r-38,85","w":89,"k":{"A":10,"J":9,".":19,",":19,"\u201a":19,"s":3,"C":1,"G":1,"O":1,"Q":1,"a":12,"d":12,"g":12,"q":12,"f":1,"c":8,"e":8,"o":8,"8":1,"5":3,"4":18,"1":-4,"3":2,"0":3}},"\"":{"d":"28,-175r14,-77r66,0r-38,85xm116,-175r14,-77r66,0r-37,85","w":177,"k":{"A":10,"J":9,".":19,",":19,"\u201a":19,"s":3,"C":1,"G":1,"O":1,"Q":1,"a":12,"d":12,"g":12,"q":12,"f":1,"c":8,"e":8,"o":8,"8":1,"5":3,"4":18,"1":-4,"3":2,"0":3}},"\u2018":{"d":"98,-188r-12,65r-65,0v9,-59,19,-115,77,-124r7,24v-21,6,-33,19,-36,35r29,0","k":{"A":1,"J":21,".":22,",":22,"\u201a":22,"s":2,"@":10,"\u00a9":10,"\u00ae":10,"C":-3,"G":-3,"O":-3,"Q":-3,"c":2,"e":2,"o":2,"X":4,"8":3,"5":4,"4":25,"9":1,"1":-8,"2":1,"$":1}},"\u2019":{"d":"32,-188r12,-64r65,0v-9,58,-19,114,-77,123r-8,-24v21,-6,33,-19,36,-35r-28,0","k":{"A":6,"J":26,".":32,",":32,"\u201a":32,"s":3,"C":1,"G":1,"O":1,"Q":1,"a":11,"d":11,"g":11,"q":11,"m":1,"n":1,"p":1,"r":1,"c":9,"e":9,"o":9,"X":1,"8":3,"5":4,"4":33,"9":3,"1":-7,"3":4,"0":4,"2":-1,"$":1}},"\u201a":{"d":"-1,0r12,-64r65,0v-9,58,-19,114,-77,123r-8,-24v21,-6,33,-19,36,-35r-28,0","k":{"\u2018":26,"\u2019":23,"S":5,"T":28,"U":10,"W":22,"Y":31,"?":30,"'":21,"\"":21,"s":1,"v":15,"w":15,"y":15,"C":17,"G":17,"O":17,"Q":17,"a":6,"d":6,"g":6,"q":6,"f":4,"c":9,"e":9,"o":9,"t":18,"u":1,"V":30,"*":42,"8":2,"5":4,"4":1,"9":8,"1":24,"7":18,"6":13,"3":6,"0":11,"%":6}},"_":{"d":"-17,5r195,0r-10,56r-195,0","w":195,"k":{"_":1}},"\/":{"d":"-34,72r215,-344r63,0r-215,344r-63,0","w":206,"k":{"9":4,"5":3,"4":42,"3":2,"2":4,"0":11,"\/":39,"A":23,"J":43,"s":9,"C":3,"G":3,"O":3,"Q":3,"a":17,"d":17,"g":17,"q":17,"f":1,"c":11,"e":11,"o":11,"t":-1}},"\\":{"d":"185,72r-59,0r-98,-344r59,0","w":206,"k":{"9":6,"8":20,"7":6,"6":31,"5":-1,"4":11,"1":29,"0":30,"\\":42,"y":30,"X":6,"V":52,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"M":2,"N":2,"P":2,"R":2,"J":8,"S":18,"T":51,"U":32,"W":52,"Y":69,"Z":-9,"s":9,"v":30,"w":30,"z":-9,"C":38,"G":38,"O":38,"Q":38,"a":28,"d":28,"g":28,"q":28,"f":15,"c":28,"e":28,"o":28,"t":24,"u":7,"i":5,"j":-52}},"|":{"d":"0,72r60,-344r62,0r-61,344r-61,0","w":118},"*":{"d":"52,-148v4,-12,15,-25,16,-36r-37,5r0,-41v13,1,29,6,40,4r-16,-35r37,-10v4,12,4,27,9,37r29,-23r23,32v-11,6,-24,10,-33,17r31,21r-24,30v-10,-8,-17,-21,-29,-27r-12,38","w":147,"k":{".":35,",":35,"\u201a":35}},"-":{"d":"8,-71r10,-56r112,0r-10,56r-112,0","w":135,"k":{"J":10,"S":5,"T":23,"W":12,"Y":30,"v":2,"w":2,"y":2,"V":14,"X":10,"x":6,"8":1,"5":1,"4":5,"1":5,"7":10,"3":9,"2":6}},"(":{"d":"58,72v-64,-101,-46,-270,50,-343r74,0v-93,72,-131,236,-59,343r-65,0","w":149,"k":{"A":4,"J":7,"S":1,"s":1,"C":8,"G":8,"O":8,"Q":8,"a":9,"d":9,"g":9,"q":9,"c":9,"e":9,"o":9,"(":11,"[":11,"{":11,"X":2,"4":12,"1":8,"6":3,"0":4,"2":2}},")":{"d":"135,-131v0,77,-33,153,-91,203r-73,0v93,-73,134,-236,59,-343r66,0v20,34,39,83,39,140","w":149,"k":{")":11,"]":11,"}":11,"*":1}},"[":{"d":"126,26r-9,46r-124,0r61,-344r124,0r-8,46r-56,0r-45,252r57,0","w":163,"k":{"A":4,"J":7,"S":1,"s":1,"C":8,"G":8,"O":8,"Q":8,"a":9,"d":9,"g":9,"q":9,"c":9,"e":9,"o":9,"(":11,"[":11,"{":11,"X":2,"4":12,"1":8,"6":3,"0":4,"2":2}},"]":{"d":"-6,26r55,0r45,-252r-56,0r8,-46r124,0r-61,344r-123,0","w":163,"k":{")":11,"]":11,"}":11,"*":1}},"{":{"d":"143,25r-9,47v-65,4,-117,-11,-100,-71r10,-56v2,-18,-21,-15,-39,-15r11,-59v28,0,43,2,47,-29v8,-64,17,-121,95,-114r37,0r-8,47v-24,0,-44,-4,-48,20v-9,48,-4,97,-59,106v54,18,24,66,21,112v-1,17,26,11,42,12","w":179,"k":{"A":4,"J":7,"S":1,"s":1,"C":8,"G":8,"O":8,"Q":8,"a":9,"d":9,"g":9,"q":9,"c":9,"e":9,"o":9,"(":11,"[":11,"{":11,"X":2,"4":12,"1":8,"6":3,"0":4,"2":2}},"}":{"d":"41,-225r8,-47v64,-4,117,11,100,71r-10,57v-2,19,21,14,39,15r-11,59v-28,0,-41,-2,-46,29v-9,62,-17,120,-95,113r-38,0r8,-47v24,0,44,4,48,-20v8,-48,5,-97,60,-106v-56,-16,-24,-64,-22,-111v1,-18,-25,-12,-41,-13","w":179,"k":{")":11,"]":11,"}":11,"*":1}},"@":{"d":"21,-103v0,-72,58,-131,130,-131v69,0,124,53,124,120v0,80,-86,108,-118,60v-23,32,-80,22,-80,-31v0,-38,22,-86,66,-86v15,0,26,8,32,18r8,-14r38,0r-24,85v-6,19,1,27,14,27v18,0,42,-19,42,-59v0,-55,-44,-98,-101,-98v-60,0,-109,49,-109,109v0,83,100,139,170,89r12,18v-84,60,-204,-6,-204,-107xm122,-87v0,28,31,20,35,-2v3,-17,22,-48,-5,-48v-19,0,-30,30,-30,50","w":287,"k":{"\u2018":10,"A":2,"J":5,"S":6,"T":28,"U":1,"W":25,"Y":47,"Z":3,"v":12,"w":12,"y":12,"f":4,"V":30,"X":13,"x":10,"5":5,"4":7,"1":10,"7":15,"3":17,"2":6}},"\u00a9":{"d":"75,-103v0,-63,88,-95,132,-49r-26,29v-19,-21,-58,-16,-58,20v0,35,39,41,58,20r27,27v-40,46,-133,21,-133,-47xm17,-103v0,-72,58,-131,130,-131v72,0,131,59,131,131v0,72,-59,130,-131,130v-72,0,-130,-58,-130,-130xm39,-103v0,60,48,108,108,108v60,0,109,-48,109,-108v0,-60,-49,-109,-109,-109v-60,0,-108,49,-108,109","w":289,"k":{"\u2018":10,"A":2,"J":5,"S":6,"T":28,"U":1,"W":25,"Y":47,"Z":3,"v":12,"w":12,"y":12,"f":4,"V":30,"X":13,"x":10,"5":5,"4":7,"1":10,"7":15,"3":17,"2":6}},"\u00ae":{"d":"89,-37r0,-135r73,0v59,0,71,60,32,83v2,3,20,49,22,52r-48,0r-16,-46r-16,0r0,46r-47,0xm136,-111v16,1,36,-1,34,-14v2,-13,-18,-17,-34,-15r0,29xm17,-103v0,-72,58,-131,130,-131v72,0,131,59,131,131v0,72,-59,130,-131,130v-72,0,-130,-58,-130,-130xm39,-103v0,60,48,108,108,108v60,0,109,-48,109,-108v0,-60,-49,-109,-109,-109v-60,0,-108,49,-108,109","w":289,"k":{"\u2018":10,"A":2,"J":5,"S":6,"T":28,"U":1,"W":25,"Y":47,"Z":3,"v":12,"w":12,"y":12,"f":4,"V":30,"X":13,"x":10,"5":5,"4":7,"1":10,"7":15,"3":17,"2":6}},"&":{"d":"7,-66v0,-36,25,-65,60,-79v-34,-50,5,-111,65,-111v37,0,63,17,79,36r-43,33v-11,-18,-51,-30,-53,-1v8,37,43,58,65,85v6,-12,10,-25,13,-39r60,0v-5,29,-16,56,-31,78v11,10,23,19,33,28r-42,40v-10,-8,-20,-18,-30,-27v-51,45,-176,36,-176,-43xm142,-60v-17,-16,-32,-32,-47,-49v-32,10,-40,62,7,61v14,0,28,-4,40,-12","w":264,"k":{"\u2018":4,"J":2,"S":1,"T":27,"U":4,"W":31,"Y":44,"?":8,"v":1,"w":1,"y":1,"C":2,"G":2,"O":2,"Q":2,"a":1,"d":1,"g":1,"q":1,"c":1,"e":1,"o":1,"t":1,"u":1,"V":26,"X":9,"8":1,"5":6,"4":1,"9":2,"1":6,"7":11,"6":3,"3":12,"0":5}},"0":{"d":"108,5v-53,0,-96,-35,-96,-95v0,-75,57,-122,126,-122v54,0,96,35,96,95v0,75,-57,122,-126,122xm132,-158v-45,-6,-74,104,-18,108v46,7,73,-104,18,-108","w":241,"k":{"\u2122":25,"8":1,"7":10,"5":4,"4":3,"3":14,"2":3,"1":5,"*":31,"\\":30,"\/":17,"\u2018":7,"\u2019":13,")":2,"]":2,"}":2,"?":34,"'":2,"\"":2}},"1":{"d":"118,0r-71,0r25,-141r-37,12r-20,-49v44,-13,77,-35,139,-30","w":162,"k":{"\u2122":1,"9":1,"7":1,"6":2,"5":4,"4":3,"3":5,"0":1,"*":4,"\\":7,"-":2,"\u2018":5,"\u2019":8,"?":8,"'":1,"\"":1,"@":6,"\u00a9":6,"\u00ae":6}},"2":{"d":"3,0r2,-15v11,-111,144,-96,144,-129v0,-10,-8,-18,-28,-18v-22,0,-47,9,-71,24r-26,-44v54,-40,192,-45,192,36v0,72,-120,65,-134,95r114,0r-10,51r-183,0","w":217,"k":{"\u2122":11,"9":-5,"8":2,"7":3,"5":1,"4":1,"3":2,"2":1,"*":9,"\\":13,"-":1,"\u2018":2,"\u2019":2,"?":14,"@":-3,"\u00a9":-3,"\u00ae":-3,"&":2}},"3":{"d":"-12,23r30,-43v30,22,110,31,112,-15v2,-29,-46,-22,-76,-23r8,-48v35,2,82,0,78,-30v-5,-39,-62,-21,-90,-5r-23,-47v51,-35,184,-34,184,45v0,31,-18,47,-44,59v21,12,32,32,32,53v3,90,-151,100,-211,54","w":218,"k":{"\u2122":20,"8":2,"7":3,"4":4,"3":3,"1":1,"*":18,"\\":21,"\u2018":3,"\u2019":7,"?":22,"'":1,"\"":1,"@":2,"\u00a9":2,"\u00ae":2}},"4":{"d":"17,0r-14,-49r157,-158r66,0r-28,158r27,0r-9,49r-26,0r-8,46r-66,0r8,-46r-107,0xm66,-49r67,0r15,-83","w":242,"k":{"\u2122":14,"8":1,"7":3,"6":2,"3":1,"1":3,"0":1,"*":14,"\\":12,"\/":-1,"-":7,"\u2018":6,"\u2019":6,"?":17,"'":6,"\"":6,"@":12,"\u00a9":12,"\u00ae":12}},"5":{"d":"-10,22r32,-45v31,25,104,29,105,-19v1,-35,-43,-30,-68,-17r-35,-23r25,-125r157,0r-7,48r-96,0r-10,49v51,-20,104,3,105,62v2,102,-140,121,-208,70","w":216,"k":{"\u2122":14,"9":1,"8":4,"7":7,"6":2,"5":3,"4":3,"3":3,"1":4,"0":6,"*":9,"\\":15,"-":2,"\u2018":6,"\u2019":8,"?":22,"'":6,"\"":6,"@":11,"\u00a9":11,"\u00ae":11,"&":3}},"6":{"d":"14,-102v0,-129,115,-192,212,-132r-31,41v-41,-29,-102,-5,-106,46v45,-34,128,-18,128,52v0,55,-43,100,-109,100v-62,0,-94,-45,-94,-107xm124,-121v-18,3,-41,6,-41,32v0,21,7,44,29,44v38,0,55,-73,12,-76","w":226,"k":{"\u2122":7,"$":2,"9":3,"7":6,"6":1,"5":6,"4":1,"3":13,"2":2,"1":8,"*":8,"\\":6,"\/":10,"\u2018":5,"\u2019":9,"?":12,"'":4,"\"":4,"@":1,"\u00a9":1,"\u00ae":1}},"7":{"d":"11,45r123,-199r-111,0r10,-53r180,0r-9,49r-117,203r-76,0","w":202,"k":{"\u2122":1,"$":1,"9":1,"8":3,"5":1,"4":17,"3":1,"2":2,"0":1,"\/":14,"-":3,".":10,",":10,"\u201a":10,"?":2,"&":5}},"8":{"d":"8,-62v0,-34,25,-59,64,-72v-71,-44,-21,-123,73,-123v51,0,93,25,93,64v0,32,-24,54,-53,64v26,12,41,28,41,56v0,50,-50,78,-116,78v-63,0,-102,-26,-102,-67xm80,-67v0,14,11,25,33,25v49,0,59,-57,11,-64v-24,4,-44,21,-44,39xm132,-155v36,-2,54,-52,9,-54v-38,-2,-47,49,-9,54","w":242,"k":{"\u2122":9,"$":3,"9":1,"7":6,"5":5,"4":5,"3":15,"2":5,"0":3,"*":5,"\\":6,"\/":8,"-":1,"\u2018":3,"\u2019":3,"?":10,"@":3,"\u00a9":3,"\u00ae":3}},"9":{"d":"139,-59v-45,35,-127,18,-127,-52v0,-55,42,-100,107,-100v63,0,96,45,96,107v0,132,-116,192,-214,131r32,-41v39,30,103,7,106,-45xm104,-85v18,0,42,-6,42,-32v0,-21,-8,-44,-29,-44v-25,0,-37,24,-37,47v0,17,7,29,24,29","w":227,"k":{"\u2122":26,"7":11,"5":4,"4":1,"3":9,"2":6,"1":5,"*":21,"\\":30,"\u2018":12,"\u2019":20,"?":28,"'":2,"\"":2,"@":3,"\u00a9":3,"\u00ae":3}},"#":{"d":"23,-121r8,-44r42,0r15,-42r52,0r-15,42r34,0r15,-42r51,0r-15,42r35,0r-8,44r-41,0r-12,35r37,0r-8,44r-43,0r-14,42r-52,0r14,-42r-34,0r-14,42r-51,0r14,-42r-34,0r8,-44r41,0r11,-35r-36,0xm111,-121r-12,35r34,0r12,-35r-34,0","w":240},"$":{"d":"-2,-24r34,-41v17,10,36,17,55,19r6,-34v-31,-8,-72,-17,-72,-62v0,-42,36,-68,91,-70r5,-28r27,0r-5,30v23,3,45,11,60,20r-33,43v-13,-7,-27,-12,-40,-15r-6,33v31,8,70,18,70,62v0,41,-30,70,-89,72r-8,43r-27,0r8,-44v-31,-4,-59,-15,-76,-28xm108,-163v-29,2,-30,24,-5,30xm105,-45v28,-1,28,-24,5,-30","w":205,"k":{"9":6,"8":2,"7":14,"5":7,"4":5,"3":10,"2":4,"1":7,"\u2018":1,"\u2019":12}},"+":{"d":"8,-72r10,-54r67,0r13,-71r60,0r-13,71r67,0r-9,54r-67,0r-13,72r-61,0r13,-72r-67,0","w":216},"=":{"d":"0,-27r10,-54r194,0r-9,54r-195,0xm16,-117r10,-54r194,0r-9,54r-195,0","w":216},"<":{"d":"172,0r-163,-69r11,-61r187,-67r-12,68r-101,33r90,31","w":202},">":{"d":"34,-197r163,69r-10,60r-188,68r13,-69r101,-32r-90,-32","w":202},"%":{"d":"225,-207r44,0r-178,207r-44,0xm14,-145v0,-37,31,-65,73,-65v34,0,56,20,56,51v0,38,-33,65,-75,65v-34,0,-54,-20,-54,-51xm83,-178v-29,-4,-39,50,-9,52v27,4,40,-51,9,-52xm174,-48v0,-37,31,-65,73,-65v34,0,56,20,56,51v0,38,-32,66,-75,66v-34,0,-54,-21,-54,-52xm243,-81v-28,-3,-39,52,-9,53v28,3,40,-52,9,-53","w":312,"k":{"\u2018":4,"\u2019":11}},"~":{"d":"16,-65v0,-43,16,-74,55,-74v31,0,47,23,67,23v9,0,14,-7,15,-18r41,0v1,44,-15,74,-56,74v-29,0,-46,-23,-65,-23v-10,0,-15,7,-16,18r-41,0","w":206},"^":{"d":"47,-202r64,-69r66,0r40,69r-57,0r-19,-28r-30,28r-64,0","w":221},"\u2122":{"d":"158,-119r24,-133r37,0r25,41r40,-41r43,0r-24,133r-42,0r13,-72r-36,37r-25,-38r-12,73r-43,0xm58,-119r18,-100r-43,0r6,-33r127,0r-6,33r-42,0r-18,100r-42,0","w":313},"\u00a0":{"w":82}}});(function($){$.facebox=function(data,o){var defaults={klass:null,clickOffDismiss:true};var options=$.extend({},defaults,o);$.facebox.settings.clickOffDismiss=options.clickOffDismiss;$.facebox.content_klass=options.klass;$.facebox.loading();if(data.ajax)revealAjax(data.ajax);else if(data.div)revealHref(data.div);else if($.isFunction(data))data.call($);else $.facebox.reveal(data);}
$.extend($.facebox,{settings:{opacity:0.5,overlay:true,modal:false,clickOffDismiss:true},html:function(){return'\
        <div id="facebox" style="display:none;"> \
          <div class="popup"> \
            <a href="#" class="close"></a> \
            <table> \
              <tbody> \
                <tr> \
                  <td class="tl"/><td class="b"/><td class="tr"/> \
                </tr> \
                <tr> \
                  <td class="b"/> \
                  <td class="body"> \
                    <div class="content"> \
                    </div> \
                  </td> \
                  <td class="b"/> \
                </tr> \
                <tr> \
                  <td class="bl"/><td class="b"/><td class="br"/> \
                </tr> \
              </tbody> \
            </table> \
          </div> \
        </div>'},loading:function(){init();$('#facebox a.close').css('visibility','hidden');if($('.loading',$('#facebox'))[0])return;showOverlay();$.facebox.wait();if(!$.facebox.settings.modal){$(document).bind('keydown.facebox',function(e){if(e.keyCode==27)$.facebox.close();});}
$(document).trigger('loading.facebox');},wait:function(){var $f=$('#facebox');$('.content',$f).empty();$('.body',$f).children().hide().end().append('<div class="loading"></div>');$.facebox.centralize();$f.show();$(document).trigger('reveal.facebox');},centralize:function(){var $f=$('#facebox');var newLeft=($(window).width()-$('#facebox table').width())/2;newLeft=(newLeft>=0)?newLeft:0;$f.css({top:$(window).scrollTop()+($(window).height()/10),left:newLeft});if($('body').hasClass('ie6')||$('body').hasClass('ie7')){$f.css({width:'600px'});}
positionCloseLink();},reveal:function(content){$(document).trigger('beforeReveal.facebox');var $f=$('#facebox');var $content=$('.content',$f).attr('class',($.facebox.content_klass||'')+' content').html(content).css({position:'relative',top:'-9000px'}).show();$('.loading',$f).remove();$.facebox.centralize();enableResizeCloseLink();$content.css({position:'',top:''}).hide();$('.body',$f).children().fadeIn('normal',function(){$(document).trigger('reveal.facebox').trigger('afterReveal.facebox');});},close:function(){$(document).trigger('close.facebox');disableResizeCloseLink();return false;}});$.fn.facebox=function(settings){var $this=$(this);if(!$this[0])return $this;if(settings)$.extend($.facebox.settings,settings);if(!$.facebox.settings.noAutoload)init();$this.bind('click.facebox',function(e){e.preventDefault();$.facebox.loading();var klass=this.rel.match(/facebox\[?\.(\w+)\]?/);$.facebox.content_klass=klass?klass[1]:'';revealHref(this.href);return false;});return $this;}
function init(){if($.facebox.settings.inited){return;}else{$.facebox.settings.inited=true;}
$(document).trigger('init.facebox');makeBackwardsCompatible();$('body').append($.facebox.html());$('#facebox .close').click($.facebox.close);}
function makeBackwardsCompatible(){var $s=$.facebox.settings;$s.faceboxHtml=$s.facebox_html||$s.faceboxHtml;}
function revealHref(href){if(href.match(/#/)){var url=window.location.href.split('#')[0];var target=href.replace(url,'');if(target=='#')return
$.facebox.reveal($(target).html(),$.facebox.content_klass);}else{revealAjax(href)}}
function revealAjax(href){$.get(href,function(data){$.facebox.reveal(data)});}
function skipOverlay(){return $.facebox.settings.overlay==false||$.facebox.settings.opacity===null}
function showOverlay(){if(skipOverlay())return;if($('#facebox_overlay').length==0){$("body").append('<div id="facebox_overlay" class="facebox_hide"></div>');$('#facebox_overlay').height($(document).height());}
$('#facebox_overlay').hide().addClass("facebox_overlayBG").css('opacity',$.facebox.settings.opacity).fadeIn(200);if($.facebox.settings.clickOffDismiss){$('#facebox_overlay').click(function(){$(document).trigger('close.facebox')})}else{$('#facebox_overlay').unbind('click');}
return false}
function hideOverlay(){if(skipOverlay())return;$('#facebox_overlay').fadeOut(200,function(){$("#facebox_overlay").removeClass("facebox_overlayBG").addClass("facebox_hide").remove();});}
function positionCloseLink(){var halfPadding=($('#facebox .body').css('paddingRight'))?(parseInt($('#facebox .body').css('paddingRight'))/2):0;var offsetLeft=$('#facebox .body').innerWidth()-halfPadding;$('#facebox a.close').css({left:offsetLeft});};function enableResizeCloseLink(){$(window).resize($.facebox.centralize);}
function disableResizeCloseLink(){$(window).unbind('resize',$.facebox.centralize);}
$(document).bind('close.facebox',function(){$(document).unbind('keydown.facebox');$('#facebox').fadeOut(function(){$('#facebox .content').removeClass().addClass('content');hideOverlay();$('#facebox .loading').remove();})
$(document).trigger('afterClose.facebox');});$(document).bind('reveal.facebox',$.facebox.centralize);$(document).bind('afterReveal.facebox',function(){$.facebox.centralize();positionCloseLink();$('#facebox').find('a.close').css('visibility','visible');});})(jQuery);jQuery(document).ready(function(){jQuery('a[rel*=facebox]').facebox();});jQuery.faceboxClose=function(){$(document).trigger('close.facebox');};