// This clears the form's default value

function clearThis(f) {
	f.value = "";
}

// This validates the form

function MM_validateForm() { //v4.0
	var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
  	for (i=0; i<(args.length-2); i+=3) {
  		test=args[i+2];
  		val=MM_findObj(args[i]);
		if (val) {
			if (val.length) {
				for (var inputIndex = 0; inputIndex < val.length; inputIndex++) {
					var input = val[inputIndex];
					if (input.checked) {
						break;
					}
					
					if (inputIndex == val.length - 1 && input.name) {
						errors += '- '+input.name.replace(/_/g, ' ').toProperCase()+' is required.\n';
					}
				}
			}
			nm=val.name;
			if (typeof nm == 'undefined') {
				continue;
			}
			nm = nm.replace('_', ' ').toProperCase();
			if ((val=val.value)!="") {
				if (test.indexOf('isEmail')!=-1) {
					p=val.indexOf('@');
					if (p<1 || p==(val.length-1)) {
						errors+='- '+nm+' must contain an e-mail address.\n';
					}
				} else if (test!='R') {
					num = parseFloat(val);
					if (isNaN(val)) {
						errors+='- '+nm+' must contain a number.\n';
					}
					if (test.indexOf('inRange') != -1) {
						p=test.indexOf(':');
						min=test.substring(8,p);
						max=test.substring(p+1);
						if (num<min || max<num) {
							errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
						}
					}
				}
			} else if (test.charAt(0) == 'R') {
				errors += '- '+nm+' is required.\n';
			}
		}
	}
  
	if (errors) {
		alert('The following error(s) occurred:\n'+errors);
	}
	
	document.MM_returnValue = (errors == '');
}

String.prototype.toProperCase = function(){
     return this.toLowerCase().replace(/\w+/g,function(s){
          return s.charAt(0).toUpperCase() + s.substr(1);
     })
}
/** *************************** **/
//This script re-directs a IE5/Mac user to our browser upgrade page :)

