/*
 * jQuery JavaScript Library v1.7.1
 * http://jquery.com/
 *
 * Copyright 2011, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2011, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Mon Nov 21 21:11:03 2011 -0500
 */
(function(window,undefined){var document=window.document,navigator=window.navigator,location=window.location;var jQuery=(function(){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context,rootjQuery);},_jQuery=window.jQuery,_$=window.$,rootjQuery,quickExpr=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,rnotwhite=/\S/,trimLeft=/^\s+/,trimRight=/\s+$/,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,rvalidchars=/^[\],:{}\s]*$/,rvalidescape=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,rvalidtokens=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,rvalidbraces=/(?:^|:|,)(?:\s*\[)+/g,rwebkit=/(webkit)[ \/]([\w.]+)/,ropera=/(opera)(?:.*version)?[ \/]([\w.]+)/,rmsie=/(msie) ([\w.]+)/,rmozilla=/(mozilla)(?:.*? rv:([\w.]+))?/,rdashAlpha=/-([a-z]|[0-9])/ig,rmsPrefix=/^-ms-/,fcamelCase=function(all,letter){return(letter+"").toUpperCase();},userAgent=navigator.userAgent,browserMatch,readyList,DOMContentLoaded,toString=Object.prototype.toString,hasOwn=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,trim=String.prototype.trim,indexOf=Array.prototype.indexOf,class2type={};jQuery.fn=jQuery.prototype={constructor:jQuery,init:function(selector,context,rootjQuery){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&&document.body){this.context=document;this[0]=document.body;this.selector=selector;this.length=1;return this;}
if(typeof selector==="string"){if(selector.charAt(0)==="<"&&selector.charAt(selector.length-1)===">"&&selector.length>=3){match=[null,selector,null];}else{match=quickExpr.exec(selector);}
if(match&&(match[1]||!context)){if(match[1]){context=context instanceof jQuery?context[0]:context;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=jQuery.buildFragment([match[1]],[doc]);selector=(ret.cacheable?jQuery.clone(ret.fragment):ret.fragment).childNodes;}
return jQuery.merge(this,selector);}else{elem=document.getElementById(match[2]);if(elem&&elem.parentNode){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||context.jquery){return(context||rootjQuery).find(selector);}else{return this.constructor(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.7.1",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[this.length+num]:this[num]);},pushStack:function(elems,name,selector){var ret=this.constructor();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();readyList.add(fn);return this;},eq:function(i){i=+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||this.constructor(null);},push:push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var options,name,src,copy,copyIsArray,clone,target=arguments[0]||{},i=1,length=arguments.length,deep=false;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)||(copyIsArray=jQuery.isArray(copy)))){if(copyIsArray){copyIsArray=false;clone=src&&jQuery.isArray(src)?src:[];}else{clone=src&&jQuery.isPlainObject(src)?src:{};}
target[name]=jQuery.extend(deep,clone,copy);}else if(copy!==undefined){target[name]=copy;}}}}
return target;};jQuery.extend({noConflict:function(deep){if(window.$===jQuery){window.$=_$;}
if(deep&&window.jQuery===jQuery){window.jQuery=_jQuery;}
return jQuery;},isReady:false,readyWait:1,holdReady:function(hold){if(hold){jQuery.readyWait++;}else{jQuery.ready(true);}},ready:function(wait){if((wait===true&&!--jQuery.readyWait)||(wait!==true&&!jQuery.isReady)){if(!document.body){return setTimeout(jQuery.ready,1);}
jQuery.isReady=true;if(wait!==true&&--jQuery.readyWait>0){return;}
readyList.fireWith(document,[jQuery]);if(jQuery.fn.trigger){jQuery(document).trigger("ready").off("ready");}}},bindReady:function(){if(readyList){return;}
readyList=jQuery.Callbacks("once memory");if(document.readyState==="complete"){return setTimeout(jQuery.ready,1);}
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 jQuery.type(obj)==="function";},isArray:Array.isArray||function(obj){return jQuery.type(obj)==="array";},isWindow:function(obj){return obj&&typeof obj==="object"&&"setInterval"in obj;},isNumeric:function(obj){return!isNaN(parseFloat(obj))&&isFinite(obj);},type:function(obj){return obj==null?String(obj):class2type[toString.call(obj)]||"object";},isPlainObject:function(obj){if(!obj||jQuery.type(obj)!=="object"||obj.nodeType||jQuery.isWindow(obj)){return false;}
try{if(obj.constructor&&!hasOwn.call(obj,"constructor")&&!hasOwn.call(obj.constructor.prototype,"isPrototypeOf")){return false;}}catch(e){return false;}
var key;for(key in obj){}
return key===undefined||hasOwn.call(obj,key);},isEmptyObject:function(obj){for(var name in obj){return false;}
return true;},error:function(msg){throw new Error(msg);},parseJSON:function(data){if(typeof data!=="string"||!data){return null;}
data=jQuery.trim(data);if(window.JSON&&window.JSON.parse){return window.JSON.parse(data);}
if(rvalidchars.test(data.replace(rvalidescape,"@").replace(rvalidtokens,"]").replace(rvalidbraces,""))){return(new Function("return "+data))();}
jQuery.error("Invalid JSON: "+data);},parseXML:function(data){var xml,tmp;try{if(window.DOMParser){tmp=new DOMParser();xml=tmp.parseFromString(data,"text/xml");}else{xml=new ActiveXObject("Microsoft.XMLDOM");xml.async="false";xml.loadXML(data);}}catch(e){xml=undefined;}
if(!xml||!xml.documentElement||xml.getElementsByTagName("parsererror").length){jQuery.error("Invalid XML: "+data);}
return xml;},noop:function(){},globalEval:function(data){if(data&&rnotwhite.test(data)){(window.execScript||function(data){window["eval"].call(window,data);})(data);}},camelCase:function(string){return string.replace(rmsPrefix,"ms-").replace(rdashAlpha,fcamelCase);},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(;i<length;){if(callback.call(object[i],i,object[i++])===false){break;}}}}
return object;},trim:trim?function(text){return text==null?"":trim.call(text);}:function(text){return text==null?"":text.toString().replace(trimLeft,"").replace(trimRight,"");},makeArray:function(array,results){var ret=results||[];if(array!=null){var type=jQuery.type(array);if(array.length==null||type==="string"||type==="function"||type==="regexp"||jQuery.isWindow(array)){push.call(ret,array);}else{jQuery.merge(ret,array);}}
return ret;},inArray:function(elem,array,i){var len;if(array){if(indexOf){return indexOf.call(array,elem,i);}
len=array.length;i=i?i<0?Math.max(0,len+i):i:0;for(;i<len;i++){if(i in array&&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=[],retVal;inv=!!inv;for(var i=0,length=elems.length;i<length;i++){retVal=!!callback(elems[i],i);if(inv!==retVal){ret.push(elems[i]);}}
return ret;},map:function(elems,callback,arg){var value,key,ret=[],i=0,length=elems.length,isArray=elems instanceof jQuery||length!==undefined&&typeof length==="number"&&((length>0&&elems[0]&&elems[length-1])||length===0||jQuery.isArray(elems));if(isArray){for(;i<length;i++){value=callback(elems[i],i,arg);if(value!=null){ret[ret.length]=value;}}}else{for(key in elems){value=callback(elems[key],key,arg);if(value!=null){ret[ret.length]=value;}}}
return ret.concat.apply([],ret);},guid:1,proxy:function(fn,context){if(typeof context==="string"){var tmp=fn[context];context=fn;fn=tmp;}
if(!jQuery.isFunction(fn)){return undefined;}
var args=slice.call(arguments,2),proxy=function(){return fn.apply(context,args.concat(slice.call(arguments)));};proxy.guid=fn.guid=fn.guid||proxy.guid||jQuery.guid++;return proxy;},access:function(elems,key,value,exec,fn,pass){var length=elems.length;if(typeof key==="object"){for(var k in key){jQuery.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;},now:function(){return(new Date()).getTime();},uaMatch:function(ua){ua=ua.toLowerCase();var match=rwebkit.exec(ua)||ropera.exec(ua)||rmsie.exec(ua)||ua.indexOf("compatible")<0&&rmozilla.exec(ua)||[];return{browser:match[1]||"",version:match[2]||"0"};},sub:function(){function jQuerySub(selector,context){return new jQuerySub.fn.init(selector,context);}
jQuery.extend(true,jQuerySub,this);jQuerySub.superclass=this;jQuerySub.fn=jQuerySub.prototype=this();jQuerySub.fn.constructor=jQuerySub;jQuerySub.sub=this.sub;jQuerySub.fn.init=function init(selector,context){if(context&&context instanceof jQuery&&!(context instanceof jQuerySub)){context=jQuerySub(context);}
return jQuery.fn.init.call(this,selector,context,rootjQuerySub);};jQuerySub.fn.init.prototype=jQuerySub.fn;var rootjQuerySub=jQuerySub(document);return jQuerySub;},browser:{}});jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(i,name){class2type["[object "+name+"]"]=name.toLowerCase();});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(rnotwhite.test("\xA0")){trimLeft=/^[\s\xA0]+/;trimRight=/[\s\xA0]+$/;}
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(e){setTimeout(doScrollCheck,1);return;}
jQuery.ready();}
return jQuery;})();var flagsCache={};function createFlags(flags){var object=flagsCache[flags]={},i,length;flags=flags.split(/\s+/);for(i=0,length=flags.length;i<length;i++){object[flags[i]]=true;}
return object;}
jQuery.Callbacks=function(flags){flags=flags?(flagsCache[flags]||createFlags(flags)):{};var
list=[],stack=[],memory,firing,firingStart,firingLength,firingIndex,add=function(args){var i,length,elem,type,actual;for(i=0,length=args.length;i<length;i++){elem=args[i];type=jQuery.type(elem);if(type==="array"){add(elem);}else if(type==="function"){if(!flags.unique||!self.has(elem)){list.push(elem);}}}},fire=function(context,args){args=args||[];memory=!flags.memory||[context,args];firing=true;firingIndex=firingStart||0;firingStart=0;firingLength=list.length;for(;list&&firingIndex<firingLength;firingIndex++){if(list[firingIndex].apply(context,args)===false&&flags.stopOnFalse){memory=true;break;}}
firing=false;if(list){if(!flags.once){if(stack&&stack.length){memory=stack.shift();self.fireWith(memory[0],memory[1]);}}else if(memory===true){self.disable();}else{list=[];}}},self={add:function(){if(list){var length=list.length;add(arguments);if(firing){firingLength=list.length;}else if(memory&&memory!==true){firingStart=length;fire(memory[0],memory[1]);}}
return this;},remove:function(){if(list){var args=arguments,argIndex=0,argLength=args.length;for(;argIndex<argLength;argIndex++){for(var i=0;i<list.length;i++){if(args[argIndex]===list[i]){if(firing){if(i<=firingLength){firingLength--;if(i<=firingIndex){firingIndex--;}}}
list.splice(i--,1);if(flags.unique){break;}}}}}
return this;},has:function(fn){if(list){var i=0,length=list.length;for(;i<length;i++){if(fn===list[i]){return true;}}}
return false;},empty:function(){list=[];return this;},disable:function(){list=stack=memory=undefined;return this;},disabled:function(){return!list;},lock:function(){stack=undefined;if(!memory||memory===true){self.disable();}
return this;},locked:function(){return!stack;},fireWith:function(context,args){if(stack){if(firing){if(!flags.once){stack.push([context,args]);}}else if(!(flags.once&&memory)){fire(context,args);}}
return this;},fire:function(){self.fireWith(this,arguments);return this;},fired:function(){return!!memory;}};return self;};var
sliceDeferred=[].slice;jQuery.extend({Deferred:function(func){var doneList=jQuery.Callbacks("once memory"),failList=jQuery.Callbacks("once memory"),progressList=jQuery.Callbacks("memory"),state="pending",lists={resolve:doneList,reject:failList,notify:progressList},promise={done:doneList.add,fail:failList.add,progress:progressList.add,state:function(){return state;},isResolved:doneList.fired,isRejected:failList.fired,then:function(doneCallbacks,failCallbacks,progressCallbacks){deferred.done(doneCallbacks).fail(failCallbacks).progress(progressCallbacks);return this;},always:function(){deferred.done.apply(deferred,arguments).fail.apply(deferred,arguments);return this;},pipe:function(fnDone,fnFail,fnProgress){return jQuery.Deferred(function(newDefer){jQuery.each({done:[fnDone,"resolve"],fail:[fnFail,"reject"],progress:[fnProgress,"notify"]},function(handler,data){var fn=data[0],action=data[1],returned;if(jQuery.isFunction(fn)){deferred[handler](function(){returned=fn.apply(this,arguments);if(returned&&jQuery.isFunction(returned.promise)){returned.promise().then(newDefer.resolve,newDefer.reject,newDefer.notify);}else{newDefer[action+"With"](this===deferred?newDefer:this,[returned]);}});}else{deferred[handler](newDefer[action]);}});}).promise();},promise:function(obj){if(obj==null){obj=promise;}else{for(var key in promise){obj[key]=promise[key];}}
return obj;}},deferred=promise.promise({}),key;for(key in lists){deferred[key]=lists[key].fire;deferred[key+"With"]=lists[key].fireWith;}
deferred.done(function(){state="resolved";},failList.disable,progressList.lock).fail(function(){state="rejected";},doneList.disable,progressList.lock);if(func){func.call(deferred,deferred);}
return deferred;},when:function(firstParam){var args=sliceDeferred.call(arguments,0),i=0,length=args.length,pValues=new Array(length),count=length,pCount=length,deferred=length<=1&&firstParam&&jQuery.isFunction(firstParam.promise)?firstParam:jQuery.Deferred(),promise=deferred.promise();function resolveFunc(i){return function(value){args[i]=arguments.length>1?sliceDeferred.call(arguments,0):value;if(!(--count)){deferred.resolveWith(deferred,args);}};}
function progressFunc(i){return function(value){pValues[i]=arguments.length>1?sliceDeferred.call(arguments,0):value;deferred.notifyWith(promise,pValues);};}
if(length>1){for(;i<length;i++){if(args[i]&&args[i].promise&&jQuery.isFunction(args[i].promise)){args[i].promise().then(resolveFunc(i),deferred.reject,progressFunc(i));}else{--count;}}
if(!count){deferred.resolveWith(deferred,args);}}else if(deferred!==firstParam){deferred.resolveWith(deferred,length?[firstParam]:[]);}
return promise;}});jQuery.support=(function(){var support,all,a,select,opt,input,marginDiv,fragment,tds,events,eventName,i,isSupported,div=document.createElement("div"),documentElement=document.documentElement;div.setAttribute("className","t");div.innerHTML="   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>";all=div.getElementsByTagName("*");a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return{};}
select=document.createElement("select");opt=select.appendChild(document.createElement("option"));input=div.getElementsByTagName("input")[0];support={leadingWhitespace:(div.firstChild.nodeType===3),tbody:!div.getElementsByTagName("tbody").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/top/.test(a.getAttribute("style")),hrefNormalized:(a.getAttribute("href")==="/a"),opacity:/^0.55/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:(input.value==="on"),optSelected:opt.selected,getSetAttribute:div.className!=="t",enctype:!!document.createElement("form").enctype,html5Clone:document.createElement("nav").cloneNode(true).outerHTML!=="<:nav></:nav>",submitBubbles:true,changeBubbles:true,focusinBubbles:false,deleteExpando:true,noCloneEvent:true,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableMarginRight:true};input.checked=true;support.noCloneChecked=input.cloneNode(true).checked;select.disabled=true;support.optDisabled=!opt.disabled;try{delete div.test;}catch(e){support.deleteExpando=false;}
if(!div.addEventListener&&div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){support.noCloneEvent=false;});div.cloneNode(true).fireEvent("onclick");}
input=document.createElement("input");input.value="t";input.setAttribute("type","radio");support.radioValue=input.value==="t";input.setAttribute("checked","checked");div.appendChild(input);fragment=document.createDocumentFragment();fragment.appendChild(div.lastChild);support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;support.appendChecked=input.checked;fragment.removeChild(input);fragment.appendChild(div);div.innerHTML="";if(window.getComputedStyle){marginDiv=document.createElement("div");marginDiv.style.width="0";marginDiv.style.marginRight="0";div.style.width="2px";div.appendChild(marginDiv);support.reliableMarginRight=(parseInt((window.getComputedStyle(marginDiv,null)||{marginRight:0}).marginRight,10)||0)===0;}
if(div.attachEvent){for(i in{submit:1,change:1,focusin:1}){eventName="on"+i;isSupported=(eventName in div);if(!isSupported){div.setAttribute(eventName,"return;");isSupported=(typeof div[eventName]==="function");}
support[i+"Bubbles"]=isSupported;}}
fragment.removeChild(div);fragment=select=opt=marginDiv=div=input=null;jQuery(function(){var container,outer,inner,table,td,offsetSupport,conMarginTop,ptlm,vb,style,html,body=document.getElementsByTagName("body")[0];if(!body){return;}
conMarginTop=1;ptlm="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;";vb="visibility:hidden;border:0;";style="style='"+ptlm+"border:5px solid #000;padding:0;'";html="<div "+style+"><div></div></div>"+"<table "+style+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>";container=document.createElement("div");container.style.cssText=vb+"width:0;height:0;position:static;top:0;margin-top:"+conMarginTop+"px";body.insertBefore(container,body.firstChild);div=document.createElement("div");container.appendChild(div);div.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";tds=div.getElementsByTagName("td");isSupported=(tds[0].offsetHeight===0);tds[0].style.display="";tds[1].style.display="none";support.reliableHiddenOffsets=isSupported&&(tds[0].offsetHeight===0);div.innerHTML="";div.style.width=div.style.paddingLeft="1px";jQuery.boxModel=support.boxModel=div.offsetWidth===2;if(typeof div.style.zoom!=="undefined"){div.style.display="inline";div.style.zoom=1;support.inlineBlockNeedsLayout=(div.offsetWidth===2);div.style.display="";div.innerHTML="<div style='width:4px;'></div>";support.shrinkWrapBlocks=(div.offsetWidth!==2);}
div.style.cssText=ptlm+vb;div.innerHTML=html;outer=div.firstChild;inner=outer.firstChild;td=outer.nextSibling.firstChild.firstChild;offsetSupport={doesNotAddBorder:(inner.offsetTop!==5),doesAddBorderForTableAndCells:(td.offsetTop===5)};inner.style.position="fixed";inner.style.top="20px";offsetSupport.fixedPosition=(inner.offsetTop===20||inner.offsetTop===15);inner.style.position=inner.style.top="";outer.style.overflow="hidden";outer.style.position="relative";offsetSupport.subtractsBorderForOverflowNotVisible=(inner.offsetTop===-5);offsetSupport.doesNotIncludeMarginInBodyOffset=(body.offsetTop!==conMarginTop);body.removeChild(container);div=container=null;jQuery.extend(support,offsetSupport);});return support;})();var rbrace=/^(?:\{.*\}|\[.*\])$/,rmultiDash=/([A-Z])/g;jQuery.extend({cache:{},uuid:0,expando:"jQuery"+(jQuery.fn.jquery+Math.random()).replace(/\D/g,""),noData:{"embed":true,"object":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000","applet":true},hasData:function(elem){elem=elem.nodeType?jQuery.cache[elem[jQuery.expando]]:elem[jQuery.expando];return!!elem&&!isEmptyDataObject(elem);},data:function(elem,name,data,pvt){if(!jQuery.acceptData(elem)){return;}
var privateCache,thisCache,ret,internalKey=jQuery.expando,getByName=typeof name==="string",isNode=elem.nodeType,cache=isNode?jQuery.cache:elem,id=isNode?elem[internalKey]:elem[internalKey]&&internalKey,isEvents=name==="events";if((!id||!cache[id]||(!isEvents&&!pvt&&!cache[id].data))&&getByName&&data===undefined){return;}
if(!id){if(isNode){elem[internalKey]=id=++jQuery.uuid;}else{id=internalKey;}}
if(!cache[id]){cache[id]={};if(!isNode){cache[id].toJSON=jQuery.noop;}}
if(typeof name==="object"||typeof name==="function"){if(pvt){cache[id]=jQuery.extend(cache[id],name);}else{cache[id].data=jQuery.extend(cache[id].data,name);}}
privateCache=thisCache=cache[id];if(!pvt){if(!thisCache.data){thisCache.data={};}
thisCache=thisCache.data;}
if(data!==undefined){thisCache[jQuery.camelCase(name)]=data;}
if(isEvents&&!thisCache[name]){return privateCache.events;}
if(getByName){ret=thisCache[name];if(ret==null){ret=thisCache[jQuery.camelCase(name)];}}else{ret=thisCache;}
return ret;},removeData:function(elem,name,pvt){if(!jQuery.acceptData(elem)){return;}
var thisCache,i,l,internalKey=jQuery.expando,isNode=elem.nodeType,cache=isNode?jQuery.cache:elem,id=isNode?elem[internalKey]:internalKey;if(!cache[id]){return;}
if(name){thisCache=pvt?cache[id]:cache[id].data;if(thisCache){if(!jQuery.isArray(name)){if(name in thisCache){name=[name];}else{name=jQuery.camelCase(name);if(name in thisCache){name=[name];}else{name=name.split(" ");}}}
for(i=0,l=name.length;i<l;i++){delete thisCache[name[i]];}
if(!(pvt?isEmptyDataObject:jQuery.isEmptyObject)(thisCache)){return;}}}
if(!pvt){delete cache[id].data;if(!isEmptyDataObject(cache[id])){return;}}
if(jQuery.support.deleteExpando||!cache.setInterval){delete cache[id];}else{cache[id]=null;}
if(isNode){if(jQuery.support.deleteExpando){delete elem[internalKey];}else if(elem.removeAttribute){elem.removeAttribute(internalKey);}else{elem[internalKey]=null;}}},_data:function(elem,name,data){return jQuery.data(elem,name,data,true);},acceptData:function(elem){if(elem.nodeName){var match=jQuery.noData[elem.nodeName.toLowerCase()];if(match){return!(match===true||elem.getAttribute("classid")!==match);}}
return true;}});jQuery.fn.extend({data:function(key,value){var parts,attr,name,data=null;if(typeof key==="undefined"){if(this.length){data=jQuery.data(this[0]);if(this[0].nodeType===1&&!jQuery._data(this[0],"parsedAttrs")){attr=this[0].attributes;for(var i=0,l=attr.length;i<l;i++){name=attr[i].name;if(name.indexOf("data-")===0){name=jQuery.camelCase(name.substring(5));dataAttr(this[0],name,data[name]);}}
jQuery._data(this[0],"parsedAttrs",true);}}
return data;}else if(typeof key==="object"){return this.each(function(){jQuery.data(this,key);});}
parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key);data=dataAttr(this[0],key,data);}
return data===undefined&&parts[1]?this.data(parts[0]):data;}else{return this.each(function(){var self=jQuery(this),args=[parts[0],value];self.triggerHandler("setData"+parts[1]+"!",args);jQuery.data(this,key,value);self.triggerHandler("changeData"+parts[1]+"!",args);});}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});}});function dataAttr(elem,key,data){if(data===undefined&&elem.nodeType===1){var name="data-"+key.replace(rmultiDash,"-$1").toLowerCase();data=elem.getAttribute(name);if(typeof data==="string"){try{data=data==="true"?true:data==="false"?false:data==="null"?null:jQuery.isNumeric(data)?parseFloat(data):rbrace.test(data)?jQuery.parseJSON(data):data;}catch(e){}
jQuery.data(elem,key,data);}else{data=undefined;}}
return data;}
function isEmptyDataObject(obj){for(var name in obj){if(name==="data"&&jQuery.isEmptyObject(obj[name])){continue;}
if(name!=="toJSON"){return false;}}
return true;}
function handleQueueMarkDefer(elem,type,src){var deferDataKey=type+"defer",queueDataKey=type+"queue",markDataKey=type+"mark",defer=jQuery._data(elem,deferDataKey);if(defer&&(src==="queue"||!jQuery._data(elem,queueDataKey))&&(src==="mark"||!jQuery._data(elem,markDataKey))){setTimeout(function(){if(!jQuery._data(elem,queueDataKey)&&!jQuery._data(elem,markDataKey)){jQuery.removeData(elem,deferDataKey,true);defer.fire();}},0);}}
jQuery.extend({_mark:function(elem,type){if(elem){type=(type||"fx")+"mark";jQuery._data(elem,type,(jQuery._data(elem,type)||0)+1);}},_unmark:function(force,elem,type){if(force!==true){type=elem;elem=force;force=false;}
if(elem){type=type||"fx";var key=type+"mark",count=force?0:((jQuery._data(elem,key)||1)-1);if(count){jQuery._data(elem,key,count);}else{jQuery.removeData(elem,key,true);handleQueueMarkDefer(elem,type,"mark");}}},queue:function(elem,type,data){var q;if(elem){type=(type||"fx")+"queue";q=jQuery._data(elem,type);if(data){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(),hooks={};if(fn==="inprogress"){fn=queue.shift();}
if(fn){if(type==="fx"){queue.unshift("inprogress");}
jQuery._data(elem,type+".run",hooks);fn.call(elem,function(){jQuery.dequeue(elem,type);},hooks);}
if(!queue.length){jQuery.removeData(elem,type+"queue "+type+".run",true);handleQueueMarkDefer(elem,type,"queue");}}});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(){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(next,hooks){var timeout=setTimeout(next,time);hooks.stop=function(){clearTimeout(timeout);};});},clearQueue:function(type){return this.queue(type||"fx",[]);},promise:function(type,object){if(typeof type!=="string"){object=type;type=undefined;}
type=type||"fx";var defer=jQuery.Deferred(),elements=this,i=elements.length,count=1,deferDataKey=type+"defer",queueDataKey=type+"queue",markDataKey=type+"mark",tmp;function resolve(){if(!(--count)){defer.resolveWith(elements,[elements]);}}
while(i--){if((tmp=jQuery.data(elements[i],deferDataKey,undefined,true)||(jQuery.data(elements[i],queueDataKey,undefined,true)||jQuery.data(elements[i],markDataKey,undefined,true))&&jQuery.data(elements[i],deferDataKey,jQuery.Callbacks("once memory"),true))){count++;tmp.add(resolve);}}
resolve();return defer.promise();}});var rclass=/[\n\t\r]/g,rspace=/\s+/,rreturn=/\r/g,rtype=/^(?:button|input)$/i,rfocusable=/^(?:button|input|object|select|textarea)$/i,rclickable=/^a(?:rea)?$/i,rboolean=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,getSetAttribute=jQuery.support.getSetAttribute,nodeHook,boolHook,fixSpecified;jQuery.fn.extend({attr:function(name,value){return jQuery.access(this,name,value,true,jQuery.attr);},removeAttr:function(name){return this.each(function(){jQuery.removeAttr(this,name);});},prop:function(name,value){return jQuery.access(this,name,value,true,jQuery.prop);},removeProp:function(name){name=jQuery.propFix[name]||name;return this.each(function(){try{this[name]=undefined;delete this[name];}catch(e){}});},addClass:function(value){var classNames,i,l,elem,setClass,c,cl;if(jQuery.isFunction(value)){return this.each(function(j){jQuery(this).addClass(value.call(this,j,this.className));});}
if(value&&typeof value==="string"){classNames=value.split(rspace);for(i=0,l=this.length;i<l;i++){elem=this[i];if(elem.nodeType===1){if(!elem.className&&classNames.length===1){elem.className=value;}else{setClass=" "+elem.className+" ";for(c=0,cl=classNames.length;c<cl;c++){if(!~setClass.indexOf(" "+classNames[c]+" ")){setClass+=classNames[c]+" ";}}
elem.className=jQuery.trim(setClass);}}}}
return this;},removeClass:function(value){var classNames,i,l,elem,className,c,cl;if(jQuery.isFunction(value)){return this.each(function(j){jQuery(this).removeClass(value.call(this,j,this.className));});}
if((value&&typeof value==="string")||value===undefined){classNames=(value||"").split(rspace);for(i=0,l=this.length;i<l;i++){elem=this[i];if(elem.nodeType===1&&elem.className){if(value){className=(" "+elem.className+" ").replace(rclass," ");for(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){jQuery(this).toggleClass(value.call(this,i,this.className,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+" ",i=0,l=this.length;for(;i<l;i++){if(this[i].nodeType===1&&(" "+this[i].className+" ").replace(rclass," ").indexOf(className)>-1){return true;}}
return false;},val:function(value){var hooks,ret,isFunction,elem=this[0];if(!arguments.length){if(elem){hooks=jQuery.valHooks[elem.nodeName.toLowerCase()]||jQuery.valHooks[elem.type];if(hooks&&"get"in hooks&&(ret=hooks.get(elem,"value"))!==undefined){return ret;}
ret=elem.value;return typeof ret==="string"?ret.replace(rreturn,""):ret==null?"":ret;}
return;}
isFunction=jQuery.isFunction(value);return this.each(function(i){var self=jQuery(this),val;if(this.nodeType!==1){return;}
if(isFunction){val=value.call(this,i,self.val());}else{val=value;}
if(val==null){val="";}else if(typeof val==="number"){val+="";}else if(jQuery.isArray(val)){val=jQuery.map(val,function(value){return value==null?"":value+"";});}
hooks=jQuery.valHooks[this.nodeName.toLowerCase()]||jQuery.valHooks[this.type];if(!hooks||!("set"in hooks)||hooks.set(this,val,"value")===undefined){this.value=val;}});}});jQuery.extend({valHooks:{option:{get:function(elem){var val=elem.attributes.value;return!val||val.specified?elem.value:elem.text;}},select:{get:function(elem){var value,i,max,option,index=elem.selectedIndex,values=[],options=elem.options,one=elem.type==="select-one";if(index<0){return null;}
i=one?index:0;max=one?index+1:options.length;for(;i<max;i++){option=options[i];if(option.selected&&(jQuery.support.optDisabled?!option.disabled:option.getAttribute("disabled")===null)&&(!option.parentNode.disabled||!jQuery.nodeName(option.parentNode,"optgroup"))){value=jQuery(option).val();if(one){return value;}
values.push(value);}}
if(one&&!values.length&&options.length){return jQuery(options[index]).val();}
return values;},set:function(elem,value){var values=jQuery.makeArray(value);jQuery(elem).find("option").each(function(){this.selected=jQuery.inArray(jQuery(this).val(),values)>=0;});if(!values.length){elem.selectedIndex=-1;}
return values;}}},attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(elem,name,value,pass){var ret,hooks,notxml,nType=elem.nodeType;if(!elem||nType===3||nType===8||nType===2){return;}
if(pass&&name in jQuery.attrFn){return jQuery(elem)[name](value);}
if(typeof elem.getAttribute==="undefined"){return jQuery.prop(elem,name,value);}
notxml=nType!==1||!jQuery.isXMLDoc(elem);if(notxml){name=name.toLowerCase();hooks=jQuery.attrHooks[name]||(rboolean.test(name)?boolHook:nodeHook);}
if(value!==undefined){if(value===null){jQuery.removeAttr(elem,name);return;}else if(hooks&&"set"in hooks&&notxml&&(ret=hooks.set(elem,value,name))!==undefined){return ret;}else{elem.setAttribute(name,""+value);return value;}}else if(hooks&&"get"in hooks&&notxml&&(ret=hooks.get(elem,name))!==null){return ret;}else{ret=elem.getAttribute(name);return ret===null?undefined:ret;}},removeAttr:function(elem,value){var propName,attrNames,name,l,i=0;if(value&&elem.nodeType===1){attrNames=value.toLowerCase().split(rspace);l=attrNames.length;for(;i<l;i++){name=attrNames[i];if(name){propName=jQuery.propFix[name]||name;jQuery.attr(elem,name,"");elem.removeAttribute(getSetAttribute?name:propName);if(rboolean.test(name)&&propName in elem){elem[propName]=false;}}}}},attrHooks:{type:{set:function(elem,value){if(rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("type property can't be changed");}else if(!jQuery.support.radioValue&&value==="radio"&&jQuery.nodeName(elem,"input")){var val=elem.value;elem.setAttribute("type",value);if(val){elem.value=val;}
return value;}}},value:{get:function(elem,name){if(nodeHook&&jQuery.nodeName(elem,"button")){return nodeHook.get(elem,name);}
return name in elem?elem.value:null;},set:function(elem,value,name){if(nodeHook&&jQuery.nodeName(elem,"button")){return nodeHook.set(elem,value,name);}
elem.value=value;}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(elem,name,value){var ret,hooks,notxml,nType=elem.nodeType;if(!elem||nType===3||nType===8||nType===2){return;}
notxml=nType!==1||!jQuery.isXMLDoc(elem);if(notxml){name=jQuery.propFix[name]||name;hooks=jQuery.propHooks[name];}
if(value!==undefined){if(hooks&&"set"in hooks&&(ret=hooks.set(elem,value,name))!==undefined){return ret;}else{return(elem[name]=value);}}else{if(hooks&&"get"in hooks&&(ret=hooks.get(elem,name))!==null){return ret;}else{return elem[name];}}},propHooks:{tabIndex:{get:function(elem){var attributeNode=elem.getAttributeNode("tabindex");return attributeNode&&attributeNode.specified?parseInt(attributeNode.value,10):rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:undefined;}}}});jQuery.attrHooks.tabindex=jQuery.propHooks.tabIndex;boolHook={get:function(elem,name){var attrNode,property=jQuery.prop(elem,name);return property===true||typeof property!=="boolean"&&(attrNode=elem.getAttributeNode(name))&&attrNode.nodeValue!==false?name.toLowerCase():undefined;},set:function(elem,value,name){var propName;if(value===false){jQuery.removeAttr(elem,name);}else{propName=jQuery.propFix[name]||name;if(propName in elem){elem[propName]=true;}
elem.setAttribute(name,name.toLowerCase());}
return name;}};if(!getSetAttribute){fixSpecified={name:true,id:true};nodeHook=jQuery.valHooks.button={get:function(elem,name){var ret;ret=elem.getAttributeNode(name);return ret&&(fixSpecified[name]?ret.nodeValue!=="":ret.specified)?ret.nodeValue:undefined;},set:function(elem,value,name){var ret=elem.getAttributeNode(name);if(!ret){ret=document.createAttribute(name);elem.setAttributeNode(ret);}
return(ret.nodeValue=value+"");}};jQuery.attrHooks.tabindex.set=nodeHook.set;jQuery.each(["width","height"],function(i,name){jQuery.attrHooks[name]=jQuery.extend(jQuery.attrHooks[name],{set:function(elem,value){if(value===""){elem.setAttribute(name,"auto");return value;}}});});jQuery.attrHooks.contenteditable={get:nodeHook.get,set:function(elem,value,name){if(value===""){value="false";}
nodeHook.set(elem,value,name);}};}
if(!jQuery.support.hrefNormalized){jQuery.each(["href","src","width","height"],function(i,name){jQuery.attrHooks[name]=jQuery.extend(jQuery.attrHooks[name],{get:function(elem){var ret=elem.getAttribute(name,2);return ret===null?undefined:ret;}});});}
if(!jQuery.support.style){jQuery.attrHooks.style={get:function(elem){return elem.style.cssText.toLowerCase()||undefined;},set:function(elem,value){return(elem.style.cssText=""+value);}};}
if(!jQuery.support.optSelected){jQuery.propHooks.selected=jQuery.extend(jQuery.propHooks.selected,{get:function(elem){var parent=elem.parentNode;if(parent){parent.selectedIndex;if(parent.parentNode){parent.parentNode.selectedIndex;}}
return null;}});}
if(!jQuery.support.enctype){jQuery.propFix.enctype="encoding";}
if(!jQuery.support.checkOn){jQuery.each(["radio","checkbox"],function(){jQuery.valHooks[this]={get:function(elem){return elem.getAttribute("value")===null?"on":elem.value;}};});}
jQuery.each(["radio","checkbox"],function(){jQuery.valHooks[this]=jQuery.extend(jQuery.valHooks[this],{set:function(elem,value){if(jQuery.isArray(value)){return(elem.checked=jQuery.inArray(jQuery(elem).val(),value)>=0);}}});});var rformElems=/^(?:textarea|input|select)$/i,rtypenamespace=/^([^\.]*)?(?:\.(.+))?$/,rhoverHack=/\bhover(\.\S+)?\b/,rkeyEvent=/^key/,rmouseEvent=/^(?:mouse|contextmenu)|click/,rfocusMorph=/^(?:focusinfocus|focusoutblur)$/,rquickIs=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,quickParse=function(selector){var quick=rquickIs.exec(selector);if(quick){quick[1]=(quick[1]||"").toLowerCase();quick[3]=quick[3]&&new RegExp("(?:^|\\s)"+quick[3]+"(?:\\s|$)");}
return quick;},quickIs=function(elem,m){var attrs=elem.attributes||{};return((!m[1]||elem.nodeName.toLowerCase()===m[1])&&(!m[2]||(attrs.id||{}).value===m[2])&&(!m[3]||m[3].test((attrs["class"]||{}).value)));},hoverHack=function(events){return jQuery.event.special.hover?events:events.replace(rhoverHack,"mouseenter$1 mouseleave$1");};jQuery.event={add:function(elem,types,handler,data,selector){var elemData,eventHandle,events,t,tns,type,namespaces,handleObj,handleObjIn,quick,handlers,special;if(elem.nodeType===3||elem.nodeType===8||!types||!handler||!(elemData=jQuery._data(elem))){return;}
if(handler.handler){handleObjIn=handler;handler=handleObjIn.handler;}
if(!handler.guid){handler.guid=jQuery.guid++;}
events=elemData.events;if(!events){elemData.events=events={};}
eventHandle=elemData.handle;if(!eventHandle){elemData.handle=eventHandle=function(e){return typeof jQuery!=="undefined"&&(!e||jQuery.event.triggered!==e.type)?jQuery.event.dispatch.apply(eventHandle.elem,arguments):undefined;};eventHandle.elem=elem;}
types=jQuery.trim(hoverHack(types)).split(" ");for(t=0;t<types.length;t++){tns=rtypenamespace.exec(types[t])||[];type=tns[1];namespaces=(tns[2]||"").split(".").sort();special=jQuery.event.special[type]||{};type=(selector?special.delegateType:special.bindType)||type;special=jQuery.event.special[type]||{};handleObj=jQuery.extend({type:type,origType:tns[1],data:data,handler:handler,guid:handler.guid,selector:selector,quick:quickParse(selector),namespace:namespaces.join(".")},handleObjIn);handlers=events[type];if(!handlers){handlers=events[type]=[];handlers.delegateCount=0;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;}}
if(selector){handlers.splice(handlers.delegateCount++,0,handleObj);}else{handlers.push(handleObj);}
jQuery.event.global[type]=true;}
elem=null;},global:{},remove:function(elem,types,handler,selector,mappedTypes){var elemData=jQuery.hasData(elem)&&jQuery._data(elem),t,tns,type,origType,namespaces,origCount,j,events,special,handle,eventType,handleObj;if(!elemData||!(events=elemData.events)){return;}
types=jQuery.trim(hoverHack(types||"")).split(" ");for(t=0;t<types.length;t++){tns=rtypenamespace.exec(types[t])||[];type=origType=tns[1];namespaces=tns[2];if(!type){for(type in events){jQuery.event.remove(elem,type+types[t],handler,selector,true);}
continue;}
special=jQuery.event.special[type]||{};type=(selector?special.delegateType:special.bindType)||type;eventType=events[type]||[];origCount=eventType.length;namespaces=namespaces?new RegExp("(^|\\.)"+namespaces.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(j=0;j<eventType.length;j++){handleObj=eventType[j];if((mappedTypes||origType===handleObj.origType)&&(!handler||handler.guid===handleObj.guid)&&(!namespaces||namespaces.test(handleObj.namespace))&&(!selector||selector===handleObj.selector||selector==="**"&&handleObj.selector)){eventType.splice(j--,1);if(handleObj.selector){eventType.delegateCount--;}
if(special.remove){special.remove.call(elem,handleObj);}}}
if(eventType.length===0&&origCount!==eventType.length){if(!special.teardown||special.teardown.call(elem,namespaces)===false){jQuery.removeEvent(elem,type,elemData.handle);}
delete events[type];}}
if(jQuery.isEmptyObject(events)){handle=elemData.handle;if(handle){handle.elem=null;}
jQuery.removeData(elem,["events","handle"],true);}},customEvent:{"getData":true,"setData":true,"changeData":true},trigger:function(event,data,elem,onlyHandlers){if(elem&&(elem.nodeType===3||elem.nodeType===8)){return;}
var type=event.type||event,namespaces=[],cache,exclusive,i,cur,old,ontype,special,handle,eventPath,bubbleType;if(rfocusMorph.test(type+jQuery.event.triggered)){return;}
if(type.indexOf("!")>=0){type=type.slice(0,-1);exclusive=true;}
if(type.indexOf(".")>=0){namespaces=type.split(".");type=namespaces.shift();namespaces.sort();}
if((!elem||jQuery.event.customEvent[type])&&!jQuery.event.global[type]){return;}
event=typeof event==="object"?event[jQuery.expando]?event:new jQuery.Event(type,event):new jQuery.Event(type);event.type=type;event.isTrigger=true;event.exclusive=exclusive;event.namespace=namespaces.join(".");event.namespace_re=event.namespace?new RegExp("(^|\\.)"+namespaces.join("\\.(?:.*\\.)?")+"(\\.|$)"):null;ontype=type.indexOf(":")<0?"on"+type:"";if(!elem){cache=jQuery.cache;for(i in cache){if(cache[i].events&&cache[i].events[type]){jQuery.event.trigger(event,data,cache[i].handle.elem,true);}}
return;}
event.result=undefined;if(!event.target){event.target=elem;}
data=data!=null?jQuery.makeArray(data):[];data.unshift(event);special=jQuery.event.special[type]||{};if(special.trigger&&special.trigger.apply(elem,data)===false){return;}
eventPath=[[elem,special.bindType||type]];if(!onlyHandlers&&!special.noBubble&&!jQuery.isWindow(elem)){bubbleType=special.delegateType||type;cur=rfocusMorph.test(bubbleType+type)?elem:elem.parentNode;old=null;for(;cur;cur=cur.parentNode){eventPath.push([cur,bubbleType]);old=cur;}
if(old&&old===elem.ownerDocument){eventPath.push([old.defaultView||old.parentWindow||window,bubbleType]);}}
for(i=0;i<eventPath.length&&!event.isPropagationStopped();i++){cur=eventPath[i][0];event.type=eventPath[i][1];handle=(jQuery._data(cur,"events")||{})[event.type]&&jQuery._data(cur,"handle");if(handle){handle.apply(cur,data);}
handle=ontype&&cur[ontype];if(handle&&jQuery.acceptData(cur)&&handle.apply(cur,data)===false){event.preventDefault();}}
event.type=type;if(!onlyHandlers&&!event.isDefaultPrevented()){if((!special._default||special._default.apply(elem.ownerDocument,data)===false)&&!(type==="click"&&jQuery.nodeName(elem,"a"))&&jQuery.acceptData(elem)){if(ontype&&elem[type]&&((type!=="focus"&&type!=="blur")||event.target.offsetWidth!==0)&&!jQuery.isWindow(elem)){old=elem[ontype];if(old){elem[ontype]=null;}
jQuery.event.triggered=type;elem[type]();jQuery.event.triggered=undefined;if(old){elem[ontype]=old;}}}}
return event.result;},dispatch:function(event){event=jQuery.event.fix(event||window.event);var handlers=((jQuery._data(this,"events")||{})[event.type]||[]),delegateCount=handlers.delegateCount,args=[].slice.call(arguments,0),run_all=!event.exclusive&&!event.namespace,handlerQueue=[],i,j,cur,jqcur,ret,selMatch,matched,matches,handleObj,sel,related;args[0]=event;event.delegateTarget=this;if(delegateCount&&!event.target.disabled&&!(event.button&&event.type==="click")){jqcur=jQuery(this);jqcur.context=this.ownerDocument||this;for(cur=event.target;cur!=this;cur=cur.parentNode||this){selMatch={};matches=[];jqcur[0]=cur;for(i=0;i<delegateCount;i++){handleObj=handlers[i];sel=handleObj.selector;if(selMatch[sel]===undefined){selMatch[sel]=(handleObj.quick?quickIs(cur,handleObj.quick):jqcur.is(sel));}
if(selMatch[sel]){matches.push(handleObj);}}
if(matches.length){handlerQueue.push({elem:cur,matches:matches});}}}
if(handlers.length>delegateCount){handlerQueue.push({elem:this,matches:handlers.slice(delegateCount)});}
for(i=0;i<handlerQueue.length&&!event.isPropagationStopped();i++){matched=handlerQueue[i];event.currentTarget=matched.elem;for(j=0;j<matched.matches.length&&!event.isImmediatePropagationStopped();j++){handleObj=matched.matches[j];if(run_all||(!event.namespace&&!handleObj.namespace)||event.namespace_re&&event.namespace_re.test(handleObj.namespace)){event.data=handleObj.data;event.handleObj=handleObj;ret=((jQuery.event.special[handleObj.origType]||{}).handle||handleObj.handler).apply(matched.elem,args);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}}}
return event.result;},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(event,original){if(event.which==null){event.which=original.charCode!=null?original.charCode:original.keyCode;}
return event;}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(event,original){var eventDoc,doc,body,button=original.button,fromElement=original.fromElement;if(event.pageX==null&&original.clientX!=null){eventDoc=event.target.ownerDocument||document;doc=eventDoc.documentElement;body=eventDoc.body;event.pageX=original.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc&&doc.clientLeft||body&&body.clientLeft||0);event.pageY=original.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.clientTop||0);}
if(!event.relatedTarget&&fromElement){event.relatedTarget=fromElement===event.target?original.toElement:fromElement;}
if(!event.which&&button!==undefined){event.which=(button&1?1:(button&2?3:(button&4?2:0)));}
return event;}},fix:function(event){if(event[jQuery.expando]){return event;}
var i,prop,originalEvent=event,fixHook=jQuery.event.fixHooks[event.type]||{},copy=fixHook.props?this.props.concat(fixHook.props):this.props;event=jQuery.Event(originalEvent);for(i=copy.length;i;){prop=copy[--i];event[prop]=originalEvent[prop];}
if(!event.target){event.target=originalEvent.srcElement||document;}
if(event.target.nodeType===3){event.target=event.target.parentNode;}
if(event.metaKey===undefined){event.metaKey=event.ctrlKey;}
return fixHook.filter?fixHook.filter(event,originalEvent):event;},special:{ready:{setup:jQuery.bindReady},load:{noBubble:true},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(data,namespaces,eventHandle){if(jQuery.isWindow(this)){this.onbeforeunload=eventHandle;}},teardown:function(namespaces,eventHandle){if(this.onbeforeunload===eventHandle){this.onbeforeunload=null;}}}},simulate:function(type,elem,event,bubble){var e=jQuery.extend(new jQuery.Event(),event,{type:type,isSimulated:true,originalEvent:{}});if(bubble){jQuery.event.trigger(e,null,elem);}else{jQuery.event.dispatch.call(elem,e);}
if(e.isDefaultPrevented()){event.preventDefault();}}};jQuery.event.handle=jQuery.event.dispatch;jQuery.removeEvent=document.removeEventListener?function(elem,type,handle){if(elem.removeEventListener){elem.removeEventListener(type,handle,false);}}:function(elem,type,handle){if(elem.detachEvent){elem.detachEvent("on"+type,handle);}};jQuery.Event=function(src,props){if(!(this instanceof jQuery.Event)){return new jQuery.Event(src,props);}
if(src&&src.type){this.originalEvent=src;this.type=src.type;this.isDefaultPrevented=(src.defaultPrevented||src.returnValue===false||src.getPreventDefault&&src.getPreventDefault())?returnTrue:returnFalse;}else{this.type=src;}
if(props){jQuery.extend(this,props);}
this.timeStamp=src&&src.timeStamp||jQuery.now();this[jQuery.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();}else{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};jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={delegateType:fix,bindType:fix,handle:function(event){var target=this,related=event.relatedTarget,handleObj=event.handleObj,selector=handleObj.selector,ret;if(!related||(related!==target&&!jQuery.contains(target,related))){event.type=handleObj.origType;ret=handleObj.handler.apply(this,arguments);event.type=fix;}
return ret;}};});if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(){if(jQuery.nodeName(this,"form")){return false;}
jQuery.event.add(this,"click._submit keypress._submit",function(e){var elem=e.target,form=jQuery.nodeName(elem,"input")||jQuery.nodeName(elem,"button")?elem.form:undefined;if(form&&!form._submit_attached){jQuery.event.add(form,"submit._submit",function(event){if(this.parentNode&&!event.isTrigger){jQuery.event.simulate("submit",this.parentNode,event,true);}});form._submit_attached=true;}});},teardown:function(){if(jQuery.nodeName(this,"form")){return false;}
jQuery.event.remove(this,"._submit");}};}
if(!jQuery.support.changeBubbles){jQuery.event.special.change={setup:function(){if(rformElems.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio"){jQuery.event.add(this,"propertychange._change",function(event){if(event.originalEvent.propertyName==="checked"){this._just_changed=true;}});jQuery.event.add(this,"click._change",function(event){if(this._just_changed&&!event.isTrigger){this._just_changed=false;jQuery.event.simulate("change",this,event,true);}});}
return false;}
jQuery.event.add(this,"beforeactivate._change",function(e){var elem=e.target;if(rformElems.test(elem.nodeName)&&!elem._change_attached){jQuery.event.add(elem,"change._change",function(event){if(this.parentNode&&!event.isSimulated&&!event.isTrigger){jQuery.event.simulate("change",this.parentNode,event,true);}});elem._change_attached=true;}});},handle:function(event){var elem=event.target;if(this!==elem||event.isSimulated||event.isTrigger||(elem.type!=="radio"&&elem.type!=="checkbox")){return event.handleObj.handler.apply(this,arguments);}},teardown:function(){jQuery.event.remove(this,"._change");return rformElems.test(this.nodeName);}};}
if(!jQuery.support.focusinBubbles){jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){var attaches=0,handler=function(event){jQuery.event.simulate(fix,event.target,jQuery.event.fix(event),true);};jQuery.event.special[fix]={setup:function(){if(attaches++===0){document.addEventListener(orig,handler,true);}},teardown:function(){if(--attaches===0){document.removeEventListener(orig,handler,true);}}};});}
jQuery.fn.extend({on:function(types,selector,data,fn,one){var origFn,type;if(typeof types==="object"){if(typeof selector!=="string"){data=selector;selector=undefined;}
for(type in types){this.on(type,selector,data,types[type],one);}
return this;}
if(data==null&&fn==null){fn=selector;data=selector=undefined;}else if(fn==null){if(typeof selector==="string"){fn=data;data=undefined;}else{fn=data;data=selector;selector=undefined;}}
if(fn===false){fn=returnFalse;}else if(!fn){return this;}
if(one===1){origFn=fn;fn=function(event){jQuery().off(event);return origFn.apply(this,arguments);};fn.guid=origFn.guid||(origFn.guid=jQuery.guid++);}
return this.each(function(){jQuery.event.add(this,types,fn,data,selector);});},one:function(types,selector,data,fn){return this.on.call(this,types,selector,data,fn,1);},off:function(types,selector,fn){if(types&&types.preventDefault&&types.handleObj){var handleObj=types.handleObj;jQuery(types.delegateTarget).off(handleObj.namespace?handleObj.type+"."+handleObj.namespace:handleObj.type,handleObj.selector,handleObj.handler);return this;}
if(typeof types==="object"){for(var type in types){this.off(type,selector,types[type]);}
return this;}
if(selector===false||typeof selector==="function"){fn=selector;selector=undefined;}
if(fn===false){fn=returnFalse;}
return this.each(function(){jQuery.event.remove(this,types,fn,selector);});},bind:function(types,data,fn){return this.on(types,null,data,fn);},unbind:function(types,fn){return this.off(types,null,fn);},live:function(types,data,fn){jQuery(this.context).on(types,this.selector,data,fn);return this;},die:function(types,fn){jQuery(this.context).off(types,this.selector||"**",fn);return this;},delegate:function(selector,types,data,fn){return this.on(types,selector,data,fn);},undelegate:function(selector,types,fn){return arguments.length==1?this.off(selector,"**"):this.off(types,selector,fn);},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){return jQuery.event.trigger(type,data,this[0],true);}},toggle:function(fn){var args=arguments,guid=fn.guid||jQuery.guid++,i=0,toggler=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;};toggler.guid=guid;while(i<args.length){args[i++].guid=guid;}
return this.click(toggler);},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver);}});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 contextmenu").split(" "),function(i,name){jQuery.fn[name]=function(data,fn){if(fn==null){fn=data;data=null;}
return arguments.length>0?this.on(name,null,data,fn):this.trigger(name);};if(jQuery.attrFn){jQuery.attrFn[name]=true;}
if(rkeyEvent.test(name)){jQuery.event.fixHooks[name]=jQuery.event.keyHooks;}
if(rmouseEvent.test(name)){jQuery.event.fixHooks[name]=jQuery.event.mouseHooks;}});
/*
 * Sizzle CSS Selector Engine
 *  Copyright 2011, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,expando="sizcache"+(Math.random()+'').replace('.',''),done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true,rBackslash=/\\/g,rReturn=/\r\n/g,rNonWord=/\W/;[0,0].sort(function(){baseHasDuplicate=false;return 0;});var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;var origContext=context;if(context.nodeType!==1&&context.nodeType!==9){return[];}
if(!selector||typeof selector!=="string"){return results;}
var m,set,checkSet,extra,ret,cur,pop,i,prune=true,contextXML=Sizzle.isXML(context),parts=[],soFar=selector;do{chunker.exec("");m=chunker.exec(soFar);if(m){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break;}}}while(m);if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context,seed);}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,seed);}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}
if(context){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){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(i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&Sizzle.contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(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.matchesSelector=function(node,expr){return Sizzle(expr,null,null,[node]).length>0;};Sizzle.find=function(expr,context,isXML){var set,i,len,match,type,left;if(!expr){return[];}
for(i=0,len=Expr.order.length;i<len;i++){type=Expr.order[i];if((match=Expr.leftMatch[type].exec(expr))){left=match[1];match.splice(1,1);if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(rBackslash,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=typeof context.getElementsByTagName!=="undefined"?context.getElementsByTagName("*"):[];}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var match,anyFound,type,found,item,filter,left,i,pass,old=expr,result=[],curLoop=set,isXMLFilter=set&&set[0]&&Sizzle.isXML(set[0]);while(expr&&set.length){for(type in Expr.filter){if((match=Expr.leftMatch[type].exec(expr))!=null&&match[2]){filter=Expr.filter[type];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(i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);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 new Error("Syntax error, unrecognized expression: "+msg);};var getText=Sizzle.getText=function(elem){var i,node,nodeType=elem.nodeType,ret="";if(nodeType){if(nodeType===1||nodeType===9){if(typeof elem.textContent==='string'){return elem.textContent;}else if(typeof elem.innerText==='string'){return elem.innerText.replace(rReturn,'');}else{for(elem=elem.firstChild;elem;elem=elem.nextSibling){ret+=getText(elem);}}}else if(nodeType===3||nodeType===4){return elem.nodeValue;}}else{for(i=0;(node=elem[i]);i++){if(node.nodeType!==8){ret+=getText(node);}}}
return ret;};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|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,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");},type:function(elem){return elem.getAttribute("type");}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!rNonWord.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 elem,isPartStr=typeof part==="string",i=0,l=checkSet.length;if(isPartStr&&!rNonWord.test(part)){part=part.toLowerCase();for(;i<l;i++){elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false;}}}else{for(;i<l;i++){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 nodeCheck,doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!rNonWord.test(part)){part=part.toLowerCase();nodeCheck=part;checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var nodeCheck,doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!rNonWord.test(part)){part=part.toLowerCase();nodeCheck=part;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.parentNode?[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){if(typeof context.getElementsByTagName!=="undefined"){return context.getElementsByTagName(match[1]);}}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(rBackslash,"")+" ";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\r]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem);}}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(rBackslash,"");},TAG:function(match,curLoop){return match[1].replace(rBackslash,"").toLowerCase();},CHILD:function(match){if(match[1]==="nth"){if(!match[2]){Sizzle.error(match[0]);}
match[2]=match[2].replace(/^\+|\s*/g,'');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;}
else if(match[2]){Sizzle.error(match[0]);}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1]=match[1].replace(rBackslash,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
match[4]=(match[4]||match[5]||"").replace(rBackslash,"");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){if(elem.parentNode){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){var attr=elem.getAttribute("type"),type=elem.type;return elem.nodeName.toLowerCase()==="input"&&"text"===type&&(attr===type||attr===null);},radio:function(elem){return elem.nodeName.toLowerCase()==="input"&&"radio"===elem.type;},checkbox:function(elem){return elem.nodeName.toLowerCase()==="input"&&"checkbox"===elem.type;},file:function(elem){return elem.nodeName.toLowerCase()==="input"&&"file"===elem.type;},password:function(elem){return elem.nodeName.toLowerCase()==="input"&&"password"===elem.type;},submit:function(elem){var name=elem.nodeName.toLowerCase();return(name==="input"||name==="button")&&"submit"===elem.type;},image:function(elem){return elem.nodeName.toLowerCase()==="input"&&"image"===elem.type;},reset:function(elem){var name=elem.nodeName.toLowerCase();return(name==="input"||name==="button")&&"reset"===elem.type;},button:function(elem){var name=elem.nodeName.toLowerCase();return name==="input"&&"button"===elem.type||name==="button";},input:function(elem){return(/input|select|textarea|button/i).test(elem.nodeName);},focus:function(elem){return elem===elem.ownerDocument.activeElement;}},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 j=0,l=not.length;j<l;j++){if(not[j]===elem){return false;}}
return true;}else{Sizzle.error(name);}},CHILD:function(elem,match){var first,last,doneName,parent,cache,count,diff,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":first=match[2];last=match[3];if(first===1&&last===0){return true;}
doneName=match[0];parent=elem.parentNode;if(parent&&(parent[expando]!==doneName||!elem.nodeIndex)){count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent[expando]=doneName;}
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&&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=Sizzle.attr?Sizzle.attr(elem,name):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&&Sizzle.attr?result!=null: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,fescape=function(all,num){return"\\"+(num-0+1);};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,fescape));}
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 i=0,ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var l=array.length;i<l;i++){ret.push(array[i]);}}else{for(;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder,siblingCheck;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(a===b){hasDuplicate=true;return 0;}
if(!a.compareDocumentPosition||!b.compareDocumentPosition){return a.compareDocumentPosition?-1:1;}
return a.compareDocumentPosition(b)&4?-1:1;};}else{sortOrder=function(a,b){if(a===b){hasDuplicate=true;return 0;}else if(a.sourceIndex&&b.sourceIndex){return a.sourceIndex-b.sourceIndex;}
var al,bl,ap=[],bp=[],aup=a.parentNode,bup=b.parentNode,cur=aup;if(aup===bup){return siblingCheck(a,b);}else if(!aup){return-1;}else if(!bup){return 1;}
while(cur){ap.unshift(cur);cur=cur.parentNode;}
cur=bup;while(cur){bp.unshift(cur);cur=cur.parentNode;}
al=ap.length;bl=bp.length;for(var i=0;i<al&&i<bl;i++){if(ap[i]!==bp[i]){return siblingCheck(ap[i],bp[i]);}}
return i===al?siblingCheck(a,bp[i],-1):siblingCheck(ap[i],b,1);};siblingCheck=function(a,b,ret){if(a===b){return ret;}
var cur=a.nextSibling;while(cur){if(cur===b){return-1;}
cur=cur.nextSibling;}
return 1;};}
(function(){var form=document.createElement("div"),id="script"+(new Date()).getTime(),root=document.documentElement;form.innerHTML="<a name='"+id+"'/>";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"),id="__sizzle__";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&&!Sizzle.isXML(context)){var match=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(query);if(match&&(context.nodeType===1||context.nodeType===9)){if(match[1]){return makeArray(context.getElementsByTagName(query),extra);}else if(match[2]&&Expr.find.CLASS&&context.getElementsByClassName){return makeArray(context.getElementsByClassName(match[2]),extra);}}
if(context.nodeType===9){if(query==="body"&&context.body){return makeArray([context.body],extra);}else if(match&&match[3]){var elem=context.getElementById(match[3]);if(elem&&elem.parentNode){if(elem.id===match[3]){return makeArray([elem],extra);}}else{return makeArray([],extra);}}
try{return makeArray(context.querySelectorAll(query),extra);}catch(qsaError){}}else if(context.nodeType===1&&context.nodeName.toLowerCase()!=="object"){var oldContext=context,old=context.getAttribute("id"),nid=old||id,hasParent=context.parentNode,relativeHierarchySelector=/^\s*[+~]/.test(query);if(!old){context.setAttribute("id",nid);}else{nid=nid.replace(/'/g,"\\$&");}
if(relativeHierarchySelector&&hasParent){context=context.parentNode;}
try{if(!relativeHierarchySelector||hasParent){return makeArray(context.querySelectorAll("[id='"+nid+"'] "+query),extra);}}catch(pseudoError){}finally{if(!old){oldContext.removeAttribute("id");}}}}
return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();}
(function(){var html=document.documentElement,matches=html.matchesSelector||html.mozMatchesSelector||html.webkitMatchesSelector||html.msMatchesSelector;if(matches){var disconnectedMatch=!matches.call(document.createElement("div"),"div"),pseudoWorks=false;try{matches.call(document.documentElement,"[test!='']:sizzle");}catch(pseudoError){pseudoWorks=true;}
Sizzle.matchesSelector=function(node,expr){expr=expr.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!Sizzle.isXML(node)){try{if(pseudoWorks||!Expr.match.PSEUDO.test(expr)&&!/!=/.test(expr)){var ret=matches.call(node,expr);if(ret||!disconnectedMatch||node.document&&node.document.nodeType!==11){return ret;}}}catch(e){}}
return Sizzle(expr,null,null,[node]).length>0;};}})();(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){var match=false;elem=elem[dir];while(elem){if(elem[expando]===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem[expando]=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){var match=false;elem=elem[dir];while(elem){if(elem[expando]===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem[expando]=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;}}}
if(document.documentElement.contains){Sizzle.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):true);};}else if(document.documentElement.compareDocumentPosition){Sizzle.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16);};}else{Sizzle.contains=function(){return false;};}
Sizzle.isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};var posProcess=function(selector,context,seed){var match,tmpSet=[],later="",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,seed);}
return Sizzle.filter(later,tmpSet);};Sizzle.attr=jQuery.attr;Sizzle.selectors.attrMap={};jQuery.find=Sizzle;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;jQuery.unique=Sizzle.uniqueSort;jQuery.text=Sizzle.getText;jQuery.isXMLDoc=Sizzle.isXML;jQuery.contains=Sizzle.contains;})();var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,isSimple=/^.[^:#\[\.,]*$/,slice=Array.prototype.slice,POS=jQuery.expr.match.POS,guaranteedUnique={children:true,contents:true,next:true,prev:true};jQuery.fn.extend({find:function(selector){var self=this,i,l;if(typeof selector!=="string"){return jQuery(selector).filter(function(){for(i=0,l=self.length;i<l;i++){if(jQuery.contains(self[i],this)){return true;}}});}
var ret=this.pushStack("","find",selector),length,n,r;for(i=0,l=this.length;i<l;i++){length=ret.length;jQuery.find(selector,this[i],ret);if(i>0){for(n=length;n<ret.length;n++){for(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&&(typeof selector==="string"?POS.test(selector)?jQuery(selector,this.context).index(this[0])>=0:jQuery.filter(selector,this).length>0:this.filter(selector).length>0);},closest:function(selectors,context){var ret=[],i,l,cur=this[0];if(jQuery.isArray(selectors)){var level=1;while(cur&&cur.ownerDocument&&cur!==context){for(i=0;i<selectors.length;i++){if(jQuery(cur).is(selectors[i])){ret.push({selector:selectors[i],elem:cur,level:level});}}
cur=cur.parentNode;level++;}
return ret;}
var pos=POS.test(selectors)||typeof selectors!=="string"?jQuery(selectors,context||this.context):0;for(i=0,l=this.length;i<l;i++){cur=this[i];while(cur){if(pos?pos.index(cur)>-1:jQuery.find.matchesSelector(cur,selectors)){ret.push(cur);break;}else{cur=cur.parentNode;if(!cur||!cur.ownerDocument||cur===context||cur.nodeType===11){break;}}}}
ret=ret.length>1?jQuery.unique(ret):ret;return this.pushStack(ret,"closest",selectors);},index:function(elem){if(!elem){return(this[0]&&this[0].parentNode)?this.prevAll().length:-1;}
if(typeof elem==="string"){return jQuery.inArray(this[0],jQuery(elem));}
return jQuery.inArray(elem.jquery?elem[0]:elem,this);},add:function(selector,context){var set=typeof selector==="string"?jQuery(selector,context):jQuery.makeArray(selector&&selector.nodeType?[selector]: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&&!guaranteedUnique[name]?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 elems.length===1?jQuery.find.matchesSelector(elems[0],expr)?[elems[0]]:[]: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;}});function winnow(elements,qualifier,keep){qualifier=qualifier||0;if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){var retVal=!!qualifier.call(elem,i,elem);return retVal===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;});}
function createSafeFragment(document){var list=nodeNames.split("|"),safeFrag=document.createDocumentFragment();if(safeFrag.createElement){while(list.length){safeFrag.createElement(list.pop());}}
return safeFrag;}
var nodeNames="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|"+"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&#?\w+;/,rnoInnerhtml=/<(?:script|style)/i,rnocache=/<(?:script|object|embed|option|style)/i,rnoshimcache=new RegExp("<(?:"+nodeNames+")","i"),rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,rscriptType=/\/(java|ecma)script/i,rcleanScript=/^\s*<!(?:\[CDATA\[|\-\-)/,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,"",""]},safeFragment=createSafeFragment(document);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){var isFunction=jQuery.isFunction(html);return this.each(function(i){jQuery(this).wrapAll(isFunction?html.call(this,i):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.clean(arguments);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.clean(arguments));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(dataAndEvents,deepDataAndEvents){dataAndEvents=dataAndEvents==null?false:dataAndEvents;deepDataAndEvents=deepDataAndEvents==null?dataAndEvents:deepDataAndEvents;return this.map(function(){return jQuery.clone(this,dataAndEvents,deepDataAndEvents);});},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null;}else if(typeof value==="string"&&!rnoInnerhtml.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,"<$1></$2>");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);self.html(value.call(this,i,self.html()));});}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.length?this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value):this;}},detach:function(selector){return this.remove(selector,true);},domManip:function(args,table,callback){var results,first,fragment,parent,value=args[0],scripts=[];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=jQuery.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,lastIndex=l-1;i<l;i++){callback.call(table?root(this[i],first):this[i],results.cacheable||(l>1&&i<lastIndex)?jQuery.clone(fragment,true,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(src,dest){if(dest.nodeType!==1||!jQuery.hasData(src)){return;}
var type,i,l,oldData=jQuery._data(src),curData=jQuery._data(dest,oldData),events=oldData.events;if(events){delete curData.handle;curData.events={};for(type in events){for(i=0,l=events[type].length;i<l;i++){jQuery.event.add(dest,type+(events[type][i].namespace?".":"")+events[type][i].namespace,events[type][i],events[type][i].data);}}}
if(curData.data){curData.data=jQuery.extend({},curData.data);}}
function cloneFixAttributes(src,dest){var nodeName;if(dest.nodeType!==1){return;}
if(dest.clearAttributes){dest.clearAttributes();}
if(dest.mergeAttributes){dest.mergeAttributes(src);}
nodeName=dest.nodeName.toLowerCase();if(nodeName==="object"){dest.outerHTML=src.outerHTML;}else if(nodeName==="input"&&(src.type==="checkbox"||src.type==="radio")){if(src.checked){dest.defaultChecked=dest.checked=src.checked;}
if(dest.value!==src.value){dest.value=src.value;}}else if(nodeName==="option"){dest.selected=src.defaultSelected;}else if(nodeName==="input"||nodeName==="textarea"){dest.defaultValue=src.defaultValue;}
dest.removeAttribute(jQuery.expando);}
jQuery.buildFragment=function(args,nodes,scripts){var fragment,cacheable,cacheresults,doc,first=args[0];if(nodes&&nodes[0]){doc=nodes[0].ownerDocument||nodes[0];}
if(!doc.createDocumentFragment){doc=document;}
if(args.length===1&&typeof first==="string"&&first.length<512&&doc===document&&first.charAt(0)==="<"&&!rnocache.test(first)&&(jQuery.support.checkClone||!rchecked.test(first))&&(jQuery.support.html5Clone||!rnoshimcache.test(first))){cacheable=true;cacheresults=jQuery.fragments[first];if(cacheresults&&cacheresults!==1){fragment=cacheresults;}}
if(!fragment){fragment=doc.createDocumentFragment();jQuery.clean(args,doc,fragment,scripts);}
if(cacheable){jQuery.fragments[first]=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(insert[i])[original](elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,insert.selector);}};});function getAll(elem){if(typeof elem.getElementsByTagName!=="undefined"){return elem.getElementsByTagName("*");}else if(typeof elem.querySelectorAll!=="undefined"){return elem.querySelectorAll("*");}else{return[];}}
function fixDefaultChecked(elem){if(elem.type==="checkbox"||elem.type==="radio"){elem.defaultChecked=elem.checked;}}
function findInputs(elem){var nodeName=(elem.nodeName||"").toLowerCase();if(nodeName==="input"){fixDefaultChecked(elem);}else if(nodeName!=="script"&&typeof elem.getElementsByTagName!=="undefined"){jQuery.grep(elem.getElementsByTagName("input"),fixDefaultChecked);}}
function shimCloneNode(elem){var div=document.createElement("div");safeFragment.appendChild(div);div.innerHTML=elem.outerHTML;return div.firstChild;}
jQuery.extend({clone:function(elem,dataAndEvents,deepDataAndEvents){var srcElements,destElements,i,clone=jQuery.support.html5Clone||!rnoshimcache.test("<"+elem.nodeName)?elem.cloneNode(true):shimCloneNode(elem);if((!jQuery.support.noCloneEvent||!jQuery.support.noCloneChecked)&&(elem.nodeType===1||elem.nodeType===11)&&!jQuery.isXMLDoc(elem)){cloneFixAttributes(elem,clone);srcElements=getAll(elem);destElements=getAll(clone);for(i=0;srcElements[i];++i){if(destElements[i]){cloneFixAttributes(srcElements[i],destElements[i]);}}}
if(dataAndEvents){cloneCopyEvent(elem,clone);if(deepDataAndEvents){srcElements=getAll(elem);destElements=getAll(clone);for(i=0;srcElements[i];++i){cloneCopyEvent(srcElements[i],destElements[i]);}}}
srcElements=destElements=null;return clone;},clean:function(elems,context,fragment,scripts){var checkScriptType;context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;}
var ret=[],j;for(var i=0,elem;(elem=elems[i])!=null;i++){if(typeof elem==="number"){elem+="";}
if(!elem){continue;}
if(typeof elem==="string"){if(!rhtml.test(elem)){elem=context.createTextNode(elem);}else{elem=elem.replace(rxhtmlTag,"<$1></$2>");var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");if(context===document){safeFragment.appendChild(div);}else{createSafeFragment(context).appendChild(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(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;}}
var len;if(!jQuery.support.appendChecked){if(elem[0]&&typeof(len=elem.length)==="number"){for(j=0;j<len;j++){findInputs(elem[j]);}}else{findInputs(elem);}}
if(elem.nodeType){ret.push(elem);}else{ret=jQuery.merge(ret,elem);}}
if(fragment){checkScriptType=function(elem){return!elem.type||rscriptType.test(elem.type);};for(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){var jsTags=jQuery.grep(ret[i].getElementsByTagName("script"),checkScriptType);ret.splice.apply(ret,[i+1,0].concat(jsTags));}
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++){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){continue;}
id=elem[jQuery.expando];if(id){data=cache[id];if(data&&data.events){for(var type in data.events){if(special[type]){jQuery.event.remove(elem,type);}else{jQuery.removeEvent(elem,type,data.handle);}}
if(data.handle){data.handle.elem=null;}}
if(deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}
delete cache[id];}}}});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||"").replace(rcleanScript,"/*$0*/"));}
if(elem.parentNode){elem.parentNode.removeChild(elem);}}
var ralpha=/alpha\([^)]*\)/i,ropacity=/opacity=([^)]*)/,rupper=/([A-Z]|^ms)/g,rnumpx=/^-?\d+(?:px)?$/i,rnum=/^-?\d/,rrelNum=/^([\-+])=([\-+.\de]+)/,cssShow={position:"absolute",visibility:"hidden",display:"block"},cssWidth=["Left","Right"],cssHeight=["Top","Bottom"],curCSS,getComputedStyle,currentStyle;jQuery.fn.css=function(name,value){if(arguments.length===2&&value===undefined){return this;}
return jQuery.access(this,name,value,true,function(elem,name,value){return value!==undefined?jQuery.style(elem,name,value):jQuery.css(elem,name);});};jQuery.extend({cssHooks:{opacity:{get:function(elem,computed){if(computed){var ret=curCSS(elem,"opacity","opacity");return ret===""?"1":ret;}else{return elem.style.opacity;}}}},cssNumber:{"fillOpacity":true,"fontWeight":true,"lineHeight":true,"opacity":true,"orphans":true,"widows":true,"zIndex":true,"zoom":true},cssProps:{"float":jQuery.support.cssFloat?"cssFloat":"styleFloat"},style:function(elem,name,value,extra){if(!elem||elem.nodeType===3||elem.nodeType===8||!elem.style){return;}
var ret,type,origName=jQuery.camelCase(name),style=elem.style,hooks=jQuery.cssHooks[origName];name=jQuery.cssProps[origName]||origName;if(value!==undefined){type=typeof value;if(type==="string"&&(ret=rrelNum.exec(value))){value=(+(ret[1]+1)*+ret[2])+parseFloat(jQuery.css(elem,name));type="number";}
if(value==null||type==="number"&&isNaN(value)){return;}
if(type==="number"&&!jQuery.cssNumber[origName]){value+="px";}
if(!hooks||!("set"in hooks)||(value=hooks.set(elem,value))!==undefined){try{style[name]=value;}catch(e){}}}else{if(hooks&&"get"in hooks&&(ret=hooks.get(elem,false,extra))!==undefined){return ret;}
return style[name];}},css:function(elem,name,extra){var ret,hooks;name=jQuery.camelCase(name);hooks=jQuery.cssHooks[name];name=jQuery.cssProps[name]||name;if(name==="cssFloat"){name="float";}
if(hooks&&"get"in hooks&&(ret=hooks.get(elem,true,extra))!==undefined){return ret;}else if(curCSS){return curCSS(elem,name);}},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(name in options){elem.style[name]=old[name];}}});jQuery.curCSS=jQuery.css;jQuery.each(["height","width"],function(i,name){jQuery.cssHooks[name]={get:function(elem,computed,extra){var val;if(computed){if(elem.offsetWidth!==0){return getWH(elem,name,extra);}else{jQuery.swap(elem,cssShow,function(){val=getWH(elem,name,extra);});}
return val;}},set:function(elem,value){if(rnumpx.test(value)){value=parseFloat(value);if(value>=0){return value+"px";}}else{return value;}}};});if(!jQuery.support.opacity){jQuery.cssHooks.opacity={get:function(elem,computed){return ropacity.test((computed&&elem.currentStyle?elem.currentStyle.filter:elem.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":computed?"1":"";},set:function(elem,value){var style=elem.style,currentStyle=elem.currentStyle,opacity=jQuery.isNumeric(value)?"alpha(opacity="+value*100+")":"",filter=currentStyle&&currentStyle.filter||style.filter||"";style.zoom=1;if(value>=1&&jQuery.trim(filter.replace(ralpha,""))===""){style.removeAttribute("filter");if(currentStyle&&!currentStyle.filter){return;}}
style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):filter+" "+opacity;}};}
jQuery(function(){if(!jQuery.support.reliableMarginRight){jQuery.cssHooks.marginRight={get:function(elem,computed){var ret;jQuery.swap(elem,{"display":"inline-block"},function(){if(computed){ret=curCSS(elem,"margin-right","marginRight");}else{ret=elem.style.marginRight;}});return ret;}};}});if(document.defaultView&&document.defaultView.getComputedStyle){getComputedStyle=function(elem,name){var ret,defaultView,computedStyle;name=name.replace(rupper,"-$1").toLowerCase();if((defaultView=elem.ownerDocument.defaultView)&&(computedStyle=defaultView.getComputedStyle(elem,null))){ret=computedStyle.getPropertyValue(name);if(ret===""&&!jQuery.contains(elem.ownerDocument.documentElement,elem)){ret=jQuery.style(elem,name);}}
return ret;};}
if(document.documentElement.currentStyle){currentStyle=function(elem,name){var left,rsLeft,uncomputed,ret=elem.currentStyle&&elem.currentStyle[name],style=elem.style;if(ret===null&&style&&(uncomputed=style[name])){ret=uncomputed;}
if(!rnumpx.test(ret)&&rnum.test(ret)){left=style.left;rsLeft=elem.runtimeStyle&&elem.runtimeStyle.left;if(rsLeft){elem.runtimeStyle.left=elem.currentStyle.left;}
style.left=name==="fontSize"?"1em":(ret||0);ret=style.pixelLeft+"px";style.left=left;if(rsLeft){elem.runtimeStyle.left=rsLeft;}}
return ret===""?"auto":ret;};}
curCSS=getComputedStyle||currentStyle;function getWH(elem,name,extra){var val=name==="width"?elem.offsetWidth:elem.offsetHeight,which=name==="width"?cssWidth:cssHeight,i=0,len=which.length;if(val>0){if(extra!=="border"){for(;i<len;i++){if(!extra){val-=parseFloat(jQuery.css(elem,"padding"+which[i]))||0;}
if(extra==="margin"){val+=parseFloat(jQuery.css(elem,extra+which[i]))||0;}else{val-=parseFloat(jQuery.css(elem,"border"+which[i]+"Width"))||0;}}}
return val+"px";}
val=curCSS(elem,name,name);if(val<0||val==null){val=elem.style[name]||0;}
val=parseFloat(val)||0;if(extra){for(;i<len;i++){val+=parseFloat(jQuery.css(elem,"padding"+which[i]))||0;if(extra!=="padding"){val+=parseFloat(jQuery.css(elem,"border"+which[i]+"Width"))||0;}
if(extra==="margin"){val+=parseFloat(jQuery.css(elem,extra+which[i]))||0;}}}
return val+"px";}
if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight;return(width===0&&height===0)||(!jQuery.support.reliableHiddenOffsets&&((elem.style&&elem.style.display)||jQuery.css(elem,"display"))==="none");};jQuery.expr.filters.visible=function(elem){return!jQuery.expr.filters.hidden(elem);};}
var r20=/%20/g,rbracket=/\[\]$/,rCRLF=/\r?\n/g,rhash=/#.*$/,rheaders=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,rinput=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,rlocalProtocol=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,rnoContent=/^(?:GET|HEAD)$/,rprotocol=/^\/\//,rquery=/\?/,rscript=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,rselectTextarea=/^(?:select|textarea)/i,rspacesAjax=/\s+/,rts=/([?&])_=[^&]*/,rurl=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,_load=jQuery.fn.load,prefilters={},transports={},ajaxLocation,ajaxLocParts,allTypes=["*/"]+["*"];try{ajaxLocation=location.href;}catch(e){ajaxLocation=document.createElement("a");ajaxLocation.href="";ajaxLocation=ajaxLocation.href;}
ajaxLocParts=rurl.exec(ajaxLocation.toLowerCase())||[];function addToPrefiltersOrTransports(structure){return function(dataTypeExpression,func){if(typeof dataTypeExpression!=="string"){func=dataTypeExpression;dataTypeExpression="*";}
if(jQuery.isFunction(func)){var dataTypes=dataTypeExpression.toLowerCase().split(rspacesAjax),i=0,length=dataTypes.length,dataType,list,placeBefore;for(;i<length;i++){dataType=dataTypes[i];placeBefore=/^\+/.test(dataType);if(placeBefore){dataType=dataType.substr(1)||"*";}
list=structure[dataType]=structure[dataType]||[];list[placeBefore?"unshift":"push"](func);}}};}
function inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,dataType,inspected){dataType=dataType||options.dataTypes[0];inspected=inspected||{};inspected[dataType]=true;var list=structure[dataType],i=0,length=list?list.length:0,executeOnly=(structure===prefilters),selection;for(;i<length&&(executeOnly||!selection);i++){selection=list[i](options,originalOptions,jqXHR);if(typeof selection==="string"){if(!executeOnly||inspected[selection]){selection=undefined;}else{options.dataTypes.unshift(selection);selection=inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,selection,inspected);}}}
if((executeOnly||!selection)&&!inspected["*"]){selection=inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,"*",inspected);}
return selection;}
function ajaxExtend(target,src){var key,deep,flatOptions=jQuery.ajaxSettings.flatOptions||{};for(key in src){if(src[key]!==undefined){(flatOptions[key]?target:(deep||(deep={})))[key]=src[key];}}
if(deep){jQuery.extend(true,target,deep);}}
jQuery.fn.extend({load:function(url,params,callback){if(typeof url!=="string"&&_load){return _load.apply(this,arguments);}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=undefined;}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(jqXHR,status,responseText){responseText=jqXHR.responseText;if(jqXHR.isResolved()){jqXHR.done(function(r){responseText=r;});self.html(selector?jQuery("<div>").append(responseText.replace(rscript,"")).find(selector):responseText);}
if(callback){self.each(callback,[responseText,status,jqXHR]);}}});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.replace(rCRLF,"\r\n")};}):{name:elem.name,value:val.replace(rCRLF,"\r\n")};}).get();}});jQuery.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(i,o){jQuery.fn[o]=function(f){return this.on(o,f);};});jQuery.each(["get","post"],function(i,method){jQuery[method]=function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;callback=data;data=undefined;}
return jQuery.ajax({type:method,url:url,data:data,success:callback,dataType:type});};});jQuery.extend({getScript:function(url,callback){return jQuery.get(url,undefined,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},ajaxSetup:function(target,settings){if(settings){ajaxExtend(target,jQuery.ajaxSettings);}else{settings=target;target=jQuery.ajaxSettings;}
ajaxExtend(target,settings);return target;},ajaxSettings:{url:ajaxLocation,isLocal:rlocalProtocol.test(ajaxLocParts[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":allTypes},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":window.String,"text html":true,"text json":jQuery.parseJSON,"text xml":jQuery.parseXML},flatOptions:{context:true,url:true}},ajaxPrefilter:addToPrefiltersOrTransports(prefilters),ajaxTransport:addToPrefiltersOrTransports(transports),ajax:function(url,options){if(typeof url==="object"){options=url;url=undefined;}
options=options||{};var
s=jQuery.ajaxSetup({},options),callbackContext=s.context||s,globalEventContext=callbackContext!==s&&(callbackContext.nodeType||callbackContext instanceof jQuery)?jQuery(callbackContext):jQuery.event,deferred=jQuery.Deferred(),completeDeferred=jQuery.Callbacks("once memory"),statusCode=s.statusCode||{},ifModifiedKey,requestHeaders={},requestHeadersNames={},responseHeadersString,responseHeaders,transport,timeoutTimer,parts,state=0,fireGlobals,i,jqXHR={readyState:0,setRequestHeader:function(name,value){if(!state){var lname=name.toLowerCase();name=requestHeadersNames[lname]=requestHeadersNames[lname]||name;requestHeaders[name]=value;}
return this;},getAllResponseHeaders:function(){return state===2?responseHeadersString:null;},getResponseHeader:function(key){var match;if(state===2){if(!responseHeaders){responseHeaders={};while((match=rheaders.exec(responseHeadersString))){responseHeaders[match[1].toLowerCase()]=match[2];}}
match=responseHeaders[key.toLowerCase()];}
return match===undefined?null:match;},overrideMimeType:function(type){if(!state){s.mimeType=type;}
return this;},abort:function(statusText){statusText=statusText||"abort";if(transport){transport.abort(statusText);}
done(0,statusText);return this;}};function done(status,nativeStatusText,responses,headers){if(state===2){return;}
state=2;if(timeoutTimer){clearTimeout(timeoutTimer);}
transport=undefined;responseHeadersString=headers||"";jqXHR.readyState=status>0?4:0;var isSuccess,success,error,statusText=nativeStatusText,response=responses?ajaxHandleResponses(s,jqXHR,responses):undefined,lastModified,etag;if(status>=200&&status<300||status===304){if(s.ifModified){if((lastModified=jqXHR.getResponseHeader("Last-Modified"))){jQuery.lastModified[ifModifiedKey]=lastModified;}
if((etag=jqXHR.getResponseHeader("Etag"))){jQuery.etag[ifModifiedKey]=etag;}}
if(status===304){statusText="notmodified";isSuccess=true;}else{try{success=ajaxConvert(s,response);statusText="success";isSuccess=true;}catch(e){statusText="parsererror";error=e;}}}else{error=statusText;if(!statusText||status){statusText="error";if(status<0){status=0;}}}
jqXHR.status=status;jqXHR.statusText=""+(nativeStatusText||statusText);if(isSuccess){deferred.resolveWith(callbackContext,[success,statusText,jqXHR]);}else{deferred.rejectWith(callbackContext,[jqXHR,statusText,error]);}
jqXHR.statusCode(statusCode);statusCode=undefined;if(fireGlobals){globalEventContext.trigger("ajax"+(isSuccess?"Success":"Error"),[jqXHR,s,isSuccess?success:error]);}
completeDeferred.fireWith(callbackContext,[jqXHR,statusText]);if(fireGlobals){globalEventContext.trigger("ajaxComplete",[jqXHR,s]);if(!(--jQuery.active)){jQuery.event.trigger("ajaxStop");}}}
deferred.promise(jqXHR);jqXHR.success=jqXHR.done;jqXHR.error=jqXHR.fail;jqXHR.complete=completeDeferred.add;jqXHR.statusCode=function(map){if(map){var tmp;if(state<2){for(tmp in map){statusCode[tmp]=[statusCode[tmp],map[tmp]];}}else{tmp=map[jqXHR.status];jqXHR.then(tmp,tmp);}}
return this;};s.url=((url||s.url)+"").replace(rhash,"").replace(rprotocol,ajaxLocParts[1]+"//");s.dataTypes=jQuery.trim(s.dataType||"*").toLowerCase().split(rspacesAjax);if(s.crossDomain==null){parts=rurl.exec(s.url.toLowerCase());s.crossDomain=!!(parts&&(parts[1]!=ajaxLocParts[1]||parts[2]!=ajaxLocParts[2]||(parts[3]||(parts[1]==="http:"?80:443))!=(ajaxLocParts[3]||(ajaxLocParts[1]==="http:"?80:443))));}
if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional);}
inspectPrefiltersOrTransports(prefilters,s,options,jqXHR);if(state===2){return false;}
fireGlobals=s.global;s.type=s.type.toUpperCase();s.hasContent=!rnoContent.test(s.type);if(fireGlobals&&jQuery.active++===0){jQuery.event.trigger("ajaxStart");}
if(!s.hasContent){if(s.data){s.url+=(rquery.test(s.url)?"&":"?")+s.data;delete s.data;}
ifModifiedKey=s.url;if(s.cache===false){var ts=jQuery.now(),ret=s.url.replace(rts,"$1_="+ts);s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"");}}
if(s.data&&s.hasContent&&s.contentType!==false||options.contentType){jqXHR.setRequestHeader("Content-Type",s.contentType);}
if(s.ifModified){ifModifiedKey=ifModifiedKey||s.url;if(jQuery.lastModified[ifModifiedKey]){jqXHR.setRequestHeader("If-Modified-Since",jQuery.lastModified[ifModifiedKey]);}
if(jQuery.etag[ifModifiedKey]){jqXHR.setRequestHeader("If-None-Match",jQuery.etag[ifModifiedKey]);}}
jqXHR.setRequestHeader("Accept",s.dataTypes[0]&&s.accepts[s.dataTypes[0]]?s.accepts[s.dataTypes[0]]+(s.dataTypes[0]!=="*"?", "+allTypes+"; q=0.01":""):s.accepts["*"]);for(i in s.headers){jqXHR.setRequestHeader(i,s.headers[i]);}
if(s.beforeSend&&(s.beforeSend.call(callbackContext,jqXHR,s)===false||state===2)){jqXHR.abort();return false;}
for(i in{success:1,error:1,complete:1}){jqXHR[i](s[i]);}
transport=inspectPrefiltersOrTransports(transports,s,options,jqXHR);if(!transport){done(-1,"No Transport");}else{jqXHR.readyState=1;if(fireGlobals){globalEventContext.trigger("ajaxSend",[jqXHR,s]);}
if(s.async&&s.timeout>0){timeoutTimer=setTimeout(function(){jqXHR.abort("timeout");},s.timeout);}
try{state=1;transport.send(requestHeaders,done);}catch(e){if(state<2){done(-1,e);}else{throw e;}}}
return jqXHR;},param:function(a,traditional){var s=[],add=function(key,value){value=jQuery.isFunction(value)?value():value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value);};if(traditional===undefined){traditional=jQuery.ajaxSettings.traditional;}
if(jQuery.isArray(a)||(a.jquery&&!jQuery.isPlainObject(a))){jQuery.each(a,function(){add(this.name,this.value);});}else{for(var prefix in a){buildParams(prefix,a[prefix],traditional,add);}}
return s.join("&").replace(r20,"+");}});function buildParams(prefix,obj,traditional,add){if(jQuery.isArray(obj)){jQuery.each(obj,function(i,v){if(traditional||rbracket.test(prefix)){add(prefix,v);}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v,traditional,add);}});}else if(!traditional&&obj!=null&&typeof obj==="object"){for(var name in obj){buildParams(prefix+"["+name+"]",obj[name],traditional,add);}}else{add(prefix,obj);}}
jQuery.extend({active:0,lastModified:{},etag:{}});function ajaxHandleResponses(s,jqXHR,responses){var contents=s.contents,dataTypes=s.dataTypes,responseFields=s.responseFields,ct,type,finalDataType,firstDataType;for(type in responseFields){if(type in responses){jqXHR[responseFields[type]]=responses[type];}}
while(dataTypes[0]==="*"){dataTypes.shift();if(ct===undefined){ct=s.mimeType||jqXHR.getResponseHeader("content-type");}}
if(ct){for(type in contents){if(contents[type]&&contents[type].test(ct)){dataTypes.unshift(type);break;}}}
if(dataTypes[0]in responses){finalDataType=dataTypes[0];}else{for(type in responses){if(!dataTypes[0]||s.converters[type+" "+dataTypes[0]]){finalDataType=type;break;}
if(!firstDataType){firstDataType=type;}}
finalDataType=finalDataType||firstDataType;}
if(finalDataType){if(finalDataType!==dataTypes[0]){dataTypes.unshift(finalDataType);}
return responses[finalDataType];}}
function ajaxConvert(s,response){if(s.dataFilter){response=s.dataFilter(response,s.dataType);}
var dataTypes=s.dataTypes,converters={},i,key,length=dataTypes.length,tmp,current=dataTypes[0],prev,conversion,conv,conv1,conv2;for(i=1;i<length;i++){if(i===1){for(key in s.converters){if(typeof key==="string"){converters[key.toLowerCase()]=s.converters[key];}}}
prev=current;current=dataTypes[i];if(current==="*"){current=prev;}else if(prev!=="*"&&prev!==current){conversion=prev+" "+current;conv=converters[conversion]||converters["* "+current];if(!conv){conv2=undefined;for(conv1 in converters){tmp=conv1.split(" ");if(tmp[0]===prev||tmp[0]==="*"){conv2=converters[tmp[1]+" "+current];if(conv2){conv1=converters[conv1];if(conv1===true){conv=conv2;}else if(conv2===true){conv=conv1;}
break;}}}}
if(!(conv||conv2)){jQuery.error("No conversion from "+conversion.replace(" "," to "));}
if(conv!==true){response=conv?conv(response):conv2(conv1(response));}}}
return response;}
var jsc=jQuery.now(),jsre=/(\=)\?(&|$)|\?\?/i;jQuery.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return jQuery.expando+"_"+(jsc++);}});jQuery.ajaxPrefilter("json jsonp",function(s,originalSettings,jqXHR){var inspectData=s.contentType==="application/x-www-form-urlencoded"&&(typeof s.data==="string");if(s.dataTypes[0]==="jsonp"||s.jsonp!==false&&(jsre.test(s.url)||inspectData&&jsre.test(s.data))){var responseContainer,jsonpCallback=s.jsonpCallback=jQuery.isFunction(s.jsonpCallback)?s.jsonpCallback():s.jsonpCallback,previous=window[jsonpCallback],url=s.url,data=s.data,replace="$1"+jsonpCallback+"$2";if(s.jsonp!==false){url=url.replace(jsre,replace);if(s.url===url){if(inspectData){data=data.replace(jsre,replace);}
if(s.data===data){url+=(/\?/.test(url)?"&":"?")+s.jsonp+"="+jsonpCallback;}}}
s.url=url;s.data=data;window[jsonpCallback]=function(response){responseContainer=[response];};jqXHR.always(function(){window[jsonpCallback]=previous;if(responseContainer&&jQuery.isFunction(previous)){window[jsonpCallback](responseContainer[0]);}});s.converters["script json"]=function(){if(!responseContainer){jQuery.error(jsonpCallback+" was not called");}
return responseContainer[0];};s.dataTypes[0]="json";return"script";}});jQuery.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(text){jQuery.globalEval(text);return text;}}});jQuery.ajaxPrefilter("script",function(s){if(s.cache===undefined){s.cache=false;}
if(s.crossDomain){s.type="GET";s.global=false;}});jQuery.ajaxTransport("script",function(s){if(s.crossDomain){var script,head=document.head||document.getElementsByTagName("head")[0]||document.documentElement;return{send:function(_,callback){script=document.createElement("script");script.async="async";if(s.scriptCharset){script.charset=s.scriptCharset;}
script.src=s.url;script.onload=script.onreadystatechange=function(_,isAbort){if(isAbort||!script.readyState||/loaded|complete/.test(script.readyState)){script.onload=script.onreadystatechange=null;if(head&&script.parentNode){head.removeChild(script);}
script=undefined;if(!isAbort){callback(200,"success");}}};head.insertBefore(script,head.firstChild);},abort:function(){if(script){script.onload(0,1);}}};}});var
xhrOnUnloadAbort=window.ActiveXObject?function(){for(var key in xhrCallbacks){xhrCallbacks[key](0,1);}}:false,xhrId=0,xhrCallbacks;function createStandardXHR(){try{return new window.XMLHttpRequest();}catch(e){}}
function createActiveXHR(){try{return new window.ActiveXObject("Microsoft.XMLHTTP");}catch(e){}}
jQuery.ajaxSettings.xhr=window.ActiveXObject?function(){return!this.isLocal&&createStandardXHR()||createActiveXHR();}:createStandardXHR;(function(xhr){jQuery.extend(jQuery.support,{ajax:!!xhr,cors:!!xhr&&("withCredentials"in xhr)});})(jQuery.ajaxSettings.xhr());if(jQuery.support.ajax){jQuery.ajaxTransport(function(s){if(!s.crossDomain||jQuery.support.cors){var callback;return{send:function(headers,complete){var xhr=s.xhr(),handle,i;if(s.username){xhr.open(s.type,s.url,s.async,s.username,s.password);}else{xhr.open(s.type,s.url,s.async);}
if(s.xhrFields){for(i in s.xhrFields){xhr[i]=s.xhrFields[i];}}
if(s.mimeType&&xhr.overrideMimeType){xhr.overrideMimeType(s.mimeType);}
if(!s.crossDomain&&!headers["X-Requested-With"]){headers["X-Requested-With"]="XMLHttpRequest";}
try{for(i in headers){xhr.setRequestHeader(i,headers[i]);}}catch(_){}
xhr.send((s.hasContent&&s.data)||null);callback=function(_,isAbort){var status,statusText,responseHeaders,responses,xml;try{if(callback&&(isAbort||xhr.readyState===4)){callback=undefined;if(handle){xhr.onreadystatechange=jQuery.noop;if(xhrOnUnloadAbort){delete xhrCallbacks[handle];}}
if(isAbort){if(xhr.readyState!==4){xhr.abort();}}else{status=xhr.status;responseHeaders=xhr.getAllResponseHeaders();responses={};xml=xhr.responseXML;if(xml&&xml.documentElement){responses.xml=xml;}
responses.text=xhr.responseText;try{statusText=xhr.statusText;}catch(e){statusText="";}
if(!status&&s.isLocal&&!s.crossDomain){status=responses.text?200:404;}else if(status===1223){status=204;}}}}catch(firefoxAccessException){if(!isAbort){complete(-1,firefoxAccessException);}}
if(responses){complete(status,statusText,responses,responseHeaders);}};if(!s.async||xhr.readyState===4){callback();}else{handle=++xhrId;if(xhrOnUnloadAbort){if(!xhrCallbacks){xhrCallbacks={};jQuery(window).unload(xhrOnUnloadAbort);}
xhrCallbacks[handle]=callback;}
xhr.onreadystatechange=callback;}},abort:function(){if(callback){callback(0,1);}}};}});}
var elemdisplay={},iframe,iframeDoc,rfxtypes=/^(?:toggle|show|hide)$/,rfxnum=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],fxNow;jQuery.fn.extend({show:function(speed,easing,callback){var elem,display;if(speed||speed===0){return this.animate(genFx("show",3),speed,easing,callback);}else{for(var i=0,j=this.length;i<j;i++){elem=this[i];if(elem.style){display=elem.style.display;if(!jQuery._data(elem,"olddisplay")&&display==="none"){display=elem.style.display="";}
if(display===""&&jQuery.css(elem,"display")==="none"){jQuery._data(elem,"olddisplay",defaultDisplay(elem.nodeName));}}}
for(i=0;i<j;i++){elem=this[i];if(elem.style){display=elem.style.display;if(display===""||display==="none"){elem.style.display=jQuery._data(elem,"olddisplay")||"";}}}
return this;}},hide:function(speed,easing,callback){if(speed||speed===0){return this.animate(genFx("hide",3),speed,easing,callback);}else{var elem,display,i=0,j=this.length;for(;i<j;i++){elem=this[i];if(elem.style){display=jQuery.css(elem,"display");if(display!=="none"&&!jQuery._data(elem,"olddisplay")){jQuery._data(elem,"olddisplay",display);}}}
for(i=0;i<j;i++){if(this[i].style){this[i].style.display="none";}}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2,callback){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,callback);}
return this;},fadeTo:function(speed,to,easing,callback){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:to},speed,easing,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);if(jQuery.isEmptyObject(prop)){return this.each(optall.complete,[false]);}
prop=jQuery.extend({},prop);function doAnimation(){if(optall.queue===false){jQuery._mark(this);}
var opt=jQuery.extend({},optall),isElement=this.nodeType===1,hidden=isElement&&jQuery(this).is(":hidden"),name,val,p,e,parts,start,end,unit,method;opt.animatedProperties={};for(p in prop){name=jQuery.camelCase(p);if(p!==name){prop[name]=prop[p];delete prop[p];}
val=prop[name];if(jQuery.isArray(val)){opt.animatedProperties[name]=val[1];val=prop[name]=val[0];}else{opt.animatedProperties[name]=opt.specialEasing&&opt.specialEasing[name]||opt.easing||'swing';}
if(val==="hide"&&hidden||val==="show"&&!hidden){return opt.complete.call(this);}
if(isElement&&(name==="height"||name==="width")){opt.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(jQuery.css(this,"display")==="inline"&&jQuery.css(this,"float")==="none"){if(!jQuery.support.inlineBlockNeedsLayout||defaultDisplay(this.nodeName)==="inline"){this.style.display="inline-block";}else{this.style.zoom=1;}}}}
if(opt.overflow!=null){this.style.overflow="hidden";}
for(p in prop){e=new jQuery.fx(this,opt,p);val=prop[p];if(rfxtypes.test(val)){method=jQuery._data(this,"toggle"+p)||(val==="toggle"?hidden?"show":"hide":0);if(method){jQuery._data(this,"toggle"+p,method==="show"?"hide":"show");e[method]();}else{e[val]();}}else{parts=rfxnum.exec(val);start=e.cur();if(parts){end=parseFloat(parts[2]);unit=parts[3]||(jQuery.cssNumber[p]?"":"px");if(unit!=="px"){jQuery.style(this,p,(end||1)+unit);start=((end||1)/e.cur())*start;jQuery.style(this,p,start+unit);}
if(parts[1]){end=((parts[1]==="-="?-1:1)*end)+start;}
e.custom(start,end,unit);}else{e.custom(start,val,"");}}}
return true;}
return optall.queue===false?this.each(doAnimation):this.queue(optall.queue,doAnimation);},stop:function(type,clearQueue,gotoEnd){if(typeof type!=="string"){gotoEnd=clearQueue;clearQueue=type;type=undefined;}
if(clearQueue&&type!==false){this.queue(type||"fx",[]);}
return this.each(function(){var index,hadTimers=false,timers=jQuery.timers,data=jQuery._data(this);if(!gotoEnd){jQuery._unmark(true,this);}
function stopQueue(elem,data,index){var hooks=data[index];jQuery.removeData(elem,index,true);hooks.stop(gotoEnd);}
if(type==null){for(index in data){if(data[index]&&data[index].stop&&index.indexOf(".run")===index.length-4){stopQueue(this,data,index);}}}else if(data[index=type+".run"]&&data[index].stop){stopQueue(this,data,index);}
for(index=timers.length;index--;){if(timers[index].elem===this&&(type==null||timers[index].queue===type)){if(gotoEnd){timers[index](true);}else{timers[index].saveState();}
hadTimers=true;timers.splice(index,1);}}
if(!(gotoEnd&&hadTimers)){jQuery.dequeue(this,type);}});}});function createFxNow(){setTimeout(clearFxNow,0);return(fxNow=jQuery.now());}
function clearFxNow(){fxNow=undefined;}
function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(name,props){jQuery.fn[name]=function(speed,easing,callback){return this.animate(props,speed,easing,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&typeof speed==="object"?jQuery.extend({},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:opt.duration in jQuery.fx.speeds?jQuery.fx.speeds[opt.duration]:jQuery.fx.speeds._default;if(opt.queue==null||opt.queue===true){opt.queue="fx";}
opt.old=opt.complete;opt.complete=function(noUnmark){if(jQuery.isFunction(opt.old)){opt.old.call(this);}
if(opt.queue){jQuery.dequeue(this,opt.queue);}else if(noUnmark!==false){jQuery._unmark(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;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);},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop];}
var parsed,r=jQuery.css(this.elem,this.prop);return isNaN(parsed=parseFloat(r))?!r||r==="auto"?0:r:parsed;},custom:function(from,to,unit){var self=this,fx=jQuery.fx;this.startTime=fxNow||createFxNow();this.end=to;this.now=this.start=from;this.pos=this.state=0;this.unit=unit||this.unit||(jQuery.cssNumber[this.prop]?"":"px");function t(gotoEnd){return self.step(gotoEnd);}
t.queue=this.options.queue;t.elem=this.elem;t.saveState=function(){if(self.options.hide&&jQuery._data(self.elem,"fxshow"+self.prop)===undefined){jQuery._data(self.elem,"fxshow"+self.prop,self.start);}};if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(fx.tick,fx.interval);}},show:function(){var dataShow=jQuery._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=dataShow||jQuery.style(this.elem,this.prop);this.options.show=true;if(dataShow!==undefined){this.custom(this.cur(),dataShow);}else{this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());}
jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery._data(this.elem,"fxshow"+this.prop)||jQuery.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var p,n,complete,t=fxNow||createFxNow(),done=true,elem=this.elem,options=this.options;if(gotoEnd||t>=options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();options.animatedProperties[this.prop]=true;for(p in options.animatedProperties){if(options.animatedProperties[p]!==true){done=false;}}
if(done){if(options.overflow!=null&&!jQuery.support.shrinkWrapBlocks){jQuery.each(["","X","Y"],function(index,value){elem.style["overflow"+value]=options.overflow[index];});}
if(options.hide){jQuery(elem).hide();}
if(options.hide||options.show){for(p in options.animatedProperties){jQuery.style(elem,p,options.orig[p]);jQuery.removeData(elem,"fxshow"+p,true);jQuery.removeData(elem,"toggle"+p,true);}}
complete=options.complete;if(complete){options.complete=false;complete.call(elem);}}
return false;}else{if(options.duration==Infinity){this.now=t;}else{n=t-this.startTime;this.state=n/options.duration;this.pos=jQuery.easing[options.animatedProperties[this.prop]](this.state,n,0,1,options.duration);this.now=this.start+((this.end-this.start)*this.pos);}
this.update();}
return true;}};jQuery.extend(jQuery.fx,{tick:function(){var timer,timers=jQuery.timers,i=0;for(;i<timers.length;i++){timer=timers[i];if(!timer()&&timers[i]===timer){timers.splice(i--,1);}}
if(!timers.length){jQuery.fx.stop();}},interval:13,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.now+fx.unit;}else{fx.elem[fx.prop]=fx.now;}}}});jQuery.each(["width","height"],function(i,prop){jQuery.fx.step[prop]=function(fx){jQuery.style(fx.elem,prop,Math.max(0,fx.now)+fx.unit);};});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 defaultDisplay(nodeName){if(!elemdisplay[nodeName]){var body=document.body,elem=jQuery("<"+nodeName+">").appendTo(body),display=elem.css("display");elem.remove();if(display==="none"||display===""){if(!iframe){iframe=document.createElement("iframe");iframe.frameBorder=iframe.width=iframe.height=0;}
body.appendChild(iframe);if(!iframeDoc||!iframe.createElement){iframeDoc=(iframe.contentWindow||iframe.contentDocument).document;iframeDoc.write((document.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>");iframeDoc.close();}
elem=iframeDoc.createElement(nodeName);iframeDoc.body.appendChild(elem);display=jQuery.css(elem,"display");body.removeChild(iframe);}
elemdisplay[nodeName]=display;}
return elemdisplay[nodeName];}
var rtable=/^t(?:able|d|h)$/i,rroot=/^(?:body|html)$/i;if("getBoundingClientRect"in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0],box;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);}
try{box=elem.getBoundingClientRect();}catch(e){}
var doc=elem.ownerDocument,docElem=doc.documentElement;if(!box||!jQuery.contains(docElem,elem)){return box?{top:box.top,left:box.left}:{top:0,left:0};}
var body=doc.body,win=getWindow(doc),clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,scrollTop=win.pageYOffset||jQuery.support.boxModel&&docElem.scrollTop||body.scrollTop,scrollLeft=win.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft,top=box.top+scrollTop-clientTop,left=box.left+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);}
var computedStyle,offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,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.support.fixedPosition&&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.support.doesNotAddBorder&&!(jQuery.support.doesAddBorderForTableAndCells&&rtable.test(elem.nodeName))){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevOffsetParent=offsetParent;offsetParent=elem.offsetParent;}
if(jQuery.support.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.support.fixedPosition&&prevComputedStyle.position==="fixed"){top+=Math.max(docElem.scrollTop,body.scrollTop);left+=Math.max(docElem.scrollLeft,body.scrollLeft);}
return{top:top,left:left};};}
jQuery.offset={bodyOffset:function(body){var top=body.offsetTop,left=body.offsetLeft;if(jQuery.support.doesNotIncludeMarginInBodyOffset){top+=parseFloat(jQuery.css(body,"marginTop"))||0;left+=parseFloat(jQuery.css(body,"marginLeft"))||0;}
return{top:top,left:left};},setOffset:function(elem,options,i){var position=jQuery.css(elem,"position");if(position==="static"){elem.style.position="relative";}
var curElem=jQuery(elem),curOffset=curElem.offset(),curCSSTop=jQuery.css(elem,"top"),curCSSLeft=jQuery.css(elem,"left"),calculatePosition=(position==="absolute"||position==="fixed")&&jQuery.inArray("auto",[curCSSTop,curCSSLeft])>-1,props={},curPosition={},curTop,curLeft;if(calculatePosition){curPosition=curElem.position();curTop=curPosition.top;curLeft=curPosition.left;}else{curTop=parseFloat(curCSSTop)||0;curLeft=parseFloat(curCSSLeft)||0;}
if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset);}
if(options.top!=null){props.top=(options.top-curOffset.top)+curTop;}
if(options.left!=null){props.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=rroot.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();offset.top-=parseFloat(jQuery.css(elem,"marginTop"))||0;offset.left-=parseFloat(jQuery.css(elem,"marginLeft"))||0;parentOffset.top+=parseFloat(jQuery.css(offsetParent[0],"borderTopWidth"))||0;parentOffset.left+=parseFloat(jQuery.css(offsetParent[0],"borderLeftWidth"))||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&&(!rroot.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,win;if(val===undefined){elem=this[0];if(!elem){return null;}
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];}
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;}});};});function getWindow(elem){return jQuery.isWindow(elem)?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(){var elem=this[0];return elem?elem.style?parseFloat(jQuery.css(elem,type,"padding")):this[type]():null;};jQuery.fn["outer"+name]=function(margin){var elem=this[0];return elem?elem.style?parseFloat(jQuery.css(elem,type,margin?"margin":"border")):this[type]():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]()));});}
if(jQuery.isWindow(elem)){var docElemProp=elem.document.documentElement["client"+name],body=elem.document.body;return elem.document.compatMode==="CSS1Compat"&&docElemProp||body&&body["client"+name]||docElemProp;}else if(elem.nodeType===9){return Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]);}else if(size===undefined){var orig=jQuery.css(elem,type),ret=parseFloat(orig);return jQuery.isNumeric(ret)?ret:orig;}else{return this.css(type,typeof size==="string"?size:size+"px");}};});window.jQuery=window.$=jQuery;if(typeof define==="function"&&define.amd&&define.amd.jQuery){define("jquery",[],function(){return jQuery;});}})(window);;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})(),root:function(){return document.documentElement||document.body;}};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},addClass:function(el,className){var current=el.className;el.className=current+(current&&' ')+className;return el;},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/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}[value]||1;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'));}catch(e){}
container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported;}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el;},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:(function(){var map={uppercase:function(s){return s.toUpperCase();},lowercase:function(s){return s.toLowerCase();},capitalize:function(s){return s.replace(/\b./g,function($0){return $0.toUpperCase();});}};return function(text,style){var transform=map[style.get('textTransform')];return transform?transform(text):text;};})(),whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};var wsStart=/^\s+/,wsEnd=/\s+$/;return function(text,style,node,previousElement){if(previousElement){if(previousElement.nodeName.toLowerCase()=='br'){text=text.replace(wsStart,'');}}
if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(wsStart,'');if(!node.nextSibling)text=text.replace(wsEnd,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var links=elementsByTagName('link'),styles=elementsByTagName('style');function isContainerReady(el){return el.disabled||isSheetReady(el.sheet,el.media||'screen');}
function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search;}}}}
catch(e){}
return true;}
function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false;}
for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face,wordSeparators={'\u0020':1,'\u00a0':1,'\u3000':1};this.glyphs=data.glyphs;this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(chars,letterSpacing,wordSpacing){var glyphs=this.glyphs,glyph,kerning,k,jumps=[],width=0,i=-1,j=-1,chr;while(chr=chars[++i]){glyph=glyphs[chr]||this.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j]-=k;}
width+=jumps[++j]=~~(glyph.w||this.w)+letterSpacing+(wordSeparators[chr]?wordSpacing:0);kerning=glyph.k;}
jumps.total=width;return jumps;};}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>=weight&&b>=weight)?a<b:a>b:(a<=weight&&b<=weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related))return;trigger(this,e.type=='mouseover');}
function onEnterLeave(e){trigger(this,e.type=='mouseenter');}
function trigger(el,hoverState){setTimeout(function(){var options=sharedStorage.get(el).options;api.replace(el,hoverState?merge(options,options.hover):options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event);});}}
function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0;family=families[i];++i){if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},arg,key;for(var i=0,l=arguments.length;arg=arguments[i],i<l;++i){for(key in arg){if(hasOwnProperty(arg,key))merged[key]=arg[key];}}
return merged;}
function process(font,text,style,options,node,el){var fragment=document.createDocumentFragment(),processed;if(text==='')return fragment;var separate=options.separate;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function replaceElement(el,options){var name=el.nodeName.toLowerCase();if(options.ignore[name])return;var replace=!options.textless[name];var style=CSS.getStyle(attach(el,options)).extend(options);var font=getFont(el,style),node,type,next,anchor,text,lastElement;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(replace&&type==3){if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){el.replaceChild(process(font,CSS.whiteSpace(anchor.data,style,anchor,lastElement),style,options,node,el),anchor);anchor=null;}
if(type==1){if(node.firstChild){if(node.nodeName.toLowerCase()=='cufon'){engines[options.engine](font,null,style,options,node,el);}
else arguments.callee(node,options);}
lastElement=node;}}}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var engines={},fonts={},defaultOptions={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(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:'none'};var separators={words:/\s/.test('\u00a0')?/[^\S\u00a0]+/:/\s+/,characters:'',none:/^/};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){if(!data)return api;var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.addClass(CSS.removeClass(DOM.root(),'cufon-loading'),'cufon-ready');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(options.autoDetect)delete options.fontFamily;if(typeof options.textShadow=='string'){options.textShadow=CSS.textShadow(options.textShadow);}
if(typeof options.color=='string'&&/^-/.test(options.color)){options.textGradient=CSS.gradient(options.color);}
else delete options.textGradient;if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('vml',(function(){var ns=document.namespaces;if(!ns)return;ns.add('cvml','urn:schemas-microsoft-com:vml');ns=null;var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(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:'+
(HAS_BROKEN_LINEHEIGHT?'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 getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(value==='0')return 0;if(/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
function getSpacingValue(el,style,size,property){var key='computed'+property,value=style[key];if(isNaN(value)){value=style.get(property);style[key]=value=(value=='normal')?0:~~size.convertFrom(getSizeInPixels(el,value));}
return value;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='sigma';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('cufoncanvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,getSpacingValue(el,style,size,'letterSpacing'),getSpacingValue(el,style,size,'wordSpacing'));if(!jumps.length)return null;var width=jumps.total;var fullWidth=-minX+width+(viewBox.width-jumps[jumps.length-1]);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);var glyphs=font.glyphs,offsetX=0;var shadows=options.textShadow;var i=-1,j=0,chr;while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph,shape;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover);}
vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight;}
else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height));}
if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px';}}
return wrapper;};})());Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('cufon{text-indent:0;}'+'@media screen,projection{'+'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'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(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.getAttribute('alt');var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,~~size.convertFrom(parseFloat(style.get('letterSpacing'))||0),~~size.convertFrom(parseFloat(style.get('wordSpacing'))||0));if(!jumps.length)return null;var width=jumps.total;expandRight+=viewBox.width-jumps[jumps.length-1];expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-canvas';wrapper.setAttribute('alt',text);canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.max(Math.ceil(size.convert(stretchedWidth)),0)+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.save();function renderText(){var glyphs=font.glyphs,glyph,i=-1,j=-1,chr;g.scale(stretchFactor,1);while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[++j],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();return wrapper;};})());
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2006 House Industries/Brand Design Co., Inc. All Rights Reserved.
 * 
 * Trademark:
 * United is a trademark of House Industries/Brand Design Co., Inc.
 * 
 * Full name:
 * UnitedSerifReg-Bold
 * 
 * Description:
 * Part of the United family from House Industries.
 * 
 * Manufacturer:
 * House Industries
 * 
 * Designer:
 * Tal Leming
 * 
 * Vendor URL:
 * http://www.houseindustries.com
 * 
 * License information:
 * http://www.houseindustries.com/license
 */
Cufon.registerFont({"w":213,"face":{"font-family":"UnitedSerifRegBold","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"274","descent":"-86","bbox":"-13 -277 336 63","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":93,"k":{"W":7,"V":11,"A":11,"J":11,"Y":13,"T":9}},"!":{"d":"30,0r0,-45r43,0r0,45r-43,0xm30,-68r0,-180r43,0r0,180r-43,0","w":103},"\"":{"d":"18,-150r0,-98r33,0r0,98r-33,0xm78,-150r0,-98r32,0r0,98r-32,0","w":128,"k":{"8":2,"5":2,"4":4,"9":2,"7":-2,"2":4,"X":2,"A":20,"J":18,"S":4,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"a":11,"g":9,"c":9,"d":9,"e":9,"o":9,"q":9,",":11,".":11,"s":7,"T":-2}},"#":{"d":"41,-58r0,-41r-30,0r0,-28r30,0r0,-53r-30,0r0,-28r30,0r0,-40r32,0r0,40r48,0r0,-40r33,0r0,40r30,0r0,28r-30,0r0,53r30,0r0,28r-30,0r0,41r-33,0r0,-41r-48,0r0,41r-32,0xm73,-127r48,0r0,-53r-48,0r0,53","w":194,"k":{"2":2,"1":2}},"$":{"d":"51,-7r-32,-32r0,-36r43,0r0,23r13,13r69,0r14,-14v-1,-21,5,-48,-10,-55r-99,0r-28,-29r0,-71r33,-34r36,0r0,-35r40,0r0,35r38,0r32,32r0,36r-43,0v2,-18,-3,-28,-12,-35r-68,0r-14,14v1,20,-5,46,10,52r99,0r29,29r0,74r-34,33r-37,0r0,36r-40,0r0,-36r-39,0","w":219,"k":{"x":2,"w":2,"v":2,"X":4,"W":5,"V":7,"7":2,"4":2,"A":4,"J":2,"U":2,"Y":7,"y":2,"Z":2,"t":2}},"%":{"d":"36,-128r-24,-24r0,-73r24,-23r62,0r23,23r0,73r-23,24r-62,0xm42,-160v6,12,42,14,48,0v-2,-22,7,-56,-9,-65v-16,0,-34,-2,-39,9r0,56xm179,0r-23,-24r0,-72r23,-24r62,0r24,24r0,72r-24,24r-62,0xm186,-32v6,13,42,14,48,0v-2,-22,7,-56,-9,-65v-16,0,-34,-2,-39,9r0,56xm53,0r140,-248r29,0r-139,248r-30,0","w":276},"&":{"d":"54,0r-32,-32r0,-68r27,-27r-26,-27r0,-63r31,-31r117,0r32,32r0,33r-43,0v2,-18,-4,-28,-13,-34r-69,0r-13,14r0,44r16,16r146,0r0,31r-25,0r0,80r-32,32r-116,0xm78,-32r68,0r14,-13r0,-66r-79,0r-17,16r0,50","w":232,"k":{"x":2,"X":7,"W":5,"V":9,"7":4,"4":-5,"3":5,"2":2,"1":4,"A":9,"J":9,"U":2,"Y":11,"S":2,"Z":5,"f":-2,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"M":2,"N":2,"P":2,"R":2,"b":2,"h":2,"k":2,"l":2,"T":4}},"'":{"d":"19,-150r0,-98r32,0r0,98r-32,0","w":69,"k":{"8":2,"5":2,"4":4,"9":2,"7":-2,"2":4,"X":2,"A":20,"J":18,"S":4,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"a":11,"g":9,"c":9,"d":9,"e":9,"o":9,"q":9,",":11,".":11,"s":7,"T":-2}},"(":{"d":"61,24r-35,-36r0,-224r35,-36r45,0r0,33r-21,0r-17,17r0,196r17,17r21,0r0,33r-45,0","w":119,"k":{"V":2,"4":7,"9":2,"3":2,"2":4,"v":9,"w":5,"A":2,"Y":2,"y":9,"S":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":2,"g":2,"j":-7,"c":2,"d":2,"e":2,"o":2,"q":2,"s":2,"t":11,"u":2}},")":{"d":"94,-12r-35,36r-45,0r0,-33r21,0r17,-17r0,-196r-17,-17r-21,0r0,-33r45,0r35,36r0,224","w":119},"*":{"d":"44,-137r-25,-18r30,-32r-42,-8r10,-29r38,19r-6,-43r31,0r-6,43r38,-19r10,29r-42,8r30,32r-25,18r-21,-38","w":128,"k":{"x":2,"w":2,"X":4,"W":2,"V":4,"9":2,"7":-4,"4":9,"2":2,"1":2,"A":25,"J":20,"Y":4,"S":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":16,"g":16,"c":16,"d":16,"e":16,"o":16,"q":16,"s":14,"z":2,"T":-2}},"+":{"d":"8,-108r0,-32r50,0r0,-53r33,0r0,53r51,0r0,32r-51,0r0,54r-33,0r0,-54r-50,0","w":149,"k":{"V":16,"W":11,"8":2,"4":-4,"p":-2,"7":13,"3":9,"2":2,"x":2,"X":14,"1":11,"A":11,"J":14,"U":2,"Y":22,"Z":4,"a":2,"i":-4,"j":-2,"m":-4,"n":-4,"r":-4,"t":-2,"u":-2,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"M":2,"N":2,"P":2,"R":2,"b":4,"h":4,"k":4,"l":4,"T":7}},",":{"d":"18,40r0,-19v7,0,17,2,19,-4r0,-17r-19,0r0,-48r44,0r0,71r-17,17r-27,0","w":79,"k":{"y":27,"j":7,"V":32,"W":27,"8":4,"5":5,"4":11,"9":2,"p":5,"7":23,"3":2,"2":2,"v":27,"w":20,"U":16,"Y":34,"S":4,"0":5,"6":5,"C":5,"G":5,"O":5,"Q":5,"Z":2,"a":4,"f":2,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"s":5,"t":18,"u":13,"\"":27,"'":27,"T":23}},"-":{"d":"8,-107r0,-35r97,0r0,35r-97,0","w":112,"k":{"V":16,"W":13,"4":-5,"7":13,"3":9,"w":-2,"x":2,"X":20,"1":13,"A":14,"J":18,"U":4,"Y":25,"Z":5,"f":-2,"i":-2,"m":-2,"n":-2,"r":-2,"u":-2,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"M":2,"N":2,"P":2,"R":2,"b":2,"h":2,"k":2,"l":2,"T":7}},".":{"d":"18,0r0,-48r44,0r0,48r-44,0","w":79,"k":{"V":32,"W":27,"8":4,"5":5,"4":11,"9":2,"p":5,"7":23,"3":2,"2":2,"v":27,"w":20,"U":16,"Y":34,"y":27,"S":4,"0":5,"6":5,"C":5,"G":5,"O":5,"Q":5,"Z":2,"a":4,"f":2,"g":5,"j":7,"c":5,"d":5,"e":5,"o":5,"q":5,"s":5,"t":18,"u":13,"\"":27,"'":27,"T":23}},"\/":{"d":"0,24r86,-296r37,0r-85,296r-38,0","w":123,"k":{"x":22,"w":18,"v":18,"p":18,"9":7,"8":7,"7":-2,"4":11,"3":2,"2":9,"\/":23,"A":16,"J":14,"y":18,"S":5,"0":7,"6":7,"C":7,"G":7,"O":7,"Q":7,"a":29,"f":14,"g":29,"i":7,"j":9,"c":29,"d":29,"e":29,"o":29,"q":29,"m":18,"n":18,"r":18,"s":25,"t":13,"u":18,"z":22}},"0":{"d":"59,0r-35,-36r0,-177r35,-35r116,0r36,35r0,177r-36,36r-116,0xm83,-33r69,0r16,-17r0,-149r-16,-17r-69,0r-17,17r0,149","w":234,"k":{"V":7,"W":4,"*":2,"\\":7,"p":2,"v":2,"w":2,"x":2,"X":5,"\/":7,"A":7,"J":5,"U":2,"Y":9,"y":2,"a":2,"j":2,",":5,".":5,"t":2,"u":2,"z":2,"\"":4,"'":4,")":2,"]":2,"}":2,"T":2}},"1":{"d":"10,0r0,-33r49,0r0,-182r-49,0r0,-33r92,0r0,215r48,0r0,33r-140,0","w":159,"k":{"w":14,"v":20,"p":4,"\\":20,"W":13,"V":20,"?":20,">":7,"=":11,"<":14,"7":16,"5":2,"4":13,"1":2,"*":25,"$":4,"#":11,"U":11,"Y":20,"y":20,"S":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":2,"g":2,"-":16,"j":7,"c":4,"d":4,"e":4,"o":4,"q":4,"+":18,"s":2,"t":16,"u":11,"\"":22,"'":22,"T":16,"%":25}},"2":{"d":"20,0r0,-107r29,-28r95,0v16,-10,8,-44,10,-68r-12,-13r-67,0r-12,12r0,25r-42,0r0,-37r32,-32r111,0r33,33r0,85r-29,28r-95,0v-16,10,-8,44,-10,68r134,0r0,34r-177,0","w":212,"k":{"\\":5,"W":2,"V":2,"4":4,"J":2,"Y":2,"a":2,"g":2,"-":-2,"c":2,"d":2,"e":2,"o":2,"q":2,",":2,".":2,"+":-2}},"3":{"d":"50,0r-32,-33r0,-41r42,0r0,28r14,14r74,0r13,-13r0,-50r-17,-16r-88,0r0,-33r88,0r16,-16r0,-43r-13,-13r-73,0r-14,14r0,27r-42,0r0,-41r32,-32r121,0r32,31r0,63r-27,26r27,27r0,69r-32,32r-121,0","w":225,"k":{"V":5,"W":2,"\\":7,"<":2,"p":2,"7":2,"v":5,"w":4,"x":4,"X":4,"\/":7,"A":4,"J":4,"Y":5,"y":5,"Z":2,"a":2,":":4,";":4,"f":2,"g":2,"j":2,",":4,".":4,"+":2,"s":2,"t":4,"u":4,"z":2,"\"":2,"'":2,"T":2}},"4":{"d":"116,0r0,-31r28,0r0,-37r-135,0r0,-28r47,-152r40,0r-42,145r90,0r0,-145r42,0r0,145r28,0r0,35r-28,0r0,37r28,0r0,31r-98,0","w":223,"k":{"w":2,"v":5,"\\":9,"W":5,"V":9,"?":7,"7":4,"*":13,"$":2,"U":4,"Y":11,"y":5,"a":-2,"-":-2,"+":2,"t":5,"u":2,"\"":7,"'":7,"T":4,"%":5}},"5":{"d":"53,0r-32,-32r0,-40r43,0r0,27r13,13r67,0r14,-14r0,-73r-11,-10r-67,0r-18,18r-41,0r0,-137r176,0r0,33r-133,0r0,71r17,-18r90,0r29,30r0,99r-33,33r-114,0","w":218,"k":{"x":4,"w":5,"v":5,"p":2,"\\":2,"X":4,"W":4,"V":4,"?":4,"7":2,"\/":5,"*":7,"$":2,"A":4,"J":2,"U":2,"Y":7,"y":5,"Z":2,"-":-2,"j":2,",":5,".":5,"s":2,"t":5,"u":2,"z":2,"\"":4,"'":4,"T":4,"%":4}},"6":{"d":"58,0r-34,-35r0,-179r34,-34r119,0r33,32r0,37r-43,0v2,-19,-3,-30,-13,-37r-71,0r-17,17r0,64r18,-18r95,0r31,31r0,87r-34,35r-118,0xm82,-32r70,0r16,-16r0,-60r-13,-13r-73,0r-16,16r0,57","w":232,"k":{"x":2,"w":4,"v":4,"p":2,"\\":5,"X":4,"W":4,"V":4,"\/":5,"*":4,"A":4,"J":2,"U":2,"Y":7,"y":4,"a":2,"j":2,",":4,".":4,"t":5,"u":2,"\"":2,"'":2,")":2,"]":2,"}":2}},"7":{"d":"80,0r0,-91r71,-124r-107,0r0,41r-35,0r0,-74r190,0r0,27r-76,133r0,88r-43,0","w":206,"k":{"x":7,"w":5,"v":7,"p":4,"\\":-7,"?":-4,">":4,"=":7,"<":9,"9":2,"8":2,"4":9,"2":2,"\/":20,"$":4,"#":2,"A":22,"J":13,"y":7,"S":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":16,"@":4,":":11,";":11,"f":5,"g":16,"-":7,"i":2,"j":4,"c":16,"d":16,"e":16,"o":16,"q":16,"m":4,"n":4,"r":4,",":27,".":27,"+":14,"s":18,"t":7,"u":7,"z":9,"\"":-4,"'":-4,"%":-4}},"8":{"d":"54,0r-32,-32r0,-69r27,-27r-26,-27r0,-62r31,-31r126,0r32,31r0,62r-27,27r27,27r0,69r-32,32r-126,0xm78,-32r78,0r14,-13r0,-51r-17,-17r-72,0r-17,17r0,51xm81,-144r72,0r16,-16r0,-43r-13,-14r-78,0r-13,14r0,43","w":234,"k":{"V":5,"W":2,"\\":7,"<":2,"p":2,"7":2,"v":5,"w":4,"x":4,"X":4,"\/":7,"A":4,"J":4,"Y":5,"y":5,"Z":2,"a":2,":":4,";":4,"f":2,"g":2,"j":2,",":4,".":4,"+":2,"s":2,"t":4,"u":4,"z":2,"\"":2,"'":2,"T":2}},"9":{"d":"54,0r-32,-32r0,-40r42,0r0,26r14,14r71,0r17,-17r0,-68r-18,18r-95,0r-31,-31r0,-84r35,-34r117,0r34,34r0,179r-34,35r-120,0xm77,-131r73,0r16,-16r0,-53r-16,-16r-70,0r-16,16r0,56","w":231,"k":{"V":7,"W":4,"*":2,"\\":7,"p":2,"v":2,"w":2,"x":2,"X":5,"\/":7,"A":7,"J":5,"U":2,"Y":9,"y":2,"a":2,"j":2,",":5,".":5,"t":2,"u":2,"z":2,"\"":4,"'":4,")":2,"]":2,"}":2,"T":2}},":":{"d":"20,0r0,-48r44,0r0,48r-44,0xm20,-108r0,-48r44,0r0,48r-44,0","w":84,"k":{"V":18,"W":13,"8":4,"p":2,"7":13,"3":2,"v":4,"w":2,"U":7,"Y":23,"y":4,"a":2,"g":4,"j":2,"c":2,"d":2,"e":2,"o":2,"q":2,"s":2,"t":4,"u":2,"T":13}},";":{"d":"21,40r0,-19v7,0,17,2,19,-4r0,-17r-19,0r0,-48r43,0r0,71r-17,17r-26,0xm21,-108r0,-48r43,0r0,48r-43,0","w":84,"k":{"j":2,"V":18,"W":13,"8":4,"p":2,"7":13,"3":2,"v":4,"w":2,"U":7,"Y":23,"y":4,"a":2,"g":4,"c":2,"d":2,"e":2,"o":2,"q":2,"s":2,"t":4,"u":2,"T":13}},"<":{"d":"141,-46r-133,-59r0,-39r133,-58r0,36r-99,42r99,42r0,36","w":156,"k":{"w":2,"v":2,"X":2,"W":4,"V":4,"7":2,"1":2,"A":4,"J":4,"Y":4,"y":2,"Z":2,"a":2,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"u":2,"b":2,"h":2,"k":2,"l":2}},"=":{"d":"12,-140r0,-32r119,0r0,32r-119,0xm12,-75r0,-32r119,0r0,32r-119,0","w":142,"k":{"X":7,"W":5,"V":13,"7":2,"4":-4,"3":2,"1":9,"A":9,"J":9,"Y":16,"Z":2,"f":-2,"i":-2,"j":-2,"m":-2,"n":-2,"r":-2,"u":-2,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"M":2,"N":2,"P":2,"R":2,"b":2,"h":2,"k":2,"l":2}},">":{"d":"149,-105r-134,59r0,-36r100,-42r-100,-42r0,-36r134,58r0,39","w":156,"k":{"x":2,"X":14,"W":7,"V":13,"8":2,"7":9,"4":-2,"3":7,"1":11,"A":7,"J":16,"U":2,"Y":20,"Z":4,"i":-2,"j":-2,"m":-2,"n":-2,"r":-2,"t":-2,"u":-2,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"M":2,"N":2,"P":2,"R":2,"b":2,"h":2,"k":2,"l":2,"T":5}},"?":{"d":"69,-68r0,-49r26,-26v19,-2,47,6,53,-9r0,-50r-14,-14r-68,0r-13,13r0,26r-43,0r0,-39r32,-32r115,0r34,33r0,79r-27,27v-19,1,-46,-5,-53,9r0,32r-42,0xm69,0r0,-45r42,0r0,45r-42,0","w":204},"@":{"d":"67,52r-45,-45r0,-193r45,-46r194,0r45,46r0,156r-30,30r-66,0r-2,-27r-27,27r-72,0r-28,-29r0,-48r28,-29r92,0r0,-33r-13,-12v-25,3,-68,-13,-61,25r-41,0r0,-24r28,-29r95,0r32,32r0,120v16,2,22,-5,28,-12r0,-137r-27,-27r-156,0r-27,27r0,172r27,27r163,0r0,29r-182,0xm121,-38v7,15,37,9,58,10r22,-22r0,-31v-27,3,-68,-8,-80,10r0,33","w":328,"k":{"V":9,"W":7,"7":4,"X":5,"1":2,"A":4,"J":2,"Y":14,"Z":2,"T":2}},"A":{"d":"10,0r0,-31r19,0r57,-186r-32,0r0,-31r145,0r0,31r-33,0r57,186r19,0r0,31r-89,0r0,-31r28,0r-14,-45r-86,0r-13,45r27,0r0,31r-85,0xm121,-218r-31,110r68,0r-31,-110r-6,0","w":252},"B":{"d":"10,0r0,-31r27,0r0,-186r-27,0r0,-31r174,0r31,31r0,62r-26,27r27,27r0,69r-32,32r-174,0xm80,-32r80,0r13,-14r0,-50r-16,-17r-77,0r0,81xm80,-144r77,0r16,-16r0,-43r-14,-13r-79,0r0,72","w":237,"k":{"V":5,"W":2,"\\":7,"<":2,"p":2,"7":2,"v":5,"w":4,"x":4,"X":4,"\/":7,"A":4,"J":4,"Y":5,"y":5,"Z":2,"a":2,":":4,";":4,"f":2,"g":2,"j":2,",":4,".":4,"+":2,"s":2,"t":4,"u":4,"z":2,"\"":2,"'":2,"T":2}},"C":{"d":"59,0r-35,-35r0,-178r35,-35r111,0r34,34r0,44r-42,0r0,-30r-16,-16r-63,0r-17,17r0,150r17,17r63,0r16,-16r0,-32r42,0r0,46r-34,34r-111,0","w":223,"k":{"V":4,"\\":2,"=":2,"4":2,"<":4,"p":2,"v":5,"w":2,"x":4,"X":2,"\/":2,"A":4,"J":4,"Y":4,"y":5,"a":2,"f":2,"g":2,"-":5,"j":2,"c":2,"d":2,"e":2,"o":2,"q":2,",":2,".":2,"+":4,"s":2,"t":5,"u":4,"z":2}},"D":{"d":"10,0r0,-31r27,0r0,-186r-27,0r0,-31r170,0r36,35r0,177r-36,36r-170,0xm80,-32r76,0r17,-17r0,-150r-17,-17r-76,0r0,184","w":239,"k":{"V":7,"W":4,"*":2,"\\":7,"p":2,"v":2,"w":2,"x":2,"X":5,"\/":7,"A":7,"J":5,"U":2,"Y":9,"y":2,"a":2,"j":2,",":5,".":5,"t":2,"u":2,"z":2,"\"":4,"'":4,")":2,"]":2,"}":2,"T":2}},"E":{"d":"10,0r0,-31r27,0r0,-186r-27,0r0,-31r189,0r0,66r-36,0r0,-35r-83,0r0,75r96,0r0,33r-96,0r0,78r84,0r0,-35r36,0r0,66r-190,0","w":216,"k":{"V":2,"=":2,"4":2,"<":2,"p":2,"v":7,"w":5,"x":2,"Y":2,"y":7,"a":2,"g":2,"-":4,"j":2,"c":2,"d":2,"e":2,"o":2,"q":2,"+":4,"s":2,"t":9,"u":4,"z":2}},"F":{"d":"10,0r0,-31r27,0r0,-186r-27,0r0,-31r185,0r0,68r-36,0r0,-37r-79,0r0,78r94,0r0,34r-94,0r0,74r35,0r0,31r-105,0","w":204,"k":{"x":7,"w":7,"v":7,"p":5,"=":2,"<":2,"4":9,"2":2,"\/":18,"A":22,"J":20,"y":7,"S":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"Z":2,"a":22,"@":2,":":9,";":9,"f":4,"g":18,"-":4,"i":2,"j":4,"c":18,"d":18,"e":18,"o":18,"q":18,"m":5,"n":5,"r":5,",":25,".":25,"+":5,"s":16,"t":5,"u":4,"z":7}},"G":{"d":"59,0r-35,-36r0,-177r35,-35r116,0r32,32r0,38r-42,0r0,-25r-13,-13r-69,0r-17,17r0,150r17,17r68,0r15,-15r0,-52r-58,0r0,-33r101,0r0,97r-35,35r-115,0","w":228,"k":{"V":5,"W":2,"*":2,"\\":5,"p":2,"v":5,"w":4,"x":2,"X":2,"\/":5,"A":4,"J":2,"U":2,"Y":4,"y":5,"a":2,"f":2,",":2,".":2,"t":4,"u":2,"z":4,"\"":2,"'":2}},"H":{"d":"10,0r0,-31r27,0r0,-186r-27,0r0,-31r96,0r0,31r-26,0r0,76r92,0r0,-76r-27,0r0,-31r96,0r0,31r-26,0r0,186r26,0r0,31r-96,0r0,-31r27,0r0,-74r-92,0r0,74r26,0r0,31r-96,0","w":251,"k":{"=":2,"4":5,"<":2,"p":5,"7":2,"v":11,"w":9,"y":11,"a":4,"g":5,"-":2,"i":2,"j":2,"c":4,"d":4,"e":4,"o":4,"q":4,"+":2,"s":4,"t":7,"u":7,"z":2,"b":2,"h":2,"k":2,"l":2}},"I":{"d":"10,0r0,-31r30,0r0,-186r-30,0r0,-31r103,0r0,31r-30,0r0,186r30,0r0,31r-103,0","w":122,"k":{"=":2,"4":5,"<":2,"p":5,"7":2,"v":11,"w":9,"y":11,"a":4,"g":5,"-":2,"i":2,"j":2,"c":4,"d":4,"e":4,"o":4,"q":4,"+":2,"s":4,"t":7,"u":7,"z":2,"b":2,"h":2,"k":2,"l":2}},"J":{"d":"9,0r0,-34r54,0r17,-16r0,-167r-32,0r0,-31r100,0r0,31r-25,0r0,181r-36,36r-78,0","w":158,"k":{"$":2,"4":4,"<":4,"9":2,"p":7,"2":2,"v":11,"w":9,"x":11,"\/":13,"A":11,"J":9,"y":11,"S":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":13,":":7,";":7,"f":5,"g":11,"-":4,"i":7,"j":7,"c":11,"d":11,"e":11,"o":11,"q":11,"m":5,"n":5,"r":5,",":16,".":16,"+":2,"s":11,"t":11,"u":9,"z":11,"b":2,"h":2,"k":2,"l":2}},"K":{"d":"138,0r0,-31r27,0r-43,-89r-44,51r0,38r26,0r0,31r-95,0r0,-31r27,0r0,-186r-27,0r0,-31r95,0r0,31r-26,0r0,102r82,-102r-25,0r0,-31r97,0r0,31r-27,0r-55,66r61,120r26,0r0,31r-99,0","w":245,"k":{"V":4,"W":4,"*":7,"\\":2,"$":5,"8":5,"=":14,"5":4,"4":20,">":7,"<":18,"9":5,"p":7,"?":4,"7":5,"3":2,"v":27,"w":22,"x":2,"U":2,"Y":4,"y":27,"S":5,"0":7,"6":7,"C":7,"G":7,"O":7,"Q":7,"Z":2,"a":9,"f":2,"g":11,"-":22,"i":2,"j":4,"c":9,"d":9,"e":9,"o":9,"q":9,"m":2,"n":2,"r":2,"+":22,"s":7,"t":18,"u":13,"z":2,"\"":2,"'":2,"&":4,"b":2,"h":2,"k":2,"l":2,"T":4}},"L":{"d":"10,0r0,-31r27,0r0,-186r-27,0r0,-31r106,0r0,31r-36,0r0,186r73,0r0,-59r36,0r0,90r-179,0","w":199,"k":{"V":22,"W":14,"*":22,"\\":20,"<":2,"p":2,"?":16,"7":20," ":9,"v":13,"w":7,"U":4,"Y":22,"y":13,"-":2,"j":2,"+":2,"t":11,"u":2,"\"":14,"'":14,"T":14}},"M":{"d":"10,0r0,-31r27,0r0,-186r-27,0r0,-31r90,0r63,200r64,-200r89,0r0,31r-27,0r0,186r27,0r0,31r-95,0r0,-31r28,0r0,-186r-65,205r-46,0r-65,-205r0,186r30,0r0,31r-93,0","w":326,"k":{"=":2,"4":5,"<":2,"p":5,"7":2,"v":11,"w":9,"y":11,"a":4,"g":5,"-":2,"i":2,"j":2,"c":4,"d":4,"e":4,"o":4,"q":4,"+":2,"s":4,"t":7,"u":7,"z":2,"b":2,"h":2,"k":2,"l":2}},"N":{"d":"10,0r0,-31r27,0r0,-186r-27,0r0,-31r68,0r103,179r0,-148r-31,0r0,-31r94,0r0,31r-25,0r0,217r-42,0r-102,-181r0,150r30,0r0,31r-95,0","w":253,"k":{"$":2,"8":2,"=":4,"4":7,">":2,"<":4,"9":2,"p":9,"3":2,"2":4,"v":11,"w":9,"x":7,"\/":11,"A":7,"J":7,"y":11,"S":4,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"a":11,"@":4,":":7,";":7,"f":5,"g":13,"-":2,"i":5,"j":5,"c":11,"d":11,"e":11,"o":11,"q":11,"m":7,"n":7,"r":7,",":14,".":14,"+":4,"s":9,"t":13,"u":9,"z":9,"&":2}},"O":{"d":"59,0r-35,-36r0,-177r35,-35r116,0r36,35r0,177r-36,36r-116,0xm83,-33r69,0r16,-17r0,-149r-16,-17r-69,0r-17,17r0,149","w":234,"k":{"V":7,"W":4,"*":2,"\\":7,"p":2,"v":2,"w":2,"x":2,"X":5,"\/":7,"A":7,"J":5,"U":2,"Y":9,"y":2,"a":2,"j":2,",":5,".":5,"t":2,"u":2,"z":2,"\"":4,"'":4,")":2,"]":2,"}":2,"T":2}},"P":{"d":"10,0r0,-31r27,0r0,-186r-27,0r0,-31r171,0r34,34r0,85r-35,35r-100,0r0,63r37,0r0,31r-107,0xm80,-126r77,0r15,-14r0,-62r-14,-15r-78,0r0,91","w":226,"k":{"\\":2,"X":4,"W":2,"V":2,"?":-4,"=":-4,"<":-4,"4":2,"2":2,"1":2,"\/":16,"*":-4,"A":22,"J":16,"U":-2,"Y":2,"a":5,"g":4,"-":-7,"c":4,"d":4,"e":4,"o":4,"q":4,",":25,".":25,"+":-4,"s":4,"z":2,"\"":-5,"'":-5}},"Q":{"d":"174,59r-36,-37r0,-22r-79,0r-35,-36r0,-177r35,-35r116,0r36,35r0,177r-35,36v0,19,17,21,24,33xm83,-33r69,0r16,-17r0,-149r-16,-17r-69,0r-17,17r0,149","w":234,"k":{"V":7,"W":4,"*":2,"\\":7,"p":2,"v":2,"w":2,"x":2,"X":5,"\/":7,"A":7,"J":5,"U":2,"Y":9,"y":2,"a":2,"j":2,",":5,".":5,"t":2,"u":2,"z":2,"\"":4,"'":4,")":2,"]":2,"}":2,"T":2}},"R":{"d":"10,0r0,-31r27,0r0,-186r-27,0r0,-31r172,0r33,32r0,69r-26,25r26,25v2,21,-3,49,2,66r18,0r0,31r-43,0r-20,-19r0,-70r-17,-16r-75,0r0,74r29,0r0,31r-99,0xm80,-137r76,0r16,-16r0,-49r-15,-15r-77,0r0,80","w":244,"k":{"V":9,"W":5,"*":7,"\\":11,"$":2,"=":2,"5":2,"4":4,"<":2,"p":4,"?":7,"7":7,"v":9,"w":5,"U":4,"Y":9,"y":9,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":4,"g":4,"-":4,"j":4,"c":4,"d":4,"e":4,"o":4,"q":4,"+":4,"s":2,"t":7,"u":4,"\"":11,"'":11,"&":2,"T":4}},"S":{"d":"51,0r-32,-32r0,-38r43,0r0,25r13,13r68,0r13,-14v-2,-22,6,-54,-10,-62r-97,0r-28,-29r0,-78r33,-33r112,0r32,32r0,37r-42,0r0,-24r-13,-13r-66,0r-14,14v1,22,-6,52,10,59r97,0r29,29r0,81r-33,33r-115,0","w":218,"k":{"V":5,"W":4,"*":2,"\\":5,"p":2,"v":7,"w":4,"x":2,"X":4,"\/":5,"A":5,"J":4,"U":2,"Y":7,"y":7,"j":2,",":4,".":4,"t":5,"u":2,"z":2,"\"":4,"'":4,")":2,"]":2,"}":2}},"T":{"d":"56,0r0,-31r37,0r0,-186r-47,0r0,50r-34,0r0,-81r205,0r0,81r-34,0r0,-50r-48,0r0,186r37,0r0,31r-116,0","w":228,"k":{"*":-2,"8":2,"4":4,"<":5," ":9,"2":2,"v":4,"w":2,"x":2,"\/":14,"A":16,"J":14,"y":4,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":14,"@":2,":":13,";":13,"g":13,"-":7,"c":13,"d":13,"e":13,"o":13,"q":13,",":23,".":23,"+":7,"s":11,"t":2,"u":2,"z":4,"\"":-2,"'":-2,"&":2}},"U":{"d":"70,0r-35,-36r0,-181r-25,0r0,-31r95,0r0,31r-28,0r0,166r17,17r61,0r17,-17r0,-166r-28,0r0,-31r95,0r0,31r-24,0r0,181r-36,36r-109,0","w":249,"k":{"$":2,"4":4,"<":4,"9":2,"p":7,"2":2,"v":11,"w":9,"x":11,"\/":13,"A":11,"J":9,"y":11,"S":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":13,":":7,";":7,"f":5,"g":11,"-":4,"i":7,"j":7,"c":11,"d":11,"e":11,"o":11,"q":11,"m":5,"n":5,"r":5,",":16,".":16,"+":2,"s":11,"t":11,"u":9,"z":11,"b":2,"h":2,"k":2,"l":2}},"V":{"d":"91,0r-62,-217r-19,0r0,-31r93,0r0,31r-30,0r52,187r51,-187r-31,0r0,-31r89,0r0,31r-17,0r-63,217r-63,0","w":244,"k":{"x":18,"w":18,"v":20,"p":18,">":4,"=":13,"<":13,"9":2,"8":5,"4":11,"3":2,"2":5,"\/":23,"*":4,"$":7," ":11,"A":23,"J":18,"y":20,"S":5,"0":7,"6":7,"C":7,"G":7,"O":7,"Q":7,"Z":2,"a":31,"@":9,":":18,";":18,"f":11,"g":31,"-":16,"i":7,"j":7,"c":29,"d":29,"e":29,"o":29,"q":29,"m":18,"n":18,"r":18,",":32,".":32,"+":16,"s":27,"t":16,"u":20,"z":22,"&":5,")":2,"]":2,"}":2}},"W":{"d":"73,0r-43,-217r-20,0r0,-31r90,0r0,31r-31,0r34,178r46,-209r53,0r46,209r33,-178r-30,0r0,-31r85,0r0,31r-21,0r-43,217r-52,0r-46,-210r-46,210r-55,0","w":345,"k":{"x":18,"w":18,"v":18,"p":14,">":4,"=":5,"<":7,"9":2,"8":2,"4":9,"3":2,"2":5,"\/":16,"*":2,"$":5," ":7,"A":18,"J":18,"y":18,"S":4,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"Z":2,"a":25,"@":7,":":13,";":13,"f":11,"g":23,"-":13,"i":7,"j":7,"c":23,"d":23,"e":23,"o":23,"q":23,"m":14,"n":14,"r":14,",":27,".":27,"+":11,"s":23,"t":14,"u":16,"z":20,"&":2}},"X":{"d":"132,0r0,-31r33,0r-47,-78r-48,78r31,0r0,31r-92,0r0,-31r18,0r61,-96r-58,-90r-19,0r0,-31r97,0r0,31r-31,0r44,74r46,-74r-29,0r0,-31r91,0r0,31r-20,0r-59,89r62,97r18,0r0,31r-98,0","w":239,"k":{"w":22,"v":25,"p":7,"\\":2,"?":2,">":2,"=":7,"<":14,"9":4,"8":4,"5":2,"4":14,"3":2,"2":2,"*":4,"$":4,"y":25,"S":4,"0":5,"6":5,"C":5,"G":5,"O":5,"Q":5,"a":9,"@":4,"g":9,"-":20,"j":4,"c":9,"d":9,"e":9,"o":9,"q":9,"+":14,"s":9,"t":16,"u":13,"z":2,"\"":2,"'":2,"&":4}},"Y":{"d":"63,0r0,-31r37,0r0,-51r-70,-135r-20,0r0,-31r94,0r0,31r-29,0r48,97r49,-97r-29,0r0,-31r89,0r0,31r-20,0r-70,135r0,51r36,0r0,31r-115,0","w":241,"k":{"*":4,"$":7,"8":5,"=":16,"5":4,"4":14,">":4,"<":20,"9":7,"p":25," ":13,"3":2,"2":5,"v":29,"w":23,"x":25,"\/":23,"A":22,"J":18,"y":29,"S":7,"0":9,"6":9,"C":9,"G":9,"O":9,"Q":9,"Z":2,"a":40,"@":13,":":23,";":23,"f":18,"g":38,"-":25,"i":14,"j":16,"c":38,"d":38,"e":38,"o":38,"q":38,"m":25,"n":25,"r":25,",":34,".":34,"+":22,"s":36,"t":20,"u":27,"z":23,"&":5,")":2,"]":2,"}":2,"b":2,"h":2,"k":2,"l":2}},"Z":{"d":"16,0r0,-28r124,-188r-88,0r0,48r-34,0r0,-80r172,0r0,28r-125,188r92,0r0,-49r35,0r0,81r-176,0","w":207,"k":{"V":2,"*":4,"\\":2,"$":2,"8":2,"<":2,"p":5,"?":2,"7":2,"v":16,"w":11,"x":2,"A":2,"Y":2,"y":16,"@":2,"-":4,"j":4,"+":4,"t":11,"u":5,"z":2,"\"":2,"'":2,"T":2}},"[":{"d":"28,24r0,-296r80,0r0,33r-38,0r0,230r38,0r0,33r-80,0","w":120,"k":{"V":2,"4":7,"9":2,"3":2,"2":4,"v":9,"w":5,"A":2,"Y":2,"y":9,"S":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":2,"g":2,"j":-7,"c":2,"d":2,"e":2,"o":2,"q":2,"s":2,"t":11,"u":2}},"\\":{"d":"38,-272r85,296r-37,0r-86,-296r38,0","w":123,"k":{"w":13,"v":18,"p":-5,"W":16,"V":23,"9":5,"8":7,"7":22,"5":7,"4":7,"3":4,"U":13,"Y":23,"y":14,"S":5,"0":7,"6":7,"C":7,"G":7,"O":7,"Q":7,"a":4,"g":4,"j":-18,"c":7,"d":7,"e":7,"o":7,"q":7,"s":5,"t":16,"u":11,"T":14}},"]":{"d":"93,-272r0,296r-80,0r0,-33r38,0r0,-230r-38,0r0,-33r80,0","w":120},"^":{"d":"8,-125r48,-123r47,0r49,123r-38,0r-35,-99r-35,99r-36,0","w":158},"_":{"d":"-3,40r0,-27r179,0r0,27r-179,0","w":173},"`":{"d":"55,-195v-10,-16,-33,-18,-31,-46r26,0v10,15,32,19,30,46r-25,0","w":104},"a":{"d":"45,0r-28,-29r0,-48r28,-29r91,0r0,-33r-13,-12v-25,3,-67,-13,-60,25r-42,0r0,-24r29,-29r94,0r32,32r0,119r21,0r0,28r-52,0r-2,-27r-27,27r-71,0xm57,-38v7,15,36,9,57,10r22,-22r0,-31v-27,3,-67,-8,-79,10r0,33","w":204,"k":{"*":22,"\\":32,"$":5,"8":4,"=":2,"5":4,"4":5,">":4,"<":4,"9":4,"p":2,"?":16,"7":16,"3":2,"2":2,"v":9,"w":5,"y":9,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"a":2,"g":2,"-":4,"j":4,"c":2,"d":2,"e":2,"o":2,"q":2,"+":5,"s":2,"t":9,"u":4,"z":2,"\"":16,"'":16,"&":2}},"b":{"d":"7,0r0,-28r23,0r0,-191r-23,0r0,-29r64,0r0,94r24,-25r66,0r32,32r0,115r-32,32r-70,0r-28,-28r-2,28r-54,0xm96,-28r43,0r13,-14r0,-94r-13,-14r-41,0r-27,28r0,68","k":{"*":16,"\\":29,">":2,"?":14,"7":13,"3":2,"v":4,"w":4,"x":4,"\/":7,"1":2,"y":4,"a":2,":":2,";":2,"j":2,",":5,".":5,"t":4,"u":2,"\"":9,"'":9,")":2,"]":2,"}":2,"b":2,"h":2,"k":2,"l":2}},"c":{"d":"53,0r-32,-32r0,-115r32,-32r95,0r29,30r0,32r-41,0v2,-16,-2,-28,-11,-33r-50,0r-14,13r0,95r14,14r50,0v8,-6,13,-16,11,-33r41,0r0,31r-29,30r-95,0","w":194,"k":{"*":7,"\\":22,"=":-2,"<":-2,"?":9,"7":7,"\/":4,"1":2,"-":-2,",":2,".":2,"+":-4,"u":2,"\"":2,"'":2}},"d":{"d":"53,0r-32,-32r0,-115r32,-32r65,0r25,25r0,-65r-31,0r0,-29r72,0r0,220r21,0r0,28r-52,0r-3,-28r-27,28r-70,0xm75,-28r43,0r25,-25r0,-69r-28,-28r-40,0r-14,14r0,94","w":211,"k":{"*":11,"\\":11,"=":2,"4":4,">":2,"<":4,"p":2,"?":5,"7":2,"v":5,"w":2,"y":5,"g":2,"-":4,"j":2,"c":2,"d":2,"e":2,"o":2,"q":2,"+":4,"t":4,"u":4,"\"":7,"'":7}},"e":{"d":"53,0r-32,-32r0,-115r32,-32r95,0r32,32r0,67r-119,0r0,39r13,13v26,-4,72,15,65,-26r41,0r0,26r-27,28r-100,0xm61,-106r79,0r0,-32r-13,-13r-53,0r-13,13r0,32","w":199,"k":{"*":14,"\\":27,"?":14,"7":11,"v":4,"w":2,"x":2,"\/":5,"1":2,"y":4,":":2,";":2,",":4,".":4,"t":4,"\"":7,"'":7}},"f":{"d":"33,-28r0,-121r-26,0r0,-30r26,0r0,-40r30,-29r67,0r0,29v-21,1,-49,-5,-56,10r0,30r52,0r0,30r-52,0r0,121r34,0r0,28r-100,0r0,-28r25,0","w":132,"k":{"\\":-4,"?":-7,">":2,"=":-2,"<":-2,"7":-4,"4":2,"\/":7,"*":-2,"a":9,":":4,";":4,"g":7,"c":7,"d":7,"e":7,"o":7,"q":7,",":11,".":11,"s":5,"z":2,"\"":-4,"'":-4,")":-2,"]":-2,"}":-2}},"g":{"d":"51,63r-27,-28r0,-22r39,0v-2,12,3,17,8,22r59,0r13,-14r0,-53r-24,24r-66,0r-32,-31r0,-108r32,-32r69,0r29,30r2,-30r53,0r0,30r-22,0r0,180r-32,32r-101,0xm75,-36r43,0r25,-25r0,-63r-26,-26r-42,0r-13,14r0,86","w":212,"k":{"\\":18,"4":2,"<":-2,"7":4,"3":2,"2":2,"\/":2,"1":4,"a":2,":":2,";":2,"g":2,"j":-4,"c":2,"d":2,"e":2,"o":2,"q":2,",":9,".":9,"b":2,"h":2,"k":2,"l":2}},"h":{"d":"7,0r0,-28r23,0r0,-191r-23,0r0,-29r64,0r0,94r24,-25r59,0r32,32r0,119r21,0r0,28r-85,0r0,-28r23,0r0,-106r-13,-14r-35,0r-26,27r0,93r22,0r0,28r-86,0","k":{"*":22,"\\":32,"$":5,"8":4,"=":2,"5":4,"4":5,">":4,"<":4,"9":4,"p":2,"?":16,"7":16,"3":2,"2":2,"v":9,"w":5,"y":9,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"a":2,"g":2,"-":4,"j":4,"c":2,"d":2,"e":2,"o":2,"q":2,"+":5,"s":2,"t":9,"u":4,"z":2,"\"":16,"'":16,"&":2}},"i":{"d":"7,0r0,-28r24,0r0,-121r-24,0r0,-30r65,0r0,151r23,0r0,28r-88,0xm31,-204r0,-40r41,0r0,40r-41,0","w":101,"k":{"*":13,"\\":11,"$":2,"8":2,"=":2,"5":2,"4":4,">":2,"<":2,"?":7,"7":7,"v":5,"w":5,"y":5,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":2,"g":2,"-":2,"j":4,"c":2,"d":2,"e":2,"o":2,"q":2,"+":4,"s":2,"t":7,"u":2,"\"":9,"'":9}},"j":{"d":"-13,63r0,-30v19,0,39,2,44,-11r0,-171r-24,0r0,-30r65,0r0,211r-30,31r-55,0xm31,-204r0,-40r41,0r0,40r-41,0","w":94,"k":{"*":4,"\\":4,"7":2,"v":2,"w":2,"y":2,":":2,";":2,"j":-5,",":2,".":2,"z":2,"\"":2,"'":2}},"k":{"d":"118,0r0,-28r23,0r-32,-60r-39,37r0,23r19,0r0,28r-83,0r0,-28r23,0r0,-192r-23,0r0,-28r64,0r0,163r63,-65r-30,0r0,-29r98,0r0,29r-25,0r-40,39r49,83r22,0r0,28r-89,0","k":{"*":4,"\\":20,"4":5,">":2,"<":2,"p":2,"7":5,"2":2,"v":4,"w":4,"y":4,"a":5,"g":5,"-":4,"j":2,"c":5,"d":5,"e":5,"o":5,"q":5,"+":2,"s":4,"t":4,"u":4,"z":2,"\"":2,"'":2,"&":2}},"l":{"d":"7,0r0,-28r23,0r0,-191r-23,0r0,-29r64,0r0,220r24,0r0,28r-88,0","w":101,"k":{"*":11,"\\":11,"=":2,"4":4,">":2,"<":4,"p":2,"?":5,"7":2,"v":5,"w":2,"y":5,"g":2,"-":4,"j":2,"c":2,"d":2,"e":2,"o":2,"q":2,"+":4,"t":4,"u":4,"\"":7,"'":7}},"m":{"d":"7,0r0,-28r23,0r0,-121r-23,0r0,-30r54,0r2,30r30,-30r55,0r26,26r25,-26r60,0r32,32r0,119r21,0r0,28r-84,0r0,-28r22,0r0,-106r-13,-14r-33,0r-23,24r0,96r22,0r0,28r-85,0r0,-28r22,0r0,-106r-13,-14r-29,0r-27,27r0,93r22,0r0,28r-86,0","w":318,"k":{"*":22,"\\":32,"$":5,"8":4,"=":2,"5":4,"4":5,">":4,"<":4,"9":4,"p":2,"?":16,"7":16,"3":2,"2":2,"v":9,"w":5,"y":9,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"a":2,"g":2,"-":4,"j":4,"c":2,"d":2,"e":2,"o":2,"q":2,"+":5,"s":2,"t":9,"u":4,"z":2,"\"":16,"'":16,"&":2}},"n":{"d":"7,0r0,-28r23,0r0,-121r-23,0r0,-30r54,0r2,30r30,-30r61,0r32,32r0,119r21,0r0,28r-85,0r0,-28r23,0r0,-106r-13,-14r-34,0r-27,27r0,93r22,0r0,28r-86,0","k":{"*":22,"\\":32,"$":5,"8":4,"=":2,"5":4,"4":5,">":4,"<":4,"9":4,"p":2,"?":16,"7":16,"3":2,"2":2,"v":9,"w":5,"y":9,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"a":2,"g":2,"-":4,"j":4,"c":2,"d":2,"e":2,"o":2,"q":2,"+":5,"s":2,"t":9,"u":4,"z":2,"\"":16,"'":16,"&":2}},"o":{"d":"53,0r-32,-32r0,-115r32,-32r98,0r32,32r0,115r-32,32r-98,0xm75,-28r54,0r14,-14r0,-95r-14,-14r-54,0r-13,14r0,95","w":204,"k":{"*":16,"\\":29,">":2,"?":14,"7":13,"3":2,"v":4,"w":4,"x":4,"\/":7,"1":2,"y":4,"a":2,":":2,";":2,"j":2,",":5,".":5,"t":4,"u":2,"\"":9,"'":9,")":2,"]":2,"}":2,"b":2,"h":2,"k":2,"l":2}},"p":{"d":"7,63r0,-29r23,0r0,-183r-23,0r0,-30r54,0r2,29r28,-29r70,0r32,32r0,115r-32,32r-68,0r-22,-22r0,56r32,0r0,29r-96,0xm96,-29r43,0r13,-13r0,-95r-13,-13r-43,0r-25,26r0,70","k":{"*":16,"\\":29,">":2,"?":14,"7":13,"3":2,"v":4,"w":4,"x":4,"\/":7,"1":2,"y":4,"a":2,":":2,";":2,"j":2,",":5,".":5,"t":4,"u":2,"\"":9,"'":9,")":2,"]":2,"}":2,"b":2,"h":2,"k":2,"l":2}},"q":{"d":"111,63r0,-29r32,0r0,-57r-23,23r-67,0r-32,-32r0,-115r32,-32r69,0r29,29r2,-29r54,0r0,30r-23,0r0,183r23,0r0,29r-96,0xm75,-29r42,0r26,-26r0,-69r-26,-26r-42,0r-13,13r0,95","w":214,"k":{"\\":18,"?":-2,"=":-2,"<":-2,"8":2,"7":4,"2":2,"1":2,"\/":-5,",":7,"a":4,":":2,";":2,"-":-2,"j":-18,"c":2,"d":2,"e":2,"o":2,"q":2,".":7,"+":-2,"b":2,"h":2,"k":2,"l":2}},"r":{"d":"7,0r0,-28r23,0r0,-121r-23,0r0,-30r54,0r2,31r31,-31r41,0r0,34r-37,0r-27,28r0,89r32,0r0,28r-96,0","w":142,"k":{"*":2,"\\":14,"4":2,">":2,"?":-2,"7":4,"3":4,"2":4,"\/":16,"1":5,"a":7,":":2,";":2,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,",":16,".":16,"+":2,"s":4,"&":2,")":2,"]":2,"}":2,"b":5,"h":5,"k":5,"l":5}},"s":{"d":"45,0r-27,-27r0,-25r39,0v-1,12,1,20,8,24v24,-2,59,7,69,-9v-1,-14,4,-34,-7,-38r-85,0r-23,-23r0,-51r29,-30r97,0r27,27r0,25r-40,0v1,-12,-1,-20,-8,-24v-23,2,-57,-7,-65,10v1,13,-4,32,6,37r86,0r23,23r0,52r-29,29r-100,0","w":191,"k":{"*":13,"\\":27,"8":2,"?":9,"7":11,"v":4,"w":2,"x":2,"\/":5,"1":2,"y":4,":":2,";":2,"j":2,",":5,".":5,"t":2,"u":2,"\"":7,"'":7,")":2,"]":2,"}":2,"b":2,"h":2,"k":2,"l":2}},"t":{"d":"66,0r-31,-30r0,-119r-28,0r0,-30r28,0r0,-50r41,0r0,50r60,0r0,30r-60,0r0,107r13,14r47,0r0,28r-70,0","w":143,"k":{"\\":9,"=":-2,"4":2,"?":-2,"7":2,"a":2,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"s":2}},"u":{"d":"60,0r-32,-32r0,-117r-21,0r0,-30r61,0r0,135r14,13r34,0r27,-27r0,-91r-30,0r0,-30r70,0r0,151r23,0r0,28r-54,0r-2,-30r-29,30r-61,0","w":212,"k":{"*":9,"\\":25,"$":2,"8":2,"=":4,"5":2,"4":4,"<":2,"9":2,"p":4,"?":7,"7":11,"3":2,"v":5,"w":2,"y":5,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":2,"g":2,"-":5,"j":4,"c":2,"d":2,"e":2,"o":2,"q":2,"+":4,"s":2,"t":7,"u":2,"\"":13,"'":13,"&":2}},"v":{"d":"74,0r-51,-150r-17,0r0,-29r80,0r0,29r-22,0r39,126r39,-126r-23,0r0,-29r76,0r0,29r-15,0r-51,150r-55,0","w":201,"k":{"\\":18,"?":-2,">":2,"9":2,"8":5,"7":4,"4":2,"3":4,"2":5,"1":13,"\/":18,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":5,":":4,";":4,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,",":27,".":27,"s":4,")":9,"]":9,"}":9,"b":4,"h":4,"k":4,"l":4}},"w":{"d":"55,0r-33,-150r-16,0r0,-29r81,0r0,29r-26,0r25,123r38,-152r50,0r38,152r25,-123r-26,0r0,-29r76,0r0,29r-16,0r-33,150r-54,0r-36,-148r-37,148r-56,0","w":293,"k":{"\\":18,"?":-2,">":2,"8":4,"7":4,"4":2,"3":2,"2":4,"1":7,"\/":13,"*":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":4,":":2,";":2,"g":2,"-":-2,"c":4,"d":4,"e":4,"o":4,"q":4,",":20,".":20,"s":2,")":5,"]":5,"}":5,"b":2,"h":2,"k":2,"l":2}},"x":{"d":"112,0r0,-28r27,0r-38,-50r-37,50r25,0r0,28r-82,0r0,-28r18,0r47,-63r-46,-58r-18,0r0,-30r85,0r0,30r-24,0r34,46r35,-46r-24,0r0,-30r81,0r0,30r-19,0r-45,55r51,66r15,0r0,28r-85,0","w":203,"k":{"v":2,"\\":22,"<":2,"9":2,"8":4,"7":4,"4":5,"3":2,"*":2,"y":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":2,"g":4,"-":2,"c":4,"d":4,"e":4,"o":4,"q":4,"+":2,"s":2,"t":2}},"y":{"d":"73,0r-50,-149r-16,0r0,-30r80,0r0,30r-22,0r38,125r37,-125r-22,0r0,-30r76,0r0,30r-15,0r-63,188r-24,24r-66,0r0,-31v21,-1,52,6,58,-9r9,-23r-20,0","w":201,"k":{"\\":22,"8":5,"4":2,">":2,"9":2,"?":-2,"7":4,"3":4,"2":5,"\/":18,"1":13,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":2,":":4,";":4,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,",":27,".":27,"s":4,"z":2,")":9,"]":9,"}":9,"b":4,"h":4,"k":4,"l":4}},"z":{"d":"14,0r0,-23r99,-127r-66,0r0,28r-31,0r0,-57r145,0r0,24r-99,127r69,0r0,-30r31,0r0,58r-148,0","w":176,"k":{"*":2,"\\":22,"7":4,"v":2,"y":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":2,"-":2,"+":2,"u":2}},"{":{"d":"71,24r-36,-36r0,-88v-5,-8,-15,-11,-30,-9r0,-36v15,2,25,-2,30,-10r0,-81r36,-36r44,0r0,33r-21,0r-17,17r0,74r-20,21r20,20r0,81r17,17r21,0r0,33r-44,0","w":128,"k":{"V":2,"4":7,"9":2,"3":2,"2":4,"v":9,"w":5,"A":2,"Y":2,"y":9,"S":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"a":2,"g":2,"j":-7,"c":2,"d":2,"e":2,"o":2,"q":2,"s":2,"t":11,"u":2}},"|":{"d":"33,24r0,-296r40,0r0,296r-40,0","w":106},"}":{"d":"93,-12r-35,36r-44,0r0,-33r21,0r16,-17r0,-81r21,-20r-21,-21r0,-74r-16,-17r-21,0r0,-33r44,0r35,36r0,81v6,8,15,12,30,10r0,36v-14,-1,-25,1,-30,9r0,88","w":128},"~":{"d":"10,-189r0,-36r23,-23r39,0r33,33v18,2,18,-15,17,-33r30,0r0,35r-23,24r-39,0r-33,-33v-18,-2,-18,15,-17,33r-30,0","w":162},"\u00a0":{"w":93,"k":{"W":7,"V":11,"A":11,"J":11,"Y":13,"T":9}}}});function isiPad(){return(navigator.platform.indexOf("iPad")!=-1);}
jQuery(document).ready(function($){$('#nav li').each(function(){var listItem=$(this);var description=listItem.find('p');description.hide();if(!isiPad()){listItem.hover(function(){description.slideDown('fast');},function(){description.slideUp('fast',function(){description.clearQueue();});});}});});jQuery(document).ready(function($){if(navigator.userAgent.match(/iPad/i)){$('html').addClass('ipad');}});jQuery(document).ready(function($){$('a').live('touchend',function(e){var link=$(this);var href=link.attr('href');if(href){location=href;}});});jQuery(document).ready(function($){$('#ft .top-arrow').click(function(){$.scrollTo('0px',1000);});});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2006 House Industries/Brand Design Co., Inc. All Rights Reserved.
 * 
 * Trademark:
 * United is a trademark of House Industries/Brand Design Co., Inc.
 * 
 * Full name:
 * UnitedSansExt-Thin
 * 
 * Description:
 * Part of the United family from House Industries.
 * 
 * Manufacturer:
 * House Industries
 * 
 * Designer:
 * Tal Leming
 * 
 * Vendor URL:
 * http://www.houseindustries.com
 * 
 * License information:
 * http://www.houseindustries.com/license
 */
Cufon.registerFont({"w":161,"face":{"font-family":"UnitedSansExtThin","font-weight":250,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"274","descent":"-86","bbox":"-36 -279 449 68","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":154,"k":{"V":11,"A":11,"T":11,"Y":11,"J":18}},"!":{"d":"65,-63r0,-185r3,0r0,185r-3,0xm65,0r0,-36r3,0r0,36r-3,0","w":133},"\"":{"d":"76,-148r0,-100r3,0r0,100r-3,0xm25,-148r0,-100r4,0r0,100r-4,0","w":104,"k":{"4":7,"7":-11,"v":-18,"w":-14,"X":-4,"x":-11,"2":2,"A":18,"a":4,"t":-7,"J":11,"y":-18,"z":-7}},"#":{"d":"58,-62r0,-50r-44,0r0,-4r44,0r0,-82r-44,0r0,-4r44,0r0,-46r3,0r0,46r110,0r0,-46r4,0r0,46r43,0r0,4r-43,0r0,82r43,0r0,4r-43,0r0,50r-4,0r0,-50r-110,0r0,50r-3,0xm61,-116r110,0r0,-82r-110,0r0,82","w":232,"k":{"4":2,"1":2}},"$":{"d":"74,-11r-36,-36r0,-29r3,0r0,28r35,34r95,0r0,-112r-99,0r-32,-32r0,-40r39,-40r92,0r0,-41r4,0r0,41r93,0r36,36r0,30r-3,0r0,-28r-35,-34r-91,0r0,105r99,0r32,33r0,46r-40,39r-91,0r0,42r-4,0r0,-42r-97,0xm272,-126r-97,0r0,112r90,0r37,-38r0,-43xm43,-159r31,30r97,0r0,-105r-90,0r-38,37r0,38","w":343,"k":{"X":4,"W":4,"V":5,"7":5,"1":5,"A":5,"I":2,"T":4,"Y":7,"J":4,"Z":4}},"%":{"d":"50,-133r-28,-29r0,-58r28,-28r83,0r29,28r0,58r-29,29r-83,0xm52,-136r79,0r27,-27r0,-55r-27,-27r-79,0r-27,27r0,55xm219,0r-29,-29r0,-58r29,-29r83,0r28,29r0,58r-28,29r-83,0xm221,-3r79,0r27,-27r0,-55r-27,-27r-79,0r-27,27r0,55xm84,0r170,-248r3,0r-169,248r-4,0","w":352},"&":{"d":"79,0r-39,-40r0,-59r30,-31r-29,-28r0,-53r38,-37r187,0r40,39r0,26r-4,0r0,-24r-37,-38r-184,0r-36,36r0,49r29,29r279,0r0,3r-47,0r0,88r-40,40r-187,0xm81,-3r184,0r37,-38r0,-87r-229,0r-30,30r0,57","w":356,"k":{"x":-2,"w":-11,"v":-11,"X":7,"W":2,"V":4,"9":-4,"7":4,"4":-7,"1":2,"A":9,"I":2,"T":5,"Y":9,"a":-4,"t":-13,"J":4,"0":-4,"6":-4,"C":-4,"G":-4,"O":-4,"Q":-4,"Z":5,"f":-7,"g":-7,"c":-7,"d":-7,"e":-7,"o":-7,"q":-7,"s":-9,"y":-11}},"'":{"d":"25,-148r0,-100r4,0r0,100r-4,0","w":54,"k":{"4":7,"7":-11,"v":-18,"w":-14,"X":-4,"x":-11,"2":2,"A":18,"a":4,"t":-7,"J":11,"y":-18,"z":-7}},"(":{"d":"86,29r-32,-33r0,-240r32,-33r43,0r0,3r-41,0r-30,31r0,238r30,31r41,0r0,3r-43,0","k":{"4":7,"v":7,"w":4,"3":2,"A":4,"a":5,"t":7,"f":9,"g":7,"c":5,"d":5,"e":5,"o":5,"q":5,"s":5,"y":7,"j":-29}},")":{"d":"107,-4r-32,33r-43,0r0,-3r41,0r31,-31r0,-238r-31,-31r-41,0r0,-3r43,0r32,33r0,240"},"*":{"d":"38,-138r-2,-2r34,-47r-56,-19v16,-2,39,13,57,16r0,-58r3,0r0,58v18,-4,41,-17,56,-16r-55,19r34,47r-2,2r-35,-48","w":144,"k":{"w":-9,"v":-7,"X":5,"W":-2,"7":-4,"4":7,"A":34,"I":5,"T":4,"Y":2,"a":11,"t":-7,"J":32,"Z":11,"g":7,"c":7,"d":7,"e":7,"o":7,"q":7,"s":5,"y":-7,"z":4}},"+":{"d":"11,-122r0,-3r77,0r0,-70r3,0r0,70r77,0r0,3r-77,0r0,70r-3,0r0,-70r-77,0","w":178,"k":{"V":11,"W":4,"5":-7,"4":-7,"1":9,"7":20,"v":-11,"w":-11,"X":20,"3":7,"x":4,"A":9,"I":11,"T":22,"Y":22,"t":-11,"J":14,"Z":7,"y":-11,"S":2}},",":{"d":"36,7v-8,6,-17,22,-24,20r20,-21r0,-49r4,0r0,50","w":68,"k":{"V":29,"W":20,"7":14,"v":18,"w":14,"T":32,"Y":32,"t":22,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"f":16,"\"":11,"'":11,"y":18,"U":4}},"-":{"d":"11,-122r0,-3r160,0r0,3r-160,0","w":181,"k":{"V":13,"W":7,"4":-11,"1":16,"7":13,"v":-7,"w":-11,"X":27,"3":4,"x":4,"A":14,"I":22,"T":11,"Y":22,"a":2,"t":-5,"J":25,"Z":14,"f":-4,"s":-4,"y":-7,"S":2}},".":{"d":"32,0r0,-43r4,0r0,43r-4,0","w":68,"k":{"V":29,"W":20,"7":14,"v":18,"w":14,"T":32,"Y":32,"t":22,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"f":16,"\"":11,"'":11,"y":18,"U":4}},"\/":{"d":"4,22r148,-292r4,0r-148,292r-4,0","w":159,"k":{"x":36,"w":7,"v":7,"p":32,"V":-14,"9":11,"8":16,"7":-18,"4":27,"3":5,"2":18,"1":7,"\/":36,"A":43,"T":-7,"a":54,"t":11,"J":43,"0":14,"6":14,"C":14,"G":14,"O":14,"Q":14,"f":16,"g":50,"c":50,"d":50,"e":50,"o":50,"q":50,"m":40,"n":40,"r":40,"s":43,"u":36,"y":7,"z":29,"S":11}},"0":{"d":"92,0r-51,-50r0,-148r51,-50r180,0r50,50r0,148r-50,50r-180,0xm94,-3r176,0r49,-49r0,-145r-49,-48r-176,0r-49,48r0,145","w":363,"k":{"V":5,"W":4,"\\":14,"1":2,"7":2,"X":5,"\/":14,"x":5,"A":5,"I":2,"T":5,"Y":9,"J":4,"Z":4,",":4,".":4}},"1":{"d":"22,0r0,-3r95,0r0,-242r-95,0r0,-3r98,0r0,245r92,0r0,3r-190,0","w":222,"k":{"w":7,"v":7,"\\":29,"W":9,"V":23,"?":22,"<":4,"7":13,"4":4,"*":25,"$":2,"#":5,"T":25,"Y":34,"t":13,"f":7,"-":7,"\"":22,"'":22,"u":2,"y":4,"+":9,"S":2,"U":2,"%":27}},"2":{"d":"38,0r0,-86r36,-36r192,0r35,-34r0,-48r-42,-41r-178,0r-38,38r0,24r-3,0r0,-26r39,-39r182,0r43,43r0,50r-36,36r-192,0r-35,34r0,82r264,0r0,3r-267,0","w":339,"k":{"\\":11,"W":2,"V":2,"4":16,"A":4,"T":7,"Y":2,"J":4,"c":9,"d":9,"e":9,"o":9,"q":9,"\"":-7,"'":-7}},"3":{"d":"70,0r-39,-40r0,-29r3,0r0,28r38,38r185,0r38,-38r0,-58r-30,-30r-172,0r0,-3r172,0r28,-29r0,-48r-36,-36r-183,0r-38,38r0,27r-4,0r0,-29r40,-39r187,0r38,37r0,52r-29,28r31,31r0,60r-40,40r-189,0","w":338,"k":{"V":4,"\\":13,"8":2,"1":2,"7":2,"X":5,"\/":7,"3":2,"x":5,"A":5,"I":2,"T":4,"Y":5,"a":2,"t":4,"J":5,"Z":2,"f":4,"g":2,"s":2,"z":5}},"4":{"d":"279,0r0,-71r-254,0v26,-62,60,-117,89,-177r4,0r-89,174r250,0r0,-174r4,0r0,174r44,0r0,3r-44,0r0,71r-4,0","w":346,"k":{"w":2,"v":4,"\\":14,"X":2,"W":4,"V":7,"?":7,"=":-7,"<":-7,"7":5,"1":2,"T":7,"Y":11,"-":-4,",":-4,".":-4,"\"":7,"'":7,"y":4,"z":4,"%":11}},"5":{"d":"79,0r-39,-40r0,-25r3,0r0,24r38,38r178,0r42,-42r0,-69r-35,-34r-192,0v-12,10,-19,24,-34,31r0,-131r259,0r0,3r-256,0r0,123r29,-29r196,0r36,36r0,72r-43,43r-182,0","w":338,"k":{"x":5,"w":5,"v":7,"X":2,"V":2,"?":7,"9":2,"7":4,"3":2,"1":4,"\/":5,"*":5,"A":7,"I":2,"T":7,"Y":4,"t":4,"J":4,"Z":2,"f":5,"\"":4,"'":4,"y":7,"z":4,"%":2}},"6":{"d":"92,0r-51,-50r0,-148r51,-50r174,0r40,39r0,29r-4,0r0,-27r-37,-38r-171,0r-49,48r0,81r29,-28r198,0r36,36r0,65r-43,43r-173,0xm94,-3r169,0r41,-42r0,-62r-34,-34r-194,0r-31,30r0,59","w":343,"k":{"x":4,"\\":18,"X":5,"V":4,"3":2,"1":4,"\/":11,"A":4,"I":2,"T":4,"Y":4,"J":4,"Z":2,"f":4}},"7":{"d":"125,0r0,-81r143,-164r-257,0r0,-3r261,0r0,3r-143,164r0,81r-4,0","w":288,"k":{"x":25,"w":7,"v":14,"p":14,"\\":-18,"W":-7,"V":-7,"?":-4,"=":7,"<":7,"7":-7,"4":14,"2":2,"\/":36,"*":-7,"$":5,"A":36,"Y":-11,"a":18,"J":32,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"&":4,"@":4,":":7,";":7,"f":2,"g":20,"-":5,"c":20,"d":20,"e":20,"o":20,"q":20,"m":4,"n":4,"r":4,",":32,".":32,"\"":-7,"'":-7,"s":20,"u":4,"y":14,"z":11,"+":11,")":-5,"]":-5,"}":-5,"S":7,"%":-14}},"8":{"d":"79,0r-39,-40r0,-59r30,-31r-29,-29r0,-52r38,-37r206,0r38,37r0,52r-29,29r31,31r0,59r-40,40r-206,0xm81,-3r202,0r38,-38r0,-57r-30,-30r-218,0r-30,30r0,57xm74,-131r217,0r28,-29r0,-49r-36,-36r-202,0r-36,36r0,49","w":364,"k":{"V":4,"\\":13,"8":2,"1":2,"7":2,"X":5,"\/":7,"3":2,"x":5,"A":5,"I":2,"T":4,"Y":5,"a":2,"t":4,"J":5,"Z":2,"f":4,"g":2,"s":2,"z":5}},"9":{"d":"76,0r-40,-40r0,-29r4,0r0,28r37,38r173,0r49,-49r0,-86r-29,29r-198,0r-36,-36r0,-60r43,-43r173,0r50,50r0,148r-50,50r-176,0xm74,-112r194,0r31,-31r0,-54r-49,-48r-169,0r-41,41r0,57","w":343,"k":{"V":5,"W":4,"\\":14,"1":2,"7":2,"X":5,"\/":14,"x":5,"A":5,"I":2,"T":5,"Y":9,"J":4,"Z":4,",":4,".":4}},":":{"d":"43,0r0,-43r4,0r0,43r-4,0xm43,-112r0,-43r4,0r0,43r-4,0","w":90,"k":{"V":16,"W":9,"7":7,"X":4,"T":25,"Y":25,"t":4,"f":4}},";":{"d":"47,7v-8,6,-17,22,-24,20r20,-21r0,-49r4,0r0,50xm43,-112r0,-43r4,0r0,43r-4,0","w":90,"k":{"V":16,"W":9,"7":7,"X":4,"T":25,"Y":25,"t":4,"f":4}},"<":{"d":"168,-49r-155,-72r0,-5r155,-73r0,3r-153,72r153,72r0,3","w":186,"k":{"X":-4,"f":4}},"=":{"d":"11,-153r0,-3r163,0r0,3r-163,0xm11,-91r0,-4r163,0r0,4r-163,0","w":185,"k":{"w":-11,"v":-14,"X":14,"W":2,"V":5,"7":14,"5":-4,"4":-7,"1":4,"A":9,"I":9,"T":18,"Y":11,"t":-11,"J":14,"Z":4,"y":-14}},">":{"d":"174,-121r-156,72r0,-3r153,-72r-153,-72r0,-3r156,73r0,5","w":186,"k":{"x":4,"w":-11,"X":18,"W":7,"V":11,"7":32,"4":-7,"3":4,"1":7,"A":11,"I":11,"T":22,"Y":14,"t":-7,"J":7,"Z":4,"S":4}},"?":{"d":"142,-63r0,-26r36,-36r76,0r34,-34r0,-45r-41,-41r-180,0r-38,38r0,27r-4,0r0,-29r40,-39r183,0r44,43r0,47r-36,36r-76,0r-35,34r0,25r-3,0xm142,0r0,-36r3,0r0,36r-3,0","w":316},"@":{"d":"88,50r-50,-50r0,-171r50,-50r244,0r51,50r0,141r-31,30r-37,0r0,-42r-43,42r-149,0r-32,-32r0,-30r32,-32r192,0r0,-29r-38,-38r-139,0r-34,34v-1,5,3,15,-4,14r0,-15r36,-36r143,0r39,39r0,121r33,0r28,-28r0,-138r-49,-48r-240,0r-49,48r0,169r49,48r249,0r0,3r-251,0xm125,-3r145,0r45,-45r0,-43r-190,0r-30,30r0,28","w":420,"k":{"V":7,"W":5,"7":11,"X":7,"A":4,"T":7,"Y":11,"J":4,"Z":5}},"A":{"d":"14,0r157,-248r5,0r157,248r-4,0r-56,-87r-200,0r-55,87r-4,0xm174,-246r-98,155r195,0","w":347},"B":{"d":"54,0r0,-248r227,0r38,37r0,52r-29,29r30,31r0,59r-39,40r-227,0xm58,-3r221,0r38,-38r0,-57r-30,-30r-229,0r0,125xm58,-131r228,0r29,-29r0,-49r-36,-36r-221,0r0,114","w":360,"k":{"V":4,"\\":13,"8":2,"1":2,"7":2,"X":5,"\/":7,"3":2,"x":5,"A":5,"I":2,"T":4,"Y":5,"a":2,"t":4,"J":5,"Z":2,"f":4,"g":2,"s":2,"z":5}},"C":{"d":"92,0r-51,-50r0,-148r51,-50r174,0r40,39r0,29r-4,0r0,-27r-37,-38r-171,0r-49,48r0,145r49,49r172,0r38,-38r0,-28r4,0r0,29r-40,40r-176,0","w":342,"k":{"V":2,"\\":4,"<":2,"1":2,"X":4,"\/":4,"x":5,"A":4,"I":2,"T":2,"Y":2,"t":4,"J":4,"Z":4,"f":2,"-":4,"z":4,"+":4}},"D":{"d":"54,0r0,-248r212,0r51,50r0,148r-51,50r-212,0xm58,-3r207,0r48,-49r0,-145r-48,-48r-207,0r0,242","w":358,"k":{"V":5,"W":4,"\\":14,"1":2,"7":2,"X":5,"\/":14,"x":5,"A":5,"I":2,"T":5,"Y":9,"J":4,"Z":4,",":4,".":4}},"E":{"d":"54,0r0,-248r238,0r0,3r-234,0r0,120r223,0r0,3r-223,0r0,119r234,0r0,3r-238,0","w":327,"k":{"*":4,"$":4,"=":2,"4":9,"<":2,"?":4,"v":11,"w":11,"3":2,"x":7,">":2,"I":2,"a":13,"t":9,"J":4,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"Z":2,"&":4,"f":9,"g":13,"-":4,"c":13,"d":13,"e":13,"o":13,"q":13,"\"":-7,"'":-7,"s":13,"u":4,"y":11,"z":4,"+":4,"S":2}},"F":{"d":"54,0r0,-248r234,0r0,3r-230,0r0,123r219,0r0,4r-219,0r0,118r-4,0","w":315,"k":{"x":18,"w":4,"v":4,"p":11,"X":2,">":4,"<":2,"9":2,"8":2,"4":9,"3":2,"2":2,"1":2,"\/":29,"*":2,"$":4,"A":27,"I":4,"Y":2,"a":20,"t":7,"J":36,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"Z":4,"&":4,"@":4,":":5,";":5,"f":4,"g":14,"-":2,"c":14,"d":14,"e":14,"o":14,"q":14,"m":11,"n":11,"r":11,",":18,".":18,"\"":-7,"'":-7,"s":11,"u":9,"y":4,"z":13}},"G":{"d":"92,0r-51,-50r0,-148r51,-50r173,0r36,36r0,29r-3,0r0,-28r-34,-34r-170,0r-49,48r0,145r49,49r162,0r48,-49r0,-64r-129,0r0,-3r133,0r0,69r-51,50r-165,0","w":345,"k":{"V":4,"W":2,"\\":11,"1":2,"X":5,"\/":11,"x":5,"A":2,"I":2,"T":4,"Y":5,"t":2,"J":2,"Z":2,"f":2,",":2,".":2,"z":2}},"H":{"d":"54,0r0,-248r4,0r0,123r255,0r0,-123r4,0r0,248r-4,0r0,-122r-255,0r0,122r-4,0","w":370},"I":{"d":"32,0r0,-3r81,0r0,-242r-81,0r0,-3r166,0r0,3r-81,0r0,242r81,0r0,3r-166,0","w":230,"k":{"*":5,"$":2,"8":2,"=":9,"4":5,"<":11,"9":2,"?":4,"v":11,"w":11,"3":2,"x":5,"T":2,"a":13,"t":18,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"&":4,"f":9,"g":11,"-":22,"c":11,"d":11,"e":11,"o":11,"q":11,"s":11,"u":9,"y":11,"z":2,"+":11,"S":2}},"J":{"d":"13,0r0,-3r139,0r49,-49r0,-196r3,0r0,198r-50,50r-141,0","w":247,"k":{"X":4,"\/":11,"x":9,"A":5,"J":5,",":4,".":4,"z":2}},"K":{"d":"320,0r-162,-142r-100,65r0,77r-4,0r0,-248r4,0r0,167r256,-167r6,0r-159,104r164,144r-5,0","w":350,"k":{"*":9,"$":14,"8":9,"=":16,"4":16,"<":16,"9":5,"1":2,"?":7,"7":7,"v":29,"w":25,"3":7,"x":7,">":2,"I":2,"T":7,"a":14,"t":22,"0":9,"6":9,"C":9,"G":9,"O":9,"Q":9,"&":7,":":4,";":4,"f":11,"g":22,"-":34,"c":18,"d":18,"e":18,"o":18,"q":18,"m":5,"n":5,"r":5,"\"":4,"'":4,"s":16,"u":18,"y":29,"i":4,"j":4,"+":22,"S":9,"U":5,"h":2,"k":2,"l":2}},"L":{"d":"54,0r0,-248r4,0r0,245r230,0r0,3r-234,0","w":316,"k":{"V":32,"W":14,"*":36,"\\":36,"$":5,"8":7,"=":20,"5":7,"4":14,"<":25,"9":7,"?":52,"7":38," ":11,"v":36,"w":29,"X":2,"3":7,"x":4,">":2,"T":50,"Y":49,"a":9,"t":13,"J":4,"0":7,"6":7,"C":7,"G":7,"O":7,"Q":7,"&":4,"f":11,"g":9,"-":18,"c":9,"d":9,"e":9,"o":9,"q":9,"\"":29,"'":29,"s":9,"u":9,"y":36,"+":22,"S":7,"U":7}},"M":{"d":"54,0r0,-248r5,0r178,245r178,-245r5,0r0,248r-4,0r0,-244r-177,244r-4,0r-177,-244r0,244r-4,0","w":473},"N":{"d":"54,0r0,-248r5,0r260,244r0,-244r3,0r0,248r-4,0r-260,-244r0,244r-4,0","w":376},"O":{"d":"92,0r-51,-50r0,-148r51,-50r180,0r50,50r0,148r-50,50r-180,0xm94,-3r176,0r49,-49r0,-145r-49,-48r-176,0r-49,48r0,145","w":363,"k":{"V":5,"W":4,"\\":14,"1":2,"7":2,"X":5,"\/":14,"x":5,"A":5,"I":2,"T":5,"Y":9,"J":4,"Z":4,",":4,".":4}},"P":{"d":"54,0r0,-248r212,0r51,50r0,51r-51,51r-208,0r0,96r-4,0xm58,-99r207,0r48,-49r0,-49r-48,-48r-207,0r0,146","w":342,"k":{"x":4,"p":4,"\\":4,"X":14,"V":2,">":-7,"=":-14,"<":-18,"7":-4,"4":14,"2":2,"1":5,"\/":22,"*":-14,"A":25,"I":4,"T":4,"Y":5,"a":7,"J":29,"Z":4,"g":5,"-":-11,"c":9,"d":9,"e":9,"o":9,"q":9,"m":4,"n":4,"r":4,",":22,".":22,"\"":-18,"'":-18,"s":9,"u":4,"z":4,"i":2,"j":2,"+":-13}},"Q":{"d":"312,68r-44,-45r0,-23r-176,0r-51,-50r0,-148r51,-50r180,0r50,50r0,148r-50,50r0,22r43,43xm94,-3r176,0r49,-49r0,-145r-49,-48r-176,0r-49,48r0,145","w":363,"k":{"V":5,"W":4,"\\":14,"1":2,"7":2,"X":5,"\/":14,"x":5,"A":5,"I":2,"T":5,"Y":9,"J":4,"Z":4,",":4,".":4}},"R":{"d":"54,0r0,-248r220,0r43,43r0,48r-43,43r50,114r-4,0r-50,-114r-212,0r0,114r-4,0xm58,-117r214,0r41,-41r0,-46r-41,-41r-214,0r0,128","w":360,"k":{"V":2,"W":2,"\\":7,"$":2,"8":2,"=":2,"4":5,"<":4,"9":2,"1":4,"7":4,"3":-4,"x":2,">":2,"T":4,"Y":5,"a":5,"t":4,"J":2,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"&":2,"@":2,"f":2,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"s":5,"u":5,"i":4,"j":4,"+":4}},"S":{"d":"77,0r-39,-40r0,-25r3,0r0,24r38,38r182,0r41,-42r0,-46r-34,-35r-192,0r-36,-36r0,-43r43,-43r182,0r39,39r0,26r-3,0r0,-24r-38,-38r-178,0r-42,41r0,41r34,34r193,0r36,36r0,50r-43,43r-186,0","w":343,"k":{"V":2,"W":2,"\\":11,"<":4,"1":4,"7":4,"X":5,"\/":11,"x":4,"A":5,"I":2,"T":4,"Y":9,"J":2,"Z":2,"f":2,"-":2,"+":2}},"T":{"d":"158,0r0,-245r-140,0r0,-3r284,0r0,3r-140,0r0,245r-4,0","w":320,"k":{"*":4,"\\":-7,"$":4,"8":4,"=":18,"4":13,"<":22,"9":4," ":11,"v":32,"w":29,"X":7,"\/":40,"3":4,"x":32,"p":36,"2":4,"A":40,"I":2,"Y":4,"a":58,"t":25,"J":43,"0":5,"6":5,"C":5,"G":5,"O":5,"Q":5,"Z":4,"&":4,"@":7,":":25,";":25,"f":22,"g":56,"-":11,"c":56,"d":56,"e":56,"o":56,"q":56,"m":36,"n":36,"r":36,",":32,".":32,"s":61,"u":36,"y":32,"z":40,"i":11,"j":11,"+":22,"S":4}},"U":{"d":"97,0r-50,-50r0,-198r3,0r0,196r49,49r158,0r49,-49r0,-196r4,0r0,198r-51,50r-162,0","w":356,"k":{"X":4,"\/":11,"x":9,"A":5,"J":5,",":4,".":4,"z":2}},"V":{"d":"157,0r-144,-248r4,0r143,245r143,-245r4,0r-145,248r-5,0","w":319,"k":{"x":18,"w":11,"v":11,"p":22,"\\":-14,"X":7,"=":5,"<":11,"9":5,"8":4,"7":-7,"4":13,"3":2,"2":2,"\/":22,"$":16," ":11,"A":31,"a":32,"t":11,"J":25,"0":5,"6":5,"C":5,"G":5,"O":5,"Q":5,"Z":2,"&":4,"@":7,":":16,";":16,"f":13,"g":32,"-":13,"c":32,"d":32,"e":32,"o":32,"q":32,"m":22,"n":22,"r":22,",":29,".":29,"s":29,"u":22,"y":11,"z":22,"i":4,"j":4,"+":11,"S":2}},"W":{"d":"123,0r-105,-248r4,0r104,245r105,-245r5,0r105,245r103,-245r5,0r-106,248r-5,0r-105,-245r-104,245r-6,0","w":466,"k":{"x":9,"w":7,"v":7,"p":14,"X":4,"=":2,"<":7,"7":-7,"4":9,"2":2,"\/":14,"*":-2,"$":4,"A":20,"a":23,"t":2,"J":18,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"@":5,":":9,";":9,"f":2,"g":23,"-":7,"c":23,"d":23,"e":23,"o":23,"q":23,"m":14,"n":14,"r":14,",":20,".":20,"s":20,"u":14,"y":7,"z":9,"i":7,"j":7,"+":4,"S":2}},"X":{"d":"18,0r141,-125r-139,-123r5,0r137,121r137,-121r5,0r-139,123r141,125r-5,0r-139,-122r-139,122r-5,0","w":324,"k":{"w":11,"v":14,"p":4,"X":7,"W":4,"V":7,"?":11,">":-4,"=":14,"<":18,"9":4,"8":5,"4":14,"3":4,"*":5,"$":4,"T":7,"Y":4,"a":11,"t":14,"0":5,"6":5,"C":5,"G":5,"O":5,"Q":5,"Z":4,"&":5,":":4,";":4,"f":11,"g":13,"-":27,"c":13,"d":13,"e":13,"o":13,"q":13,"m":4,"n":4,"r":4,"\"":-4,"'":-4,"s":13,"u":14,"y":14,"+":20,"S":5,"U":4}},"Y":{"d":"163,0r0,-82r-152,-166r4,0r150,163r150,-163r4,0r-152,166r0,82r-4,0","w":329,"k":{"*":2,"$":11,"8":5,"=":11,"4":16,"<":14,"9":4,"7":-11," ":11,"v":22,"w":25,"X":4,"\/":40,"3":2,"x":36,"p":32,"2":4,"A":43,"T":4,"a":49,"t":16,"J":45,"0":9,"6":9,"C":9,"G":9,"O":9,"Q":9,"Z":4,"&":4,"@":11,":":25,";":25,"f":20,"g":45,"-":22,"c":45,"d":45,"e":45,"o":45,"q":45,"m":32,"n":32,"r":32,",":32,".":32,"s":45,"u":32,"y":22,"z":32,"i":7,"j":7,"+":22,"S":9}},"Z":{"d":"25,0r0,-3r248,-242r-242,0r0,-3r246,0r0,3r-248,242r254,0r0,3r-258,0","w":307,"k":{"V":2,"*":4,"$":4,"8":2,"=":4,"4":4,"<":4,"9":2,"v":14,"w":14,"X":4,"x":4,"T":4,"Y":4,"a":9,"t":11,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"Z":2,"&":2,"f":9,"g":7,"-":22,"c":11,"d":11,"e":11,"o":11,"q":11,"s":7,"u":4,"y":14,"+":7,"S":2}},"[":{"d":"54,29r0,-306r75,0r0,3r-71,0r0,300r71,0r0,3r-75,0","k":{"4":7,"v":7,"w":4,"3":2,"A":4,"a":5,"t":7,"f":9,"g":7,"c":5,"d":5,"e":5,"o":5,"q":5,"s":5,"y":7,"j":-29}},"\\":{"d":"8,-270r148,292r-4,0r-148,-292r4,0","w":159,"k":{"w":9,"v":18,"W":14,"V":22,"9":11,"8":7,"7":38,"5":7,"4":7,"3":4,"T":40,"Y":40,"t":18,"0":14,"6":14,"C":14,"G":14,"O":14,"Q":14,"f":11,"g":4,"c":11,"d":11,"e":11,"o":11,"q":11,"s":4,"u":11,"y":18,"j":-29,"S":11,"U":11}},"]":{"d":"107,-277r0,306r-75,0r0,-3r72,0r0,-300r-72,0r0,-3r75,0"},"^":{"d":"14,-114r73,-134r5,0r73,134r-4,0r-71,-132r-72,132r-4,0","w":179},"_":{"d":"-4,21r0,-3r279,0r0,3r-279,0","w":271},"`":{"d":"90,-194v-20,-16,-38,-34,-54,-54v21,14,35,35,54,51r0,3","w":126},"a":{"d":"62,0r-31,-32r0,-30r31,-32r192,0r0,-29r-38,-38r-139,0r-34,34v-1,5,3,15,-4,14r0,-15r36,-36r143,0r39,39r0,125r-3,0r0,-42r-43,42r-149,0xm64,-3r146,0r44,-45r0,-43r-190,0r-30,30r0,28","w":298,"k":{"*":7,"\\":50,"?":18,"7":20,"v":5,"w":2,"t":2,"f":2,"\"":4,"'":4,"y":5}},"b":{"d":"45,0r0,-248r4,0r0,126r42,-42r145,0r39,39r0,85r-39,40r-145,0r-42,-42r0,42r-4,0xm93,-3r141,0r38,-38r0,-82r-38,-38r-141,0r-44,44r0,69","w":313,"k":{"*":7,"\\":50,"1":9,"?":18,"7":23,"v":4,"w":2,"\/":11,"3":4,"x":5,"t":4,"f":4,"y":4,"z":2,")":5,"]":5,"}":5}},"c":{"d":"77,0r-39,-40r0,-85r39,-39r152,0r39,39r0,17v-6,0,-2,-10,-3,-15r-38,-38r-148,0r-38,38r0,82r38,38r148,0r38,-38r0,-15v6,0,2,11,3,16r-39,40r-152,0","w":297,"k":{"*":4,"\\":43,"=":-7,"<":-11,"1":2,"?":11,"7":13,"v":2,"\/":4,"x":2,"t":2,"f":2,"-":-7,",":-7,".":-7,"y":2,"z":-2,"+":-7}},"d":{"d":"77,0r-39,-40r0,-85r39,-39r145,0r43,42r0,-126r3,0r0,248r-3,0r0,-42r-43,42r-145,0xm79,-3r141,0r45,-45r0,-69r-45,-44r-141,0r-38,38r0,82","w":313},"e":{"d":"77,0r-39,-40r0,-85r39,-39r152,0r39,39r0,41r-227,0r0,43r38,38r151,0r35,-34r0,-14v13,19,-23,36,-33,51r-155,0xm41,-87r224,0r0,-36r-38,-38r-148,0r-38,38r0,36","w":304,"k":{"*":7,"\\":50,"1":5,"?":18,"7":23,"v":2,"w":2,"\/":4,"x":5,"t":2,"f":2,"y":2,"z":2,")":4,"]":4,"}":4}},"f":{"d":"67,0r0,-161r-47,0r0,-3r47,0r0,-45r39,-39r86,0r0,3r-84,0r-38,38r0,43r115,0r0,3r-115,0r0,161r-3,0","w":208,"k":{"x":4,"p":7,"\\":-11,"?":-14,">":-4,"<":-4,"7":-13,"4":5,"\/":25,"*":-7,"a":22,"t":4,":":7,";":7,"f":5,"g":20,"-":-4,"c":20,"d":20,"e":20,"o":20,"q":20,"m":7,"n":7,"r":7,",":27,".":27,"\"":-7,"'":-7,"s":18,"u":7,"z":5,"+":4,")":-14,"]":-14,"}":-14}},"g":{"d":"76,61r-35,-34r0,-17v8,-1,3,11,4,16r32,32r153,0r35,-34r0,-74r-43,43r-145,0r-39,-40r0,-78r39,-39r145,0r43,42r0,-42r3,0r0,189r-36,36r-156,0xm79,-10r141,0r45,-45r0,-62r-45,-44r-141,0r-38,38r0,75","w":313,"k":{"\\":40,"7":14,"g":2,"j":-11}},"h":{"d":"45,0r0,-248r4,0r0,134r49,-50r123,0r40,39r0,125r-4,0r0,-123r-37,-38r-120,0r-51,52r0,109r-4,0","w":302,"k":{"*":7,"\\":50,"?":18,"7":20,"v":5,"w":2,"t":2,"f":2,"\"":4,"'":4,"y":5}},"i":{"d":"56,0r-4,0r0,-164r4,0r0,164xm52,-202r0,-32r4,0r0,32r-4,0","w":108},"j":{"d":"-36,61r0,-3r47,0r41,-41r0,-181r4,0r0,182r-43,43r-49,0xm52,-202r0,-32r4,0r0,32r-4,0","w":108,"k":{"j":-11}},"k":{"d":"272,0r-123,-102r-100,55r0,47r-4,0r0,-248r4,0r0,197r207,-113r8,0r-111,60r125,104r-6,0","w":299,"k":{"*":5,"\\":32,"4":16,"<":5,"9":2,"?":7,"7":36,"v":2,"w":2,"a":9,"t":4,"&":4,"f":4,"g":9,"-":7,"c":9,"d":9,"e":9,"o":9,"q":9,"s":7,"u":7,"y":2,"+":13}},"l":{"d":"56,0r-4,0r0,-248r4,0r0,248","w":108},"m":{"d":"45,0r0,-164r4,0r0,50r49,-50r109,0r34,34r34,-34r123,0r39,39r0,125r-3,0r0,-123r-38,-38r-119,0r-34,34r0,127r-4,0r0,-127r-34,-34r-105,0r-51,52r0,109r-4,0","w":478,"k":{"*":7,"\\":50,"?":18,"7":20,"v":5,"w":2,"t":2,"f":2,"\"":4,"'":4,"y":5}},"n":{"d":"45,0r0,-164r4,0r0,50r49,-50r123,0r40,39r0,125r-4,0r0,-123r-37,-38r-120,0r-51,52r0,109r-4,0","w":302,"k":{"*":7,"\\":50,"?":18,"7":20,"v":5,"w":2,"t":2,"f":2,"\"":4,"'":4,"y":5}},"o":{"d":"77,0r-39,-40r0,-85r39,-39r152,0r39,39r0,85r-39,40r-152,0xm79,-3r148,0r38,-38r0,-82r-38,-38r-148,0r-38,38r0,82","w":306,"k":{"*":7,"\\":50,"1":9,"?":18,"7":23,"v":4,"w":2,"\/":11,"3":4,"x":5,"t":4,"f":4,"y":4,"z":2,")":5,"]":5,"}":5}},"p":{"d":"45,61r0,-225r4,0r0,42r42,-42r145,0r39,39r0,85r-39,40r-145,0r-42,-42r0,103r-4,0xm93,-3r141,0r38,-38r0,-82r-38,-38r-141,0r-44,44r0,69","w":313,"k":{"*":7,"\\":50,"1":9,"?":18,"7":23,"v":4,"w":2,"\/":11,"3":4,"x":5,"t":4,"f":4,"y":4,"z":2,")":5,"]":5,"}":5}},"q":{"d":"265,61r0,-103r-43,42r-145,0r-39,-40r0,-85r39,-39r145,0r43,42r0,-42r3,0r0,225r-3,0xm79,-3r141,0r45,-45r0,-69r-45,-44r-141,0r-38,38r0,82","w":313,"k":{"\\":40,"7":14,"g":2,"j":-11}},"r":{"d":"45,0r0,-164r4,0r0,50r49,-50r82,0r0,3r-80,0r-51,52r0,109r-4,0","w":206,"k":{"\\":22,"$":11,"8":4,"4":7,"1":13,"7":25,"v":2,"\/":25,"3":4,"x":4,">":11,"p":2,"2":4,"a":13,"t":4,"&":7,":":4,";":4,"f":2,"g":9,"c":9,"d":9,"e":9,"o":9,"q":9,"m":2,"n":2,"r":2,",":18,".":18,"s":13,"u":4,"y":2,"z":4,"+":7,")":4,"]":4,"}":4}},"s":{"d":"67,0r-33,-32r0,-19v8,-1,2,12,4,17r30,31r159,0r34,-34r0,-23r-23,-23r-176,0v-10,-13,-29,-17,-25,-45r36,-36r155,0v11,16,35,19,33,47v-7,2,-3,-8,-4,-13r-31,-31r-151,0r-35,34v-3,25,15,28,24,41r175,0r26,25r0,25r-36,36r-162,0","w":298,"k":{"*":5,"\\":43,"1":7,"?":18,"7":23,"v":5,"w":2,"x":4,"t":2,"f":2,"-":-4,"s":4,"y":2,"z":2,")":5,"]":5,"}":5}},"t":{"d":"106,0r-39,-40r0,-121r-51,0r0,-3r51,0r0,-61r3,0r0,61r138,0r0,3r-138,0r0,120r38,38r100,0r0,3r-102,0","w":237,"k":{"*":4,"\\":18,"$":2,"4":7,"7":14,"v":5,"w":4,"a":5,"t":9,":":2,";":2,"f":7,"g":7,"c":7,"d":7,"e":7,"o":7,"q":7,"\"":4,"'":4,"s":7,"u":2,"y":5,"+":4,")":-4,"]":-4,"}":-4}},"u":{"d":"81,0r-40,-40r0,-124r4,0r0,123r38,38r119,0r52,-52r0,-109r3,0r0,164r-3,0r0,-50r-50,50r-123,0","w":302,"k":{"\\":40,"7":14}},"v":{"d":"131,0r-127,-164r4,0r125,160r125,-160r5,0r-128,164r-4,0","w":266,"k":{"w":-4,"v":-4,"\\":7,"?":-22,"=":-14,"7":18,"4":4,"2":7,"1":4,"\/":18,"*":-7,"a":5,"t":-4,"g":4,"-":-7,"c":4,"d":4,"e":4,"o":4,"q":4,",":18,".":18,"\"":-18,"'":-18,"s":5,"y":-4,"+":-11,")":7,"]":7,"}":7}},"w":{"d":"97,0r-90,-164r5,0r88,161r95,-161r5,0r96,161r88,-161r4,0r-90,164r-5,0r-95,-162r-96,162r-5,0","w":395,"k":{"v":-4,"\\":7,"?":-11,"=":-11,"<":-11,"7":14,"4":2,"1":9,"\/":9,"*":-9,"a":2,"t":-4,"g":2,"-":-11,"c":2,"d":2,"e":2,"o":2,"q":2,",":14,".":14,"\"":-14,"'":-14,"s":2,"y":-4,"+":-11,")":4,"]":4,"}":4}},"x":{"d":"253,0r-115,-81r-116,81r-6,0r119,-83r-115,-81r5,0r112,79r112,-79r6,0r-115,80r118,84r-5,0","w":274,"k":{"\\":36,"?":-4,"<":4,"9":2,"7":16,"4":4,"a":2,"0":5,"6":5,"C":5,"G":5,"O":5,"Q":5,"g":5,"-":4,"c":5,"d":5,"e":5,"o":5,"q":5,"\"":-11,"'":-11,"s":4,"+":4}},"y":{"d":"26,61r0,-3r54,0v19,-17,35,-37,50,-58r-125,-164r5,0r123,161r124,-161r5,0r-155,200r-25,25r-56,0","w":267,"k":{"*":-7,"\\":7,"=":-14,"4":4,"1":7,"?":-22,"7":18,"v":-4,"w":-4,"\/":18,"2":7,"a":5,"t":-4,"g":4,"-":-7,"c":4,"d":4,"e":4,"o":4,"q":4,",":18,".":18,"\"":-18,"'":-18,"s":5,"+":-11,")":7,"]":7,"}":7}},"z":{"d":"20,0r0,-3r205,-158r-202,0r0,-3r207,0r0,3r-205,158r209,0r0,3r-214,0","w":253,"k":{"\\":25,"4":7,"7":11,"a":2,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\"":-7,"'":-7,"s":2}},"{":{"d":"86,29r-32,-33r0,-106r-17,-16r-33,0r0,-4r33,0r17,-17r0,-97r32,-33r43,0r0,3r-41,0r-30,31r0,98r-17,17r17,17r0,106r30,31r41,0r0,3r-43,0","k":{"4":7,"v":7,"w":4,"3":2,"A":4,"a":5,"t":7,"f":9,"g":7,"c":5,"d":5,"e":5,"o":5,"q":5,"s":5,"y":7,"j":-29}},"|":{"d":"65,22r0,-292r3,0r0,292r-3,0","w":133},"}":{"d":"107,-4r-32,33r-43,0r0,-3r41,0r31,-31r0,-106r17,-17r-17,-17r0,-98r-31,-31r-41,0r0,-3r43,0r32,33r0,97r17,17r34,0r0,4r-34,0r-17,16r0,106"},"~":{"d":"22,-190r0,-30r28,-28r26,0r55,55r21,0r27,-27r0,-28r4,0r0,29r-29,29r-25,0r-55,-55r-22,0r-27,27r0,28r-3,0","w":204},"\u00a0":{"w":154,"k":{"V":11,"A":11,"T":11,"Y":11,"J":18}}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2006 House Industries/Brand Design Co., Inc. All Rights Reserved.
 * 
 * Trademark:
 * United is a trademark of House Industries/Brand Design Co., Inc.
 * 
 * Full name:
 * UnitedSansReg-Bold
 * 
 * Description:
 * Part of the United family from House Industries.
 * 
 * Manufacturer:
 * House Industries
 * 
 * Designer:
 * Tal Leming
 * 
 * Vendor URL:
 * http://www.houseindustries.com
 * 
 * License information:
 * http://www.houseindustries.com/license
 */
