/*
 * Sizzle CSS Selector Engine - v1.0
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString,hasDuplicate=false;var Sizzle=function(selector,context,results,seed){results=results||[];var origContext=context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[];}
if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,check,mode,extra,prune=true,contextXML=isXML(context);chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector])
selector+=parts.shift();set=posProcess(selector,set);}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}
if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,contextXML);}}else{checkSet=parts=[];}}
if(!checkSet){checkSet=set;}
if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context&&context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,origContext,results,seed);Sizzle.uniqueSort(results);}
return results;};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!/\W/.test(part)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace)
result.push(elem);}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}
return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase();},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(chunker.exec(match[3]).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return /h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON";},input:function(elem){return /input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0==i;},eq:function(elem,i,match){return match[3]-0==i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while((node=node.previousSibling)){if(node.nodeType===1)return false;}
if(type=='first')return true;node=elem;case'last':while((node=node.nextSibling)){if(node.nodeType===1)return false;}
return true;case'nth':var first=match[2],last=match[3];if(first==1&&last==0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first==0){return diff==0;}else{return(diff%first==0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);}
var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes,0);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true;}
return 0;}
var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true;}
return 0;}
var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true;}
return 0;}
var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();form.innerHTML="<a name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);root=form=null;})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}
div=null;})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();if(document.getElementsByClassName&&document.documentElement.getElementsByClassName)(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0)
return;div.lastChild.className="e";if(div.getElementsByClassName("e").length===1)
return;Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};div=null;})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&elem.ownerDocument.documentElement.nodeName!=="HTML";};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};window.Sizzle=Sizzle;})();
;var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());
;/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Copyright (c) 1989, 1995 Fundicion Tipografica Neufville S.A.
 This record
 * material and the data recorded thereon is the property of
 Fundicion Tipografica
 * Neufville S.A. and Adobe Systems Incorporated,
 or its licensors, and may not be
 * reproduced, used, displayed, modified,
 disclosed or transferred in any manner
 * without the express written
 approval of Fundicion Tipografica Neufville S.A.
 * and Adobe Systems
 Incorporated.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"18,-72r0,-22r71,0r0,22r-71,0","w":106},{"d":"27,0r0,-257r89,0v79,0,135,51,135,128v0,77,-56,129,-135,129r-89,0xm55,-233r0,209v95,11,165,-24,165,-105v0,-59,-43,-104,-107,-104r-58,0","w":266},{"d":"123,-68v34,0,60,-52,60,-84v0,-22,-15,-35,-30,-35v-36,0,-62,49,-62,82v0,22,14,37,32,37xm194,-178r9,-24r22,0r-39,126v0,6,3,10,9,10v28,0,57,-47,57,-86v0,-58,-48,-94,-102,-94v-66,0,-114,54,-114,119v0,64,51,116,115,116v36,0,73,-18,95,-47r20,0v-23,41,-68,66,-115,66v-78,0,-137,-62,-137,-138v0,-75,62,-135,135,-135v68,0,125,47,125,113v0,60,-49,105,-85,105v-14,0,-21,-9,-25,-24v-28,39,-98,26,-98,-32v0,-51,36,-105,88,-105v17,0,31,8,40,30","w":288},{"d":"25,-169r166,76r0,19r-166,77r0,-21r143,-65r-143,-66r0,-20","w":216},{"d":"27,0r0,-257r162,0r0,26r-134,0r0,81r116,0r0,25r-116,0r0,125r-28,0","w":193},{"d":"40,-82r-23,0r81,-160r20,0r81,160r-23,0r-68,-136","w":216},{"d":"22,0r0,-257r26,0r0,114v14,-20,32,-30,59,-30v48,0,72,42,72,90v0,48,-24,89,-72,89v-24,0,-44,-9,-59,-30r0,24r-26,0xm48,-83v0,38,15,70,52,70v37,0,53,-32,53,-70v0,-38,-16,-70,-53,-70v-37,0,-52,32,-52,70","w":193},{"d":"163,-113r-25,0v-1,-26,-20,-40,-45,-40v-37,0,-53,32,-53,70v0,38,16,70,53,70v30,0,41,-18,47,-42r26,0v-9,42,-30,61,-73,61v-54,0,-79,-41,-79,-89v0,-48,25,-90,79,-90v36,0,67,21,70,60","w":180},{"d":"31,-257r65,0r0,23r-39,0r0,211r39,0r0,23r-65,0r0,-257","w":106},{"d":"89,-248r0,-35r22,0r0,35v38,2,74,24,78,64r-27,0v-4,-31,-34,-41,-63,-41v-27,0,-64,9,-64,42v0,61,160,18,160,115v0,47,-42,72,-84,74r0,44r-22,0r0,-44v-49,-2,-82,-29,-87,-77r28,0v5,39,33,54,70,54v29,0,68,-14,68,-49v0,-73,-159,-26,-159,-115v0,-45,41,-64,80,-67"},{"d":"100,-13v37,0,60,-27,60,-70v0,-43,-23,-70,-60,-70v-37,0,-60,27,-60,70v0,43,23,70,60,70xm100,6v-46,0,-86,-30,-86,-89v0,-59,40,-90,86,-90v46,0,86,31,86,90v0,59,-40,89,-86,89"},{"d":"24,-166r26,0v8,56,-25,153,34,153v28,0,52,-22,52,-64r0,-89r26,0r0,166r-26,0r0,-28v-12,22,-30,34,-57,34v-74,2,-52,-101,-55,-172","w":186},{"d":"226,0r-34,0v-22,-30,19,-115,-50,-115r-82,0r0,115r-28,0r0,-257v83,2,186,-19,184,70v0,27,-18,48,-42,57v64,3,19,95,52,130xm60,-233r0,93v56,-2,128,15,128,-46v0,-61,-71,-45,-128,-47","w":240},{"d":"24,0r0,-257r26,0r0,257r-26,0","w":73},{"d":"26,0r0,-257r27,0r160,209r0,-209r28,0r0,257r-28,0r-159,-212r0,212r-28,0","w":266},{"d":"255,-180r-29,0v-4,-32,-40,-60,-80,-60v-59,0,-99,50,-99,111v0,57,29,112,94,112v49,0,85,-28,86,-82r-48,0r0,-26r74,0r0,125r-20,0r-4,-36v-17,31,-54,44,-88,44v-75,0,-125,-60,-125,-137v0,-77,60,-136,130,-136v55,0,100,31,109,85","w":280},{"d":"191,42r0,24v-34,0,-68,5,-65,-34r0,-25v-67,-7,-111,-63,-111,-136v0,-77,60,-136,125,-136v75,0,125,59,125,136v0,72,-52,128,-111,136v0,18,-3,37,17,35r20,0xm234,-129v0,-57,-29,-111,-94,-111v-53,0,-94,50,-94,111v0,57,29,112,94,112v53,0,94,-51,94,-112","w":280},{"d":"30,-270r20,0r0,360r-20,0r0,-360","w":79},{"d":"122,-225r-59,142r116,0xm-2,0r113,-257r24,0r107,257r-30,0r-23,-58r-136,0r-25,58r-30,0","w":240},{"d":"26,-166r62,137r62,-137r27,0r-81,176v-13,36,-39,85,-91,63r0,-29v35,21,40,12,69,-44r-75,-166r27,0","w":173},{"d":"56,-233r0,83v54,0,125,9,125,-44v0,-49,-75,-39,-125,-39xm28,0r0,-257r110,0v80,-4,95,91,36,115v32,12,52,34,52,69v0,44,-29,73,-98,73r-100,0xm56,-126r0,102v62,0,142,11,142,-51v0,-59,-80,-52,-142,-51","w":240},{"d":"146,-166r26,0r0,158v0,47,-18,85,-83,85v-42,0,-66,-27,-66,-52r25,0v4,24,22,33,43,33v38,0,63,-35,54,-81v-15,19,-35,29,-59,29v-48,0,-72,-41,-72,-89v0,-48,24,-90,72,-90v28,-1,44,12,60,30r0,-23xm40,-83v0,38,16,70,53,70v37,0,53,-32,53,-70v0,-38,-16,-70,-53,-70v-37,0,-53,32,-53,70","w":193},{"d":"264,0r-26,0r0,-109v0,-32,-11,-44,-32,-44v-64,0,-46,89,-48,153r-26,0r0,-109v0,-32,-10,-44,-31,-44v-64,0,-46,89,-48,153r-26,0r0,-166r26,0r0,24v20,-45,89,-37,101,4v24,-46,110,-53,110,18r0,120","w":286},{"d":"17,0r0,-23v25,-2,35,9,33,-31v-2,-36,4,-66,26,-75v-23,-7,-28,-39,-26,-74v2,-40,-8,-29,-33,-31r0,-23v33,-3,59,4,59,35v1,34,-6,81,26,82r0,23v-53,2,4,120,-60,117r-25,0","w":106},{"d":"17,-145r0,-21r130,0r0,24r-105,121r105,0r0,21r-135,0r0,-24r104,-121r-99,0","w":159},{"d":"6,-221r16,-10r41,27r-13,-48r17,-13r15,13r-13,46r42,-25r16,12r-8,18r-47,3r36,30r-7,18r-19,-1r-17,-44r-18,44r-21,1r-4,-21r37,-28r-47,-3","w":133},{"d":"34,-111r0,-131r138,0r0,26r-111,0r0,73v50,-33,122,0,122,66v0,49,-35,83,-84,83v-47,0,-77,-21,-82,-70r28,0v4,27,21,45,51,45v34,0,60,-17,60,-54v0,-56,-66,-75,-97,-38r-25,0"},{"d":"16,0r0,-24v44,-13,56,-61,56,-105v0,-44,-12,-91,-56,-104r0,-24v112,25,111,232,0,257","w":113},{"d":"110,0r-109,-257r31,0r91,225r93,-225r30,0r-109,257r-27,0","w":246},{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},{"d":"181,-79r-139,0v-9,68,89,89,111,35r26,0v-10,36,-40,50,-77,50v-51,0,-86,-28,-86,-90v0,-49,25,-89,85,-89v59,0,78,41,80,94xm42,-98r111,0v-4,-36,-18,-55,-52,-55v-36,0,-57,26,-59,55","w":193},{"d":"24,-166r26,0r0,193v-1,51,-27,59,-62,48r0,-27v14,14,35,10,36,-17r0,-197xm23,-201r0,-28r28,0r0,28r-28,0","w":73},{"d":"15,-129v0,-77,60,-136,125,-136v75,0,125,59,125,136v0,77,-60,137,-125,137v-75,0,-125,-60,-125,-137xm234,-129v0,-57,-29,-111,-94,-111v-53,0,-94,50,-94,111v0,57,29,112,94,112v53,0,94,-51,94,-112","w":280},{"d":"30,-159r0,-98r20,0r0,98r-20,0","w":79},{"d":"28,0r0,-257r26,0r0,168r84,-77r37,0r-67,59r75,107r-33,0r-61,-90r-35,32r0,58r-26,0","w":180},{"d":"18,-53r25,0v4,28,20,40,48,40v23,0,48,-12,48,-31v0,-50,-116,-9,-116,-80v0,-36,36,-49,67,-49v42,0,69,20,71,56r-23,0v0,-23,-19,-36,-47,-36v-28,0,-42,11,-42,27v0,49,113,8,113,80v0,42,-39,52,-74,52v-40,0,-66,-18,-70,-59","w":180},{"d":"84,-48r79,-209r21,0r77,211r57,-211r28,0r-73,257r-24,0r-76,-212r-79,212r-23,0r-70,-257r28,0","w":346},{"d":"208,-257r28,0r0,170v0,64,-43,95,-106,95v-62,0,-106,-24,-106,-95r0,-170r28,0r0,168v0,51,31,72,78,72v47,0,78,-21,78,-72r0,-168","w":259},{"d":"35,0r0,-31r31,0r0,31r-31,0xm35,-112r0,-31r31,0r0,31r-31,0","w":100},{"d":"120,8r-22,0r-118,-273r23,0","w":100},{"d":"22,90r0,-256r26,0r0,24v15,-21,35,-31,59,-31v48,0,72,42,72,90v0,48,-24,89,-72,89v-27,0,-45,-10,-59,-30r0,114r-26,0xm48,-83v0,38,15,70,52,70v37,0,53,-32,53,-70v0,-38,-16,-70,-53,-70v-37,0,-52,32,-52,70","w":193},{"d":"172,-166r0,256r-26,0r-1,-114v-14,20,-32,30,-59,30v-48,0,-72,-41,-72,-89v0,-48,24,-90,72,-90v25,-1,43,12,60,31r0,-24r26,0xm40,-83v0,38,16,70,53,70v37,0,53,-32,53,-70v0,-38,-16,-70,-53,-70v-37,0,-53,32,-53,70","w":193},{"d":"33,0r0,-147r-22,0r0,-19r22,0v-7,-65,13,-117,76,-92r0,24v-27,-14,-52,-7,-50,36r0,32r50,0r0,19r-50,0r0,147r-26,0","w":106},{"d":"28,-159r0,-98r21,0r0,98r-21,0xm71,-159r0,-98r21,0r0,98r-21,0","w":119},{"d":"24,0r0,-166r26,0r0,166r-26,0xm23,-201r0,-28r28,0r0,28r-28,0","w":73},{"d":"58,-233r0,109v60,-1,125,12,125,-54v0,-66,-64,-55,-125,-55xm30,0r0,-257r92,0v52,0,89,28,89,79v1,75,-73,84,-153,79r0,99r-28,0","w":219},{"d":"98,-257r0,24v-44,13,-56,60,-56,104v0,44,12,92,56,105r0,24v-111,-25,-111,-232,0,-257","w":113},{"d":"184,-185r-27,0v-4,-28,-19,-40,-46,-40v-57,0,-70,66,-70,108v31,-70,145,-43,145,41v0,49,-30,82,-82,82v-73,0,-90,-55,-90,-119v0,-82,29,-135,100,-135v40,0,66,24,70,63xm49,-76v0,34,20,59,55,59v35,0,55,-25,55,-59v0,-34,-20,-59,-55,-59v-35,0,-55,25,-55,59"},{"d":"179,-175v0,71,-103,98,-124,149r121,0r0,26r-155,0v0,-84,131,-103,131,-175v0,-31,-23,-48,-50,-48v-41,0,-56,20,-56,60r-26,0v-5,-57,31,-85,81,-85v44,0,78,27,78,73"},{"d":"172,-257r0,257r-26,0v-1,-7,2,-18,-1,-24v-15,21,-35,30,-59,30v-48,0,-72,-41,-72,-89v0,-48,24,-90,72,-90v28,-1,44,12,60,30r0,-114r26,0xm40,-83v0,38,16,70,53,70v37,0,53,-32,53,-70v0,-38,-16,-70,-53,-70v-37,0,-53,32,-53,70","w":193},{"d":"17,-57r26,0v4,28,19,40,46,40v57,0,70,-66,70,-108v-31,70,-145,43,-145,-41v0,-49,30,-82,82,-82v73,0,90,55,90,119v0,82,-29,135,-100,135v-40,0,-65,-24,-69,-63xm152,-166v0,-34,-21,-59,-56,-59v-35,0,-55,25,-55,59v0,34,20,59,55,59v35,0,56,-25,56,-59"},{"d":"25,-106r0,-19r166,0r0,19r-166,0xm25,-41r0,-19r166,0r0,19r-166,0","w":216},{"d":"178,-107r13,15v-11,15,-23,31,-45,31v-34,0,-90,-51,-108,2r-13,-16v8,-15,21,-30,45,-30v24,0,59,24,77,24v14,0,23,-13,31,-26","w":216},{"d":"46,-121r-26,0v8,-43,36,-52,76,-52v95,0,47,106,71,173r-28,0v-3,-7,-4,-16,-5,-25v-25,43,-121,45,-121,-17v0,-88,121,-35,121,-84v0,-38,-86,-39,-88,5xm134,-98v-24,21,-95,7,-95,50v0,22,17,35,39,35v43,-1,63,-35,56,-85","w":180},{"d":"10,-63r0,-21r120,-158r23,0r0,154r29,0r0,25r-29,0r0,63r-27,0r0,-63r-116,0xm126,-88r0,-114r-85,114r85,0"},{"d":"55,-196r-23,0r-37,-52r35,0","w":73},{"d":"26,0r0,-166r26,0v1,11,-2,26,1,35v15,-30,41,-42,74,-42r0,22v-50,0,-75,23,-75,68r0,83r-26,0","w":119},{"d":"162,0r-26,0v-8,-56,25,-153,-34,-153v-28,0,-52,22,-52,64r0,89r-26,0r0,-166r26,0v1,9,-2,21,1,28v12,-22,29,-35,56,-35v73,-1,53,102,55,173","w":186},{"d":"40,-121v0,62,24,104,60,104v36,0,60,-42,60,-104v0,-62,-24,-104,-60,-104v-36,0,-60,42,-60,104xm14,-121v0,-83,36,-127,86,-127v50,0,86,44,86,127v0,83,-36,127,-86,127v-50,0,-86,-44,-86,-127"},{"d":"35,0r0,-31r31,0r0,31r-31,0","w":100},{"d":"27,0r0,-257r28,0r0,107r137,0r0,-107r28,0r0,257r-28,0r0,-126r-137,0r0,126r-28,0","w":246},{"d":"82,-117v-31,0,-48,-31,-48,-65v0,-34,17,-66,48,-66v31,0,48,32,48,66v0,34,-17,65,-48,65xm82,-135v18,0,29,-15,29,-47v0,-31,-11,-48,-29,-48v-18,0,-28,17,-28,48v0,32,10,47,28,47xm235,-239r-140,245r-15,-9r140,-245xm238,6v-31,0,-48,-32,-48,-66v0,-34,17,-65,48,-65v31,0,47,31,47,65v0,34,-16,66,-47,66xm238,-12v18,0,28,-16,28,-48v0,-31,-10,-47,-28,-47v-18,0,-29,16,-29,47v0,32,11,48,29,48","w":320},{"d":"76,0r-77,-166r28,0r59,131r61,-131r27,0r-78,166r-20,0","w":173},{"d":"32,8r-22,0r117,-273r23,0","w":159},{"d":"27,0r0,-257r162,0r0,26r-134,0r0,81r116,0r0,25r-116,0r0,99r134,0r0,26r-162,0"},{"d":"35,0r0,-31r31,0v1,27,-2,44,-12,66r-19,0v7,-10,11,-23,12,-35r-12,0xm35,-112r0,-31r31,0r0,31r-31,0","w":100},{"d":"106,-135r56,73v5,-11,10,-22,11,-34r24,0v-3,19,-9,37,-20,53r34,43r-31,0r-18,-24v-38,51,-140,32,-140,-43v0,-33,21,-57,47,-74v-39,-29,-30,-101,28,-101v29,0,50,16,50,47v0,30,-19,43,-41,60xm148,-42r-64,-80v-19,15,-36,29,-36,54v0,58,69,65,100,26xm90,-154v23,-16,32,-25,32,-41v0,-14,-11,-24,-25,-24v-37,2,-29,50,-7,65","w":206},{"d":"132,-257r28,0v-8,107,37,272,-84,265v-48,-3,-74,-34,-70,-84r28,0v0,35,11,58,48,58v36,0,50,-22,50,-66r0,-173","w":186},{"d":"162,0r-26,0v-8,-56,25,-153,-34,-153v-28,0,-52,22,-52,64r0,89r-26,0r0,-257r26,0r1,119v12,-22,29,-35,56,-35v73,-1,53,102,55,173","w":186},{"d":"217,-189r-28,0v-2,-36,-34,-51,-69,-51v-48,0,-73,17,-73,48v0,73,173,9,173,121v0,41,-35,79,-104,79v-54,0,-98,-28,-101,-86r29,0v3,46,33,61,77,61v44,0,71,-24,71,-52v0,-84,-173,-18,-173,-122v0,-54,46,-74,98,-74v63,0,95,25,100,76","w":240},{"d":"25,-73r0,-20r73,0r0,-73r20,0r0,73r73,0r0,20r-73,0r0,73r-20,0r0,-73r-73,0","w":216},{"d":"26,0r0,-257r28,0r0,257r-28,0","w":79},{"d":"42,-166r42,56r45,-56r34,0r-63,76r68,90r-32,0r-52,-71r-55,71r-30,0r71,-90r-60,-76r32,0","w":166},{"d":"97,-242r22,0r0,242r-26,0r0,-202r-32,33r-14,-16"},{"d":"60,0r-60,-166r28,0r44,126r49,-126r21,0r50,126r41,-126r27,0r-58,166r-20,0r-51,-132r-50,132r-21,0","w":259},{"d":"3,0r92,-132r-88,-125r34,0r70,104r71,-104r34,0r-89,125r90,132r-34,0r-72,-108r-74,108r-34,0","w":219},{"d":"27,0r0,-257r28,0r0,231r135,0r0,26r-163,0","w":193},{"d":"3,-257r187,0r0,26r-79,0r0,231r-29,0r0,-231r-79,0r0,-26","w":193},{"d":"28,0r0,-257r28,0r0,138r128,-138r38,0r-103,109r121,148r-37,0r-102,-129r-45,48r0,81r-28,0","w":233},{"d":"174,-95r1,18r-37,0r-11,77r-19,0r11,-77r-47,0r-10,77r-20,0r11,-77r-37,0r-1,-18r40,0r8,-52r-37,0r-1,-18r40,0r11,-77r19,0r-11,77r47,0r11,-77r19,0r-11,77r34,0r1,18r-37,0r-7,52r33,0xm129,-147r-47,0r-7,52r47,0"},{"w":100},{"d":"89,-23r0,23v-33,3,-58,-4,-58,-35v0,-35,5,-81,-27,-82r0,-23v54,-1,-3,-120,60,-117r25,0r0,23v-25,2,-34,-9,-32,31v2,37,-5,66,-27,75v23,7,29,39,27,74v-2,40,7,29,32,31","w":106},{"d":"35,-166r0,-55r26,0r0,55r41,0r0,19r-41,0r0,107v-2,30,24,29,41,16r0,24v-32,13,-67,7,-67,-39r0,-108r-24,0r0,-19r24,0","w":113},{"d":"14,-62r26,0v4,32,26,43,56,43v33,0,56,-23,56,-54v-1,-38,-37,-54,-77,-48r0,-26v34,2,68,-5,68,-39v0,-24,-21,-37,-43,-37v-31,0,-49,16,-52,46r-27,0v-2,-88,147,-97,149,-9v1,27,-19,42,-41,52v30,10,50,33,50,66v0,94,-164,101,-165,6"},{"d":"35,-239r30,0r-7,185r-16,0xm36,-28r28,0r0,28r-28,0r0,-28","w":100},{"w":100},{"d":"27,0r0,-257r31,0r102,217r105,-217r27,0r0,257r-28,0r0,-198r-93,198r-23,0r-93,-198r0,198r-28,0","w":320},{"d":"99,0r0,-94r-98,-163r32,0r80,135r81,-135r32,0r-99,163r0,94r-28,0","w":226},{"d":"50,-181v0,57,100,59,100,0v0,-59,-100,-59,-100,0xm23,-181v0,-42,35,-67,77,-67v42,0,77,25,77,67v0,25,-14,46,-37,55v29,14,43,33,43,65v-1,92,-164,92,-165,0v0,-32,13,-51,42,-65v-23,-9,-37,-30,-37,-55xm44,-66v0,33,23,49,56,49v33,0,56,-16,56,-49v0,-29,-27,-49,-56,-49v-29,0,-56,20,-56,49"},{"d":"191,3r-166,-77r0,-19r166,-76r0,20r-143,66r143,65r0,21","w":216},{"d":"25,-216r0,-26r150,0r0,20v-41,64,-69,146,-80,222r-31,0v15,-75,42,-150,83,-216r-122,0"},{"d":"100,-53r-24,0r0,-46v0,-47,54,-60,54,-92v0,-21,-17,-35,-41,-35v-37,0,-46,20,-46,49r-27,0v0,-52,33,-71,72,-71v37,0,69,20,69,53v0,44,-57,63,-57,98r0,44xm74,0r0,-28r28,0r0,28r-28,0","w":173},{"d":"16,-231r0,-26r193,0r0,26r-170,205r168,0r0,26r-201,0r0,-27r167,-204r-157,0","w":219},{"d":"76,0r-66,0r0,-23r40,0r0,-211r-40,0r0,-23r66,0r0,257","w":106},{"d":"252,-185r-29,0v-12,-36,-45,-55,-83,-55v-53,0,-94,50,-94,111v0,57,29,112,94,112v41,0,81,-27,86,-65r30,0v-14,59,-59,90,-116,90v-75,0,-125,-60,-125,-137v0,-77,60,-136,125,-136v59,0,100,30,112,80","w":266},{"d":"35,0r0,-31r31,0v1,27,-2,44,-12,66r-19,0v7,-10,11,-23,12,-35r-12,0","w":100}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+125-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);})("aq?t3-@.g4&=a0szU-+f)q)&bZ@t?-&=bZvfg4Nl?$uyGJ.:h6N,,~0I^+qi)vahP@95KN{!6$4bG?g3cUBeWT:rRs-l1Y7;yS=Cw(fJ.tZ8pLozu&XE5R?BG-@3vq&t6-(9Nt+uKbs0?Zt&B:1ta$?e?4Y5vZSJ$t6ob+(wc4?c)-sKaIGf?IR&e-^.Giv=P0L)vb?ch.6zvRY16fSvBI+84^(6{f@cU!,wG!~zUIPT)^t?9Iw85tYUKfw:hl@w3qs.a0):a{(Y5!,ycIt:hl,y3Itwh-(s3-U.g0(l54)=?:Ll3iswgiP&B8.zg4G1G:LCgJ.Cb:WE9lU8Utw=a!u15JYRgbsTU4NY3tw=GZ&Sa{KCg{L.?b@.aq(CGZ+.g4&=h-TCc8N=G4tsa{s-38)19ZRu3Iy;aZRY?tSr4ZsUb!tw4ZsUe{R1a{,W")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":200,"face":{"font-family":"Folio","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"6","bbox":"-20 -283 346 90","underline-thickness":"18","underline-position":"-36","stemh":"19","stemv":"26","unicode-range":"U+0020-U+007E"}}));
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Copyright (c) 1989, 1995 Fundicion Tipografica Neufville S.A.
 This record
 * material and the data recorded thereon is the property of
 Fundicion Tipografica
 * Neufville S.A. and Adobe Systems Incorporated,
 or its licensors, and may not be
 * reproduced, used, displayed, modified,
 disclosed or transferred in any manner
 * without the express written
 approval of Fundicion Tipografica Neufville S.A.
 * and Adobe Systems
 Incorporated.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"177,-74r-121,0v0,24,11,50,39,50v18,0,33,-10,36,-29r43,0v-10,46,-44,60,-76,60v-58,0,-84,-41,-84,-91v0,-49,26,-90,81,-90v64,0,84,46,82,100xm58,-105r77,0v-2,-24,-13,-38,-36,-38v-27,0,-37,14,-41,38","w":193},{"d":"136,-164v0,-26,-12,-48,-40,-48v-28,0,-41,22,-41,48v0,27,13,52,41,52v28,0,40,-25,40,-52xm14,-59r44,0v5,18,13,29,33,29v43,1,55,-60,50,-86v-15,27,-31,36,-55,36v-32,0,-76,-18,-76,-83v0,-48,36,-85,84,-85v30,0,91,13,91,118v0,62,-17,136,-93,136v-44,0,-69,-23,-78,-65"},{"d":"137,-83v0,-24,-9,-60,-40,-60v-51,0,-50,119,0,119v31,0,40,-35,40,-59xm178,0r-41,0v-1,-8,2,-20,-1,-26v-36,61,-122,34,-122,-58v1,-91,82,-117,121,-60r0,-113r43,0r0,257"},{"d":"65,0r-43,0r0,-257r41,0r1,117v23,-50,114,-50,114,30r0,110r-43,0v-7,-52,23,-143,-32,-143v-57,0,-33,89,-38,143"},{"d":"3,78r0,-36v14,1,22,0,23,-15r0,-194r42,0r0,204v-1,41,-29,42,-65,41xm68,-244r0,43r-42,0r0,-43r42,0","w":93},{"d":"179,-109r-42,0v-5,-20,-15,-34,-37,-34v-24,0,-41,18,-41,59v0,66,62,80,77,30r42,0v-8,40,-34,61,-78,61v-59,0,-86,-35,-86,-91v0,-57,27,-90,86,-90v46,0,71,21,79,65","w":186},{"d":"178,-167r-60,60r71,107r-51,0r-50,-80r-23,22r0,58r-43,0r0,-257r43,0r0,153r60,-63r53,0","w":180},{"d":"17,-241r165,0r0,43v-48,51,-67,127,-79,198r-48,0v14,-72,39,-136,90,-199r-128,0r0,-42"},{"d":"69,-167r40,0r0,34r-40,0r0,133r-42,0r0,-133r-25,0r0,-34r25,0v-1,-57,-6,-95,63,-90v7,0,14,1,19,1r0,36v-36,-8,-45,15,-40,53","w":106},{"d":"34,-257r52,0r-11,185r-33,0xm81,-45r0,45r-42,0r0,-45r42,0","w":119},{"w":100},{"d":"191,-131r0,27r-166,0r0,-27r166,0xm191,-63r0,27r-166,0r0,-27r166,0","w":216},{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},{"d":"27,0r0,-257r115,0v63,0,118,39,118,128v0,89,-55,129,-118,129r-115,0xm72,-220r0,183v82,7,139,-13,139,-92v0,-79,-57,-98,-139,-91","w":273},{"d":"120,0r-51,0r-68,-257r49,0r48,193r59,-193r41,0r57,193r48,-193r49,0r-72,257r-48,0r-56,-186","w":353},{"d":"230,-253r19,10r-143,251r-19,-9xm86,-224v-13,0,-20,14,-20,42v0,28,7,42,20,42v13,0,21,-14,21,-42v0,-28,-8,-42,-21,-42xm86,-248v70,0,70,132,0,132v-69,0,-69,-132,0,-132xm252,-104v-13,0,-20,14,-20,42v0,28,7,42,20,42v13,0,20,-14,20,-42v0,-28,-7,-42,-20,-42xm252,-128v68,0,71,132,0,132v-68,0,-71,-132,0,-132","w":320},{"d":"94,-97r0,-70r28,0r0,70r69,0r0,27r-69,0r0,70r-28,0r0,-70r-69,0r0,-27r69,0","w":216},{"d":"63,-83v0,24,9,59,40,59v50,0,51,-119,0,-119v-31,0,-40,36,-40,60xm63,0r-41,0r0,-257r43,0r1,113v38,-57,120,-31,120,60v0,93,-85,118,-123,58r0,26"},{"d":"107,-137r0,17v-29,-2,-27,49,-27,84v0,38,-36,36,-73,36r0,-36v35,7,32,-23,31,-55v0,-29,26,-34,30,-38v-5,-1,-30,-9,-30,-37v-1,-28,8,-62,-31,-55r0,-36v37,0,73,-2,73,36v0,35,-3,86,27,84","w":113},{"d":"116,8r-29,0r-102,-273r29,0","w":100},{"w":100},{"d":"9,-36r30,0r0,-185r-30,0r0,-36r73,0r0,257r-73,0r0,-36","w":113},{"d":"203,-70v4,-59,0,-126,1,-187r45,0r0,257r-46,0r-133,-185r0,185r-46,0r0,-257r48,0","w":273},{"d":"6,-120r0,-17v29,2,27,-49,27,-84v0,-38,37,-36,74,-36r0,36v-35,-7,-32,23,-31,55v0,29,-27,34,-31,38v5,1,31,9,31,37v0,28,-8,63,31,55r0,36v-37,0,-74,2,-74,-36v0,-35,3,-86,-27,-84","w":113},{"d":"65,0r-43,0r0,-167r41,0v1,8,-2,21,1,27v23,-50,114,-50,114,30r0,110r-43,0v-7,-52,23,-143,-32,-143v-57,0,-33,89,-38,143"},{"d":"-7,-245r48,0r33,52r-30,0","w":93},{"d":"137,-84v0,-24,-9,-59,-40,-59v-50,0,-51,119,0,119v31,0,40,-36,40,-60xm137,-167r41,0r0,243r-43,0r0,-99v-39,56,-121,32,-121,-60v0,-93,85,-118,123,-58r0,-26"},{"d":"25,-257r43,0r0,257r-43,0r0,-257","w":93},{"d":"134,-167r46,0r-73,189v-15,44,-39,60,-92,55r0,-37v39,7,52,-21,59,-43r-74,-164r47,0r47,113","w":180},{"d":"28,-227r43,0r0,60r40,0r0,34r-40,0r0,69v-3,32,13,30,38,28r0,36v-54,4,-81,2,-81,-61r0,-72r-22,0r0,-34r22,0r0,-60","w":113},{"d":"26,-270r28,0r0,360r-28,0r0,-360","w":79},{"d":"130,-136r43,58v3,-6,5,-21,6,-28r37,0v-4,20,-8,40,-20,57r37,49r-53,0r-13,-18v-47,47,-150,28,-148,-49v0,-35,27,-61,57,-75v-14,-15,-23,-32,-23,-54v0,-40,31,-51,59,-52v36,-1,59,19,59,50v0,28,-18,49,-41,62xm148,-46r-51,-68v-12,9,-29,25,-29,43v-2,44,54,50,80,25xm113,-215v-29,3,-17,40,-2,53v24,-11,38,-51,2,-53","w":240},{"d":"74,-36r31,0r0,36r-73,0r0,-257r73,0r0,36r-31,0r0,185","w":113},{"d":"22,-257r46,0r0,172v0,35,29,54,62,54v33,0,62,-19,62,-54r0,-172r46,0r0,174v0,63,-48,91,-108,91v-60,0,-108,-28,-108,-91r0,-174","w":259},{"d":"-1,-218r0,-39r189,0r0,39r-72,0r0,218r-45,0r0,-218r-72,0","w":186},{"d":"6,-221r0,-36v68,0,89,66,89,128v0,62,-21,129,-89,129r0,-36v41,0,44,-60,44,-93v0,-33,-3,-92,-44,-92","w":113},{"d":"100,7v-59,0,-86,-35,-86,-91v0,-57,27,-90,86,-90v54,0,86,35,86,90v0,55,-32,91,-86,91xm100,-24v24,0,41,-20,41,-60v0,-41,-17,-59,-41,-59v-24,0,-41,18,-41,59v0,40,17,60,41,60"},{"d":"220,0r-219,0r0,-37r164,-183r-151,0r0,-37r210,0r0,37r-165,183r161,0r0,37","w":226},{"d":"26,0r0,-257r45,0r0,104r118,0r0,-104r45,0r0,257r-45,0r0,-116r-118,0r0,116r-45,0","w":259},{"d":"176,0r-46,0v-5,-7,-4,-20,-6,-27v-20,51,-113,43,-113,-21v0,-83,113,-31,113,-74v0,-16,-15,-21,-33,-21v-14,0,-30,5,-30,21r-40,0v0,-40,35,-52,70,-52v50,0,76,22,76,75v0,31,-7,84,9,99xm85,-24v42,1,41,-43,38,-70v-14,28,-67,9,-67,45v0,19,12,25,29,25","w":186},{"d":"6,-84r47,0v0,37,27,53,60,53v24,0,57,-10,57,-40v0,-63,-157,-13,-157,-115v0,-55,48,-79,98,-79v50,0,100,20,104,88r-48,0v0,-36,-24,-49,-54,-49v-36,0,-53,16,-53,35v0,57,157,9,157,114v0,57,-48,85,-106,85v-60,0,-104,-27,-105,-92","w":226},{"d":"22,0r0,-167r41,0r0,36v13,-29,32,-43,64,-43r0,39v-38,-3,-62,10,-62,53r0,82r-43,0","w":126},{"d":"135,-167r43,0r0,167r-41,0v-1,-8,2,-21,-1,-27v-23,50,-114,50,-114,-30r0,-110r43,0v7,52,-23,143,32,143v57,0,33,-89,38,-143"},{"d":"63,-84v0,24,9,60,40,60v51,0,50,-119,0,-119v-31,0,-40,35,-40,59xm22,-167r41,0v1,8,-2,20,1,26v36,-61,123,-34,122,58v-1,92,-81,116,-121,60r0,99r-43,0r0,-243"},{"d":"16,-133r0,-34r137,0r0,33r-89,100r90,0r0,34r-141,0r0,-35r86,-98r-83,0","w":166},{"d":"25,-160r0,-97r30,0r0,97r-30,0","w":79},{"d":"66,0r-66,-167r46,0r40,112r41,-112r47,0r-70,167r-38,0","w":173},{"d":"30,-173v13,-9,28,-16,40,-26r-49,0r-7,-21r19,-14v13,9,28,24,39,30r-17,-47r17,-14r19,14r-16,48r39,-31r18,14r-7,21v-15,1,-35,-2,-48,1r40,25r-8,24r-22,0v-5,-15,-7,-34,-14,-48r-14,48r-22,0","w":146},{"d":"71,-220r0,87v49,2,111,1,103,-43v8,-44,-53,-47,-103,-44xm71,0r-46,0r0,-257r103,0v66,0,93,32,93,81v0,67,-65,87,-150,81r0,95","w":226},{"d":"-7,0r103,-257r46,0r99,257r-51,0r-21,-58r-103,0r-23,58r-50,0xm119,-200v-15,33,-25,71,-39,105r75,0","w":233},{"d":"100,-212v-29,0,-42,23,-42,91v0,68,13,91,42,91v29,0,42,-23,42,-91v0,-68,-13,-91,-42,-91xm10,-121v0,-88,37,-127,90,-127v53,0,90,39,90,127v0,88,-37,127,-90,127v-53,0,-90,-39,-90,-127"},{"d":"58,-165r-44,0v-5,-112,170,-108,169,-8v0,63,-87,99,-110,136r104,0r0,37r-162,0v6,-94,121,-108,121,-174v0,-20,-16,-38,-39,-38v-27,0,-39,22,-39,47"},{"d":"29,-45r42,0v1,34,1,68,-14,87r-22,0v13,-13,16,-27,17,-42r-23,0r0,-45","w":100},{"d":"11,-49v11,-3,29,0,42,-1v-3,36,71,32,71,6v0,-35,-107,-5,-107,-77v0,-72,147,-72,145,3r-39,0v2,-32,-64,-35,-64,-4v0,32,108,1,108,73v0,83,-152,71,-156,0","w":180},{"d":"-1,0r56,-87r-52,-80r50,0r27,50r28,-50r49,0r-52,80r56,87r-49,0r-33,-56r-32,56r-48,0","w":159},{"d":"33,8r-29,0r103,-273r29,0","w":140},{"d":"26,-110r0,-131r145,0r0,40r-103,0r0,55v51,-41,118,9,118,69v0,42,-27,83,-88,83v-41,0,-81,-20,-83,-69r45,0v0,21,12,35,36,35v25,0,45,-14,45,-50v0,-56,-53,-65,-76,-32r-39,0"},{"d":"24,3r0,-27r134,-60r-134,-59r0,-27r168,75r0,24","w":216},{"d":"55,0r-49,-167r44,0r28,114r37,-114r37,0r39,112r26,-112r44,0r-49,167r-40,0r-39,-113r-38,113r-40,0","w":266},{"d":"64,-155r-23,-24r52,-62r34,0r0,241r-42,0r-1,-179"},{"d":"162,-241r0,138r31,0r0,37r-31,0r0,66r-42,0r0,-67r-111,0r0,-38r108,-136r45,0xm120,-103r-1,-89r-68,89r69,0"},{"d":"71,-45r0,45r-42,0r0,-45r42,0","w":100},{"d":"137,-167r40,0r0,175v6,87,-148,96,-156,15r43,0v4,16,15,22,32,22v40,0,43,-34,38,-70v-35,60,-120,33,-120,-59v0,-60,38,-90,71,-90v14,0,37,6,52,32r0,-25xm95,-143v-50,0,-49,119,0,119v31,0,40,-35,40,-59v0,-24,-9,-60,-40,-60"},{"d":"29,-45r42,0v1,34,1,68,-14,87r-22,0v13,-13,16,-27,17,-42r-23,0r0,-45xm71,-158r0,45r-42,0r0,-45r42,0","w":100},{"d":"188,-178r-43,0v-1,-50,-93,-50,-92,0v0,56,141,13,141,106v0,48,-37,78,-83,78r0,43r-22,0r0,-43v-45,0,-86,-33,-86,-81r44,0v-2,65,104,63,104,5v0,-59,-140,-12,-140,-106v0,-46,39,-72,78,-72r0,-34r22,0r0,34v37,0,73,28,77,70"},{"d":"71,-45r0,45r-42,0r0,-45r42,0xm71,-158r0,45r-42,0r0,-45r42,0","w":100},{"d":"70,-109v24,0,56,23,77,24v14,0,23,-13,31,-26r13,22v-10,15,-23,31,-45,31v-37,0,-91,-50,-108,2r-13,-22v8,-15,21,-31,45,-31","w":216},{"d":"0,-257r54,0r45,86r49,-86r52,0r-75,123r83,134r-55,0r-54,-97r-56,97r-52,0r82,-134"},{"d":"19,-103r82,0r0,39r-82,0r0,-39","w":119},{"d":"269,0r-42,0r0,-105v0,-30,-12,-38,-26,-38v-51,0,-28,91,-33,143r-42,0r0,-105v0,-29,-12,-38,-26,-38v-51,0,-28,91,-33,143r-43,0r0,-167r40,0v1,8,-2,20,1,26v15,-42,84,-45,97,0v21,-46,107,-47,107,17r0,124","w":293},{"d":"138,-177v0,-22,-17,-35,-39,-35v-21,0,-37,13,-37,35v0,22,17,34,38,34v20,0,38,-12,38,-34xm18,-184v0,-84,161,-85,164,0v1,29,-13,49,-40,57v28,6,45,28,45,58v0,47,-35,75,-87,75v-52,0,-87,-28,-87,-75v-1,-31,19,-51,45,-59v-29,-6,-40,-28,-40,-56xm141,-72v0,-27,-19,-39,-42,-39v-22,0,-40,12,-40,39v0,29,16,42,41,42v24,0,41,-13,41,-42"},{"d":"20,-160r0,-97r29,0r0,97r-29,0xm71,-160r0,-97r29,0r0,97r-29,0","w":119},{"d":"73,-257r0,220r121,0r0,37r-167,0r0,-257r46,0"},{"d":"108,-257r0,36v-41,0,-44,59,-44,92v0,33,3,93,44,93r0,36v-68,0,-90,-67,-90,-129v0,-62,22,-128,90,-128","w":113},{"d":"192,-24r0,27r-168,-74r0,-24r168,-75r0,27r-134,59","w":216},{"d":"232,-129v0,-60,-38,-97,-85,-97v-47,0,-86,37,-86,97v0,60,39,98,86,98v47,0,85,-38,85,-98xm281,-129v0,79,-58,137,-134,137v-76,0,-135,-58,-135,-137v0,-79,59,-136,135,-136v76,0,134,57,134,136","w":293},{"d":"142,0r-48,0r-100,-257r49,0r75,195r72,-195r49,0","w":233},{"d":"175,-96r0,22r-35,0r-10,74r-25,0r11,-74r-41,0r-11,74r-25,0r11,-74r-34,0r0,-22r37,0r7,-49r-35,0r0,-22r38,0r10,-74r25,0r-11,74r42,0r10,-74r25,0r-11,74r32,0r0,22r-35,0r-7,49r32,0xm126,-145r-41,0r-7,49r40,0"},{"d":"73,0r-46,0r0,-257r46,0r0,257","w":100},{"d":"59,-176r-45,0v6,-56,44,-72,84,-72v44,0,85,22,85,64v0,24,-15,48,-43,52v32,7,48,29,48,65v0,54,-39,73,-90,73v-51,0,-85,-19,-89,-73r45,0v0,24,18,37,42,37v30,0,46,-16,46,-46v0,-27,-31,-42,-66,-36r0,-34v25,0,62,-1,62,-30v0,-24,-18,-36,-40,-36v-22,0,-36,12,-39,36"},{"d":"25,-257r46,0r0,111r109,-111r60,0r-93,92r99,165r-53,0r-79,-134r-43,44r0,90r-46,0r0,-257","w":240},{"d":"118,-257r45,0r0,181v0,50,-25,84,-81,84v-57,0,-81,-34,-81,-84r45,0v0,31,14,45,35,45v23,0,37,-14,37,-45r0,-181","w":186},{"d":"85,0r0,-93r-94,-164r52,0r65,119r63,-119r51,0r-92,164r0,93r-45,0","w":213},{"d":"256,0r0,-203r-75,203r-37,0r-74,-203r0,203r-46,0r0,-257r70,0r69,189r70,-189r69,0r0,257r-46,0","w":326},{"d":"71,0r-46,0r0,-257v84,4,191,-24,191,69v0,39,-24,52,-54,61v73,-6,30,91,63,127r-55,0v-25,-33,26,-119,-51,-107r-48,0r0,107xm71,-217r0,71v42,2,97,3,97,-35v0,-44,-54,-36,-97,-36","w":233},{"d":"116,-71r-43,0r0,-25v0,-59,54,-57,54,-97v0,-18,-10,-30,-33,-30v-22,0,-30,18,-30,36r-45,0v0,-54,37,-72,78,-72v57,0,79,28,79,64v0,71,-74,56,-60,124xm116,-45r0,45r-43,0r0,-45r43,0"},{"d":"51,-92r-30,0r73,-149r28,0r74,149r-30,0r-58,-118","w":216},{"d":"254,-178r-48,0v-29,-83,-145,-53,-145,49v0,103,130,137,150,41r47,0v-8,57,-56,96,-112,96v-76,0,-134,-58,-134,-137v0,-79,58,-136,134,-136v52,0,95,35,108,87","w":266},{"d":"64,-77v0,26,12,47,40,47v28,0,41,-21,41,-47v0,-27,-13,-52,-41,-52v-28,0,-40,25,-40,52xm186,-183r-44,0v-5,-18,-13,-29,-33,-29v-43,-1,-55,61,-50,87v15,-27,31,-36,55,-36v32,0,76,18,76,83v0,48,-36,84,-84,84v-30,0,-91,-12,-91,-117v0,-62,17,-137,93,-137v44,0,69,23,78,65"},{"d":"129,-76v30,0,52,-39,52,-67v0,-18,-14,-33,-30,-33v-31,0,-52,37,-52,65v0,20,12,35,30,35xm192,-177r6,-22r27,0r-27,99v-4,12,-7,27,3,27v23,0,49,-36,49,-75v0,-59,-45,-92,-100,-92v-64,0,-109,50,-109,113v0,103,136,146,197,73r26,0v-24,39,-66,62,-112,62v-78,0,-139,-60,-139,-137v0,-76,62,-136,137,-136v67,0,125,45,125,112v0,69,-57,105,-88,105v-13,0,-20,-8,-23,-21v-30,41,-97,15,-97,-38v0,-67,84,-137,125,-70","w":288},{"d":"232,-129v0,-60,-38,-97,-85,-97v-47,0,-86,37,-86,97v0,60,39,98,86,98v47,0,85,-38,85,-98xm209,37r0,39v-39,1,-91,3,-85,-35r0,-35v-64,-10,-112,-64,-112,-135v0,-79,59,-136,135,-136v76,0,134,57,134,136v0,71,-47,125,-112,135v0,16,-3,31,15,31r25,0","w":293},{"d":"25,-167r43,0r0,167r-43,0r0,-167xm68,-201r-43,0r0,-43r43,0r0,43","w":93},{"d":"25,0r0,-257r166,0r0,37r-120,0r0,67r103,0r0,37r-103,0r0,116r-46,0","w":193},{"d":"25,0r0,-257v78,4,190,-22,190,60v0,50,-33,54,-45,59v37,4,60,28,60,69v0,40,-31,69,-76,69r-129,0xm71,-37v47,0,118,7,110,-40v3,-50,-62,-39,-110,-40r0,80xm71,-220r0,66v41,0,102,8,98,-33v5,-43,-58,-32,-98,-33","w":240},{"d":"193,0r-168,0r0,-257r166,0r0,37r-120,0r0,67r103,0r0,37r-103,0r0,79r122,0r0,37","w":206},{"d":"252,-177r-48,0v-7,-34,-30,-51,-65,-51v-45,0,-78,35,-78,99v0,112,124,130,151,44r-51,0r0,-37r93,0r0,122r-29,0v-2,-12,-1,-28,-5,-39v-17,33,-49,47,-90,47v-55,0,-118,-46,-118,-130v0,-90,50,-143,133,-143v57,0,99,30,107,88","w":273}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+120-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);})("LHyfT&$Xx0QvL.K}!&s2hHhQS5$fy&QvS5{2x07:y[+Y9,XDt.NGsH-h{L^1$o8U7d|][0S9yxTj!n@Z%?AVK&:cz;gYWvqI`2,Xf5FMJ=}+Qek?y|KVxHzAx,!&h[`f1Nt%1Nf@7sjKL5{QSsIZS]J}T&t`T-KX@.yT[[UzTfzh9[$2!St={F9;]GGI1?`,nsIq$|JF1|Uvy,YVo:J9^0XMS.{1LN`8[?${1XWL0]fd8fJN$Vt7x]y.7]j?^:$ITHKXL.h?Ld`z8|DYjNf?^:DYTNfI^&`KT&!Xx.`:80hvy?J:T-KIx-1QnFX}x09c9?Jqx,XqS?Zko:!F!fIvL|+c8,zVxSK%!07zTfIv95QWLdUqxdJXyS$XLH`q95sXx0Qv^&%qjF7v90fKLdK&TFhco5V+TNYgL5VzyfWA05K!S|fI05K!@dVcLdDZ")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":200,"face":{"font-family":"Folio","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"7","bbox":"-15 -282 352 90","underline-thickness":"18","underline-position":"-36","stemh":"34","stemv":"42","unicode-range":"U+0020-U+007E"}}));
