/*
 * jQuery JavaScript Library v1.4.2
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Sat Feb 13 22:33:48 2010 -0500
 */
(function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context);},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,userAgent=navigator.userAgent,browserMatch,readyBound=false,readyList=[],DOMContentLoaded,toString=Object.prototype.toString,hasOwnProperty=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,indexOf=Array.prototype.indexOf;jQuery.fn=jQuery.prototype={init:function(selector,context){var match,elem,ret,doc;if(!selector){return this;}
if(selector.nodeType){this.context=this[0]=selector;this.length=1;return this;}
if(selector==="body"&&!context){this.context=document;this[0]=document.body;this.selector="body";this.length=1;return this;}
if(typeof selector==="string"){match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]){doc=(context?context.ownerDocument||context:document);ret=rsingleTag.exec(selector);if(ret){if(jQuery.isPlainObject(context)){selector=[document.createElement(ret[1])];jQuery.fn.attr.call(selector,context,true);}else{selector=[doc.createElement(ret[1])];}}else{ret=buildFragment([match[1]],[doc]);selector=(ret.cacheable?ret.fragment.cloneNode(true):ret.fragment).childNodes;}
return jQuery.merge(this,selector);}else{elem=document.getElementById(match[2]);if(elem){if(elem.id!==match[2]){return rootjQuery.find(selector);}
this.length=1;this[0]=elem;}
this.context=document;this.selector=selector;return this;}}else if(!context&&/^\w+$/.test(selector)){this.selector=selector;this.context=document;selector=document.getElementsByTagName(selector);return jQuery.merge(this,selector);}else if(!context||context.jquery){return(context||rootjQuery).find(selector);}else{return jQuery(context).find(selector);}}else if(jQuery.isFunction(selector)){return rootjQuery.ready(selector);}
if(selector.selector!==undefined){this.selector=selector.selector;this.context=selector.context;}
return jQuery.makeArray(selector,this);},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length;},toArray:function(){return slice.call(this,0);},get:function(num){return num==null?this.toArray():(num<0?this.slice(num)[0]:this[num]);},pushStack:function(elems,name,selector){var ret=jQuery();if(jQuery.isArray(elems)){push.apply(ret,elems);}else{jQuery.merge(ret,elems);}
ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector;}else if(name){ret.selector=this.selector+"."+name+"("+selector+")";}
return ret;},each:function(callback,args){return jQuery.each(this,callback,args);},ready:function(fn){jQuery.bindReady();if(jQuery.isReady){fn.call(document,jQuery);}else if(readyList){readyList.push(fn);}
return this;},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1);},first:function(){return this.eq(0);},last:function(){return this.eq(-1);},slice:function(){return this.pushStack(slice.apply(this,arguments),"slice",slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},end:function(){return this.prevObject||jQuery(null);},push:push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options,name,src,copy;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target)){target={};}
if(length===i){target=this;--i;}
for(;i<length;i++){if((options=arguments[i])!=null){for(name in options){src=target[name];copy=options[name];if(target===copy){continue;}
if(deep&&copy&&(jQuery.isPlainObject(copy)||jQuery.isArray(copy))){var clone=src&&(jQuery.isPlainObject(src)||jQuery.isArray(src))?src:jQuery.isArray(copy)?[]:{};target[name]=jQuery.extend(deep,clone,copy);}else if(copy!==undefined){target[name]=copy;}}}}
return target;};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep){window.jQuery=_jQuery;}
return jQuery;},isReady:false,ready:function(){if(!jQuery.isReady){if(!document.body){return setTimeout(jQuery.ready,13);}
jQuery.isReady=true;if(readyList){var fn,i=0;while((fn=readyList[i++])){fn.call(document,jQuery);}
readyList=null;}
if(jQuery.fn.triggerHandler){jQuery(document).triggerHandler("ready");}}},bindReady:function(){if(readyBound){return;}
readyBound=true;if(document.readyState==="complete"){return jQuery.ready();}
if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",jQuery.ready,false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",jQuery.ready);var toplevel=false;try{toplevel=window.frameElement==null;}catch(e){}
if(document.documentElement.doScroll&&toplevel){doScrollCheck();}}},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isPlainObject:function(obj){if(!obj||toString.call(obj)!=="[object Object]"||obj.nodeType||obj.setInterval){return false;}
if(obj.constructor&&!hasOwnProperty.call(obj,"constructor")&&!hasOwnProperty.call(obj.constructor.prototype,"isPrototypeOf")){return false;}
var key;for(key in obj){}
return key===undefined||hasOwnProperty.call(obj,key);},isEmptyObject:function(obj){for(var name in obj){return false;}
return true;},error:function(msg){throw msg;},parseJSON:function(data){if(typeof data!=="string"||!data){return null;}
data=jQuery.trim(data);if(/^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){return window.JSON&&window.JSON.parse?window.JSON.parse(data):(new Function("return "+data))();}else{jQuery.error("Invalid JSON: "+data);}},noop:function(){},globalEval:function(data){if(data&&rnotwhite.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval){script.appendChild(document.createTextNode(data));}else{script.text=data;}
head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()===name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length,isObj=length===undefined||jQuery.isFunction(object);if(args){if(isObj){for(name in object){if(callback.apply(object[name],args)===false){break;}}}else{for(;i<length;){if(callback.apply(object[i++],args)===false){break;}}}}else{if(isObj){for(name in object){if(callback.call(object[name],name,object[name])===false){break;}}}else{for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}}
return object;},trim:function(text){return(text||"").replace(rtrim,"");},makeArray:function(array,results){var ret=results||[];if(array!=null){if(array.length==null||typeof array==="string"||jQuery.isFunction(array)||(typeof array!=="function"&&array.setInterval)){push.call(ret,array);}else{jQuery.merge(ret,array);}}
return ret;},inArray:function(elem,array){if(array.indexOf){return array.indexOf(elem);}
for(var i=0,length=array.length;i<length;i++){if(array[i]===elem){return i;}}
return-1;},merge:function(first,second){var i=first.length,j=0;if(typeof second.length==="number"){for(var l=second.length;j<l;j++){first[i++]=second[j];}}else{while(second[j]!==undefined){first[i++]=second[j++];}}
first.length=i;return first;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++){if(!inv!==!callback(elems[i],i)){ret.push(elems[i]);}}
return ret;},map:function(elems,callback,arg){var ret=[],value;for(var i=0,length=elems.length;i<length;i++){value=callback(elems[i],i,arg);if(value!=null){ret[ret.length]=value;}}
return ret.concat.apply([],ret);},guid:1,proxy:function(fn,proxy,thisObject){if(arguments.length===2){if(typeof proxy==="string"){thisObject=fn;fn=thisObject[proxy];proxy=undefined;}else if(proxy&&!jQuery.isFunction(proxy)){thisObject=proxy;proxy=undefined;}}
if(!proxy&&fn){proxy=function(){return fn.apply(thisObject||this,arguments);};}
if(fn){proxy.guid=fn.guid=fn.guid||proxy.guid||jQuery.guid++;}
return proxy;},uaMatch:function(ua){ua=ua.toLowerCase();var match=/(webkit)[ \/]([\w.]+)/.exec(ua)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(ua)||/(msie) ([\w.]+)/.exec(ua)||!/compatible/.test(ua)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(ua)||[];return{browser:match[1]||"",version:match[2]||"0"};},browser:{}});browserMatch=jQuery.uaMatch(userAgent);if(browserMatch.browser){jQuery.browser[browserMatch.browser]=true;jQuery.browser.version=browserMatch.version;}
if(jQuery.browser.webkit){jQuery.browser.safari=true;}
if(indexOf){jQuery.inArray=function(elem,array){return indexOf.call(array,elem);};}
rootjQuery=jQuery(document);if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);jQuery.ready();};}else if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);jQuery.ready();}};}
function doScrollCheck(){if(jQuery.isReady){return;}
try{document.documentElement.doScroll("left");}catch(error){setTimeout(doScrollCheck,1);return;}
jQuery.ready();}
function evalScript(i,elem){if(elem.src){jQuery.ajax({url:elem.src,async:false,dataType:"script"});}else{jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");}
if(elem.parentNode){elem.parentNode.removeChild(elem);}}
function access(elems,key,value,exec,fn,pass){var length=elems.length;if(typeof key==="object"){for(var k in key){access(elems,k,key[k],exec,fn,value);}
return elems;}
if(value!==undefined){exec=!pass&&exec&&jQuery.isFunction(value);for(var i=0;i<length;i++){fn(elems[i],key,exec?value.call(elems[i],i,fn(elems[i],key)):value,pass);}
return elems;}
return length?fn(elems[0],key):undefined;}
function now(){return(new Date).getTime();}
(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+now();div.style.display="none";div.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType===3,tbody:!div.getElementsByTagName("tbody").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:/^0.55$/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:div.getElementsByTagName("input")[0].value==="on",optSelected:document.createElement("select").appendChild(document.createElement("option")).selected,parentNode:div.removeChild(div.appendChild(document.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
try{delete script.test;}catch(e){jQuery.support.deleteExpando=false;}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function click(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",click);});div.cloneNode(true).fireEvent("onclick");}
div=document.createElement("div");div.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var fragment=document.createDocumentFragment();fragment.appendChild(div.firstChild);jQuery.support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';div=null;});var eventSupported=function(eventName){var el=document.createElement("div");eventName="on"+eventName;var isSupported=(eventName in el);if(!isSupported){el.setAttribute(eventName,"return;");isSupported=typeof el[eventName]==="function";}
el=null;return isSupported;};jQuery.support.submitBubbles=eventSupported("submit");jQuery.support.changeBubbles=eventSupported("change");root=script=div=all=a=null;})();jQuery.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({cache:{},expando:expando,noData:{"embed":true,"object":true,"applet":true},data:function(elem,name,data){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return;}
elem=elem==window?windowData:elem;var id=elem[expando],cache=jQuery.cache,thisCache;if(!id&&typeof name==="string"&&data===undefined){return null;}
if(!id){id=++uuid;}
if(typeof name==="object"){elem[expando]=id;thisCache=cache[id]=jQuery.extend(true,{},name);}else if(!cache[id]){elem[expando]=id;cache[id]={};}
thisCache=cache[id];if(data!==undefined){thisCache[name]=data;}
return typeof name==="string"?thisCache[name]:thisCache;},removeData:function(elem,name){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return;}
elem=elem==window?windowData:elem;var id=elem[expando],cache=jQuery.cache,thisCache=cache[id];if(name){if(thisCache){delete thisCache[name];if(jQuery.isEmptyObject(thisCache)){jQuery.removeData(elem);}}}else{if(jQuery.support.deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}
delete cache[id];}}});jQuery.fn.extend({data:function(key,value){if(typeof key==="undefined"&&this.length){return jQuery.data(this[0]);}else if(typeof key==="object"){return this.each(function(){jQuery.data(this,key);});}
var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key);}
return data===undefined&&parts[1]?this.data(parts[0]):data;}else{return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});}});jQuery.extend({queue:function(elem,type,data){if(!elem){return;}
type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!data){return q||[];}
if(!q||jQuery.isArray(data)){q=jQuery.data(elem,type,jQuery.makeArray(data));}else{q.push(data);}
return q;},dequeue:function(elem,type){type=type||"fx";var queue=jQuery.queue(elem,type),fn=queue.shift();if(fn==="inprogress"){fn=queue.shift();}
if(fn){if(type==="fx"){queue.unshift("inprogress");}
fn.call(elem,function(){jQuery.dequeue(elem,type);});}}});jQuery.fn.extend({queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined){return jQuery.queue(this[0],type);}
return this.each(function(i,elem){var queue=jQuery.queue(this,type,data);if(type==="fx"&&queue[0]!=="inprogress"){jQuery.dequeue(this,type);}});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});},delay:function(time,type){time=jQuery.fx?jQuery.fx.speeds[time]||time:time;type=type||"fx";return this.queue(type,function(){var elem=this;setTimeout(function(){jQuery.dequeue(elem,type);},time);});},clearQueue:function(type){return this.queue(type||"fx",[]);}});var rclass=/[\n\t]/g,rspace=/\s+/,rreturn=/\r/g,rspecialurl=/href|src|style/,rtype=/(button|input)/i,rfocusable=/(button|input|object|select|textarea)/i,rclickable=/^(a|area)$/i,rradiocheck=/radio|checkbox/;jQuery.fn.extend({attr:function(name,value){return access(this,name,value,true,jQuery.attr);},removeAttr:function(name,fn){return this.each(function(){jQuery.attr(this,name,"");if(this.nodeType===1){this.removeAttribute(name);}});},addClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.addClass(value.call(this,i,self.attr("class")));});}
if(value&&typeof value==="string"){var classNames=(value||"").split(rspace);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1){if(!elem.className){elem.className=value;}else{var className=" "+elem.className+" ",setClass=elem.className;for(var c=0,cl=classNames.length;c<cl;c++){if(className.indexOf(" "+classNames[c]+" ")<0){setClass+=" "+classNames[c];}}
elem.className=jQuery.trim(setClass);}}}}
return this;},removeClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.removeClass(value.call(this,i,self.attr("class")));});}
if((value&&typeof value==="string")||value===undefined){var classNames=(value||"").split(rspace);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1&&elem.className){if(value){var className=(" "+elem.className+" ").replace(rclass," ");for(var c=0,cl=classNames.length;c<cl;c++){className=className.replace(" "+classNames[c]+" "," ");}
elem.className=jQuery.trim(className);}else{elem.className="";}}}}
return this;},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.toggleClass(value.call(this,i,self.attr("class"),stateVal),stateVal);});}
return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(rspace);while((className=classNames[i++])){state=isBool?state:!self.hasClass(className);self[state?"addClass":"removeClass"](className);}}else if(type==="undefined"||type==="boolean"){if(this.className){jQuery.data(this,"__className__",this.className);}
this.className=this.className||value===false?"":jQuery.data(this,"__className__")||"";}});},hasClass:function(selector){var className=" "+selector+" ";for(var i=0,l=this.length;i<l;i++){if((" "+this[i].className+" ").replace(rclass," ").indexOf(className)>-1){return true;}}
return false;},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,"option")){return(elem.attributes.value||{}).specified?elem.value:elem.text;}
if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type==="select-one";if(index<0){return null;}
for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one){return value;}
values.push(value);}}
return values;}
if(rradiocheck.test(elem.type)&&!jQuery.support.checkOn){return elem.getAttribute("value")===null?"on":elem.value;}
return(elem.value||"").replace(rreturn,"");}
return undefined;}
var isFunction=jQuery.isFunction(value);return this.each(function(i){var self=jQuery(this),val=value;if(this.nodeType!==1){return;}
if(isFunction){val=value.call(this,i,self.val());}
if(typeof val==="number"){val+="";}
if(jQuery.isArray(val)&&rradiocheck.test(this.type)){this.checked=jQuery.inArray(self.val(),val)>=0;}else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(val);jQuery("option",this).each(function(){this.selected=jQuery.inArray(jQuery(this).val(),values)>=0;});if(!values.length){this.selectedIndex=-1;}}else{this.value=val;}});}});jQuery.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(elem,name,value,pass){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
if(pass&&name in jQuery.attrFn){return jQuery(elem)[name](value);}
var notxml=elem.nodeType!==1||!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.nodeType===1){var special=rspecialurl.test(name);if(name==="selected"&&!jQuery.support.optSelected){var parent=elem.parentNode;if(parent){parent.selectedIndex;if(parent.parentNode){parent.parentNode.selectedIndex;}}}
if(name in elem&&notxml&&!special){if(set){if(name==="type"&&rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("type property can't be changed");}
elem[name]=value;}
if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name)){return elem.getAttributeNode(name).nodeValue;}
if(name==="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name==="style"){if(set){elem.style.cssText=""+value;}
return elem.style.cssText;}
if(set){elem.setAttribute(name,""+value);}
var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
return jQuery.style(elem,name,value);}});var rnamespaces=/\.(.*)$/,fcleanup=function(nm){return nm.replace(/[^\w\s\.\|`]/g,function(ch){return"\\"+ch;});};jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return;}
if(elem.setInterval&&(elem!==window&&!elem.frameElement)){elem=window;}
var handleObjIn,handleObj;if(handler.handler){handleObjIn=handler;handler=handleObjIn.handler;}
if(!handler.guid){handler.guid=jQuery.guid++;}
var elemData=jQuery.data(elem);if(!elemData){return;}
var events=elemData.events=elemData.events||{},eventHandle=elemData.handle,eventHandle;if(!eventHandle){elemData.handle=eventHandle=function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined;};}
eventHandle.elem=elem;types=types.split(" ");var type,i=0,namespaces;while((type=types[i++])){handleObj=handleObjIn?jQuery.extend({},handleObjIn):{handler:handler,data:data};if(type.indexOf(".")>-1){namespaces=type.split(".");type=namespaces.shift();handleObj.namespace=namespaces.slice(0).sort().join(".");}else{namespaces=[];handleObj.namespace="";}
handleObj.type=type;handleObj.guid=handler.guid;var handlers=events[type],special=jQuery.event.special[type]||{};if(!handlers){handlers=events[type]=[];if(!special.setup||special.setup.call(elem,data,namespaces,eventHandle)===false){if(elem.addEventListener){elem.addEventListener(type,eventHandle,false);}else if(elem.attachEvent){elem.attachEvent("on"+type,eventHandle);}}}
if(special.add){special.add.call(elem,handleObj);if(!handleObj.handler.guid){handleObj.handler.guid=handler.guid;}}
handlers.push(handleObj);jQuery.event.global[type]=true;}
elem=null;},global:{},remove:function(elem,types,handler,pos){if(elem.nodeType===3||elem.nodeType===8){return;}
var ret,type,fn,i=0,all,namespaces,namespace,special,eventType,handleObj,origType,elemData=jQuery.data(elem),events=elemData&&elemData.events;if(!elemData||!events){return;}
if(types&&types.type){handler=types.handler;types=types.type;}
if(!types||typeof types==="string"&&types.charAt(0)==="."){types=types||"";for(type in events){jQuery.event.remove(elem,type+types);}
return;}
types=types.split(" ");while((type=types[i++])){origType=type;handleObj=null;all=type.indexOf(".")<0;namespaces=[];if(!all){namespaces=type.split(".");type=namespaces.shift();namespace=new RegExp("(^|\\.)"+
jQuery.map(namespaces.slice(0).sort(),fcleanup).join("\\.(?:.*\\.)?")+"(\\.|$)")}
eventType=events[type];if(!eventType){continue;}
if(!handler){for(var j=0;j<eventType.length;j++){handleObj=eventType[j];if(all||namespace.test(handleObj.namespace)){jQuery.event.remove(elem,origType,handleObj.handler,j);eventType.splice(j--,1);}}
continue;}
special=jQuery.event.special[type]||{};for(var j=pos||0;j<eventType.length;j++){handleObj=eventType[j];if(handler.guid===handleObj.guid){if(all||namespace.test(handleObj.namespace)){if(pos==null){eventType.splice(j--,1);}
if(special.remove){special.remove.call(elem,handleObj);}}
if(pos!=null){break;}}}
if(eventType.length===0||pos!=null&&eventType.length===1){if(!special.teardown||special.teardown.call(elem,namespaces)===false){removeEvent(elem,type,elemData.handle);}
ret=null;delete events[type];}}
if(jQuery.isEmptyObject(events)){var handle=elemData.handle;if(handle){handle.elem=null;}
delete elemData.events;delete elemData.handle;if(jQuery.isEmptyObject(elemData)){jQuery.removeData(elem);}}},trigger:function(event,data,elem){var type=event.type||event,bubbling=arguments[3];if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(jQuery.event.global[type]){jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type]){jQuery.event.trigger(event,data,this.handle.elem);}});}}
if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle){handle.apply(elem,data);}
var parent=elem.parentNode||elem.ownerDocument;try{if(!(elem&&elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()])){if(elem["on"+type]&&elem["on"+type].apply(elem,data)===false){event.result=false;}}}catch(e){}
if(!event.isPropagationStopped()&&parent){jQuery.event.trigger(event,data,parent,true);}else if(!event.isDefaultPrevented()){var target=event.target,old,isClick=jQuery.nodeName(target,"a")&&type==="click",special=jQuery.event.special[type]||{};if((!special._default||special._default.call(elem,event)===false)&&!isClick&&!(target&&target.nodeName&&jQuery.noData[target.nodeName.toLowerCase()])){try{if(target[type]){old=target["on"+type];if(old){target["on"+type]=null;}
jQuery.event.triggered=true;target[type]();}}catch(e){}
if(old){target["on"+type]=old;}
jQuery.event.triggered=false;}}},handle:function(event){var all,handlers,namespaces,namespace,events;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;all=event.type.indexOf(".")<0&&!event.exclusive;if(!all){namespaces=event.type.split(".");event.type=namespaces.shift();namespace=new RegExp("(^|\\.)"+namespaces.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)");}
var events=jQuery.data(this,"events"),handlers=events[event.type];if(events&&handlers){handlers=handlers.slice(0);for(var j=0,l=handlers.length;j<l;j++){var handleObj=handlers[j];if(all||namespace.test(handleObj.namespace)){event.handler=handleObj.handler;event.data=handleObj.data;event.handleObj=handleObj;var ret=handleObj.handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped()){break;}}}}
return event.result;},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando]){return event;}
var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
if(!event.target){event.target=event.srcElement||document;}
if(event.target.nodeType===3){event.target=event.target.parentNode;}
if(!event.relatedTarget&&event.fromElement){event.relatedTarget=event.fromElement===event.target?event.toElement:event.fromElement;}
if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc&&doc.clientLeft||body&&body.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.clientTop||0);}
if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode)){event.which=event.charCode||event.keyCode;}
if(!event.metaKey&&event.ctrlKey){event.metaKey=event.ctrlKey;}
if(!event.which&&event.button!==undefined){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));}
return event;},guid:1E8,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(handleObj){jQuery.event.add(this,handleObj.origType,jQuery.extend({},handleObj,{handler:liveHandler}));},remove:function(handleObj){var remove=true,type=handleObj.origType.replace(rnamespaces,"");jQuery.each(jQuery.data(this,"events").live||[],function(){if(type===this.origType.replace(rnamespaces,"")){remove=false;return false;}});if(remove){jQuery.event.remove(this,handleObj.origType,liveHandler);}}},beforeunload:{setup:function(data,namespaces,eventHandle){if(this.setInterval){this.onbeforeunload=eventHandle;}
return false;},teardown:function(namespaces,eventHandle){if(this.onbeforeunload===eventHandle){this.onbeforeunload=null;}}}}};var removeEvent=document.removeEventListener?function(elem,type,handle){elem.removeEventListener(type,handle,false);}:function(elem,type,handle){elem.detachEvent("on"+type,handle);};jQuery.Event=function(src){if(!this.preventDefault){return new jQuery.Event(src);}
if(src&&src.type){this.originalEvent=src;this.type=src.type;}else{this.type=src;}
this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.preventDefault){e.preventDefault();}
e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.stopPropagation){e.stopPropagation();}
e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;try{while(parent&&parent!==this){parent=parent.parentNode;}
if(parent!==this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}}catch(e){}},delegate=function(event){event.type=event.data;jQuery.event.handle.apply(this,arguments);};jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={setup:function(data){jQuery.event.add(this,fix,data&&data.selector?delegate:withinElement,orig);},teardown:function(data){jQuery.event.remove(this,fix,data&&data.selector?delegate:withinElement);}};});if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(data,namespaces){if(this.nodeName.toLowerCase()!=="form"){jQuery.event.add(this,"click.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){return trigger("submit",this,arguments);}});jQuery.event.add(this,"keypress.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){return trigger("submit",this,arguments);}});}else{return false;}},teardown:function(namespaces){jQuery.event.remove(this,".specialSubmit");}};}
if(!jQuery.support.changeBubbles){var formElems=/textarea|input|select/i,changeFilters,getVal=function(elem){var type=elem.type,val=elem.value;if(type==="radio"||type==="checkbox"){val=elem.checked;}else if(type==="select-multiple"){val=elem.selectedIndex>-1?jQuery.map(elem.options,function(elem){return elem.selected;}).join("-"):"";}else if(elem.nodeName.toLowerCase()==="select"){val=elem.selectedIndex;}
return val;},testChange=function testChange(e){var elem=e.target,data,val;if(!formElems.test(elem.nodeName)||elem.readOnly){return;}
data=jQuery.data(elem,"_change_data");val=getVal(elem);if(e.type!=="focusout"||elem.type!=="radio"){jQuery.data(elem,"_change_data",val);}
if(data===undefined||val===data){return;}
if(data!=null||val){e.type="change";return jQuery.event.trigger(e,arguments[1],elem);}};jQuery.event.special.change={filters:{focusout:testChange,click:function(e){var elem=e.target,type=elem.type;if(type==="radio"||type==="checkbox"||elem.nodeName.toLowerCase()==="select"){return testChange.call(this,e);}},keydown:function(e){var elem=e.target,type=elem.type;if((e.keyCode===13&&elem.nodeName.toLowerCase()!=="textarea")||(e.keyCode===32&&(type==="checkbox"||type==="radio"))||type==="select-multiple"){return testChange.call(this,e);}},beforeactivate:function(e){var elem=e.target;jQuery.data(elem,"_change_data",getVal(elem));}},setup:function(data,namespaces){if(this.type==="file"){return false;}
for(var type in changeFilters){jQuery.event.add(this,type+".specialChange",changeFilters[type]);}
return formElems.test(this.nodeName);},teardown:function(namespaces){jQuery.event.remove(this,".specialChange");return formElems.test(this.nodeName);}};changeFilters=jQuery.event.special.change.filters;}
function trigger(type,elem,args){args[0].type=type;return jQuery.event.handle.apply(elem,args);}
if(document.addEventListener){jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){jQuery.event.special[fix]={setup:function(){this.addEventListener(orig,handler,true);},teardown:function(){this.removeEventListener(orig,handler,true);}};function handler(e){e=jQuery.event.fix(e);e.type=fix;return jQuery.event.handle.call(this,e);}});}
jQuery.each(["bind","one"],function(i,name){jQuery.fn[name]=function(type,data,fn){if(typeof type==="object"){for(var key in type){this[name](key,data,type[key],fn);}
return this;}
if(jQuery.isFunction(data)){fn=data;data=undefined;}
var handler=name==="one"?jQuery.proxy(fn,function(event){jQuery(this).unbind(event,handler);return fn.apply(this,arguments);}):fn;if(type==="unload"&&name!=="one"){this.one(type,data,fn);}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.add(this[i],type,handler,data);}}
return this;};});jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key]);}}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.remove(this[i],type,fn);}}
return this;},delegate:function(selector,types,data,fn){return this.live(types,data,fn,selector);},undelegate:function(selector,types,fn){if(arguments.length===0){return this.unbind("live");}else{return this.die(types,null,fn,selector);}},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length){jQuery.proxy(fn,args[i++]);}
return this.click(jQuery.proxy(fn,function(event){var lastToggle=(jQuery.data(this,"lastToggle"+fn.guid)||0)%i;jQuery.data(this,"lastToggle"+fn.guid,lastToggle+1);event.preventDefault();return args[lastToggle].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver);}});var liveMap={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};jQuery.each(["live","die"],function(i,name){jQuery.fn[name]=function(types,data,fn,origSelector){var type,i=0,match,namespaces,preType,selector=origSelector||this.selector,context=origSelector?this:jQuery(this.context);if(jQuery.isFunction(data)){fn=data;data=undefined;}
types=(types||"").split(" ");while((type=types[i++])!=null){match=rnamespaces.exec(type);namespaces="";if(match){namespaces=match[0];type=type.replace(rnamespaces,"");}
if(type==="hover"){types.push("mouseenter"+namespaces,"mouseleave"+namespaces);continue;}
preType=type;if(type==="focus"||type==="blur"){types.push(liveMap[type]+namespaces);type=type+namespaces;}else{type=(liveMap[type]||type)+namespaces;}
if(name==="live"){context.each(function(){jQuery.event.add(this,liveConvert(type,selector),{data:data,selector:selector,handler:fn,origType:type,origHandler:fn,preType:preType});});}else{context.unbind(liveConvert(type,selector),fn);}}
return this;}});function liveHandler(event){var stop,elems=[],selectors=[],args=arguments,related,match,handleObj,elem,j,i,l,data,events=jQuery.data(this,"events");if(event.liveFired===this||!events||!events.live||event.button&&event.type==="click"){return;}
event.liveFired=this;var live=events.live.slice(0);for(j=0;j<live.length;j++){handleObj=live[j];if(handleObj.origType.replace(rnamespaces,"")===event.type){selectors.push(handleObj.selector);}else{live.splice(j--,1);}}
match=jQuery(event.target).closest(selectors,event.currentTarget);for(i=0,l=match.length;i<l;i++){for(j=0;j<live.length;j++){handleObj=live[j];if(match[i].selector===handleObj.selector){elem=match[i].elem;related=null;if(handleObj.preType==="mouseenter"||handleObj.preType==="mouseleave"){related=jQuery(event.relatedTarget).closest(handleObj.selector)[0];}
if(!related||related!==elem){elems.push({elem:elem,handleObj:handleObj});}}}}
for(i=0,l=elems.length;i<l;i++){match=elems[i];event.currentTarget=match.elem;event.data=match.handleObj.data;event.handleObj=match.handleObj;if(match.handleObj.origHandler.apply(match.elem,args)===false){stop=false;break;}}
return stop;}
function liveConvert(type,selector){return"live."+(type&&type!=="*"?type+".":"")+selector.replace(/\./g,"`").replace(/ /g,"&");}
jQuery.each(("blur focus focusin focusout load resize scroll unload click dblclick "+"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave "+"change select submit keydown keypress keyup error").split(" "),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};if(jQuery.attrFn){jQuery.attrFn[name]=true;}});if(window.attachEvent&&!window.addEventListener){window.attachEvent("onunload",function(){for(var id in jQuery.cache){if(jQuery.cache[id].handle){try{jQuery.event.remove(jQuery.cache[id].handle.elem);}catch(e){}}}});}
/*
 * Sizzle CSS Selector Engine - v1.0
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;[0,0].sort(function(){baseHasDuplicate=false;return 0;});var Sizzle=function(selector,context,results,seed){results=results||[];var origContext=context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[];}
if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,extra,prune=true,contextXML=isXML(context),soFar=selector;while((chunker.exec(""),m=chunker.exec(soFar))!==null){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift();}
set=posProcess(selector,set);}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}
if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,contextXML);}}else{checkSet=parts=[];}}
if(!checkSet){checkSet=set;}
if(!checkSet){Sizzle.error(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context&&context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,origContext,results,seed);Sizzle.uniqueSort(results);}
return results;};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.leftMatch[type].exec(expr))){var left=match[1];match.splice(1,1);if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.leftMatch[type].exec(expr))!=null&&match[2]){var filter=Expr.filter[type],found,item,left=match[1];anyFound=false;match.splice(1,1);if(left.substr(left.length-1)==="\\"){continue;}
if(curLoop===result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr===old){if(anyFound==null){Sizzle.error(expr);}else{break;}}
old=expr;}
return curLoop;};Sizzle.error=function(msg){throw"Syntax error, unrecognized expression: "+msg;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag){part=part.toLowerCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName.toLowerCase()===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").replace(/[\t\n]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem);}}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){return match[1].toLowerCase();},CHILD:function(match){if(match[1]==="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]==="even"&&"2n"||match[2]==="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if((chunker.exec(match[3])||"").length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return /h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toLowerCase()==="button";},input:function(elem){return /input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0===i;},eq:function(elem,i,match){return match[3]-0===i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||getText([elem])||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}else{Sizzle.error("Syntax error, unrecognized expression: "+name);}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while((node=node.previousSibling)){if(node.nodeType===1){return false;}}
if(type==="first"){return true;}
node=elem;case'last':while((node=node.nextSibling)){if(node.nodeType===1){return false;}}
return true;case'nth':var first=match[2],last=match[3];if(first===1&&last===0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first===0){return diff===0;}else{return(diff%first===0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source.replace(/\\(\d+)/g,function(all,num){return"\\"+(num-0+1);}));}
var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes,0)[0].nodeType;}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true;}
return a.compareDocumentPosition?-1:1;}
var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true;}
return a.sourceIndex?-1:1;}
var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true;}
return a.ownerDocument?-1:1;}
var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.setStart(a,0);aRange.setEnd(a,0);bRange.setStart(b,0);bRange.setEnd(b,0);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
function getText(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue;}else if(elem.nodeType!==8){ret+=getText(elem.childNodes);}}
return ret;}
(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();form.innerHTML="<a name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);root=form=null;})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}
div=null;})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();}
(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return;}
div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return;}
Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};div=null;})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName.toLowerCase()===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return!!(a.compareDocumentPosition(b)&16);}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;jQuery.unique=Sizzle.uniqueSort;jQuery.text=getText;jQuery.isXMLDoc=isXML;jQuery.contains=contains;return;window.Sizzle=Sizzle;})();var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,slice=Array.prototype.slice;var winnow=function(elements,qualifier,keep){if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){return!!qualifier.call(elem,i,elem)===keep;});}else if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return(elem===qualifier)===keep;});}else if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1;});if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep);}else{qualifier=jQuery.filter(qualifier,filtered);}}
return jQuery.grep(elements,function(elem,i){return(jQuery.inArray(elem,qualifier)>=0)===keep;});};jQuery.fn.extend({find:function(selector){var ret=this.pushStack("","find",selector),length=0;for(var i=0,l=this.length;i<l;i++){length=ret.length;jQuery.find(selector,this[i],ret);if(i>0){for(var n=length;n<ret.length;n++){for(var r=0;r<length;r++){if(ret[r]===ret[n]){ret.splice(n--,1);break;}}}}}
return ret;},has:function(target){var targets=jQuery(target);return this.filter(function(){for(var i=0,l=targets.length;i<l;i++){if(jQuery.contains(this,targets[i])){return true;}}});},not:function(selector){return this.pushStack(winnow(this,selector,false),"not",selector);},filter:function(selector){return this.pushStack(winnow(this,selector,true),"filter",selector);},is:function(selector){return!!selector&&jQuery.filter(selector,this).length>0;},closest:function(selectors,context){if(jQuery.isArray(selectors)){var ret=[],cur=this[0],match,matches={},selector;if(cur&&selectors.length){for(var i=0,l=selectors.length;i<l;i++){selector=selectors[i];if(!matches[selector]){matches[selector]=jQuery.expr.match.POS.test(selector)?jQuery(selector,context||this.context):selector;}}
while(cur&&cur.ownerDocument&&cur!==context){for(selector in matches){match=matches[selector];if(match.jquery?match.index(cur)>-1:jQuery(cur).is(match)){ret.push({selector:selector,elem:cur});delete matches[selector];}}
cur=cur.parentNode;}}
return ret;}
var pos=jQuery.expr.match.POS.test(selectors)?jQuery(selectors,context||this.context):null;return this.map(function(i,cur){while(cur&&cur.ownerDocument&&cur!==context){if(pos?pos.index(cur)>-1:jQuery(cur).is(selectors)){return cur;}
cur=cur.parentNode;}
return null;});},index:function(elem){if(!elem||typeof elem==="string"){return jQuery.inArray(this[0],elem?jQuery(elem):this.parent().children());}
return jQuery.inArray(elem.jquery?elem[0]:elem,this);},add:function(selector,context){var set=typeof selector==="string"?jQuery(selector,context||this.context):jQuery.makeArray(selector),all=jQuery.merge(this.get(),set);return this.pushStack(isDisconnected(set[0])||isDisconnected(all[0])?all:jQuery.unique(all));},andSelf:function(){return this.add(this.prevObject);}});function isDisconnected(node){return!node||!node.parentNode||node.parentNode.nodeType===11;}
jQuery.each({parent:function(elem){var parent=elem.parentNode;return parent&&parent.nodeType!==11?parent:null;},parents:function(elem){return jQuery.dir(elem,"parentNode");},parentsUntil:function(elem,i,until){return jQuery.dir(elem,"parentNode",until);},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},nextUntil:function(elem,i,until){return jQuery.dir(elem,"nextSibling",until);},prevUntil:function(elem,i,until){return jQuery.dir(elem,"previousSibling",until);},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(until,selector){var ret=jQuery.map(this,fn,until);if(!runtil.test(name)){selector=until;}
if(selector&&typeof selector==="string"){ret=jQuery.filter(selector,ret);}
ret=this.length>1?jQuery.unique(ret):ret;if((this.length>1||rmultiselector.test(selector))&&rparentsprev.test(name)){ret=ret.reverse();}
return this.pushStack(ret,name,slice.call(arguments).join(","));};});jQuery.extend({filter:function(expr,elems,not){if(not){expr=":not("+expr+")";}
return jQuery.find.matches(expr,elems);},dir:function(elem,dir,until){var matched=[],cur=elem[dir];while(cur&&cur.nodeType!==9&&(until===undefined||cur.nodeType!==1||!jQuery(cur).is(until))){if(cur.nodeType===1){matched.push(cur);}
cur=cur[dir];}
return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]){if(cur.nodeType===1&&++num===result){break;}}
return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType===1&&n!==elem){r.push(n);}}
return r;}});var rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/(<([\w:]+)[^>]*?)\/>/g,rselfClosing=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&#?\w+;/,rnocache=/<script|<object|<embed|<option|<style/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,fcloseTag=function(all,front,tag){return rselfClosing.test(tag)?all:front+"></"+tag+">";},wrapMap={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};wrapMap.optgroup=wrapMap.option;wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead;wrapMap.th=wrapMap.td;if(!jQuery.support.htmlSerialize){wrapMap._default=[1,"div<div>","</div>"];}
jQuery.fn.extend({text:function(text){if(jQuery.isFunction(text)){return this.each(function(i){var self=jQuery(this);self.text(text.call(this,i,self.text()));});}
if(typeof text!=="object"&&text!==undefined){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));}
return jQuery.text(this);},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i));});}
if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){wrap.insertBefore(this[0]);}
wrap.map(function(){var elem=this;while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild;}
return elem;}).append(this);}
return this;},wrapInner:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapInner(html.call(this,i));});}
return this.each(function(){var self=jQuery(this),contents=self.contents();if(contents.length){contents.wrapAll(html);}else{self.append(html);}});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes);}}).end();},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.appendChild(elem);}});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.insertBefore(elem,this.firstChild);}});},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});}else if(arguments.length){var set=jQuery(arguments[0]);set.push.apply(set,this.toArray());return this.pushStack(set,"before",arguments);}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});}else if(arguments.length){var set=this.pushStack(this,"after",arguments);set.push.apply(set,jQuery(arguments[0]).toArray());return set;}},remove:function(selector,keepData){for(var i=0,elem;(elem=this[i])!=null;i++){if(!selector||jQuery.filter(selector,[elem]).length){if(!keepData&&elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));jQuery.cleanData([elem]);}
if(elem.parentNode){elem.parentNode.removeChild(elem);}}}
return this;},empty:function(){for(var i=0,elem;(elem=this[i])!=null;i++){if(elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));}
while(elem.firstChild){elem.removeChild(elem.firstChild);}}
return this;},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML,ownerDocument=this.ownerDocument;if(!html){var div=ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(rinlinejQuery,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(rleadingWhitespace,"")],ownerDocument)[0];}else{return this.cloneNode(true);}});if(events===true){cloneCopyEvent(this,ret);cloneCopyEvent(this.find("*"),ret.find("*"));}
return ret;},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null;}else if(typeof value==="string"&&!rnocache.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,fcloseTag);try{for(var i=0,l=this.length;i<l;i++){if(this[i].nodeType===1){jQuery.cleanData(this[i].getElementsByTagName("*"));this[i].innerHTML=value;}}}catch(e){this.empty().append(value);}}else if(jQuery.isFunction(value)){this.each(function(i){var self=jQuery(this),old=self.html();self.empty().append(function(){return value.call(this,i,old);});});}else{this.empty().append(value);}
return this;},replaceWith:function(value){if(this[0]&&this[0].parentNode){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this),old=self.html();self.replaceWith(value.call(this,i,old));});}
if(typeof value!=="string"){value=jQuery(value).detach();}
return this.each(function(){var next=this.nextSibling,parent=this.parentNode;jQuery(this).remove();if(next){jQuery(next).before(value);}else{jQuery(parent).append(value);}});}else{return this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value);}},detach:function(selector){return this.remove(selector,true);},domManip:function(args,table,callback){var results,first,value=args[0],scripts=[],fragment,parent;if(!jQuery.support.checkClone&&arguments.length===3&&typeof value==="string"&&rchecked.test(value)){return this.each(function(){jQuery(this).domManip(args,table,callback,true);});}
if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);args[0]=value.call(this,i,table?self.html():undefined);self.domManip(args,table,callback);});}
if(this[0]){parent=value&&value.parentNode;if(jQuery.support.parentNode&&parent&&parent.nodeType===11&&parent.childNodes.length===this.length){results={fragment:parent};}else{results=buildFragment(args,this,scripts);}
fragment=results.fragment;if(fragment.childNodes.length===1){first=fragment=fragment.firstChild;}else{first=fragment.firstChild;}
if(first){table=table&&jQuery.nodeName(first,"tr");for(var i=0,l=this.length;i<l;i++){callback.call(table?root(this[i],first):this[i],i>0||results.cacheable||this.length>1?fragment.cloneNode(true):fragment);}}
if(scripts.length){jQuery.each(scripts,evalScript);}}
return this;function root(elem,cur){return jQuery.nodeName(elem,"table")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}});function cloneCopyEvent(orig,ret){var i=0;ret.each(function(){if(this.nodeName!==(orig[i]&&orig[i].nodeName)){return;}
var oldData=jQuery.data(orig[i++]),curData=jQuery.data(this,oldData),events=oldData&&oldData.events;if(events){delete curData.handle;curData.events={};for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}}});}
function buildFragment(args,nodes,scripts){var fragment,cacheable,cacheresults,doc=(nodes&&nodes[0]?nodes[0].ownerDocument||nodes[0]:document);if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&doc===document&&!rnocache.test(args[0])&&(jQuery.support.checkClone||!rchecked.test(args[0]))){cacheable=true;cacheresults=jQuery.fragments[args[0]];if(cacheresults){if(cacheresults!==1){fragment=cacheresults;}}}
if(!fragment){fragment=doc.createDocumentFragment();jQuery.clean(args,doc,fragment,scripts);}
if(cacheable){jQuery.fragments[args[0]]=cacheresults?fragment:1;}
return{fragment:fragment,cacheable:cacheable};}
jQuery.fragments={};jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector),parent=this.length===1&&this[0].parentNode;if(parent&&parent.nodeType===11&&parent.childNodes.length===1&&insert.length===1){insert[original](this[0]);return this;}else{for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,insert.selector);}};});jQuery.extend({clean:function(elems,context,fragment,scripts){context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;}
var ret=[];for(var i=0,elem;(elem=elems[i])!=null;i++){if(typeof elem==="number"){elem+="";}
if(!elem){continue;}
if(typeof elem==="string"&&!rhtml.test(elem)){elem=context.createTextNode(elem);}else if(typeof elem==="string"){elem=elem.replace(rxhtmlTag,fcloseTag);var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");div.innerHTML=wrap[1]+elem+wrap[2];while(depth--){div=div.lastChild;}
if(!jQuery.support.tbody){var hasBody=rtbody.test(elem),tbody=tag==="table"&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]==="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j]);}}}
if(!jQuery.support.leadingWhitespace&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild);}
elem=div.childNodes;}
if(elem.nodeType){ret.push(elem);}else{ret=jQuery.merge(ret,elem);}}
if(fragment){for(var i=0;ret[i];i++){if(scripts&&jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1){ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));}
fragment.appendChild(ret[i]);}}}
return ret;},cleanData:function(elems){var data,id,cache=jQuery.cache,special=jQuery.event.special,deleteExpando=jQuery.support.deleteExpando;for(var i=0,elem;(elem=elems[i])!=null;i++){id=elem[jQuery.expando];if(id){data=cache[id];if(data.events){for(var type in data.events){if(special[type]){jQuery.event.remove(elem,type);}else{removeEvent(elem,type,data.handle);}}}
if(deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}
delete cache[id];}}}});var rexclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,ralpha=/alpha\([^)]*\)/,ropacity=/opacity=([^)]*)/,rfloat=/float/i,rdashAlpha=/-([a-z])/ig,rupper=/([A-Z])/g,rnumpx=/^-?\d+(?:px)?$/i,rnum=/^-?\d/,cssShow={position:"absolute",visibility:"hidden",display:"block"},cssWidth=["Left","Right"],cssHeight=["Top","Bottom"],getComputedStyle=document.defaultView&&document.defaultView.getComputedStyle,styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat",fcamelCase=function(all,letter){return letter.toUpperCase();};jQuery.fn.css=function(name,value){return access(this,name,value,true,function(elem,name,value){if(value===undefined){return jQuery.curCSS(elem,name);}
if(typeof value==="number"&&!rexclude.test(name)){value+="px";}
jQuery.style(elem,name,value);});};jQuery.extend({style:function(elem,name,value){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
if((name==="width"||name==="height")&&parseFloat(value)<0){value=undefined;}
var style=elem.style||elem,set=value!==undefined;if(!jQuery.support.opacity&&name==="opacity"){if(set){style.zoom=1;var opacity=parseInt(value,10)+""==="NaN"?"":"alpha(opacity="+value*100+")";var filter=style.filter||jQuery.curCSS(elem,"filter")||"";style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):opacity;}
return style.filter&&style.filter.indexOf("opacity=")>=0?(parseFloat(ropacity.exec(style.filter)[1])/100)+"":"";}
if(rfloat.test(name)){name=styleFloat;}
name=name.replace(rdashAlpha,fcamelCase);if(set){style[name]=value;}
return style[name];},css:function(elem,name,force,extra){if(name==="width"||name==="height"){var val,props=cssShow,which=name==="width"?cssWidth:cssHeight;function getWH(){val=name==="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border"){return;}
jQuery.each(which,function(){if(!extra){val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;}
if(extra==="margin"){val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;}else{val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;}});}
if(elem.offsetWidth!==0){getWH();}else{jQuery.swap(elem,props,getWH);}
return Math.max(0,Math.round(val));}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style,filter;if(!jQuery.support.opacity&&name==="opacity"&&elem.currentStyle){ret=ropacity.test(elem.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";return ret===""?"1":ret;}
if(rfloat.test(name)){name=styleFloat;}
if(!force&&style&&style[name]){ret=style[name];}else if(getComputedStyle){if(rfloat.test(name)){name="float";}
name=name.replace(rupper,"-$1").toLowerCase();var defaultView=elem.ownerDocument.defaultView;if(!defaultView){return null;}
var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle){ret=computedStyle.getPropertyValue(name);}
if(name==="opacity"&&ret===""){ret="1";}}else if(elem.currentStyle){var camelCase=name.replace(rdashAlpha,fcamelCase);ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!rnumpx.test(ret)&&rnum.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=camelCase==="fontSize"?"1em":(ret||0);ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}
return ret;},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}
callback.call(elem);for(var name in options){elem.style[name]=old[name];}}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight,skip=elem.nodeName.toLowerCase()==="tr";return width===0&&height===0&&!skip?true:width>0&&height>0&&!skip?false:jQuery.curCSS(elem,"display")==="none";};jQuery.expr.filters.visible=function(elem){return!jQuery.expr.filters.hidden(elem);};}
var jsc=now(),rscript=/<script(.|\s)*?\/script>/gi,rselectTextarea=/select|textarea/i,rinput=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,jsre=/=\?(&|$)/,rquery=/\?/,rts=/(\?|&)_=.*?(&|$)/,rurl=/^(\w+:)?\/\/([^\/?#]+)/,r20=/%20/g,_load=jQuery.fn.load;jQuery.fn.extend({load:function(url,params,callback){if(typeof url!=="string"){return _load.call(this,url);}else if(!this.length){return this;}
var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}
var type="GET";if(params){if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){params=jQuery.param(params,jQuery.ajaxSettings.traditional);type="POST";}}
var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status==="success"||status==="notmodified"){self.html(selector?jQuery("<div />").append(res.responseText.replace(rscript,"")).find(selector):res.responseText);}
if(callback){self.each(callback,[res.responseText,status,res]);}}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||rselectTextarea.test(this.nodeName)||rinput.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;callback=data;data=null;}
return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;callback=data;data={};}
return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:window.XMLHttpRequest&&(window.location.protocol!=="file:"||!window.ActiveXObject)?function(){return new window.XMLHttpRequest();}:function(){try{return new window.ActiveXObject("Microsoft.XMLHTTP");}catch(e){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(origSettings){var s=jQuery.extend(true,{},jQuery.ajaxSettings,origSettings);var jsonp,status,data,callbackContext=origSettings&&origSettings.context||s,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional);}
if(s.dataType==="jsonp"){if(type==="GET"){if(!jsre.test(s.url)){s.url+=(rquery.test(s.url)?"&":"?")+(s.jsonp||"callback")+"=?";}}else if(!s.data||!jsre.test(s.data)){s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";}
s.dataType="json";}
if(s.dataType==="json"&&(s.data&&jsre.test(s.data)||jsre.test(s.url))){jsonp=s.jsonpCallback||("jsonp"+jsc++);if(s.data){s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");}
s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=window[jsonp]||function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}
if(head){head.removeChild(script);}};}
if(s.dataType==="script"&&s.cache===null){s.cache=false;}
if(s.cache===false&&type==="GET"){var ts=now();var ret=s.url.replace(rts,"$1_="+ts+"$2");s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"");}
if(s.data&&type==="GET"){s.url+=(rquery.test(s.url)?"&":"?")+s.data;}
if(s.global&&!jQuery.active++){jQuery.event.trigger("ajaxStart");}
var parts=rurl.exec(s.url),remote=parts&&(parts[1]&&parts[1]!==location.protocol||parts[2]!==location.host);if(s.dataType==="script"&&type==="GET"&&remote){var head=document.getElementsByTagName("head")[0]||document.documentElement;var script=document.createElement("script");script.src=s.url;if(s.scriptCharset){script.charset=s.scriptCharset;}
if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){done=true;success();complete();script.onload=script.onreadystatechange=null;if(head&&script.parentNode){head.removeChild(script);}}};}
head.insertBefore(script,head.firstChild);return undefined;}
var requestDone=false;var xhr=s.xhr();if(!xhr){return;}
if(s.username){xhr.open(type,s.url,s.async,s.username,s.password);}else{xhr.open(type,s.url,s.async);}
try{if(s.data||origSettings&&origSettings.contentType){xhr.setRequestHeader("Content-Type",s.contentType);}
if(s.ifModified){if(jQuery.lastModified[s.url]){xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]);}
if(jQuery.etag[s.url]){xhr.setRequestHeader("If-None-Match",jQuery.etag[s.url]);}}
if(!remote){xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");}
xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}
if(s.beforeSend&&s.beforeSend.call(callbackContext,xhr,s)===false){if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop");}
xhr.abort();return false;}
if(s.global){trigger("ajaxSend",[xhr,s]);}
var onreadystatechange=xhr.onreadystatechange=function(isTimeout){if(!xhr||xhr.readyState===0||isTimeout==="abort"){if(!requestDone){complete();}
requestDone=true;if(xhr){xhr.onreadystatechange=jQuery.noop;}}else if(!requestDone&&xhr&&(xhr.readyState===4||isTimeout==="timeout")){requestDone=true;xhr.onreadystatechange=jQuery.noop;status=isTimeout==="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";var errMsg;if(status==="success"){try{data=jQuery.httpData(xhr,s.dataType,s);}catch(err){status="parsererror";errMsg=err;}}
if(status==="success"||status==="notmodified"){if(!jsonp){success();}}else{jQuery.handleError(s,xhr,status,errMsg);}
complete();if(isTimeout==="timeout"){xhr.abort();}
if(s.async){xhr=null;}}};try{var oldAbort=xhr.abort;xhr.abort=function(){if(xhr){oldAbort.call(xhr);}
onreadystatechange("abort");};}catch(e){}
if(s.async&&s.timeout>0){setTimeout(function(){if(xhr&&!requestDone){onreadystatechange("timeout");}},s.timeout);}
try{xhr.send(type==="POST"||type==="PUT"||type==="DELETE"?s.data:null);}catch(e){jQuery.handleError(s,xhr,null,e);complete();}
if(!s.async){onreadystatechange();}
function success(){if(s.success){s.success.call(callbackContext,data,status,xhr);}
if(s.global){trigger("ajaxSuccess",[xhr,s]);}}
function complete(){if(s.complete){s.complete.call(callbackContext,xhr,status);}
if(s.global){trigger("ajaxComplete",[xhr,s]);}
if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop");}}
function trigger(type,args){(s.context?jQuery(s.context):jQuery.event).trigger(type,args);}
return xhr;},handleError:function(s,xhr,status,e){if(s.error){s.error.call(s.context||s,xhr,status,e);}
if(s.global){(s.context?jQuery(s.context):jQuery.event).trigger("ajaxError",[xhr,s,e]);}},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol==="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status===304||xhr.status===1223||xhr.status===0;}catch(e){}
return false;},httpNotModified:function(xhr,url){var lastModified=xhr.getResponseHeader("Last-Modified"),etag=xhr.getResponseHeader("Etag");if(lastModified){jQuery.lastModified[url]=lastModified;}
if(etag){jQuery.etag[url]=etag;}
return xhr.status===304||xhr.status===0;},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type")||"",xml=type==="xml"||!type&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.nodeName==="parsererror"){jQuery.error("parsererror");}
if(s&&s.dataFilter){data=s.dataFilter(data,type);}
if(typeof data==="string"){if(type==="json"||!type&&ct.indexOf("json")>=0){data=jQuery.parseJSON(data);}else if(type==="script"||!type&&ct.indexOf("javascript")>=0){jQuery.globalEval(data);}}
return data;},param:function(a,traditional){var s=[];if(traditional===undefined){traditional=jQuery.ajaxSettings.traditional;}
if(jQuery.isArray(a)||a.jquery){jQuery.each(a,function(){add(this.name,this.value);});}else{for(var prefix in a){buildParams(prefix,a[prefix]);}}
return s.join("&").replace(r20,"+");function buildParams(prefix,obj){if(jQuery.isArray(obj)){jQuery.each(obj,function(i,v){if(traditional||/\[\]$/.test(prefix)){add(prefix,v);}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v);}});}else if(!traditional&&obj!=null&&typeof obj==="object"){jQuery.each(obj,function(k,v){buildParams(prefix+"["+k+"]",v);});}else{add(prefix,obj);}}
function add(key,value){value=jQuery.isFunction(value)?value():value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value);}}});var elemdisplay={},rfxtypes=/toggle|show|hide/,rfxnum=/^([+-]=)?([\d+-.]+)(.*)$/,timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];jQuery.fn.extend({show:function(speed,callback){if(speed||speed===0){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var nodeName=this[i].nodeName,display;if(elemdisplay[nodeName]){display=elemdisplay[nodeName];}else{var elem=jQuery("<"+nodeName+" />").appendTo("body");display=elem.css("display");if(display==="none"){display="block";}
elem.remove();elemdisplay[nodeName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var j=0,k=this.length;j<k;j++){this[j].style.display=jQuery.data(this[j],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed||speed===0){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none"){jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));}}
for(var j=0,k=this.length;j<k;j++){this[j].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";if(jQuery.isFunction(fn)&&jQuery.isFunction(fn2)){this._toggle.apply(this,arguments);}else if(fn==null||bool){this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();});}else{this.animate(genFx("toggle",3),fn,fn2);}
return this;},fadeTo:function(speed,to,callback){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);if(jQuery.isEmptyObject(prop)){return this.each(optall.complete);}
return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType===1&&jQuery(this).is(":hidden"),self=this;for(p in prop){var name=p.replace(rdashAlpha,fcamelCase);if(p!==name){prop[name]=prop[p];delete prop[p];p=name;}
if(prop[p]==="hide"&&hidden||prop[p]==="show"&&!hidden){return opt.complete.call(this);}
if((p==="height"||p==="width")&&this.style){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}
if(jQuery.isArray(prop[p])){(opt.specialEasing=opt.specialEasing||{})[p]=prop[p][1];prop[p]=prop[p][0];}}
if(opt.overflow!=null){this.style.overflow="hidden";}
opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(rfxtypes.test(val)){e[val==="toggle"?hidden?"show":"hide":val](prop);}else{var parts=rfxnum.exec(val),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!=="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}
if(parts[1]){end=((parts[1]==="-="?-1:1)*end)+start;}
e.custom(start,end,unit);}else{e.custom(start,val,"");}}});return true;});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue){this.queue([]);}
this.each(function(){for(var i=timers.length-1;i>=0;i--){if(timers[i].elem===this){if(gotoEnd){timers[i](true);}
timers.splice(i,1);}}});if(!gotoEnd){this.dequeue();}
return this;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false){jQuery(this).dequeue();}
if(jQuery.isFunction(opt.old)){opt.old.call(this);}};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig){options.orig={};}}});jQuery.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this);}
(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style){this.elem.style.display="block";}},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop];}
var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(jQuery.fx.tick,13);}},show:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now(),done=true;if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var i in this.options.curAnim){if(this.options.curAnim[i]!==true){done=false;}}
if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;var old=jQuery.data(this.elem,"olddisplay");this.elem.style.display=old?old:this.options.display;if(jQuery.css(this.elem,"display")==="none"){this.elem.style.display="block";}}
if(this.options.hide){jQuery(this.elem).hide();}
if(this.options.hide||this.options.show){for(var p in this.options.curAnim){jQuery.style(this.elem,p,this.options.orig[p]);}}
this.options.complete.call(this.elem);}
return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;var specialEasing=this.options.specialEasing&&this.options.specialEasing[this.prop];var defaultEasing=this.options.easing||(jQuery.easing.swing?"swing":"linear");this.pos=jQuery.easing[specialEasing||defaultEasing](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}
return true;}};jQuery.extend(jQuery.fx,{tick:function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++){if(!timers[i]()){timers.splice(i--,1);}}
if(!timers.length){jQuery.fx.stop();}},stop:function(){clearInterval(timerId);timerId=null;},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.style(fx.elem,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null){fx.elem.style[fx.prop]=(fx.prop==="width"||fx.prop==="height"?Math.max(0,fx.now):fx.now)+fx.unit;}else{fx.elem[fx.prop]=fx.now;}}}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};}
function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
if("getBoundingClientRect"in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
var box=elem.getBoundingClientRect(),doc=elem.ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.support.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};}else{jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
jQuery.offset.initialize();var offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle,top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){break;}
computedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle;top-=elem.scrollTop;left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop;left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.nodeName))){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible"){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static"){top+=body.offsetTop;left+=body.offsetLeft;}
if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){top+=Math.max(docElem.scrollTop,body.scrollTop);left+=Math.max(docElem.scrollLeft,body.scrollLeft);}
return{top:top,left:left};};}
jQuery.offset={initialize:function(){var body=document.body,container=document.createElement("div"),innerDiv,checkDiv,table,td,bodyMarginTop=parseFloat(jQuery.curCSS(body,"marginTop",true))||0,html="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";jQuery.extend(container.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild;checkDiv=innerDiv.firstChild;td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);checkDiv.style.position="fixed",checkDiv.style.top="20px";this.supportsFixedPosition=(checkDiv.offsetTop===20||checkDiv.offsetTop===15);checkDiv.style.position=checkDiv.style.top="";innerDiv.style.overflow="hidden",innerDiv.style.position="relative";this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);this.doesNotIncludeMarginInBodyOffset=(body.offsetTop!==bodyMarginTop);body.removeChild(container);body=container=innerDiv=checkDiv=table=td=null;jQuery.offset.initialize=jQuery.noop;},bodyOffset:function(body){var top=body.offsetTop,left=body.offsetLeft;jQuery.offset.initialize();if(jQuery.offset.doesNotIncludeMarginInBodyOffset){top+=parseFloat(jQuery.curCSS(body,"marginTop",true))||0;left+=parseFloat(jQuery.curCSS(body,"marginLeft",true))||0;}
return{top:top,left:left};},setOffset:function(elem,options,i){if(/static/.test(jQuery.curCSS(elem,"position"))){elem.style.position="relative";}
var curElem=jQuery(elem),curOffset=curElem.offset(),curTop=parseInt(jQuery.curCSS(elem,"top",true),10)||0,curLeft=parseInt(jQuery.curCSS(elem,"left",true),10)||0;if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset);}
var props={top:(options.top-curOffset.top)+curTop,left:(options.left-curOffset.left)+curLeft};if("using"in options){options.using.call(elem,props);}else{curElem.css(props);}}};jQuery.fn.extend({position:function(){if(!this[0]){return null;}
var elem=this[0],offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();offset.top-=parseFloat(jQuery.curCSS(elem,"marginTop",true))||0;offset.left-=parseFloat(jQuery.curCSS(elem,"marginLeft",true))||0;parentOffset.top+=parseFloat(jQuery.curCSS(offsetParent[0],"borderTopWidth",true))||0;parentOffset.left+=parseFloat(jQuery.curCSS(offsetParent[0],"borderLeftWidth",true))||0;return{top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};},offsetParent:function(){return this.map(function(){var offsetParent=this.offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.nodeName)&&jQuery.css(offsetParent,"position")==="static")){offsetParent=offsetParent.offsetParent;}
return offsetParent;});}});jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;jQuery.fn[method]=function(val){var elem=this[0],win;if(!elem){return null;}
if(val!==undefined){return this.each(function(){win=getWindow(this);if(win){win.scrollTo(!i?val:jQuery(win).scrollLeft(),i?val:jQuery(win).scrollTop());}else{this[method]=val;}});}else{win=getWindow(elem);return win?("pageXOffset"in win)?win[i?"pageYOffset":"pageXOffset"]:jQuery.support.boxModel&&win.document.documentElement[method]||win.document.body[method]:elem[method];}};});function getWindow(elem){return("scrollTo"in elem&&elem.document)?elem:elem.nodeType===9?elem.defaultView||elem.parentWindow:false;}
jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],type,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],type,false,margin?"margin":"border"):null;};jQuery.fn[type]=function(size){var elem=this[0];if(!elem){return size==null?null:this;}
if(jQuery.isFunction(size)){return this.each(function(i){var self=jQuery(this);self[type](size.call(this,i,self[type]()));});}
return("scrollTo"in elem&&elem.document)?elem.document.compatMode==="CSS1Compat"&&elem.document.documentElement["client"+name]||elem.document.body["client"+name]:(elem.nodeType===9)?Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]):size===undefined?jQuery.css(elem,type):this.css(type,typeof size==="string"?size:size+"px");};});window.jQuery=window.$=jQuery;})(window);;var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var V=L.DOM={ready:(function(){var a=false,c={loaded:1,complete:1};var Z=[],b=function(){if(a){return}a=true;for(var d;d=Z.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){c[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(d){setTimeout(arguments.callee,1)}})()}P(window,"load",b);return function(d){if(!arguments.length){b()}else{a?d():Z.push(d)}}})()};var M=L.CSS={Size:function(a,Z){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/Z*this.value};this.convertFrom=function(b){return b/this.value*Z};this.toString=function(){return this.value+this.unit}},color:I(function(a){var Z={};Z.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,b,d){Z.opacity=parseFloat(d);return"rgb("+b+")"});return Z}),getStyle:function(a){var Z=document.defaultView;if(Z&&Z.getComputedStyle){return new A(Z.getComputedStyle(a,null))}if(a.currentStyle){return new A(a.currentStyle)}return new A(a.style)},gradient:I(function(d){var e={id:d,type:d.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},a=d.substr(d.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var c=0,Z=a.length,b;c<Z;++c){b=a[c].split("=",2).reverse();e.stops.push([b[1]||c/(Z-1),b[0]])}return e}),quotedList:I(function(c){var b=[],a=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Z;while(Z=a.exec(c)){b.push(Z[3]||Z[1])}return b}),recognizesMedia:I(function(c){var b=document.createElement("style"),a,Z;b.type="text/css";b.media=c;a=F("head")[0];a.insertBefore(b,a.firstChild);Z=!!(b.sheet||b.styleSheet);a.removeChild(b);return Z}),supports:function(b,a){var Z=document.createElement("span").style;if(Z[b]===undefined){return false}Z[b]=a;return Z[b]===a},textAlign:function(c,b,Z,a){if(b.get("textAlign")=="right"){if(Z>0){c=" "+c}}else{if(Z<a-1){c+=" "}}return c},textDecoration:function(e,d){if(!d){d=this.getStyle(e)}var a={underline:null,overline:null,"line-through":null};for(var Z=e;Z.parentNode&&Z.parentNode.nodeType==1;){var c=true;for(var b in a){if(!J(a,b)||a[b]){continue}if(d.get("textDecoration").indexOf(b)!=-1){a[b]=d.get("color")}c=false}if(c){break}d=this.getStyle(Z=Z.parentNode)}return a},textShadow:I(function(d){if(d=="none"){return null}var c=[],e={},Z,a=0;var b=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Z=b.exec(d)){if(Z[0]==","){c.push(e);e={},a=0}else{if(Z[1]){e.color=Z[1]}else{e[["offX","offY","blur"][a++]]=Z[2]}}}c.push(e);return c}),textTransform:function(a,Z){return a[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Z.get("textTransform")]||"toString"]()},whiteSpace:(function(){var Z={inline:1,"inline-block":1,"run-in":1};return function(c,a,b){if(Z[a.get("display")]){return c}if(!b.previousSibling){c=c.replace(/^\s+/,"")}if(!b.nextSibling){c=c.replace(/\s+$/,"")}return c}})()};M.ready=(function(){var b=!M.recognizesMedia("all"),a=false;var Z=[],d=function(){b=true;for(var g;g=Z.shift();g()){}};var e=F("link"),f={stylesheet:1};function c(){var h,g,j;for(g=0;j=e[g];++g){if(j.disabled||!f[j.rel.toLowerCase()]||!M.recognizesMedia(j.media||"screen")){continue}h=j.sheet||j.styleSheet;if(!h||h.disabled){return false}}return true}V.ready(function(){if(!a){a=M.getStyle(document.body).isUsable()}if(b||(a&&c())){d()}else{setTimeout(arguments.callee,10)}});return function(g){if(b){g()}else{Z.push(g)}}})();function R(a){var Z=this.face=a.face;this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(Z["units-per-em"],10);this.family=Z["font-family"].toLowerCase();this.weight=Z["font-weight"];this.style=Z["font-style"]||"normal";this.viewBox=(function(){var c=Z.bbox.split(/\s+/);var b={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};b.width=b.maxX-b.minX,b.height=b.maxY-b.minY;b.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return b})();this.ascent=-parseInt(Z.ascent,10);this.descent=-parseInt(Z.descent,10);this.height=-this.ascent+this.descent}function E(){var a={},Z={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(f,g){var e=a[f]||a[Z[f]]||a.normal||a.italic||a.oblique;if(!e){return null}g={normal:400,bold:700}[g]||parseInt(g,10);if(e[g]){return e[g]}var c={1:1,99:0}[g%100],i=[],d,b;if(c===undefined){c=g>400}if(g==500){g=400}for(var h in e){if(!J(e,h)){continue}h=parseInt(h,10);if(!d||h<d){d=h}if(!b||h>b){b=h}i.push(h)}if(g<d){g=d}if(g>b){g=b}i.sort(function(k,j){return(c?(k>g&&j>g)?k<j:k>j:(k<g&&j<g)?k>j:k<j)?-1:1});return e[i[0]]}}function Q(){function b(d,e){if(d.contains){return d.contains(e)}return d.compareDocumentPosition(e)&16}function Z(f){var d=f.relatedTarget;if(!d||b(this,d)){return}a(this)}function c(d){a(this)}function a(d){setTimeout(function(){L.replace(d,D.get(d).options,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){P(d,"mouseover",Z);P(d,"mouseout",Z)}else{P(d,"mouseenter",c);P(d,"mouseleave",c)}}}function Y(){var b={},Z=0;function a(c){return c.cufid||(c.cufid=++Z)}this.get=function(c){var d=a(c);return b[d]||(b[d]={})}}function A(Z){var b={},a={};this.extend=function(c){for(var d in c){if(J(c,d)){b[d]=c[d]}}return this};this.get=function(c){return b[c]!=undefined?b[c]:Z[c]};this.getSize=function(d,c){return a[d]||(a[d]=new M.Size(this.get(d),c))};this.isUsable=function(){return!!Z}}function P(a,Z,b){if(a.addEventListener){a.addEventListener(Z,b,false)}else{if(a.attachEvent){a.attachEvent("on"+Z,function(){return b.call(a,window.event)})}}}function T(a,Z){var b=D.get(a);if(b.options){return a}if(Z.hover&&Z.hoverables[a.nodeName.toLowerCase()]){B.attach(a)}b.options=Z;return a}function I(Z){var a={};return function(b){if(!J(a,b)){a[b]=Z.apply(null,arguments)}return a[b]}}function C(e,d){if(!d){d=M.getStyle(e)}var a=M.quotedList(d.get("fontFamily").toLowerCase()),c;for(var b=0,Z=a.length;b<Z;++b){c=a[b];if(H[c]){return H[c].get(d.get("fontStyle"),d.get("fontWeight"))}}return null}function F(Z){return document.getElementsByTagName(Z)}function J(a,Z){return a.hasOwnProperty(Z)}function G(){var Z={},b,d;for(var c=0,a=arguments.length;b=arguments[c],c<a;++c){for(d in b){if(J(b,d)){Z[d]=b[d]}}}return Z}function N(c,m,a,n,d,b){var k=n.separate;if(k=="none"){return X[n.engine].apply(null,arguments)}var j=document.createDocumentFragment(),f;var g=m.split(O[k]),Z=(k=="words");if(Z&&S){if(/^\s/.test(m)){g.unshift("")}if(/\s$/.test(m)){g.push("")}}for(var h=0,e=g.length;h<e;++h){f=X[n.engine](c,Z?M.textAlign(g[h],a,h,e):g[h],a,n,d,b,h<e-1);if(f){j.appendChild(f)}}return j}function K(a,i){var b,Z,c,f,e,h;for(c=T(a,i).firstChild;c;c=e){f=c.nodeType;e=c.nextSibling;h=false;if(f==1){if(!c.firstChild){continue}if(!/cufon/.test(c.className)){arguments.callee(c,i);continue}else{h=true}}else{if(f!=3){continue}}if(!Z){Z=M.getStyle(a).extend(i)}if(!b){b=C(a,Z)}if(!b){continue}if(h){X[i.engine](b,null,Z,i,c,a);continue}var g=M.whiteSpace(c.data,Z,c);if(g===""){continue}var d=N(b,g,Z,i,c,a);if(d){c.parentNode.replaceChild(d,c)}else{c.parentNode.removeChild(c)}}}var S=" ".split(/\s+/).length==0;var D=new Y();var B=new Q();var W=[];var X={},H={},U={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Z){return jQuery(Z)})||(window.dojo&&dojo.query)||(window.$$&&function(Z){return $$(Z)})||(window.$&&function(Z){return $(Z)})||(document.querySelectorAll&&function(Z){return document.querySelectorAll(Z)})||F),separate:"words",textShadow:"none"};var O={words:/\s+/,characters:""};L.now=function(){V.ready();return L};L.refresh=function(){var b=W.splice(0,W.length);for(var a=0,Z=b.length;a<Z;++a){L.replace.apply(null,b[a])}return L};L.registerEngine=function(a,Z){if(!Z){return L}X[a]=Z;return L.set("engine",a)};L.registerFont=function(b){var Z=new R(b),a=Z.family;if(!H[a]){H[a]=new E()}H[a].add(Z);return L.set("fontFamily",'"'+a+'"')};L.replace=function(b,a,Z){a=G(U,a);if(!a.engine){return L}if(typeof a.textShadow=="string"){a.textShadow=M.textShadow(a.textShadow)}if(typeof a.color=="string"&&/^-/.test(a.color)){a.textGradient=M.gradient(a.color)}if(!Z){W.push(arguments)}if(b.nodeType||typeof b=="string"){b=[b]}M.ready(function(){for(var d=0,c=b.length;d<c;++d){var e=b[d];if(typeof e=="string"){L.replace(a.selector(e),a,true)}else{K(e,a)}}});return L};L.set=function(Z,a){U[Z]=a;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode(".cufon-canvas{text-indent:0}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(t,W,o,R,a,u){var I=(W===null);var Y=t.viewBox;var J=o.getSize("fontSize",t.baseSize);var m=o.get("letterSpacing");m=(m=="normal")?0:J.convertFrom(parseInt(m,10));var Z=0,n=0,k=0,T=0;var X=R.textShadow,h=[];if(X){for(var s=X.length;s--;){var c=X[s];var f=J.convertFrom(parseFloat(c.offX));var e=J.convertFrom(parseFloat(c.offY));h[s]=[f,e];if(e<Z){Z=e}if(f>n){n=f}if(e>k){k=e}if(f<T){T=f}}}var z=Cufon.CSS.textTransform(I?a.alt:W,o).split("");var G=0,U=null;for(var s=0,p=z.length;s<p;++s){var S=t.glyphs[z[s]]||t.missingGlyph;if(!S){continue}G+=U=Number(S.w||t.w)+m}if(U===null){return null}n+=(Y.width-U);T+=Y.minX;var Q,K;if(I){Q=a;K=a.firstChild}else{Q=document.createElement("span");Q.className="cufon cufon-canvas";Q.alt=W;K=document.createElement("canvas");Q.appendChild(K);if(R.printable){var q=document.createElement("span");q.className="cufon-alt";q.appendChild(document.createTextNode(W));Q.appendChild(q)}}var AA=Q.style;var d=K.style;var H=J.convert(Y.height);var w=Math.ceil(H);var j=w/H;K.width=Math.ceil(J.convert(G*j+n-T));K.height=Math.ceil(J.convert(Y.height-Z+k));Z+=Y.minY;d.top=Math.round(J.convert(Z-t.ascent))+"px";d.left=Math.round(J.convert(T))+"px";var P=Math.ceil(J.convert(G*j))+"px";if(A){AA.width=P;AA.height=J.convert(t.height)+"px"}else{AA.paddingLeft=P;AA.paddingBottom=(J.convert(t.height)-1)+"px"}var v=K.getContext("2d"),b=H/Y.height;v.scale(b,b*j);v.translate(-T,-Z);v.lineWidth=t.face["underline-thickness"];v.save();function L(i,g){v.strokeStyle=g;v.beginPath();v.moveTo(0,i);v.lineTo(G,i);v.stroke()}var M=R.enableTextDecoration?Cufon.CSS.textDecoration(u,o):{};if(M.underline){L(-t.face["underline-position"],M.underline)}if(M.overline){L(t.ascent,M.overline)}function r(){v.scale(j,1);for(var x=0,g=z.length;x<g;++x){var y=t.glyphs[z[x]]||t.missingGlyph;if(!y){continue}if(y.d){v.beginPath();if(y.code){C(y.code,v)}else{y.code=D("m"+y.d,v)}v.fill()}v.translate(Number(y.w||t.w)+m,0)}v.restore()}if(X){for(var s=X.length;s--;){var c=X[s];v.save();v.fillStyle=c.color;v.translate.apply(v,h[s]);r()}}var O=R.textGradient;if(O){var V=O.stops,N=v.createLinearGradient(0,Y.minY,0,Y.maxY);for(var s=0,p=V.length;s<p;++s){N.addColorStop.apply(N,V[s])}v.fillStyle=N}else{v.fillStyle=o.get("color")}r();if(M["line-through"]){L(-t.descent,M["line-through"])}return Q}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>');function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(v,Y,q,V,c,w,o){var I=(Y===null);if(I){Y=c.alt}var a=v.viewBox;var J=q.computedFontSize||(q.computedFontSize=new Cufon.CSS.Size(C(w,q.get("fontSize"))+"px",v.baseSize));var n=q.computedLSpacing;if(n==undefined){n=q.get("letterSpacing");q.computedLSpacing=n=(n=="normal")?0:~~J.convertFrom(A(w,n))}var S,K;if(I){S=c;K=c.firstChild}else{S=document.createElement("span");S.className="cufon cufon-vml";S.alt=Y;K=document.createElement("span");K.className="cufon-vml-canvas";S.appendChild(K);if(V.printable){var t=document.createElement("span");t.className="cufon-alt";t.appendChild(document.createTextNode(Y));S.appendChild(t)}if(!o){S.appendChild(document.createElement("cvml:shape"))}}var AB=S.style;var f=K.style;var G=J.convert(a.height),y=Math.ceil(G);var m=y/G;var j=a.minX,h=a.minY;f.height=y;f.top=Math.round(J.convert(h-v.ascent));f.left=Math.round(J.convert(j));AB.height=J.convert(v.height)+"px";var N=V.enableTextDecoration?Cufon.CSS.textDecoration(w,q):{};var X=q.get("color");var z=Cufon.CSS.textTransform(Y,q).split("");var F=0,g=0,O=null;var W,Q,Z=V.textShadow;for(var u=0,s=0,r=z.length;u<r;++u){W=v.glyphs[z[u]]||v.missingGlyph;if(W){F+=O=~~(W.w||v.w)+n}}if(O===null){return null}var R=-j+F+(a.width-O);var AA=J.convert(R*m),p=Math.round(AA);var e=R+","+a.height,H;var b="r"+e+"ns";var P=V.textGradient&&D(V.textGradient);for(u=0;u<r;++u){W=v.glyphs[z[u]]||v.missingGlyph;if(!W){continue}if(I){Q=K.childNodes[s];if(Q.firstChild){Q.removeChild(Q.firstChild)}}else{Q=document.createElement("cvml:shape");K.appendChild(Q)}Q.stroked="f";Q.coordsize=e;Q.coordorigin=H=(j-g)+","+h;Q.path=(W.d?"m"+W.d+"xe":"")+"m"+H+b;Q.fillcolor=X;if(P){Q.appendChild(P.cloneNode(false))}var x=Q.style;x.width=p;x.height=y;if(Z){var M=Z[0],L=Z[1];var U=Cufon.CSS.color(M.color),T;var d=document.createElement("cvml:shadow");d.on="t";d.color=U.color;d.offset=M.offX+","+M.offY;if(L){T=Cufon.CSS.color(L.color);d.type="double";d.color2=T.color;d.offset2=L.offX+","+L.offY}d.opacity=U.opacity||(T&&T.opacity)||1;Q.appendChild(d)}g+=~~(W.w||v.w)+n;++s}AB.width=Math.max(Math.ceil(J.convert(F*m)),0);return S}})());;Cufon.registerFont({"w":161,"face":{"font-family":"epos","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-32 -319 327 67","underline-thickness":"7.2","underline-position":"-47.88","stemh":"14","stemv":"16","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":75},"\u00dd":{"d":"141,-224r-64,140r0,84r-16,0r0,-84r-63,-140r18,0r53,124r54,-124r18,0xm129,-311r-59,75r-12,-6r57,-77","w":138},"\u00fd":{"d":"125,-163r-72,226r-17,0r21,-67r-50,-159r17,0r42,139r41,-139r18,0xm125,-251r-59,75r-12,-6r58,-78","w":131},"\u00de":{"d":"156,-113v0,47,-36,64,-69,64r-45,0r0,49r-15,0r0,-224r15,0r0,49r45,0v34,0,69,17,69,62xm140,-113v0,-44,-39,-48,-53,-48r-45,0r0,98r45,0v24,0,53,-12,53,-50","w":172},"\u00fe":{"d":"141,-81v0,51,-23,86,-57,86v-20,0,-34,-11,-42,-30r0,88r-17,0r0,-303r17,0r0,104v8,-18,22,-29,42,-29v32,0,57,30,57,84xm126,-81v0,-43,-18,-71,-42,-71v-25,0,-42,28,-42,71v0,44,17,72,42,72v24,0,42,-28,42,-72"},"\u00bd":{"d":"285,0r-91,0r-4,-11r60,-80v11,-15,16,-26,16,-40v0,-15,-13,-28,-31,-28v-10,0,-23,5,-37,12r-5,-13v15,-8,29,-12,42,-12v26,0,48,18,48,41v0,18,-7,32,-19,48r-54,69r75,0r0,14xm178,-224r-62,224r-16,0r62,-224r16,0xm78,-55r-64,0r0,-14r24,0r0,-140r-24,0r0,-15r41,0r0,155r23,0r0,14","w":306},"\u00bc":{"d":"300,-53r-16,0r0,53r-16,0r0,-53r-74,0r-4,-10r79,-106r15,0r0,103r16,0r0,13xm178,-224r-62,224r-16,0r62,-224r16,0xm79,-54r-65,0r0,-14r24,0r0,-140r-24,0r0,-15r41,0r0,155r24,0r0,14xm268,-66r0,-79r-58,79r58,0","w":319},"\u00b9":{"d":"77,-55r-64,0r0,-14r24,0r0,-140r-24,0r0,-15r41,0r0,155r23,0r0,14","w":90},"\u00be":{"d":"327,-53r-15,0r0,53r-17,0r0,-53r-74,0r-4,-10r80,-106r15,0r0,103r15,0r0,13xm207,-224r-63,224r-16,0r62,-224r17,0xm112,-103v0,30,-23,53,-54,53v-15,0,-33,-5,-50,-15r6,-14v15,9,31,14,44,14v22,0,37,-16,37,-38v0,-20,-12,-35,-33,-37r-14,-1r-4,-11r43,-57r-73,0r0,-14r89,0r3,10r-42,60v2,0,3,1,3,1v28,5,45,23,45,49xm295,-66r0,-79r-58,79r58,0","w":347},"\u00b3":{"d":"109,-103v0,29,-23,52,-54,52v-15,0,-33,-5,-50,-15r6,-14v15,9,31,14,44,14v22,0,38,-16,38,-37v0,-20,-13,-35,-35,-38r-13,-1r-4,-11r42,-57r-72,0r0,-14r89,0r3,10r-43,60v3,1,5,1,6,1v27,6,43,24,43,50","w":129},"\u00b2":{"d":"105,-55r-91,0r-3,-11r59,-80v11,-15,17,-26,17,-39v0,-16,-14,-28,-32,-28v-10,0,-23,4,-36,12r-5,-14v14,-8,28,-13,41,-13v27,0,48,20,48,43v0,17,-7,31,-19,47r-54,70r75,0r0,13","w":124},"\u00a6":{"d":"43,-134r-16,0r0,-106r16,0r0,106xm43,63r-16,0r0,-106r16,0r0,106","w":70},"\u00d7":{"d":"183,-6r-13,10r-74,-75r-75,75r-13,-10r77,-76r-77,-76r13,-9r75,74r74,-74r13,9r-76,76","w":191},"!":{"d":"44,-60r-17,0r0,-162r17,0r0,162xm44,0r-17,0r0,-31r17,0r0,31","w":70},"\"":{"d":"95,-152r-16,0r0,-71r16,0r0,71xm45,-152r-16,0r0,-71r16,0r0,71","w":124},"#":{"d":"160,-71r-33,0r0,70r-15,0r0,-70r-53,0r0,70r-15,0r0,-70r-32,0r0,-14r32,0r0,-54r-32,0r0,-14r32,0r0,-70r15,0r0,70r53,0r0,-70r15,0r0,70r33,0r0,14r-33,0r0,54r33,0r0,14xm112,-85r0,-54r-53,0r0,54r53,0","w":171},"$":{"d":"140,-74v0,26,-22,44,-58,46r0,28r-15,0r0,-28v-17,-2,-36,-7,-53,-15r5,-14v20,9,41,15,57,15v21,0,48,-7,48,-32v0,-16,-21,-24,-47,-33v-26,-9,-56,-19,-56,-47v0,-23,20,-40,51,-43r0,-27r17,0r0,27v15,2,32,7,48,14r-6,14v-17,-8,-35,-14,-50,-14v-26,0,-45,11,-45,29v0,18,23,25,47,34v28,10,57,20,57,46","w":154},"%":{"d":"103,-182v0,25,-21,45,-47,45v-25,0,-46,-20,-46,-45v0,-25,21,-46,46,-46v26,0,47,21,47,46xm244,-41v0,24,-22,45,-47,45v-26,0,-47,-21,-47,-45v0,-25,21,-46,47,-46v25,0,47,21,47,46xm183,-225r-99,225r-17,0r99,-225r17,0xm87,-182v0,-18,-14,-32,-31,-32v-17,0,-30,14,-30,32v0,17,13,31,30,31v17,0,31,-14,31,-31xm228,-41v0,-17,-14,-32,-31,-32v-17,0,-31,15,-31,32v0,17,14,32,31,32v17,0,31,-15,31,-32","w":253},"&":{"d":"190,0r-21,0v-7,-8,-15,-15,-21,-22v-17,16,-40,26,-67,26v-38,0,-65,-27,-65,-64v0,-35,20,-57,52,-62v-10,-20,-16,-37,-16,-51v0,-35,24,-55,56,-55v32,0,55,25,55,58v0,10,-1,18,-5,26r-14,-7v2,-6,3,-12,3,-19v0,-25,-16,-43,-39,-43v-25,0,-40,15,-40,40v0,27,25,67,81,129v9,-14,13,-31,13,-49r0,-2r17,0r0,2v0,23,-7,43,-20,60v9,10,19,21,31,32r0,1xm138,-33v-27,-30,-48,-57,-62,-78v-27,3,-44,23,-44,51v0,29,20,50,49,50v23,0,42,-9,57,-23","w":208},"'":{"d":"43,-152r-16,0r0,-71r16,0r0,71","w":69},"(":{"d":"76,59r-14,7v-1,-2,-36,-61,-36,-155v0,-93,35,-152,36,-154r14,6v-1,1,-35,59,-35,148v0,89,34,147,35,148","w":89},")":{"d":"64,-89v0,94,-35,153,-37,155r-14,-7v1,-1,35,-59,35,-148v0,-89,-34,-147,-35,-148r14,-6v2,2,37,61,37,154","w":89},"*":{"d":"141,-189r-54,17r35,45r-14,8r-31,-46r-31,46r-14,-8r34,-45r-54,-16r6,-14r52,17r-2,-55r17,0r-1,55r52,-17","w":153},"+":{"d":"171,-79r-72,0r0,79r-16,0r0,-79r-73,0r0,-14r73,0r0,-70r16,0r0,70r72,0r0,14","w":181},",":{"d":"44,-1v0,26,-11,46,-30,54r-6,-13v13,-7,19,-22,19,-41r0,-29r17,0r0,29","w":70},"-":{"d":"86,-79r-61,0r0,-14r61,0r0,14","w":110},".":{"d":"43,0r-16,0r0,-30r16,0r0,30","w":70},"\/":{"d":"88,-225r-78,288r-17,0r78,-288r17,0","w":102},"0":{"d":"157,-113v0,71,-27,117,-69,117v-42,0,-69,-46,-69,-117v0,-70,27,-115,69,-115v42,0,69,45,69,115xm141,-113v0,-62,-23,-100,-53,-100v-30,0,-52,38,-52,100v0,63,22,102,52,102v30,0,53,-39,53,-102","w":176},"1":{"d":"99,0r-85,0r0,-14r34,0r0,-195r-34,0r0,-15r51,0r0,210r34,0r0,14","w":113},"2":{"d":"133,0r-123,0r-5,-11v6,-7,81,-106,81,-106v16,-21,24,-37,24,-55v0,-23,-21,-41,-46,-41v-15,0,-33,6,-51,17r-6,-14v19,-12,39,-18,57,-18v35,0,63,25,63,56v0,23,-10,42,-27,63r-74,95r107,0r0,14","w":143},"3":{"d":"143,-64v0,39,-30,68,-71,68v-21,0,-46,-8,-69,-21r6,-13v22,13,44,19,63,19v32,0,54,-22,54,-53v0,-30,-18,-50,-49,-54r-20,-3r-4,-8r61,-80r-96,0r0,-15r112,0r5,11r-62,80v6,2,11,2,11,2v37,8,59,31,59,67","w":159},"4":{"d":"153,-71r-25,0r0,71r-16,0r0,-71r-98,0r-5,-10r104,-143r15,0r0,139r25,0r0,14xm112,-85r0,-113r-82,113r82,0","w":166},"5":{"d":"152,-64v0,39,-31,68,-71,68v-21,0,-44,-7,-66,-18r6,-14v21,11,42,17,60,17v32,0,54,-22,54,-53v0,-30,-18,-50,-50,-54r-57,-8r12,-98r94,0r0,15r-80,0r-9,70v13,3,43,7,43,7v40,6,64,31,64,68","w":171},"6":{"d":"150,-73v0,46,-26,77,-65,77v-39,0,-65,-31,-65,-77v0,-14,2,-27,7,-37r48,-114r18,0r-38,85v8,-7,18,-10,30,-10v38,0,65,28,65,76xm134,-73v0,-38,-19,-62,-49,-62v-30,0,-49,24,-49,62v0,38,19,62,49,62v30,0,49,-24,49,-62","w":170},"7":{"d":"120,-214r-77,214r-18,0r77,-209r-104,0r0,-15r117,0","w":128},"8":{"d":"162,-66v0,42,-30,70,-72,70v-44,0,-73,-28,-73,-70v0,-32,18,-54,46,-61v-21,-7,-35,-23,-35,-47v0,-32,25,-54,62,-54v36,0,60,22,60,54v0,24,-14,40,-35,47v29,7,47,29,47,61xm134,-174v0,-24,-18,-39,-44,-39v-28,0,-45,15,-45,39v0,25,17,40,45,40v26,0,44,-15,44,-40xm145,-66v0,-32,-22,-54,-55,-54v-35,0,-57,22,-57,54v0,34,22,55,57,55v33,0,55,-21,55,-55","w":178},"9":{"d":"146,-150v0,14,-2,26,-7,37r-48,113r-18,0r38,-85v-8,7,-18,10,-30,10v-37,0,-66,-28,-66,-75v0,-46,27,-78,66,-78v38,0,65,32,65,78xm129,-150v0,-38,-19,-63,-48,-63v-30,0,-49,25,-49,63v0,37,19,61,49,61v30,0,48,-24,48,-61"},":":{"d":"43,-133r-16,0r0,-30r16,0r0,30xm43,0r-16,0r0,-30r16,0r0,30","w":70},";":{"d":"44,-132r-17,0r0,-31r17,0r0,31xm44,-1v0,26,-11,46,-30,54r-6,-13v13,-7,19,-22,19,-41r0,-29r17,0r0,29","w":70},"<":{"d":"126,-17r-6,16r-112,-79r0,-10r112,-77r6,16r-99,66","w":142},"=":{"d":"186,-109r-161,0r0,-14r161,0r0,14xm186,-48r-161,0r0,-14r161,0r0,14","w":211},">":{"d":"135,-80r-112,79r-6,-16r99,-68r-99,-66r6,-16r112,77r0,10","w":142},"?":{"d":"104,-178v0,26,-17,39,-27,47v-2,2,-4,3,-5,5v-16,14,-18,25,-18,50r0,16r-17,0r0,-16v0,-27,4,-43,23,-60v2,-2,4,-3,6,-5v9,-9,21,-18,21,-37v0,-21,-13,-34,-33,-34v-17,0,-30,7,-38,12v-1,1,-3,2,-4,2r-5,-14v10,-7,27,-15,47,-15v30,0,50,21,50,49xm54,0r-17,0r0,-31r17,0r0,31","w":119},"@":{"d":"282,-84v0,29,-6,78,-53,78v-26,0,-36,-21,-41,-39v-6,25,-21,39,-42,39v-30,0,-52,-27,-52,-74v0,-46,22,-74,52,-74v17,0,30,10,38,27r5,-23r9,0r0,73v0,3,1,57,31,57v22,0,36,-16,36,-64v0,-84,-52,-129,-110,-129v-69,0,-119,56,-119,132v0,44,15,80,42,105v22,18,48,28,77,28v17,0,32,-2,46,-6r-7,17v-12,2,-25,3,-39,3v-33,0,-64,-11,-88,-32v-31,-28,-48,-68,-48,-115v0,-85,57,-147,136,-147v58,0,127,43,127,144xm181,-80v0,-36,-14,-59,-35,-59v-21,0,-35,23,-35,59v0,36,14,60,35,60v21,0,35,-24,35,-60","w":300},"A":{"d":"169,0r-18,0r-16,-50r-98,0r-16,50r-18,0r77,-224r13,0xm130,-63r-44,-136r-44,136r88,0","w":171},"B":{"d":"158,-62v0,45,-35,62,-69,62r-62,0r0,-224r59,0v30,0,63,16,63,57v0,28,-16,43,-36,49v24,5,45,22,45,56xm132,-167v0,-39,-33,-42,-46,-42r-44,0r0,84r44,0v22,0,46,-10,46,-42xm141,-62v0,-37,-28,-49,-52,-49r-47,0r0,97r47,0v14,0,52,-5,52,-48","w":175},"C":{"d":"179,-184r-15,6v-11,-22,-32,-35,-57,-35v-43,0,-71,39,-71,100v0,61,28,102,71,102v25,0,44,-13,56,-34r15,6v-16,27,-41,43,-71,43v-52,0,-87,-47,-87,-117v0,-72,37,-115,87,-115v31,0,56,16,72,44","w":194},"D":{"d":"171,-113v0,68,-35,113,-88,113r-56,0r0,-224r56,0v51,0,88,41,88,111xm154,-113v0,-59,-28,-96,-71,-96r-40,0r0,195r40,0v43,0,71,-40,71,-99","w":190},"E":{"d":"149,0r-122,0r0,-224r122,0r0,15r-106,0r0,81r88,0r0,15r-88,0r0,99r106,0r0,14","w":164},"F":{"d":"149,-209r-106,0r0,81r88,0r0,15r-88,0r0,113r-16,0r0,-224r122,0r0,15","w":157},"G":{"d":"179,-40r-2,1v-15,27,-40,43,-70,43v-53,0,-88,-47,-88,-117v0,-72,37,-115,88,-115v31,0,56,16,72,44r-16,6v-11,-22,-31,-35,-56,-35v-43,0,-71,39,-71,100v0,61,28,102,71,102v24,0,43,-13,55,-33r0,-63r17,0r0,67","w":203},"H":{"d":"175,0r-16,0r0,-113r-116,0r0,113r-16,0r0,-223r16,0r0,95r116,0r0,-95r16,0r0,223","w":201},"I":{"d":"96,0r-87,0r0,-14r35,0r0,-195r-35,0r0,-15r87,0r0,15r-35,0r0,195r35,0r0,14","w":105},"J":{"d":"44,12v0,24,-9,46,-38,51r-6,-13v18,-1,27,-12,27,-38r0,-235r17,0r0,235","w":71},"K":{"d":"164,0r-20,0r-73,-121r-29,35r0,86r-15,0r0,-224r15,0r0,116r92,-116r19,0r-73,91","w":167},"L":{"d":"136,0r-110,0r0,-224r16,0r0,210r94,0r0,14","w":137},"M":{"d":"187,0r-16,0r0,-191r-58,114r-11,0r-59,-114r0,191r-17,0r0,-224r15,0r66,129r65,-129r15,0r0,224","w":213},"N":{"d":"177,0r-14,0r-120,-193r0,193r-17,0r0,-224r15,0r120,194r0,-194r16,0r0,224","w":203},"O":{"d":"197,-113v0,70,-36,117,-89,117v-53,0,-88,-47,-88,-117v0,-72,37,-115,88,-115v51,0,89,43,89,115xm180,-113v0,-61,-28,-100,-72,-100v-44,0,-72,39,-72,100v0,62,29,102,72,102v43,0,72,-40,72,-102","w":216},"P":{"d":"157,-161v0,45,-37,63,-70,63r-44,0r0,98r-16,0r0,-224r60,0v34,0,70,18,70,63xm140,-161v0,-44,-39,-48,-53,-48r-44,0r0,97r44,0v24,0,53,-11,53,-49","w":168},"Q":{"d":"196,-113v0,67,-31,112,-80,117r0,6v0,30,14,41,40,41r5,0r-7,15v-35,-1,-54,-21,-54,-55r0,-7v-49,-5,-81,-50,-81,-117v0,-72,38,-115,89,-115v51,0,88,43,88,115xm180,-113v0,-61,-28,-100,-72,-100v-44,0,-72,39,-72,100v0,58,25,97,64,101r0,-44r16,0r0,44v38,-4,64,-43,64,-101","w":215},"R":{"d":"170,0r-19,0r-63,-110r-45,0r0,110r-16,0r0,-224r66,0v31,0,63,16,63,57v0,37,-25,53,-51,56xm140,-167v0,-39,-34,-42,-47,-42r-50,0r0,86r50,0v22,0,47,-11,47,-44","w":171},"S":{"d":"134,-58v0,37,-26,62,-64,62v-19,0,-43,-8,-64,-22r5,-14v20,13,42,21,59,21v24,0,48,-13,48,-47v0,-27,-22,-36,-48,-49v-27,-13,-56,-27,-56,-63v0,-34,24,-58,60,-58v18,0,38,8,57,21r-5,15v-18,-14,-36,-21,-52,-21v-26,0,-44,17,-44,43v0,27,22,38,48,50v27,13,56,27,56,62","w":149},"T":{"d":"155,-209r-70,0r0,209r-17,0r0,-209r-70,0r0,-15r157,0r0,15","w":153},"U":{"d":"168,-77v0,48,-29,81,-72,81v-43,0,-73,-33,-73,-81r0,-147r17,0r0,147v0,40,22,66,56,66v33,0,56,-26,56,-66r0,-147r16,0r0,147","w":191},"V":{"d":"154,-224r-69,224r-14,0r-68,-224r18,0r58,197r57,-197r18,0","w":156},"W":{"d":"229,-224r-56,224r-14,0r-43,-188r-43,188r-15,0r-55,-224r16,0r47,192r43,-192r14,0r43,192r46,-192r17,0","w":231},"X":{"d":"146,0r-18,0r-54,-104r-54,104r-18,0r62,-115r-58,-108r18,0r50,97r51,-97r18,0r-58,108","w":147},"Y":{"d":"141,-224r-64,140r0,84r-16,0r0,-84r-63,-140r18,0r53,124r54,-124r18,0","w":138},"Z":{"d":"139,0r-138,0r0,-10r106,-199r-111,0r0,-15r129,0r0,11r-106,199r120,0r0,14","w":135},"[":{"d":"80,63r-53,0r0,-303r53,0r0,13r-37,0r0,276r37,0r0,14","w":79},"\\":{"d":"110,63r-17,0r-78,-288r17,0","w":102},"]":{"d":"53,63r-53,0r0,-14r37,0r0,-276r-37,0r0,-13r53,0r0,303","w":79},"^":{"d":"157,-112r-13,5r-59,-103r-61,103r-12,-5r65,-118r15,0","w":168},"_":{"d":"157,43r-131,0r0,-14r131,0r0,14","w":182},"`":{"d":"97,-182r-12,6r-60,-75r15,-9","w":124},"a":{"d":"135,0r-9,0r-4,-30v-9,22,-24,34,-45,34v-33,0,-58,-31,-58,-85v0,-52,23,-86,58,-86v22,0,37,13,45,33r4,-29r9,0r0,163xm120,-81v0,-44,-18,-72,-43,-72v-24,0,-41,28,-41,72v0,44,17,70,41,70v25,0,43,-26,43,-70"},"b":{"d":"142,-81v0,54,-25,85,-58,85v-21,0,-36,-12,-44,-34r-4,30r-10,0r0,-240r16,0r0,104v8,-20,23,-31,42,-31v35,0,58,34,58,86xm126,-81v0,-44,-18,-72,-42,-72v-24,0,-42,28,-42,72v0,44,17,70,42,70v25,0,42,-26,42,-70"},"c":{"d":"125,-31v-10,22,-27,35,-48,35v-35,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v21,0,38,13,48,34r-15,5v-6,-14,-19,-25,-33,-25v-25,0,-42,27,-42,71v0,44,18,71,42,71v14,0,26,-10,33,-26","w":140},"d":{"d":"135,0r-9,0r-4,-30v-9,22,-24,34,-45,34v-33,0,-58,-31,-58,-85v0,-52,23,-86,58,-86v19,0,34,11,43,31r0,-104r15,0r0,240xm120,-81v0,-44,-18,-72,-43,-72v-24,0,-41,28,-41,72v0,44,17,70,41,70v25,0,43,-26,43,-70"},"e":{"d":"135,-76r-100,0v1,40,19,65,42,65v14,0,26,-10,33,-26r15,6v-10,22,-27,35,-48,35v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85r0,6xm118,-89v-1,-40,-18,-64,-41,-64v-24,0,-41,24,-42,64r83,0","w":154},"f":{"d":"122,-235r-5,13v-7,-3,-15,-4,-24,-4v-26,0,-43,16,-43,57r0,6r32,0r0,14r-32,0r0,149r-17,0r0,-149r-31,0r0,-14r31,0r0,-6v0,-61,36,-71,60,-71v11,0,20,1,29,5","w":86},"g":{"d":"135,-5v0,60,-35,71,-60,71v-13,0,-24,-2,-34,-6r5,-15v9,5,19,7,29,7v27,0,45,-15,45,-56r0,-22v-9,19,-24,30,-43,30v-33,0,-58,-31,-58,-85v0,-52,23,-86,58,-86v21,0,37,13,45,33r3,-29r10,0r0,158xm120,-81v0,-44,-18,-71,-43,-71v-24,0,-41,27,-41,71v0,44,17,70,41,70v25,0,43,-26,43,-70"},"h":{"d":"140,0r-17,0r0,-95v0,-41,-10,-57,-35,-57v-22,0,-46,21,-46,54r0,98r-16,0r0,-240r16,0r0,103v10,-16,25,-30,47,-30v27,0,51,12,51,72r0,95","w":163},"i":{"d":"44,-194r-17,0r0,-31r17,0r0,31xm44,0r-17,0r0,-163r17,0r0,163","w":70},"j":{"d":"44,-194r-17,0r0,-31r17,0r0,31xm44,9v0,28,-9,53,-41,58r-7,-14v22,-2,31,-13,31,-44r0,-172r17,0r0,172","w":71},"k":{"d":"143,0r-19,0r-53,-93r-29,33r0,60r-16,0r0,-240r16,0r0,158r74,-83r21,0r-56,61","w":149},"l":{"d":"44,0r-17,0r0,-240r17,0r0,240","w":71},"m":{"d":"239,0r-17,0r0,-95v0,-41,-11,-57,-36,-57v-22,0,-45,22,-45,57r0,95r-16,0r0,-95v0,-41,-12,-57,-36,-57v-22,0,-46,22,-46,57r0,95r-16,0r0,-162r10,0r4,31v8,-19,25,-36,49,-36v20,0,39,8,47,38v1,-4,16,-38,51,-38v27,0,51,12,51,72r0,95","w":258},"n":{"d":"136,0r-16,0r0,-95v0,-41,-11,-57,-36,-57v-22,0,-45,22,-45,57r0,95r-17,0r0,-162r10,0r4,31v9,-19,25,-36,50,-36v26,0,50,12,50,72r0,95","w":163},"o":{"d":"136,-82v0,52,-23,86,-58,86v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85xm120,-82v0,-44,-17,-70,-42,-70v-25,0,-42,26,-42,70v0,44,17,72,42,72v24,0,42,-28,42,-72","w":155},"p":{"d":"142,-81v0,51,-23,86,-58,86v-19,0,-34,-11,-42,-30r0,88r-16,0r0,-226r10,0r4,30v8,-21,24,-33,44,-33v33,0,58,30,58,85xm126,-81v0,-44,-17,-71,-42,-71v-24,0,-42,27,-42,71v0,44,18,72,42,72v24,0,42,-28,42,-72"},"q":{"d":"136,63r-16,0r0,-88v-9,19,-24,30,-43,30v-35,0,-58,-35,-58,-86v0,-55,25,-85,58,-85v21,0,36,12,45,33r4,-30r10,0r0,226xm120,-81v0,-44,-18,-71,-43,-71v-24,0,-41,27,-41,71v0,44,17,72,41,72v25,0,43,-28,43,-72"},"r":{"d":"118,-158r-6,17v-7,-8,-17,-11,-28,-11v-25,0,-41,15,-41,57r0,95r-16,0r0,-163r10,0r3,23v8,-18,23,-27,44,-27v11,0,24,2,34,9","w":117},"s":{"d":"118,-42v0,28,-22,46,-57,46v-16,0,-36,-6,-55,-16r6,-14v0,1,1,1,2,2v16,8,34,14,47,14v20,0,42,-8,42,-32v0,-18,-18,-25,-41,-34v-23,-9,-50,-19,-50,-47v0,-26,22,-44,54,-44v15,0,32,5,49,15r-5,14v-1,-1,-2,-1,-3,-1v-14,-9,-29,-13,-41,-13v-24,0,-39,11,-39,29v0,18,19,25,41,34v25,9,50,20,50,47","w":133},"t":{"d":"89,0r-4,0v-42,0,-55,-27,-55,-58r0,-91r-29,0r0,-14r29,0r0,-62r17,0r0,62r36,0r0,14r-36,0r0,91v0,33,12,44,38,44r4,0r0,14","w":97},"u":{"d":"137,0r-10,0r-4,-31v-9,19,-25,35,-50,35v-26,0,-51,-11,-51,-72r0,-94r17,0r0,94v0,41,11,58,36,58v22,0,45,-22,45,-58r0,-94r17,0r0,162","w":162},"v":{"d":"125,-163r-53,163r-14,0r-52,-163r18,0r42,139r41,-139r18,0","w":131},"w":{"d":"212,-163r-49,163r-13,0r-40,-138r-39,138r-14,0r-48,-163r17,0r38,138r38,-138r17,0r38,138r37,-138r18,0","w":220},"x":{"d":"123,0r-19,0r-40,-71r-39,71r-19,0r49,-83r-46,-80r18,0r37,68r38,-68r19,0r-47,80","w":129},"y":{"d":"125,-163r-72,226r-17,0r21,-67r-50,-159r17,0r42,139r41,-139r18,0","w":131},"z":{"d":"124,0r-115,0r0,-12r92,-137r-88,0r0,-14r108,0r0,11r-92,138r95,0r0,14","w":132},"{":{"d":"85,63r-5,0v-21,0,-45,-14,-45,-51r0,-57v0,-21,-11,-37,-29,-37r0,-13v18,0,29,-16,29,-37r0,-58v0,-37,24,-50,45,-50r5,0r0,13r-5,0v-19,0,-29,16,-29,37r0,54v0,25,-12,41,-27,47v15,7,27,22,27,47r0,55v0,21,10,36,29,36r5,0r0,14","w":88},"|":{"d":"44,63r-17,0r0,-288r17,0r0,288","w":70},"}":{"d":"83,-82v-19,0,-29,16,-29,37r0,57v0,37,-24,51,-45,51r-5,0r0,-14r5,0v19,0,28,-15,28,-36r0,-55v0,-25,13,-40,28,-47v-15,-6,-28,-22,-28,-47r0,-54v0,-21,-9,-37,-28,-37r-5,0r0,-13r5,0v21,0,45,13,45,50r0,58v0,21,10,37,29,37r0,13","w":88},"~":{"d":"190,-226v-11,22,-24,43,-52,43v-18,0,-30,-9,-39,-17v-9,-8,-15,-13,-27,-13v-15,0,-26,10,-39,34r-13,-6v11,-21,24,-43,52,-43v19,0,30,10,39,18v9,8,15,13,27,13v15,0,26,-10,40,-34","w":209},"\u00c4":{"d":"169,0r-18,0r-16,-50r-98,0r-16,50r-18,0r77,-224r13,0xm130,-63r-44,-136r-44,136r88,0xm122,-243r-15,0r0,-30r15,0r0,30xm66,-243r-17,0r0,-30r17,0r0,30","w":171},"\u00c5":{"d":"169,0r-18,0r-16,-50r-98,0r-16,50r-18,0r72,-212v-20,-5,-35,-23,-35,-44v0,-25,20,-45,46,-45v26,0,46,20,46,45v0,22,-15,40,-36,44xm117,-256v0,-18,-14,-33,-31,-33v-17,0,-31,15,-31,33v0,18,14,32,31,32v17,0,31,-14,31,-32xm130,-63r-44,-136r-44,136r88,0","w":171},"\u00c7":{"d":"179,-184r-14,7v-12,-22,-32,-36,-57,-36v-44,0,-72,39,-72,100v0,62,29,103,72,103v24,0,44,-14,56,-35r15,6v-15,25,-37,40,-63,43v0,41,-24,57,-52,59r-7,-14r6,0v23,-2,37,-15,37,-45v-48,-5,-79,-50,-79,-117v0,-72,36,-115,87,-115v30,0,56,16,71,44","w":194},"\u00c9":{"d":"149,0r-122,0r0,-224r122,0r0,15r-106,0r0,81r88,0r0,15r-88,0r0,99r106,0r0,14xm146,-311r-60,75r-11,-6r57,-77","w":164},"\u00d1":{"d":"177,0r-14,0r-120,-193r0,193r-17,0r0,-224r15,0r120,194r0,-194r16,0r0,224xm163,-274v-8,15,-17,30,-37,30v-14,0,-21,-7,-27,-12v-6,-5,-10,-9,-17,-9v-10,0,-15,7,-23,22r-14,-6v8,-15,17,-30,37,-30v14,0,21,7,28,13v6,4,10,8,16,8v10,0,16,-7,24,-22","w":203},"\u00d6":{"d":"197,-113v0,70,-36,117,-89,117v-53,0,-88,-47,-88,-117v0,-72,37,-115,88,-115v51,0,89,43,89,115xm180,-113v0,-61,-28,-100,-72,-100v-44,0,-72,39,-72,100v0,62,29,102,72,102v43,0,72,-40,72,-102xm145,-243r-16,0r0,-30r16,0r0,30xm87,-243r-16,0r0,-30r16,0r0,30","w":216},"\u00dc":{"d":"168,-77v0,48,-29,81,-72,81v-43,0,-73,-33,-73,-81r0,-147r17,0r0,147v0,40,22,66,56,66v33,0,56,-26,56,-66r0,-147r16,0r0,147xm133,-243r-16,0r0,-30r16,0r0,30xm76,-243r-17,0r0,-30r17,0r0,30","w":191},"\u00e1":{"d":"135,0r-9,0r-4,-30v-9,22,-24,34,-45,34v-33,0,-58,-31,-58,-85v0,-52,23,-86,58,-86v22,0,37,13,45,33r4,-29r9,0r0,163xm120,-81v0,-44,-18,-72,-43,-72v-24,0,-41,28,-41,72v0,44,17,70,41,70v25,0,43,-26,43,-70xm136,-251r-59,75r-11,-6r57,-78"},"\u00e0":{"d":"135,0r-9,0r-4,-30v-9,22,-24,34,-45,34v-33,0,-58,-31,-58,-85v0,-52,23,-86,58,-86v22,0,37,13,45,33r4,-29r9,0r0,163xm120,-81v0,-44,-18,-72,-43,-72v-24,0,-41,28,-41,72v0,44,17,70,41,70v25,0,43,-26,43,-70xm89,-182r-11,6r-60,-75r14,-9"},"\u00e2":{"d":"135,0r-9,0r-4,-30v-9,22,-24,34,-45,34v-33,0,-58,-31,-58,-85v0,-52,23,-86,58,-86v22,0,37,13,45,33r4,-29r9,0r0,163xm120,-81v0,-44,-18,-72,-43,-72v-24,0,-41,28,-41,72v0,44,17,70,41,70v25,0,43,-26,43,-70xm144,-181r-12,6r-54,-68r-55,68r-12,-6r60,-76r14,0"},"\u00e4":{"d":"135,0r-9,0r-4,-30v-9,22,-24,34,-45,34v-33,0,-58,-31,-58,-85v0,-52,23,-86,58,-86v22,0,37,13,45,33r4,-29r9,0r0,163xm120,-81v0,-44,-18,-72,-43,-72v-24,0,-41,28,-41,72v0,44,17,70,41,70v25,0,43,-26,43,-70xm114,-185r-16,0r0,-30r16,0r0,30xm57,-185r-17,0r0,-30r17,0r0,30"},"\u00e3":{"d":"135,0r-9,0r-4,-30v-9,22,-24,34,-45,34v-33,0,-58,-31,-58,-85v0,-52,23,-86,58,-86v22,0,37,13,45,33r4,-29r9,0r0,163xm120,-81v0,-44,-18,-72,-43,-72v-24,0,-41,28,-41,72v0,44,17,70,41,70v25,0,43,-26,43,-70xm141,-214v-9,15,-17,30,-37,30v-14,0,-21,-7,-28,-12v-6,-5,-9,-8,-16,-8v-10,0,-15,6,-23,21r-14,-6v8,-14,17,-29,37,-29v14,0,21,6,28,12v5,4,9,8,16,8v10,0,16,-6,24,-22"},"\u00e5":{"d":"135,0r-9,0r-4,-30v-9,22,-24,34,-45,34v-33,0,-58,-31,-58,-85v0,-52,23,-86,58,-86v22,0,37,13,45,33r4,-29r9,0r0,163xm120,-81v0,-44,-18,-72,-43,-72v-24,0,-41,28,-41,72v0,44,17,70,41,70v25,0,43,-26,43,-70xm124,-223v0,25,-20,45,-46,45v-25,0,-46,-20,-46,-45v0,-25,21,-45,46,-45v26,0,46,20,46,45xm109,-223v0,-17,-14,-33,-31,-33v-17,0,-31,16,-31,33v0,18,14,32,31,32v17,0,31,-14,31,-32"},"\u00e7":{"d":"126,-31v-9,19,-23,31,-40,34r0,4v0,39,-21,60,-60,60r-7,-14r6,0v29,0,45,-13,45,-46r0,-4v-31,-4,-51,-37,-51,-85v0,-54,25,-85,58,-85v22,0,39,13,49,34r-15,5v-7,-14,-19,-25,-34,-25v-24,0,-41,27,-41,71v0,44,17,71,41,71v15,0,27,-10,34,-26","w":141},"\u00e9":{"d":"135,-76r-100,0v1,40,19,65,42,65v14,0,26,-10,33,-26r15,6v-10,22,-27,35,-48,35v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85r0,6xm118,-89v-1,-40,-18,-64,-41,-64v-24,0,-41,24,-42,64r83,0xm136,-251r-59,75r-11,-6r57,-78","w":154},"\u00e8":{"d":"135,-76r-100,0v1,40,19,65,42,65v14,0,26,-10,33,-26r15,6v-10,22,-27,35,-48,35v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85r0,6xm118,-89v-1,-40,-18,-64,-41,-64v-24,0,-41,24,-42,64r83,0xm89,-182r-11,6r-60,-75r14,-9","w":154},"\u00ea":{"d":"135,-76r-100,0v1,40,19,65,42,65v14,0,26,-10,33,-26r15,6v-10,22,-27,35,-48,35v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85r0,6xm118,-89v-1,-40,-18,-64,-41,-64v-24,0,-41,24,-42,64r83,0xm144,-181r-12,6r-54,-68r-55,68r-12,-6r60,-76r14,0","w":154},"\u00eb":{"d":"135,-76r-100,0v1,40,19,65,42,65v14,0,26,-10,33,-26r15,6v-10,22,-27,35,-48,35v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85r0,6xm118,-89v-1,-40,-18,-64,-41,-64v-24,0,-41,24,-42,64r83,0xm114,-185r-16,0r0,-30r16,0r0,30xm57,-185r-17,0r0,-30r17,0r0,30","w":154},"\u00ed":{"d":"44,0r-17,0r0,-163r17,0r0,163xm93,-251r-59,75r-11,-6r57,-78","w":70},"\u00ec":{"d":"44,0r-17,0r0,-163r17,0r0,163xm45,-182r-11,6r-60,-75r14,-9","w":70},"\u00ee":{"d":"44,0r-17,0r0,-163r17,0r0,163xm102,-181r-12,6r-54,-68r-55,68r-13,-6r60,-76r15,0","w":70},"\u00ef":{"d":"44,0r-17,0r0,-163r17,0r0,163xm72,-185r-16,0r0,-30r16,0r0,30xm15,-185r-16,0r0,-30r16,0r0,30","w":70},"\u00f1":{"d":"136,0r-16,0r0,-95v0,-41,-11,-57,-36,-57v-22,0,-45,22,-45,57r0,95r-17,0r0,-162r10,0r4,31v9,-19,25,-36,50,-36v26,0,50,12,50,72r0,95xm141,-214v-9,15,-18,30,-38,30v-14,0,-21,-7,-27,-12v-6,-5,-10,-8,-16,-8v-10,0,-16,6,-24,21r-14,-6v8,-14,17,-29,38,-29v13,0,21,6,27,12v6,4,9,8,16,8v10,0,16,-6,24,-22","w":163},"\u00f3":{"d":"136,-82v0,52,-23,86,-58,86v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85xm120,-82v0,-44,-17,-70,-42,-70v-25,0,-42,26,-42,70v0,44,17,72,42,72v24,0,42,-28,42,-72xm136,-251r-59,75r-11,-6r57,-78","w":155},"\u00f2":{"d":"136,-82v0,52,-23,86,-58,86v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85xm120,-82v0,-44,-17,-70,-42,-70v-25,0,-42,26,-42,70v0,44,17,72,42,72v24,0,42,-28,42,-72xm89,-182r-11,6r-60,-75r14,-9","w":155},"\u00f4":{"d":"136,-82v0,52,-23,86,-58,86v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85xm120,-82v0,-44,-17,-70,-42,-70v-25,0,-42,26,-42,70v0,44,17,72,42,72v24,0,42,-28,42,-72xm144,-181r-12,6r-54,-68r-55,68r-12,-6r60,-76r14,0","w":155},"\u00f6":{"d":"136,-82v0,52,-23,86,-58,86v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85xm120,-82v0,-44,-17,-70,-42,-70v-25,0,-42,26,-42,70v0,44,17,72,42,72v24,0,42,-28,42,-72xm114,-185r-16,0r0,-30r16,0r0,30xm57,-185r-17,0r0,-30r17,0r0,30","w":155},"\u00f5":{"d":"136,-82v0,52,-23,86,-58,86v-36,0,-59,-34,-59,-86v0,-54,26,-85,59,-85v33,0,58,31,58,85xm120,-82v0,-44,-17,-70,-42,-70v-25,0,-42,26,-42,70v0,44,17,72,42,72v24,0,42,-28,42,-72xm137,-214v-9,15,-17,30,-38,30v-14,0,-21,-7,-27,-12v-6,-5,-10,-8,-16,-8v-10,0,-16,6,-24,21r-14,-6v8,-14,17,-29,38,-29v13,0,21,6,27,12v6,4,10,8,16,8v10,0,16,-6,25,-22","w":155},"\u00fa":{"d":"137,0r-10,0r-4,-31v-9,19,-25,35,-50,35v-26,0,-51,-11,-51,-72r0,-94r17,0r0,94v0,41,11,58,36,58v22,0,45,-22,45,-58r0,-94r17,0r0,162xm140,-251r-59,75r-12,-6r57,-78","w":162},"\u00f9":{"d":"137,0r-10,0r-4,-31v-9,19,-25,35,-50,35v-26,0,-51,-11,-51,-72r0,-94r17,0r0,94v0,41,11,58,36,58v22,0,45,-22,45,-58r0,-94r17,0r0,162xm91,-182r-11,6r-61,-75r15,-9","w":162},"\u00fb":{"d":"137,0r-10,0r-4,-31v-9,19,-25,35,-50,35v-26,0,-51,-11,-51,-72r0,-94r17,0r0,94v0,41,11,58,36,58v22,0,45,-22,45,-58r0,-94r17,0r0,162xm145,-181r-12,6r-54,-68r-55,68r-12,-6r60,-76r14,0","w":162},"\u00fc":{"d":"137,0r-10,0r-4,-31v-9,19,-25,35,-50,35v-26,0,-51,-11,-51,-72r0,-94r17,0r0,94v0,41,11,58,36,58v22,0,45,-22,45,-58r0,-94r17,0r0,162xm116,-185r-16,0r0,-30r16,0r0,30xm59,-185r-17,0r0,-30r17,0r0,30","w":162},"\u00b0":{"d":"112,-182v0,25,-21,45,-47,45v-25,0,-46,-20,-46,-45v0,-25,21,-46,46,-46v26,0,47,21,47,46xm96,-182v0,-18,-14,-32,-31,-32v-16,0,-30,14,-30,32v0,17,14,31,30,31v17,0,31,-14,31,-31","w":131},"\u00a2":{"d":"126,-60v-9,19,-23,30,-40,33r0,27r-17,0r0,-27v-30,-5,-50,-37,-50,-85v0,-49,21,-79,50,-83r0,-29r17,0r0,29v17,2,31,14,40,33r-15,5v-7,-15,-19,-26,-34,-26v-24,0,-41,28,-41,71v0,44,17,72,41,72v15,0,27,-10,34,-26","w":140},"\u00a3":{"d":"155,-35v-11,20,-22,39,-46,39v-16,0,-26,-9,-34,-16v-7,-7,-13,-12,-21,-12v-15,0,-17,3,-35,29r-12,-7v20,-30,32,-52,32,-70r0,-59r-31,0r0,-13r31,0r0,-13v0,-60,33,-71,57,-71v11,0,21,1,29,5r-5,14v-7,-4,-16,-4,-24,-4v-24,0,-41,15,-41,56r0,13r49,0r0,13r-49,0r0,56v0,15,-6,28,-16,44v6,-5,10,-6,18,-6v13,0,23,8,30,15v7,7,13,11,22,11v13,0,21,-8,33,-29","w":158},"\u00a7":{"d":"114,-239r-5,13r0,218v0,32,-6,71,-72,71v-5,0,-10,0,-15,-1r5,-13r0,-217v0,-33,6,-72,72,-72v5,0,10,0,15,1xm94,-7r0,-219v-43,1,-51,22,-51,57r0,219v41,-2,51,-23,51,-57","w":135},"\u00b6":{"d":"171,-209r-29,0r0,204v0,60,-35,71,-58,71v-11,0,-20,-1,-28,-5r4,-13v7,3,15,4,24,4v25,0,41,-15,41,-57r0,-93r-45,0v-32,0,-68,-18,-68,-64v0,-44,35,-62,68,-62r91,0r0,15xm125,-113r0,-96r-45,0v-13,0,-52,3,-52,47v0,39,29,49,52,49r45,0","w":177},"\u00df":{"d":"165,-36v0,24,-18,40,-47,40v-13,0,-29,-5,-45,-16r5,-15v0,2,3,3,4,4v13,8,27,13,36,13v16,0,31,-7,31,-26v0,-16,-13,-23,-31,-32v-19,-10,-41,-21,-41,-46v0,-18,12,-28,23,-37v11,-8,21,-16,21,-34v0,-17,-10,-41,-39,-41v-26,0,-44,14,-44,51r0,175r-16,0r0,-175v0,-47,27,-65,60,-65v39,0,56,29,56,55v0,24,-15,35,-27,45v-9,8,-17,14,-17,26v0,16,14,24,32,33v18,9,39,21,39,45","w":174},"\u00ae":{"d":"292,-81v0,47,-18,88,-48,115v-24,21,-56,32,-89,32v-33,0,-64,-11,-88,-32v-31,-28,-48,-68,-48,-115v0,-85,57,-147,136,-147v79,0,137,62,137,147xm275,-81v0,-76,-51,-132,-120,-132v-69,0,-119,56,-119,132v0,44,15,80,42,105v22,18,48,28,77,28v30,0,56,-9,77,-28v28,-24,43,-61,43,-105xm209,1r-19,0r-36,-76r-23,0r0,76r-17,0r0,-154r45,0v21,0,43,11,43,39v0,25,-16,34,-33,37xm185,-114v0,-21,-17,-25,-26,-25r-28,0r0,50r28,0v9,0,26,-4,26,-25","w":311},"\u00a9":{"d":"291,-81v0,47,-16,88,-47,115v-23,21,-55,32,-88,32v-34,0,-65,-11,-89,-32v-31,-28,-47,-68,-47,-115v0,-85,57,-147,136,-147v78,0,135,62,135,147xm275,-81v0,-76,-50,-132,-119,-132v-70,0,-120,56,-120,132v0,44,15,80,43,105v21,18,48,28,77,28v29,0,55,-9,77,-28v27,-24,42,-61,42,-105xm202,-128r-14,7v-8,-15,-20,-22,-34,-22v-25,0,-42,25,-42,62v0,39,17,64,42,64v14,0,26,-8,33,-21r15,6v-10,19,-28,29,-48,29v-33,0,-58,-29,-58,-78v0,-48,24,-76,58,-76v21,0,38,10,48,29","w":311},"\u00b4":{"d":"98,-251r-60,75r-11,-6r57,-78","w":123},"\u00a8":{"d":"103,-185r-17,0r0,-30r17,0r0,30xm45,-185r-16,0r0,-30r16,0r0,30","w":131},"\u00c6":{"d":"217,0r-102,0r0,-51r-82,0r-26,51r-19,0r118,-224r111,0r0,15r-86,0r0,80r68,0r0,15r-68,0r0,100r86,0r0,14xm115,-66r0,-143r-75,143r75,0","w":234},"\u00d8":{"d":"197,-113v0,70,-35,117,-89,117v-14,0,-27,-4,-38,-10r-7,17r-17,0r11,-25v-23,-21,-38,-55,-38,-99v0,-72,38,-115,89,-115v14,0,26,3,37,8r7,-15r16,0r-10,24v24,18,39,52,39,98xm180,-113v0,-38,-10,-67,-29,-84r-76,177v10,6,21,9,33,9v44,0,72,-40,72,-102xm139,-206v-8,-5,-19,-7,-31,-7v-44,0,-72,39,-72,100v0,36,11,66,28,83","w":216},"\u00b1":{"d":"139,-98r-48,0r0,53r-16,0r0,-53r-48,0r0,-13r48,0r0,-53r16,0r0,53r48,0r0,13xm143,0r-119,0r0,-14r119,0r0,14","w":166},"\u00a5":{"d":"140,-224r-61,137r42,0r0,15r-43,0r0,72r-17,0r0,-72r-43,0r0,-15r41,0r-61,-137r17,0r55,124r53,-124r17,0","w":138},"\u00aa":{"d":"109,-100r-9,0r-5,-18v-7,14,-17,22,-31,22v-25,0,-44,-24,-44,-66v0,-41,19,-66,44,-66v14,0,24,8,31,23r5,-19r9,0r0,124xm107,-41r-82,0r0,-14r82,0r0,14xm92,-162v0,-31,-12,-51,-28,-51v-16,0,-28,20,-28,51v0,31,13,51,28,51v16,0,28,-20,28,-51","w":135},"\u00ba":{"d":"108,-162v0,41,-19,66,-44,66v-24,0,-44,-25,-44,-66v0,-42,19,-66,44,-66v25,0,44,24,44,66xm103,-41r-77,0r0,-14r77,0r0,14xm92,-162v0,-31,-12,-51,-28,-51v-16,0,-27,20,-27,51v0,31,11,51,27,51v16,0,28,-20,28,-51","w":128},"\u00e6":{"d":"213,-75r-95,0v2,40,18,65,39,65v14,0,25,-10,31,-26r15,5v-9,23,-26,35,-46,35v-15,0,-28,-7,-37,-20r-4,2v-16,8,-34,18,-53,18v-33,0,-56,-18,-56,-46v0,-27,28,-37,54,-47v24,-9,44,-16,44,-34v0,-18,-15,-29,-37,-29v-13,0,-29,5,-45,16r-5,-15v17,-10,35,-16,50,-16v23,0,41,10,48,26v10,-16,25,-26,41,-26v32,0,56,31,56,85r0,7xm196,-88v-1,-39,-17,-64,-39,-64v-21,0,-37,25,-39,64r78,0xm113,-27v-7,-14,-11,-33,-11,-54v0,-5,1,-9,1,-14v-9,9,-22,14,-36,19v-24,9,-43,17,-43,34v0,24,21,32,39,32v13,0,29,-6,45,-14","w":232},"\u00f8":{"d":"136,-82v0,52,-23,86,-58,86v-10,0,-19,-2,-27,-8r-7,18r-14,0r11,-26v-14,-15,-22,-39,-22,-70v0,-54,26,-84,59,-84v9,0,19,3,27,8r7,-18r14,0r-11,26v13,14,21,37,21,68xm120,-82v0,-21,-5,-39,-13,-51r-49,116v5,5,12,8,20,8v24,0,42,-28,42,-73xm98,-144v-5,-5,-13,-8,-20,-8v-25,0,-42,27,-42,70v0,23,4,41,13,53","w":155},"\u00bf":{"d":"82,-192r-16,0r0,-31r16,0r0,31xm113,-11v-10,7,-27,15,-47,15v-30,0,-50,-21,-50,-49v0,-26,16,-39,26,-48v3,-1,4,-2,6,-4v15,-14,18,-25,18,-50r0,-15r16,0r0,15v0,27,-4,43,-22,60v-2,2,-5,3,-6,5v-10,9,-22,18,-22,37v0,21,13,34,34,34v16,0,30,-7,38,-12v1,-1,3,-1,4,-2","w":119},"\u00a1":{"d":"44,-191r-17,0r0,-31r17,0r0,31xm44,0r-17,0r0,-162r17,0r0,162","w":70},"\u00ac":{"d":"170,-50r-17,0r0,-63r-127,0r0,-15r144,0r0,78","w":196},"\u00ab":{"d":"162,-25r-6,16r-71,-71r0,-10r71,-70r6,16r-62,59xm85,-25r-6,16r-71,-71r0,-10r71,-70r6,16r-62,59","w":182},"\u00bb":{"d":"175,-80r-72,71r-5,-16r61,-60r-61,-59r5,-16r72,70r0,10xm98,-80r-72,71r-6,-16r62,-60r-62,-59r6,-16r72,70r0,10","w":182},"\u00a0":{"w":75},"\u00c0":{"d":"169,0r-18,0r-16,-50r-98,0r-16,50r-18,0r77,-224r13,0xm130,-63r-44,-136r-44,136r88,0xm97,-242r-11,7r-60,-75r14,-9","w":171},"\u00c3":{"d":"169,0r-18,0r-16,-50r-98,0r-16,50r-18,0r77,-224r13,0xm130,-63r-44,-136r-44,136r88,0xm146,-274v-9,15,-17,30,-38,30v-13,0,-21,-7,-27,-12v-6,-5,-10,-9,-16,-9v-10,0,-16,7,-24,22r-14,-6v8,-15,17,-30,38,-30v14,0,21,7,28,13v5,4,9,8,15,8v10,0,16,-7,25,-22","w":171},"\u00d5":{"d":"197,-113v0,70,-36,117,-89,117v-53,0,-88,-47,-88,-117v0,-72,37,-115,88,-115v51,0,89,43,89,115xm180,-113v0,-61,-28,-100,-72,-100v-44,0,-72,39,-72,100v0,62,29,102,72,102v43,0,72,-40,72,-102xm166,-274v-9,15,-18,30,-38,30v-14,0,-21,-7,-28,-12v-5,-5,-9,-9,-15,-9v-10,0,-16,7,-24,22r-14,-6v8,-15,17,-30,38,-30v13,0,20,7,27,13v6,4,10,8,16,8v10,0,16,-7,25,-22","w":216},"\u00f7":{"d":"114,-133r-17,0r0,-30r17,0r0,30xm186,-74r-160,0r0,-14r160,0r0,14xm114,0r-17,0r0,-30r17,0r0,30","w":211},"\u00ff":{"d":"125,-163r-72,226r-17,0r21,-67r-50,-159r17,0r42,139r41,-139r18,0xm102,-185r-16,0r0,-30r16,0r0,30xm45,-185r-16,0r0,-30r16,0r0,30","w":131},"\u00a4":{"d":"179,-184r-16,7v-11,-22,-31,-36,-56,-36v-42,0,-69,36,-71,93r93,0r0,15r-93,0v2,57,30,95,71,95v25,0,44,-14,56,-35r15,6v-16,27,-41,43,-71,43v-53,0,-88,-47,-88,-117v0,-72,38,-115,88,-115v31,0,56,16,72,44","w":194},"\u00b7":{"d":"47,-70r-23,0r0,-31r23,0r0,31","w":70},"\u00c2":{"d":"169,0r-18,0r-16,-50r-98,0r-16,50r-18,0r77,-224r13,0xm130,-63r-44,-136r-44,136r88,0xm152,-242r-13,6r-54,-68r-54,68r-13,-6r60,-76r15,0","w":171},"\u00ca":{"d":"149,0r-122,0r0,-224r122,0r0,15r-106,0r0,81r88,0r0,15r-88,0r0,99r106,0r0,14xm152,-242r-13,6r-54,-68r-54,68r-13,-6r60,-76r15,0","w":164},"\u00c1":{"d":"169,0r-18,0r-16,-50r-98,0r-16,50r-18,0r77,-224r13,0xm130,-63r-44,-136r-44,136r88,0xm146,-311r-60,75r-11,-6r57,-77","w":171},"\u00cb":{"d":"149,0r-122,0r0,-224r122,0r0,15r-106,0r0,81r88,0r0,15r-88,0r0,99r106,0r0,14xm124,-243r-16,0r0,-30r16,0r0,30xm67,-243r-17,0r0,-30r17,0r0,30","w":164},"\u00c8":{"d":"149,0r-122,0r0,-224r122,0r0,15r-106,0r0,81r88,0r0,15r-88,0r0,99r106,0r0,14xm98,-242r-12,7r-60,-75r14,-9","w":164},"\u00cd":{"d":"96,0r-87,0r0,-14r35,0r0,-195r-35,0r0,-15r87,0r0,15r-35,0r0,195r35,0r0,14xm112,-311r-60,75r-11,-6r57,-77","w":105},"\u00ce":{"d":"96,0r-87,0r0,-14r35,0r0,-195r-35,0r0,-15r87,0r0,15r-35,0r0,195r35,0r0,14xm120,-242r-13,6r-54,-68r-55,68r-12,-6r60,-76r14,0","w":105},"\u00cf":{"d":"96,0r-87,0r0,-14r35,0r0,-195r-35,0r0,-15r87,0r0,15r-35,0r0,195r35,0r0,14xm90,-243r-16,0r0,-30r16,0r0,30xm33,-243r-17,0r0,-30r17,0r0,30","w":105},"\u00cc":{"d":"96,0r-87,0r0,-14r35,0r0,-195r-35,0r0,-15r87,0r0,15r-35,0r0,195r35,0r0,14xm62,-242r-11,7r-60,-75r14,-9","w":105},"\u00d3":{"d":"197,-113v0,70,-36,117,-89,117v-53,0,-88,-47,-88,-117v0,-72,37,-115,88,-115v51,0,89,43,89,115xm180,-113v0,-61,-28,-100,-72,-100v-44,0,-72,39,-72,100v0,62,29,102,72,102v43,0,72,-40,72,-102xm167,-311r-59,75r-12,-6r57,-77","w":216},"\u00d4":{"d":"197,-113v0,70,-36,117,-89,117v-53,0,-88,-47,-88,-117v0,-72,37,-115,88,-115v51,0,89,43,89,115xm180,-113v0,-61,-28,-100,-72,-100v-44,0,-72,39,-72,100v0,62,29,102,72,102v43,0,72,-40,72,-102xm176,-242r-13,6r-54,-68r-55,68r-12,-6r60,-76r15,0","w":216},"\u00d2":{"d":"197,-113v0,70,-36,117,-89,117v-53,0,-88,-47,-88,-117v0,-72,37,-115,88,-115v51,0,89,43,89,115xm180,-113v0,-61,-28,-100,-72,-100v-44,0,-72,39,-72,100v0,62,29,102,72,102v43,0,72,-40,72,-102xm120,-242r-12,7r-60,-75r15,-9","w":216},"\u00da":{"d":"168,-77v0,48,-29,81,-72,81v-43,0,-73,-33,-73,-81r0,-147r17,0r0,147v0,40,22,66,56,66v33,0,56,-26,56,-66r0,-147r16,0r0,147xm157,-311r-59,75r-12,-6r58,-77","w":191},"\u00db":{"d":"168,-77v0,48,-29,81,-72,81v-43,0,-73,-33,-73,-81r0,-147r17,0r0,147v0,40,22,66,56,66v33,0,56,-26,56,-66r0,-147r16,0r0,147xm162,-242r-12,6r-55,-68r-54,68r-13,-6r60,-76r15,0","w":191},"\u00d9":{"d":"168,-77v0,48,-29,81,-72,81v-43,0,-73,-33,-73,-81r0,-147r17,0r0,147v0,40,22,66,56,66v33,0,56,-26,56,-66r0,-147r16,0r0,147xm107,-242r-12,7r-59,-75r14,-9","w":191},"\u00af":{"d":"157,-193r-131,0r0,-13r131,0r0,13","w":182},"\u00b8":{"d":"86,6v0,39,-21,61,-60,61r-7,-14r6,0v29,0,45,-13,45,-47r0,-13r16,0r0,13","w":141},"\u00d0":{"d":"179,-113v0,68,-36,113,-88,113r-57,0r0,-113r-30,0r0,-13r30,0r0,-98r57,0v50,0,88,41,88,111xm162,-113v0,-59,-28,-96,-71,-96r-40,0r0,83r32,0r0,13r-32,0r0,99r40,0v42,0,71,-40,71,-99","w":197},"\u00f0":{"d":"148,-73v0,48,-27,77,-64,77v-37,0,-65,-29,-65,-77v0,-48,28,-76,65,-76v12,0,21,3,29,10r-20,-47r-38,0r0,-15r31,0r-17,-39r18,0v6,12,11,26,17,39r39,0r0,15r-33,0r31,76v5,10,7,23,7,37xm132,-73v0,-38,-19,-62,-48,-62v-30,0,-49,24,-49,62v0,38,20,62,49,62v29,0,48,-24,48,-62","w":167}}});;var revision=364;var hkSUrl='http://c0396992.cdn.cloudfiles.rackspacecloud.com/r'+revision+'/';