Cufon.registerFont({"w":230,"face":{"font-family":"UnitedSansRegBold","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"274","descent":"-86","bbox":"-18 -277 306 63","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":88,"k":{"V":7,"T":7,"Y":7,"A":5,"J":9}},"!":{"d":"30,-68r0,-180r42,0r0,180r-42,0xm30,0r0,-45r42,0r0,45r-42,0","w":101},"\"":{"d":"77,-150r0,-98r33,0r0,98r-33,0xm17,-150r0,-98r33,0r0,98r-33,0","w":127,"k":{"V":-4,"W":-5,"4":2,"7":-4,"v":-4,"w":-2,"x":-2,"T":-4,"a":2,"A":14,"J":18,"Z":2,"f":-2,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-4,"y":-2,"z":-2}},"#":{"d":"39,-58r0,-41r-29,0r0,-28r29,0r0,-53r-29,0r0,-28r29,0r0,-40r33,0r0,40r46,0r0,-40r32,0r0,40r30,0r0,28r-30,0r0,53r30,0r0,28r-30,0r0,41r-32,0r0,-41r-46,0r0,41r-33,0xm72,-127r46,0r0,-53r-46,0r0,53","w":190},"$":{"d":"51,-7r-32,-32r0,-36r42,0r0,23r13,13r67,0r14,-14v-1,-21,5,-48,-10,-55r-97,0r-28,-29r0,-71r33,-34r35,0r0,-35r40,0r0,35r37,0r32,32r0,36r-43,0v2,-18,-3,-28,-12,-35r-66,0r-14,14v1,20,-5,46,10,52r97,0r29,29r0,74r-33,33r-37,0r0,36r-40,0r0,-36r-37,0","w":216,"k":{"w":-2,"v":-2,"X":4,"W":2,"V":2,"7":2,"1":2,"T":2,"Y":5,"A":2,"J":2,"Z":2}},"%":{"d":"35,-128r-24,-24r0,-73r24,-23r62,0r24,23r0,73r-24,24r-62,0xm42,-160v6,13,42,14,48,0v-2,-22,7,-56,-9,-65v-16,0,-34,-2,-39,9r0,56xm178,0r-23,-24r0,-72r23,-24r62,0r24,24r0,72r-24,24r-62,0xm185,-32v6,12,42,14,48,0v-2,-22,7,-56,-9,-65v-16,0,-34,-2,-39,9r0,56xm53,0r139,-248r29,0r-139,248r-29,0","w":275},"&":{"d":"53,0r-32,-32r0,-68r27,-27r-26,-27r0,-63r32,-31r115,0r32,32r0,33r-43,0v2,-18,-4,-28,-13,-34r-68,0r-13,14r0,44r16,16r145,0r0,31r-25,0r0,80r-32,32r-115,0xm77,-32r67,0r14,-13r0,-66r-77,0r-17,16r0,50","w":229,"k":{"x":2,"w":-5,"v":-4,"X":5,"V":4,"9":-2,"7":4,"4":-7,"3":4,"1":4,"T":4,"Y":9,"A":4,"J":5,"0":-2,"6":-2,"C":-2,"G":-2,"O":-2,"Q":-2,"Z":2,"f":-4,"g":-2,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"s":-4,"t":-5,"y":-4,"z":-2,"I":4}},"'":{"d":"17,-150r0,-98r33,0r0,98r-33,0","w":67,"k":{"V":-4,"W":-5,"4":2,"7":-4,"v":-4,"w":-2,"x":-2,"T":-4,"a":2,"A":14,"J":18,"Z":2,"f":-2,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-4,"y":-2,"z":-2}},"(":{"d":"61,24r-35,-36r0,-224r35,-36r45,0r0,33r-21,0r-17,17r0,196r17,17r21,0r0,33r-45,0","w":119,"k":{"8":2,"4":5,"v":4,"w":2,"3":2,"T":-2,"a":4,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"f":7,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":4,"t":5,"y":4,"S":2,"j":-18}},")":{"d":"94,-12r-35,36r-45,0r0,-33r21,0r17,-17r0,-196r-17,-17r-21,0r0,-33r45,0r35,36r0,224","w":119},"*":{"d":"42,-137r-24,-18r30,-31r-42,-9r10,-29r38,19r-6,-43r31,0r-6,43r38,-19r10,29r-43,8r30,32r-24,18r-21,-38","w":126,"k":{"x":2,"w":-7,"v":-2,"X":7,"W":-4,"7":-4,"4":7,"2":2,"1":2,"T":-2,"Y":2,"a":9,"A":18,"J":27,"Z":5,"f":2,"g":11,"c":11,"d":11,"e":11,"o":11,"q":11,"s":9,"t":-4,"y":-2,"I":2}},"+":{"d":"5,-108r0,-32r50,0r0,-53r34,0r0,53r50,0r0,32r-50,0r0,54r-34,0r0,-54r-50,0","w":144,"k":{"V":4,"5":-4,"4":-7,"7":11,"v":-5,"w":-5,"X":11,"1":11,"x":4,"3":5,"T":14,"Y":14,"A":5,"J":11,"Z":5,"f":-2,"t":-5,"y":-5,"I":7,"S":-2}},",":{"d":"17,40r0,-19v7,0,17,2,19,-4r0,-17r-19,0r0,-48r43,0r0,71r-17,17r-26,0","w":77,"k":{"j":-13,"V":16,"W":9,"4":5,"7":11,"v":14,"w":9,"T":23,"Y":29,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"f":13,"\"":20,"'":20,"t":14,"y":14,"U":2}},"-":{"d":"5,-107r0,-35r98,0r0,35r-98,0","w":107,"k":{"V":5,"W":2,"4":-7,"7":11,"v":-4,"w":-5,"X":18,"1":11,"x":5,"3":5,"T":11,"Y":16,"A":9,"J":20,"Z":5,"f":-2,"s":-2,"t":-5,"y":-2,"z":2,"I":13,"S":-2}},".":{"d":"17,0r0,-48r43,0r0,48r-43,0","w":77,"k":{"V":16,"W":9,"4":5,"7":11,"v":14,"w":9,"T":23,"Y":29,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"f":13,"\"":20,"'":20,"t":14,"y":14,"U":2}},"\/":{"d":"0,24r86,-296r37,0r-85,296r-38,0","w":123,"k":{"x":13,"w":4,"v":4,"p":18,"W":-5,"V":-9,"9":5,"8":7,"7":-7,"4":13,"3":4,"2":9,"1":2,"\/":27,"T":-5,"Y":-5,"a":29,"A":20,"J":23,"0":7,"6":7,"C":7,"G":7,"O":7,"Q":7,"f":7,"g":23,"c":23,"d":23,"e":23,"o":23,"q":23,"m":18,"n":18,"r":18,"s":22,"t":5,"u":18,"y":4,"z":14,"S":5}},"0":{"d":"59,0r-36,-36r0,-177r36,-35r113,0r36,35r0,177r-36,36r-113,0xm82,-33r67,0r16,-17r0,-149r-16,-17r-67,0r-16,17r0,149","k":{"V":2,"W":2,"\\":7,"\/":7,"X":4,"1":2,"x":4,"T":2,"Y":5,"A":2,"J":2,"Z":2,",":2,".":2,")":2,"]":2,"}":2}},"1":{"d":"18,0r0,-32r49,0r0,-185r-49,0r0,-31r92,0r0,216r48,0r0,32r-140,0","w":168,"k":{"w":4,"v":9,"\\":16,"W":4,"V":9,"?":13,"=":2,"<":7,"7":9,"4":5,"1":2,"*":22,"$":2,"#":7,"T":14,"Y":20,"f":5,"+":11,"\"":20,"'":20,"t":7,"y":7,"-":9,"%":20,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"M":2,"N":2,"P":2,"R":2}},"2":{"d":"19,0r0,-107r29,-28r93,0r11,-11r0,-57r-13,-13r-64,0r-13,12r0,25r-42,0r0,-37r32,-32r109,0r33,33r0,85r-29,28r-93,0v-16,10,-8,44,-10,68r132,0r0,34r-175,0","w":210,"k":{"w":-2,"v":-2,"\\":5,"4":2,"T":2,"Y":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\"":-2,"'":-2,"y":-4,"%":-2}},"3":{"d":"50,0r-33,-33r0,-41r42,0r0,28r14,14r71,0r14,-13r0,-50r-17,-16r-86,0r0,-33r86,0r16,-16r0,-43r-13,-13r-71,0r-14,14r0,27r-42,0r0,-41r33,-32r118,0r32,31r0,63r-27,26r27,28r0,68r-32,32r-118,0","w":221,"k":{"V":2,"\\":7,"\/":5,"v":-2,"X":4,"1":2,"x":2,"Y":4,"A":2,"J":2,"f":2,"t":2,"y":-2,"z":2,"I":2,")":2,"]":2,"}":2}},"4":{"d":"141,0r0,-66r-132,0r0,-27r47,-155r39,0r-41,148r87,0r0,-148r42,0r0,148r24,0r0,34r-24,0r0,66r-42,0","w":217,"k":{"x":2,"v":2,"\\":5,"W":2,"V":2,"?":4,"=":-4,"<":-5,"7":2,"4":-2,"1":2,"*":4,"T":2,"Y":5,",":-4,".":-4,"+":-5,"\"":2,"'":2,"y":2,"z":2,"-":-5,"%":2}},"5":{"d":"53,0r-32,-32r0,-40r42,0r0,27r13,13r65,0r14,-14r0,-73v-11,-17,-49,-8,-75,-10r-19,18r-40,0r0,-137r173,0r0,33r-131,0r0,71r18,-18r87,0r29,30r0,99r-33,33r-111,0","w":214,"k":{"x":2,"w":2,"v":2,"?":2,"7":2,"1":2,"\/":4,"*":4,"T":2,"Y":2,"A":2,"f":2,"+":-2,"\"":2,"'":2,"y":2,"z":2,"%":2}},"6":{"d":"58,0r-35,-35r0,-179r35,-34r117,0r32,32r0,37r-42,0r0,-23r-14,-14r-69,0r-16,17r0,64r17,-18r93,0r31,31r0,87r-34,35r-115,0xm81,-32r68,0r16,-16r0,-60r-13,-13r-71,0r-15,16r0,57","w":228,"k":{"\\":7,"X":4,"V":2,"1":2,"\/":5,"Y":4,"A":2,"J":2,"f":2,")":2,"]":2,"}":2}},"7":{"d":"62,0r0,-90r65,-123r-122,0r0,-35r172,0r0,27r-73,135r0,86r-42,0","w":183,"k":{"x":5,"w":2,"v":4,"p":4,"\\":-13,"W":-5,"V":-5,"?":-5,"=":4,"<":7,"7":-4,"4":7,"2":2,"\/":18,"*":-5,"$":2,"T":-2,"Y":-5,"a":7,"A":16,"J":16,":":7,";":7,"f":2,"g":11,"c":11,"d":11,"e":11,"o":11,"q":11,"m":4,"n":4,"r":4,",":22,".":22,"+":5,"\"":-5,"'":-5,"s":9,"t":-2,"u":2,"y":4,"z":5,"-":4,")":-2,"]":-2,"}":-2,"S":2,"@":2,"%":-7}},"8":{"d":"53,0r-32,-32r0,-69r27,-27r-26,-27r0,-62r32,-31r123,0r32,31r0,62r-27,27r27,27r0,69r-32,32r-124,0xm77,-32r76,0r14,-13r0,-51r-17,-17r-69,0r-17,17r0,51xm80,-144r70,0r16,-16r0,-43r-13,-14r-75,0r-14,14r0,43","k":{"V":2,"\\":7,"\/":5,"v":-2,"X":4,"1":2,"x":2,"Y":4,"A":2,"J":2,"f":2,"t":2,"y":-2,"z":2,"I":2,")":2,"]":2,"}":2}},"9":{"d":"54,0r-32,-32r0,-40r42,0r0,26r13,14r69,0r17,-17r0,-68r-18,18r-92,0r-32,-31r0,-84r35,-34r115,0r34,34r0,179r-34,35r-117,0xm76,-131r71,0r16,-16r0,-53r-16,-16r-68,0r-15,16v1,26,-6,60,12,69","w":228,"k":{"V":2,"W":2,"\\":7,"\/":7,"X":4,"1":2,"x":4,"T":2,"Y":5,"A":2,"J":2,"Z":2,",":2,".":2,")":2,"]":2,"}":2}},":":{"d":"19,0r0,-48r44,0r0,48r-44,0xm19,-108r0,-48r44,0r0,48r-44,0","w":82,"k":{"V":9,"W":4,"7":7,"v":2,"X":2,"T":13,"Y":20,"y":2}},";":{"d":"19,40r0,-19v8,0,18,2,20,-4r0,-17r-20,0r0,-48r44,0r0,71r-17,17r-27,0xm19,-108r0,-48r44,0r0,48r-44,0","w":81,"k":{"j":-13,"V":9,"W":4,"7":7,"v":2,"X":2,"T":13,"Y":20,"y":2}},"<":{"d":"140,-46r-133,-58r0,-40r133,-58r0,36r-99,42r99,42r0,36","w":154,"k":{"v":-2,"X":2,"Y":4,"J":4,"Z":2,"f":2,"y":-2,"S":-2}},"=":{"d":"10,-140r0,-32r120,0r0,32r-120,0xm10,-75r0,-32r120,0r0,32r-120,0","w":140,"k":{"x":2,"w":-5,"v":-5,"X":9,"V":2,"7":4,"4":-4,"3":2,"1":4,"T":9,"Y":11,"A":4,"J":5,"Z":4,"t":-4,"y":-5,"I":7}},">":{"d":"148,-104r-134,58r0,-36r100,-42r-100,-42r0,-36r134,58r0,40","w":154,"k":{"x":2,"w":-5,"v":-2,"X":11,"W":2,"V":4,"7":11,"4":-7,"3":5,"1":9,"T":13,"Y":13,"a":2,"A":5,"J":13,"Z":7,"t":-2,"y":-4,"I":7,"S":-2}},"?":{"d":"67,-68r0,-49r26,-26v19,-1,46,6,52,-9r0,-50r-14,-14r-66,0r-13,13r0,26r-42,0r0,-39r31,-32r113,0r34,33r0,79r-27,27v-19,1,-46,-5,-52,9r0,32r-42,0xm67,0r0,-45r42,0r0,45r-42,0","w":200,"k":{"\"":-2,"'":-2}},"@":{"d":"67,52r-45,-45r0,-193r45,-46r194,0r45,46r0,156r-30,30r-66,0r-2,-27r-27,27r-72,0r-28,-29r0,-48r28,-29r92,0r0,-33r-13,-12v-25,3,-68,-13,-61,25r-41,0r0,-24r28,-29r95,0r32,32r0,120v16,2,22,-5,28,-12r0,-137r-27,-27r-156,0r-27,27r0,172r27,27r163,0r0,29r-182,0xm121,-38v7,15,37,9,58,10r22,-22r0,-31v-27,3,-68,-8,-80,10r0,33","w":328,"k":{"V":5,"7":2,"X":4,"1":2,"x":2,"T":2,"Y":9,"A":2,"Z":2,"I":2}},"A":{"d":"5,0r72,-248r61,0r72,248r-43,0r-17,-63r-88,0r-17,63r-40,0xm106,-224r-34,127r69,0","w":214},"B":{"d":"27,0r0,-248r149,0r32,31r0,62r-27,27r27,27r0,69r-32,32r-149,0xm70,-32r82,0r14,-13r0,-51r-17,-17r-79,0r0,81xm70,-144r79,0r16,-16r0,-43r-13,-14r-82,0r0,73","w":229,"k":{"V":2,"\\":7,"\/":5,"v":-2,"X":4,"1":2,"x":2,"Y":4,"A":2,"J":2,"f":2,"t":2,"y":-2,"z":2,"I":2,")":2,"]":2,"}":2}},"C":{"d":"59,0r-36,-36r0,-177r36,-35r109,0r35,34r0,44r-42,0r0,-30r-16,-16r-63,0r-16,17r0,150r16,17r63,0r16,-16r0,-32r42,0r0,46r-35,34r-109,0","w":221,"k":{"W":-2,"\\":2,"=":2,"<":4,"\/":2,"v":2,"X":2,"1":2,"x":2,">":2,"T":2,"Y":4,"A":2,"Z":2,"f":2,"+":4,"t":2,"y":2,"z":2,"-":5}},"D":{"d":"27,0r0,-248r144,0r36,35r0,177r-36,36r-144,0xm69,-33r79,0r17,-17r0,-149r-17,-17r-79,0r0,183","k":{"V":2,"W":2,"\\":7,"\/":7,"X":4,"1":2,"x":4,"T":2,"Y":5,"A":2,"J":2,"Z":2,",":2,".":2,")":2,"]":2,"}":2}},"E":{"d":"27,0r0,-248r153,0r0,33r-111,0r0,73r102,0r0,33r-102,0r0,76r111,0r0,33r-153,0","w":197,"k":{"*":2,"$":2,"=":2,"4":2,"v":5,"w":4,"x":2,">":2,"a":4,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"f":4,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"+":2,"\"":-2,"'":-2,"s":4,"t":5,"u":2,"y":5,"z":2,"-":2}},"F":{"d":"27,0r0,-248r149,0r0,33r-107,0r0,77r99,0r0,33r-99,0r0,105r-42,0","w":186,"k":{"x":11,"w":2,"v":4,"p":5,"\\":-2,"?":-2,">":2,"4":4,"2":2,"\/":20,"$":2,"a":7,"A":13,"J":22,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"Z":2,":":4,";":4,"f":5,"g":7,"c":7,"d":7,"e":7,"o":7,"q":7,"m":5,"n":5,"r":5,",":18,".":18,"+":-2,"\"":-2,"'":-2,"s":5,"t":4,"u":5,"y":4,"z":7}},"G":{"d":"59,0r-36,-36r0,-177r36,-35r113,0r32,32r0,38r-42,0r0,-25r-13,-13r-67,0r-16,17r0,150r16,17r66,0r15,-15r0,-52r-56,0r0,-33r99,0r0,97r-35,35r-112,0","w":226,"k":{"V":2,"\\":5,"\/":4,"X":4,"1":2,"x":2,"T":2,"Y":4}},"H":{"d":"27,0r0,-248r42,0r0,107r94,0r0,-107r43,0r0,248r-43,0r0,-104r-94,0r0,104r-42,0","w":232},"I":{"d":"14,0r0,-30r43,0r0,-188r-43,0r0,-30r129,0r0,30r-43,0r0,188r43,0r0,30r-129,0","w":157,"k":{"*":2,"8":2,"=":7,"4":4,"<":7,"v":5,"w":4,"x":2,"a":4,"f":4,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"+":7,"s":4,"t":7,"u":4,"y":5,"-":13,"&":2}},"J":{"d":"8,0r0,-34r56,0r17,-16r0,-198r42,0r0,212r-35,36r-80,0","w":148,"k":{"\/":5,"X":2,"x":4,"A":4,"J":2,",":2,".":2}},"K":{"d":"169,0r-57,-113r-44,59r0,54r-42,0r0,-248r42,0r0,140r97,-140r47,0r-72,102r76,146r-47,0","w":225,"k":{"*":4,"$":9,"8":5,"=":9,"4":11,"<":16,"9":4,"?":5,"7":2,"v":16,"w":11,"x":2,">":2,"3":4,"T":2,"a":7,"0":7,"6":7,"C":7,"G":7,"O":7,"Q":7,"f":7,"g":9,"c":9,"d":9,"e":9,"o":9,"q":9,"m":2,"n":2,"r":2,"+":14,"\"":2,"'":2,"s":9,"t":11,"u":9,"y":16,"-":18,"S":5,"&":2,"i":2,"j":2,"U":4}},"L":{"d":"27,0r0,-248r42,0r0,213r99,0r0,35r-141,0","w":178,"k":{"V":18,"W":7,"*":29,"\\":22,"$":2,"8":2,"=":9,"5":2,"4":11,"<":14,"9":2,"?":23,"7":18," ":7,"v":16,"w":9,">":4,"3":2,"T":27,"Y":29,"a":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"f":7,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"+":14,"\"":22,"'":22,"s":2,"t":11,"u":2,"y":16,"-":16,"S":2,"U":2}},"M":{"d":"26,0r0,-248r66,0r64,212r64,-212r66,0r0,248r-41,0r0,-217r-66,217r-50,0r-66,-217r0,217r-37,0","w":311},"N":{"d":"26,0r0,-248r46,0r98,184r0,-184r37,0r0,248r-46,0r-97,-186r0,186r-38,0","w":233},"O":{"d":"59,0r-36,-36r0,-177r36,-35r113,0r36,35r0,177r-36,36r-113,0xm82,-33r67,0r16,-17r0,-149r-16,-17r-67,0r-16,17r0,149","k":{"V":2,"W":2,"\\":7,"\/":7,"X":4,"1":2,"x":4,"T":2,"Y":5,"A":2,"J":2,"Z":2,",":2,".":2,")":2,"]":2,"}":2}},"P":{"d":"27,0r0,-248r145,0r34,34r0,87r-34,34r-103,0r0,93r-42,0xm69,-125r79,0r15,-15r0,-62r-15,-15r-79,0r0,92","w":217,"k":{"x":2,"w":-2,"v":-2,"\\":2,"X":7,"W":-4,"V":-2,"?":-2,">":-4,"=":-7,"<":-7,"7":-2,"4":2,"2":2,"1":2,"\/":14,"*":-7,"T":-4,"Y":2,"a":4,"A":14,"J":20,"Z":2,"f":-2,"c":2,"d":2,"e":2,"o":2,"q":2,",":22,".":22,"+":-7,"\"":-9,"'":-9,"s":2,"y":-2,"I":2,"-":-7}},"Q":{"d":"171,59r-36,-37r0,-22r-76,0r-36,-36r0,-177r36,-35r113,0r36,35r0,177r-36,36v1,19,18,21,25,33xm82,-33r67,0r16,-17r0,-149r-16,-17r-67,0r-16,17r0,149","k":{"V":2,"W":2,"\\":7,"\/":7,"X":4,"1":2,"x":4,"T":2,"Y":5,"A":2,"J":2,"Z":2,",":2,".":2,")":2,"]":2,"}":2}},"R":{"d":"27,0r0,-248r147,0r33,33r0,76r-30,31r34,108r-43,0r-32,-102r-67,0r0,102r-42,0xm69,-134r80,0r16,-16r0,-52r-15,-15r-81,0r0,83","w":227,"k":{"\\":2,"=":-2,"4":2,"<":-2,"?":-2,"7":2,"1":2,">":-2,"Y":4,"a":4,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"+":-2,"s":2,"u":2,"-":-2}},"S":{"d":"51,0r-32,-32r0,-38r42,0r0,25r13,13r67,0r14,-14v-2,-22,6,-54,-10,-62r-97,0r-28,-29r0,-78r33,-33r112,0r32,32r0,37r-43,0r0,-24r-13,-13r-65,0r-14,14v1,22,-6,52,10,59r97,0r29,29r0,81r-33,33r-114,0","w":216,"k":{"V":2,"\\":5,"<":-2,"\/":5,"X":4,"1":2,"x":2,">":-2,"T":2,"Y":4,"A":2,"+":-2,"t":2,"-":-2,")":2,"]":2,"}":2}},"T":{"d":"77,0r0,-214r-69,0r0,-34r180,0r0,34r-68,0r0,214r-43,0","w":196,"k":{"V":-2,"W":-4,"*":-2,"\\":-5,"$":2,"8":2,"=":9,"4":5,"<":13,"9":2,"?":-4,"7":-2,"\/":20," ":7,"v":13,"w":11,"X":2,"x":14,"3":-2,"p":18,"T":-2,"Y":-2,"a":27,"A":16,"J":23,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"Z":2,":":13,";":13,"f":7,"g":25,"c":23,"d":23,"e":23,"o":23,"q":23,"m":18,"n":18,"r":18,",":23,".":23,"+":14,"\"":-4,"'":-4,"s":27,"t":7,"u":18,"y":13,"z":18,"-":11,")":-2,"]":-2,"}":-2,"S":2,"&":-2,"@":2,"i":2,"j":2}},"U":{"d":"60,0r-35,-36r0,-212r42,0r0,198r17,17r60,0r17,-17r0,-198r42,0r0,212r-36,36r-107,0","w":227,"k":{"\/":5,"X":2,"x":4,"A":4,"J":2,",":2,".":2}},"V":{"d":"70,0r-65,-248r43,0r55,219r54,-219r39,0r-64,248r-62,0","w":201,"k":{"x":5,"w":4,"v":4,"p":9,"\\":-9,"X":2,"W":-2,"V":-2,"?":-2,"=":2,"<":4,"9":2,"8":2,"7":-5,"4":5,"3":2,"2":4,"\/":13,"$":5," ":7,"T":-2,"a":14,"A":13,"J":14,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,":":9,";":9,"f":4,"g":13,"c":13,"d":13,"e":13,"o":13,"q":13,"m":9,"n":9,"r":9,",":16,".":16,"+":4,"\"":-4,"'":-4,"s":13,"t":4,"u":9,"y":4,"z":9,"-":5,"S":2,"&":2,"@":5,"i":2,"j":2}},"W":{"d":"52,0r-46,-248r41,0r35,210r43,-210r56,0r43,210r35,-210r37,0r-47,248r-54,0r-43,-211r-44,211r-56,0","w":301,"k":{"x":4,"w":2,"v":2,"p":4,"\\":-5,"X":2,"W":-5,"V":-2,"?":-4,"<":2,"7":-5,"4":4,"2":2,"\/":5,"*":-4,"$":2,"T":-4,"Y":-2,"a":9,"A":5,"J":11,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,":":4,";":4,"g":7,"c":5,"d":5,"e":5,"o":5,"q":5,"m":4,"n":4,"r":4,",":9,".":9,"\"":-5,"'":-5,"s":5,"u":4,"y":2,"z":4,"-":2,"i":2,"j":2}},"X":{"d":"8,0r67,-127r-65,-121r47,0r49,98r51,-98r44,0r-66,121r69,127r-46,0r-54,-102r-51,102r-45,0","w":212,"k":{"w":9,"v":13,"p":2,"X":4,"W":2,"V":2,"?":5,">":2,"=":9,"<":11,"9":2,"8":4,"4":9,"3":4,"*":7,"$":4,"T":2,"Y":2,"a":7,"0":4,"6":4,"C":4,"G":4,"O":4,"Q":4,"Z":2,":":2,";":2,"f":7,"g":9,"c":9,"d":9,"e":9,"o":9,"q":9,"m":2,"n":2,"r":2,"+":11,"s":5,"t":9,"u":7,"y":13,"-":18,"S":4,"&":4,"U":2}},"Y":{"d":"81,0r0,-78r-77,-170r46,0r54,127r56,-127r41,0r-77,170r0,78r-43,0","w":205,"k":{"W":-2,"*":2,"\\":-5,"$":7,"8":4,"=":11,"4":9,"<":13,"9":4,"?":2,"7":-5,"\/":20," ":7,"v":14,"w":14,"X":2,"x":20,">":4,"3":2,"p":22,"2":4,"T":-2,"a":29,"A":22,"J":23,"0":5,"6":5,"C":5,"G":5,"O":5,"Q":5,":":20,";":20,"f":11,"g":27,"c":27,"d":27,"e":27,"o":27,"q":27,"m":22,"n":22,"r":22,",":29,".":29,"+":14,"s":25,"t":11,"u":20,"y":14,"z":18,"-":16,"S":4,"&":4,"@":9,"i":2,"j":2}},"Z":{"d":"13,0r0,-28r112,-186r-110,0r0,-34r160,0r0,27r-113,186r114,0r0,35r-163,0","w":189,"k":{"*":2,"$":2,"=":4,"4":4,"<":7,"v":5,"w":4,"X":2,"x":2,">":2,"T":2,"a":2,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"Z":2,"f":4,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"+":7,"s":2,"t":5,"u":2,"y":5,"-":7}},"[":{"d":"28,24r0,-296r80,0r0,33r-38,0r0,230r38,0r0,33r-80,0","w":120,"k":{"8":2,"4":5,"v":4,"w":2,"3":2,"T":-2,"a":4,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"f":7,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":4,"t":5,"y":4,"S":2,"j":-18}},"\\":{"d":"38,-272r85,296r-37,0r-86,-296r38,0","w":123,"k":{"x":-4,"w":4,"v":11,"W":5,"V":13,"9":5,"8":5,"7":22,"5":4,"4":5,"3":2,"T":20,"Y":16,"a":2,"A":-2,"0":7,"6":7,"C":7,"G":7,"O":7,"Q":7,"f":9,"g":2,"c":5,"d":5,"e":5,"o":5,"q":5,"s":2,"t":7,"u":5,"y":2,"S":5,"j":-31,"U":4}},"]":{"d":"93,-272r0,296r-80,0r0,-33r38,0r0,-230r-38,0r0,-33r80,0","w":120},"^":{"d":"6,-125r49,-123r47,0r48,123r-37,0r-35,-99r-36,99r-36,0","w":156},"_":{"d":"-3,40r0,-27r179,0r0,27r-179,0","w":173},"`":{"d":"55,-195v-10,-15,-34,-18,-31,-46r26,0v10,15,32,19,30,46r-25,0","w":104},"a":{"d":"45,0r-28,-29r0,-48r29,-29r91,0r0,-33r-12,-12v-26,3,-68,-13,-62,25r-41,0r0,-24r28,-29r95,0r32,32r0,147r-30,0r-3,-27r-27,27r-72,0xm58,-38v7,15,36,9,57,10r22,-22r0,-31r-69,0v-12,6,-10,25,-10,43","w":200,"k":{"*":9,"\\":25,"?":11,"7":7,"v":2,"f":2,"t":2,"y":2}},"b":{"d":"24,0r0,-248r41,0r0,94r25,-25r65,0r32,32r0,115r-32,32r-70,0r-28,-28r-2,28r-31,0xm90,-28r43,0r14,-14r0,-94r-14,-14r-40,0r-28,28r0,68","w":208,"k":{"*":11,"\\":23,"?":11,"7":11,"\/":4,"v":2,"1":4,"x":4,"3":2,"f":2,"\"":2,"'":2,"t":2,"y":2,"z":2,")":4,"]":4,"}":4}},"c":{"d":"53,0r-32,-32r0,-115r32,-32r95,0r30,30r0,32r-42,0v2,-16,-2,-28,-11,-33r-50,0r-14,13r0,95r14,14r50,0v8,-6,13,-16,11,-33r42,0r0,31r-30,30r-95,0","w":193,"k":{"*":7,"\\":20,"=":-2,"<":-2,"?":5,"7":7,"\/":2,"1":2,"x":2,",":-2,".":-2,"+":-2,"-":-2}},"d":{"d":"53,0r-32,-32r0,-115r32,-32r65,0r25,25r0,-94r41,0r0,248r-31,0r-2,-28r-28,28r-70,0xm75,-28r43,0r25,-25r0,-69r-27,-28r-41,0r-13,14r0,94","w":208},"e":{"d":"53,0r-32,-32r0,-115r32,-32r96,0r32,32r0,67r-121,0r0,39r14,13v27,-4,73,15,66,-26r41,0r0,26r-28,28r-100,0xm60,-106r81,0r0,-32r-12,-13r-56,0r-13,13r0,32","w":200,"k":{"*":9,"\\":23,"?":9,"7":11,"\/":2,"v":2,"1":2,"x":4,"y":2,"z":2,")":2,"]":2,"}":2}},"f":{"d":"35,0r0,-149r-26,0r0,-30r26,0r0,-40r29,-29r67,0r0,28v-22,1,-49,-5,-56,11r0,30r52,0r0,30r-52,0r0,149r-40,0","w":134,"k":{"w":-2,"v":-2,"p":2,"\\":-13,"?":-11,">":-2,"<":-2,"7":-7,"5":-2,"4":2,"3":-2,"2":-2,"\/":9,"*":-9,"!":-2,"a":9,":":2,";":2,"f":2,"g":7,"c":7,"d":7,"e":7,"o":7,"q":7,"m":2,"n":2,"r":2,",":22,".":22,"+":-2,"\"":-9,"'":-9,"s":5,"t":-2,"u":2,"y":-2,"z":2,"-":-2,")":-9,"]":-9,"}":-9,"&":-4,"@":-2}},"g":{"d":"51,63r-27,-28r0,-22r39,0v-2,12,3,17,8,22r59,0r13,-14r0,-53r-24,24r-66,0r-32,-31r0,-108r32,-32r69,0r29,30r2,-30r31,0r0,210r-32,32r-101,0xm75,-36r43,0r25,-25r0,-63r-26,-26r-42,0r-13,14r0,86","w":207,"k":{"\\":18,"?":2,"7":4,"j":-13}},"h":{"d":"24,0r0,-248r41,0r0,94r25,-25r59,0r31,32r0,147r-40,0r0,-134r-13,-14r-36,0r-26,27r0,121r-41,0","w":203,"k":{"*":9,"\\":25,"?":11,"7":7,"v":2,"f":2,"t":2,"y":2}},"i":{"d":"67,0r-41,0r0,-179r41,0r0,179xm26,-204r0,-40r41,0r0,40r-41,0","w":93},"j":{"d":"-18,63r0,-30v19,1,38,2,44,-11r0,-201r41,0r0,211r-30,31r-55,0xm26,-204r0,-40r41,0r0,40r-41,0","w":93,"k":{"j":-13}},"k":{"d":"146,0r-44,-85r-38,45r0,40r-41,0r0,-248r41,0r0,163r74,-94r46,0r-55,67r61,112r-44,0","w":198,"k":{"*":4,"\\":14,"8":2,"=":2,"4":9,"<":5,"9":2,"?":2,"7":11,"3":2,"a":7,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"g":7,"c":9,"d":9,"e":9,"o":9,"q":9,"+":7,"s":5,"t":2,"u":4,"-":9,"&":2}},"l":{"d":"67,0r-41,0r0,-248r41,0r0,248","w":93},"m":{"d":"24,0r0,-179r31,0r3,30r29,-30r56,0r25,26r26,-26r60,0r32,32r0,147r-41,0r0,-134r-13,-14r-33,0r-24,24r0,124r-40,0r0,-134r-14,-14r-29,0r-27,27r0,121r-41,0","w":308,"k":{"*":9,"\\":25,"?":11,"7":7,"v":2,"f":2,"t":2,"y":2}},"n":{"d":"24,0r0,-179r31,0r3,30r29,-30r62,0r31,32r0,147r-40,0r0,-134r-13,-14r-35,0r-27,27r0,121r-41,0","w":203,"k":{"*":9,"\\":25,"?":11,"7":7,"v":2,"f":2,"t":2,"y":2}},"o":{"d":"53,0r-32,-32r0,-115r32,-32r98,0r32,32r0,115r-32,32r-98,0xm75,-28r54,0r14,-14r0,-95r-14,-14r-54,0r-13,14r0,95","w":204,"k":{"*":11,"\\":23,"?":11,"7":11,"\/":4,"v":2,"1":4,"x":4,"3":2,"f":2,"\"":2,"'":2,"t":2,"y":2,"z":2,")":4,"]":4,"}":4}},"p":{"d":"24,63r0,-242r31,0r2,29r29,-29r69,0r32,32r0,115r-32,32r-68,0r-22,-22r0,85r-41,0xm90,-29r43,0r14,-13r0,-95r-14,-13r-42,0r-26,26r0,70","w":208,"k":{"*":11,"\\":23,"?":11,"7":11,"\/":4,"v":2,"1":4,"x":4,"3":2,"f":2,"\"":2,"'":2,"t":2,"y":2,"z":2,")":4,"]":4,"}":4}},"q":{"d":"143,63r0,-86r-23,23r-67,0r-32,-32r0,-115r32,-32r69,0r29,29r2,-29r31,0r0,242r-41,0xm75,-29r42,0r26,-26r0,-69r-26,-26r-42,0r-13,13r0,95","w":208,"k":{"\\":18,"?":2,"7":4,"j":-13}},"r":{"d":"24,0r0,-179r31,0r3,31r30,-31r42,0r0,35r-38,0r-27,27r0,117r-41,0","w":139,"k":{"*":-2,"\\":11,"$":2,"4":2,"<":-4,"7":9,"\/":16,"v":-2,"w":-2,"1":7,"x":2,">":2,"2":2,"a":5,"f":-2,"g":4,"c":2,"d":2,"e":2,"o":2,"q":2,",":16,".":16,"s":4,"y":-2,"z":2,"-":-4,")":4,"]":4,"}":4,"&":2}},"s":{"d":"45,0r-27,-27r0,-25r39,0v-1,12,1,20,8,24v24,-2,59,7,69,-9v-1,-14,4,-33,-6,-38r-86,0r-23,-23r0,-51r29,-30r98,0r27,27r0,25r-40,0v1,-12,-1,-20,-8,-24v-23,2,-58,-7,-66,10v1,13,-4,32,6,37r86,0r24,23r0,52r-30,29r-100,0","w":192,"k":{"*":9,"\\":23,"?":7,"7":9,"\/":2,"v":2,"1":2,"x":2,"f":2,"s":2,"y":2,"z":2,"-":-2,")":4,"]":4,"}":4}},"t":{"d":"67,0r-32,-32r0,-117r-27,0r0,-30r27,0r0,-50r40,0r0,50r61,0r0,30r-61,0r0,105r14,13r47,0r0,31r-69,0","w":150,"k":{"*":2,"\\":5,"4":2,"<":2,"7":5,"\/":-2,"v":2,"w":2,"a":4,"f":4,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"+":2,"\"":2,"'":2,"s":2,"t":4,"y":2,"-":2,")":-2,"]":-2,"}":-2}},"u":{"d":"55,0r-32,-32r0,-147r40,0r0,135r14,13r35,0r26,-27r0,-121r41,0r0,179r-31,0r-2,-30r-30,30r-61,0","w":203,"k":{"\\":18,"?":2,"7":4}},"v":{"d":"62,0r-58,-179r42,0r45,152r45,-152r40,0r-58,179r-56,0","w":179,"k":{"x":-2,"w":-4,"v":-4,"\\":4,"?":-7,">":-2,"=":-5,"<":-2,"9":-2,"8":-2,"7":7,"5":-4,"3":-2,"2":2,"1":4,"\/":11,"*":-2,"$":-2,"a":2,":":2,";":2,"f":-2,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,",":14,".":14,"+":-5,"\"":-4,"'":-4,"s":4,"t":-4,"y":-4,"z":-2,"-":-4,")":4,"]":4,"}":4}},"w":{"d":"43,0r-39,-179r40,0r30,153r38,-153r53,0r39,152r30,-152r34,0r-39,179r-55,0r-37,-149r-38,149r-56,0","w":272,"k":{"v":-4,"\\":4,"?":-4,"=":-5,"<":-5,"7":4,"1":4,"\/":4,"*":-7,"$":-2,"a":2,"f":-2,",":9,".":9,"+":-5,"\"":-2,"'":-2,"t":-2,"y":-4,"-":-5,")":2,"]":2,"}":2}},"x":{"d":"135,0r-43,-67r-43,67r-44,0r61,-90r-58,-89r46,0r40,67r42,-67r41,0r-58,87r61,92r-45,0","w":185,"k":{"v":-2,"\\":13,"?":-2,"=":2,"<":2,"7":5,"4":4,"\/":-4,"*":2,"a":4,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"+":4,"\"":-2,"'":-2,"s":2,"t":2,"u":2,"y":-2,"-":5}},"y":{"d":"62,0r-58,-179r42,0r45,151r45,-151r40,0r-71,218r-24,23r-67,0r0,-29v20,-2,54,8,59,-8r8,-25r-19,0","w":179,"k":{"*":-2,"\\":4,"8":-2,"=":-5,"<":-4,"?":-7,"7":7,"\/":11,"v":-4,"w":-4,"1":4,"x":-2,">":-2,"3":-2,"2":2,"a":2,":":2,";":2,"f":-2,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,",":14,".":14,"+":-5,"\"":-2,"'":-2,"s":4,"t":-4,"y":-2,"z":-2,"-":-2,")":4,"]":4,"}":4}},"z":{"d":"11,0r0,-23r93,-125r-91,0r0,-31r139,0r0,24r-93,124r95,0r0,31r-143,0","w":164,"k":{"\\":13,"4":2,"7":5,"v":-2,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"+":-2,"\"":-2,"'":-2,"s":2,"y":-2}},"{":{"d":"71,24r-36,-36r0,-88v-5,-8,-15,-11,-30,-9r0,-36v15,2,25,-2,30,-10r0,-81r36,-36r44,0r0,33r-21,0r-17,17r0,74r-20,21r20,20r0,81r17,17r21,0r0,33r-44,0","w":128,"k":{"8":2,"4":5,"v":4,"w":2,"3":2,"T":-2,"a":4,"0":2,"6":2,"C":2,"G":2,"O":2,"Q":2,"f":7,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":4,"t":5,"y":4,"S":2,"j":-18}},"|":{"d":"33,24r0,-296r40,0r0,296r-40,0","w":106},"}":{"d":"93,-12r-35,36r-44,0r0,-33r21,0r16,-17r0,-81r21,-20r-21,-21r0,-74r-16,-17r-21,0r0,-33r44,0r35,36r0,81v6,8,15,12,30,10r0,36v-14,-1,-25,1,-30,9r0,88","w":128},"~":{"d":"8,-189r0,-36r24,-23r38,0r33,33v19,2,19,-14,18,-33r29,0r0,35r-23,24r-38,0r-34,-33v-18,-2,-18,15,-17,33r-30,0","w":158},"\u00a0":{"w":88,"k":{"V":7,"T":7,"Y":7,"A":5,"J":9}}}});var Froogaloop=(function(){function Froogaloop(iframe){return new Froogaloop.fn.init(iframe);}
var eventCallbacks={},hasWindowEvent=false,isReady=false,slice=Array.prototype.slice,playerDomain='';Froogaloop.fn=Froogaloop.prototype={element:null,init:function(iframe){if(typeof iframe==="string"){iframe=document.getElementById(iframe);}
this.element=iframe;playerDomain=getDomainFromUrl(this.element.getAttribute('src'));return this;},api:function(method,valueOrCallback){if(!this.element||!method){return false;}
var self=this,element=self.element,target_id=element.id!==''?element.id:null,params=!isFunction(valueOrCallback)?valueOrCallback:null,callback=isFunction(valueOrCallback)?valueOrCallback:null;if(callback){storeCallback(method,callback,target_id);}
postMessage(method,params,element);return self;},addEvent:function(eventName,callback){if(!this.element){return false;}
var self=this,element=self.element,target_id=element.id!==''?element.id:null;storeCallback(eventName,callback,target_id);if(eventName!='ready'){postMessage('addEventListener',eventName,element);}
else if(eventName=='ready'&&isReady){callback.call(null,target_id);}
return self;},removeEvent:function(eventName){if(!this.element){return false;}
var self=this,element=self.element,target_id=element.id!==''?element.id:null,removed=removeCallback(eventName,target_id);if(eventName!='ready'&&removed){postMessage('removeEventListener',eventName,element);}}};function postMessage(method,params,target){if(!target.contentWindow.postMessage){return false;}
var url=target.getAttribute('src').split('?')[0],data=JSON.stringify({method:method,value:params});target.contentWindow.postMessage(data,url);}
function onMessageReceived(event){var data,method;try{data=JSON.parse(event.data);method=data.event||data.method;}
catch(e){}
if(method=='ready'&&!isReady){isReady=true;}
if(event.origin!=playerDomain){return false;}
var value=data.value,eventData=data.data,target_id=target_id===''?null:data.player_id,callback=getCallback(method,target_id),params=[];if(!callback){return false;}
if(value!==undefined){params.push(value);}
if(eventData){params.push(eventData);}
if(target_id){params.push(target_id);}
return params.length>0?callback.apply(null,params):callback.call();}
function storeCallback(eventName,callback,target_id){if(target_id){if(!eventCallbacks[target_id]){eventCallbacks[target_id]={};}
eventCallbacks[target_id][eventName]=callback;}
else{eventCallbacks[eventName]=callback;}}
function getCallback(eventName,target_id){if(target_id){return eventCallbacks[target_id][eventName];}
else{return eventCallbacks[eventName];}}
function removeCallback(eventName,target_id){if(target_id&&eventCallbacks[target_id]){if(!eventCallbacks[target_id][eventName]){return false;}
eventCallbacks[target_id][eventName]=null;}
else{if(!eventCallbacks[eventName]){return false;}
eventCallbacks[eventName]=null;}
return true;}
function getDomainFromUrl(url){var url_pieces=url.split('/'),domain_str='';for(var i=0,length=url_pieces.length;i<length;i++){if(i<3){domain_str+=url_pieces[i];}
else{break;}
if(i<2){domain_str+='/';}}
return domain_str;}
function isFunction(obj){return!!(obj&&obj.constructor&&obj.call&&obj.apply);}
function isArray(obj){return toString.call(obj)==='[object Array]';}
Froogaloop.fn.init.prototype=Froogaloop.fn;if(window.addEventListener){window.addEventListener('message',onMessageReceived,false);}
else{window.attachEvent('onmessage',onMessageReceived,false);}
return(window.Froogaloop=window.$f=Froogaloop);})();
/*
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */
(function($){var defaults={vertical:false,rtl:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:'normal',easing:'swing',auto:0,wrap:null,initCallback:null,setupCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null,itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,animationStepCallback:null,buttonNextHTML:'<div></div>',buttonPrevHTML:'<div></div>',buttonNextEvent:'click',buttonPrevEvent:'click',buttonNextCallback:null,buttonPrevCallback:null,itemFallbackDimension:null},windowLoaded=false;$(window).bind('load.jcarousel',function(){windowLoaded=true;});$.jcarousel=function(e,o){this.options=$.extend({},defaults,o||{});this.locked=false;this.autoStopped=false;this.container=null;this.clip=null;this.list=null;this.buttonNext=null;this.buttonPrev=null;this.buttonNextState=null;this.buttonPrevState=null;if(!o||o.rtl===undefined){this.options.rtl=($(e).attr('dir')||$('html').attr('dir')||'').toLowerCase()=='rtl';}
this.wh=!this.options.vertical?'width':'height';this.lt=!this.options.vertical?(this.options.rtl?'right':'left'):'top';var skin='',split=e.className.split(' ');for(var i=0;i<split.length;i++){if(split[i].indexOf('jcarousel-skin')!=-1){$(e).removeClass(split[i]);skin=split[i];break;}}
if(e.nodeName.toUpperCase()=='UL'||e.nodeName.toUpperCase()=='OL'){this.list=$(e);this.clip=this.list.parents('.jcarousel-clip');this.container=this.list.parents('.jcarousel-container');}else{this.container=$(e);this.list=this.container.find('ul,ol').eq(0);this.clip=this.container.find('.jcarousel-clip');}
if(this.clip.size()===0){this.clip=this.list.wrap('<div></div>').parent();}
if(this.container.size()===0){this.container=this.clip.wrap('<div></div>').parent();}
if(skin!==''&&this.container.parent()[0].className.indexOf('jcarousel-skin')==-1){this.container.wrap('<div class=" '+skin+'"></div>');}
this.buttonPrev=$('.jcarousel-prev',this.container);if(this.buttonPrev.size()===0&&this.options.buttonPrevHTML!==null){this.buttonPrev=$(this.options.buttonPrevHTML).appendTo(this.container);}
this.buttonPrev.addClass(this.className('jcarousel-prev'));this.buttonNext=$('.jcarousel-next',this.container);if(this.buttonNext.size()===0&&this.options.buttonNextHTML!==null){this.buttonNext=$(this.options.buttonNextHTML).appendTo(this.container);}
this.buttonNext.addClass(this.className('jcarousel-next'));this.clip.addClass(this.className('jcarousel-clip')).css({position:'relative'});this.list.addClass(this.className('jcarousel-list')).css({overflow:'hidden',position:'relative',top:0,margin:0,padding:0}).css((this.options.rtl?'right':'left'),0);this.container.addClass(this.className('jcarousel-container')).css({position:'relative'});if(!this.options.vertical&&this.options.rtl){this.container.addClass('jcarousel-direction-rtl').attr('dir','rtl');}
var di=this.options.visible!==null?Math.ceil(this.clipping()/this.options.visible):null;var li=this.list.children('li');var self=this;if(li.size()>0){var wh=0,j=this.options.offset;li.each(function(){self.format(this,j++);wh+=self.dimension(this,di);});this.list.css(this.wh,(wh+100)+'px');if(!o||o.size===undefined){this.options.size=li.size();}}
this.container.css('display','block');this.buttonNext.css('display','block');this.buttonPrev.css('display','block');this.funcNext=function(){self.next();};this.funcPrev=function(){self.prev();};this.funcResize=function(){if(self.resizeTimer){clearTimeout(self.resizeTimer);}
self.resizeTimer=setTimeout(function(){self.reload();},100);};if(this.options.initCallback!==null){this.options.initCallback(this,'init');}
if(!windowLoaded&&$.browser.safari){this.buttons(false,false);$(window).bind('load.jcarousel',function(){self.setup();});}else{this.setup();}};var $jc=$.jcarousel;$jc.fn=$jc.prototype={jcarousel:'0.2.8'};$jc.fn.extend=$jc.extend=$.extend;$jc.fn.extend({setup:function(){this.first=null;this.last=null;this.prevFirst=null;this.prevLast=null;this.animating=false;this.timer=null;this.resizeTimer=null;this.tail=null;this.inTail=false;if(this.locked){return;}
this.list.css(this.lt,this.pos(this.options.offset)+'px');var p=this.pos(this.options.start,true);this.prevFirst=this.prevLast=null;this.animate(p,false);$(window).unbind('resize.jcarousel',this.funcResize).bind('resize.jcarousel',this.funcResize);if(this.options.setupCallback!==null){this.options.setupCallback(this);}},reset:function(){this.list.empty();this.list.css(this.lt,'0px');this.list.css(this.wh,'10px');if(this.options.initCallback!==null){this.options.initCallback(this,'reset');}
this.setup();},reload:function(){if(this.tail!==null&&this.inTail){this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+this.tail);}
this.tail=null;this.inTail=false;if(this.options.reloadCallback!==null){this.options.reloadCallback(this);}
if(this.options.visible!==null){var self=this;var di=Math.ceil(this.clipping()/this.options.visible),wh=0,lt=0;this.list.children('li').each(function(i){wh+=self.dimension(this,di);if(i+1<self.first){lt=wh;}});this.list.css(this.wh,wh+'px');this.list.css(this.lt,-lt+'px');}
this.scroll(this.first,false);},lock:function(){this.locked=true;this.buttons();},unlock:function(){this.locked=false;this.buttons();},size:function(s){if(s!==undefined){this.options.size=s;if(!this.locked){this.buttons();}}
return this.options.size;},has:function(i,i2){if(i2===undefined||!i2){i2=i;}
if(this.options.size!==null&&i2>this.options.size){i2=this.options.size;}
for(var j=i;j<=i2;j++){var e=this.get(j);if(!e.length||e.hasClass('jcarousel-item-placeholder')){return false;}}
return true;},get:function(i){return $('>.jcarousel-item-'+i,this.list);},add:function(i,s){var e=this.get(i),old=0,n=$(s);if(e.length===0){var c,j=$jc.intval(i);e=this.create(i);while(true){c=this.get(--j);if(j<=0||c.length){if(j<=0){this.list.prepend(e);}else{c.after(e);}
break;}}}else{old=this.dimension(e);}
if(n.get(0).nodeName.toUpperCase()=='LI'){e.replaceWith(n);e=n;}else{e.empty().append(s);}
this.format(e.removeClass(this.className('jcarousel-item-placeholder')),i);var di=this.options.visible!==null?Math.ceil(this.clipping()/this.options.visible):null;var wh=this.dimension(e,di)-old;if(i>0&&i<this.first){this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-wh+'px');}
this.list.css(this.wh,$jc.intval(this.list.css(this.wh))+wh+'px');return e;},remove:function(i){var e=this.get(i);if(!e.length||(i>=this.first&&i<=this.last)){return;}
var d=this.dimension(e);if(i<this.first){this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+d+'px');}
e.remove();this.list.css(this.wh,$jc.intval(this.list.css(this.wh))-d+'px');},next:function(){if(this.tail!==null&&!this.inTail){this.scrollTail(false);}else{this.scroll(((this.options.wrap=='both'||this.options.wrap=='last')&&this.options.size!==null&&this.last==this.options.size)?1:this.first+this.options.scroll);}},prev:function(){if(this.tail!==null&&this.inTail){this.scrollTail(true);}else{this.scroll(((this.options.wrap=='both'||this.options.wrap=='first')&&this.options.size!==null&&this.first==1)?this.options.size:this.first-this.options.scroll);}},scrollTail:function(b){if(this.locked||this.animating||!this.tail){return;}
this.pauseAuto();var pos=$jc.intval(this.list.css(this.lt));pos=!b?pos-this.tail:pos+this.tail;this.inTail=!b;this.prevFirst=this.first;this.prevLast=this.last;this.animate(pos);},scroll:function(i,a){if(this.locked||this.animating){return;}
this.pauseAuto();this.animate(this.pos(i),a);},pos:function(i,fv){var pos=$jc.intval(this.list.css(this.lt));if(this.locked||this.animating){return pos;}
if(this.options.wrap!='circular'){i=i<1?1:(this.options.size&&i>this.options.size?this.options.size:i);}
var back=this.first>i;var f=this.options.wrap!='circular'&&this.first<=1?1:this.first;var c=back?this.get(f):this.get(this.last);var j=back?f:f-1;var e=null,l=0,p=false,d=0,g;while(back?--j>=i:++j<i){e=this.get(j);p=!e.length;if(e.length===0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c[back?'before':'after'](e);if(this.first!==null&&this.options.wrap=='circular'&&this.options.size!==null&&(j<=0||j>this.options.size)){g=this.get(this.index(j));if(g.length){e=this.add(j,g.clone(true));}}}
c=e;d=this.dimension(e);if(p){l+=d;}
if(this.first!==null&&(this.options.wrap=='circular'||(j>=1&&(this.options.size===null||j<=this.options.size)))){pos=back?pos+d:pos-d;}}
var clipping=this.clipping(),cache=[],visible=0,v=0;c=this.get(i-1);j=i;while(++visible){e=this.get(j);p=!e.length;if(e.length===0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));if(c.length===0){this.list.prepend(e);}else{c[back?'before':'after'](e);}
if(this.first!==null&&this.options.wrap=='circular'&&this.options.size!==null&&(j<=0||j>this.options.size)){g=this.get(this.index(j));if(g.length){e=this.add(j,g.clone(true));}}}
c=e;d=this.dimension(e);if(d===0){throw new Error('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...');}
if(this.options.wrap!='circular'&&this.options.size!==null&&j>this.options.size){cache.push(e);}else if(p){l+=d;}
v+=d;if(v>=clipping){break;}
j++;}
for(var x=0;x<cache.length;x++){cache[x].remove();}
if(l>0){this.list.css(this.wh,this.dimension(this.list)+l+'px');if(back){pos-=l;this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-l+'px');}}
var last=i+visible-1;if(this.options.wrap!='circular'&&this.options.size&&last>this.options.size){last=this.options.size;}
if(j>last){visible=0;j=last;v=0;while(++visible){e=this.get(j--);if(!e.length){break;}
v+=this.dimension(e);if(v>=clipping){break;}}}
var first=last-visible+1;if(this.options.wrap!='circular'&&first<1){first=1;}
if(this.inTail&&back){pos+=this.tail;this.inTail=false;}
this.tail=null;if(this.options.wrap!='circular'&&last==this.options.size&&(last-visible+1)>=1){var m=$jc.intval(this.get(last).css(!this.options.vertical?'marginRight':'marginBottom'));if((v-m)>clipping){this.tail=v-clipping-m;}}
if(fv&&i===this.options.size&&this.tail){pos-=this.tail;this.inTail=true;}
while(i-->first){pos+=this.dimension(this.get(i));}
this.prevFirst=this.first;this.prevLast=this.last;this.first=first;this.last=last;return pos;},animate:function(p,a){if(this.locked||this.animating){return;}
this.animating=true;var self=this;var scrolled=function(){self.animating=false;if(p===0){self.list.css(self.lt,0);}
if(!self.autoStopped&&(self.options.wrap=='circular'||self.options.wrap=='both'||self.options.wrap=='last'||self.options.size===null||self.last<self.options.size||(self.last==self.options.size&&self.tail!==null&&!self.inTail))){self.startAuto();}
self.buttons();self.notify('onAfterAnimation');if(self.options.wrap=='circular'&&self.options.size!==null){for(var i=self.prevFirst;i<=self.prevLast;i++){if(i!==null&&!(i>=self.first&&i<=self.last)&&(i<1||i>self.options.size)){self.remove(i);}}}};this.notify('onBeforeAnimation');if(!this.options.animation||a===false){this.list.css(this.lt,p+'px');scrolled();}else{var o=!this.options.vertical?(this.options.rtl?{'right':p}:{'left':p}):{'top':p};var settings={duration:this.options.animation,easing:this.options.easing,complete:scrolled};if($.isFunction(this.options.animationStepCallback)){settings.step=this.options.animationStepCallback;}
this.list.animate(o,settings);}},startAuto:function(s){if(s!==undefined){this.options.auto=s;}
if(this.options.auto===0){return this.stopAuto();}
if(this.timer!==null){return;}
this.autoStopped=false;var self=this;this.timer=window.setTimeout(function(){self.next();},this.options.auto*1000);},stopAuto:function(){this.pauseAuto();this.autoStopped=true;},pauseAuto:function(){if(this.timer===null){return;}
window.clearTimeout(this.timer);this.timer=null;},buttons:function(n,p){if(n==null){n=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='first')||this.options.size===null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap=='first')&&this.options.size!==null&&this.last>=this.options.size){n=this.tail!==null&&!this.inTail;}}
if(p==null){p=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='last')||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=='last')&&this.options.size!==null&&this.first==1){p=this.tail!==null&&this.inTail;}}
var self=this;if(this.buttonNext.size()>0){this.buttonNext.unbind(this.options.buttonNextEvent+'.jcarousel',this.funcNext);if(n){this.buttonNext.bind(this.options.buttonNextEvent+'.jcarousel',this.funcNext);}
this.buttonNext[n?'removeClass':'addClass'](this.className('jcarousel-next-disabled')).attr('disabled',n?false:true);if(this.options.buttonNextCallback!==null&&this.buttonNext.data('jcarouselstate')!=n){this.buttonNext.each(function(){self.options.buttonNextCallback(self,this,n);}).data('jcarouselstate',n);}}else{if(this.options.buttonNextCallback!==null&&this.buttonNextState!=n){this.options.buttonNextCallback(self,null,n);}}
if(this.buttonPrev.size()>0){this.buttonPrev.unbind(this.options.buttonPrevEvent+'.jcarousel',this.funcPrev);if(p){this.buttonPrev.bind(this.options.buttonPrevEvent+'.jcarousel',this.funcPrev);}
this.buttonPrev[p?'removeClass':'addClass'](this.className('jcarousel-prev-disabled')).attr('disabled',p?false:true);if(this.options.buttonPrevCallback!==null&&this.buttonPrev.data('jcarouselstate')!=p){this.buttonPrev.each(function(){self.options.buttonPrevCallback(self,this,p);}).data('jcarouselstate',p);}}else{if(this.options.buttonPrevCallback!==null&&this.buttonPrevState!=p){this.options.buttonPrevCallback(self,null,p);}}
this.buttonNextState=n;this.buttonPrevState=p;},notify:function(evt){var state=this.prevFirst===null?'init':(this.prevFirst<this.first?'next':'prev');this.callback('itemLoadCallback',evt,state);if(this.prevFirst!==this.first){this.callback('itemFirstInCallback',evt,state,this.first);this.callback('itemFirstOutCallback',evt,state,this.prevFirst);}
if(this.prevLast!==this.last){this.callback('itemLastInCallback',evt,state,this.last);this.callback('itemLastOutCallback',evt,state,this.prevLast);}
this.callback('itemVisibleInCallback',evt,state,this.first,this.last,this.prevFirst,this.prevLast);this.callback('itemVisibleOutCallback',evt,state,this.prevFirst,this.prevLast,this.first,this.last);},callback:function(cb,evt,state,i1,i2,i3,i4){if(this.options[cb]==null||(typeof this.options[cb]!='object'&&evt!='onAfterAnimation')){return;}
var callback=typeof this.options[cb]=='object'?this.options[cb][evt]:this.options[cb];if(!$.isFunction(callback)){return;}
var self=this;if(i1===undefined){callback(self,state,evt);}else if(i2===undefined){this.get(i1).each(function(){callback(self,this,i1,state,evt);});}else{var call=function(i){self.get(i).each(function(){callback(self,this,i,state,evt);});};for(var i=i1;i<=i2;i++){if(i!==null&&!(i>=i3&&i<=i4)){call(i);}}}},create:function(i){return this.format('<li></li>',i);},format:function(e,i){e=$(e);var split=e.get(0).className.split(' ');for(var j=0;j<split.length;j++){if(split[j].indexOf('jcarousel-')!=-1){e.removeClass(split[j]);}}
e.addClass(this.className('jcarousel-item')).addClass(this.className('jcarousel-item-'+i)).css({'float':(this.options.rtl?'right':'left'),'list-style':'none'}).attr('jcarouselindex',i);return e;},className:function(c){return c+' '+c+(!this.options.vertical?'-horizontal':'-vertical');},dimension:function(e,d){var el=$(e);if(d==null){return!this.options.vertical?(el.outerWidth(true)||$jc.intval(this.options.itemFallbackDimension)):(el.outerHeight(true)||$jc.intval(this.options.itemFallbackDimension));}else{var w=!this.options.vertical?d-$jc.intval(el.css('marginLeft'))-$jc.intval(el.css('marginRight')):d-$jc.intval(el.css('marginTop'))-$jc.intval(el.css('marginBottom'));$(el).css(this.wh,w+'px');return this.dimension(el);}},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-$jc.intval(this.clip.css('borderLeftWidth'))-$jc.intval(this.clip.css('borderRightWidth')):this.clip[0].offsetHeight-$jc.intval(this.clip.css('borderTopWidth'))-$jc.intval(this.clip.css('borderBottomWidth'));},index:function(i,s){if(s==null){s=this.options.size;}
return Math.round((((i-1)/s)-Math.floor((i-1)/s))*s)+1;}});$jc.extend({defaults:function(d){return $.extend(defaults,d||{});},intval:function(v){v=parseInt(v,10);return isNaN(v)?0:v;},windowLoaded:function(){windowLoaded=true;}});$.fn.jcarousel=function(o){if(typeof o=='string'){var instance=$(this).data('jcarousel'),args=Array.prototype.slice.call(arguments,1);return instance[o].apply(instance,args);}else{return this.each(function(){var instance=$(this).data('jcarousel');if(instance){if(o){$.extend(instance.options,o);}
instance.reload();}else{$(this).data('jcarousel',new $jc(this,o));}});}};})(jQuery);(function($){$.extend({jGFeed:function(url,fnk,num,key){if(url==null)return false;var gurl="http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&callback=?&q="+url;if(num!=null)gurl+="&num="+num;if(key!=null)gurl+="&key="+key;$.getJSON(gurl,function(data){if(typeof fnk=='function')
fnk.call(this,data.responseData.feed);else
return false;});}});})(jQuery);jQuery.substitute=function(template,data){return template.replace(/\{(.+?)\}/g,function($0,$1){return $1 in data?data[$1]:$0;});};jQuery(document).ready(function($){$("#hero-video video").live("ended",function(){$('#hero-video video').get(0).play();});$("#hero-video video").live("ended",function(){$('#hero-video video').get(0).play();});$('#hero-video video').get(0).play();$('#hero h3 a').click(function(e){e.preventDefault();$('#hero-video video').get(0).pause();$('#video-lightbox').fadeIn(200,function(){$('#video-lightbox .video-wrap').html('<iframe src="http://player.vimeo.com/video/31806126?title=0&amp;byline=0&amp;portrait=0&amp;color=ae0000&amp;autoplay=1" width="440" height="248" frameborder="0" id="player_1"></iframe><div class="close-bt"></div>');resize_video();});});$('#video-lightbox .close-bt').live('click',function(e){$('#video-lightbox').fadeOut(200,function(){$('#hero-video video').get(0).play();});$('#video-lightbox .video-wrap').html('');});var aspect_ratio=0.5625;$(window).bind('resize',function(){resize_video();});function resize_video(){var win_ratio=window.innerHeight/window.innerWidth;var new_wd,new_ht;if(win_ratio<aspect_ratio){new_ht=window.innerHeight-250;new_wd=new_ht/aspect_ratio;}else{new_wd=window.innerWidth-400;new_ht=new_wd*aspect_ratio;}
$('.video-wrap #player_1').css('height',new_ht);$('.video-wrap').css('width',new_wd);}});jQuery(document).ready(function($){var carouselControlLinks=$('#work .carousel-controls a');var carouselList=$('#work ul');carouselList.jcarousel({visible:1,scroll:1,initCallback:function(carousel){carouselControlLinks.click(function(e){e.preventDefault();carousel.scroll($(this).prevAll().length+1);});},itemFirstInCallback:function(carousel,item,idx){carouselControlLinks.eq(idx-1).addClass('active').siblings().removeClass('active');}});});(function($){$.jGFeed('http://fueled.com/blog/feed/atom/',function(feed){$(document).ready(function(){var spotlightTemplate=$('#news-spotlight-template').html();var articleTemplate=$('#news-article-template').html();var articlePairTemplate=$('#news-article-pair-template').html();for(var i=0;i<feed.entries.length;i++){var imgSrc=$(feed.entries[i].content).find('img:eq(0)').attr('src');if(imgSrc){var spotlightEntry=feed.entries[i];feed.entries.splice(i,1);break;}}
var spotlightArticleHtml=$.substitute(articleTemplate,spotlightEntry);var spotlightHtml=$.substitute(spotlightTemplate,{imgSrc:imgSrc,article:spotlightArticleHtml});$('#news .spotlight').append(spotlightHtml);var end=Math.min(4,feed.entries.length);for(var i=0;i<end;i+=2){var articles={};for(var j=0;j<2;j++){var entry=feed.entries[i+j];$.extend(entry,{media:'web'});articles['article'+(j+1)]=$.substitute(articleTemplate,entry);}
var pairHtml=$.substitute(articlePairTemplate,articles);$('#news .list').append(pairHtml);}});},10);}(jQuery));

