(function(){var window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context)},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;return this}if(typeof selector==="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]){selector=jQuery.clean([match[1]],context)}else{var elem=document.getElementById(match[3]);if(elem&&elem.id!=match[3]){return jQuery().find(selector)}var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret}}else{return jQuery(context).find(selector)}}else{if(jQuery.isFunction(selector)){return jQuery(document).ready(selector)}}if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context}return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num]},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector}else{if(name){ret.selector=this.selector+"."+name+"("+selector+")"}}return ret},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this},each:function(callback,args){return jQuery.each(this,callback,args)},index:function(elem){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this)},attr:function(name,value,type){var options=name;if(typeof name==="string"){if(value===undefined){return this[0]&&jQuery[type||"attr"](this[0],name)}else{options={};options[name]=value}}return this.each(function(i){for(name in options){jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name))}})},css:function(key,value){if((key=="width"||key=="height")&&parseFloat(value)<0){value=undefined}return this.attr(key,value,"curCSS")},text:function(text){if(typeof text!=="object"&&text!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text))}var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8){ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this])}})});return ret},wrapAll:function(html){if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode){wrap.insertBefore(this[0])}wrap.map(function(){var elem=this;while(elem.firstChild){elem=elem.firstChild}return elem}).append(this)}return this},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html)})},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html)})},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1){this.appendChild(elem)}})},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1){this.insertBefore(elem,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this)})},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling)})},end:function(){return this.prevObject||jQuery([])},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem)})),"find",selector)}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML}return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName){return}var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data)}}i++})}return ret},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i)})||jQuery.multiFilter(selector,jQuery.grep(this,function(elem){return elem.nodeType===1})),"filter",selector)},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur}cur=cur.parentNode;closer++}})},not:function(selector){if(typeof selector==="string"){if(isSimple.test(selector)){return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector)}else{selector=jQuery.multiFilter(selector,this)}}var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector})},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector==="string"?jQuery(selector):jQuery.makeArray(selector))))},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0},hasClass:function(selector){return!!selector&&this.is("."+selector)},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,"option")){return(elem.attributes.value||{}).specified?elem.value:elem.text}if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0){return null}for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one){return value}values.push(value)}}return values}return(elem.value||"").replace(/\r/g,"")}return undefined}if(typeof value==="number"){value+=""}return this.each(function(){if(this.nodeType!=1){return}if(jQuery.isArray(value)&&/radio|checkbox/.test(this.type)){this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0)}else{if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0)});if(!values.length){this.selectedIndex=-1}}else{this.value=value}}})},html:function(value){return value===undefined?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(value)},replaceWith:function(value){return this.after(value).remove()},eq:function(i){return this.slice(i,+i+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first){for(var i=0,l=this.length;i<l;i++){callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment)}}if(scripts){jQuery.each(scripts,evalScript)}}return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem}}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src){jQuery.ajax({url:elem.src,async:false,dataType:"script"})}else{jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"")}if(elem.parentNode){elem.parentNode.removeChild(elem)}}function now(){return+new Date}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2}if(typeof target!=="object"&&!jQuery.isFunction(target)){target={}}if(length==i){target=this;--i}for(;i<length;i++){if((options=arguments[i])!=null){for(var name in options){var src=target[name],copy=options[name];if(target===copy){continue}if(deep&&copy&&typeof copy==="object"&&!copy.nodeType){target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy)}else{if(copy!==undefined){target[name]=copy}}}}}return target};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep){window.jQuery=_jQuery}return jQuery},isFunction:function(obj){return toString.call(obj)==="[object Function]"},isArray:function(obj){return toString.call(obj)==="[object Array]"},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument)},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval){script.appendChild(document.createTextNode(data))}else{script.text=data}head.insertBefore(script,head.firstChild);head.removeChild(script)}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase()},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length===undefined){for(name in object){if(callback.apply(object[name],args)===false){break}}}else{for(;i<length;){if(callback.apply(object[i++],args)===false){break}}}}else{if(length===undefined){for(name in object){if(callback.call(object[name],name,object[name])===false){break}}}else{for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}}return object},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value)){value=value.call(elem,i)}return typeof value==="number"&&type=="curCSS"&&!exclude.test(name)?value+"px":value},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className)){elem.className+=(elem.className?" ":"")+className}})},remove:function(elem,classNames){if(elem.nodeType==1){elem.className=classNames!==undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className)}).join(" "):""}},has:function(elem,className){return elem&&jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name]}callback.call(elem);for(var name in options){elem.style[name]=old[name]}},css:function(elem,name,force,extra){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border"){return}jQuery.each(which,function(){if(!extra){val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0}if(extra==="margin"){val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0}else{val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0}})}if(elem.offsetWidth!==0){getWH()}else{jQuery.swap(elem,props,getWH)}return Math.max(0,Math.round(val))}return jQuery.curCSS(elem,name,force)},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret}if(name.match(/float/i)){name=styleFloat}if(!force&&style&&style[name]){ret=style[name]}else{if(defaultView.getComputedStyle){if(name.match(/float/i)){name="float"}name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle){ret=computedStyle.getPropertyValue(name)}if(name=="opacity"&&ret==""){ret="1"}}else{if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase()});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft}}}}return ret},clean:function(elems,context,fragment){context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document}if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match){return[context.createElement(match[1])]}}var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number"){elem+=""}if(!elem){return}if(typeof elem==="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">"});var tags=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!jQuery.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--){div=div.lastChild}if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j])}}}if(!jQuery.support.leadingWhitespace&&/^\s/.test(elem)){div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild)}elem=jQuery.makeArray(div.childNodes)}if(elem.nodeType){ret.push(elem)}else{ret=jQuery.merge(ret,elem)}});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i])}else{if(ret[i].nodeType===1){ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))))}fragment.appendChild(ret[i])}}return scripts}return ret},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8){return undefined}var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode){elem.parentNode.selectedIndex}if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode){throw"type property can't be changed";}elem[name]=value}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name)){return elem.getAttributeNode(name).nodeValue}if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined}return elem[name]}if(!jQuery.support.style&&notxml&&name=="style"){return jQuery.attr(elem.style,"cssText",value)}if(set){elem.setAttribute(name,""+value)}var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr}if(!jQuery.support.opacity&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+""=="NaN"?"":"alpha(opacity="+value*100+")")}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase()});if(set){elem[name]=value}return elem[name]},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"")},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||typeof array==="string"||jQuery.isFunction(array)||array.setInterval){ret[0]=array}else{while(i){ret[--i]=array[i]}}}return ret},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++){if(array[i]===elem){return i}}return-1},merge:function(first,second){var i=0,elem,pos=first.length;if(!jQuery.support.getAll){while((elem=second[i++])!=null){if(elem.nodeType!=8){first[pos++]=elem}}}else{while((elem=second[i++])!=null){first[pos++]=elem}}return first},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i])}}}catch(e){ret=array}return ret},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++){if(!inv!=!callback(elems[i],i)){ret.push(elems[i])}}return ret},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null){ret[ret.length]=value}}return ret.concat.apply([],ret)}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};jQuery.each({parent:function(elem){return elem.parentNode},parents:function(elem){return jQuery.dir(elem,"parentNode")},next:function(elem){return jQuery.nth(elem,2,"nextSibling")},prev:function(elem){return jQuery.nth(elem,2,"previousSibling")},nextAll:function(elem){return jQuery.dir(elem,"nextSibling")},prevAll:function(elem){return jQuery.dir(elem,"previousSibling")},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem)},children:function(elem){return jQuery.sibling(elem.firstChild)},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes)}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string"){ret=jQuery.multiFilter(selector,ret)}return this.pushStack(jQuery.unique(ret),name,selector)}});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems)}return this.pushStack(ret,name,selector)}});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1){this.removeAttribute(name)}},addClass:function(classNames){jQuery.className.add(this,classNames)},removeClass:function(classNames){jQuery.className.remove(this,classNames)},toggleClass:function(classNames,state){if(typeof state!=="boolean"){state=!jQuery.className.has(this,classNames)}jQuery.className[state?"add":"remove"](this,classNames)},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).length){jQuery("*",this).add([this]).each(function(){jQuery.event.remove(this);jQuery.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){jQuery(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments)}});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0}var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id){id=elem[expando]=++uuid}if(name&&!jQuery.cache[id]){jQuery.cache[id]={}}if(data!==undefined){jQuery.cache[id][name]=data}return name?jQuery.cache[id][name]:id},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id]){break}if(!name){jQuery.removeData(elem)}}}else{try{delete elem[expando]}catch(e){if(elem.removeAttribute){elem.removeAttribute(expando)}}delete jQuery.cache[id]}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data)){q=jQuery.data(elem,type,jQuery.makeArray(data))}else{if(data){q.push(data)}}}return q},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx"){fn=queue[0]}if(fn!==undefined){fn.call(elem)}}});jQuery.fn.extend({data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key)}return data===undefined&&parts[1]?this.data(parts[0]):data}else{return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value)})}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key)})},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx"}if(data===undefined){return jQuery.queue(this[0],type)}return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1){queue[0].call(this)}})},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type)})}});(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[]}if(!selector||typeof selector!=="string"){return results}var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break}}if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context)}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift()}set=posProcess(selector,set)}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set)}else{prune=false}while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur=""}else{pop=parts.pop()}if(pop==null){pop=context}Expr.relative[cur](checkSet,pop,isXML(context))}}if(!checkSet){checkSet=set}if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet)}else{if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i])}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i])}}}}}else{makeArray(checkSet,results)}if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1)}}}}}return results};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set)};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[]}for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break}}}}if(!set){set=context.getElementsByTagName("*")}return{set:set,expr:expr}};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[]}if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true}else{if(match===true){continue}}}if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true}else{curLoop[i]=false}}else{if(pass){result.push(item);anyFound=true}}}}}if(found!==undefined){if(!inplace){curLoop=result}expr=expr.replace(Expr.match[type],"");if(!anyFound){return[]}break}}}if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break}}old=expr}return curLoop};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href")}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase()}for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part}}if(isPartStrNotTag){Sizzle.filter(part,checkSet,true)}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part}}if(isPartStr){Sizzle.filter(part,checkSet,true)}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck}checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML)},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck}checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML)}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[]}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i])}}return ret.length===0?null:ret}},TAG:function(match,context){return context.getElementsByTagName(match[1])}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match}for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace){result.push(elem)}}else{if(inplace){curLoop[i]=false}}}}return false},ID:function(match){return match[1].replace(/\\/g,"")},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase()},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0}match[0]=done++;return match},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name]}if(match[2]==="~="){match[4]=" "+match[4]+" "}return match},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop)}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret)}return false}}else{if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true}}return match},POS:function(match){match.unshift(true);return match}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden"},disabled:function(elem){return elem.disabled===true},checked:function(elem){return elem.checked===true},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true},parent:function(elem){return!!elem.firstChild},empty:function(elem){return!elem.firstChild},has:function(elem,i,match){return!!Sizzle(match[3],elem).length},header:function(elem){return/h\d/i.test(elem.nodeName)},text:function(elem){return"text"===elem.type},radio:function(elem){return"radio"===elem.type},checkbox:function(elem){return"checkbox"===elem.type},file:function(elem){return"file"===elem.type},password:function(elem){return"password"===elem.type},submit:function(elem){return"submit"===elem.type},image:function(elem){return"image"===elem.type},reset:function(elem){return"reset"===elem.type},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON"},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName)}},setFilters:{first:function(elem,i){return i===0},last:function(elem,i,match,array){return i===array.length-1},even:function(elem,i){return i%2===0},odd:function(elem,i){return i%2===1},lt:function(elem,i,match){return i<match[3]-0},gt:function(elem,i,match){return i>match[3]-0},nth:function(elem,i,match){return match[3]-0==i},eq:function(elem,i,match){return match[3]-0==i}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array)}else{if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0}else{if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false}}return true}}}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case"only":case"first":while(node=node.previousSibling){if(node.nodeType===1){return false}}if(type=="first"){return true}node=elem;case"last":while(node=node.nextSibling){if(node.nodeType===1){return false}}return true;case"nth":var first=match[2],last=match[3];if(first==1&&last==0){return true}var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count}}parent.sizcache=doneName}var diff=elem.nodeIndex-last;if(first==0){return diff==0}else{return(diff%first==0&&diff/first>=0)}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array)}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results}return array};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array)}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i])}}else{for(var i=0;array[i];i++){ret.push(array[i])}}}return ret}}var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true}return ret}}else{if("sourceIndex"in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true}return ret}}else{if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true}return ret}}}}(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[]}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match}}root.removeChild(form)})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i])}}results=tmp}return results}}div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return}Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra)}catch(e){}}return oldSizzle(query,context,extra,seed)};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0){return}div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return}Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1])}}})()}function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i}elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i}if(elem.nodeName===cur){match=elem;break}elem=elem[dir]}checkSet[i]=match}}}function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i}elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i}if(typeof cur!=="string"){if(elem===cur){match=true;break}}else{if(Sizzle.filter(cur,[elem]).length>0){match=elem;break}}}elem=elem[dir]}checkSet[i]=match}}}var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16}:function(a,b){return a!==b&&(a.contains?a.contains(b):true)};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument)};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"")}selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet)}return Sizzle.filter(later,tmpSet)};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem}).length};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")"}return Sizzle.matches(expr,elems)};jQuery.dir=function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1){matched.push(cur)}cur=cur[dir]}return matched};jQuery.nth=function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]){if(cur.nodeType==1&&++num==result){break}}return cur};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem){r.push(n)}}return r};return;window.Sizzle=Sizzle})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8){return}if(elem.setInterval&&elem!=window){elem=window}if(!handler.guid){handler.guid=this.guid++}if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type]){jQuery.event.specialAll[type].setup.call(elem,data,namespaces)}if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===false){if(elem.addEventListener){elem.addEventListener(type,handle,false)}else{if(elem.attachEvent){elem.attachEvent("on"+type,handle)}}}}handlers[handler.guid]=handler;jQuery.event.global[type]=true});elem=null},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8){return}var events=jQuery.data(elem,"events"),ret,index;if(events){if(types===undefined||(typeof types==="string"&&types.charAt(0)==".")){for(var type in events){this.remove(elem,type+(types||""))}}else{if(types.type){handler=types.handler;types=types.type}jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler){delete events[type][handler.guid]}else{for(var handle in events[type]){if(namespace.test(events[type][handle].type)){delete events[type][handle]}}}if(jQuery.event.specialAll[type]){jQuery.event.specialAll[type].teardown.call(elem,namespaces)}for(ret in events[type]){break}if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===false){if(elem.removeEventListener){elem.removeEventListener(type,jQuery.data(elem,"handle"),false)}else{if(elem.detachEvent){elem.detachEvent("on"+type,jQuery.data(elem,"handle"))}}}ret=null;delete events[type]}}})}for(ret in events){break}if(!ret){var handle=jQuery.data(elem,"handle");if(handle){handle.elem=null}jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle")}}},trigger:function(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true}if(!elem){event.stopPropagation();if(this.global[type]){jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type]){jQuery.event.trigger(event,data,this.handle.elem)}})}}if(!elem||elem.nodeType==3||elem.nodeType==8){return undefined}event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event)}event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle){handle.apply(elem,data)}if((!elem[type]||(jQuery.nodeName(elem,"a")&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false){event.result=false}if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,"a")&&type=="click")){this.triggered=true;try{elem[type]()}catch(e){}}this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent){jQuery.event.trigger(event,data,parent,true)}}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation()}}if(event.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando]){return event}var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop]}if(!event.target){event.target=event.srcElement||document}if(event.target.nodeType==3){event.target=event.target.parentNode}if(!event.relatedTarget&&event.fromElement){event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement}if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0)}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode)){event.which=event.charCode||event.keyCode}if(!event.metaKey&&event.ctrlKey){event.metaKey=event.ctrlKey}if(!event.which&&event.button){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)))}return event},proxy:function(fn,proxy){proxy=proxy||function(){return fn.apply(this,arguments)};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler)},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type)){remove++}});if(remove<1){jQuery.event.remove(this,namespaces[0],liveHandler)}}}}}};jQuery.Event=function(src){if(!this.preventDefault){return new jQuery.Event(src)}if(src&&src.type){this.originalEvent=src;this.type=src.type}else{this.type=src}this.timeStamp=now();this[expando]=true};function returnFalse(){return false}function returnTrue(){return true}jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e){return}if(e.preventDefault){e.preventDefault()}e.returnValue=false},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e){return}if(e.stopPropagation){e.stopPropagation()}e.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation()},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this){try{parent=parent.parentNode}catch(e){parent=this}}if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments)}};jQuery.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix)},teardown:function(){jQuery.event.remove(this,orig,withinElement)}}});jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data)})},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments)});return this.each(function(){jQuery.event.add(this,type,one,fn&&data)})},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn)})},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this)})},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result}},toggle:function(fn){var args=arguments,i=1;while(i<args.length){jQuery.event.proxy(fn,args[i++])}return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false}))},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut)},ready:function(fn){bindReady();if(jQuery.isReady){fn.call(document,jQuery)}else{jQuery.readyList.push(fn)}return this},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem){elems.push({elem:elem,fn:fn})}}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest")});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false){return(stop=false)}});return stop}function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".")}jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document,jQuery)});jQuery.readyList=null}jQuery(document).triggerHandler("ready")}}});var readyBound=false;function bindReady(){if(readyBound){return}readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready()}});if(document.documentElement.doScroll&&window==window.top){(function(){if(jQuery.isReady){return}try{document.documentElement.doScroll("left")}catch(error){setTimeout(arguments.callee,0);return}jQuery.ready()})()}}}jQuery.event.add(window,"load",jQuery.ready)}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name)}});jQuery(window).bind("unload",function(){for(var id in jQuery.cache){if(id!=1&&jQuery.cache[id].handle){jQuery.event.remove(jQuery.cache[id].handle.elem)}}});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return}jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"))}catch(e){}root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id]}root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee)});div.cloneNode(true).fireEvent("onclick")}jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display="none"})})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!=="string"){return this._load(url)}var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off)}var type="GET";if(params){if(jQuery.isFunction(params)){callback=params;params=null}else{if(typeof params==="object"){params=jQuery.param(params);type="POST"}}}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified"){self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText)}if(callback){self.each(callback,[res.responseText,status,res])}}});return this},serialize:function(){return jQuery.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val}}):{name:elem.name,value:val}}).get()}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f)}});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type})},getScript:function(url,callback){return jQuery.get(url,null,callback,"script")},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json")},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={}}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type})},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data)}if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre)){s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?"}}else{if(!s.data||!s.data.match(jsre)){s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?"}}s.dataType="json"}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data){s.data=(s.data+"").replace(jsre,"="+jsonp+"$1")}s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp]}catch(e){}if(head){head.removeChild(script)}}}if(s.dataType=="script"&&s.cache==null){s.cache=false}if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"")}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null}if(s.global&&!jQuery.active++){jQuery.event.trigger("ajaxStart")}var parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=location.host)){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset){script.charset=s.scriptCharset}if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();script.onload=script.onreadystatechange=null;head.removeChild(script)}}}head.appendChild(script);return undefined}var requestDone=false;var xhr=s.xhr();if(s.username){xhr.open(type,s.url,s.async,s.username,s.password)}else{xhr.open(type,s.url,s.async)}try{if(s.data){xhr.setRequestHeader("Content-Type",s.contentType)}if(s.ifModified){xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default)}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")}xhr.abort();return false}if(s.global){jQuery.event.trigger("ajaxSend",[xhr,s])}var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")}}}else{if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null}status=isTimeout=="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s)}catch(e){status="parsererror"}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified")}catch(e){}if(s.ifModified&&modRes){jQuery.lastModified[s.url]=modRes}if(!jsonp){success()}}else{jQuery.handleError(s,xhr,status)}complete();if(isTimeout){xhr.abort()}if(s.async){xhr=null}}}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0){setTimeout(function(){if(xhr&&!requestDone){onreadystatechange("timeout")}},s.timeout)}}try{xhr.send(s.data)}catch(e){jQuery.handleError(s,xhr,null,e)}if(!s.async){onreadystatechange()}function success(){if(s.success){s.success(data,status)}if(s.global){jQuery.event.trigger("ajaxSuccess",[xhr,s])}}function complete(){if(s.complete){s.complete(xhr,status)}if(s.global){jQuery.event.trigger("ajaxComplete",[xhr,s])}if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")}}return xhr},handleError:function(s,xhr,status,e){if(s.error){s.error(xhr,status,e)}if(s.global){jQuery.event.trigger("ajaxError",[xhr,s,e])}},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223}catch(e){}return false},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]}catch(e){}return false},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror"){throw"parsererror";}if(s&&s.dataFilter){data=s.dataFilter(data,type)}if(typeof data==="string"){if(type=="script"){jQuery.globalEval(data)}if(type=="json"){data=window["eval"]("("+data+")")}}return data},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value)}if(jQuery.isArray(a)||a.jquery){jQuery.each(a,function(){add(this.name,this.value)})}else{for(var j in a){if(jQuery.isArray(a[j])){jQuery.each(a[j],function(){add(j,this)})}else{add(j,jQuery.isFunction(a[j])?a[j]():a[j])}}}return s.join("&").replace(/%20/g,"+")}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type});return obj}jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback)}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName]}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none"){display="block"}elem.remove();elemdisplay[tagName]=display}jQuery.data(this[i],"olddisplay",display)}}for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||""}return this}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback)}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none"){jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"))}}for(var i=0,l=this.length;i<l;i++){this[i].style.display="none"}return this}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]()}):this.animate(genFx("toggle",3),fn,fn2)},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback)},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden){return opt.complete.call(this)}if((p=="height"||p=="width")&&this.style){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow}}if(opt.overflow!=null){this.style.overflow="hidden"}opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val)){e[val=="toggle"?hidden?"show":"hide":val](prop)}else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit}if(parts[1]){end=((parts[1]=="-="?-1:1)*end)+start}e.custom(start,end,unit)}else{e.custom(start,val,"")}}});return true})},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue){this.queue([])}this.each(function(){for(var i=timers.length-1;i>=0;i--){if(timers[i].elem==this){if(gotoEnd){timers[i](true)}timers.splice(i,1)}}});if(!gotoEnd){this.dequeue()}return this}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback)}});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false){jQuery(this).dequeue()}if(jQuery.isFunction(opt.old)){opt.old.call(this)}};return opt},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig){options.orig={}}}});jQuery.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd)}t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++){if(!timers[i]()){timers.splice(i--,1)}}if(!timers.length){clearInterval(timerId);timerId=undefined}},13)}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());jQuery(this.elem).show()},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(gotoEnd){var t=now();if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim){if(this.options.curAnim[i]!==true){done=false}}if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){jQuery(this.elem).hide()}if(this.options.hide||this.options.show){for(var p in this.options.curAnim){jQuery.attr(this.elem.style,p,this.options.orig[p])}}this.options.complete.call(this.elem)}return false}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now)},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null){fx.elem.style[fx.prop]=fx.now+fx.unit}else{fx.elem[fx.prop]=fx.now}}}});if(document.documentElement.getBoundingClientRect){jQuery.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return jQuery.offset.bodyOffset(this[0])}var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left}}}else{jQuery.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return jQuery.offset.bodyOffset(this[0])}jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName))){top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0}prevOffsetParent=offsetParent,offsetParent=elem.offsetParent}if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible"){top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0}prevComputedStyle=computedStyle}if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static"){top+=body.offsetTop,left+=body.offsetLeft}if(prevComputedStyle.position==="fixed"){top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft)}return{top:top,left:left}}}jQuery.offset={initialize:function(){if(this.initialized){return}var body=document.body,container=document.createElement("div"),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(prop in rules){container.style[prop]=rules[prop]}container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow="hidden",innerDiv.style.position="relative";this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset){top+=parseInt(jQuery.curCSS(body,"marginTop",true),10)||0,left+=parseInt(jQuery.curCSS(body,"marginLeft",true),10)||0}return{top:top,left:left}}};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,"marginTop");offset.left-=num(this,"marginLeft");parentOffset.top+=num(offsetParent,"borderTopWidth");parentOffset.left+=num(offsetParent,"borderLeftWidth");results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left}}return results},offsetParent:function(){var offsetParent=this[0].offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,"position")=="static")){offsetParent=offsetParent.offsetParent}return jQuery(offsetParent)}});jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;jQuery.fn[method]=function(val){if(!this[0]){return null}return val!==undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val}):this[0]==window||this[0]==document?self[i?"pageYOffset":"pageXOffset"]||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method]}});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px")}})})();(function($){$.fn.example=function(text,args){var isCallback=$.isFunction(text);var options=$.extend({},args,{example:text});return this.each(function(){var $this=$(this);if($.metadata){var o=$.extend({},$.fn.example.defaults,$this.metadata(),options)}else{var o=$.extend({},$.fn.example.defaults,options)}if(!$.fn.example.boundClassNames[o.className]){$(window).unload(function(){$("."+o.className).val("")});$("form").submit(function(){$(this).find("."+o.className).val("")});$.fn.example.boundClassNames[o.className]=true}if($.browser.msie&&!$this.attr("defaultValue")&&(isCallback||$this.val()==o.example)){$this.val("")}if($this.val()==""&&this!=document.activeElement){$this.addClass(o.className);$this.val(isCallback?o.example.call(this):o.example)}$this.focus(function(){if($(this).is("."+o.className)){$(this).val("");$(this).removeClass(o.className)}});$this.blur(function(){if($(this).val()==""){$(this).addClass(o.className);$(this).val(isCallback?o.example.call(this):o.example)}})})};$.fn.example.defaults={className:"example"};$.fn.example.boundClassNames=[]})(jQuery);(function($){$.flashPlayerVersion=function(){var flashVersion,activeX=null,fp6Crash=false,shockwaveFlash="ShockwaveFlash.ShockwaveFlash";if(!(flashVersion=navigator.plugins["Shockwave Flash"])){try{activeX=new ActiveXObject(shockwaveFlash+".7")}catch(errorA){try{activeX=new ActiveXObject(shockwaveFlash+".6");flashVersion=[6,0,21];activeX.AllowScriptAccess="always"}catch(errorB){if(flashVersion&&flashVersion[0]===6){fp6Crash=true}}if(!fp6Crash){try{activeX=new ActiveXObject(shockwaveFlash)}catch(errorC){flashVersion="X 0,0,0"}}}if(!fp6Crash&&activeX){try{flashVersion=activeX.GetVariable("$version")}catch(errorD){}}}else{flashVersion=flashVersion.description}flashVersion=flashVersion.match(/^[A-Za-z\s]*?(\d+)(\.|,)(\d+)(\s+r|,)(\d+)/);return[flashVersion[1]*1,flashVersion[3]*1,flashVersion[5]*1]}();$.flashExpressInstaller="expressInstall.swf";$.hasFlashPlayer=($.flashPlayerVersion[0]!==0);$.hasFlashPlayerVersion=function(options){var flashVersion=$.flashPlayerVersion;options=(/string|integer/.test(typeof options))?options.toString().split("."):options;return(options)?(flashVersion[0]>=(options.major||options[0]||flashVersion[0])&&flashVersion[1]>=(options.minor||options[1]||flashVersion[1])&&flashVersion[2]>=(options.release||options[2]||flashVersion[2])):(flashVersion[0]!==0)};$.flash=function(options){if(!$.hasFlashPlayer){return false}var movieFilename=options.swf||"",paramAttributes=options.params||{},buildDOM=document.createElement("body"),aArr,bArr,cArr,dArr,a,b,c,d;options.height=options.height||180;options.width=options.width||320;if(options.hasVersion&&!$.hasFlashPlayerVersion(options.hasVersion)){$.extend(options,{id:"SWFObjectExprInst",height:Math.max(options.height,137),width:Math.max(options.width,214)});movieFilename=options.expressInstaller||$.flashExpressInstaller;paramAttributes={flashvars:{MMredirectURL:window.location.href,MMplayerType:($.browser.msie&&$.browser.win)?"ActiveX":"PlugIn",MMdoctitle:document.title.slice(0,47)+" - Flash Player Installation"}}}if(options.flashvars&&typeof paramAttributes==="object"){$.extend(paramAttributes,{flashvars:options.flashvars})}for(a in(b=["swf","expressInstall","hasVersion","params","flashvars"])){delete options[b[a]]}aArr=[];for(a in options){if(typeof options[a]==="object"){bArr=[];for(b in options[a]){bArr.push(b.replace(/([A-Z])/,"-$1").toLowerCase()+":"+options[a][b]+";")}options[a]=bArr.join("")}aArr.push(a+'="'+options[a]+'"')}options=aArr.join(" ");if(typeof paramAttributes==="object"){aArr=[];for(a in paramAttributes){if(typeof paramAttributes[a]==="object"){bArr=[];for(b in paramAttributes[a]){if(typeof paramAttributes[a][b]==="object"){cArr=[];for(c in paramAttributes[a][b]){if(typeof paramAttributes[a][b][c]==="object"){dArr=[];for(d in paramAttributes[a][b][c]){dArr.push(d.replace(/([A-Z])/,"-$1").toLowerCase()+":"+paramAttributes[a][b][c][d]+";")}paramAttributes[a][b][c]=dArr.join("")}cArr.push(c+"{"+paramAttributes[a][b][c]+"}")}paramAttributes[a][b]=cArr.join("")}bArr.push(window.escape(b)+"="+window.escape(paramAttributes[a][b]))}paramAttributes[a]=bArr.join("&amp;")}aArr.push('<PARAM NAME="'+a+'" VALUE="'+paramAttributes[a]+'">')}paramAttributes=aArr.join("")}if(!(/style=/.test(options))){options+=' style="vertical-align:text-top;"'}if(!(/style=(.*?)vertical-align/.test(options))){options=options.replace(/style="/,'style="vertical-align:text-top;')}if($.browser.msie){options+=' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';paramAttributes='<PARAM NAME="movie" VALUE="'+movieFilename+'">'+paramAttributes}else{options+=' type="application/x-shockwave-flash" data="'+movieFilename+'"'}buildDOM.innerHTML="<OBJECT "+options+">"+paramAttributes+"</OBJECT>";return $(buildDOM.firstChild)};$.fn.flash=function(options){if(!$.hasFlashPlayer){return this}var a=0,each;while((each=this.eq(a++))[0]){each.html($.flash($.extend({},options)));if(each[0].firstChild.getAttribute("id")==="SWFObjectExprInst"){a=this.length}}return this}}(jQuery));(function($){$.lightbox_me={isVisible:false,defaults:{prefix:"lb",loaded:function(){},callback:function(){},opacity:0.6,zIndex:999,closeButton:"#close",overlayspeed:600,Lightboxspeed:200,scrollWithPage:true,show:"show",clickOverlayToClose:false}};function getWindowScrollOffset(){return(document.documentElement.scrollTop||document.body.scrollTop)+"px"}function getWindowSize(){return{width:window.innerWidth||(window.document.documentElement.clientWidth||window.document.body.clientWidth),height:window.innerHeight||(window.document.documentElement.clientHeight||window.document.body.clientHeight)}}$.fn.lightbox_me=function(options){if($.lightbox_me.isVisible){return this}$.lightbox_me.isVisible=true;var o=$.extend($.lightbox_me.defaults,options),ie6=($.browser.msie&&$.browser.version<7),$body=$(document.body),$window=$(window);var $passed_ele=$(this),ele_id=$passed_ele.attr("id");$container=$('<div id="'+o.prefix+'_container"></div>').append($passed_ele).append('<div class="'+o.prefix+'_overlay" id="'+o.prefix+'_overlay"></div>');if(ie6){$("select").css("visibility","hidden")}$body.append($container);var $overlay=$container.children("#"+o.prefix+"_overlay");var ie6scroll=function(){$container.css({top:getWindowScrollOffset()})};var escapeKeyCloseLightbox=function(e){if(e.keyCode==27||(e.DOM_VK_ESCAPE==27&&e.which==0)){removeLightbox()}};var positionLightbox=function(){var wsize=getWindowSize();if(o.scrollWithPage){$container.css({position:(ie6)?"absolute":"fixed",height:wsize.height,width:"100%",top:(ie6)?getWindowScrollOffset():0,left:0,right:0,bottom:0,zIndex:o.zIndex})}else{$container.css({width:"100%",top:(ie6)?getWindowScrollOffset():0,left:0,right:0,bottom:0,zIndex:o.zIndex})}var wheight=((o.scrollWithPage)?wsize.height:$body.height());$overlay.css({position:"absolute",height:wheight,width:"100%",top:0,left:0,right:0,bottom:0});$passed_ele.css({position:"absolute",top:"75px",left:"50%",marginLeft:((parseInt($passed_ele.css("paddingLeft"))+$passed_ele.width())/-2)})};var styleLightbox=function(){$overlay.css({zIndex:o.zIndex,display:"none",opacity:0});$passed_ele.css({zIndex:o.zIndex+1,display:"none",opacity:0})};var removeLightbox=function(clicked){if(ie6&&o.scrollWithPage){$body.unbind("scroll",ie6scroll)}$window.unbind("resize",positionLightbox);$overlay.animate2({opacity:0},400,function(){$overlay.remove();$(document).trigger("hide.lightbox_me");o.callback();$(document).unbind("remove.lightbox_me");$window.unbind("keypress",escapeKeyCloseLightbox);if(ie6){$("select").css("visibility","visible")}$container.remove();$.lightbox_me.isVisible=false});return false};positionLightbox();styleLightbox();if(ie6&&o.scrollWithPage){$window.scroll(ie6scroll)}$window.resize(positionLightbox);$window.keypress(escapeKeyCloseLightbox);$passed_ele.find(o.closeButton).click(removeLightbox);$(document).bind("remove.lightbox_me",removeLightbox);if(o.clickOverlayToClose){$overlay.click(removeLightbox)}$overlay.show().animate2({opacity:o.opacity},o.overlayspeed);$passed_ele.show().animate2({opacity:1},o.Lightboxspeed,function(){$(document).trigger("show.lightbox_me");o.loaded()});return this}})(jQuery);(function($){$.fn.animate2=function(css,speed,fn){fn=fn||function(){};if(speed===0){this.css(css);window.setTimeout(fn,0)}else{if($.browser.safari){var s=[];for(var i in css){s.push(i)}this.css({webkitTransitionProperty:s.join(", "),webkitTransitionDuration:speed+"ms"});window.setTimeout(function(x,y){x.css(y)},0,this,css);window.setTimeout(fn,speed)}else{this.animate(css,speed,fn)}}};$.heroFader={};$.fn.heroFader=function(controlsSelector,pagesClass){var duration=400,sleep=15000;$.heroFader.elem=this,$.heroFader.controls=this.find(controlsSelector).hide(),$.heroFader.blocks=this.find(pagesClass);if($.heroFader.blocks.length<1){return this}if($.heroFader.blocks.length<2){$.heroFader.blocks.eq(0).showHero(0);return this}$.heroFader.blocks.each(function(i){var block_id=($(this).attr("id").length>0)?$(this).attr("id"):"fader_block_"+i;$(this).attr("id",block_id);var class_name=(i==0)?"first":"";if(i==$.heroFader.blocks.length-1){class_name="last"}$.heroFader.controls.append('<a class="'+class_name+'" href="#'+block_id+'">&bull;</a>')});$.heroFader.controls.css({"margin-left":parseInt(-$.heroFader.controls.width()/2)}).show();$.heroFader.controls.find("a").click(function(){var target_url=$(this).attr("href").split("#")[1];$("#"+target_url).showHero(duration);return false});var mouseOverFader=false;$.heroFader.elem.hover(function(){mouseOverFader=true},function(){mouseOverFader=false});$.heroFader.blocks.eq(0).showHero(0);setInterval(function(){if(mouseOverFader){return false}var current=$.heroFader.blocks.filter(":visible"),nextHero=current.next();if(nextHero.length<1){nextHero=$.heroFader.blocks.eq(0)}nextHero.showHero(duration)},sleep);return this};$.heroFader.currentlyAnimating=false;$.fn.showHero=function(duration){if($.heroFader.currentlyAnimating){return}var current=$.heroFader.blocks.filter(":visible").css({"z-index":1});if(current[0]===this[0]){return}$.heroFader.controls.find("a.active").removeClass("active");$.heroFader.controls.find("a[href$="+this.attr("id")+"]").addClass("active");$.heroFader.currentlyAnimating=true;this.css({opacity:0}).show().animate2({opacity:1},duration,function(){$.heroFader.currentlyAnimating=false;current.css({opacity:0,"z-index":5}).hide()})}})(jQuery);function clearErrorMessages(form){jQuery(form).find("div[errorFor], span[errorFor]").remove()}function clearErrorLabels(form){jQuery(form).find("li.error").removeClass("error");jQuery(form).find("label.error").removeClass("error");jQuery(form).find("strong.err, strong[errorFor]").remove()}function addError(e,errorText){var ele=jQuery(e);var contain;var e_id=ele.attr("id"),e_msg='<strong class="error-description" errorFor="'+e_id+'">'+errorText+"</strong>";if(ele.is(":checkbox")&&(0<ele.parents("li.form-checkboxlist").length)){contain=ele.parents("li.form-checkboxlist")}else{contain=ele.parents("li")}if(contain.is(".error")){return}if(ele.is(":checkbox")){contain.find("ul").before(e_msg)}else{if(contain.is(".form-textarea")){contain.children("label").after(e_msg)}else{contain.append(e_msg)}}contain.addClass("error").children("label").addClass("error");jQuery(document).trigger("add_form_error")}var elqPPS="70";function initGuidField(form_name){if(this.GetElqCustomerGUID){jQuery("#"+form_name+" #elqCustomerGUID").val(GetElqCustomerGUID())}}function disableSubmitInput(form){$(form).find("input[type='button'], input[type='submit'], input[type='image']").attr("disabled",true);$(form).find("input[type='image']").css({opacity:0.5})}function validateForm_newsLetterFormFooter(){form=document.getElementById("newsLetterFormFooter");clearErrorMessages(form);clearErrorLabels(form);var errors=false;var continueValidation=true;if(form.elements.emailAddress){field=form.elements.emailAddress;var error="Email Address is required";if(continueValidation&&field.value!=null&&(field.value==""||field.value.replace(/^\s+|\s+$/g,"").length==0)){addError(field,error);errors=true}}if(form.elements.emailAddress){field=form.elements.emailAddress;var error="Email Address is not valid";if(continueValidation&&field.value!=null&&field.value.length>0&&field.value.match(/\b(^[_A-Za-z0-9-]+(\.[_A-Za-z0-9-]+)*@([A-Za-z0-9-])+(\.[A-Za-z0-9-]+)*((\.[A-Za-z0-9]{2,})|(\.[A-Za-z0-9]{2,}\.[A-Za-z0-9]{2,}))$)\b/gi)==null){addError(field,error);errors=true}}if(!errors){disableSubmitInput(form)}return!errors}function validateForm_loginPopup(){form=document.getElementById("loginPopup");clearErrorMessages(form);clearErrorLabels(form);var errors=false;var continueValidation=true;if(form.elements.username){field=form.elements.username;var error="Username is required";if(continueValidation&&field.value!=null&&(field.value==""||field.value.replace(/^\s+|\s+$/g,"").length==0)){addError(field,error);errors=true}}if(form.elements.password){field=form.elements.password;var error="Password is required";if(continueValidation&&field.value!=null&&(field.value==""||field.value.replace(/^\s+|\s+$/g,"").length==0)){addError(field,error);errors=true}}if(!errors){disableSubmitInput(form);jQuery(".spinna").show().html(jQuery(".spinna").html());jQuery("#fieldset-login-popup").hide()}return!errors}(function($){$.fn.isEmpty=function(){return(this.val()!=null&&(this.val()==""||this.val().replace(/^\s+|\s+$/g,"").length==0))}})(jQuery);var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments)};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete){return}complete=true;for(var fn;fn=queue.shift();fn()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",perform,false);window.addEventListener("pageshow",perform,false)}if(!window.opera&&document.readyState){(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");perform()}catch(e){setTimeout(arguments.callee,1)}})()}addEvent(window,"load",perform);return function(listener){if(!arguments.length){perform()}else{complete?listener():queue.push(listener)}}})()};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||"px";this.convert=function(value){return value/base*this.value};this.convertFrom=function(value){return value/this.value*base};this.toString=function(){return this.value+this.unit}},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return"rgb("+$1+")"});return parsed}),fontStretch:cached(function(value){if(typeof value=="number"){return value}if(/%$/.test(value)){return parseFloat(value)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[value]||1}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle){return new Style(view.getComputedStyle(el,null))}if(el.currentStyle){return new Style(el.currentStyle)}return new Style(el.style)},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split("=",2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]])}return gradient}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value)){list.push(match[3]||match[1])}return list}),recognizesMedia:cached(function(media){var el=document.createElement("style"),sheet,container,supported;el.type="text/css";el.media=media;try{el.appendChild(document.createTextNode("/**/"))}catch(e){}container=elementsByTagName("head")[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported}),supports:function(property,value){var checker=document.createElement("span").style;if(checker[property]===undefined){return false}checker[property]=value;return checker[property]===value},textAlign:function(word,style,position,wordCount){if(style.get("textAlign")=="right"){if(position>0){word=" "+word}}else{if(position<wordCount-1){word+=" "}}return word},textDecoration:function(el,style){if(!style){style=this.getStyle(el)}var types={underline:null,overline:null,"line-through":null};for(var search=el;search.parentNode&&search.parentNode.nodeType==1;){var foundAll=true;for(var type in types){if(!hasOwnProperty(types,type)||types[type]){continue}if(style.get("textDecoration").indexOf(type)!=-1){types[type]=style.get("color")}foundAll=false}if(foundAll){break}style=this.getStyle(search=search.parentNode)}return types},textShadow:cached(function(value){if(value=="none"){return null}var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==","){shadows.push(currentShadow);currentShadow={};offCount=0}else{if(result[1]){currentShadow.color=result[1]}else{currentShadow[["offX","offY","blur"][offCount++]]=result[2]}}}shadows.push(currentShadow);return shadows}),textTransform:function(text,style){return text[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[style.get("textTransform")]||"toString"]()},whiteSpace:(function(){var ignore={inline:1,"inline-block":1,"run-in":1};return function(text,style,node){if(ignore[style.get("display")]){return text}if(!node.previousSibling){text=text.replace(/^\s+/,"")}if(!node.nextSibling){text=text.replace(/\s+$/,"")}return text}})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia("all"),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn()){}};var links=elementsByTagName("link"),styles=elementsByTagName("style");function isContainerReady(el){return el.disabled||isSheetReady(el.sheet,el.media||"screen")}function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||"all")){return true}if(!sheet||sheet.disabled){return false}try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText)){return false}break;default:break search}}}}catch(e){}return true}function allStylesLoaded(){if(document.createStyleSheet){return true}var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=="stylesheet"&&!isContainerReady(el)){return false}}for(i=0;el=styles[i];++i){if(!isContainerReady(el)){return false}}return true}DOM.ready(function(){if(!hasLayout){hasLayout=CSS.getStyle(document.body).isUsable()}if(complete||(hasLayout&&allStylesLoaded())){perform()}else{setTimeout(arguments.callee,10)}});return function(listener){if(complete){listener()}else{queue.push(listener)}}})();function Font(data){var face=this.face=data.face;this.glyphs=data.glyphs;this.w=data.w;this.baseSize=parseInt(face["units-per-em"],10);this.family=face["font-family"].toLowerCase();this.weight=face["font-weight"];this.style=face["font-style"]||"normal";this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return box})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent}function FontFamily(){var styles={},mapping={oblique:"italic",italic:"oblique"};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights){return null}weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight]){return weights[weight]}var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined){up=weight>400}if(weight==500){weight=400}for(var alt in weights){if(!hasOwnProperty(weights,alt)){continue}alt=parseInt(alt,10);if(!min||alt<min){min=alt}if(!max||alt>max){max=alt}alts.push(alt)}if(weight<min){weight=min}if(weight>max){weight=max}alts.sort(function(a,b){return(up?(a>weight&&b>weight)?a<b:a>b:(a<weight&&b<weight)?a>b:a<b)?-1:1});return weights[alts[0]]}}function HoverHandler(){function contains(node,anotherNode){if(node.contains){return node.contains(anotherNode)}return node.compareDocumentPosition(anotherNode)&16}function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related)){return}trigger(this)}function onEnterLeave(e){trigger(this)}function trigger(el){setTimeout(function(){api.replace(el,sharedStorage.get(el).options,true)},10)}this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,"mouseover",onOverOut);addEvent(el,"mouseout",onOverOut)}else{addEvent(el,"mouseenter",onEnterLeave);addEvent(el,"mouseleave",onEnterLeave)}}}function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i){values[i]=list[map[key]]}return values}this.add=function(key,args){map[key]=list.push(args)-1};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];){api.replace(args[0],args[1],true)}}}function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at)}this.get=function(el){var id=identify(el);return map[id]||(map[id]={})}}function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property)){custom[property]=styles[property]}}return this};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property]};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base))};this.isUsable=function(){return!!style}}function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false)}else{if(el.attachEvent){el.attachEvent("on"+type,function(){return listener.call(el,window.event)})}}}function attach(el,options){var storage=sharedStorage.get(el);if(storage.options){return el}if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el)}storage.options=options;return el}function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key)){cache[key]=fun.apply(null,arguments)}return cache[key]}}function getFont(el,style){if(!style){style=CSS.getStyle(el)}var families=CSS.quotedList(style.get("fontFamily").toLowerCase()),family;for(var i=0,l=families.length;i<l;++i){family=families[i];if(fonts[family]){return fonts[family].get(style.get("fontStyle"),style.get("fontWeight"))}}return null}function elementsByTagName(query){return document.getElementsByTagName(query)}function hasOwnProperty(obj,property){return obj.hasOwnProperty(property)}function merge(){var merged={},args,key;for(var i=0,l=arguments.length;args=arguments[i],i<l;++i){for(key in args){if(hasOwnProperty(args,key)){merged[key]=args[key]}}}return merged}function process(font,text,style,options,node,el){var separate=options.separate;if(separate=="none"){return engines[options.engine].apply(null,arguments)}var fragment=document.createDocumentFragment(),processed;var parts=text.split(separators[separate]),needsAligning=(separate=="words");if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text)){parts.unshift("")}if(/\s$/.test(text)){parts.push("")}}for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed){fragment.appendChild(processed)}}return fragment}function replaceElement(el,options){var font,style,node,nodeType,nextNode,redraw;for(node=attach(el,options).firstChild;node;node=nextNode){nodeType=node.nodeType;nextNode=node.nextSibling;redraw=false;if(nodeType==1){if(!node.firstChild){continue}if(!/cufon/.test(node.className)){arguments.callee(node,options);continue}else{redraw=true}}else{if(nodeType!=3){continue}}if(!style){style=CSS.getStyle(el).extend(options)}if(!font){font=getFont(el,style)}if(!font){continue}if(redraw){engines[options.engine](font,null,style,options,node,el);continue}var text=CSS.whiteSpace(node.data,style,node);if(text===""){continue}var processed=process(font,text,style,options,node,el);if(processed){node.parentNode.replaceChild(processed,node)}else{node.parentNode.removeChild(node)}}}var HAS_BROKEN_REGEXP=" ".split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var engines={},fonts={},defaultOptions={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query)})||(window.dojo&&dojo.query)||(window.$$&&function(query){return $$(query)})||(window.$&&function(query){return $(query)})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query)})||elementsByTagName),separate:"words",textShadow:"none"};var separators={words:/[^\S\u00a0]+/,characters:""};api.now=function(){DOM.ready();return api};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api};api.registerEngine=function(id,engine){if(!engine){return api}engines[id]=engine;return api.set("engine",id)};api.registerFont=function(data){var font=new Font(data),family=font.family;if(!fonts[family]){fonts[family]=new FontFamily()}fonts[family].add(font);return api.set("fontFamily",'"'+family+'"')};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine){return api}if(options.hover){options.forceHitArea=true}if(typeof options.textShadow=="string"){options.textShadow=CSS.textShadow(options.textShadow)}if(typeof options.color=="string"&&/^-/.test(options.color)){options.textGradient=CSS.gradient(options.color)}if(!ignoreHistory){replaceHistory.add(elements,arguments)}if(elements.nodeType||typeof elements=="string"){elements=[elements]}CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=="string"){api.replace(options.selector(el),options,true)}else{replaceElement(el,options)}}});return api};api.set=function(option,value){defaultOptions[option]=value;return api};return api})();Cufon.registerEngine("canvas",(function(){var check=document.createElement("canvas");if(!check||!check.getContext||!check.getContext.apply){return}check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports("display","inline-block");var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement("style");styleSheet.type="text/css";styleSheet.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(HAS_BROKEN_LINEHEIGHT?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(HAS_INLINE_BLOCK?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(",");switch(match[1]){case"v":code[i]={m:"bezierCurveTo",a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case"r":code[i]={m:"lineTo",a:[atX+=~~c[0],atY+=~~c[1]]};break;case"m":code[i]={m:"moveTo",a:[atX=~~c[0],atY=~~c[1]]};break;case"x":code[i]={m:"closePath"};break;case"e":break generate}context[code[i].m].apply(context,code[i].a)}return code}function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a)}}return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw){text=node.alt}var viewBox=font.viewBox;var size=style.getSize("fontSize",font.baseSize);var letterSpacing=style.get("letterSpacing");letterSpacing=(letterSpacing=="normal")?0:size.convertFrom(parseInt(letterSpacing,10));var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop){expandTop=y}if(x>expandRight){expandRight=x}if(y>expandBottom){expandBottom=y}if(x<expandLeft){expandLeft=x}}}var chars=Cufon.CSS.textTransform(text,style).split(""),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,advance,jumps=[];for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph){continue}if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k}width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k}if(advance===undefined){return null}expandRight+=viewBox.width-advance;expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild}else{wrapper=document.createElement("span");wrapper.className="cufon cufon-canvas";wrapper.alt=text;canvas=document.createElement("canvas");wrapper.appendChild(canvas);if(options.printable){var print=document.createElement("span");print.className="cufon-alt";print.appendChild(document.createTextNode(text));wrapper.appendChild(print)}}var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get("fontStretch"));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+"px";cStyle.height=canvasHeight+"px";expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+"px";cStyle.left=Math.round(size.convert(expandLeft))+"px";var wrapperWidth=Math.ceil(size.convert(stretchedWidth))+"px";if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+"px"}else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+"px"}var g=canvas.getContext("2d"),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.lineWidth=font.face["underline-thickness"];g.save();function line(y,color){g.strokeStyle=color;g.beginPath();g.moveTo(0,y);g.lineTo(width,y);g.stroke()}var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};if(textDecoration.underline){line(-font.face["underline-position"],textDecoration.underline)}if(textDecoration.overline){line(font.ascent,textDecoration.overline)}function renderText(){g.scale(stretchFactor,1);for(var i=0,j=0,l=chars.length;i<l;++i){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph){continue}if(glyph.d){g.beginPath();if(glyph.code){interpret(glyph.code,g)}else{glyph.code=generateFromVML("m"+glyph.d,g)}g.fill()}g.translate(jumps[j++],0)}g.restore()}if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText()}}var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i])}g.fillStyle=fill}else{g.fillStyle=style.get("color")}renderText();if(textDecoration["line-through"]){line(-font.descent,textDecoration["line-through"])}return wrapper}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var check=document.createElement("cvml:shape");check.style.behavior="url(#default#VML)";if(!check.coordsize){return}check=null;var HAS_BROKEN_LINEHEIGHT=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(HAS_BROKEN_LINEHEIGHT?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$/i.test(value)?"1em":value)}function getSizeInPixels(el,value){if(/px$/i.test(value)){return parseFloat(value)}var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace("%","em");var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result}var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement("cvml:fill"),colors=[];fill.type="gradient";fill.angle=180;fill.focus="0";fill.method="sigma";fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+"% "+stops[j][1])}fill.colors=colors.join(",");fill.color2=stops[k][1];fills[id]=fill}return fills[id]}return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw){text=node.alt}var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get("fontSize"))+"px",font.baseSize));var letterSpacing=style.computedLSpacing;if(letterSpacing==undefined){letterSpacing=style.get("letterSpacing");style.computedLSpacing=letterSpacing=(letterSpacing=="normal")?0:~~size.convertFrom(getSizeInPixels(el,letterSpacing))}var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild}else{wrapper=document.createElement("span");wrapper.className="cufon cufon-vml";wrapper.alt=text;canvas=document.createElement("span");canvas.className="cufon-vml-canvas";wrapper.appendChild(canvas);if(options.printable){var print=document.createElement("span");print.className="cufon-alt";print.appendChild(document.createTextNode(text));wrapper.appendChild(print)}if(!hasNext){wrapper.appendChild(document.createElement("cvml:shape"))}}var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get("fontStretch"));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+"px";var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};var color=style.get("color");var chars=Cufon.CSS.textTransform(text,style).split(""),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,jumps=[],offsetX=0,advance;var shape,shadows=options.textShadow;for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph){continue}if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k}width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k}if(advance===undefined){return null}var fullWidth=-minX+width+(viewBox.width-advance);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+","+viewBox.height,coordOrigin;var stretch="r"+coordSize+"ns";var fill=options.textGradient&&gradientFill(options.textGradient);for(i=0,j=0;i<l;++i){glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph){continue}if(redraw){shape=canvas.childNodes[j];while(shape.firstChild){shape.removeChild(shape.firstChild)}}else{shape=document.createElement("cvml:shape");canvas.appendChild(shape)}shape.stroked="f";shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+","+minY;shape.path=(glyph.d?"m"+glyph.d+"xe":"")+"m"+coordOrigin+stretch;shape.fillcolor=color;if(fill){shape.appendChild(fill.cloneNode(false))}var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement("cvml:shadow");shadow.on="t";shadow.color=color1.color;shadow.offset=shadow1.offX+","+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type="double";shadow.color2=color2.color;shadow.offset2=shadow2.offX+","+shadow2.offY}shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow)}offsetX+=jumps[j++]}var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement("cvml:rect");cover.stroked="f";cover.className="cufon-vml-cover";coverFill=document.createElement("cvml:fill");coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover)}vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight}else{if(cover){canvas.removeChild(cover)}}wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get("lineHeight");if(lineHeight=="normal"){lineHeight="1em"}else{if(!isNaN(lineHeight)){lineHeight+="em"}}style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height))}if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+"px";wStyle.marginBottom=yAdjust+"px"}}return wrapper}})());Cufon.registerFont({w:200,face:{"font-family":"Avenir LT Std","font-weight":"600","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 3 2 2 3 2 2 4",ascent:"272",descent:"-88","x-height":"4",bbox:"-17 -285 360 102","underline-thickness":"18","underline-position":"-36",stemh:"28",stemv:"32","unicode-range":"U+0020-U+2122"},glyphs:{" ":{w:100},"!":{d:"67,-255r0,182r-35,0r0,-182r35,0xm26,-22v0,-13,11,-23,24,-23v13,0,24,10,24,23v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24",w:100},'"':{d:"53,-166r0,-89r28,0r0,89r-28,0xm106,-166r0,-89r28,0r0,89r-28,0",w:186},"#":{d:"33,0r10,-73r-34,0r0,-29r38,0r7,-51r-34,0r0,-28r38,0r10,-74r29,0r-10,74r42,0r10,-74r28,0r-10,74r34,0r0,28r-38,0r-7,51r34,0r0,29r-38,0r-10,73r-29,0r10,-73r-41,0r-10,73r-29,0xm125,-153r-42,0r-7,51r41,0"},"$":{d:"108,-285r0,26v26,0,53,8,71,28r-26,25v-10,-14,-27,-23,-45,-23r0,85v42,12,78,25,78,74v0,44,-36,72,-78,74r0,26r-19,0r0,-26v-32,0,-60,-9,-80,-34r28,-25v11,18,31,28,52,29r0,-88v-39,-11,-74,-29,-74,-74v0,-41,35,-68,74,-71r0,-26r19,0xm89,-149r0,-80v-23,4,-39,18,-39,41v0,22,18,33,39,39xm108,-109r0,83v24,-3,43,-18,43,-42v0,-25,-21,-35,-43,-41"},"%":{d:"13,-198v0,-35,29,-63,64,-63v35,0,64,28,64,63v0,36,-29,64,-64,64v-35,0,-64,-28,-64,-64xm41,-198v0,20,16,36,36,36v20,0,36,-16,36,-36v0,-19,-16,-35,-36,-35v-20,0,-36,16,-36,35xm166,-57v0,-36,28,-64,64,-64v35,0,63,28,63,64v0,35,-28,63,-63,63v-36,0,-64,-28,-64,-63xm194,-57v0,20,16,35,36,35v19,0,35,-15,35,-35v0,-20,-16,-36,-35,-36v-20,0,-36,16,-36,36xm245,-255r-160,266r-22,-11r160,-266",w:306},"&":{d:"198,-59r58,59r-46,0r-31,-34v-22,26,-44,40,-79,40v-57,0,-83,-36,-83,-73v0,-36,27,-59,58,-73v-16,-18,-30,-35,-30,-59v0,-39,32,-60,68,-60v36,0,66,19,66,57v0,32,-27,53,-53,66r50,52r32,-52r40,0xm105,-157v33,-7,61,-69,8,-72v-18,0,-33,11,-33,30v0,17,14,31,25,42xm158,-56r-62,-64v-20,12,-42,25,-42,52v0,24,23,44,48,44v24,0,43,-16,56,-32",w:259},"\u2019":{d:"80,-255r-30,89r-30,0r25,-89r35,0",w:100},"(":{d:"70,-264r21,14v-62,86,-61,207,0,292r-21,14v-69,-91,-71,-226,0,-320",w:100},")":{d:"30,56r-21,-14v62,-85,61,-206,0,-291r21,-15v69,90,71,227,0,320",w:100},"*":{d:"97,-255r0,53r50,-17r7,24r-50,16r32,43r-20,15r-32,-44r-33,43r-19,-14r32,-43r-51,-17r7,-23r51,17r0,-53r26,0",w:167},"+":{d:"24,-95r0,-28r82,0r0,-82r28,0r0,82r82,0r0,28r-82,0r0,82r-28,0r0,-82r-82,0",w:239},",":{d:"77,-41r-30,89r-30,0r25,-89r35,0",w:100},"-":{d:"101,-102r0,30r-88,0r0,-30r88,0",w:113},".":{d:"50,2v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23v13,0,24,10,24,23v0,13,-11,24,-24,24",w:100},"/":{d:"140,-261r-115,277r-25,-10r115,-277",w:140},"0":{d:"12,-127v0,-56,16,-132,88,-132v72,0,88,76,88,132v0,53,-16,131,-88,131v-72,0,-88,-78,-88,-131xm47,-127v0,33,5,101,53,101v48,0,53,-68,53,-101v0,-36,-5,-102,-53,-102v-48,0,-53,66,-53,102"},"1":{d:"97,0r0,-215r-47,43r-20,-24r71,-59r31,0r0,255r-35,0"},"2":{d:"17,0r0,-37r102,-101v35,-23,40,-94,-16,-93v-25,0,-42,15,-46,39r-38,-3v6,-89,166,-89,165,4v0,34,-22,58,-45,80r-84,81r129,0r0,30r-167,0"},"3":{d:"17,-51r36,-11v8,53,97,44,96,-10v0,-42,-39,-48,-72,-48r0,-30v53,0,66,-15,66,-40v1,-52,-73,-52,-86,-12r-35,-11v24,-70,156,-65,155,21v0,27,-18,50,-43,58v32,6,50,33,50,65v2,90,-149,98,-167,18"},"4":{d:"121,0r0,-56r-109,0r0,-35r102,-164r42,0r0,169r36,0r0,30r-36,0r0,56r-35,0xm121,-86r-1,-128r-78,128r79,0"},"5":{d:"170,-255r0,33r-104,0r-1,63v61,-19,116,16,114,79v5,91,-141,115,-167,33r35,-12v16,52,99,40,97,-19v1,-59,-67,-68,-114,-43r3,-134r137,0"},"6":{d:"143,-255r-64,99v51,-18,106,7,109,75v0,56,-40,85,-88,85v-48,0,-87,-32,-87,-82v6,-77,61,-120,90,-177r40,0xm47,-79v0,31,21,53,53,53v32,0,53,-22,53,-53v0,-31,-21,-53,-53,-53v-32,0,-53,22,-53,53"},"7":{d:"35,0r103,-225r-123,0r0,-30r160,0r0,30r-101,225r-39,0"},"8":{d:"100,4v-46,0,-83,-29,-83,-77v-1,-33,23,-54,49,-63v-20,-5,-40,-25,-40,-60v0,-38,34,-63,74,-63v40,0,75,25,75,63v1,36,-23,54,-40,61v27,7,48,30,48,62v0,48,-36,77,-83,77xm60,-191v0,20,15,41,40,41v27,0,40,-20,40,-41v0,-23,-16,-40,-40,-40v-22,0,-40,16,-40,40xm100,-26v29,0,49,-19,49,-47v0,-31,-22,-47,-49,-47v-28,0,-49,20,-49,47v0,30,23,47,49,47"},"9":{d:"57,0r63,-99v-51,19,-104,-8,-107,-75v0,-56,39,-85,87,-85v48,0,88,32,88,82v0,31,-11,51,-26,75r-64,102r-41,0xm153,-176v0,-31,-21,-53,-53,-53v-32,0,-53,22,-53,53v0,31,21,53,53,53v32,0,53,-22,53,-53"},":":{d:"50,-125v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24xm26,-22v0,-13,11,-23,24,-23v13,0,24,10,24,23v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24",w:100},";":{d:"77,-41r-30,89r-30,0r25,-89r35,0xm26,-149v0,-13,11,-23,24,-23v13,0,24,10,24,23v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24",w:100},"<":{d:"216,-44r0,29r-192,-79r0,-30r192,-79r0,28r-163,66",w:239},"=":{d:"24,-151r192,0r0,28r-192,0r0,-28xm24,-95r192,0r0,28r-192,0r0,-28",w:239},">":{d:"24,-175r0,-28r192,79r0,30r-192,79r0,-29r162,-65",w:239},"?":{d:"76,-93v-6,-48,58,-58,58,-100v0,-22,-17,-38,-38,-38v-24,0,-39,16,-42,40r-37,-3v3,-84,153,-92,151,-1v3,61,-68,58,-58,124r-34,0r0,-22xm69,-22v0,-13,11,-23,24,-23v12,0,23,10,23,23v0,13,-11,24,-23,24v-13,0,-24,-11,-24,-24",w:180},"@":{d:"152,-175v-34,0,-52,33,-52,68v0,17,7,29,25,29v29,0,50,-38,50,-65v0,-17,-8,-32,-23,-32xm221,-196r-32,109v0,6,4,9,11,9v20,0,44,-33,44,-71v0,-57,-43,-89,-94,-89v-62,0,-106,49,-106,111v-8,102,135,146,191,73r29,0v-20,37,-67,60,-113,60v-76,0,-135,-59,-135,-134v0,-74,60,-133,133,-133v67,0,123,46,123,109v0,61,-51,102,-84,102v-15,2,-20,-13,-25,-23v-27,39,-99,23,-94,-34v0,-47,32,-96,81,-96v17,0,32,8,39,28r6,-21r26,0",w:288},A:{d:"0,0r113,-255r31,0r109,255r-40,0r-26,-63r-121,0r-25,63r-41,0xm78,-93r97,0r-49,-117",w:253},B:{d:"33,0r0,-255v75,0,168,-11,166,64v1,30,-20,46,-44,57v30,2,55,29,55,63v0,77,-95,74,-177,71xm67,-225r0,76v44,0,95,7,95,-38v4,-41,-52,-41,-95,-38xm67,-119r0,89v50,-2,99,12,106,-43v2,-50,-55,-48,-106,-46",w:226},C:{d:"239,-222r-29,22v-53,-65,-165,-11,-156,75v0,53,35,99,95,99v29,0,51,-13,66,-34r29,22v-7,10,-38,44,-96,44v-81,0,-131,-67,-131,-131v-10,-118,147,-182,222,-97",w:253},D:{d:"27,0r0,-255r89,0v108,0,134,80,134,128v0,65,-49,127,-140,127r-83,0xm62,-222r0,190v83,7,149,-16,151,-95v0,-33,-17,-95,-100,-95r-51,0",w:266},E:{d:"33,0r0,-255r164,0r0,33r-130,0r0,75r121,0r0,33r-121,0r0,82r137,0r0,32r-171,0",w:219},F:{d:"33,0r0,-255r160,0r0,33r-126,0r0,79r117,0r0,33r-117,0r0,110r-34,0",w:206},G:{d:"159,-143r91,0r0,126v-25,15,-66,23,-97,23v-86,0,-136,-61,-136,-133v0,-76,55,-134,133,-134v47,0,75,12,95,33r-25,26v-62,-61,-173,-12,-166,75v-4,81,90,125,161,88r0,-71r-56,0r0,-33",w:280},H:{d:"33,0r0,-255r34,0r0,106r132,0r0,-106r35,0r0,255r-35,0r0,-117r-132,0r0,117r-34,0",w:266},I:{d:"33,0r0,-255r34,0r0,255r-34,0",w:100},J:{d:"112,-84r0,-171r35,0r0,182v0,64,-46,79,-75,79v-36,0,-62,-18,-69,-55r34,-8v4,19,16,31,35,31v35,0,40,-29,40,-58",w:173},K:{d:"33,0r0,-255r34,0r0,110r3,0r113,-110r48,0r-123,118r131,137r-50,0r-119,-127r-3,0r0,127r-34,0",w:233},L:{d:"33,0r0,-255r34,0r0,223r117,0r0,32r-151,0",w:186},M:{d:"30,0r0,-255r52,0r82,193r80,-193r52,0r0,255r-35,0r0,-210r-86,210r-23,0r-87,-210r0,210r-35,0",w:326},N:{d:"33,0r0,-255r45,0r141,210r0,-210r35,0r0,255r-44,0r-143,-210r0,210r-34,0",w:286},O:{d:"150,6v-78,0,-133,-58,-133,-133v0,-76,55,-134,133,-134v78,0,133,58,133,134v0,75,-55,133,-133,133xm150,-26v58,0,96,-46,96,-101v0,-56,-38,-102,-96,-102v-59,0,-96,46,-96,102v0,55,37,101,96,101",w:299},P:{d:"33,0r0,-255r89,0v66,0,82,39,82,71v0,32,-16,72,-82,72r-55,0r0,112r-34,0xm67,-225r0,82v47,-2,98,11,100,-41v-2,-51,-53,-40,-100,-41",w:213},Q:{d:"296,-30r0,30r-147,0v-72,0,-132,-54,-132,-130v0,-75,57,-131,132,-131v71,0,130,54,130,127v1,44,-23,85,-59,104r76,0xm148,-32v55,0,94,-45,94,-100v0,-54,-40,-97,-94,-97v-54,0,-94,43,-94,96v0,56,38,101,94,101",w:299},R:{d:"33,0r0,-255r89,0v114,1,102,126,19,139r73,116r-43,0r-65,-112r-39,0r0,112r-34,0xm67,-225r0,82v47,-2,98,11,100,-41v-2,-51,-53,-40,-100,-41",w:219},S:{d:"12,-29r28,-24v25,38,99,38,105,-15v0,-59,-126,-23,-126,-122v0,-30,26,-71,87,-71v28,0,54,5,73,29r-28,25v-8,-13,-25,-22,-45,-22v-38,0,-50,23,-50,39v0,64,126,26,126,118v4,85,-129,102,-170,43"},T:{d:"86,0r0,-222r-82,0r0,-33r199,0r0,33r-82,0r0,222r-35,0",w:206},U:{d:"28,-255r35,0r0,156v0,32,15,73,64,73v48,0,64,-41,64,-73r0,-156r34,0r0,162v0,59,-42,99,-98,99v-56,0,-99,-40,-99,-99r0,-162",w:253},V:{d:"96,0r-98,-255r40,0r75,207r78,-207r38,0r-100,255r-33,0",w:226},W:{d:"75,0r-75,-255r36,0r57,204r60,-204r40,0r61,204r56,-204r36,0r-74,255r-37,0r-62,-208r-62,208r-36,0",w:346},X:{d:"-1,0r93,-134r-86,-121r44,0r67,98r65,-98r43,0r-85,121r94,134r-45,0r-73,-111r-74,111r-43,0",w:233},Y:{d:"93,0r0,-109r-97,-146r45,0r69,112r72,-112r42,0r-97,146r0,109r-34,0",w:220},Z:{d:"12,0r0,-32r145,-190r-141,0r0,-33r184,0r0,33r-145,190r147,0r0,32r-190,0",w:213},"[":{d:"26,56r0,-320r63,0r0,24r-33,0r0,272r33,0r0,24r-63,0",w:100},"\\":{d:"115,16r-115,-277r25,-10r115,277",w:140},"]":{d:"12,56r0,-24r32,0r0,-272r-32,0r0,-24r62,0r0,320r-62,0",w:100},"^":{d:"29,-99r76,-156r29,0r77,156r-30,0r-61,-127r-61,127r-30,0",w:239},_:{d:"0,45r0,-18r180,0r0,18r-180,0",w:180},"\u2018":{d:"20,-166r30,-89r30,0r-25,89r-35,0",w:100},a:{d:"45,-130r-20,-20v37,-44,138,-27,139,32r2,118r-29,0v-2,-8,1,-19,-2,-26v-25,47,-118,39,-119,-21v-1,-52,58,-62,118,-59v11,-49,-70,-52,-89,-24xm134,-82v-37,-1,-84,0,-85,33v0,19,14,27,36,27v40,-2,51,-28,49,-60",w:186},b:{d:"24,0r0,-272r33,0r1,126v11,-18,35,-29,59,-29v53,0,87,39,87,90v8,78,-101,119,-147,61r0,24r-33,0xm113,-26v35,0,56,-25,56,-59v0,-35,-21,-60,-56,-60v-35,0,-56,25,-56,60v0,34,21,59,56,59",w:219},c:{d:"171,-148r-24,23v-32,-39,-103,-12,-96,41v-5,51,66,79,96,39r23,23v-51,55,-154,18,-154,-63v0,-82,103,-119,155,-63",w:173},d:{d:"195,-272r0,272r-32,0v-1,-7,2,-18,-1,-24v-44,59,-155,16,-146,-61v-9,-79,103,-120,147,-61r0,-126r32,0xm107,-26v34,0,56,-25,56,-59v0,-35,-22,-60,-56,-60v-35,0,-56,25,-56,60v0,34,21,59,56,59",w:219},e:{d:"186,-73r-137,0v0,50,80,66,104,24r25,18v-44,65,-173,32,-164,-54v0,-51,37,-90,89,-90v64,2,85,48,83,102xm49,-99r102,0v-1,-29,-16,-50,-49,-50v-32,0,-53,27,-53,50"},f:{d:"37,0r0,-143r-37,0r0,-28r37,0v-6,-69,11,-120,83,-103r-4,29v-28,-10,-51,3,-46,35r0,39r38,0r0,28r-39,0r0,143r-32,0",w:119},g:{d:"195,-171r0,170v6,87,-120,114,-176,57r22,-28v17,18,36,28,61,28v58,-2,65,-39,60,-84v-42,62,-146,19,-146,-57v0,-79,101,-121,147,-61r0,-25r32,0xm107,-145v-35,0,-56,25,-56,60v0,34,21,57,56,57v34,0,56,-23,56,-57v0,-35,-22,-60,-56,-60",w:219},h:{d:"24,0r0,-272r33,0r1,128v23,-48,124,-42,118,34r0,110r-33,0v-3,-54,17,-149,-39,-145v-27,0,-47,18,-47,57r0,88r-33,0"},i:{d:"27,0r0,-171r32,0r0,171r-32,0xm19,-232v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24",w:86},j:{d:"27,-171r32,0r0,195v0,18,0,62,-52,62v-7,0,-14,0,-21,-3r4,-30v22,9,39,-2,37,-30r0,-194xm19,-232v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24",w:86},k:{d:"24,0r0,-272r33,0r0,176r73,-74r45,0r-79,77r86,93r-46,0r-79,-89r0,89r-33,0",w:186},l:{d:"27,0r0,-272r32,0r0,272r-32,0",w:86},m:{d:"24,0r0,-171r31,0r0,27v4,-10,25,-31,55,-31v25,0,43,11,53,32v12,-21,34,-32,54,-32v90,2,59,96,65,175r-32,0v-7,-55,23,-140,-37,-145v-63,0,-38,87,-43,145r-33,0v-6,-54,21,-143,-36,-145v-23,0,-44,18,-44,56r0,89r-33,0",w:306},n:{d:"24,0r0,-171r33,0v1,8,-2,21,1,27v23,-48,124,-42,118,34r0,110r-33,0v-3,-54,17,-149,-39,-145v-27,0,-47,18,-47,57r0,88r-33,0"},o:{d:"51,-85v0,34,21,59,56,59v34,0,56,-25,56,-59v0,-35,-22,-60,-56,-60v-35,0,-56,25,-56,60xm16,-85v0,-50,40,-90,91,-90v51,0,91,40,91,90v0,49,-40,89,-91,89v-51,0,-91,-40,-91,-89",w:213},p:{d:"24,102r0,-273r33,0v1,8,-2,19,1,25v43,-61,155,-17,146,61v9,79,-102,118,-147,61r0,126r-33,0xm113,-145v-35,0,-56,25,-56,60v0,34,21,59,56,59v35,0,56,-25,56,-59v0,-35,-21,-60,-56,-60",w:219},q:{d:"195,-171r0,253r-32,0r-1,-106v-11,17,-35,28,-59,28v-53,0,-87,-38,-87,-89v-8,-79,101,-121,147,-61r0,-25r32,0xm107,-145v-35,0,-56,25,-56,60v0,34,21,59,56,59v34,0,56,-25,56,-59v0,-35,-22,-60,-56,-60",w:219},r:{d:"24,0r0,-171r33,0v1,8,-2,21,1,27v10,-21,37,-36,65,-29r-1,35v-39,-8,-66,9,-65,52r0,86r-33,0",w:133},s:{d:"140,-147r-25,19v-9,-19,-60,-26,-63,2v0,21,29,24,43,27v28,7,50,18,50,50v-3,65,-105,69,-135,23r25,-20v12,22,76,31,76,-2v0,-19,-27,-23,-42,-26v-27,-7,-52,-16,-52,-48v1,-61,96,-70,123,-25",w:159},t:{d:"116,-171r0,28r-47,0r0,78v0,19,0,39,25,39v8,0,17,-1,23,-5r0,30v-8,4,-23,5,-29,5v-84,-3,-40,-82,-51,-147r-37,0r0,-28r37,0r0,-48r32,0r0,48r47,0",w:133},u:{d:"176,-171r0,171r-33,0r0,-26v-25,46,-124,42,-119,-35r0,-110r33,0v3,54,-17,149,39,145v27,0,47,-17,47,-57r0,-88r33,0"},v:{d:"73,0r-69,-171r37,0r52,131r48,-131r35,0r-67,171r-36,0",w:180},w:{d:"60,0r-56,-171r36,0r40,128r40,-128r34,0r44,128r37,-128r34,0r-55,171r-33,0r-45,-127r-41,127r-35,0",w:273},x:{d:"2,0r69,-91r-60,-80r42,0r41,61r41,-61r39,0r-58,80r69,91r-42,0r-50,-72r-51,72r-40,0",w:186},y:{d:"75,1r-71,-172r37,0r52,134r48,-134r35,0r-81,208v-10,39,-42,58,-87,45r4,-30v41,18,53,-22,63,-51",w:180},z:{d:"13,0r0,-29r96,-114r-93,0r0,-28r133,0r0,29r-98,114r103,0r0,28r-141,0",w:166},"{":{d:"109,-264r0,26v-47,-10,-32,46,-34,86v1,35,-23,44,-30,49v8,1,30,12,30,48v0,36,-17,93,34,85r0,26v-43,3,-60,-2,-64,-55v2,-38,2,-92,-31,-90r0,-28v35,2,32,-59,31,-99v3,-43,24,-52,64,-48",w:119},"|":{d:"26,-270r28,0r0,360r-28,0r0,-360",w:79},"}":{d:"10,56r0,-26v47,10,33,-45,35,-85v-1,-35,23,-44,30,-49v-8,-1,-31,-12,-30,-49v-4,-36,17,-93,-35,-85r0,-26v61,-15,69,41,65,104v0,26,14,42,30,42r0,28v-34,-1,-31,60,-30,99v-3,43,-26,50,-65,47",w:119},"~":{d:"82,-136v43,0,83,58,109,0r14,22v-30,62,-80,6,-126,6v-15,0,-24,14,-30,26r-14,-22v11,-19,24,-32,47,-32",w:239},"'":{d:"64,-255r0,89r-28,0r0,-89r28,0",w:100},"\u201c":{d:"91,-255r-24,89r-35,0r30,-89r29,0xm155,-255r-25,89r-35,0r31,-89r29,0",w:186},"\u2013":{d:"180,-102r0,29r-180,0r0,-29r180,0",w:180},"\u201d":{d:"91,-255r-30,89r-29,0r25,-89r34,0xm155,-255r-30,89r-30,0r25,-89r35,0",w:186},"\u2026":{d:"60,2v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23v13,0,24,10,24,23v0,13,-11,24,-24,24xm180,2v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23v13,0,24,10,24,23v0,13,-11,24,-24,24xm300,2v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23v13,0,24,10,24,23v0,13,-11,24,-24,24",w:360},"`":{d:"30,-255r37,52r-30,0r-54,-52r47,0",w:86},"\u2014":{d:"360,-102r0,29r-360,0r0,-29r360,0",w:360},"\u2122":{d:"57,-107r0,-124r-45,0r0,-24r118,0r0,24r-45,0r0,124r-28,0xm158,-107r0,-148r43,0r41,114r40,-114r43,0r0,148r-28,0r-1,-123r-43,123r-23,0r-44,-123r0,123r-28,0",w:360},"\u00d7":{d:"24,-33r76,-76r-76,-76r20,-20r76,76r77,-76r19,20r-76,76r76,76r-20,20r-76,-76r-76,76",w:239}}});Cufon.registerFont({w:213,face:{"font-family":"Avenir LT Std","font-weight":"700","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 3 2 2 3 2 2 4",ascent:"272",descent:"-88","x-height":"4",bbox:"-21 -283 360 90","underline-thickness":"18","underline-position":"-36",stemh:"37",stemv:"43","unicode-range":"U+0020-U+2122"},glyphs:{" ":{w:106},"!":{d:"75,-255r0,175r-43,0r0,-175r43,0xm24,-25v0,-16,13,-28,29,-28v16,0,29,12,29,27v0,16,-13,28,-29,28v-15,0,-29,-12,-29,-27",w:106},'"':{d:"43,-160r0,-95r37,0r0,95r-37,0xm107,-160r0,-95r37,0r0,95r-37,0",w:186},"#":{d:"39,0r10,-75r-32,0r0,-30r36,0r7,-44r-33,0r0,-31r37,0r11,-75r31,0r-11,75r37,0r11,-75r32,0r-11,75r32,0r0,31r-37,0r-6,44r33,0r0,30r-36,0r-11,75r-32,0r11,-75r-37,0r-11,75r-31,0xm128,-149r-37,0r-6,44r37,0"},"$":{d:"114,-283r0,24v28,-1,54,7,74,25r-30,33v-11,-12,-27,-19,-44,-19v2,23,-4,53,2,72v40,11,81,24,81,73v0,48,-37,74,-83,79r0,26r-19,0r0,-26v-31,1,-62,-9,-84,-32r33,-33v11,16,31,25,51,26v-2,-24,4,-56,-2,-76v-40,-11,-76,-26,-76,-74v0,-43,38,-70,78,-74r0,-24r19,0xm95,-154r0,-66v-17,3,-32,15,-32,33v0,22,15,26,32,33xm114,-105r0,70v20,-4,38,-15,38,-37v0,-21,-21,-27,-38,-33"},"%":{d:"182,-63v0,-37,30,-67,67,-67v37,0,67,30,67,67v0,37,-30,67,-67,67v-37,0,-67,-30,-67,-67xm281,-63v0,-18,-14,-32,-32,-32v-18,0,-33,14,-33,32v0,18,15,33,33,33v18,0,32,-15,32,-33xm11,-192v0,-37,30,-67,67,-67v37,0,67,30,67,67v0,37,-30,67,-67,67v-37,0,-67,-30,-67,-67xm110,-192v0,-18,-14,-33,-32,-33v-18,0,-33,15,-33,33v0,18,15,32,33,32v18,0,32,-14,32,-32xm74,-2r150,-264r29,13r-149,265",w:326},"&":{d:"258,-134r-51,74r55,60r-56,0r-27,-29v-41,59,-161,42,-162,-39v0,-35,25,-60,55,-72v-16,-18,-29,-34,-29,-59v0,-41,35,-62,73,-62v38,0,72,18,72,60v0,31,-25,53,-50,66r41,44r28,-43r51,0xm117,-222v-43,1,-34,46,-6,62v28,-7,53,-58,6,-62xm152,-58r-52,-56v-17,10,-35,21,-35,43v0,22,19,39,40,39v20,0,34,-13,47,-26",w:266},"\u2019":{d:"19,-160r25,-95r44,0r-31,95r-38,0",w:106},"(":{d:"70,-264v9,8,23,11,30,21v-61,80,-60,199,0,279r-30,20v-69,-89,-70,-230,0,-320",w:106},")":{d:"37,56v-10,-7,-22,-12,-31,-20v61,-80,62,-199,0,-279r31,-21v68,90,68,231,0,320",w:106},"*":{d:"99,-255r0,51r48,-16r10,29r-49,16r31,42r-25,18r-31,-42r-30,41r-25,-18r31,-41r-49,-17r9,-29r49,17r0,-51r31,0",w:166},"+":{d:"22,-127r80,0r0,-80r36,0r0,80r79,0r0,36r-79,0r0,79r-36,0r0,-79r-80,0r0,-36",w:239},",":{d:"14,45r25,-95r44,0r-31,95r-38,0",w:106},"-":{d:"101,-107r0,37r-89,0r0,-37r89,0",w:113},".":{d:"24,-25v0,-16,13,-28,29,-28v16,0,29,12,29,27v0,16,-13,28,-29,28v-15,0,-29,-12,-29,-27",w:106},"/":{d:"139,-261r-112,278r-30,-11r112,-279",w:140},"0":{d:"14,-127v0,-121,64,-132,93,-132v28,0,92,11,92,132v0,120,-64,131,-92,131v-29,0,-93,-11,-93,-131xm58,-127v0,31,5,90,49,90v43,0,49,-59,49,-90v0,-32,-6,-91,-49,-91v-44,0,-49,59,-49,91"},"1":{d:"96,0r0,-205r-47,44r-26,-30r77,-64r40,0r0,255r-44,0"},"2":{d:"21,0r0,-46r99,-95v12,-12,27,-26,27,-44v0,-21,-18,-33,-38,-33v-21,0,-36,14,-39,34r-45,-3v4,-47,38,-72,84,-72v46,0,83,23,83,72v0,32,-17,54,-39,75r-79,73r118,0r0,39r-171,0"},"3":{d:"80,-113r0,-39v31,0,60,0,61,-35v1,-40,-67,-44,-75,-5r-45,-12v18,-79,163,-72,163,13v1,28,-19,50,-44,58v33,5,50,31,50,62v1,93,-156,101,-173,16r46,-13v5,47,86,41,84,-7v-1,-37,-34,-39,-67,-38"},"4":{d:"121,0r0,-52r-109,0r0,-43r103,-160r49,0r0,164r37,0r0,39r-37,0r0,52r-43,0xm121,-91r-1,-103r-64,103r65,0"},"5":{d:"182,-255r0,39r-103,0r-1,51v62,-14,114,21,112,81v6,99,-152,121,-174,30r45,-12v9,43,90,35,86,-14v0,-58,-73,-59,-113,-37r3,-138r145,0"},"6":{d:"105,-255r52,0v-19,32,-45,64,-60,95v54,-18,102,25,100,77v0,53,-38,87,-90,87v-87,7,-115,-98,-67,-156xm61,-83v0,25,21,46,47,46v25,0,46,-21,46,-46v0,-26,-21,-47,-46,-47v-26,0,-47,21,-47,47"},"7":{d:"15,-214r0,-41r173,0r0,40r-102,215r-50,0r104,-214r-125,0"},"8":{d:"107,-259v43,0,78,24,78,67v1,28,-15,48,-39,58v25,5,47,30,47,62v0,50,-39,76,-86,76v-48,0,-86,-26,-86,-76v-1,-33,24,-56,46,-63v-26,-8,-39,-30,-39,-57v0,-43,35,-67,79,-67xm107,-222v-22,0,-35,15,-35,34v0,20,13,36,35,36v19,0,34,-16,34,-36v0,-19,-15,-34,-34,-34xm107,-118v-24,0,-43,17,-43,40v0,24,18,41,43,41v24,0,42,-17,42,-41v0,-23,-19,-40,-42,-40"},"9":{d:"108,0r-52,0v19,-32,45,-64,60,-95v-53,17,-101,-26,-100,-77v0,-53,38,-87,91,-87v84,-6,114,97,67,156xm152,-172v0,-25,-21,-46,-47,-46v-25,0,-46,21,-46,46v0,26,21,47,46,47v26,0,47,-21,47,-47"},":":{d:"24,-25v0,-16,13,-28,29,-28v16,0,29,12,29,27v0,16,-13,28,-29,28v-15,0,-29,-12,-29,-27xm24,-147v0,-16,13,-28,29,-28v16,0,29,12,29,27v0,16,-13,28,-29,28v-15,0,-29,-12,-29,-27",w:106},";":{d:"14,45r25,-95r44,0r-31,95r-38,0xm24,-147v0,-16,13,-28,29,-28v16,0,29,12,29,27v0,16,-13,28,-29,28v-15,0,-29,-12,-29,-27",w:106},"<":{d:"211,-15r-182,-81r0,-26r182,-81r0,40r-122,54r122,54r0,40",w:239},"=":{d:"22,-160r195,0r0,37r-195,0r0,-37xm22,-95r195,0r0,37r-195,0r0,-37",w:239},">":{d:"29,-203r182,81r0,26r-182,81r0,-40r121,-54r-121,-54r0,-40",w:239},"?":{d:"177,-191v5,53,-65,57,-58,116r-43,0v-12,-64,47,-65,56,-114v-3,-48,-69,-35,-69,4r-46,-4v1,-89,162,-100,160,-2xm68,-25v0,-16,13,-28,29,-28v16,0,29,12,29,27v0,16,-13,28,-29,28v-15,0,-29,-12,-29,-27",w:186},"@":{d:"144,-164v-24,0,-38,20,-38,43v0,8,0,34,30,34v44,1,48,-76,8,-77xm222,-48r40,0v-68,99,-256,52,-250,-79v0,-77,61,-134,137,-134v63,0,127,42,127,118v0,77,-58,88,-79,88v-22,1,-27,-12,-30,-20v-27,36,-105,20,-98,-41v0,-42,28,-81,72,-81v21,-1,31,8,40,21r3,-16r34,0r-17,91v0,9,2,14,10,14v15,0,31,-17,31,-54v0,-58,-39,-88,-94,-88v-60,0,-100,43,-100,102v-6,91,110,128,174,79",w:288},A:{d:"0,0r111,-255r39,0r110,255r-52,0r-24,-58r-110,0r-23,58r-51,0xm89,-97r79,0r-39,-104",w:259},B:{d:"28,0r0,-255v79,2,174,-18,178,64v1,30,-20,47,-44,57v32,3,55,29,55,61v-4,89,-103,72,-189,73xm74,-216r0,65v38,2,90,1,87,-32v4,-34,-48,-35,-87,-33xm74,-112r0,73v44,-2,92,11,97,-37v5,-41,-54,-36,-97,-36",w:233},C:{d:"239,-221r-36,26v-53,-59,-145,-6,-141,66v-5,80,96,130,145,63r37,27v-68,92,-229,35,-229,-87v0,-121,148,-181,224,-95",w:246},D:{d:"28,0r0,-255v125,-6,226,-1,230,128v-9,124,-108,134,-230,127xm74,-41v76,4,136,-12,137,-86v0,-78,-59,-92,-137,-87r0,173",w:273},E:{d:"28,0r0,-255r169,0r0,41r-123,0r0,63r117,0r0,41r-117,0r0,69r130,0r0,41r-176,0",w:219},F:{d:"28,0r0,-255r165,0r0,41r-119,0r0,67r112,0r0,41r-112,0r0,106r-46,0",w:206},G:{d:"255,-149r0,130v-31,17,-66,25,-106,25v-78,0,-134,-53,-134,-132v-8,-125,149,-173,235,-103r-34,34v-53,-53,-154,-15,-154,66v0,79,82,116,148,81r0,-60r-53,0r0,-41r98,0",w:280},H:{d:"28,0r0,-255r46,0r0,102r119,0r0,-102r45,0r0,255r-45,0r0,-112r-119,0r0,112r-46,0",w:266},I:{d:"27,0r0,-255r46,0r0,255r-46,0",w:100},J:{d:"153,-255r0,184v0,41,-25,77,-76,77v-40,0,-67,-18,-75,-58r42,-10v3,16,15,27,31,27v25,0,33,-18,33,-49r0,-171r45,0",w:180},K:{d:"28,0r0,-255r46,0v2,35,-4,77,2,108r105,-108r62,0r-120,118r128,137r-64,0r-111,-125r-2,0r0,125r-46,0",w:246},L:{d:"28,0r0,-255r46,0r0,214r108,0r0,41r-154,0",w:186},M:{d:"30,0r0,-255r69,0r68,179r68,-179r69,0r0,255r-43,0r-1,-212r-77,212r-32,0r-78,-212r0,212r-43,0",w:333},N:{d:"28,0r0,-255r61,0r124,189r0,-189r45,0r0,255r-57,0r-127,-195r0,195r-46,0",w:286},O:{d:"15,-126v0,-82,56,-135,134,-135v80,-2,136,51,136,133v0,80,-56,133,-136,134v-78,0,-134,-53,-134,-132xm62,-129v0,54,35,94,88,94v53,0,88,-40,88,-94v0,-51,-35,-91,-88,-91v-53,0,-88,40,-88,91",w:299},P:{d:"28,0r0,-255v84,1,178,-15,180,74v-1,76,-64,77,-134,76r0,105r-46,0xm74,-144v39,-1,84,7,87,-36v-3,-43,-47,-35,-87,-36r0,72",w:219},Q:{d:"302,-37r0,37r-148,0v-79,0,-139,-50,-139,-133v0,-75,61,-128,134,-128v72,0,134,53,134,128v0,53,-30,82,-54,96r73,0xm148,-220v-50,0,-86,37,-86,88v0,52,37,91,86,91v51,0,87,-39,87,-91v0,-51,-36,-88,-87,-88",w:306},R:{d:"28,0r0,-255v85,2,182,-17,184,73v0,37,-21,64,-59,69r68,113r-55,0r-59,-108r-33,0r0,108r-46,0xm74,-147v41,-2,88,10,91,-35v-3,-44,-51,-32,-91,-34r0,69",w:226},S:{d:"186,-235r-33,35v-18,-28,-84,-30,-86,12v0,52,121,22,121,113v1,91,-128,104,-177,47r34,-33v12,17,31,26,51,26v21,0,44,-11,44,-34v0,-56,-121,-24,-121,-115v0,-82,116,-99,167,-51",w:206},T:{d:"81,0r0,-214r-78,0r0,-41r201,0r0,41r-78,0r0,214r-45,0",w:206},U:{d:"233,-255r0,161v0,62,-45,100,-103,100v-58,0,-103,-38,-103,-100r0,-161r46,0r0,160v0,25,13,58,57,58v44,0,57,-33,57,-58r0,-160r46,0",w:259},V:{d:"99,0r-100,-255r52,0r70,193r71,-193r49,0r-103,255r-39,0",w:240},W:{d:"75,0r-75,-255r50,0r48,184r58,-184r44,0r57,184r50,-184r46,0r-74,255r-43,0r-60,-194r-59,194r-42,0",w:353},X:{d:"0,0r91,-133r-85,-122r57,0r60,94r60,-94r55,0r-84,122r93,133r-58,0r-67,-108r-67,108r-55,0",w:246},Y:{d:"91,0r0,-109r-96,-146r57,0r62,102r64,-102r54,0r-96,146r0,109r-45,0",w:226},Z:{d:"13,0r0,-41r136,-173r-134,0r0,-41r190,0r0,41r-137,173r139,0r0,41r-194,0",w:219},"[":{d:"93,-264r0,29r-33,0r0,263r33,0r0,28r-69,0r0,-320r69,0",w:100},"\\":{d:"1,-261r30,-12r112,279r-30,11",w:140},"]":{d:"7,56r0,-28r33,0r0,-263r-33,0r0,-29r69,0r0,320r-69,0",w:100},"^":{d:"67,-123r-42,0r80,-132r30,0r80,132r-43,0r-52,-87",w:239},_:{d:"180,45r-180,0r0,-18r180,0r0,18",w:180},"\u2018":{d:"88,-255r-25,95r-44,0r30,-95r39,0",w:106},a:{d:"132,0v-1,-7,2,-18,-1,-24v-25,46,-118,35,-118,-24v2,-59,69,-60,119,-60v5,-47,-64,-44,-85,-19r-23,-22v19,-20,46,-28,74,-28v73,0,73,53,73,78r0,99r-39,0xm86,-28v33,-1,46,-18,44,-49v-28,0,-72,-1,-74,26v0,16,16,23,30,23",w:193},b:{d:"24,0r0,-272r44,0r1,121v9,-11,26,-26,58,-26v50,0,84,39,84,91v9,79,-101,123,-145,60r0,26r-42,0xm168,-86v0,-27,-19,-52,-51,-52v-32,0,-51,25,-51,52v0,27,19,51,51,51v32,0,51,-24,51,-51",w:226},c:{d:"172,-151r-29,30v-29,-36,-87,-7,-84,35v-5,41,57,71,84,35r29,31v-60,53,-157,13,-156,-66v-4,-81,103,-121,156,-65",w:173},d:{d:"161,0r0,-26v-43,63,-155,19,-145,-60v0,-52,34,-91,83,-91v34,0,49,16,60,26r0,-121r43,0r0,272r-41,0xm59,-86v0,27,19,51,51,51v31,0,51,-24,51,-51v0,-27,-20,-52,-51,-52v-32,0,-51,25,-51,52",w:226},e:{d:"191,-71r-132,0v3,49,73,52,93,17r31,24v-51,66,-170,30,-167,-56v0,-55,42,-91,94,-91v52,-1,85,40,81,106xm59,-104r89,0v-1,-25,-17,-41,-44,-41v-26,0,-42,16,-45,41",w:206},f:{d:"40,0r0,-136r-36,0r0,-37r36,0v-1,-58,2,-104,64,-103v10,0,19,0,28,2r-3,37v-41,-14,-52,19,-46,64r40,0r0,37r-40,0r0,136r-43,0",w:126},g:{d:"161,-173r41,0v-5,115,31,264,-97,259v-32,0,-61,-6,-86,-28r26,-35v36,45,134,27,113,-46v-47,56,-150,10,-142,-63v-9,-80,101,-124,145,-61r0,-26xm110,-138v-30,0,-51,21,-51,51v0,28,22,50,51,50v32,0,51,-22,51,-50v0,-30,-20,-51,-51,-51",w:226},h:{d:"68,-272r0,123v7,-14,25,-28,51,-28v88,2,58,99,63,177r-43,0r0,-87v0,-20,-1,-51,-32,-51v-60,3,-33,83,-39,138r-44,0r0,-272r44,0",w:206},i:{d:"25,0r0,-173r43,0r0,173r-43,0xm19,-231v0,-14,12,-26,27,-26v16,0,29,11,29,26v0,14,-13,25,-29,25v-15,0,-27,-12,-27,-25",w:93},j:{d:"25,-173r43,0r0,183v5,53,-25,87,-81,73r3,-37v26,10,35,-12,35,-35r0,-184xm19,-231v0,-14,12,-26,27,-26v16,0,29,11,29,26v0,14,-13,25,-29,25v-15,0,-27,-12,-27,-25",w:93},k:{d:"24,0r0,-272r44,0r0,171r66,-72r56,0r-74,79r78,94r-57,0r-69,-88r0,88r-44,0",w:193},l:{d:"25,0r0,-272r43,0r0,272r-43,0",w:93},m:{d:"23,0r0,-173r41,0r0,27v11,-37,95,-44,107,1v13,-22,31,-32,57,-32v84,0,59,99,63,177r-44,0r0,-98v0,-22,-6,-40,-32,-40v-58,4,-31,84,-37,138r-43,0v-7,-49,22,-134,-30,-138v-60,3,-33,83,-39,138r-43,0",w:313},n:{d:"24,0r0,-173r42,0r0,28v8,-17,24,-32,53,-32v88,2,58,99,63,177r-43,0r0,-87v0,-20,-1,-51,-32,-51v-60,3,-33,83,-39,138r-44,0",w:206},o:{d:"16,-86v0,-55,42,-91,94,-91v52,0,94,36,94,91v0,54,-42,90,-94,90v-52,0,-94,-36,-94,-90xm59,-86v0,27,19,51,51,51v31,0,51,-24,51,-51v0,-27,-20,-52,-51,-52v-32,0,-51,25,-51,52",w:219},p:{d:"24,82r0,-255r42,0r0,26v43,-63,155,-19,145,61v0,51,-34,90,-84,90v-33,0,-48,-16,-59,-26r0,104r-44,0xm168,-86v0,-27,-19,-52,-51,-52v-32,0,-51,25,-51,52v0,27,19,51,51,51v32,0,51,-24,51,-51",w:226},q:{d:"202,-173r0,255r-43,0r-1,-104v-9,11,-26,26,-59,26v-49,0,-83,-39,-83,-90v-9,-80,101,-124,145,-61r0,-26r41,0xm59,-86v0,27,19,51,51,51v31,0,51,-24,51,-51v0,-27,-20,-52,-51,-52v-32,0,-51,25,-51,52",w:226},r:{d:"24,0r0,-173r44,0r0,28v12,-24,36,-37,67,-30r0,42v-7,-2,-14,-3,-21,-3v-41,0,-46,34,-46,43r0,93r-44,0",w:140},s:{d:"145,-151r-28,26v-11,-20,-59,-28,-59,1v0,31,93,6,93,73v-3,67,-106,69,-142,29r29,-27v11,12,22,21,41,21v12,0,29,-6,29,-20v0,-36,-94,-7,-94,-73v1,-64,98,-73,131,-30",w:159},t:{d:"40,-136r-36,0r0,-37r36,0r0,-50r43,0r0,50r48,0r0,37r-48,0v2,45,-17,127,48,98r0,37v-48,14,-91,0,-91,-56r0,-79",w:140},u:{d:"182,-173r0,173r-41,0v-1,-9,2,-21,-1,-28v-8,18,-24,32,-53,32v-87,-1,-58,-99,-63,-177r44,0r0,88v0,19,1,50,31,50v62,-2,34,-83,40,-138r43,0",w:206},v:{d:"72,0r-71,-173r47,0r47,121r46,-121r45,0r-68,173r-46,0",w:186},w:{d:"61,0r-60,-173r47,0r38,121r35,-121r47,0r38,121r36,-121r43,0r-58,173r-43,0r-42,-118r-36,118r-45,0",w:286},x:{d:"0,0r69,-93r-60,-80r53,0r34,52r38,-52r49,0r-59,80r70,93r-53,0r-45,-62r-45,62r-51,0",w:193},y:{d:"75,1r-74,-174r48,0r49,120r43,-120r45,0r-82,210v-13,43,-49,57,-99,45r5,-39v25,10,51,5,57,-21",w:186},z:{d:"12,0r0,-40r93,-98r-88,0r0,-35r140,0r0,39r-94,99r98,0r0,35r-149,0",w:173},"{":{d:"0,-88r0,-32v10,0,34,-4,34,-25r0,-71v6,-46,36,-51,79,-48r0,31v-24,-3,-48,6,-42,25r0,68v0,29,-26,33,-36,37v12,1,35,5,36,38v6,41,-23,99,42,91r0,30v-43,3,-79,-1,-79,-47r0,-69v0,-23,-24,-28,-34,-28",w:100},"|":{d:"22,-270r36,0r0,360r-36,0r0,-360",w:79},"}":{d:"100,-120r0,32v-10,0,-34,5,-34,25r0,72v-6,45,-36,50,-79,47r0,-30v24,4,48,-7,43,-25r0,-68v-1,-29,25,-33,35,-37v-12,-1,-35,-5,-35,-39v-5,-41,22,-99,-43,-90r0,-31v43,-3,79,2,79,48r0,69v0,22,24,27,34,27",w:100},"~":{d:"80,-139v25,-1,57,23,78,25v15,0,24,-13,32,-25r13,31v-10,15,-22,31,-45,31v-36,0,-90,-50,-109,0r-13,-31v8,-15,21,-31,44,-31",w:239},"'":{d:"35,-160r0,-95r37,0r0,95r-37,0",w:106},"\u201c":{d:"90,-255r-25,95r-44,0r30,-95r39,0xm166,-255r-25,95r-44,0r30,-95r39,0",w:186},"\u2013":{d:"180,-106r0,35r-180,0r0,-35r180,0",w:180},"\u201d":{d:"97,-160r25,-95r44,0r-31,95r-38,0xm21,-160r25,-95r44,0r-31,95r-38,0",w:186},"\u2026":{d:"31,-25v0,-16,13,-28,29,-28v16,0,29,12,29,27v0,16,-13,28,-29,28v-15,0,-29,-12,-29,-27xm151,-25v0,-16,13,-28,29,-28v15,0,29,12,29,27v0,16,-13,28,-29,28v-15,0,-29,-12,-29,-27xm271,-25v0,-16,13,-28,29,-28v15,0,29,12,29,27v0,16,-13,28,-29,28v-15,0,-29,-12,-29,-27",w:360},"`":{d:"28,-255r36,52r-34,0r-51,-52r49,0",w:93},"\u2014":{d:"360,-106r0,35r-360,0r0,-35r360,0",w:360},"\u2122":{d:"58,-107r0,-115r-44,0r0,-33r125,0r0,33r-44,0r0,115r-37,0xm173,-107r0,-148r51,0r35,97r35,-97r52,0r0,148r-37,0r-1,-96r-36,96r-25,0r-37,-96r0,96r-37,0",w:360},"\u00d7":{d:"54,-201r66,66r65,-65r26,25r-66,65r67,67r-27,27r-65,-65r-66,65r-26,-26r66,-66r-66,-67",w:239}}});Cufon.replace("#container.jivesite #header-title, #container.jivesite h1, #container.jivesite h2, #container.jivesite h3, #container.jivesite .sidebar-section h6, #container.jivesite #subnav ul li:not(#subnav_tryitnow) a");(function($){$.flashExpressInstaller="/js/expressInstall.swf";$.fn.example.defaults.className="notExample";$.lightbox_me.defaults.opacity=0.8;$.lightbox_me.defaults.overlayspeed=0;$.lightbox_me.defaults.Lightboxspeed=500;$.lightbox_me.defaults.closeButton=".close";$.lightbox_me.defaults.clickOverlayToClose=true;$(document).bind("show.lightbox_me",function(){$.heroFader.currentlyAnimating=true});$(document).bind("hide.lightbox_me",function(){$.heroFader.currentlyAnimating=false});$.fn.customPopup=function(loadedFn){return this.each(function(){var wrapper=$('<div class="popup_bottom">'),content=$(this).clone().show();content.addClass("popup_content").prepend('<a class="close"></a>');$('<div class="popup">').append(wrapper.append(content)).lightbox_me({loaded:loadedFn})})};$(document).ready(function(){$("a.login-lightbox").click(function(){$("<div />").addClass("show_login_popup").load("/popups/login #content",function(){$(this).customPopup(function(){$(".popup #username-div input").focus()})});return false});$("#footer .newsletter a").click(function(){$("<div />").addClass("show_newsletter_popup").load("/popups/newsletter #content",function(){$(this).customPopup(function(){$(".popup #emailAddress-div input").focus()})});return false});$("#footer .search input[type=text]").example("Search the Jive Site");$("#footer .delicious a").click(function(){window.open("http://delicious.com/save?v=5&amp;noui&amp;jump=close&amp;url="+encodeURIComponent(location.href)+"&amp;title="+encodeURIComponent(document.title),"delicious","toolbar=no,width=550,height=550");return false});$("#footer .digg a").click(function(){var title=document.title,url=document.URL;if(title.length>75){title=title.substring(0,71)+"..."}window.open("http://digg.com/submit?url="+url+"&title="+title+"&bodytext=&media=news&topic=software","digg","width=1000,height=700");return false});$("#footer .twitter a").click(function(){var workurl="/ajax/bitly?longUrl="+document.URL;var url=$.ajax({type:"GET",url:workurl,async:false,data:"text",cache:false}).responseText;var title=document.title,status=title+" "+url+" (via @jivesoftware)";if(status.length>140){status=title.substring(0,(status.length-url.length+20))+"... "+url+" (via @jivesoftware)"}window.open("http://twitter.com/home?status="+encodeURIComponent(status),"twitter","width=800,height=600");return false})})})(jQuery);(function($){$.fn.fancyZoom=function(options){var options=options||{};var directory=options&&options.directory?options.directory:"/files/images/fancyzoom";var zooming=false;if($("#zoom").length==0){var ext=$.browser.msie?"gif":"png";var html='<div id="zoom" style="display:none;">                   <table id="zoom_table" style="border-collapse:collapse; width:100%; height:100%;">                     <tbody>                       <tr>                         <td class="tl" style="background:url('+directory+"/tl."+ext+') 0 0 no-repeat; width:20px; height:20px; overflow:hidden;" />                         <td class="tm" style="background:url('+directory+"/tm."+ext+') 0 0 repeat-x; height:20px; overflow:hidden;" />                         <td class="tr" style="background:url('+directory+"/tr."+ext+') 100% 0 no-repeat; width:20px; height:20px; overflow:hidden;" />                       </tr>                       <tr>                         <td class="ml" style="background:url('+directory+"/ml."+ext+') 0 0 repeat-y; width:20px; overflow:hidden;" />                         <td class="mm" style="background:#fff; vertical-align:top; padding:10px;">                           <div id="zoom_content">                           </div>                         </td>                         <td class="mr" style="background:url('+directory+"/mr."+ext+') 100% 0 repeat-y;  width:20px; overflow:hidden;" />                       </tr>                       <tr>                         <td class="bl" style="background:url('+directory+"/bl."+ext+') 0 100% no-repeat; width:20px; height:20px; overflow:hidden;" />                         <td class="bm" style="background:url('+directory+"/bm."+ext+') 0 100% repeat-x; height:20px; overflow:hidden;" />                         <td class="br" style="background:url('+directory+"/br."+ext+') 100% 100% no-repeat; width:20px; height:20px; overflow:hidden;" />                       </tr>                     </tbody>                   </table>                   <a href="#" title="Close" id="zoom_close" style="position:absolute; top:0; left:0;">                     <img src="'+directory+"/closebox."+ext+'" alt="Close" style="border:none; margin:0; padding:0;" />                   </a>                 </div>';$("body").append(html);$("html").click(function(e){if($(e.target).parents("#zoom:visible").length==0){hide()}});$(document).keyup(function(event){if(event.keyCode==27&&$("#zoom:visible").length>0){hide()}});$("#zoom_close").click(hide)}var zoom=$("#zoom");var zoom_table=$("#zoom_table");var zoom_close=$("#zoom_close");var zoom_content=$("#zoom_content");var middle_row=$("td.ml,td.mm,td.mr");this.each(function(i){$($(this).attr("href")).hide();$(this).click(show)});return this;function show(e){if(zooming){return false}zooming=true;var content_div=$($(this).attr("href"));var zoom_width=options.width;var zoom_height=options.height;var width=window.innerWidth||(window.document.documentElement.clientWidth||window.document.body.clientWidth);var height=window.innerHeight||(window.document.documentElement.clientHeight||window.document.body.clientHeight);var x=window.pageXOffset||(window.document.documentElement.scrollLeft||window.document.body.scrollLeft);var y=window.pageYOffset||(window.document.documentElement.scrollTop||window.document.body.scrollTop);var window_size={width:width,height:height,x:x,y:y};var width=(zoom_width||content_div.width())+60;var height=(zoom_height||content_div.height())+60;var d=window_size;var newTop=Math.max((d.height/2)-(height/2)+y,0);var newLeft=(d.width/2)-(width/2);var curTop=e.pageY;var curLeft=e.pageX;zoom_close.attr("curTop",curTop);zoom_close.attr("curLeft",curLeft);zoom_close.attr("scaleImg",options.scaleImg?"true":"false");$("#zoom").hide().css({position:"absolute",top:curTop+"px",left:curLeft+"px",width:"1px",height:"1px"});fixBackgroundsForIE();zoom_close.hide();if(options.closeOnClick){$("#zoom").click(hide)}if(options.scaleImg){zoom_content.html(content_div.html());$("#zoom_content img").css("width","100%")}else{zoom_content.html("")}$("#zoom").animate({top:newTop+"px",left:newLeft+"px",opacity:"show",width:width,height:height},500,null,function(){if(options.scaleImg!=true){zoom_content.html(content_div.html())}unfixBackgroundsForIE();zoom_close.show();zooming=false});return false}function hide(){if(zooming){return false}zooming=true;$("#zoom").unbind("click");fixBackgroundsForIE();if(zoom_close.attr("scaleImg")!="true"){zoom_content.html("")}zoom_close.hide();$("#zoom").animate({top:zoom_close.attr("curTop")+"px",left:zoom_close.attr("curLeft")+"px",opacity:"hide",width:"1px",height:"1px"},500,null,function(){if(zoom_close.attr("scaleImg")=="true"){zoom_content.html("")}unfixBackgroundsForIE();zooming=false});return false}function switchBackgroundImagesTo(to){$("#zoom_table td").each(function(i){var bg=$(this).css("background-image").replace(/\.(png|gif|none)\"\)$/,"."+to+'")');$(this).css("background-image",bg)});var close_img=zoom_close.children("img");var new_img=close_img.attr("src").replace(/\.(png|gif|none)$/,"."+to);close_img.attr("src",new_img)}function fixBackgroundsForIE(){if($.browser.msie&&parseFloat($.browser.version)>=7){switchBackgroundImagesTo("gif")}}function unfixBackgroundsForIE(){if($.browser.msie&&$.browser.version>=7){switchBackgroundImagesTo("png")}}}})(jQuery);