browserName=navigator.appName; 
browserVer=parseInt(navigator.appVersion);

  if (navigator.platform=="MacPPC" && browserName == "Microsoft Internet Explorer") {
  window.location="http://rainstormconsulting.com/tools/upgrade/browser_upgrade.php";
} 
	else if (browserName="Netscape Navigator" && browserVer < 4)
	  window.location="http://rainstormconsulting.com/tools/upgrade/browser_upgrade.php";
	{
} 
/** *************************** **/
//This script swaps the images :)

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function P7_downImage() { 
       var g7; 
       if ((g7=MM_findObj(g7obj))!=null) {g7.src=g7url;} 
} 
//
/** *************************** **/
/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.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(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();
/** *************************** **/
/**
 * Siteturbine Thumbnail Thickbox
 *
 * This script selects all images on the current page containing
 * the class "siteturbine_thumbnail" and adds the class "thickbox"
 * to its parent, that being an anchor tag. This allows thickbox
 * to display its overlay when the image is clicked
 */
$(document).ready(function(){
	$('.siteturbine_thumbnail').parent('a').addClass('thickbox');
})
/** *************************** **/
// jQuery Right-Click Plugin
//
// Version 1.01
//
// Cory S.N. LaViska
// A Beautiful Site (http://abeautifulsite.net/)
// 20 December 2008
//
// Visit http://abeautifulsite.net/notebook/68 for more information
//
// Usage:
//
//		// Capture right click
//		$("#selector").rightClick( function(e) {
//			// Do something
//		});
//		
//		// Capture right mouse down
//		$("#selector").rightMouseDown( function(e) {
//			// Do something
//		});
//		
//		// Capture right mouseup
//		$("#selector").rightMouseUp( function(e) {
//			// Do something
//		});
//		
//		// Disable context menu on an element
//		$("#selector").noContext();
// 
// History:
//
//		1.01 - Updated (20 December 2008)
//		     - References to 'this' now work the same way as other jQuery plugins, thus
//		       the el parameter has been deprecated.  Use this or $(this) instead
//		     - The mouse event is now passed to the callback function
//		     - Changed license to GNU GPL
//
//		1.00 - Released (13 May 2008)
//
// License:
// 
// This plugin is dual-licensed under the GNU General Public License and the MIT License
// and is copyright 2008 A Beautiful Site, LLC. 
//
if(jQuery) (function(){
	
	$.extend($.fn, {
		
		rightClick: function(handler) {
			$(this).each( function() {
				$(this).mousedown( function(e) {
					var evt = e;
					$(this).mouseup( function() {
						$(this).unbind('mouseup');
						if( evt.button == 2 ) {
							handler.call( $(this), evt );
							return false;
						} else {
							return true;
						}
					});
				});
				$(this)[0].oncontextmenu = function() {
					return false;
				}
			});
			return $(this);
		},		
		
		rightMouseDown: function(handler) {
			$(this).each( function() {
				$(this).mousedown( function(e) {
					if( e.button == 2 ) {
						handler.call( $(this), e );
						return false;
					} else {
						return true;
					}
				});
				$(this)[0].oncontextmenu = function() {
					return false;
				}
			});
			return $(this);
		},
		
		rightMouseUp: function(handler) {
			$(this).each( function() {
				$(this).mouseup( function(e) {
					if( e.button == 2 ) {
						handler.call( $(this), e );
						return false;
					} else {
						return true;
					}
				});
				$(this)[0].oncontextmenu = function() {
					return false;
				}
			});
			return $(this);
		},
		
		noContext: function() {
			$(this).each( function() {
				$(this)[0].oncontextmenu = function() {
					return false;
				}
			});
			return $(this);
		}
		
	});
	
})(jQuery);	
/** *************************** **/
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.01
 */
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},textDecoration:function(G,F){if(!F){F=this.getStyle(G)}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color")}E=false}if(E){break}F=this.getStyle(B=B.parentNode)}return C},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 B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};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(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/);var D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return D})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent}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)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,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 B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}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(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,E),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(/cufon/.test(E.className)){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||(window.Ext&&Ext.query)||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,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){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.removeClass(x.root(),"cufon-loading")});e=true}if(C.hover){C.forceHitArea=true}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)}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-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(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(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue}if(y.d){aj.beginPath();if(y.code){c(y.code,aj)}else{y.code=d("m"+y.d,aj)}aj.fill()}aj.translate(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var f=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(f?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(g,h){return a(g,/(?:em|ex|%)$|^[a-z-]+$/i.test(h)?"1em":h)}function a(j,k){if(/px$/i.test(k)){return parseFloat(k)}var i=j.style.left,h=j.runtimeStyle.left;j.runtimeStyle.left=j.currentStyle.left;j.style.left=k.replace("%","em");var g=j.style.pixelLeft;j.style.left=i;j.runtimeStyle.left=h;return g}var e={};function d(n){var o=n.id;if(!e[o]){var l=n.stops,m=document.createElement("cvml:fill"),g=[];m.type="gradient";m.angle=180;m.focus="0";m.method="sigma";m.color=l[0][1];for(var i=1,h=l.length-1;i<h;++i){g.push(l[i][0]*100+"% "+l[i][1])}m.colors=g.join(",");m.color2=l[h][1];e[o]=m}return e[o]}return function(ai,J,ac,F,N,aj,aa){var n=(J===null);if(n){J=N.alt}var L=ai.viewBox;var p=ac.computedFontSize||(ac.computedFontSize=new Cufon.CSS.Size(c(aj,ac.get("fontSize"))+"px",ai.baseSize));var Z=ac.computedLSpacing;if(Z==undefined){Z=ac.get("letterSpacing");ac.computedLSpacing=Z=(Z=="normal")?0:~~p.convertFrom(a(aj,Z))}var B,q;if(n){B=N;q=N.firstChild}else{B=document.createElement("span");B.className="cufon cufon-vml";B.alt=J;q=document.createElement("span");q.className="cufon-vml-canvas";B.appendChild(q);if(F.printable){var af=document.createElement("span");af.className="cufon-alt";af.appendChild(document.createTextNode(J));B.appendChild(af)}if(!aa){B.appendChild(document.createElement("cvml:shape"))}}var ao=B.style;var U=q.style;var h=p.convert(L.height),al=Math.ceil(h);var Y=al/h;var S=Y*Cufon.CSS.fontStretch(ac.get("fontStretch"));var X=L.minX,W=L.minY;U.height=al;U.top=Math.round(p.convert(W-ai.ascent));U.left=Math.round(p.convert(X));ao.height=p.convert(ai.height)+"px";var u=F.enableTextDecoration?Cufon.CSS.textDecoration(aj,ac):{};var I=ac.get("color");var an=Cufon.CSS.textTransform(J,ac).split(""),A;var o=ai.glyphs,G,r,ae;var g=0,O=[],V=0,w;var y,K=F.textShadow;for(var ah=0,ag=0,ad=an.length;ah<ad;++ah){G=o[A=an[ah]]||ai.missingGlyph;if(!G){continue}if(r){g-=ae=r[A]||0;O[ag-1]-=ae}g+=w=O[ag++]=~~(G.w||ai.w)+Z;r=G.k}if(w===undefined){return null}var z=-X+g+(L.width-w);var am=p.convert(z*S),ab=Math.round(am);var R=z+","+L.height,m;var M="r"+R+"ns";var x=F.textGradient&&d(F.textGradient);for(ah=0,ag=0;ah<ad;++ah){G=o[an[ah]]||ai.missingGlyph;if(!G){continue}if(n){y=q.childNodes[ag];while(y.firstChild){y.removeChild(y.firstChild)}}else{y=document.createElement("cvml:shape");q.appendChild(y)}y.stroked="f";y.coordsize=R;y.coordorigin=m=(X-V)+","+W;y.path=(G.d?"m"+G.d+"xe":"")+"m"+m+M;y.fillcolor=I;if(x){y.appendChild(x.cloneNode(false))}var ak=y.style;ak.width=ab;ak.height=al;if(K){var t=K[0],s=K[1];var E=Cufon.CSS.color(t.color),C;var Q=document.createElement("cvml:shadow");Q.on="t";Q.color=E.color;Q.offset=t.offX+","+t.offY;if(s){C=Cufon.CSS.color(s.color);Q.type="double";Q.color2=C.color;Q.offset2=s.offX+","+s.offY}Q.opacity=E.opacity||(C&&C.opacity)||1;y.appendChild(Q)}V+=O[ag++]}var P=y.nextSibling,v,D;if(F.forceHitArea){if(!P){P=document.createElement("cvml:rect");P.stroked="f";P.className="cufon-vml-cover";v=document.createElement("cvml:fill");v.opacity=0;P.appendChild(v);q.appendChild(P)}D=P.style;D.width=ab;D.height=al}else{if(P){q.removeChild(P)}}ao.width=Math.max(Math.ceil(p.convert(g*S)),0);if(f){var T=ac.computedYAdjust;if(T===undefined){var H=ac.get("lineHeight");if(H=="normal"){H="1em"}else{if(!isNaN(H)){H+="em"}}ac.computedYAdjust=T=0.5*(a(aj,H)-parseFloat(ao.height))}if(T){ao.marginTop=Math.ceil(T)+"px";ao.marginBottom=T+"px"}}return B}})());
/** *************************** **/
Cufon.registerFont((function(f){_cufon_bridge_={p:[{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},{"d":"95,-155v-38,0,-65,35,-65,71v0,38,26,72,66,72v42,0,65,-34,65,-74v0,-39,-26,-69,-66,-69xm92,80v51,0,77,-54,67,-109v-15,20,-39,33,-64,33v-48,0,-81,-42,-81,-88v0,-79,104,-116,146,-54r0,-28r16,0r0,158v7,55,-30,103,-82,103v-44,0,-79,-26,-82,-72r16,0v2,35,31,57,64,57","w":204},{"d":"32,-105v0,-71,106,-37,104,-105v0,-27,-20,-49,-48,-49v-34,0,-54,30,-45,65r-17,0v-11,-47,20,-81,62,-81v39,0,65,27,65,65v0,41,-24,55,-60,64v-23,6,-44,12,-44,40v0,22,17,39,40,39v24,0,38,-20,38,-42r18,0v1,33,-21,58,-56,58v-31,0,-57,-23,-57,-54xm87,-26v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-14,-7,-14,-15v0,-8,6,-15,14,-15","w":176},{"d":"222,-135v0,74,-66,143,-144,135r-49,0r0,-271r49,0v80,-8,144,61,144,136xm205,-135v2,-67,-57,-126,-127,-120r-32,0r0,239v93,13,156,-41,159,-119","w":234},{"d":"93,-108r0,16v-62,22,19,171,-78,165r0,-16v16,0,35,-3,35,-29v0,-50,-5,-115,26,-128v-33,-13,-25,-77,-26,-126v0,-26,-19,-29,-35,-29r0,-16v66,-5,50,64,52,122v0,21,9,29,26,41","w":108},{"d":"38,-92r166,77r0,17r-185,-85r0,-19r185,-80r0,16"},{"d":"29,-271v69,-8,123,13,123,72v0,47,-32,71,-77,70r88,129r-19,0r-89,-129r-9,0r0,129r-17,0r0,-271xm135,-200v0,-41,-40,-62,-89,-55r0,110v50,6,89,-12,89,-55","w":175,"k":{"T":7,"Y":7}},{"d":"28,-297r16,0r1,157v10,-18,27,-30,49,-30v78,-3,50,100,55,170r-17,0r0,-100v0,-30,-3,-55,-39,-55v-69,0,-44,90,-49,155r-16,0r0,-297","w":176},{"d":"44,-166v1,6,-2,16,1,21v17,-35,74,-32,88,5v9,-20,28,-30,49,-30v78,2,43,101,51,170r-16,0r0,-107v0,-26,-4,-48,-36,-48v-66,0,-35,94,-42,155r-17,0r0,-103v0,-26,-5,-52,-37,-52v-64,0,-35,94,-41,155r-16,0r0,-166r16,0","w":261},{"d":"98,-170v49,0,87,38,87,87v0,49,-38,87,-87,87v-48,0,-86,-40,-86,-87v0,-48,38,-87,86,-87xm97,-155v-40,0,-69,33,-69,72v0,38,30,71,69,71v41,0,72,-31,72,-71v0,-41,-31,-72,-72,-72","w":196},{"d":"56,-26v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15","w":111},{"d":"44,-297r0,201r68,-70r21,0r-70,72r94,94r-22,0r-82,-83r-9,9r0,74r-16,0r0,-297r16,0","w":153},{"d":"18,-166r60,137r60,-137r16,0r-76,175r-76,-175r16,0","w":155,"k":{",":29,".":29}},{"d":"151,-67v-26,0,-52,-28,-79,-27v-16,0,-26,12,-36,26r-17,-8v13,-15,27,-37,53,-37v24,0,59,27,80,27v16,0,25,-12,34,-28r18,8v-12,19,-29,39,-53,39"},{"d":"172,-82r-144,0v-6,75,99,93,125,33r14,8v-15,29,-42,45,-75,45v-49,0,-80,-41,-80,-88v0,-46,31,-86,80,-86v50,0,80,40,80,88xm28,-97r128,0v-4,-31,-29,-58,-63,-58v-34,0,-62,27,-65,58","w":183},{"d":"41,-253r0,308r44,0r0,18r-62,0r0,-344r62,0r0,18r-44,0","w":108},{"d":"67,55r0,-308r-44,0r0,-18r62,0r0,344r-62,0r0,-18r44,0","w":108},{"d":"105,-49v-2,-47,-81,-27,-81,-79v0,-49,72,-54,88,-15r-14,7v-9,-27,-57,-24,-58,7v0,40,81,21,81,81v0,31,-24,52,-54,52v-28,0,-50,-17,-57,-44r16,-5v6,44,81,43,79,-4","w":135},{"d":"19,-15r166,-77r-166,-74r0,-16r185,80r0,19r-185,85r0,-17"},{"d":"187,-111r55,60v76,-71,17,-208,-88,-208v-67,0,-124,56,-124,123v0,98,125,162,200,95r-67,-70r24,0xm267,0r-24,-29v-85,76,-230,7,-230,-107v0,-77,64,-139,141,-139v76,0,140,62,140,138v0,38,-14,69,-39,98r36,39r-24,0","w":307},{"d":"35,-16r160,0r0,16r-191,0r166,-255r-150,0r0,-16r180,0","w":204},{"w":111},{"d":"13,-291r12,-6r193,290r-14,7","w":230},{"d":"31,-271r18,0r-4,86r-10,0","w":79},{"d":"112,-133v-33,0,-62,27,-62,60v0,33,29,60,62,60v33,0,61,-27,61,-60v0,-33,-28,-60,-61,-60xm112,4v-42,0,-79,-32,-79,-75v0,-32,15,-56,44,-70v-64,-29,-40,-134,35,-134v74,0,98,106,34,134v73,28,47,145,-34,145xm112,-259v-30,0,-56,25,-56,55v0,30,25,55,56,55v30,0,55,-25,55,-55v0,-30,-25,-55,-55,-55"},{"d":"19,-271r81,231r81,-231r17,0r-99,280r-97,-280r17,0","w":199,"k":{"y":7,"A":36,",":43,".":43,"a":29,"e":29,"i":7,"o":29,"r":14,"u":22,":":29,"-":11,";":29}},{"d":"50,-166r0,166r-16,0r0,-166r16,0xm42,-237v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15","w":84},{"d":"114,-260v-20,0,-35,19,-35,38v0,19,14,34,24,50v19,-15,44,-27,44,-54v0,-18,-14,-34,-33,-34xm213,0r-34,-45v-30,26,-65,50,-100,50v-40,0,-71,-32,-71,-71v0,-48,45,-76,82,-99v-13,-18,-28,-36,-28,-59v0,-29,25,-52,53,-52v28,0,49,22,49,50v0,31,-25,49,-51,67r67,91r35,-37r13,7r-38,43r42,55r-19,0xm100,-151v-30,20,-74,41,-75,83v0,31,22,57,54,57v32,0,65,-27,90,-48","w":231},{"d":"159,-255r-113,0r0,98r110,0r0,17r-110,0r0,124r113,0r0,16r-130,0r0,-271r130,0r0,16","w":182},{"d":"58,-26v8,0,14,7,14,15v0,8,-6,15,-14,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15xm49,-51r0,-220r17,0r0,220r-17,0","w":115},{"d":"303,0r-47,-225r-95,234r-95,-234r-46,225r-17,0r59,-280r99,247r100,-247r59,280r-17,0","w":322},{"d":"108,-12v41,0,66,-34,66,-72v0,-36,-26,-71,-65,-71v-42,0,-66,31,-66,71v0,39,24,72,65,72xm28,0r0,-297r16,0r1,159v41,-62,154,-27,145,54v7,82,-104,118,-146,54r0,30r-16,0","w":201},{"d":"125,-130r0,116v29,-7,51,-33,51,-63v0,-29,-28,-42,-51,-53xm109,-157r0,-101v-26,0,-46,25,-46,51v0,28,25,39,46,50xm109,-14r0,-124v-30,-15,-64,-29,-64,-68v0,-39,26,-66,64,-69r0,-38r16,0r0,39v23,3,44,16,55,37r-13,11v-9,-15,-24,-30,-42,-32r0,108v34,17,68,30,68,74v0,39,-31,72,-68,79r0,41r-16,0r0,-40v-38,-1,-66,-23,-79,-59r15,-7v10,28,34,49,64,48"},{"d":"44,-166v1,8,-2,20,1,26v10,-18,27,-30,49,-30v78,-3,50,100,55,170r-17,0r0,-100v0,-30,-3,-55,-39,-55v-69,0,-44,90,-49,155r-16,0r0,-166r16,0","w":176},{"d":"65,-274v31,0,55,23,55,54v0,31,-25,53,-55,53v-30,0,-55,-22,-55,-53v0,-31,24,-54,55,-54xm65,-259v-21,0,-40,17,-40,39v0,21,19,37,40,37v21,0,39,-16,39,-37v0,-22,-18,-39,-39,-39xm174,-104v31,0,55,23,55,54v0,31,-25,53,-55,53v-30,0,-54,-22,-54,-53v0,-31,23,-54,54,-54xm174,-89v-21,0,-39,17,-39,39v0,21,18,37,39,37v21,0,40,-16,40,-37v0,-22,-19,-39,-40,-39xm194,-278r12,7r-162,277r-11,-6","w":239},{"d":"49,-281r14,10v-30,104,-31,220,0,326r-14,9v-34,-107,-34,-237,0,-345","w":86},{"d":"90,-255r0,255r-18,0r0,-255r-70,0r0,-16r158,0r0,16r-70,0","w":162,"k":{"w":29,"y":29,"A":29,",":36,".":36,"a":36,"c":36,"e":36,"i":5,"o":36,"r":29,"s":36,"u":36,":":36,"-":29,";":36}},{"d":"49,77r0,-360r17,0r0,360r-17,0","w":115},{"d":"77,3r-80,-169r17,0r71,150r64,-150r17,0r-112,263r-17,0","w":165,"k":{",":29,".":29}},{"d":"44,-297r0,297r-16,0r0,-297r16,0","w":71},{"d":"92,-155v-38,0,-64,35,-64,71v0,38,25,72,65,72v42,0,66,-34,66,-74v0,-39,-27,-69,-67,-69xm174,-166r0,166r-16,0v-1,-9,2,-23,-1,-30v-40,65,-154,27,-145,-54v-8,-81,103,-115,146,-54r0,-28r16,0","w":201},{"d":"175,-89r-119,0r-37,89r-17,0r114,-280r113,280r-18,0xm168,-105r-52,-132r-54,132r106,0","w":230},{"d":"78,-139r-71,-132r19,0r63,116r62,-116r19,0r-71,132r75,139r-19,0r-66,-123r-66,123r-19,0","w":177},{"d":"46,-271r0,271r-17,0r0,-271r17,0","w":75},{"d":"111,-255r-43,0r8,-16r52,0r0,271r-17,0r0,-255"},{"d":"93,-155v-42,0,-65,35,-65,75v0,39,26,68,66,68v39,0,65,-32,65,-69v0,-38,-25,-74,-66,-74xm174,-166r0,263r-16,0r-1,-126v-40,63,-154,28,-145,-52v-8,-82,104,-120,146,-55r0,-30r16,0","w":201},{"d":"168,-68r38,0r0,17r-38,0r0,51r-17,0r0,-51r-147,0v50,-81,109,-152,162,-230r2,0r0,213xm151,-68v-2,-52,4,-112,-2,-160r-113,160r115,0"},{"d":"160,-200v0,54,-50,80,-114,71r0,129r-17,0r0,-271v72,-7,131,8,131,71xm143,-201v1,-45,-44,-60,-97,-54r0,110v53,6,96,-10,97,-56","w":169,"k":{"A":29,",":49,".":49}},{"d":"0,-123r68,0r0,16r-68,0r0,-16","w":68},{"d":"24,-271r13,-10v36,108,35,237,0,345r-13,-9v30,-106,29,-222,0,-326","w":86},{"d":"46,-151r0,151r-16,0r0,-151r-19,0r0,-15r19,0r0,-60r16,0r0,60r29,0r0,15r-29,0","w":75},{"d":"44,-166v1,6,-2,16,1,21v7,-20,30,-32,53,-21r-8,14v-41,-17,-46,39,-46,67r0,85r-16,0r0,-166r16,0","w":100,"k":{"v":-14,"w":-14,"y":-14,"f":-7,",":36,".":36,"m":-3,"n":-3,"q":7,"t":-7,"x":-14}},{"d":"31,-195v-3,-46,40,-81,81,-80v45,0,81,35,81,80v0,36,-28,65,-51,91r-79,88r129,0r0,16r-167,0r101,-111v21,-23,50,-54,50,-86v0,-35,-29,-62,-64,-62v-37,0,-65,27,-64,64r-17,0"},{"d":"155,-149r0,21v-38,-50,-127,-24,-127,44v0,69,92,96,129,43r0,22v-53,51,-145,11,-145,-65v0,-72,90,-113,143,-65","w":171},{"d":"104,-217r-1,-54r17,0r-1,54r51,-18r5,16r-52,16r34,43r-15,10r-30,-44r-31,44r-14,-10r32,-43r-51,-16r5,-16","w":222},{"d":"36,-108r-17,0r83,-163r19,0r83,163r-17,0r-75,-147"},{"d":"180,-39v30,-58,7,-153,14,-232r17,0r0,169v0,28,1,52,-18,74v-36,43,-112,43,-148,0v-19,-22,-18,-46,-18,-74r0,-169r17,0r0,164v0,24,0,50,14,68v29,34,93,35,122,0","w":237},{"d":"208,-91v-1,50,-45,95,-97,95v-77,0,-121,-91,-76,-155r87,-124r14,10r-59,86v65,-26,132,24,131,88xm112,-13v43,0,79,-34,79,-78v0,-43,-36,-79,-79,-79v-44,0,-80,36,-80,79v0,44,36,78,80,78"},{"d":"108,-155v-42,0,-65,35,-65,75v0,39,26,68,66,68v39,0,65,-32,65,-69v0,-38,-25,-74,-66,-74xm44,-166v1,9,-2,23,1,30v40,-65,154,-27,145,54v7,82,-104,115,-146,53r0,126r-16,0r0,-263r16,0","w":201},{"d":"30,-134v0,106,148,163,215,80r0,24v-86,78,-232,9,-232,-105v0,-114,148,-186,232,-105r0,24v-21,-26,-58,-43,-91,-43v-68,0,-124,58,-124,125","w":266},{"d":"191,-255r-91,0r-22,73v62,-15,110,33,112,90v4,96,-135,130,-178,51r16,-7v37,62,145,34,145,-45v0,-58,-70,-95,-120,-63r35,-115r103,0r0,16"},{"d":"69,-88r-62,-78r20,0r53,67r53,-67r19,0r-62,78r68,88r-19,0r-59,-76r-59,76r-20,0","w":159},{"d":"15,-92r0,-16v62,-20,-19,-169,78,-163r0,16v-16,0,-35,3,-35,29v0,50,6,113,-26,127v33,11,26,79,26,127v0,26,19,29,35,29r0,16v-94,10,-16,-131,-78,-165","w":108},{"d":"193,-99r0,17r-45,0r-14,82r-16,0r13,-82r-49,0r-12,82r-17,0r12,-82r-44,0r0,-17r46,0r9,-59r-45,0r0,-17r47,0r12,-76r18,0r-12,76r49,0r12,-76r18,0r-12,76r39,0r0,17r-42,0r-10,59r43,0xm142,-158r-49,0r-8,59r49,0"},{"w":111},{"d":"109,-133r0,-16v32,-1,57,-24,57,-57v0,-30,-24,-53,-53,-53v-31,0,-51,21,-53,52r-17,0v3,-41,28,-68,70,-68v74,0,97,109,30,133v75,26,47,146,-35,146v-41,0,-75,-29,-75,-71r17,0v3,31,25,54,58,54v34,0,62,-28,62,-62v0,-35,-27,-58,-61,-58"},{"d":"205,-297r13,6r-192,342r-13,-7","w":230},{"d":"103,-101r0,-83r17,0r0,83r84,0r0,17r-84,0r0,84r-17,0r0,-84r-84,0r0,-17r84,0"},{"d":"46,-156r165,0r0,-115r18,0r0,271r-18,0r0,-140r-165,0r0,140r-17,0r0,-271r17,0r0,115","w":257},{"d":"27,-250r22,-7r36,53r-13,6","w":112},{"d":"112,-275v67,0,98,80,98,137v0,56,-29,142,-98,142v-69,0,-99,-86,-99,-142v0,-57,32,-137,99,-137xm112,-13v58,0,81,-76,81,-125v0,-43,-23,-121,-81,-121v-58,0,-82,78,-82,121v0,49,24,125,82,125"},{"d":"32,-271r17,0r0,266v0,34,-8,62,-48,62v-20,0,-37,-12,-45,-30r13,-9v6,13,20,23,34,23v27,0,29,-25,29,-46r0,-266","w":78},{"d":"190,-255r-165,0r0,-16r197,0r-194,274r-14,-11"},{"d":"83,-109v0,68,79,35,89,-3v10,-36,38,-92,-20,-92v-38,0,-69,58,-69,95xm198,-195r6,-17r16,0r-37,117v-4,13,-8,26,12,26v30,0,63,-52,63,-91v0,-60,-54,-100,-108,-100v-67,0,-120,59,-120,126v0,67,56,122,121,122v40,0,78,-16,98,-48r20,0v-20,38,-63,64,-118,64v-77,0,-137,-64,-137,-141v0,-77,62,-138,135,-138v69,0,125,49,125,116v0,58,-45,105,-84,105v-13,0,-23,-6,-27,-18v-36,34,-95,18,-95,-35v0,-66,78,-155,130,-88","w":288},{"d":"92,-116r-91,-155r20,0r79,137r80,-137r19,0r-90,155r0,116r-17,0r0,-116","w":201,"k":{"v":14,"A":36,",":36,".":36,"q":36,"a":36,"e":36,"i":7,"o":36,"u":22,":":36,"-":22,";":36,"p":29}},{"d":"35,-15r135,0r0,15r-169,0r136,-151r-114,0r0,-15r148,0","w":172},{"d":"46,-145r129,-126r23,0r-132,130r141,141r-23,0r-130,-130r-8,8r0,122r-17,0r0,-271r17,0r0,126","w":204},{"d":"21,-271r17,0r-4,86r-10,0xm62,-271r17,0r-4,86r-9,0","w":100},{"d":"56,-26v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15xm56,-170v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15","w":111},{"d":"274,-271r0,280r-228,-242r0,233r-17,0r0,-275r228,240r0,-236r17,0","w":303},{"d":"50,-166r0,263r-16,0r0,-263r16,0xm42,-237v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15","w":84},{"d":"139,-255r-93,0r0,98r90,0r0,17r-90,0r0,140r-17,0r0,-271r110,0r0,16","w":159,"k":{"A":22,",":54,".":54}},{"d":"55,-27r16,5r-30,82r-10,-4","w":111},{"d":"93,-12v42,0,66,-34,66,-74v0,-39,-27,-69,-67,-69v-38,0,-64,35,-64,71v0,38,25,72,65,72xm158,0v-1,-9,2,-23,-1,-30v-40,65,-154,27,-145,-54v-8,-81,103,-115,146,-54r0,-159r16,0r0,297r-16,0","w":201},{"d":"18,-166r59,136r59,-145r59,145r57,-136r17,0r-75,175r-59,-144r-58,144r-75,-175r16,0","w":270,"k":{",":22,".":22}},{"d":"170,-75v1,-55,-63,-62,-124,-57r0,116v63,5,124,-4,124,-59xm187,-76v0,45,-41,76,-88,76r-70,0r0,-271r55,0v72,-14,109,92,47,127v33,7,56,33,56,68xm145,-202v0,-47,-45,-59,-99,-53r0,107v54,5,99,-5,99,-54","w":203},{"d":"204,-131r0,17r-185,0r0,-17r185,0xm204,-70r0,17r-185,0r0,-17r185,0"},{"d":"154,-275v76,0,140,63,140,139v0,76,-64,140,-140,140v-76,0,-141,-64,-141,-140v0,-76,64,-139,141,-139xm154,-259v-68,0,-124,56,-124,123v0,67,56,123,124,123v67,0,123,-56,123,-123v0,-67,-56,-123,-123,-123","w":307},{"d":"22,-271r76,233r101,-247r102,247r75,-233r17,0r-91,280r-104,-251r-103,251r-91,-280r18,0","w":397,"k":{"A":36,",":29,".":29,"a":22,"e":22,"o":22,"r":7,"u":14,":":7,";":7}},{"d":"101,3r-14,-11v18,-28,44,-57,59,-85v-65,26,-132,-24,-131,-88v0,-53,45,-94,97,-94v78,0,121,91,76,154xm112,-259v-43,0,-80,35,-80,79v0,43,37,78,80,78v43,0,79,-35,79,-78v0,-44,-36,-79,-79,-79"},{"d":"28,-166v0,-65,-12,-153,58,-133r0,15v-57,-16,-40,62,-42,118r42,0r0,15r-42,0r0,151r-16,0r0,-151r-19,0r0,-15r19,0","w":86,"k":{"f":-7}},{"d":"46,-271r0,255r70,0r0,16r-87,0r0,-271r17,0","w":117,"k":{"T":11,"V":14,"W":11,"y":7,"Y":14}},{"d":"55,-27r16,5r-30,82r-10,-4xm58,-170v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15","w":111},{"d":"85,4v-36,0,-60,-30,-60,-71r0,-99r16,0v8,61,-27,154,44,154v71,0,35,-93,44,-154r16,0r0,99v6,41,-24,71,-60,71","w":169},{"d":"284,-131v9,77,-62,135,-132,135v-75,0,-139,-64,-139,-139v0,-78,63,-140,141,-140v49,0,90,24,118,63r-14,11v-24,-36,-61,-58,-105,-58v-66,0,-123,58,-123,123v0,100,127,162,203,94v23,-20,32,-42,33,-72r-97,0r0,-17r115,0","w":296},{"d":"167,-237r-12,10v-20,-47,-112,-39,-106,20v7,71,132,52,131,132v0,45,-41,79,-85,79v-38,0,-67,-24,-80,-59r16,-7v12,29,32,49,65,49v36,0,67,-28,67,-64v0,-72,-128,-52,-132,-129v-4,-75,107,-91,136,-31","w":195}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+223-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);})("K{QBz+]}arJ@KLIA7+_Yv{vJ?j]BQ+J@?jHYar(UQ8oM>x}i?j.&(!}o0+9OzYuf7UuIrBBx-I_av_p.Hx9ra#Q_v0BiH{VIK_(ohrp9b89H|?P}0L}27!vY>Y2h8wQWbx8VhY].7wgW>wgx?Lof#{gW#[7gr?21?Lvlw+2{1{(=b[B-8xI+wyOB(B|i1U]Wz{I}KLviK#p2-wgM.yBi1UgMzyBW1+pIz+7}aLpU-rv@QiuUz!IWa!|Jh=g4LyP_{!vHK1|]T-b(#w08r?>Qaz.7hZq9i[XI+Uk2dfMO@%WpYx}Bj=VulAoJm&}Aar>k1BVk-x2=7=7.1iX&Kyolzr_2z+8[7{8.1+JYQ=W@KBW@zr_2z+8[7{8.1+JYQ=pO>rI@Qr]}Q8W@.U][ZLVf?LuO>rI@Qr]}Q8W@.U][Z{B9aruI>=(I?Lu[zjBo1iO.1+B9aruI>=(I?Lu[zj}2HLo@7{8x7L9Mzj]97{I%ziukz=]}z+_OQ#X2Q+JYKyO2-{WAKYO2Kr7z>BO2?8}J._O2??}2KLXq")}catch(e){}delete _cufon_bridge_;return f})({"w":223,"face":{"font-family":"Futura Std","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 2 2 2 4 2 3 3","ascent":"297","descent":"-63","x-height":"4","bbox":"-44 -313 393 97","underline-thickness":"18","underline-position":"-18","stemh":"15","stemv":"16","unicode-range":"U+0020-U+007E"}}));Cufon.registerFont((function(f){_cufon_bridge_={p:[{"d":"103,-124r0,26v-35,13,-24,73,-27,120v-3,42,-20,52,-59,48r0,-30v44,9,26,-54,26,-89v0,-41,22,-59,27,-62v-5,-3,-27,-20,-27,-61r0,-67v3,-20,-7,-24,-26,-22r0,-30v63,-16,61,53,59,113v0,27,9,46,27,54","w":120},{"d":"58,-31r138,0r0,31r-193,0r138,-240r-118,0r0,-31r173,0","w":198},{"d":"32,-271r36,0r-7,118r-22,0xm90,-271r36,0r-7,118r-22,0","w":158},{"d":"21,-168r32,0v6,56,-23,144,39,144v62,0,32,-88,39,-144r32,0v-1,81,16,174,-71,174v-87,0,-70,-93,-71,-174","w":184},{"d":"56,-312r0,312r-32,0r0,-312r32,0","w":79},{"d":"104,-23v35,0,54,-28,54,-61v0,-33,-19,-61,-54,-61v-33,0,-54,30,-54,61v0,32,20,61,54,61xm20,0r0,-312r32,0r1,172v13,-20,34,-34,59,-34v49,0,79,43,79,89v0,48,-29,91,-81,91v-25,1,-43,-15,-58,-32r0,26r-32,0","w":200},{"d":"99,-240r0,240r-34,0r0,-240r-64,0r0,-31r162,0r0,31r-64,0","w":164,"k":{"w":29,"y":29,"A":29,",":36,".":36,"a":36,"c":36,"e":36,"i":5,"o":36,"r":29,"s":36,"u":36,":":36,"-":29,";":36}},{"w":104},{"d":"170,-79r-128,0v0,29,20,56,51,56v25,0,38,-13,50,-33r27,16v-16,29,-45,46,-78,46v-51,0,-83,-39,-83,-89v0,-52,28,-91,82,-91v56,1,80,41,79,95xm44,-103r94,0v-4,-25,-21,-42,-47,-42v-25,0,-43,18,-47,42","w":175},{"d":"86,-118r-88,-153r39,0r66,115r67,-115r39,0r-89,153r0,118r-34,0r0,-118","w":206,"k":{"v":14,"A":36,",":36,".":36,"q":36,"a":36,"e":36,"i":7,"o":36,"u":22,":":36,"-":22,";":36,"p":29}},{"d":"70,-91r-60,-77r38,0r40,54r43,-54r40,0r-62,77r72,91r-38,0r-55,-68r-54,68r-39,0","w":176},{"d":"54,-168r0,21v19,-35,77,-36,94,3v10,-18,30,-30,51,-30v79,3,51,101,56,174r-32,0r0,-95v0,-22,-3,-50,-31,-50v-61,0,-31,88,-38,145r-32,0r0,-89v0,-22,-1,-56,-31,-56v-60,0,-30,89,-37,145r-33,0r0,-168r33,0","w":276},{"d":"26,-271v78,-7,148,9,148,77v0,39,-26,71,-65,76r86,118r-41,0r-80,-115r-14,0r0,115r-34,0r0,-271xm60,-241r0,98v42,1,83,-3,83,-50v0,-45,-44,-49,-83,-48","w":195,"k":{"T":7,"Y":7}},{"d":"95,-23v35,0,55,-28,55,-61v0,-33,-20,-61,-55,-61v-33,0,-53,30,-53,61v0,32,19,61,53,61xm148,0v-1,-8,2,-20,-1,-26v-13,19,-33,32,-57,32v-52,0,-81,-43,-81,-91v0,-46,31,-89,80,-89v26,-1,44,16,59,34r0,-172r32,0r0,312r-32,0","w":200},{"d":"67,-126v31,0,53,33,74,37v14,0,20,-13,31,-31r24,18v-11,20,-29,44,-55,44v-23,1,-54,-37,-73,-37v-12,0,-21,10,-33,29r-23,-16v13,-19,29,-44,55,-44"},{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},{"d":"157,-240r-98,0r0,76r95,0r0,31r-95,0r0,133r-33,0r0,-271r131,0r0,31","w":170,"k":{"A":22,",":54,".":54}},{"w":104},{"d":"291,6r-41,0r-24,-24v-92,63,-219,-7,-219,-118v0,-78,64,-141,142,-141v78,0,142,63,142,141v0,39,-15,75,-42,100xm183,-102r43,42v66,-64,20,-186,-77,-186v-64,0,-108,50,-108,110v-1,82,88,138,162,95r-62,-61r42,0","w":298},{"d":"23,0r0,-271v116,-9,208,23,208,134v0,113,-90,146,-208,137xm57,-240r0,209v77,2,141,-22,141,-105v0,-83,-64,-106,-141,-104","w":239},{"d":"59,-138r0,138r-32,0r0,-138r-18,0r0,-30r18,0r0,-65r32,0r0,65r32,0r0,30r-32,0","w":86},{"d":"64,-30r109,0r0,30r-172,0r114,-138r-95,0r0,-30r158,0","w":178},{"d":"21,-271r26,-20v52,110,51,250,0,360r-26,-19v42,-99,41,-222,0,-321","w":105},{"d":"32,-271r36,0r-7,118r-22,0","w":99},{"d":"97,-174v50,0,90,39,90,90v0,51,-40,90,-90,90v-50,0,-90,-39,-90,-90v0,-51,40,-90,90,-90xm97,-143v-32,0,-57,27,-57,59v0,32,25,59,57,59v32,0,58,-27,58,-59v0,-32,-26,-59,-58,-59","w":194},{"d":"66,-271r25,0r0,34r29,-18r13,22r-31,18r31,18r-13,21r-29,-18r0,34r-25,0r0,-35r-31,18r-12,-21r30,-17r-30,-18r11,-21r32,18r0,-35","w":155},{"d":"31,-168r49,107r50,-117r49,117r49,-107r37,0r-86,174r-49,-113r-50,113r-86,-174r37,0","w":258,"k":{",":22,".":22}},{"d":"58,-36v12,0,21,10,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-11,9,-21,21,-21xm42,-63r0,-208r32,0r0,208r-32,0","w":115},{"d":"103,-134v-20,14,-52,32,-52,59v0,26,24,51,50,51v25,0,45,-19,62,-36xm102,-188v4,4,7,16,13,9v14,-11,32,-22,32,-42v0,-19,-13,-30,-31,-30v-35,-1,-38,46,-14,63xm213,0r-29,-37v-21,24,-50,43,-82,43v-45,0,-83,-33,-83,-80v-1,-43,36,-63,65,-84v-44,-33,-38,-119,32,-119v33,0,63,20,63,56v0,31,-26,51,-49,68r56,68r32,-36r21,22r-33,39r49,60r-42,0","w":249},{"d":"174,-236r-27,16v-16,-39,-89,-33,-89,13v0,29,33,38,57,46v39,15,67,37,67,82v0,49,-38,85,-87,85v-44,0,-77,-32,-83,-76r34,-7v0,30,23,51,52,51v29,0,50,-25,50,-53v0,-72,-126,-48,-124,-128v2,-78,120,-94,150,-29","w":193},{"d":"104,-127v-27,0,-53,22,-53,51v0,27,26,52,53,52v27,0,53,-25,53,-52v0,-29,-26,-51,-53,-51xm19,-76v0,-29,15,-55,43,-65v-64,-31,-34,-136,42,-136v75,0,107,104,42,136v28,10,43,36,43,65v0,50,-39,82,-85,82v-46,0,-85,-32,-85,-82xm104,-248v-24,0,-46,20,-46,46v0,22,23,46,46,46v23,0,46,-24,46,-46v0,-26,-22,-46,-46,-46"},{"d":"72,-29r-77,-139r38,0r57,106r53,-106r36,0r-136,264r-37,0","w":174,"k":{",":29,".":29}},{"d":"60,-271r0,240r82,0r0,31r-116,0r0,-271r34,0","w":138,"k":{"T":11,"V":14,"W":11,"y":7,"Y":14}},{"d":"35,-271r81,200r80,-200r37,0r-117,285r-119,-285r38,0","w":230,"k":{"y":7,"A":36,",":43,".":43,"a":29,"e":29,"i":7,"o":29,"r":14,"u":22,":":29,"-":11,";":29}},{"d":"55,-168r0,22v10,-18,30,-28,51,-28v84,0,55,99,60,174r-32,0v-8,-55,25,-145,-38,-145v-67,0,-33,87,-41,145r-33,0r0,-168r33,0","w":188},{"d":"95,-23v35,0,55,-28,55,-61v0,-33,-20,-61,-55,-61v-33,0,-53,30,-53,61v0,32,19,61,53,61xm180,-168r0,264r-32,0r-1,-122v-13,19,-33,32,-57,32v-52,0,-81,-43,-81,-91v0,-46,31,-89,80,-89v26,-1,44,16,59,34r0,-28r32,0","w":200},{"d":"104,-23v35,0,54,-28,54,-61v0,-33,-19,-61,-54,-61v-33,0,-54,30,-54,61v0,32,20,61,54,61xm52,-168v1,9,-2,21,1,28v13,-20,34,-34,59,-34v49,0,79,43,79,89v0,48,-29,91,-81,91v-25,1,-43,-15,-58,-32r0,122r-32,0r0,-264r32,0","w":200},{"d":"91,-240r-47,0r19,-31r61,0r0,271r-33,0r0,-240"},{"d":"146,-162r0,41v-32,-43,-104,-17,-104,37v0,58,74,80,104,37r0,42v-62,33,-137,-11,-137,-78v0,-68,76,-114,137,-79","w":158},{"d":"60,-154r115,-117r44,0r-122,122r124,149r-45,0r-103,-126r-13,13r0,113r-34,0r0,-271r34,0r0,117","w":216},{"d":"32,-168r48,105r49,-105r36,0r-85,174r-85,-174r37,0","w":160,"k":{",":29,".":29}},{"d":"60,-114r0,114r-34,0r0,-271r39,0v84,0,109,28,109,78v-1,64,-51,82,-114,79xm60,-241r0,97v42,1,83,-3,83,-50v0,-45,-45,-47,-83,-47","w":178,"k":{"A":29,",":49,".":49}},{"d":"21,-129r78,0r0,27r-78,0r0,-27","w":119},{"d":"52,-36v12,0,21,10,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-11,9,-21,21,-21","w":104},{"d":"85,-142r-75,-129r39,0r55,99r59,-99r39,0r-78,129r82,142r-38,0r-64,-111r-66,111r-38,0","w":206},{"d":"196,-179r0,34r-138,53r138,53r0,34r-184,-75r0,-25"},{"d":"51,-128v6,33,78,29,78,78v0,64,-97,75,-116,18r27,-13v8,27,54,31,56,-2v-9,-38,-75,-30,-75,-78v0,-53,78,-66,95,-19r-26,14v-6,-18,-38,-21,-39,2","w":138},{"d":"153,6r-82,-185r-31,179r-35,0r55,-283r93,214r94,-214r55,283r-35,0r-32,-179","w":306},{"d":"104,6v-70,0,-95,-87,-95,-142v0,-56,25,-141,95,-141v70,0,95,85,95,141v0,55,-25,142,-95,142xm104,-248v-49,0,-62,75,-62,112v0,37,13,112,62,112v49,0,62,-75,62,-112v0,-37,-13,-112,-62,-112"},{"d":"169,-69r31,0r0,29r-31,0r0,40r-33,0r0,-40r-133,0r166,-243r0,214xm136,-69r0,-112r-77,112r77,0"},{"d":"190,-240r-85,0r-17,55v65,-10,104,38,106,94v4,99,-142,132,-183,49r25,-24v8,23,36,41,60,41v37,0,66,-31,66,-67v0,-59,-82,-87,-116,-40r-6,0r41,-139r109,0r0,31"},{"d":"59,-271r0,271r-34,0r0,-271r34,0","w":83},{"d":"78,-258r28,0r-13,69r45,0r12,-69r29,0r-13,69r33,0r0,29r-38,0r-10,56r36,0r0,28r-42,0r-14,76r-27,0r13,-76r-44,0r-14,76r-27,0r13,-76r-36,0r0,-28r41,0r10,-56r-38,0r0,-29r43,0xm88,-160r-10,56r45,0r9,-56r-44,0"},{"d":"95,-23v35,0,55,-28,55,-61v0,-33,-20,-61,-55,-61v-33,0,-53,30,-53,61v0,32,19,61,53,61xm180,-168r0,168r-32,0v-1,-8,2,-20,-1,-26v-13,19,-33,32,-57,32v-51,0,-81,-43,-81,-91v0,-46,31,-89,80,-89v26,-1,44,16,59,34r0,-28r32,0","w":200},{"d":"59,-43r28,11r-48,96r-20,-8","w":104},{"d":"57,-168v1,8,-2,21,1,27v10,-29,45,-43,73,-24r-15,29v-6,-5,-12,-7,-20,-7v-61,6,-32,87,-39,143r-33,0r0,-168r33,0","w":126,"k":{"v":-14,"w":-14,"y":-14,"f":-7,",":36,".":36,"m":-3,"n":-3,"q":7,"t":-7,"x":-14}},{"d":"75,-271r34,0r0,172v0,52,-10,105,-73,105v-16,0,-30,-4,-43,-12r17,-29v8,6,17,9,27,9v39,0,38,-45,38,-73r0,-172","w":130},{"d":"62,-168r0,168r-32,0r0,-168r32,0xm46,-268v12,0,22,9,22,22v0,12,-10,22,-22,22v-12,0,-23,-10,-23,-22v0,-13,11,-22,23,-22","w":91},{"d":"99,-130r0,-28v29,0,53,-10,53,-43v0,-27,-20,-47,-47,-47v-24,0,-41,16,-45,39r-33,0v6,-45,34,-68,79,-68v75,0,109,102,44,134v72,34,36,149,-48,149v-42,0,-81,-28,-83,-73r33,0v7,65,104,51,104,-10v0,-35,-24,-56,-57,-53"},{"d":"25,-124v0,-65,90,-40,90,-91v0,-20,-14,-32,-33,-32v-21,0,-37,21,-29,43r-34,0v-5,-45,26,-71,64,-73v55,-3,87,71,46,108v-21,19,-71,12,-71,47v0,14,11,26,25,26v15,0,25,-13,25,-28r33,0v1,31,-27,58,-58,58v-32,0,-58,-26,-58,-58xm83,-36v12,0,21,10,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-11,9,-21,21,-21","w":163},{"d":"161,-312r26,11r-150,346r-25,-11","w":198},{"d":"118,-283r0,360r-31,0r0,-360r31,0","w":205},{"d":"157,-240r-140,0r0,-31r195,0r-169,277r-26,-16"},{"d":"22,-312r33,0r0,166v10,-18,30,-28,51,-28v84,0,55,99,60,174r-32,0v-8,-55,25,-145,-38,-145v-67,0,-33,87,-41,145r-33,0r0,-312","w":188},{"d":"26,0r0,-271r146,0r0,31r-112,0r0,75r108,0r0,31r-108,0r0,103r112,0r0,31r-146,0","w":187},{"d":"57,-162r129,0r0,-109r34,0r0,271r-34,0r0,-130r-129,0r0,130r-34,0r0,-271r34,0r0,109","w":243},{"d":"69,-256v-22,0,-41,19,-41,41v0,22,19,40,41,40v22,0,42,-18,42,-40v0,-22,-20,-41,-42,-41xm199,-277r16,9r-158,274r-17,-9xm186,-96v-22,0,-42,18,-42,40v0,22,20,40,42,40v22,0,42,-18,42,-40v0,-22,-20,-40,-42,-40xm69,-277v34,0,64,27,64,62v0,34,-30,61,-64,61v-34,0,-63,-27,-63,-61v0,-35,29,-62,63,-62xm186,-118v34,0,63,27,63,62v0,34,-29,62,-63,62v-34,0,-64,-28,-64,-62v0,-35,30,-62,64,-62","w":254},{"d":"62,-168r0,264r-32,0r0,-264r32,0xm46,-268v12,0,22,9,22,22v0,12,-10,22,-22,22v-12,0,-23,-10,-23,-22v0,-13,11,-22,23,-22","w":91},{"d":"57,-241r0,90v37,1,67,-3,67,-46v0,-41,-30,-45,-67,-44xm57,-124r0,94v46,1,90,1,90,-48v0,-45,-48,-47,-90,-46xm23,0r0,-271v68,-2,131,1,133,74v0,20,-12,43,-30,52v32,6,55,37,55,69v0,77,-79,80,-158,76","w":192},{"d":"52,-36v12,0,21,10,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-11,9,-21,21,-21xm52,-174v12,0,21,10,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-11,9,-21,21,-21","w":104},{"d":"189,-68r-125,0r-31,68r-36,0r130,-283r129,283r-36,0xm175,-99r-48,-110r-49,110r97,0","w":253},{"d":"17,-98r0,-26v35,-13,24,-73,27,-120v3,-42,21,-51,59,-47r0,30v-44,-9,-26,54,-26,89v0,41,-22,58,-27,61v5,3,27,21,27,62r0,66v-2,19,7,26,26,23r0,30v-62,16,-61,-53,-59,-113v0,-27,-9,-47,-27,-55","w":120},{"d":"58,-291r27,20v-43,99,-42,221,0,321r-27,19v-51,-110,-50,-250,0,-360","w":105},{"d":"106,-312r0,32v-6,-3,-15,-7,-22,-7v-23,0,-23,29,-23,46r0,73r45,0r0,30r-45,0r0,138r-32,0r0,-138r-15,0r0,-30r15,0v-1,-74,-13,-171,77,-144","w":99,"k":{"f":-7}},{"d":"23,0r0,-284r203,213r0,-200r34,0r0,282r-203,-213r0,202r-34,0","w":282},{"d":"95,-23v35,0,54,-28,54,-61v0,-33,-19,-61,-54,-61v-33,0,-54,30,-54,61v0,32,20,61,54,61xm180,-168r0,165v0,58,-16,99,-82,99v-47,0,-80,-28,-81,-76r32,0v0,30,20,48,50,48v51,1,52,-48,48,-94v-13,19,-33,32,-57,32v-52,0,-81,-43,-81,-91v0,-46,30,-89,79,-89v26,-1,45,15,60,34r0,-28r32,0","w":199},{"d":"89,-184r31,0r0,76r76,0r0,31r-76,0r0,77r-31,0r0,-77r-77,0r0,-31r77,0r0,-76"},{"d":"120,-126r0,98v22,-5,38,-26,38,-49v0,-24,-18,-39,-38,-49xm102,-277r0,-33r18,0r0,33v27,3,48,18,61,42r-28,16v-8,-14,-18,-22,-33,-27r0,85v36,16,70,39,70,83v0,39,-31,79,-70,84r0,34r-18,0r0,-34v-42,-1,-78,-35,-84,-76r32,-7v6,31,20,47,52,51r0,-108v-32,-14,-65,-32,-65,-72v0,-36,29,-68,65,-71xm102,-170r0,-76v-19,3,-34,18,-34,37v0,21,16,32,34,39"},{"d":"57,-312r0,207r63,-63r43,0r-72,69r79,99r-42,0r-60,-77r-11,11r0,66r-33,0r0,-312r33,0","w":166},{"d":"12,-139r184,0r0,31r-184,0r0,-31xm12,-77r184,0r0,31r-184,0r0,-31"},{"d":"55,-261r0,300r35,0r0,30r-68,0r0,-360r68,0r0,30r-35,0","w":111},{"d":"32,-271r76,194r77,-200r77,200r76,-194r36,0r-112,282r-77,-199r-77,199r-112,-282r36,0","w":369,"k":{"A":36,",":29,".":29,"a":22,"e":22,"o":22,"r":7,"u":14,":":29,";":29}},{"d":"136,-277r25,16r-72,99v54,-23,105,25,105,78v0,50,-40,90,-89,90v-47,0,-91,-39,-91,-87v0,-27,14,-51,30,-72xm104,-24v30,0,58,-26,58,-56v0,-34,-29,-58,-58,-58v-30,0,-57,26,-57,56v0,31,26,58,57,58"},{"d":"224,-259r0,39v-67,-61,-179,-6,-179,85v0,90,113,146,179,82r0,40v-95,54,-213,-16,-213,-121v0,-104,116,-179,213,-125","w":237},{"d":"166,-137r107,0v4,84,-48,143,-128,143v-76,0,-137,-66,-137,-141v0,-78,62,-142,140,-142v42,0,84,19,111,52r-24,23v-53,-83,-194,-37,-194,66v0,57,47,111,106,111v42,0,88,-37,89,-81r-70,0r0,-31","w":280},{"d":"11,-312r30,0r146,312r-30,0","w":198},{"d":"56,-43r28,11r-48,96r-19,-8xm69,-174v12,0,21,10,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-11,9,-21,21,-21","w":104},{"d":"27,-248r30,-16r45,60r-16,9","w":129},{"d":"57,39r0,-300r-35,0r0,-30r68,0r0,360r-68,0r0,-30r35,0","w":111},{"d":"77,6r-25,-17r72,-98v-55,21,-106,-28,-105,-79v0,-50,40,-89,89,-89v47,0,91,39,91,87v0,27,-14,50,-30,71xm109,-133v35,0,57,-27,57,-57v0,-29,-25,-57,-55,-57v-32,0,-60,26,-60,57v0,32,30,57,58,57"},{"d":"12,-145r0,-34r184,74r0,25r-184,75r0,-34r138,-53"},{"d":"149,-277v78,0,142,63,142,141v0,81,-64,142,-142,142v-78,0,-142,-61,-142,-142v0,-78,64,-141,142,-141xm149,-26v59,0,108,-48,108,-110v0,-60,-44,-110,-108,-110v-64,0,-108,50,-108,110v0,62,49,110,108,110","w":298},{"d":"82,-31r110,0r0,31r-176,0r119,-146v11,-14,24,-30,24,-48v0,-28,-25,-52,-53,-52v-28,0,-50,22,-52,49r-34,0v5,-48,37,-80,86,-80v70,0,110,82,65,137"},{"d":"12,-111r72,-160r40,0r72,160r-34,0r-58,-130r-59,130r-33,0"},{"d":"21,-271r34,0r0,160v0,44,14,85,66,85v52,0,65,-41,65,-85r0,-160r34,0r0,171v0,60,-37,106,-99,106v-62,0,-100,-46,-100,-106r0,-171","w":240},{"d":"133,-84v57,4,68,-99,11,-96v-52,-2,-67,92,-11,96xm275,-163v0,54,-36,109,-77,108v-10,0,-18,-9,-20,-23v-33,43,-109,19,-109,-44v0,-66,78,-120,121,-60r5,-22r26,0r-18,92v-3,12,-7,31,5,31v17,0,39,-33,39,-69v0,-60,-43,-98,-98,-98v-60,0,-107,50,-107,112v0,91,108,142,180,96r27,21v-26,14,-49,25,-96,25v-77,0,-140,-60,-140,-142v0,-81,60,-141,137,-141v65,0,125,51,125,114","w":288}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+190-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);})("_-`7}W)l1KE!_t]GpW0wV-VE.Z)7`WE!.Z2w1K8+`uag~9lHQu,5V+ug~]*x`u]$}u2yQ]E-.JfD#-dDff8lkHy+}w,FVj`izJ]#uWRv5&0|jF`*ejR~oJ))#&*7jj)%eJ2_1i#(.tEa)Z%0jtu;*|,hkw%WiW5A2-gEK75Z*lp5.&nx.iy:i92kuf>He+)D}-]l_tVH_jv,oi>g5&7He+>g}>ht&d0-JV2_e#)zo*8jifuK.~`1}5pkQx%H|y]W+[,;Agn!XDvw9l7ZF$RPGaE:(&7DeWv]}Wpl1tv+oKV!`HR+}J]D1J#EkFlG1K~[e7$[o9,FpFp5eHy(_&aP}K0,}Wu|p-u5eWEw`FD!_7D!}K0,}Wu|p-u5eWEw`Fvn~K]!`K)l`uD!5+)|Qt$A.tRn~K]!`K)l`uD!5+)|Q-7%1KR]~F8].tR|}Z7aeHn5eW7%1KR]~F8].tR|}Zl,2ta!p-u9pt%g}Z)%p-]X}HR[}F)l}W0n`jy,`WEw_&n,o-DG_wn,_Kp}~7n,.ulE50n,..l,_tyx")}catch(e){}delete _cufon_bridge_;return f})({"w":208,"face":{"font-family":"Futura Std","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 2 2 2 4 2 3 3","ascent":"297","descent":"-63","x-height":"6","bbox":"-7 -316.62 374 96","underline-thickness":"18","underline-position":"-18","stemh":"30","stemv":"32","unicode-range":"U+0020-U+007E"}}));Cufon.registerFont((function(f){_cufon_bridge_={p:[{"d":"45,-166r38,137r81,-137r16,0r-103,175r-49,-175r17,0","w":155,"k":{",":29,".":29}},{"d":"59,-291r13,-6r147,290r-15,7","w":230},{"d":"37,-16r161,0r-3,16r-191,0r206,-255r-150,0r3,-16r180,0","w":204},{"d":"75,-297r16,0r-24,157v13,-18,32,-30,54,-30v83,2,29,113,28,170r-17,0r16,-100v5,-30,5,-55,-31,-55v-72,0,-58,95,-73,155r-16,0","w":176},{"d":"186,-39v44,-56,32,-154,51,-232r17,0r-27,169v-4,28,-8,51,-30,74v-40,40,-114,46,-148,0v-16,-22,-10,-46,-6,-74r26,-169r18,0r-26,164v-4,24,-9,51,3,68v26,37,94,36,122,0","w":237},{"d":"151,-255r-43,0r11,-16r52,0r-43,271r-17,0"},{"d":"132,-69v48,-4,65,-58,83,-96v6,-13,-4,-39,-30,-39v-38,0,-79,58,-85,95v-3,21,7,42,32,40xm229,-195r8,-17r16,0r-55,117v-6,13,-12,26,8,26v30,0,72,-52,78,-91v10,-60,-39,-100,-93,-100v-67,0,-130,59,-140,126v-10,67,37,122,102,122v40,0,80,-16,106,-48r20,0v-26,38,-74,64,-129,64v-77,0,-126,-64,-114,-141v12,-77,84,-138,157,-138v69,0,116,49,106,116v-9,58,-62,105,-101,105v-13,0,-22,-6,-24,-18v-37,33,-99,20,-89,-35v9,-49,52,-112,105,-112v17,0,31,9,39,24","w":288},{"d":"22,-15r178,-77r-154,-74r2,-16r172,80r-3,19r-198,85"},{"d":"110,-116r-66,-155r19,0r59,137r101,-137r19,0r-115,155r-18,116r-17,0","w":201,"k":{"v":14,"A":36,",":36,".":36,"q":36,"a":36,"e":36,"i":7,"o":36,"u":22,":":36,"-":22,";":36,"p":29}},{"d":"197,-275v76,0,131,63,119,139v-12,76,-87,140,-163,140v-76,0,-130,-64,-118,-140v12,-76,85,-139,162,-139xm195,-259v-68,0,-133,56,-143,123v-11,67,36,123,104,123v67,0,132,-56,143,-123v10,-67,-37,-123,-104,-123","w":307},{"d":"76,-166r-26,166r-16,0r26,-166r16,0xm63,-222v1,-17,32,-21,29,0v-1,17,-32,21,-29,0","w":84},{"d":"62,-271r45,231r117,-231r17,0r-143,280r-53,-280r17,0","w":199,"k":{"y":7,"A":36,",":43,".":43,"a":29,"e":29,"i":7,"o":29,"r":14,"u":22,":":29,"-":11,";":29}},{"d":"205,-111r46,60v25,-23,42,-51,47,-83v11,-68,-34,-125,-103,-125v-67,0,-131,56,-143,123v-19,103,107,160,185,95r-57,-70r25,0xm267,0r-20,-29v-28,20,-62,33,-94,33v-77,0,-130,-63,-118,-140v12,-77,86,-139,163,-139v76,0,130,62,118,138v-6,38,-25,69,-55,98r30,39r-24,0","w":307},{"d":"83,-88r-50,-78r20,0r42,67r64,-67r20,0r-75,78r54,88r-19,0r-47,-76r-71,76r-20,0","w":159},{"d":"204,-237r-13,10v-18,-52,-107,-34,-110,20v-3,70,122,51,111,132v-11,82,-152,114,-168,20r16,-7v7,29,25,49,58,49v36,0,74,-28,77,-64v6,-70,-119,-52,-111,-129v7,-69,113,-96,140,-31","w":195},{"d":"199,-255r-112,0r-16,98r110,0r-3,17r-109,0r-20,124r112,0r-2,16r-130,0r43,-271r130,0","w":182},{"d":"70,-166v0,7,-4,16,-2,21v11,-19,33,-32,57,-21r-11,14v-40,-16,-53,41,-57,67r-13,85r-16,0r26,-166r16,0","w":100,"k":{"v":-14,"w":-14,"y":-14,"f":-7,",":36,".":36,"m":-3,"n":-3,"q":7,"t":-7,"x":-14}},{"d":"81,-253r-49,308r44,0r-3,18r-61,0r54,-344r61,0r-2,18r-44,0","w":108},{"d":"162,-67v-26,0,-48,-28,-75,-27v-16,0,-28,12,-40,26r-16,-8v15,-15,33,-37,59,-37v24,0,55,27,75,27v16,0,28,-12,39,-28r17,8v-15,19,-35,39,-59,39"},{"d":"68,-151r-24,151r-16,0r24,-151r-19,0r3,-15r18,0v11,-55,6,-150,79,-133r-2,15v-60,-14,-48,70,-61,118r42,0r-2,15r-42,0","w":86,"k":{"f":-7}},{"d":"64,-271r40,233r140,-247r63,247r112,-233r17,0r-135,280r-64,-251r-143,251r-47,-280r17,0","w":397,"k":{"A":36,",":29,".":29,"a":22,"e":22,"o":22,"r":7,"u":14,":":7,";":7}},{"d":"100,-139r-50,-132r19,0r44,116r81,-116r19,0r-92,132r53,139r-19,0r-47,-123r-85,123r-19,0","w":177},{"d":"231,-255r-90,0r-34,73v61,-15,105,33,98,90v-10,87,-144,136,-186,51r17,-7v36,67,142,27,152,-45v8,-61,-60,-95,-111,-63r54,-115r103,0"},{"d":"67,-250r23,-7r28,53r-15,6","w":112},{"d":"91,-297r-32,201r80,-70r20,0r-81,72r79,94r-22,0r-69,-83r-11,9r-11,74r-16,0r47,-297r16,0","w":153},{"d":"77,3r-53,-169r17,0r47,150r87,-150r17,0r-153,263r-17,0","w":165,"k":{",":29,".":29}},{"d":"70,-166v0,8,-5,20,-3,26v13,-18,32,-30,54,-30v83,2,29,113,28,170r-17,0r16,-100v5,-30,5,-55,-31,-55v-72,0,-58,95,-73,155r-16,0r26,-166r16,0","w":176},{"d":"53,-92r153,77r-3,17r-171,-85r4,-19r197,-80r-3,16"},{"d":"110,-108r-2,16v-66,25,-8,171,-105,165r3,-16v16,0,35,-3,39,-29v9,-47,12,-115,47,-128v-33,-16,-12,-86,-7,-126v3,-26,-14,-29,-30,-29r3,-16v97,-4,-7,128,52,163","w":108},{"d":"110,-12v41,0,71,-34,77,-72v6,-36,-14,-71,-53,-71v-42,0,-72,31,-78,71v-6,39,13,72,54,72xm28,0r47,-297r16,0r-24,159v17,-21,43,-32,69,-32v50,0,72,37,67,86v-7,74,-114,124,-154,54r-5,30r-16,0","w":201},{"d":"173,45r-180,0r3,-18r180,0","w":180},{"d":"155,-166r16,0v-12,50,-5,110,-33,147v-23,30,-79,33,-100,0v-14,-46,11,-99,13,-147r17,0r-15,94v-5,32,-6,60,34,60v73,0,50,-97,68,-154","w":169},{"d":"130,-255r-40,255r-18,0r41,-255r-71,0r3,-16r158,0r-3,16r-70,0","w":162,"k":{"w":29,"y":29,"A":29,",":36,".":36,"a":36,"c":36,"e":36,"i":5,"o":36,"r":29,"s":36,"u":36,":":36,"-":29,";":36}},{"d":"43,-11v1,-17,32,-21,29,0v-1,17,-32,21,-29,0","w":111},{"d":"119,-155v-75,-5,-113,139,-21,143v79,7,115,-142,21,-143xm203,-166v-19,79,-10,170,-53,229v-39,54,-153,41,-142,-40r16,0v-7,61,80,75,113,32v19,-24,26,-53,27,-84v-18,20,-45,33,-70,33v-48,0,-72,-42,-67,-88v8,-72,113,-120,155,-54r4,-28r17,0","w":204},{"d":"179,-68r38,0r-2,17r-39,0r-8,51r-17,0r8,-51r-146,0r0,-3r198,-227r2,0xm162,-68r25,-160v-49,51,-95,105,-140,160r115,0"},{"d":"95,-129r68,129r-19,0r-68,-129r-9,0r-21,129r-17,0r43,-271v36,1,72,-7,94,13v51,47,-5,140,-71,129xm69,-145v49,7,91,-13,98,-55v7,-43,-32,-62,-80,-55","w":175,"k":{"T":7,"Y":7}},{"d":"145,-130r-18,116v30,-7,56,-33,61,-63v5,-29,-22,-42,-43,-53xm134,-157r15,-101v-26,0,-50,25,-54,51v-4,28,20,39,39,50xm111,-14r20,-124v-27,-15,-59,-29,-53,-68v6,-39,36,-66,74,-69r6,-38r17,0r-7,39v22,3,41,16,49,37r-15,11v-6,-15,-18,-30,-36,-32r-17,108v31,17,63,30,56,74v-6,39,-42,72,-80,79r-7,41r-16,0r6,-40v-37,-1,-62,-23,-69,-59r15,-7v6,28,26,49,57,48"},{"d":"303,0r-11,-225r-132,234r-58,-234r-82,225r-17,0r103,-280r61,247r139,-247r14,280r-17,0","w":322},{"d":"179,-149r-4,21v-37,-54,-127,-17,-134,44v-4,38,18,72,57,72v24,0,48,-11,66,-29r-3,22v-55,48,-150,15,-136,-65v11,-67,99,-115,154,-65","w":171},{"d":"62,-195v3,-44,51,-81,94,-80v45,0,75,35,68,80v-6,36,-38,65,-65,91r-93,88r129,0r-3,16r-167,0r119,-111v24,-23,58,-54,63,-86v6,-35,-19,-62,-54,-62v-37,0,-69,27,-74,64r-17,0"},{"d":"67,-129r-21,129r-17,0r43,-271v40,2,82,-9,104,15v48,52,-11,137,-78,127r-31,0xm69,-145v69,16,136,-44,92,-99v-18,-15,-45,-10,-74,-11","w":169,"k":{"A":29,",":49,".":49}},{"d":"134,-143r-15,7v-8,-30,-55,-20,-59,7v-6,40,76,21,69,81v-7,59,-106,73,-112,8r16,-5v3,48,77,38,80,-4v3,-47,-76,-27,-69,-79v6,-44,76,-58,90,-15","w":135},{"d":"132,-133v-33,0,-65,27,-70,60v-5,33,19,60,52,60v33,0,66,-27,71,-60v5,-33,-20,-60,-53,-60xm111,4v-42,0,-74,-32,-67,-75v5,-32,24,-56,55,-70v-63,-37,-11,-134,56,-134v41,0,68,31,61,72v-4,26,-23,50,-48,62v74,36,16,145,-57,145xm153,-259v-30,0,-59,25,-64,55v-5,30,15,55,46,55v30,0,59,-25,64,-55v5,-30,-16,-55,-46,-55"},{"d":"133,-155v-78,0,-117,142,-22,143v39,0,70,-32,76,-69v6,-38,-13,-74,-54,-74xm70,-166r-4,30v15,-21,45,-34,69,-34v51,0,73,39,68,88v-7,74,-114,120,-154,53r-21,126r-16,0r42,-263r16,0","w":201},{"d":"64,-271r17,0r-18,86r-9,0xm105,-271r17,0r-18,86r-9,0","w":100},{"d":"15,55v42,-93,65,-202,52,-326r15,-10v19,127,-9,252,-55,345","w":86},{"d":"45,-11v1,-17,32,-21,29,0v-1,17,-32,21,-29,0xm57,-51r35,-220r17,0r-34,220r-18,0","w":115},{"d":"252,-297r12,6r-246,342r-12,-7","w":230},{"d":"70,-166v0,7,-4,16,-2,21v18,-32,78,-35,87,5v12,-20,33,-30,54,-30v43,0,47,30,41,66r-17,104r-16,0r17,-107v4,-26,4,-48,-28,-48v-68,0,-51,97,-67,155r-17,0r17,-103v4,-26,3,-52,-29,-52v-67,0,-51,97,-66,155r-16,0r26,-166r16,0","w":261},{"d":"230,-255r-164,0r2,-16r197,0r-238,274r-12,-11"},{"d":"45,-220v5,-64,120,-75,109,0v-5,31,-33,53,-63,53v-30,0,-49,-22,-46,-53xm106,-259v-45,-5,-68,75,-12,76v46,5,65,-75,12,-76xm191,-104v31,0,51,23,46,54v-5,31,-33,53,-63,53v-30,0,-52,-22,-47,-53v5,-31,33,-54,64,-54xm188,-89v-43,-5,-67,75,-12,76v47,5,66,-76,12,-76xm238,-278r10,7r-205,277r-10,-6","w":239},{"d":"59,-27r16,5r-43,82r-10,-4","w":111},{"d":"70,-151r-24,151r-16,0r24,-151r-19,0r2,-15r19,0r9,-60r16,0r-9,60r29,0r-2,15r-29,0","w":75},{"d":"84,-319r15,0r0,425r-15,0r0,-425","w":139},{"d":"38,-15r135,0r-3,15r-169,0r160,-151r-114,0r2,-15r148,0","w":172},{"d":"54,-108r-17,0r108,-163r19,0r57,163r-17,0r-52,-147"},{"d":"209,-99r-3,17r-45,0r-27,82r-16,0r26,-82r-49,0r-25,82r-17,0r25,-82r-44,0r3,-17r46,0r17,-59r-44,0r3,-17r47,0r24,-76r18,0r-24,76r49,0r24,-76r18,0r-25,76r40,0r-3,17r-42,0r-19,59r43,0xm167,-158r-49,0r-18,59r49,0"},{"d":"89,-271r-43,271r-17,0r43,-271r17,0","w":75},{"d":"19,-123r69,0r-3,16r-68,0","w":68},{"d":"119,-101r13,-83r17,0r-13,83r84,0r-3,17r-83,0r-14,84r-17,0r13,-84r-83,0r2,-17r84,0"},{"d":"59,55r48,-308r-44,0r3,-18r61,0r-54,344r-61,0r3,-18r44,0","w":108},{"d":"76,-166r-41,263r-17,0r42,-263r16,0xm63,-222v1,-17,32,-21,29,0v-1,17,-32,21,-29,0","w":84},{"d":"105,-271v-40,91,-64,199,-51,326r-15,9v-18,-127,9,-251,55,-345","w":86},{"d":"59,-27r16,5r-43,82r-10,-4xm68,-155v1,-17,32,-21,29,0v-1,17,-32,21,-29,0","w":111},{"d":"75,-271r17,0r-42,266v-5,34,-18,62,-58,62v-20,0,-35,-12,-40,-30r15,-9v4,13,15,23,29,23v27,0,34,-25,37,-46","w":78},{"d":"125,-170v49,0,82,38,74,87v-8,49,-53,87,-102,87v-48,0,-80,-40,-73,-87v8,-48,53,-87,101,-87xm121,-155v-40,0,-74,33,-80,72v-6,38,19,71,58,71v41,0,77,-31,83,-71v6,-41,-20,-72,-61,-72","w":196},{"d":"29,-92r3,-16v66,-23,10,-169,104,-163r-2,16v-16,0,-36,3,-40,29v-7,48,-11,113,-46,127v32,15,11,88,6,127v-3,26,14,29,30,29r-2,16v-98,3,7,-129,-53,-165","w":108},{"d":"130,-133r2,-16v32,-1,62,-24,67,-57v5,-30,-16,-53,-45,-53v-31,0,-54,21,-61,52r-17,0v9,-41,39,-68,81,-68v39,0,65,31,59,70v-4,28,-23,52,-50,63v74,36,14,146,-59,146v-41,0,-71,-29,-64,-71r17,0v-2,31,17,54,50,54v34,0,67,-28,72,-62v6,-35,-18,-58,-52,-58"},{"d":"67,-132r-18,116v61,5,125,-4,133,-59v9,-56,-55,-61,-115,-57xm165,-19v-38,26,-81,16,-136,19r43,-271v41,2,85,-10,108,15v31,34,14,96,-26,112v61,10,54,95,11,125xm87,-255r-17,107v51,5,100,-5,107,-54v7,-48,-37,-59,-90,-53","w":203},{"d":"155,-275v67,0,86,80,77,137v-9,56,-52,142,-121,142v-69,0,-85,-86,-76,-142v9,-57,53,-137,120,-137xm114,-13v58,0,94,-76,101,-125v7,-43,-4,-121,-62,-121v-58,0,-94,78,-101,121v-7,49,4,125,62,125"},{"d":"29,0r43,-271v63,0,111,-5,144,34v82,97,-22,249,-138,237r-49,0xm49,-16v94,13,165,-45,177,-119v12,-69,-38,-126,-108,-120r-31,0","w":234},{"d":"139,-217r6,-54r18,0r-10,54r54,-18r3,16r-54,16r26,43r-16,10r-23,-44r-39,44r-12,-10r39,-43r-49,-16r8,-16","w":222},{"d":"95,-12v78,0,115,-141,22,-143v-38,0,-70,35,-76,71v-6,38,14,72,54,72xm158,0r4,-30v-15,21,-45,34,-69,34v-50,0,-73,-39,-68,-88v7,-75,112,-119,155,-54r25,-159r16,0r-47,297r-16,0","w":201},{"d":"185,-82r-144,0v-18,79,90,90,120,33r12,8v-19,29,-49,45,-82,45v-49,0,-74,-41,-66,-88v7,-46,45,-86,94,-86v50,0,74,40,66,88xm43,-97r128,0v-1,-90,-117,-61,-128,0","w":183},{"d":"225,-131r-3,17r-185,0r3,-17r185,0xm215,-70r-3,17r-184,0r3,-17r184,0"},{"w":111},{"d":"100,3r-12,-11v23,-28,54,-57,73,-85v-66,26,-128,-22,-117,-88v9,-53,60,-94,112,-94v85,0,99,99,51,154xm153,-259v-43,0,-85,35,-92,79v-7,43,24,78,67,78v43,0,84,-35,91,-78v7,-44,-23,-79,-66,-79"},{"d":"317,-271r-44,280r-189,-242r-38,233r-17,0r44,-275r189,240r38,-236r17,0","w":303},{"d":"74,-271r17,0r-17,86r-10,0","w":79},{"d":"71,-156r165,0r18,-115r17,0r-42,271r-18,0r23,-140r-165,0r-23,140r-17,0r43,-271r17,0","w":257},{"d":"69,-145r149,-126r23,0r-153,130r119,141r-23,0r-110,-130r-8,8r-20,122r-17,0r43,-271r17,0","w":204},{"d":"57,-194v-5,-52,34,-81,75,-81v39,0,60,27,54,65v-6,41,-33,55,-70,64v-23,6,-46,12,-50,40v-4,22,11,39,34,39v24,0,42,-20,45,-42r17,0v-4,33,-31,58,-66,58v-31,0,-51,-23,-48,-54v7,-71,113,-36,121,-105v4,-27,-12,-49,-40,-49v-34,1,-57,27,-56,65r-16,0xm75,-11v1,-18,31,-20,29,0v-1,17,-32,21,-29,0","w":176},{"d":"155,-260v-20,0,-38,19,-41,38v-3,19,10,34,17,50v22,-15,48,-27,52,-54v3,-18,-9,-34,-28,-34xm213,0r-27,-45v-34,26,-73,50,-108,50v-40,0,-66,-32,-60,-71v8,-48,58,-76,99,-99v-10,-18,-21,-36,-19,-59v5,-59,113,-74,102,-2v-5,31,-32,49,-61,67r52,91r40,-37r13,7r-45,43r33,55r-19,0xm125,-151v-35,20,-81,41,-89,83v-5,31,13,57,45,57v32,0,69,-27,97,-48","w":231},{"w":111},{"d":"189,-89r-119,0r-51,89r-17,0r158,-280r69,280r-18,0xm185,-105r-32,-132r-74,132r106,0","w":230},{"d":"179,-255r-92,0r-16,98r90,0r-3,17r-89,0r-23,140r-17,0r43,-271r109,0","w":159,"k":{"A":22,",":54,".":54}},{"d":"89,-271r-40,255r69,0r-2,16r-87,0r43,-271r17,0","w":117,"k":{"T":11,"V":14,"W":11,"y":7,"Y":14}},{"d":"117,-155v-38,0,-70,35,-76,71v-6,38,14,72,54,72v78,0,115,-141,22,-143xm200,-166r-26,166r-16,0r4,-30v-15,21,-45,34,-69,34v-50,0,-73,-39,-68,-88v7,-75,112,-119,155,-54r4,-28r16,0","w":201},{"d":"118,-155v-78,0,-117,142,-22,143v39,0,70,-32,76,-69v6,-38,-13,-74,-54,-74xm200,-166r-42,263r-16,0r20,-126v-17,21,-44,33,-70,33v-50,0,-73,-37,-68,-85v7,-74,114,-125,155,-55r5,-30r16,0","w":201},{"d":"91,-297r-47,297r-16,0r47,-297r16,0","w":71},{"d":"283,-240r-4,24v-66,-92,-216,-19,-228,82v-8,66,42,121,105,121v31,0,73,-17,97,-41r-4,24v-29,21,-62,34,-95,34v-76,0,-129,-63,-119,-139v15,-107,162,-189,248,-105","w":266},{"d":"45,-166r37,136r81,-145r36,145r80,-136r16,0r-103,175r-36,-144r-81,144r-47,-175r17,0","w":270,"k":{",":22,".":22}},{"d":"304,-131v-2,74,-79,135,-152,135v-75,0,-127,-64,-118,-139v15,-125,207,-198,272,-77r-16,11v-18,-36,-52,-58,-96,-58v-66,0,-132,58,-142,123v-11,67,36,123,104,123v60,0,122,-45,128,-101r-97,0r3,-17r114,0","w":296},{"d":"43,-11v1,-17,32,-21,29,0v-1,17,-32,21,-29,0xm66,-155v1,-17,32,-21,29,0v-1,17,-32,21,-29,0","w":111},{"d":"166,-275r12,10v-23,29,-53,58,-72,86v65,-26,127,23,116,88v-8,47,-57,95,-111,95v-84,0,-99,-100,-52,-155xm114,-13v43,0,84,-34,91,-78v7,-43,-23,-79,-66,-79v-44,0,-85,36,-92,79v-7,44,23,78,67,78"}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+62-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);})("^!*%Ze)2o_O~^ksM1em83!3O`B)%*eO~`BU8o_@Q*hF]>X2:1sPC_eAhpNz5_NO|hsmuN2h8_,ceh%[%>!qcZ6PO>szyk(nm!R3U^rp)}9v@GWNh_`>*oZC1SE[A:6.seQt|Jd]q~l{P8X2%B,ucbMFO5=O%hkcQ)m3.W_p8NRpuCm{:^GmCrB2,UGP2ER|S32.q^%%J^(q^Z,]Xv6yn^e@s9hP%p(yAp(s}U2Ar98>[vN*p>`m]v,1R}6>:rQ){Z!s2^k3:^GP|9Wz]C(%:rQz]Z(%{rePsZe12okPQ9_3~*:cQZRs{oRpOS,2Mo_>tr%ut9X|,1,1Cr:.=^(FbZ_m|Zeh61!hCreO8*,{~^%{~Z_m|Zeh61!hCreO8*,Pq>_s~*_)2*h{~CQ)6Ekud`kcq>_s~*_)2*h{~CQ)6E!%Ao_cs>,@s`kc6ZB%Fr:qCre%Ao_cs>,@s`kc6ZB2|UkF~1!hX1kA]ZB)A1!slZ:ctZ,)2Zemq*G.|*eO8^(q|9!{M^8q|^_1Z>%q|`h2OCmq|``2|^k.[")}catch(e){}delete _cufon_bridge_;return f})({"w":223,"face":{"font-family":"Futura Std","font-weight":300,"font-style":"oblique","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 2 2 2 4 2 3 3","ascent":"297","descent":"-63","x-height":"4","bbox":"-48 -319 436 106","underline-thickness":"18","underline-position":"-18","slope":"-9","stemh":"15","stemv":"16","unicode-range":"U+0020-U+007E"}}));Cufon.registerFont((function(f){_cufon_bridge_={p:[{"d":"75,-271r46,194r108,-200r45,200r107,-194r36,0r-157,282r-45,-199r-108,199r-68,-282r36,0","w":369,"k":{"A":36,",":29,".":29,"a":22,"e":22,"o":22,"r":7,"u":14,":":29,";":29}},{"d":"125,-174v50,0,84,39,76,90v-8,51,-55,90,-105,90v-50,0,-83,-39,-75,-90v8,-51,54,-90,104,-90xm120,-143v-32,0,-62,27,-67,59v-5,32,16,59,48,59v32,0,62,-27,67,-59v5,-32,-16,-59,-48,-59","w":194},{"d":"265,-259r-7,39v-69,-64,-181,1,-192,85v-8,59,29,110,89,110v27,0,54,-10,77,-28r-6,40v-96,53,-213,-13,-194,-121v17,-100,133,-180,233,-125","w":237},{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm148,0r4,-26v-16,19,-39,32,-63,32v-52,0,-70,-43,-66,-91v6,-70,109,-127,147,-55r27,-172r33,0r-50,312r-32,0","w":200},{"d":"172,-162r-7,41v-31,-46,-103,-12,-110,37v-9,61,67,78,99,37r-7,42v-62,32,-137,-9,-125,-78v11,-65,86,-114,150,-79","w":158},{"d":"128,-118r67,118r-41,0r-62,-115r-14,0r-18,115r-34,0r43,-271v42,1,81,-8,111,12v58,39,12,139,-52,141xm98,-241r-16,98v43,1,84,-3,91,-50v7,-45,-36,-49,-75,-48","w":195,"k":{"T":7,"Y":7}},{"d":"96,-261r-47,300r35,0r-5,30r-68,0r57,-360r68,0r-4,30r-36,0","w":111},{"d":"155,-312r-5,32v-6,-3,-13,-7,-20,-7v-23,0,-28,29,-31,46r-11,73r44,0r-4,30r-45,0r-22,138r-32,0r22,-138r-15,0r5,-30r14,0v11,-68,11,-171,100,-144","w":99,"k":{"f":-7}},{"d":"81,-138r-22,138r-32,0r22,-138r-18,0r5,-30r18,0r10,-65r32,0r-10,65r32,0r-5,30r-32,0","w":86},{"d":"51,39r47,-300r-35,0r5,-30r68,0r-57,360r-69,0r5,-30r36,0","w":111},{"d":"72,-312r32,0r-26,166v13,-18,35,-28,56,-28v89,0,34,114,32,174r-32,0r15,-96v5,-29,4,-49,-29,-49v-69,0,-48,90,-65,145r-33,0","w":188},{"d":"66,-43r26,11r-63,96r-19,-8","w":104},{"d":"82,-162r130,0r17,-109r34,0r-43,271r-34,0r21,-130r-130,0r-20,130r-34,0r43,-271r34,0","w":243},{"d":"105,-118r-64,-153r39,0r48,115r85,-115r39,0r-113,153r-19,118r-34,0","w":206,"k":{"v":14,"A":36,",":36,".":36,"q":36,"a":36,"e":36,"i":7,"o":36,"u":22,":":36,"-":22,";":36,"p":29}},{"d":"84,-154r134,-117r44,0r-141,122r100,149r-45,0r-82,-126r-16,13r-18,113r-34,0r43,-271r34,0","w":216},{"d":"67,-248r32,-16r36,60r-18,9","w":129},{"d":"30,-111r97,-160r40,0r47,160r-34,0r-38,-130r-79,130r-33,0"},{"d":"110,-256v-46,-4,-71,80,-13,81v48,4,70,-80,13,-81xm243,-277r14,9r-202,274r-15,-9xm201,-96v-48,0,-70,79,-13,80v22,0,45,-18,49,-40v3,-22,-14,-40,-36,-40xm113,-277v34,0,59,27,54,62v-5,34,-39,61,-73,61v-34,0,-59,-27,-54,-61v5,-35,39,-62,73,-62xm204,-118v34,0,59,27,54,62v-5,34,-39,62,-73,62v-34,0,-59,-28,-54,-62v5,-35,39,-62,73,-62","w":254},{"d":"58,-168r32,107r68,-117r31,117r66,-107r36,0r-113,174r-31,-113r-68,113r-58,-174r37,0","w":258,"k":{",":22,".":22}},{"d":"193,-277v78,0,132,63,120,141v-13,81,-87,142,-165,142v-78,0,-133,-61,-120,-142v12,-78,87,-141,165,-141xm153,-26v59,0,116,-48,126,-110v9,-60,-27,-110,-91,-110v-64,0,-117,50,-126,110v-10,62,32,110,91,110","w":298},{"d":"106,-312r-33,207r74,-63r43,0r-83,69r63,99r-42,0r-48,-77r-13,11r-10,66r-33,0r50,-312r32,0","w":166},{"d":"60,-312r31,0r96,312r-30,0","w":198},{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm207,-168r-42,264r-32,0r19,-122v-16,19,-39,32,-63,32v-52,0,-70,-43,-66,-91v6,-70,109,-127,147,-55r5,-28r32,0","w":200},{"d":"68,-30r110,0r-5,30r-172,0r136,-138r-95,0r5,-30r157,0","w":178},{"d":"89,-168r-27,168r-32,0r26,-168r33,0xm88,-268v12,0,21,9,19,22v-2,12,-14,22,-26,22v-12,0,-21,-10,-19,-22v2,-13,14,-22,26,-22","w":91},{"d":"75,-271r36,0r-26,118r-22,0","w":99},{"d":"63,-31r138,0r-5,31r-193,0r176,-240r-118,0r5,-31r173,0","w":198},{"d":"120,-130r4,-28v29,0,55,-10,60,-43v4,-27,-13,-47,-40,-47v-24,0,-44,16,-51,39r-33,0v14,-45,45,-68,90,-68v43,0,74,28,67,73v-4,27,-19,48,-44,61v69,45,4,149,-72,149v-42,0,-76,-28,-71,-73r32,0v7,70,100,45,106,-10v4,-35,-14,-56,-48,-53"},{"d":"118,-184r31,0r-13,76r77,0r-5,31r-76,0r-12,77r-31,0r12,-77r-77,0r5,-31r76,0"},{"d":"48,-168r32,0r-15,93v-4,27,-1,51,31,51v65,0,46,-92,62,-144r32,0v-13,76,-10,174,-99,174v-94,0,-51,-108,-43,-174","w":184},{"d":"98,-23v66,0,98,-122,20,-122v-33,0,-58,30,-63,61v-5,32,9,61,43,61xm207,-168r-27,165v-9,58,-31,99,-97,99v-47,0,-77,-28,-70,-76r33,0v-5,30,13,48,43,48v52,0,59,-51,62,-94v-16,19,-38,32,-62,32v-52,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r4,-28r33,0","w":199},{"d":"195,-240r-97,0r-13,76r95,0r-5,31r-94,0r-22,133r-33,0r42,-271r132,0","w":170,"k":{"A":22,",":54,".":54}},{"d":"108,-142r-55,-129r39,0r40,99r74,-99r39,0r-98,129r59,142r-38,0r-46,-111r-84,111r-38,0","w":206},{"d":"34,-15v1,-25,46,-28,42,0v-1,24,-47,30,-42,0","w":104},{"d":"58,-168r32,105r65,-105r37,0r-113,174r-57,-174r36,0","w":160,"k":{",":29,".":29}},{"d":"180,-277r22,16r-87,99v54,-23,103,24,93,78v-9,50,-55,90,-104,90v-47,0,-85,-39,-77,-87v4,-27,22,-51,41,-72xm108,-24v30,0,62,-26,67,-56v5,-34,-20,-58,-49,-58v-30,0,-61,26,-66,56v-5,31,17,58,48,58"},{"d":"139,-144r-28,14v-6,-20,-36,-19,-40,2v2,33,74,28,66,78v-9,57,-103,80,-119,18r30,-13v6,30,51,28,56,-2v-5,-38,-71,-30,-64,-78v7,-47,84,-71,99,-19","w":138},{"d":"84,-168v-1,8,-6,20,-4,27v14,-28,49,-44,77,-24r-19,29v-70,-30,-71,74,-81,136r-33,0r27,-168r33,0","w":126,"k":{"v":-14,"w":-14,"y":-14,"f":-7,",":36,".":36,"m":-3,"n":-3,"q":7,"t":-7,"x":-14}},{"d":"33,-98r4,-26v38,-14,35,-76,46,-120v11,-42,25,-51,66,-47r-5,30v-45,-6,-27,58,-39,89v-6,41,-32,58,-37,61v4,3,23,21,17,62r-10,66v-6,20,2,26,22,23r-5,30v-69,17,-49,-67,-41,-113v4,-27,-1,-47,-18,-55","w":120},{"d":"87,-126v32,0,47,32,68,37v14,0,22,-13,36,-31r21,18v-14,20,-35,44,-61,44v-23,0,-50,-37,-68,-37v-12,0,-24,10,-38,29r-20,-16v16,-19,36,-44,62,-44"},{"d":"89,-168r-42,264r-33,0r42,-264r33,0xm88,-268v12,0,21,9,19,22v-2,12,-14,22,-26,22v-12,0,-21,-10,-19,-22v2,-13,14,-22,26,-22","w":91},{"d":"290,6r-41,0r-20,-24v-94,61,-222,-3,-201,-118v14,-78,87,-141,165,-141v78,0,132,63,120,141v-6,39,-27,75,-58,100xm199,-102r36,42v70,-50,59,-186,-47,-186v-64,0,-116,50,-126,110v-14,85,73,138,148,95r-53,-61r42,0","w":298},{"d":"34,-139r184,0r-5,31r-184,0xm24,-77r184,0r-5,31r-184,0"},{"d":"121,-247v-20,0,-41,19,-35,43r-34,0v-1,-44,37,-72,75,-73v61,-3,70,78,28,108v-25,18,-70,12,-78,47v-3,14,7,26,21,26v15,0,28,-13,30,-28r33,0v-4,31,-37,58,-68,58v-32,0,-53,-26,-49,-58v8,-64,92,-40,105,-91v5,-20,-9,-32,-28,-32xm64,-15v1,-24,47,-30,42,0v-1,25,-46,29,-42,0","w":163},{"w":104},{"d":"105,-312r-49,312r-32,0r49,-312r32,0","w":79},{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm207,-168r-27,168r-32,0r4,-26v-16,19,-39,32,-63,32v-51,0,-70,-43,-66,-91v6,-70,109,-127,147,-55r5,-28r32,0","w":200},{"d":"107,-23v66,0,98,-122,20,-122v-33,0,-58,30,-63,61v-5,32,9,61,43,61xm20,0r49,-312r33,0r-27,172v17,-20,39,-34,64,-34v49,0,69,43,65,89v-6,70,-106,129,-147,59r-5,26r-32,0","w":200},{"d":"78,-114r-18,114r-34,0r43,-271r39,0v84,0,106,28,97,78v-11,63,-62,82,-127,79xm98,-241r-16,97v43,1,83,-3,91,-50v8,-45,-37,-47,-75,-47","w":178,"k":{"A":29,",":49,".":49}},{"d":"109,-271r25,0r-5,34r32,-18r9,22r-34,18r28,18r-16,21r-26,-18r-6,34r-25,0r6,-35r-34,18r-9,-21r33,-17r-27,-18r15,-21r29,18","w":155},{"d":"130,-240r-48,0r24,-31r61,0r-43,271r-33,0"},{"d":"77,-29r-55,-139r38,0r40,106r70,-106r36,0r-178,264r-37,0","w":174,"k":{",":29,".":29}},{"d":"183,-79r-129,0v-4,29,11,56,42,56v25,0,41,-13,56,-33r25,16v-21,29,-53,46,-86,46v-51,0,-77,-39,-69,-89v8,-52,43,-91,97,-91v56,-1,74,44,64,95xm60,-103r94,0v-1,-63,-85,-46,-94,0","w":175},{"d":"140,-126r-16,98v23,-5,42,-26,46,-49v4,-24,-12,-39,-30,-49xm146,-277r5,-33r18,0r-5,33v27,3,46,18,55,42r-31,16v-5,-14,-14,-22,-29,-27r-14,85v34,16,65,39,58,83v-6,39,-44,79,-84,84r-6,34r-18,0r6,-34v-42,-1,-72,-35,-72,-76r34,-7v1,31,12,47,43,51r17,-108v-30,-14,-60,-32,-53,-72v6,-36,40,-68,76,-71xm129,-170r12,-76v-40,3,-55,66,-12,76"},{"d":"127,-271v-51,86,-78,201,-50,321r-30,19v-36,-133,-2,-266,57,-360","w":105},{"d":"152,6r-52,-185r-60,179r-35,0r100,-283r59,214r127,-214r11,283r-35,0r-4,-179","w":306},{"d":"176,27r-3,18r-180,0r3,-18r180,0","w":180},{"d":"228,-240r-85,0r-26,55v65,-10,97,37,91,94v-10,91,-151,137,-191,49r29,-24v5,23,30,41,54,41v37,0,70,-31,76,-67v12,-62,-73,-84,-109,-40r-7,0r64,-139r109,0"},{"d":"75,-271r36,0r-26,118r-22,0xm133,-271r35,0r-25,118r-22,0","w":158},{"d":"35,-145r5,-34r173,74r-4,25r-196,75r5,-34r147,-53"},{"d":"41,-129r79,0r-4,27r-79,0","w":119},{"d":"125,-134v-23,13,-57,32,-62,59v-4,26,16,51,42,51v25,0,48,-19,68,-36xm131,-188v4,4,6,16,12,9v15,-11,36,-22,39,-42v3,-19,-9,-30,-27,-30v-31,0,-45,42,-24,63xm213,0r-24,-37v-24,24,-56,43,-88,43v-45,0,-77,-33,-70,-80v6,-42,45,-63,78,-84v-44,-40,-13,-119,51,-119v33,0,60,20,54,56v-5,31,-34,51,-60,68r45,68r38,-36r18,22r-39,39r39,60r-42,0","w":249},{"d":"82,-321r26,0r0,428r-26,0r0,-428","w":145},{"d":"103,6v-70,0,-81,-87,-72,-142v9,-56,47,-141,117,-141v70,0,81,85,72,141v-9,55,-47,142,-117,142xm143,-248v-49,0,-74,75,-80,112v-6,37,-4,112,45,112v49,0,74,-75,80,-112v6,-37,4,-112,-45,-112"},{"w":104},{"d":"107,-23v66,0,98,-122,20,-122v-33,0,-58,30,-63,61v-5,32,9,61,43,61xm79,-168r-4,28v17,-20,39,-34,64,-34v49,0,69,43,65,89v-6,70,-106,129,-147,59r-20,122r-32,0r41,-264r33,0","w":200},{"d":"118,-271r34,0r-27,172v-8,52,-27,105,-90,105v-16,0,-29,-4,-41,-12r21,-29v7,6,16,9,26,9v39,0,45,-45,50,-73","w":130},{"d":"103,-271r-38,240r82,0r-5,31r-116,0r43,-271r34,0","w":138,"k":{"T":11,"V":14,"W":11,"y":7,"Y":14}},{"d":"23,0r43,-271v115,-9,205,23,187,134v-18,112,-107,146,-230,137xm95,-240r-33,209v79,2,143,-22,157,-105v14,-83,-47,-106,-124,-104","w":239},{"d":"211,-236r-30,16v-14,-42,-85,-29,-91,13v-4,29,28,37,50,46v36,15,62,37,55,82v-8,49,-52,85,-101,85v-44,0,-72,-32,-71,-76r35,-7v-5,30,15,51,44,51v29,0,56,-25,59,-53v7,-70,-117,-47,-104,-128v12,-71,127,-99,154,-29","w":193},{"d":"102,-271r-43,271r-34,0r43,-271r34,0","w":83},{"d":"85,-91r-49,-77r39,0r31,54r52,-54r39,0r-74,77r58,91r-38,0r-44,-68r-65,68r-39,0","w":176},{"d":"187,-137r108,0v-10,82,-71,143,-151,143v-76,0,-125,-66,-115,-141v15,-119,190,-198,265,-90r-27,23v-53,-88,-193,-28,-204,66v-6,57,29,111,88,111v42,0,93,-37,102,-81r-70,0","w":280},{"d":"211,-312r24,11r-205,346r-24,-11","w":198},{"d":"80,-168v0,7,-4,16,-2,21v22,-33,78,-38,92,3v13,-18,36,-30,57,-30v84,0,29,115,28,174r-32,0r15,-95v3,-22,5,-50,-23,-50v-64,0,-45,91,-61,145r-32,0r14,-89v4,-22,8,-56,-22,-56v-63,0,-44,92,-60,145r-33,0r27,-168r32,0","w":276},{"d":"195,-240r-140,0r5,-31r195,0r-213,277r-23,-16"},{"d":"34,-15v1,-25,46,-28,42,0v-1,24,-47,30,-42,0xm55,-153v1,-24,47,-30,42,0v-1,25,-46,29,-42,0","w":104},{"d":"26,0r43,-271r146,0r-5,31r-112,0r-12,75r108,0r-4,31r-109,0r-16,103r112,0r-5,31r-146,0","w":187},{"d":"122,-124r-4,26v-37,14,-35,76,-46,120v-10,42,-25,52,-66,48r5,-30v20,2,26,-4,29,-23r11,-66v6,-41,32,-59,37,-62v-4,-3,-24,-20,-18,-61r11,-67v5,-19,-3,-24,-22,-22r4,-30v70,-17,49,66,41,113v-4,27,1,46,18,54","w":120},{"d":"77,-271r50,200r112,-200r37,0r-163,285r-73,-285r37,0","w":230,"k":{"y":7,"A":36,",":43,".":43,"a":29,"e":29,"i":7,"o":29,"r":14,"u":22,":":29,"-":11,";":29}},{"d":"119,-258r28,0r-24,69r44,0r24,-69r29,0r-24,69r33,0r-5,29r-38,0r-19,56r37,0r-5,28r-42,0r-26,76r-27,0r25,-76r-44,0r-26,76r-27,0r25,-76r-36,0r5,-28r41,0r18,-56r-37,0r4,-29r43,0xm113,-160r-18,56r44,0r19,-56r-45,0"},{"d":"200,-68r-125,0r-42,68r-36,0r174,-283r85,283r-36,0xm191,-99r-31,-110r-66,110r97,0","w":253},{"d":"40,-15v1,-24,46,-29,41,0v-1,25,-46,29,-41,0xm52,-63r33,-208r32,0r-33,208r-32,0","w":115},{"d":"180,-69r31,0r-5,29r-31,0r-6,40r-33,0r7,-40r-134,0r204,-243xm147,-69r18,-112r-95,112r77,0"},{"d":"95,-241r-14,90v38,1,67,-4,74,-46v6,-41,-23,-45,-60,-44xm77,-124r-15,94v47,1,89,0,97,-48v7,-45,-40,-47,-82,-46xm23,0r43,-271v68,-2,131,1,121,74v-3,20,-18,43,-38,52v31,6,50,37,44,69v-14,76,-86,80,-170,76","w":192},{"d":"64,-271r34,0r-25,160v-7,44,0,85,52,85v52,0,72,-41,79,-85r25,-160r34,0r-27,171v-9,60,-54,106,-116,106v-62,0,-92,-46,-83,-106","w":240},{"d":"225,-179r-6,34r-146,53r129,53r-5,34r-173,-75r4,-25"},{"d":"137,-240r-38,240r-34,0r38,-240r-64,0r5,-31r162,0r-4,31r-65,0","w":164,"k":{"w":29,"y":29,"A":29,",":36,".":36,"a":36,"c":36,"e":36,"i":5,"o":36,"r":29,"s":36,"u":36,":":36,"-":29,";":36}},{"d":"202,-134v8,-29,-4,-46,-29,-46v-29,0,-52,29,-56,55v-4,21,7,41,29,41v32,0,49,-24,56,-50xm219,-182r9,-22r25,0r-33,92v-4,12,-11,31,1,31v17,0,43,-33,49,-69v10,-60,-26,-98,-81,-98v-60,0,-114,50,-126,112v-19,95,94,140,166,96r23,21v-28,14,-53,25,-100,25v-77,0,-128,-60,-117,-142v15,-109,151,-187,239,-110v67,60,0,194,-68,191v-10,0,-16,-9,-16,-23v-34,41,-111,23,-102,-44v9,-60,88,-123,131,-60","w":288},{"d":"124,-127v-27,0,-56,22,-61,51v-4,27,18,52,45,52v27,0,56,-25,60,-52v5,-29,-17,-51,-44,-51xm31,-76v5,-29,23,-55,53,-65v-63,-41,-3,-136,64,-136v43,0,73,31,66,75v-4,27,-22,48,-46,61v27,10,38,36,33,65v-8,50,-52,82,-98,82v-46,0,-80,-32,-72,-82xm143,-248v-24,0,-49,20,-53,46v-4,22,16,46,39,46v23,0,49,-24,53,-46v4,-26,-15,-46,-39,-46"},{"d":"81,-168r-3,22v13,-18,35,-28,56,-28v89,0,34,114,32,174r-32,0r15,-96v5,-29,4,-49,-29,-49v-69,0,-48,90,-65,145r-33,0r27,-168r32,0","w":188},{"d":"76,6r-22,-17r87,-98v-56,21,-101,-27,-92,-79v9,-50,54,-89,103,-89v47,0,85,39,77,87v-4,27,-22,50,-41,71xm130,-133v35,0,62,-27,67,-57v4,-29,-17,-57,-47,-57v-32,0,-64,26,-69,57v-5,32,21,57,49,57"},{"d":"63,-43r26,11r-63,96r-18,-8xm72,-153v1,-25,46,-28,42,0v-1,25,-46,29,-42,0","w":104},{"d":"23,0r45,-284r170,213r31,-200r34,0r-45,282r-169,-213r-32,202r-34,0","w":282},{"d":"87,-31r110,0r-5,31r-176,0r142,-146v13,-14,29,-30,32,-48v4,-28,-17,-52,-45,-52v-28,0,-54,22,-60,49r-34,0v13,-48,50,-80,99,-80v76,0,90,90,44,137"},{"d":"13,50v51,-86,78,-201,50,-321r30,-20v36,133,2,266,-57,360","w":105}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+319-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);})("r[97s,t0^DI_r#T:u,KHV[VI%wt79,I_%wEH^DC>9-dfW!0(-wIb9[t4Dw90%D~f4KTRWKkTu0I3%K{{X,B>DG*3uDu[D#vwt>tHX}vYq60ZV[{SWT]Y*%TTE#St%!-PVGkoE>NN%LqN*[JNPJh*CKtEXJuPRw0}nB-I-(tFV6C#-6{q+bS_n6on*(B(R>tNs[T0r#V(r4{h$6]fPb7(R>]fsb7NR,{Ts,u0^#{>$DV_9(v>sLTN^L*IX}0:^DWaR7ka$!h}u}uPR(BZrbd|sDKhs,-Gu[-PR,IH9}N_r7N_sDKhs,-Gu[-PR,IH9}{oWDT_9Dt09-N_P>tGp#k3%#voWD]F#bJK[LVErR*tn$+C46q-D%W9^sPuXp~S(GBT,>ahY3fo_gN{H!07w}kv|:dIcZT_9Dt09-N_P>tGp[7S^DvTW}CT%#vGsw7dR(oPR,7S^DvTW}CT%#vGsw0hE#d_u[-!u#SfswtSu[Tgs(vas}t0s,Ko94Bh9,IHrboh$[N:rHohrDusW7oh%-0IPKoh%%0hr#B~")}catch(e){}delete _cufon_bridge_;return f})({"w":208,"face":{"font-family":"Futura Std","font-weight":500,"font-style":"oblique","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 2 2 2 4 2 3 3","ascent":"297","descent":"-63","x-height":"6","bbox":"-9 -321 417 107","underline-thickness":"18","underline-position":"-18","slope":"-9","stemh":"30","stemv":"32","unicode-range":"U+0020-U+007E"}}));
/** *************************** **/
/**
 * Switch School Site
 *
 * This function is used on the dropdown at the top of the school site.
 * It's job is to figure out which school was selected from the list and
 * redirect the user to that school's site.
 *
 * @param formElement The form that is being submitted which contains the
 * dropdown we look at to determine the school.
 * @return void
 */
function switchSchoolSite(formElement) {
	var url = $(formElement).find('select').val();
	
	if (url == '') {
		return false;
	}
	
	// Redirect.
	window.location = url;
}

/**
 * Right Click Disabling
 *
 * The following block is meant to deal with turning off right-click on images.
 * As it is useful for development to have right-click on, we may comment and
 * uncomment the "noContext()" line where appropriate.
 */
$(document).ready(function () {
	//$('img').noContext();
});
/** *************************** **/
/**
 * jQuery Templates
 *
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Written by: Stan Lemon <stanlemon@mac.com>
 *
 * Based off of the Ext.Template library, available at:
 * http://www.extjs.com
 *
 * This library provides basic templating functionality, allowing for macro-based
 * templates within jQuery.
 *
 * Basic Usage:
 *
 * var t = $.template('<div id="foo">Hello ${name}, how are you ${question}?  I am ${me:substr(0,10)}</div>');
 *
 * $(selector).append( t , {
 *     name: 'Stan',
 *     question: 'feeling',
 *     me: 'doing quite well myself, thank you very much!'
 * });
 *
 * Requires: jQuery 1.2+
 *
 *
 * @todo    Add callbacks to the DOM manipulation methods, so that events can be bound
 *          to template nodes after creation.
 */
(function($){

	/**
	 * Create a New Template
	 */
	$.template = function(html, options) {
		return new $.template.instance(html, options);
	};

	/**
	 * Template constructor - Creates a new template instance.
	 *
	 * @param 	html 	The string of HTML to be used for the template.
	 * @param 	options An object of configurable options.  Currently
	 * 			you can toggle compile as a boolean value and set a custom
	 *          template regular expression on the property regx by
	 *          specifying the key of the regx to use from the regx object.
	 */
	$.template.instance = function(html, options) {
        // If a custom regular expression has been set, grab it from the regx object
        if ( options && options['regx'] ) options.regx = this.regx[ options.regx ];

		this.options = $.extend({
			compile: 		false,
			regx:           this.regx.standard
		}, options || {});

		this.html = html;

		if (this.options.compile) {
			this.compile();
		}
		this.isTemplate = true;
	};

	/**
	 * Regular Expression for Finding Variables
	 *
	 * The default pattern looks for variables in JSP style, the form of: ${variable}
	 * There are also regular expressions available for ext-style variables and
	 * jTemplate style variables.
	 *
	 * You can add your own regular expressions for variable ussage by doing.
	 * $.extend({ $.template.re , {
	 *     myvartype: /...../g
	 * }
	 *
	 * Then when creating a template do:
	 * var t = $.template("<div>...</div>", { regx: 'myvartype' });
	 */
	$.template.regx = $.template.instance.prototype.regx = {
	    jsp:        /\$\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
        ext:        /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
        jtemplates: /\{\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}\}/g
	};

	/**
	 * Set the standard regular expression to be used.
	 */
	$.template.regx.standard = $.template.regx.jsp;

	/**
	 * Variable Helper Methods
	 *
	 * This is a collection of methods which can be used within the variable syntax, ie:
	 * ${variable:substr(0,30)} Which would only print a substring, 30 characters in length
	 * begining at the first character for the variable named "variable".
	 *
	 * A basic substring helper is provided as an example of how you can define helpers.
	 * To add more helpers simply do:
	 * $.extend( $.template.helpers , {
	 *	 sampleHelper: function() { ... }
	 * });
	 */
	$.template.helpers = $.template.instance.prototype.helpers = {
		substr : function(value, start, length){
			return String(value).substr(start, length);
		}
	};


	/**
	 * Template Instance Methods
	 */
	$.extend( $.template.instance.prototype, {

		/**
		 * Apply Values to a Template
		 *
		 * This is the macro-work horse of the library, it receives an object
		 * and the properties of that objects are assigned to the template, where
		 * the variables in the template represent keys within the object itself.
		 *
		 * @param 	values 	An object of properties mapped to template variables
		 */
		apply: function(values) {
			if (this.options.compile) {
				return this.compiled(values);
			} else {
				var tpl = this;
				var fm = this.helpers;

				var fn = function(m, name, format, args) {
					if (format) {
						if (format.substr(0, 5) == "this."){
							return tpl.call(format.substr(5), values[name], values);
						} else {
							if (args) {
								// quoted values are required for strings in compiled templates,
								// but for non compiled we need to strip them
								// quoted reversed for jsmin
								var re = /^\s*['"](.*)["']\s*$/;
								args = args.split(',');

								for(var i = 0, len = args.length; i < len; i++) {
									args[i] = args[i].replace(re, "$1");
								}
								args = [values[name]].concat(args);
							} else {
								args = [values[name]];
							}

							return fm[format].apply(fm, args);
						}
					} else {
						return values[name] !== undefined ? values[name] : "";
					}
				};

				return this.html.replace(this.options.regx, fn);
			}
		},

		/**
		 * Compile a template for speedier usage
		 */
		compile: function() {
			var sep = $.browser.mozilla ? "+" : ",";
			var fm = this.helpers;

			var fn = function(m, name, format, args){
				if (format) {
					args = args ? ',' + args : "";

					if (format.substr(0, 5) != "this.") {
						format = "fm." + format + '(';
					} else {
						format = 'this.call("'+ format.substr(5) + '", ';
						args = ", values";
					}
				} else {
					args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
				}
				return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
			};

			var body;

			if ($.browser.mozilla) {
				body = "this.compiled = function(values){ return '" +
					   this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.options.regx, fn) +
						"';};";
			} else {
				body = ["this.compiled = function(values){ return ['"];
				body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.options.regx, fn));
				body.push("'].join('');};");
				body = body.join('');
			}
			eval(body);
			return this;
		}
	});


	/**
	 * Save a reference in this local scope to the original methods which we're
	 * going to overload.
	 **/
	var $_old = {
	    domManip: $.fn.domManip,
	    text: $.fn.text,
	    html: $.fn.html
	};

	/**
	 * Overwrite the domManip method so that we can use things like append() by passing a
	 * template object and macro parameters.
	 */
	$.fn.domManip = function( args, table, reverse, callback ) {
		if (args[0].isTemplate) {
			// Apply the template and it's arguments...
			args[0] = args[0].apply( args[1] );
			// Get rid of the arguements, we don't want to pass them on
			delete args[1];
		}

		// Call the original method
		var r = $_old.domManip.apply(this, arguments);

		return r;
	};

    /**
     * Overwrite the html() method
     */
	$.fn.html = function( value , o ) {
	    if (value && value.isTemplate) var value = value.apply( o );

		var r = $_old.html.apply(this, [value]);

		return r;
	};

	/**
	 * Overwrite the text() method
	 */
	$.fn.text = function( value , o ) {
	    if (value && value.isTemplate) var value = value.apply( o );

		var r = $_old.text.apply(this, [value]);

		return r;
	};

})(jQuery);

/** *************************** **/
(function () {
	/**
	 * Overlap
	 *
	 * Tells whether or not a given X and Y overlap the given element.
	 *
	 * @param obj element The element to check against.
	 * @param int x The x-coordinate.
	 * @param int y The y-coordinate.
	 * @return boolean
	 */
	$.overlap = function (element, x, y) {
		element = $(element);
		
		// Too far up or left
		if (x < element.offset().left || y < element.offset().top) {
			return false;
		}
		
		// Too far down or right.
		if (x > (element.offset().left + element.width()) || y > (element.offset().top + element.height())) {
			return false;
		}
		
		return true;
	}
})();
/** *************************** **/
/*
 * Thickbox 3 - 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
*/
var tb_pathToImage = "/images/shared/graphics/loadingAnimation.gif";
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('$(o).2S(9(){1u(\'a.18, 3n.18, 3i.18\');1w=1p 1t();1w.L=2H});9 1u(b){$(b).s(9(){6 t=X.Q||X.1v||M;6 a=X.u||X.23;6 g=X.1N||P;19(t,a,g);X.2E();H P})}9 19(d,f,g){3m{3(2t o.v.J.2i==="2g"){$("v","11").r({A:"28%",z:"28%"});$("11").r("22","2Z");3(o.1Y("1F")===M){$("v").q("<U 5=\'1F\'></U><4 5=\'B\'></4><4 5=\'8\'></4>");$("#B").s(G)}}n{3(o.1Y("B")===M){$("v").q("<4 5=\'B\'></4><4 5=\'8\'></4>");$("#B").s(G)}}3(1K()){$("#B").1J("2B")}n{$("#B").1J("2z")}3(d===M){d=""}$("v").q("<4 5=\'K\'><1I L=\'"+1w.L+"\' /></4>");$(\'#K\').2y();6 h;3(f.O("?")!==-1){h=f.3l(0,f.O("?"))}n{h=f}6 i=/\\.2s$|\\.2q$|\\.2m$|\\.2l$|\\.2k$/;6 j=h.1C().2h(i);3(j==\'.2s\'||j==\'.2q\'||j==\'.2m\'||j==\'.2l\'||j==\'.2k\'){1D="";1G="";14="";1z="";1x="";R="";1n="";1r=P;3(g){E=$("a[@1N="+g+"]").36();25(D=0;((D<E.1c)&&(R===""));D++){6 k=E[D].u.1C().2h(i);3(!(E[D].u==f)){3(1r){1z=E[D].Q;1x=E[D].u;R="<1e 5=\'1X\'>&1d;&1d;<a u=\'#\'>2T &2R;</a></1e>"}n{1D=E[D].Q;1G=E[D].u;14="<1e 5=\'1U\'>&1d;&1d;<a u=\'#\'>&2O; 2N</a></1e>"}}n{1r=1b;1n="1t "+(D+1)+" 2L "+(E.1c)}}}S=1p 1t();S.1g=9(){S.1g=M;6 a=2x();6 x=a[0]-1M;6 y=a[1]-1M;6 b=S.z;6 c=S.A;3(b>x){c=c*(x/b);b=x;3(c>y){b=b*(y/c);c=y}}n 3(c>y){b=b*(y/c);c=y;3(b>x){c=c*(x/b);b=x}}13=b+30;1a=c+2G;$("#8").q("<a u=\'\' 5=\'1L\' Q=\'1o\'><1I 5=\'2F\' L=\'"+f+"\' z=\'"+b+"\' A=\'"+c+"\' 23=\'"+d+"\'/></a>"+"<4 5=\'2D\'>"+d+"<4 5=\'2C\'>"+1n+14+R+"</4></4><4 5=\'2A\'><a u=\'#\' 5=\'Z\' Q=\'1o\'>1l</a> 1k 1j 1s</4>");$("#Z").s(G);3(!(14==="")){9 12(){3($(o).N("s",12)){$(o).N("s",12)}$("#8").C();$("v").q("<4 5=\'8\'></4>");19(1D,1G,g);H P}$("#1U").s(12)}3(!(R==="")){9 1i(){$("#8").C();$("v").q("<4 5=\'8\'></4>");19(1z,1x,g);H P}$("#1X").s(1i)}o.1h=9(e){3(e==M){I=2w.2v}n{I=e.2u}3(I==27){G()}n 3(I==3k){3(!(R=="")){o.1h="";1i()}}n 3(I==3j){3(!(14=="")){o.1h="";12()}}};16();$("#K").C();$("#1L").s(G);$("#8").r({Y:"T"})};S.L=f}n{6 l=f.2r(/^[^\\?]+\\??/,\'\');6 m=2p(l);13=(m[\'z\']*1)+30||3h;1a=(m[\'A\']*1)+3g||3f;W=13-30;V=1a-3e;3(f.O(\'2j\')!=-1){1E=f.1B(\'3d\');$("#15").C();3(m[\'1A\']!="1b"){$("#8").q("<4 5=\'2f\'><4 5=\'1H\'>"+d+"</4><4 5=\'2e\'><a u=\'#\' 5=\'Z\' Q=\'1o\'>1l</a> 1k 1j 1s</4></4><U 1W=\'0\' 2d=\'0\' L=\'"+1E[0]+"\' 5=\'15\' 1v=\'15"+1f.2c(1f.1y()*2b)+"\' 1g=\'1m()\' J=\'z:"+(W+29)+"p;A:"+(V+17)+"p;\' > </U>")}n{$("#B").N();$("#8").q("<U 1W=\'0\' 2d=\'0\' L=\'"+1E[0]+"\' 5=\'15\' 1v=\'15"+1f.2c(1f.1y()*2b)+"\' 1g=\'1m()\' J=\'z:"+(W+29)+"p;A:"+(V+17)+"p;\'> </U>")}}n{3($("#8").r("Y")!="T"){3(m[\'1A\']!="1b"){$("#8").q("<4 5=\'2f\'><4 5=\'1H\'>"+d+"</4><4 5=\'2e\'><a u=\'#\' 5=\'Z\'>1l</a> 1k 1j 1s</4></4><4 5=\'F\' J=\'z:"+W+"p;A:"+V+"p\'></4>")}n{$("#B").N();$("#8").q("<4 5=\'F\' 3c=\'3b\' J=\'z:"+W+"p;A:"+V+"p;\'></4>")}}n{$("#F")[0].J.z=W+"p";$("#F")[0].J.A=V+"p";$("#F")[0].3a=0;$("#1H").11(d)}}$("#Z").s(G);3(f.O(\'37\')!=-1){$("#F").q($(\'#\'+m[\'26\']).1T());$("#8").24(9(){$(\'#\'+m[\'26\']).q($("#F").1T())});16();$("#K").C();$("#8").r({Y:"T"})}n 3(f.O(\'2j\')!=-1){16();3($.1q.35){$("#K").C();$("#8").r({Y:"T"})}}n{$("#F").34(f+="&1y="+(1p 33().32()),9(){16();$("#K").C();1u("#F a.18");$("#8").r({Y:"T"})})}}3(!m[\'1A\']){o.21=9(e){3(e==M){I=2w.2v}n{I=e.2u}3(I==27){G()}}}}31(e){}}9 1m(){$("#K").C();$("#8").r({Y:"T"})}9 G(){$("#2Y").N("s");$("#Z").N("s");$("#8").2X("2W",9(){$(\'#8,#B,#1F\').2V("24").N().C()});$("#K").C();3(2t o.v.J.2i=="2g"){$("v","11").r({A:"1Z",z:"1Z"});$("11").r("22","")}o.1h="";o.21="";H P}9 16(){$("#8").r({2U:\'-\'+20((13/2),10)+\'p\',z:13+\'p\'});3(!(1V.1q.2Q&&1V.1q.2P<7)){$("#8").r({38:\'-\'+20((1a/2),10)+\'p\'})}}9 2p(a){6 b={};3(!a){H b}6 c=a.1B(/[;&]/);25(6 i=0;i<c.1c;i++){6 d=c[i].1B(\'=\');3(!d||d.1c!=2){39}6 e=2a(d[0]);6 f=2a(d[1]);f=f.2r(/\\+/g,\' \');b[e]=f}H b}9 2x(){6 a=o.2M;6 w=1S.2o||1R.2o||(a&&a.1Q)||o.v.1Q;6 h=1S.1P||1R.1P||(a&&a.2n)||o.v.2n;1O=[w,h];H 1O}9 1K(){6 a=2K.2J.1C();3(a.O(\'2I\')!=-1&&a.O(\'3o\')!=-1){H 1b}}',62,211,'|||if|div|id|var||TB_window|function||||||||||||||else|document|px|append|css|click||href|body||||width|height|TB_overlay|remove|TB_Counter|TB_TempArray|TB_ajaxContent|tb_remove|return|keycode|style|TB_load|src|null|unbind|indexOf|false|title|TB_NextHTML|imgPreloader|block|iframe|ajaxContentH|ajaxContentW|this|display|TB_closeWindowButton||html|goPrev|TB_WIDTH|TB_PrevHTML|TB_iframeContent|tb_position||thickbox|tb_show|TB_HEIGHT|true|length|nbsp|span|Math|onload|onkeydown|goNext|Esc|or|close|tb_showIframe|TB_imageCount|Close|new|browser|TB_FoundURL|Key|Image|tb_init|name|imgLoader|TB_NextURL|random|TB_NextCaption|modal|split|toLowerCase|TB_PrevCaption|urlNoQuery|TB_HideSelect|TB_PrevURL|TB_ajaxWindowTitle|img|addClass|tb_detectMacXFF|TB_ImageOff|150|rel|arrayPageSize|innerHeight|clientWidth|self|window|children|TB_prev|jQuery|frameborder|TB_next|getElementById|auto|parseInt|onkeyup|overflow|alt|unload|for|inlineId||100||unescape|1000|round|hspace|TB_closeAjaxWindow|TB_title|undefined|match|maxHeight|TB_iframe|bmp|gif|png|clientHeight|innerWidth|tb_parseQuery|jpeg|replace|jpg|typeof|which|keyCode|event|tb_getPageSize|show|TB_overlayBG|TB_closeWindow|TB_overlayMacFFBGHack|TB_secondLine|TB_caption|blur|TB_Image|60|tb_pathToImage|mac|userAgent|navigator|of|documentElement|Prev|lt|version|msie|gt|ready|Next|marginLeft|trigger|fast|fadeOut|TB_imageOff|hidden||catch|getTime|Date|load|safari|get|TB_inline|marginTop|continue|scrollTop|TB_modal|class|TB_|45|440|40|630|input|188|190|substr|try|area|firefox'.split('|'),0,{}))
/** *************************** **/
$(document).ready(function (){

	/**
	 * Home Page Tab Switcher
	 *
	 * Switches the tabs between "Student Success" and "National Standards" on the homepage.
	 */
	
	// Brings focus to the student success tab and contents.
	$('.stusuc-button').click(function () {
		$('#natstd-box').hide();
		$('#stusuc-box').show();
		$('#action-row').removeClass('natstd-box-bg').addClass('stusuc-box-bg');
		return false;
	});

	// Brings focus to the national standards tab and contents.
	$('.natstd-button').click(function () {
		$('#stusuc-box').hide();
		$('#natstd-box').show();
		$('#action-row').removeClass('stusuc-box-bg').addClass('natstd-box-bg');
		return false;
	});
	
	/**
	 * Home Page Thumbnail Slider
	 *
	 * Handles the behavior of the thumbnail slider for Success Stories.
	 */
	(function () {
		var articleThumbnails = $('.slider .article-thumbnail');
		
		if (articleThumbnails.length <= 2) {
			// No need to add animation, they cannot scroll.
			return;
		}
		
		var leftMostIndex = 0;
		
		var leftArrow = $('.slider .left-arrow img');
		var rightArrow = $('.slider .right-arrow img');
		
		// Rotates the thumbnails to show a new one on the left.
		leftArrow.click(function () {
			if ($(this).hasClass('disabled')) {
				return;
			}
			
			$('.slider .slider-content-container').animate({
				left: '+=50px'
			}, 1000);
			
			rightArrow.attr('src', rightArrow.attr('src').replace(/_off\.gif$/, '.gif')).removeClass('disabled');
			
			leftMostIndex--;
			
			if (leftMostIndex == 0) {
				leftArrow.attr('src', leftArrow.attr('src').replace(/\.gif$/, '_off.gif')).addClass('disabled');
			}
		});
		
		// Rotates the thumbnails to show a new one on the right.
		rightArrow.click(function () {
			if ($(this).hasClass('disabled')) {
				return;
			}
			
			$('.slider .slider-content-container').animate({
				left: '-=50px'
			}, 1000);
			
			leftArrow.attr('src', leftArrow.attr('src').replace(/_off\.gif$/, '.gif')).removeClass('disabled');
			
			leftMostIndex++;
			
			if (leftMostIndex == (articleThumbnails.length - 2)) {
				rightArrow.attr('src', rightArrow.attr('src').replace(/\.gif$/, '_off.gif')).addClass('disabled');
			}
		});
		
		$('body').append('<div class="slider-hover"></div>')
		var hoverDisplay = $('body .slider-hover');
		var hoverTemplate = $.template(hoverContent);
		
		/**
		 * Close Hover Display
		 *
		 * This function is used on both the hoverDisplay and the thumbnails so
		 * that if the user leaves either of them and is not on the other, the hover
		 * will close.  Otherwise it will remain open.
		 */
		var closeHoverDisplay = function (e) {
			if ($.overlap(this, e.pageX, e.pageY + 5) || $.overlap(hoverDisplay, e.pageX, e.pageY)) {
				return;
			}
			
			hoverDisplay.hide();
		};
		
		articleThumbnails.hover(
			function () {
				var $this = $(this);
				
				// This fixes an issue with IE6 where items outside the frame would launch a hover
				// display when they shouldn't be able to.
				var offset = $this.offset;
				if (!$.overlap($('#slider-content-frame'), offset.top, offset.left)) {
					return;
				}
				
				var articleId = this.id.replace(/^article\-thumbnail\-/, '');
				var articleInfo = successArticleJson[articleId];
				
				$('.slider-hover').html(hoverTemplate, {
					title: articleInfo.title,
					text: articleInfo.text,
					url: articleInfo.url
				}).css({
					top: $this.offset().top - hoverDisplay.height() - 2,
					left: ($this.offset().left + ($this.width() / 2)) - (hoverDisplay.width() / 2) + 25
				});
				
				hoverDisplay.show();
			},
			closeHoverDisplay
		);
		
		hoverDisplay.hover(null, closeHoverDisplay);
	})();
});

function validateAdmissionForm() {
	if ($('#homeschooled').attr('checked')) {
		MM_validateForm('first_name','','R','email','','R,isEmail','phone','','R','address1','','R','city','','R','state','','R','zip','','R','program_first_choice','','R','interest','','R','how_hear_about','','R','securitycode','','R');
	} else {
		MM_validateForm('first_name','','R','email','','R,isEmail','phone','','R','address1','','R','city','','R','state','','R','zip','','R','current_school','','R','program_first_choice','','R','interest','','R','how_hear_about','','R','securitycode','','R');
	}
	
	return document.MM_returnValue;
}
/** *************************** **/
/**
 * OverlayAjaxSubmit 1.0
 *
 * Submits a form using XHR. Grabs all form-controls
 * with name-attributes and submits to form's action
 * using form's method.  If the submission submitted
 * correctly, we'll get redirected to the appropriate
 * page.  Otherwise, an error will flag.
 *
 * @class ajaxSubmit
 * @param {Object} conf, custom config-object
 */
jQuery.fn.overlayAjaxSubmit = function(conf) {
	var config = {
		loading: 'Saving...',
		callback: function (data) {
			$('#TB_ajaxContent').html(data.body);
		}
	};
	
	config = jQuery.extend(config, conf);

	this.each(function() {
		var form = jQuery(this);

		if(form.is('form')) {
			var method = form.attr('method');
			var action = form.attr('action');
			var submit = jQuery('.clicked:submit', form);
			if (!submit || submit.length == 0) {
				submit = jQuery(':submit', form);
			}
			var data = {};

			jQuery('*[name]', form).each(function(index, element) {
				var t = jQuery(element);
				if (t.attr('type') == 'radio' && t.attr('checked') != true) {
					// Skip it.
					return;
				}

				var isSubmitButton = t.is('button') && t.attr('type') == 'submit';
				var isSubmitInput = t.is('input') && t.attr('type') == 'submit';
				if ((isSubmitButton || isSubmitInput) && !t.hasClass('clicked')) {
					// Skip it.
					return;
				}
				
				var val = (t.attr('type') == 'checkbox') ? (t.attr('checked') == true) ? 1 : 0 : t.val();
				
				data[t.attr('name')] = val;
			});

			var oldValue = submit.val();
			submit.val(config.loading);
			jQuery.ajax({
				type: method,
				url: action,
				data: data,
				dataType: 'json',
				success: function(data) {
					if (typeof data != 'object' || (!data.error && !data.body)) {
						return;
					}
					
					if (data.error) {
						// The form submission was invalid, so we flag the fields and throw up
						// an error message.
						submit.val(oldValue);
						if (!jQuery('#TB_window .error .errorMessage').length) {
							jQuery('#TB_window .error').append('<span class="errorMessage">'+data.error+'</span>');
						} else {
							// There is already an error field.
							jQuery('#TB_window .error .errorMessage').html(data.error);
						}
						
						jQuery('#TB_window .error').show();
						
						// Flag the labels if we need to.
						if (data.invalidFields) {
							form.find('label').highlight(data.invalidFields);
						}
						
						return;
					}
					
					jQuery('#TB_window .error').hide();
					
					// The form submission was valid, so we replace the contents of the
					// overlay with what we received, unless we have specified a different
					// callback method.
					config.callback(data);
				}
			});

			return false;
		}
	});
	
	return false;
};
/** *************************** **/
