/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;





/*
 * jPlayer Plugin for jQuery JavaScript Library
 * http://www.happyworm.com/jquery/jplayer
 *
 * Copyright (c) 2009 - 2010 Happyworm Ltd
 * Dual licensed under the MIT and GPL licenses.
 *  - http://www.opensource.org/licenses/mit-license.php
 *  - http://www.gnu.org/copyleft/gpl.html
 *
 * Author: Mark J Panaghiston
 * Version: 1.2.0
 * Date: 11th July 2010
 */

(function(c){function k(a,b){var d=function(e){e=c[a][e]||[];return typeof e=="string"?e.split(/,?\s+/):e}("getter");return c.inArray(b,d)!=-1}c.fn.jPlayer=function(a){var b=typeof a=="string",d=Array.prototype.slice.call(arguments,1);if(b&&a.substring(0,1)=="_")return this;if(b&&k("jPlayer",a,d)){var e=c.data(this[0],"jPlayer");return e?e[a].apply(e,d):undefined}return this.each(function(){var h=c.data(this,"jPlayer");!h&&!b&&c.data(this,"jPlayer",new c.jPlayer(this,a))._init();h&&b&&c.isFunction(h[a])&&
h[a].apply(h,d)})};c.jPlayer=function(a,b){this.options=c.extend({},b);this.element=c(a)};c.jPlayer.getter="jPlayerOnProgressChange jPlayerOnSoundComplete jPlayerVolume jPlayerReady getData jPlayerController";c.jPlayer.defaults={cssPrefix:"jqjp",swfPath:"js",volume:80,oggSupport:false,nativeSupport:true,preload:"none",customCssIds:false,graphicsFix:true,errorAlerts:false,warningAlerts:false,position:"absolute",width:"0",height:"0",top:"0",left:"0",quality:"high",bgcolor:"#ffffff"};c.jPlayer._config=
{version:"1.2.0",swfVersionRequired:"1.2.0",swfVersion:"unknown",jPlayerControllerId:undefined,delayedCommandId:undefined,isWaitingForPlay:false,isFileSet:false};c.jPlayer._diag={isPlaying:false,src:"",loadPercent:0,playedPercentRelative:0,playedPercentAbsolute:0,playedTime:0,totalTime:0};c.jPlayer._cssId={play:"jplayer_play",pause:"jplayer_pause",stop:"jplayer_stop",loadBar:"jplayer_load_bar",playBar:"jplayer_play_bar",volumeMin:"jplayer_volume_min",volumeMax:"jplayer_volume_max",volumeBar:"jplayer_volume_bar",
volumeBarValue:"jplayer_volume_bar_value"};c.jPlayer.count=0;c.jPlayer.timeFormat={showHour:false,showMin:true,showSec:true,padHour:false,padMin:true,padSec:true,sepHour:":",sepMin:":",sepSec:""};c.jPlayer.convertTime=function(a){var b=new Date(a),d=b.getUTCHours();a=b.getUTCMinutes();b=b.getUTCSeconds();d=c.jPlayer.timeFormat.padHour&&d<10?"0"+d:d;a=c.jPlayer.timeFormat.padMin&&a<10?"0"+a:a;b=c.jPlayer.timeFormat.padSec&&b<10?"0"+b:b;return(c.jPlayer.timeFormat.showHour?d+c.jPlayer.timeFormat.sepHour:
"")+(c.jPlayer.timeFormat.showMin?a+c.jPlayer.timeFormat.sepMin:"")+(c.jPlayer.timeFormat.showSec?b+c.jPlayer.timeFormat.sepSec:"")};c.jPlayer.prototype={_init:function(){var a=this,b=this.element;this.config=c.extend({},c.jPlayer.defaults,this.options,c.jPlayer._config);this.config.diag=c.extend({},c.jPlayer._diag);this.config.cssId={};this.config.cssSelector={};this.config.cssDisplay={};this.config.clickHandler={};this.element.data("jPlayer.config",this.config);c.extend(this.config,{id:this.element.attr("id"),
swf:this.config.swfPath+(this.config.swfPath!=""&&this.config.swfPath.slice(-1)!="/"?"/":"")+"Jplayer.swf",fid:this.config.cssPrefix+"_flash_"+c.jPlayer.count,aid:this.config.cssPrefix+"_audio_"+c.jPlayer.count,hid:this.config.cssPrefix+"_force_"+c.jPlayer.count,i:c.jPlayer.count,volume:this._limitValue(this.config.volume,0,100),autobuffer:this.config.preload!="none"});c.jPlayer.count++;if(this.config.ready!=undefined)if(c.isFunction(this.config.ready))this.jPlayerReadyCustom=this.config.ready;else this._warning("Constructor's ready option is not a function.");
this.config.audio=document.createElement("audio");this.config.audio.id=this.config.aid;c.extend(this.config,{canPlayMP3:!!(this.config.audio.canPlayType?""!=this.config.audio.canPlayType("audio/mpeg")&&"no"!=this.config.audio.canPlayType("audio/mpeg"):false),canPlayOGG:!!(this.config.audio.canPlayType?""!=this.config.audio.canPlayType("audio/ogg")&&"no"!=this.config.audio.canPlayType("audio/ogg"):false),aSel:c("#"+this.config.aid)});c.extend(this.config,{html5:!!(this.config.oggSupport?this.config.canPlayOGG?
true:this.config.canPlayMP3:this.config.canPlayMP3)});c.extend(this.config,{usingFlash:!(this.config.html5&&this.config.nativeSupport),usingMP3:!(this.config.oggSupport&&this.config.canPlayOGG&&this.config.nativeSupport)});var d={setButtons:function(g,f){a.config.diag.isPlaying=f;if(a.config.cssId.play!=undefined&&a.config.cssId.pause!=undefined)if(f){a.config.cssSelector.play.css("display","none");a.config.cssSelector.pause.css("display",a.config.cssDisplay.pause)}else{a.config.cssSelector.play.css("display",
a.config.cssDisplay.play);a.config.cssSelector.pause.css("display","none")}if(f)a.config.isWaitingForPlay=false}},e={setFile:function(g,f){try{a._getMovie().fl_setFile_mp3(f);a.config.autobuffer&&b.trigger("jPlayer.load");a.config.diag.src=f;a.config.isFileSet=true;b.trigger("jPlayer.setButtons",false)}catch(j){a._flashError(j)}},clearFile:function(){try{b.trigger("jPlayer.setButtons",false);a._getMovie().fl_clearFile_mp3();a.config.diag.src="";a.config.isFileSet=false}catch(g){a._flashError(g)}},
load:function(){try{a._getMovie().fl_load_mp3()}catch(g){a._flashError(g)}},play:function(){try{a._getMovie().fl_play_mp3()&&b.trigger("jPlayer.setButtons",true)}catch(g){a._flashError(g)}},pause:function(){try{a._getMovie().fl_pause_mp3()&&b.trigger("jPlayer.setButtons",false)}catch(g){a._flashError(g)}},stop:function(){try{a._getMovie().fl_stop_mp3()&&b.trigger("jPlayer.setButtons",false)}catch(g){a._flashError(g)}},playHead:function(g,f){try{a._getMovie().fl_play_head_mp3(f)&&b.trigger("jPlayer.setButtons",
true)}catch(j){a._flashError(j)}},playHeadTime:function(g,f){try{a._getMovie().fl_play_head_time_mp3(f)&&b.trigger("jPlayer.setButtons",true)}catch(j){a._flashError(j)}},volume:function(g,f){a.config.volume=f;try{a._getMovie().fl_volume_mp3(f)}catch(j){a._flashError(j)}}},h={setFile:function(g,f,j){a.config.diag.src=a.config.usingMP3?f:j;a.config.isFileSet&&!a.config.isWaitingForPlay&&b.trigger("jPlayer.pause");a.config.audio.autobuffer=a.config.autobuffer;a.config.audio.preload=a.config.preload;
if(a.config.autobuffer){a.config.audio.src=a.config.diag.src;a.config.audio.load()}else a.config.isWaitingForPlay=true;a.config.isFileSet=true;a.jPlayerOnProgressChange(0,0,0,0,0);clearInterval(a.config.jPlayerControllerId);if(a.config.autobuffer)a.config.jPlayerControllerId=window.setInterval(function(){a.jPlayerController(false)},100);clearInterval(a.config.delayedCommandId)},clearFile:function(){a.setFile("","");a.config.isWaitingForPlay=false;a.config.isFileSet=false},load:function(){if(a.config.isFileSet)if(a.config.isWaitingForPlay){a.config.audio.autobuffer=
true;a.config.audio.preload="auto";a.config.audio.src=a.config.diag.src;a.config.audio.load();a.config.isWaitingForPlay=false;clearInterval(a.config.jPlayerControllerId);a.config.jPlayerControllerId=window.setInterval(function(){a.jPlayerController(false)},100)}},play:function(){if(a.config.isFileSet){if(a.config.isWaitingForPlay){a.config.audio.src=a.config.diag.src;a.config.audio.load()}a.config.audio.play();b.trigger("jPlayer.setButtons",true);clearInterval(a.config.jPlayerControllerId);a.config.jPlayerControllerId=
window.setInterval(function(){a.jPlayerController(false)},100);clearInterval(a.config.delayedCommandId)}},pause:function(){if(a.config.isFileSet){a.config.audio.pause();b.trigger("jPlayer.setButtons",false);clearInterval(a.config.delayedCommandId)}},stop:function(){if(a.config.isFileSet)try{b.trigger("jPlayer.pause");a.config.audio.currentTime=0;clearInterval(a.config.jPlayerControllerId);a.config.jPlayerControllerId=window.setInterval(function(){a.jPlayerController(true)},100)}catch(g){clearInterval(a.config.delayedCommandId);
a.config.delayedCommandId=window.setTimeout(function(){a.stop()},100)}},playHead:function(g,f){if(a.config.isFileSet)try{b.trigger("jPlayer.load");if(typeof a.config.audio.buffered=="object"&&a.config.audio.buffered.length>0)a.config.audio.currentTime=f*a.config.audio.buffered.end(a.config.audio.buffered.length-1)/100;else if(a.config.audio.duration>0&&!isNaN(a.config.audio.duration))a.config.audio.currentTime=f*a.config.audio.duration/100;else throw"e";b.trigger("jPlayer.play")}catch(j){b.trigger("jPlayer.play");
b.trigger("jPlayer.pause");a.config.delayedCommandId=window.setTimeout(function(){a.playHead(f)},100)}},playHeadTime:function(g,f){if(a.config.isFileSet)try{b.trigger("jPlayer.load");a.config.audio.currentTime=f/1E3;b.trigger("jPlayer.play")}catch(j){b.trigger("jPlayer.play");b.trigger("jPlayer.pause");a.config.delayedCommandId=window.setTimeout(function(){a.playHeadTime(f)},100)}},volume:function(g,f){a.config.volume=f;a.config.audio.volume=f/100;a.jPlayerVolume(f)}};this.config.usingFlash?c.extend(d,
e):c.extend(d,h);for(var i in d){e="jPlayer."+i;this.element.unbind(e);this.element.bind(e,d[i])}if(this.config.usingFlash)if(this._checkForFlash(8))if(c.browser.msie){i='<object id="'+this.config.fid+'"';i+=' classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"';i+=' codebase="'+document.URL.substring(0,document.URL.indexOf(":"))+'://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab"';i+=' type="application/x-shockwave-flash"';i+=' width="'+this.config.width+'" height="'+this.config.height+
'">';i+="</object>";d=[];d[0]='<param name="movie" value="'+this.config.swf+'" />';d[1]='<param name="quality" value="high" />';d[2]='<param name="FlashVars" value="id='+escape(this.config.id)+"&fid="+escape(this.config.fid)+"&vol="+this.config.volume+'" />';d[3]='<param name="allowScriptAccess" value="always" />';d[4]='<param name="bgcolor" value="'+this.config.bgcolor+'" />';i=document.createElement(i);for(e=0;e<d.length;e++)i.appendChild(document.createElement(d[e]));this.element.html(i)}else{d=
'<embed name="'+this.config.fid+'" id="'+this.config.fid+'" src="'+this.config.swf+'"';d+=' width="'+this.config.width+'" height="'+this.config.height+'" bgcolor="'+this.config.bgcolor+'"';d+=' quality="high" FlashVars="id='+escape(this.config.id)+"&fid="+escape(this.config.fid)+"&vol="+this.config.volume+'"';d+=' allowScriptAccess="always"';d+=' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';this.element.html(d)}else this.element.html("<p>Flash 8 or above is not installed. <a href='http://get.adobe.com/flashplayer'>Get Flash!</a></p>");
else{this.config.audio.autobuffer=this.config.autobuffer;this.config.audio.preload=this.config.preload;this.config.audio.addEventListener("canplay",function(){var g=0.1*Math.random();a.config.audio.volume=(a.config.volume+(a.config.volume<50?g:-g))/100},false);this.config.audio.addEventListener("ended",function(){clearInterval(a.config.jPlayerControllerId);a.jPlayerOnSoundComplete()},false);this.element.append(this.config.audio)}this.element.css({position:this.config.position,top:this.config.top,
left:this.config.left});if(this.config.graphicsFix){this.element.append('<div id="'+this.config.hid+'"></div>');c.extend(this.config,{hSel:c("#"+this.config.hid)});this.config.hSel.css({"text-indent":"-9999px"})}this.config.customCssIds||c.each(c.jPlayer._cssId,function(g,f){a.cssId(g,f)});if(!this.config.usingFlash){this.element.css({left:"-9999px"});window.setTimeout(function(){a.volume(a.config.volume);a.jPlayerReady()},100)}},jPlayerReady:function(a){if(this.config.usingFlash){this.config.swfVersion=
a;this.config.swfVersionRequired!=this.config.swfVersion&&this._error("jPlayer's JavaScript / SWF version mismatch!\n\nJavaScript requires SWF : "+this.config.swfVersionRequired+"\nThe Jplayer.swf used is : "+this.config.swfVersion)}else this.config.swfVersion="n/a";this.jPlayerReadyCustom()},jPlayerReadyCustom:function(){},setFile:function(a,b){this.element.trigger("jPlayer.setFile",[a,b])},clearFile:function(){this.element.trigger("jPlayer.clearFile")},load:function(){this.element.trigger("jPlayer.load")},
play:function(){this.element.trigger("jPlayer.play")},pause:function(){this.element.trigger("jPlayer.pause")},stop:function(){this.element.trigger("jPlayer.stop")},playHead:function(a){this.element.trigger("jPlayer.playHead",[a])},playHeadTime:function(a){this.element.trigger("jPlayer.playHeadTime",[a])},volume:function(a){a=this._limitValue(a,0,100);this.element.trigger("jPlayer.volume",[a])},cssId:function(a,b){var d=this;if(typeof b=="string")if(c.jPlayer._cssId[a]){this.config.cssId[a]!=undefined&&
this.config.cssSelector[a].unbind("click",this.config.clickHandler[a]);this.config.cssId[a]=b;this.config.cssSelector[a]=c("#"+b);this.config.clickHandler[a]=function(h){d[a](h);c(this).blur();return false};this.config.cssSelector[a].click(this.config.clickHandler[a]);var e=this.config.cssSelector[a].css("display");if(a=="play")this.config.cssDisplay.pause=e;if(!(a=="pause"&&e=="none")){this.config.cssDisplay[a]=e;a=="pause"&&this.config.cssSelector[a].css("display","none")}}else this._warning("Unknown/Illegal function in cssId\n\njPlayer('cssId', '"+
a+"', '"+b+"')");else this._warning("cssId CSS Id must be a string\n\njPlayer('cssId', '"+a+"', "+b+")")},loadBar:function(a){if(this.config.cssId.loadBar!=undefined){var b=this.config.cssSelector.loadBar.offset();a=a.pageX-b.left;b=this.config.cssSelector.loadBar.width();this.playHead(100*a/b)}},playBar:function(a){this.loadBar(a)},onProgressChange:function(a){if(c.isFunction(a))this.onProgressChangeCustom=a;else this._warning("onProgressChange parameter is not a function.")},onProgressChangeCustom:function(){},
jPlayerOnProgressChange:function(a,b,d,e,h){this.config.diag.loadPercent=a;this.config.diag.playedPercentRelative=b;this.config.diag.playedPercentAbsolute=d;this.config.diag.playedTime=e;this.config.diag.totalTime=h;this.config.cssId.loadBar!=undefined&&this.config.cssSelector.loadBar.width(a+"%");this.config.cssId.playBar!=undefined&&this.config.cssSelector.playBar.width(b+"%");this.onProgressChangeCustom(a,b,d,e,h);this._forceUpdate()},jPlayerController:function(a){var b=0,d=0,e=0,h=0,i=0;if(this.config.audio.readyState>=
1){b=this.config.audio.currentTime*1E3;d=this.config.audio.duration*1E3;d=isNaN(d)?0:d;e=d>0?100*b/d:0;if(typeof this.config.audio.buffered=="object"&&this.config.audio.buffered.length>0){h=100*this.config.audio.buffered.end(this.config.audio.buffered.length-1)/this.config.audio.duration;i=100*this.config.audio.currentTime/this.config.audio.buffered.end(this.config.audio.buffered.length-1)}else{h=100;i=e}}!this.config.diag.isPlaying&&h>=100&&clearInterval(this.config.jPlayerControllerId);a?this.jPlayerOnProgressChange(h,
0,0,0,d):this.jPlayerOnProgressChange(h,i,e,b,d)},volumeMin:function(){this.volume(0)},volumeMax:function(){this.volume(100)},volumeBar:function(a){if(this.config.cssId.volumeBar!=undefined){var b=this.config.cssSelector.volumeBar.offset();a=a.pageX-b.left;b=this.config.cssSelector.volumeBar.width();this.volume(100*a/b)}},volumeBarValue:function(a){this.volumeBar(a)},jPlayerVolume:function(a){if(this.config.cssId.volumeBarValue!=null){this.config.cssSelector.volumeBarValue.width(a+"%");this._forceUpdate()}},
onSoundComplete:function(a){if(c.isFunction(a))this.onSoundCompleteCustom=a;else this._warning("onSoundComplete parameter is not a function.")},onSoundCompleteCustom:function(){},jPlayerOnSoundComplete:function(){this.element.trigger("jPlayer.setButtons",false);this.onSoundCompleteCustom()},getData:function(a){for(var b=a.split("."),d=this.config,e=0;e<b.length;e++)if(d[b[e]]!=undefined)d=d[b[e]];else{this._warning("Undefined data requested.\n\njPlayer('getData', '"+a+"')");return}return d},_getMovie:function(){return document[this.config.fid]},
_checkForFlash:function(a){var b=false,d;if(window.ActiveXObject)try{new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+a);b=true}catch(e){}else if(navigator.plugins&&navigator.mimeTypes.length>0)if(d=navigator.plugins["Shockwave Flash"])if(navigator.plugins["Shockwave Flash"].description.replace(/.*\s(\d+\.\d+).*/,"$1")>=a)b=true;return b},_forceUpdate:function(){this.config.graphicsFix&&this.config.hSel.text(""+Math.random())},_limitValue:function(a,b,d){return a<b?b:a>d?d:a},_flashError:function(a){this._error("Problem with Flash component.\n\nCheck the swfPath points at the Jplayer.swf path.\n\nswfPath = "+
this.config.swfPath+"\nurl: "+this.config.swf+"\n\nError: "+a.message)},_error:function(a){this.config.errorAlerts&&this._alert("Error!\n\n"+a)},_warning:function(a){this.config.warningAlerts&&this._alert("Warning!\n\n"+a)},_alert:function(a){alert("jPlayer "+this.config.version+" : id='"+this.config.id+"' : "+a)}}})(jQuery);







/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());






/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * HTF Gothamª © 2000 The Hoefler Type Foundry, Inc. Info: www.typography.com
 */
Cufon.registerFont({"w":241,"face":{"font-family":"Gotham","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-9 -287 389 59.2312","underline-thickness":"7.2","underline-position":"-47.88","stemh":"40","stemv":"44","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":108},"!":{"d":"29,-252r51,0r-13,172r-25,0xm78,0r-47,0r0,-49r47,0r0,49","w":108},"\"":{"d":"100,-144r9,-108v15,2,38,-4,49,2r-35,106r-23,0xm22,-144r8,-108v15,2,38,-4,49,2r-35,106r-22,0","w":175},"#":{"d":"238,-158r-39,0r-10,63r36,0r0,37r-43,0r-10,58r-38,0r10,-58r-59,0r-10,58r-39,0r10,-58r-32,0r0,-37r39,0r10,-63r-36,0r0,-37r43,0r10,-57r38,0r-10,57r59,0r10,-57r38,0r-9,57r32,0r0,37xm161,-158r-59,0r-11,63r59,0","w":252},"$":{"d":"211,-70v0,40,-31,66,-77,70r0,35r-31,0r0,-36v-31,-4,-61,-16,-85,-35r23,-33v21,17,40,27,63,31r0,-71v-53,-14,-77,-33,-77,-74v0,-39,31,-65,76,-69r0,-21r31,0r0,22v26,3,48,12,68,27r-21,34v-16,-12,-32,-19,-49,-23r0,68v55,14,79,36,79,75xm104,-152r0,-64v-45,6,-50,54,0,64xm132,-37v47,-5,51,-56,0,-65r0,65","w":231},"%":{"d":"136,-191v0,35,-24,65,-60,65v-35,0,-59,-29,-59,-64v0,-35,24,-65,60,-65v35,0,59,29,59,64xm263,-252r-185,252r-35,0r184,-252r36,0xm288,-62v0,35,-23,65,-59,65v-35,0,-59,-29,-59,-64v0,-35,23,-65,59,-65v35,0,59,29,59,64xm104,-190v0,-21,-12,-37,-28,-37v-17,0,-27,16,-27,36v0,21,12,37,28,37v17,0,27,-16,27,-36xm256,-61v0,-21,-11,-37,-27,-37v-17,0,-27,16,-27,36v0,21,11,37,27,37v17,0,27,-16,27,-36","w":305},"&":{"d":"240,-18r-33,23r-33,-34v-44,53,-162,41,-160,-40v0,-33,19,-56,54,-71v-41,-46,-20,-115,51,-116v40,0,67,26,67,61v0,33,-22,53,-55,66r43,44v10,-14,19,-31,27,-49r33,18v-10,20,-21,39,-34,57xm147,-193v0,-18,-12,-28,-29,-28v-37,0,-39,46,-11,68v26,-9,40,-21,40,-40xm148,-55r-56,-57v-48,15,-42,78,9,79v17,0,33,-8,47,-22","w":250},"'":{"d":"22,-144r8,-108v16,2,38,-4,50,2r-35,106r-23,0","w":96},"(":{"d":"141,-228v-101,59,-100,191,0,250r-19,29v-132,-63,-132,-246,0,-308","w":158},")":{"d":"17,-228r19,-29v132,63,133,246,0,308r-19,-29v102,-59,101,-191,0,-250","w":158},"*":{"d":"134,-177r-13,22r-36,-26r5,43r-25,0r5,-43r-36,26r-13,-22r41,-18r-41,-18r13,-22r36,26r-5,-44r25,0r-5,44r36,-26r13,22r-41,18","w":154},"+":{"d":"95,-147r0,-68r41,0r0,68r69,0r0,40r-69,0r0,69r-41,0r0,-69r-69,0r0,-40r69,0","w":230},",":{"d":"12,34v22,-4,33,-16,31,-34r-19,0r0,-49r48,0v4,56,-3,101,-55,101","w":96},"-":{"d":"127,-89r-107,0r0,-43r107,0r0,43","w":146},".":{"d":"72,0r-48,0r0,-49r48,0r0,49","w":96},"\/":{"d":"154,-287r38,0r-163,333r-38,0","w":187},"0":{"d":"240,-126v0,72,-44,130,-110,130v-66,0,-109,-58,-109,-130v0,-72,44,-130,110,-130v66,0,109,58,109,130xm194,-126v0,-50,-25,-90,-64,-90v-39,0,-64,40,-64,90v0,50,26,90,65,90v39,0,63,-40,63,-90","w":260},"1":{"d":"9,-232v32,-8,56,-25,99,-22r0,254r-44,0r0,-209r-45,13","w":142},"2":{"d":"111,-216v-23,0,-39,13,-58,38r-32,-25v24,-34,48,-53,93,-53v50,0,83,31,83,76v0,58,-77,104,-117,141r120,0r0,39r-182,0r0,-35r86,-74v35,-29,48,-45,48,-68v0,-25,-18,-39,-41,-39","w":220},"3":{"d":"139,-213r-109,0r0,-39r166,0r0,33r-70,72v39,5,74,24,74,71v0,47,-36,80,-88,80v-44,0,-76,-18,-97,-44r31,-29v18,21,39,33,67,33v25,0,43,-15,43,-38v0,-31,-36,-42,-78,-39r-7,-28","w":222},"4":{"d":"153,-254r38,0r0,161r36,0r0,36r-36,0r0,57r-43,0r0,-57r-127,0r-8,-31xm148,-93r0,-100r-82,100r82,0","w":245},"5":{"d":"34,-129r7,-123r151,0r0,39r-113,0r-4,59v59,-20,128,4,128,73v0,95,-138,108,-186,47r27,-32v31,39,111,45,115,-14v3,-45,-67,-50,-99,-31","w":223},"6":{"d":"121,4v-72,0,-100,-39,-100,-123v0,-77,37,-137,108,-137v33,0,55,10,77,28r-24,34v-47,-44,-117,-18,-115,58v39,-47,148,-24,148,54v0,51,-41,86,-94,86xm171,-80v0,-26,-21,-44,-52,-44v-31,0,-51,20,-51,44v0,26,20,46,52,46v31,0,51,-20,51,-46","w":236},"7":{"d":"24,-213r0,-39r178,0r0,33r-114,219r-50,0r113,-213r-127,0","w":219},"8":{"d":"164,-131v84,33,42,135,-51,135v-55,0,-96,-29,-96,-73v0,-31,18,-50,46,-62v-66,-30,-35,-125,50,-125v84,0,119,94,51,125xm158,-183v0,-20,-18,-36,-45,-36v-27,0,-45,17,-45,36v0,22,19,38,45,38v26,0,45,-16,45,-38xm166,-72v0,-23,-23,-38,-53,-38v-30,0,-53,15,-53,38v0,21,20,39,53,39v33,0,53,-18,53,-39","w":226},"9":{"d":"115,-256v72,0,101,41,101,123v0,81,-40,137,-108,137v-35,0,-60,-12,-81,-30r24,-34v47,47,121,22,119,-55v-40,51,-149,21,-149,-54v0,-50,38,-87,94,-87xm168,-171v0,-27,-20,-47,-52,-47v-31,0,-50,21,-50,47v0,27,20,45,51,45v32,0,51,-20,51,-45","w":236},":":{"d":"74,-141r-48,0r0,-49r48,0r0,49xm74,0r-48,0r0,-49r48,0r0,49","w":100},";":{"d":"74,-141r-48,0r0,-49r48,0r0,49xm14,34v22,-4,33,-16,31,-34r-19,0r0,-49r48,0v4,56,-3,101,-55,101","w":100},"<":{"d":"25,-146r172,-80r0,42r-129,57r129,58r0,41r-172,-79r0,-39","w":230},"=":{"d":"31,-192r168,0r0,40r-168,0r0,-40xm31,-102r168,0r0,40r-168,0r0,-40","w":230},">":{"d":"205,-107r-172,79r0,-41r129,-57r-129,-58r0,-42r172,80r0,39","w":230},"?":{"d":"67,-138v39,-7,71,-15,69,-42v-4,-49,-78,-41,-100,-6r-27,-29v36,-59,171,-53,171,33v0,46,-33,66,-73,73r-3,29r-29,0xm112,0r-48,0r0,-49r48,0r0,49","w":194},"@":{"d":"334,-114v0,90,-86,113,-123,65v-34,43,-121,28,-121,-43v0,-76,93,-120,132,-64r4,-21r35,5r-17,106v0,15,10,26,28,26v26,0,47,-25,47,-74v0,-66,-60,-129,-142,-129v-82,0,-144,65,-144,144v0,80,61,144,147,144v36,0,62,-8,89,-24r6,10v-28,17,-58,27,-95,27v-92,0,-161,-71,-161,-157v0,-86,70,-157,158,-157v88,0,157,67,157,142xm165,-55v49,0,73,-96,11,-96v-26,0,-50,25,-50,57v0,25,17,39,39,39","w":352},"A":{"d":"163,-254r111,254r-47,0r-26,-61r-119,0r-26,61r-45,0r111,-254r41,0xm185,-100r-44,-101r-43,101r87,0","w":284},"B":{"d":"32,-252v81,1,196,-15,196,64v0,31,-17,47,-36,57v30,10,50,27,50,62v0,84,-123,69,-210,69r0,-252xm76,-146v44,-1,108,9,108,-34v0,-42,-65,-32,-108,-33r0,67xm76,-39v48,-2,122,12,122,-35v0,-44,-76,-33,-122,-34r0,69","w":259},"C":{"d":"252,-40v-26,27,-56,44,-103,44v-73,0,-128,-57,-128,-130v0,-72,54,-130,130,-130v46,0,75,16,99,39r-29,33v-49,-60,-153,-28,-153,58v0,50,35,90,83,90v31,0,50,-13,72,-33","w":265},"D":{"d":"260,-126v0,71,-55,126,-134,126r-94,0r0,-252r94,0v79,0,134,55,134,126xm214,-126v0,-68,-58,-95,-137,-86r0,172v79,8,137,-17,137,-86","w":281},"E":{"d":"219,-252r0,40r-142,0r0,65r126,0r0,40r-126,0r0,67r144,0r0,40r-189,0r0,-252r187,0"},"F":{"d":"220,-252r0,40r-143,0r0,69r127,0r0,40r-127,0r0,103r-45,0r0,-252r188,0","w":236},"G":{"d":"257,-35v-25,21,-60,39,-105,39v-79,0,-131,-56,-131,-130v0,-71,54,-130,130,-130v44,0,71,12,97,34r-28,33v-19,-17,-39,-27,-71,-27v-46,0,-81,41,-81,90v0,79,89,115,146,71r0,-47r-64,0r0,-39r107,0r0,106","w":282},"H":{"d":"197,-106r-120,0r0,106r-45,0r0,-252r45,0r0,105r120,0r0,-105r44,0r0,252r-44,0r0,-106","w":273},"I":{"d":"35,-252r44,0r0,252r-44,0r0,-252","w":114},"J":{"d":"173,-86v9,104,-128,112,-165,49r29,-30v24,41,91,44,90,-20r0,-165r46,0r0,166","w":201},"K":{"d":"146,-144r110,144r-54,0r-86,-113r-39,40r0,73r-45,0r0,-252r45,0r0,127r120,-127r54,0","w":261},"L":{"d":"32,0r0,-252r45,0r0,212r132,0r0,40r-177,0","w":222},"M":{"d":"236,-181r-81,119r-79,-118r0,180r-44,0r0,-252r48,0r76,119r77,-119r47,0r0,252r-44,0r0,-181","w":312},"N":{"d":"208,-78r0,-174r44,0r0,252r-37,0r-139,-179r0,179r-44,0r0,-252r41,0","w":284},"O":{"d":"285,-126v0,71,-55,130,-132,130v-77,0,-132,-59,-132,-130v0,-71,55,-130,132,-130v77,0,132,59,132,130xm238,-126v0,-49,-35,-90,-85,-90v-50,0,-85,41,-85,90v0,49,35,90,85,90v50,0,85,-41,85,-90","w":306},"P":{"d":"228,-167v-1,75,-70,92,-151,86r0,81r-45,0r0,-252r100,0v59,0,96,34,96,85xm183,-166v0,-49,-55,-48,-106,-46r0,91v50,3,106,1,106,-45","w":240},"Q":{"d":"259,-49r29,25r-28,32r-31,-27v-84,60,-208,-6,-208,-107v0,-71,55,-130,132,-130v109,0,169,125,106,207xm197,-49r-44,-36r29,-33r43,40v35,-57,-4,-138,-72,-138v-50,0,-85,41,-85,90v0,66,72,114,129,77","w":306},"R":{"d":"246,0r-52,0r-62,-88r-55,0r0,88r-45,0r0,-252r113,0v58,0,93,31,93,80v0,42,-25,67,-60,77xm193,-170v0,-51,-65,-42,-116,-42r0,85v51,1,116,6,116,-43","w":260},"S":{"d":"70,-186v0,20,12,28,60,40v53,13,81,32,81,74v0,95,-144,93,-196,35r27,-31v24,21,49,32,80,32v27,0,44,-13,44,-32v0,-18,-10,-28,-57,-39v-54,-13,-83,-28,-83,-75v0,-84,128,-93,177,-42r-24,34v-23,-17,-45,-26,-68,-26v-26,0,-41,13,-41,30","w":230},"T":{"d":"139,-211r0,211r-45,0r0,-211r-80,0r0,-41r205,0r0,41r-80,0","w":233},"U":{"d":"244,-252r0,143v0,75,-42,113,-108,113v-66,0,-108,-38,-108,-111r0,-145r45,0v5,84,-27,215,63,215v39,0,64,-24,64,-70r0,-145r44,0","w":272},"V":{"d":"136,-58r75,-194r48,0r-105,254r-38,0r-105,-254r49,0","w":270},"W":{"d":"121,-65r62,-188r37,0r62,188r60,-187r47,0r-88,254r-38,0r-62,-181r-62,181r-38,0r-88,-254r48,0","w":401},"X":{"d":"249,0r-52,0r-66,-95r-67,95r-51,0r92,-128r-88,-124r52,0r63,90r63,-90r51,0r-88,123","w":262},"Y":{"d":"151,-100r0,100r-44,0r0,-99r-101,-153r53,0r70,112r72,-112r50,0","w":257},"Z":{"d":"172,-213r-144,0r0,-39r202,0r0,33r-149,180r149,0r0,39r-207,0r0,-33","w":252},"[":{"d":"142,-252r0,34r-69,0r0,231r69,0r0,34r-110,0r0,-299r110,0","w":163},"\\":{"d":"34,-287r163,333r-38,0r-163,-333r38,0","w":187},"]":{"d":"21,-252r111,0r0,299r-111,0r0,-34r69,0r0,-231r-69,0r0,-34","w":163},"^":{"d":"90,-225r-37,48r-33,0r55,-75r30,0r55,75r-34,0","w":180},"_":{"d":"-1,24r218,0r0,34r-218,0r0,-34","w":216},"`":{"d":"89,-214r-44,-42r39,-17r38,59r-33,0","w":180},"a":{"d":"187,0r-43,0r0,-23v-28,42,-130,36,-130,-32v0,-61,79,-73,130,-54v6,-53,-66,-52,-101,-33r-12,-35v21,-9,41,-16,72,-16v56,0,84,29,84,80r0,113xm94,-29v33,-1,55,-18,51,-52v-26,-11,-87,-13,-87,24v0,18,15,28,36,28","w":211},"b":{"d":"224,-95v0,97,-111,129,-153,65r0,30r-44,0r0,-263r44,0r0,105v41,-66,153,-35,153,63xm180,-95v0,-37,-25,-61,-55,-61v-30,0,-55,24,-55,61v0,37,25,61,55,61v30,0,55,-23,55,-61"},"c":{"d":"193,-31v-19,21,-41,35,-78,35v-57,0,-98,-44,-98,-98v0,-54,42,-100,99,-100v36,0,58,14,76,33r-27,29v-30,-43,-105,-23,-105,37v0,60,75,82,107,38","w":205},"d":{"d":"214,0r-43,0r0,-32v-41,66,-153,35,-153,-63v0,-97,109,-128,153,-66r0,-102r43,0r0,263xm171,-95v0,-37,-26,-61,-55,-61v-30,0,-54,23,-54,61v0,37,24,61,54,61v29,0,55,-24,55,-61"},"e":{"d":"60,-80v7,55,75,63,107,26r25,23v-49,66,-175,33,-175,-64v0,-55,39,-99,93,-99v63,1,96,53,90,114r-140,0xm60,-108r98,0v-3,-28,-20,-50,-49,-50v-27,0,-45,20,-49,50","w":217},"f":{"d":"80,-189r50,0r0,36r-49,0r0,153r-44,0r0,-153r-24,0r0,-36r24,0v-9,-65,40,-88,94,-71r0,37v-27,-11,-58,-5,-51,34","w":135},"g":{"d":"214,-39v10,104,-117,117,-187,75r16,-33v46,34,143,29,128,-53v-41,62,-153,37,-153,-54v0,-91,111,-116,153,-58r0,-28r43,0r0,151xm171,-104v0,-32,-25,-53,-55,-53v-30,0,-54,20,-54,52v0,32,24,53,54,53v30,0,55,-21,55,-52"},"h":{"d":"114,-154v-62,0,-39,95,-43,154r-44,0r0,-263r44,0r0,102v27,-54,127,-38,127,40r0,121r-44,0v-6,-57,22,-154,-40,-154","w":223},"i":{"d":"75,-219r-47,0r0,-42r47,0r0,42xm73,0r-43,0r0,-190r43,0r0,190","w":102},"j":{"d":"75,-219r-47,0r0,-42r47,0r0,42xm30,-190r43,0r0,193v2,47,-32,62,-76,54r0,-35v18,3,33,0,33,-22r0,-190","w":102},"k":{"d":"127,-113r78,113r-50,0r-57,-82r-27,28r0,54r-44,0r0,-263r44,0r0,157r79,-84r53,0","w":209},"l":{"d":"73,0r-43,0r0,-263r43,0r0,263","w":102},"m":{"d":"185,-161v33,-53,131,-42,131,40r0,121r-43,0v-5,-57,20,-154,-39,-154v-59,0,-35,97,-40,154r-44,0v-5,-56,21,-154,-38,-154v-60,-1,-37,96,-41,154r-44,0r0,-190r44,0r0,29v17,-39,98,-45,114,0","w":342},"n":{"d":"114,-154v-62,0,-39,95,-43,154r-44,0r0,-190r44,0r0,29v27,-54,127,-38,127,40r0,121r-44,0v-6,-57,22,-154,-40,-154","w":223},"o":{"d":"220,-95v0,54,-43,99,-102,99v-58,0,-101,-44,-101,-98v0,-55,43,-100,101,-100v58,0,102,44,102,99xm176,-94v0,-34,-24,-62,-58,-62v-35,0,-58,28,-58,61v0,34,24,62,58,62v35,0,58,-28,58,-61","w":236},"p":{"d":"224,-95v0,97,-111,129,-153,65r0,88r-44,0r0,-248r44,0r0,32v41,-66,153,-35,153,63xm180,-95v0,-37,-25,-61,-55,-61v-30,0,-55,24,-55,61v0,37,25,61,55,61v30,0,55,-23,55,-61"},"q":{"d":"214,58r-43,0r0,-90v-41,66,-153,35,-153,-63v0,-97,109,-128,153,-66r0,-29r43,0r0,248xm171,-95v0,-37,-26,-61,-55,-61v-30,0,-54,23,-54,61v0,37,24,61,54,61v29,0,55,-24,55,-61"},"r":{"d":"71,-72r0,72r-44,0r0,-190r44,0r0,43v12,-28,34,-48,67,-47v-2,14,4,36,-2,46v-38,0,-65,26,-65,76","w":148},"s":{"d":"163,-57v-1,77,-105,73,-151,32r19,-29v21,15,44,23,63,23v19,0,29,-7,29,-21v0,-15,-20,-20,-42,-27v-28,-8,-60,-20,-60,-56v0,-66,94,-71,138,-37r-18,31v-18,-11,-37,-18,-53,-18v-17,0,-27,8,-27,20v0,14,21,20,43,27v28,9,59,21,59,55","w":180},"t":{"d":"80,-153r0,94v-2,29,31,26,50,17r0,36v-39,18,-94,12,-94,-47r0,-100r-24,0r0,-37r24,0r0,-52r44,0r0,52r51,0r0,37r-51,0","w":147},"u":{"d":"109,-36v62,0,39,-95,43,-154r44,0r0,190r-44,0r0,-30v-26,55,-127,39,-127,-39r0,-121r44,0v6,57,-22,154,40,154","w":223},"v":{"d":"107,-50r52,-140r45,0r-77,191r-40,0r-78,-191r47,0","w":214},"w":{"d":"174,-191r42,131r39,-130r43,0r-62,191r-39,0r-42,-130r-43,130r-39,0r-61,-191r44,0r38,130r42,-131r38,0","w":309},"x":{"d":"128,-98r70,98r-48,0r-46,-67r-47,67r-46,0r70,-96r-68,-94r48,0r44,63r44,-63r46,0","w":208},"y":{"d":"204,-190r-75,195v-17,58,-63,65,-108,42r15,-32v22,10,43,13,53,-15r-80,-190r47,0r54,141r49,-141r45,0","w":214},"z":{"d":"129,-154r-106,0r0,-36r161,0r0,30r-110,124r110,0r0,36r-165,0r0,-30","w":201},"{":{"d":"157,-229v-55,16,-48,30,-48,76v0,28,-13,42,-37,50v33,8,36,36,36,76v0,26,6,37,49,49r-7,29v-78,-17,-85,-37,-81,-98v2,-31,-16,-42,-50,-40r0,-33v46,6,49,-22,49,-65v0,-37,16,-60,82,-72","w":175},"|":{"d":"77,46r-35,0r0,-333r35,0r0,333","w":119},"}":{"d":"18,22v55,-15,50,-29,48,-76v0,-28,14,-41,38,-49v-33,-8,-37,-36,-37,-76v0,-26,-6,-38,-49,-50r8,-28v78,17,83,36,81,98v-1,32,16,41,50,39r0,33v-46,-5,-50,21,-50,66v0,37,-15,60,-81,72","w":175},"~":{"d":"157,-131v-8,29,-18,45,-40,45v-32,-1,-59,-33,-72,4r-24,-8v8,-29,19,-45,41,-45v31,1,58,34,71,-3","w":178},"\u00a0":{"w":108}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * HTF Gothamª © 2000 The Hoefler Type Foundry, Inc. Info: www.typography.com
 */
Cufon.registerFont({"w":230,"face":{"font-family":"Gotham","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-10 -287 393 59.223","underline-thickness":"7.2","underline-position":"-47.88","stemh":"50","stemv":"55","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":108},"!":{"d":"26,-252r64,0r-17,166r-30,0xm87,0r-58,0r0,-58r58,0r0,58","w":116},"\"":{"d":"105,-137r7,-115v19,2,45,-4,60,2r-39,113r-28,0xm21,-137r6,-115v19,2,45,-4,60,2r-39,113r-27,0","w":187},"#":{"d":"239,-153r-35,0r-9,53r32,0r0,46r-40,0r-9,54r-48,0r10,-54r-53,0r-9,54r-47,0r9,-54r-27,0r0,-46r35,0r9,-53r-32,0r0,-46r40,0r9,-53r47,0r-9,53r53,0r9,-53r47,0r-9,53r27,0r0,46xm157,-153r-53,0r-9,53r53,0","w":252},"$":{"d":"215,-72v0,40,-31,67,-77,72r0,35r-37,0r0,-36v-31,-4,-61,-16,-85,-34r28,-41v19,15,38,25,59,29r0,-57v-52,-14,-78,-35,-78,-77v0,-40,31,-66,76,-71r0,-21r37,0r0,22v26,4,48,12,67,26r-24,42v-14,-10,-30,-17,-45,-21r0,55v55,15,79,37,79,77xm103,-158r0,-49v-33,6,-35,39,0,49xm136,-45v35,-6,35,-42,0,-51r0,51","w":232},"%":{"d":"139,-191v0,36,-25,65,-62,65v-36,0,-61,-28,-61,-64v0,-36,25,-65,62,-65v36,0,61,28,61,64xm268,-252r-184,252r-43,0r184,-252r43,0xm293,-62v0,36,-24,65,-61,65v-36,0,-61,-28,-61,-64v0,-36,25,-65,62,-65v36,0,60,28,60,64xm101,-190v0,-17,-10,-32,-24,-32v-15,0,-23,14,-23,31v0,17,10,32,24,32v15,0,23,-14,23,-31xm256,-61v0,-17,-10,-32,-24,-32v-15,0,-23,14,-23,31v0,17,10,32,24,32v15,0,23,-14,23,-31","w":309},"&":{"d":"240,-23r-40,28r-29,-29v-47,48,-159,33,-159,-45v0,-32,17,-56,49,-70v-36,-51,-14,-116,59,-117v43,0,71,27,71,63v0,34,-22,55,-53,67r33,33v8,-13,17,-28,25,-43r41,22v-10,18,-21,37,-34,54xm143,-189v0,-15,-10,-24,-24,-24v-31,2,-32,40,-10,57v22,-8,34,-17,34,-33xm140,-56r-49,-49v-36,15,-29,63,12,63v13,0,25,-5,37,-14","w":250},"'":{"d":"21,-137r6,-115v19,2,46,-4,61,2r-39,113r-28,0","w":102},"(":{"d":"145,-221v-93,58,-93,177,0,235r-24,37v-133,-61,-133,-247,0,-308","w":160},")":{"d":"39,-257v133,61,133,247,0,308r-24,-37v95,-58,94,-177,0,-235","w":160},"*":{"d":"136,-176r-15,26r-35,-27r6,43r-29,0r5,-43r-35,27r-15,-26r41,-17r-41,-17r15,-26r35,26r-5,-43r29,0r-6,43r35,-26r15,26r-40,17","w":154},"+":{"d":"90,-152r0,-64r51,0r0,64r65,0r0,50r-65,0r0,65r-51,0r0,-65r-66,0r0,-50r66,0"},",":{"d":"9,36v25,-3,38,-15,36,-36r-23,0r0,-58r59,0v5,66,-4,121,-67,116","w":102},"-":{"d":"129,-85r-111,0r0,-53r111,0r0,53","w":146},".":{"d":"81,0r-59,0r0,-58r59,0r0,58","w":102},"\/":{"d":"149,-287r47,0r-160,333r-46,0","w":190},"0":{"d":"243,-126v0,73,-45,130,-112,130v-67,0,-112,-57,-112,-130v0,-73,46,-130,113,-130v67,0,111,57,111,130xm186,-126v0,-46,-22,-80,-55,-80v-33,0,-55,34,-55,80v0,46,23,80,56,80v33,0,54,-34,54,-80","w":262},"1":{"d":"9,-232v35,-9,62,-26,110,-22r0,254r-55,0r0,-198r-44,11","w":151},"2":{"d":"111,-206v-19,0,-32,11,-51,34r-39,-31v25,-34,49,-53,94,-53v54,0,87,32,87,79v0,55,-68,94,-108,129r110,0r0,48r-186,0r0,-44r84,-69v31,-26,43,-39,43,-60v0,-21,-14,-33,-34,-33","w":224},"3":{"d":"127,-204r-99,0r0,-48r171,0r0,42r-64,61v35,6,68,24,68,71v0,48,-35,82,-91,82v-45,0,-76,-17,-98,-43r38,-37v17,19,35,31,61,31v21,0,35,-12,35,-31v0,-28,-35,-36,-72,-33r-9,-35","w":223},"4":{"d":"149,-254r47,0r0,155r34,0r0,45r-34,0r0,54r-53,0r0,-54r-123,0r-9,-40xm143,-99r0,-79r-67,79r67,0","w":248},"5":{"d":"32,-128r8,-124r154,0r0,49r-107,0r-3,43v61,-14,122,8,122,77v0,98,-141,110,-191,50r34,-40v19,17,38,27,60,27v26,0,42,-12,42,-35v0,-39,-58,-41,-87,-26","w":226},"6":{"d":"122,4v-73,0,-103,-37,-103,-122v0,-78,36,-138,111,-138v34,0,57,9,79,27r-29,43v-37,-36,-102,-22,-103,38v49,-35,141,-10,141,65v0,52,-41,87,-96,87xm163,-81v0,-22,-17,-37,-44,-37v-27,0,-43,15,-43,37v0,22,17,38,44,38v27,0,43,-16,43,-38","w":238},"7":{"d":"24,-204r0,-48r182,0r0,42r-113,210r-63,0r113,-204r-119,0","w":222},"8":{"d":"211,-71v0,47,-42,75,-98,75v-56,0,-97,-29,-97,-73v0,-31,14,-50,41,-62v-60,-35,-29,-125,56,-125v84,0,118,89,57,125v26,13,41,30,41,60xm149,-180v0,-16,-13,-30,-36,-30v-23,0,-36,14,-36,30v0,18,14,31,36,31v22,0,36,-13,36,-31xm157,-74v0,-20,-19,-31,-44,-31v-25,0,-43,11,-43,31v0,18,16,32,43,32v27,0,44,-14,44,-32","w":226},"9":{"d":"116,-256v73,0,103,38,103,122v0,82,-38,138,-110,138v-37,0,-62,-12,-83,-30r29,-42v38,37,104,27,106,-35v-49,39,-141,7,-141,-65v0,-51,39,-88,96,-88xm162,-170v0,-23,-16,-39,-44,-39v-27,0,-43,16,-43,39v0,23,17,38,44,38v27,0,43,-16,43,-38","w":238},":":{"d":"82,-135r-58,0r0,-58r58,0r0,58xm82,0r-58,0r0,-58r58,0r0,58","w":106},";":{"d":"82,-135r-58,0r0,-58r58,0r0,58xm11,36v25,-3,37,-15,35,-36r-22,0r0,-58r58,0v4,65,-3,121,-66,116","w":106},"<":{"d":"24,-152r175,-76r0,51r-122,50r122,50r0,51r-175,-76r0,-50"},"=":{"d":"30,-198r171,0r0,49r-171,0r0,-49xm30,-105r171,0r0,50r-171,0r0,-50"},">":{"d":"206,-102r-174,76r0,-50r121,-50r-121,-50r0,-52r174,76r0,50"},"?":{"d":"63,-144v38,-7,67,-13,64,-35v-6,-41,-67,-28,-87,-1r-33,-36v38,-57,176,-54,176,36v0,46,-32,64,-71,72r-4,22r-37,0xm117,0r-58,0r0,-58r58,0r0,58","w":195},"@":{"d":"334,-114v0,90,-84,112,-127,69v-36,40,-119,22,-119,-48v0,-74,89,-120,130,-66r4,-19r43,7r-18,108v0,13,9,23,26,23v26,0,46,-26,46,-74v0,-67,-61,-128,-142,-128v-81,0,-143,64,-143,143v0,79,61,143,146,143v36,0,61,-8,88,-24r7,11v-28,17,-58,27,-95,27v-92,0,-161,-71,-161,-157v0,-86,70,-157,158,-157v88,0,157,68,157,142xm209,-112v0,-21,-14,-34,-33,-34v-23,0,-44,22,-44,51v0,22,14,35,34,35v23,0,43,-22,43,-52","w":352},"A":{"d":"276,0r-58,0r-23,-57r-107,0r-23,57r-56,0r108,-254r51,0xm175,-105r-34,-82r-33,82r67,0","w":284},"B":{"d":"244,-70v0,88,-125,69,-214,70r0,-252r117,0v84,-9,109,90,50,120v29,11,47,28,47,62xm175,-177v0,-35,-56,-25,-91,-26r0,53v36,-1,91,8,91,-27xm84,-49v40,-3,105,13,105,-28v0,-36,-67,-26,-105,-27r0,55","w":259},"C":{"d":"252,-41v-26,28,-55,45,-104,45v-74,0,-129,-57,-129,-130v0,-72,54,-130,131,-130v48,0,77,16,100,39r-35,40v-46,-52,-138,-25,-138,51v0,43,30,79,73,79v29,0,46,-11,66,-29","w":265},"D":{"d":"262,-127v0,72,-54,127,-133,127r-99,0r0,-252r99,0v79,0,133,54,133,125xm86,-50v69,7,119,-13,118,-76v0,-61,-49,-84,-118,-76r0,152","w":281},"E":{"d":"222,0r-192,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49","w":241},"F":{"d":"222,-202r-136,0r0,54r120,0r0,50r-120,0r0,98r-56,0r0,-252r192,0r0,50","w":236},"G":{"d":"259,-36v-26,22,-61,40,-107,40v-78,0,-133,-54,-133,-130v0,-72,56,-130,132,-130v45,0,73,12,99,34r-35,42v-45,-48,-138,-22,-138,54v0,68,76,101,129,65r0,-36r-56,0r0,-48r109,0r0,109","w":282},"H":{"d":"243,0r-55,0r0,-101r-102,0r0,101r-56,0r0,-252r56,0r0,100r102,0r0,-100r55,0r0,252","w":273},"I":{"d":"88,0r-55,0r0,-252r55,0r0,252","w":120},"J":{"d":"177,-87v9,103,-131,113,-172,53r35,-39v23,32,80,40,80,-17r0,-162r57,0r0,165","w":203},"K":{"d":"260,0r-67,0r-78,-107r-29,30r0,77r-56,0r0,-252r56,0r0,110r102,-110r67,0r-103,107","w":262},"L":{"d":"211,0r-181,0r0,-252r56,0r0,202r125,0r0,50","w":222},"M":{"d":"282,0r-55,0r0,-165r-72,108r-70,-106r0,163r-55,0r0,-252r60,0r66,107r66,-107r60,0r0,252","w":312},"N":{"d":"254,0r-47,0r-122,-160r0,160r-55,0r0,-252r51,0r118,155r0,-155r55,0r0,252","w":284},"O":{"d":"287,-127v0,73,-56,131,-134,131v-78,0,-134,-57,-134,-130v0,-72,56,-130,134,-130v78,0,134,57,134,129xm153,-47v45,0,76,-35,76,-79v0,-43,-31,-79,-76,-79v-45,0,-76,35,-76,79v0,43,31,79,76,79","w":306},"P":{"d":"230,-165v0,74,-64,95,-144,89r0,76r-56,0r0,-252r103,0v60,0,97,36,97,87xm86,-125v43,2,88,1,88,-39v0,-41,-46,-39,-88,-38r0,77","w":240},"Q":{"d":"291,-32r-36,40r-27,-25v-87,56,-209,-7,-209,-109v0,-72,56,-130,134,-130v107,0,170,115,112,202xm222,-91v23,-53,-12,-115,-69,-114v-45,0,-76,35,-76,79v0,55,54,96,109,72r-41,-35r36,-39","w":306},"R":{"d":"248,0r-65,0r-54,-81r-43,0r0,81r-56,0r0,-252r115,0v59,0,95,31,95,84v0,41,-22,66,-54,78xm86,-130v43,0,98,7,98,-36v0,-44,-55,-36,-98,-36r0,72","w":260},"S":{"d":"212,-75v0,98,-144,97,-199,38r33,-39v23,19,46,31,75,31v23,0,36,-9,36,-25v0,-14,-8,-21,-50,-32v-51,-13,-84,-27,-84,-78v0,-87,131,-95,182,-44r-29,42v-22,-15,-44,-25,-65,-25v-21,0,-33,10,-33,23v0,17,10,22,54,33v51,13,80,32,80,76"},"T":{"d":"221,-201r-77,0r0,201r-55,0r0,-201r-77,0r0,-51r209,0r0,51","w":233},"U":{"d":"246,-110v0,76,-43,114,-111,114v-68,0,-109,-38,-109,-112r0,-144r56,0v7,77,-28,205,54,205v82,0,47,-129,54,-205r56,0r0,142","w":272},"V":{"d":"261,-252r-102,254r-48,0r-102,-254r61,0r66,177r66,-177r59,0","w":270},"W":{"d":"393,-252r-86,254r-48,0r-57,-165r-57,165r-48,0r-86,-254r59,0r52,171r57,-172r47,0r57,172r52,-171r58,0","w":403},"X":{"d":"252,0r-64,0r-57,-86r-57,86r-63,0r88,-128r-84,-124r65,0r52,82r54,-82r63,0r-84,123","w":263},"Y":{"d":"253,-252r-96,152r0,100r-56,0r0,-99r-97,-153r65,0r60,101r61,-101r63,0","w":257},"Z":{"d":"233,0r-210,0r0,-42r138,-161r-134,0r0,-49r206,0r0,42r-139,161r139,0r0,49","w":254},"[":{"d":"146,-252r0,43r-64,0r0,213r64,0r0,43r-116,0r0,-299r116,0","w":167},"\\":{"d":"41,-287r160,333r-47,0r-159,-333r46,0","w":190},"]":{"d":"21,-252r117,0r0,299r-117,0r0,-43r64,0r0,-213r-64,0r0,-43","w":167},"^":{"d":"90,-220r-33,43r-39,0r53,-75r38,0r53,75r-40,0","w":180},"_":{"d":"-1,16r218,0r0,42r-218,0r0,-42","w":216},"`":{"d":"127,-214r-41,0r-46,-43r47,-21","w":180},"a":{"d":"190,0r-52,0r0,-21v-30,41,-125,32,-125,-35v0,-59,75,-73,125,-54v5,-47,-62,-42,-95,-28r-13,-42v21,-9,41,-15,74,-15v106,0,85,100,86,195xm96,-34v30,-1,46,-15,43,-44v-22,-12,-73,-10,-73,20v0,15,12,24,30,24","w":213},"b":{"d":"227,-97v0,95,-101,130,-148,72r0,25r-55,0r0,-263r55,0r0,98v43,-62,148,-27,148,68xm125,-43v26,0,47,-21,47,-54v0,-32,-21,-53,-47,-53v-26,0,-47,21,-47,54v0,32,21,53,47,53","w":243},"c":{"d":"194,-31v-19,21,-39,35,-78,35v-58,0,-101,-44,-101,-100v0,-55,42,-101,101,-101v36,0,59,13,77,33r-33,36v-27,-38,-91,-20,-91,32v0,52,64,70,93,33","w":205},"d":{"d":"219,0r-55,0r0,-28v-44,62,-148,27,-148,-69v0,-95,101,-129,148,-71r0,-95r55,0r0,263xm118,-43v26,0,47,-21,47,-54v0,-32,-21,-53,-47,-53v-26,0,-47,21,-47,54v0,32,21,53,47,53","w":243},"e":{"d":"111,-197v69,0,96,54,93,120r-135,0v9,44,66,48,94,18r32,27v-49,67,-180,34,-180,-64v0,-55,40,-101,96,-101xm151,-112v-3,-24,-17,-41,-40,-41v-23,0,-38,16,-42,41r82,0","w":220},"f":{"d":"132,-215v-21,-8,-49,-6,-44,24r44,0r0,45r-43,0r0,146r-55,0r0,-146r-23,0r0,-45r23,0v-10,-65,44,-85,98,-69r0,45","w":137},"g":{"d":"219,-44v12,109,-118,120,-193,82r18,-41v42,28,132,29,121,-44v-44,59,-149,29,-149,-60v0,-89,105,-116,148,-61r0,-25r55,0r0,149xm117,-61v27,0,48,-19,48,-46v0,-26,-21,-44,-48,-44v-27,0,-46,18,-46,45v0,27,19,45,46,45","w":243},"h":{"d":"201,0r-54,0v-6,-52,21,-147,-34,-147v-55,0,-28,95,-34,147r-55,0r0,-263r55,0r0,97v29,-50,122,-36,122,41r0,125","w":224},"i":{"d":"83,-214r-57,0r0,-49r57,0r0,49xm82,0r-55,0r0,-193r55,0r0,193","w":108},"j":{"d":"83,-214r-57,0r0,-49r57,0r0,49xm82,-3v2,51,-37,69,-86,60r0,-43v18,4,31,-1,31,-22r0,-185r55,0r0,190","w":108},"k":{"d":"211,0r-62,0r-51,-79r-19,20r0,59r-55,0r0,-263r55,0r0,140r64,-70r66,0r-74,76","w":213},"l":{"d":"82,0r-55,0r0,-263r55,0r0,263","w":108},"m":{"d":"319,0r-55,0v-6,-51,21,-147,-32,-147v-54,0,-26,96,-33,147r-55,0v-6,-51,21,-147,-32,-147v-54,0,-26,96,-33,147r-55,0r0,-193r55,0r0,27v19,-36,93,-43,111,0v36,-50,129,-40,129,40r0,126","w":342},"n":{"d":"201,0r-54,0v-6,-52,21,-147,-34,-147v-55,0,-28,95,-34,147r-55,0r0,-193r55,0r0,27v29,-50,122,-36,122,41r0,125","w":224},"o":{"d":"224,-97v0,56,-45,101,-105,101v-60,0,-104,-44,-104,-100v0,-55,45,-101,105,-101v60,0,104,45,104,100xm120,-43v31,0,50,-24,50,-53v0,-28,-21,-53,-51,-53v-31,0,-50,24,-50,53v0,28,21,53,51,53","w":239},"p":{"d":"227,-97v0,95,-101,130,-148,72r0,83r-55,0r0,-251r55,0r0,28v43,-62,148,-27,148,68xm125,-43v26,0,47,-21,47,-54v0,-32,-21,-53,-47,-53v-26,0,-47,21,-47,54v0,32,21,53,47,53","w":243},"q":{"d":"219,58r-55,0r0,-86v-44,62,-148,27,-148,-69v0,-95,101,-129,148,-71r0,-25r55,0r0,251xm118,-43v26,0,47,-21,47,-54v0,-32,-21,-53,-47,-53v-26,0,-47,21,-47,54v0,32,21,53,47,53","w":243},"r":{"d":"141,-139v-65,-8,-65,71,-62,139r-55,0r0,-193r55,0r0,39v11,-27,30,-44,62,-43r0,58","w":150},"s":{"d":"166,-59v0,80,-108,76,-157,33r24,-36v21,15,43,23,61,23v16,0,23,-5,23,-15v0,-12,-19,-16,-40,-22v-27,-8,-59,-21,-58,-59v0,-70,96,-74,143,-39r-21,38v-19,-11,-38,-18,-52,-18v-13,0,-21,6,-21,14v0,11,19,16,40,23v27,9,58,23,58,58","w":180},"t":{"d":"133,-8v-39,20,-100,18,-100,-47r0,-91r-23,0r0,-47r23,0r0,-49r55,0r0,49r46,0r0,47r-46,0r0,82v-2,26,30,20,45,12r0,44","w":149},"u":{"d":"200,0r-55,0r0,-27v-28,51,-122,35,-122,-41r0,-125r55,0v6,52,-21,147,33,147v55,0,28,-95,34,-147r55,0r0,193","w":224},"v":{"d":"209,-193r-76,194r-50,0r-76,-194r58,0r43,129r44,-129r57,0","w":216},"w":{"d":"301,-193r-60,194r-49,0r-37,-118r-38,118r-49,0r-59,-194r55,0r31,117r36,-118r48,0r36,118r32,-117r54,0","w":309},"x":{"d":"202,0r-59,0r-39,-60r-38,60r-58,0r68,-98r-65,-95r58,0r36,56r37,-56r57,0r-65,94","w":210},"y":{"d":"208,-193r-74,198v-16,60,-67,64,-112,40r18,-39v15,7,35,14,43,-5r-76,-194r58,0r44,131r42,-131r57,0","w":216},"z":{"d":"186,0r-168,0r0,-39r100,-110r-97,0r0,-44r165,0r0,39r-100,110r100,0r0,44","w":202},"{":{"d":"159,-221v-50,14,-43,27,-42,69v0,26,-14,41,-38,49v33,9,37,35,37,75v0,22,5,31,43,42r-9,37v-77,-17,-87,-36,-83,-96v2,-31,-17,-38,-49,-37r0,-42v44,6,48,-20,48,-62v0,-37,18,-59,84,-71","w":176},"|":{"d":"85,46r-44,0r0,-333r44,0r0,333","w":126},"}":{"d":"159,-82v-43,-6,-48,19,-48,61v0,37,-18,60,-84,72r-10,-37v50,-14,44,-26,43,-69v0,-26,13,-40,37,-48v-33,-9,-36,-36,-36,-75v0,-22,-6,-32,-44,-43r10,-36v77,17,87,35,83,96v-2,32,17,38,49,37r0,42","w":176},"~":{"d":"166,-134v-8,30,-20,50,-45,50v-33,0,-61,-33,-74,3r-29,-9v8,-30,19,-49,44,-49v34,1,61,33,75,-4","w":183},"\u00a0":{"w":108}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * HTF Gothamª © 2002 The Hoefler Type Foundry, Inc. Info: www.typography.com
 */
Cufon.registerFont({"w":114,"face":{"font-family":"Gotham","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-49 -287 432 72","underline-thickness":"7.2","underline-position":"-47.88","slope":"-12","stemh":"46","stemv":"57","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":108},"!":{"d":"40,-86r28,-166r64,0r-61,166r-31,0xm3,0r16,-58r58,0r-15,58r-59,0","w":117},"\"":{"d":"123,-137r30,-115r61,0r-63,115r-28,0xm36,-137r30,-115r61,0r-63,115r-28,0","w":190},"#":{"d":"14,0r19,-54r-29,0r12,-46r33,0r19,-53r-34,0r12,-46r38,0r18,-53r48,0r-19,53r53,0r18,-53r47,0r-18,53r30,0r-13,46r-33,0r-18,53r33,0r-12,46r-38,0r-18,54r-48,0r19,-54r-52,0r-19,54r-48,0xm97,-100r52,0r18,-53r-52,0","w":248},"$":{"d":"58,35r12,-39v-30,-6,-55,-19,-72,-42r41,-34v13,15,28,25,46,30r17,-56v-34,-13,-60,-28,-60,-67v0,-46,45,-80,103,-79r6,-21r38,0r-8,26v23,6,41,17,56,32r-38,37v-11,-10,-21,-18,-33,-22r-16,54v35,13,58,30,58,67v0,48,-44,79,-102,79r-11,35r-37,0xm118,-158r14,-46v-37,1,-46,34,-14,46xm119,-48v33,-1,45,-34,14,-46","w":228},"%":{"d":"86,-125v-33,0,-56,-22,-56,-55v0,-37,28,-75,70,-75v33,0,56,23,56,56v0,37,-28,74,-70,74xm22,0r242,-252r47,0r-243,252r-46,0xm232,3v-33,0,-55,-23,-55,-56v0,-37,28,-74,70,-74v33,0,55,22,55,55v0,37,-28,75,-70,75xm88,-156v32,2,47,-66,10,-68v-31,-2,-48,67,-10,68xm234,-28v32,2,49,-67,10,-68v-32,-2,-47,66,-10,68","w":316},"&":{"d":"185,5r-20,-28v-49,44,-158,35,-157,-41v0,-31,21,-62,72,-79v-34,-51,-1,-113,67,-113v41,0,69,25,69,60v0,24,-15,52,-68,70r28,38v11,-12,21,-26,31,-41r33,24v-12,19,-25,36,-39,51r25,33xm125,-157v33,-12,42,-22,42,-36v0,-10,-8,-20,-23,-20v-31,0,-37,31,-19,56xm60,-67v0,32,55,30,80,10r-38,-54v-29,11,-42,28,-42,44","w":250},"'":{"d":"36,-137r30,-115r61,0r-63,115r-28,0","w":102},"(":{"d":"87,51v-118,-93,-68,-258,76,-308r20,41v-110,48,-141,155,-62,233","w":160},")":{"d":"1,50r-20,-41v109,-48,140,-154,62,-232r34,-35v117,93,68,258,-76,308","w":160},"*":{"d":"100,-132r-28,-8r16,-40r-40,17r-8,-29r43,-6r-34,-27r21,-21r26,35r6,-44r29,8r-17,40r41,-16r8,29r-44,5r35,27r-22,22r-26,-35","w":154},"+":{"d":"76,-37r17,-65r-65,0r13,-50r65,0r17,-64r52,0r-18,64r65,0r-13,50r-65,0r-17,65r-51,0","w":233},",":{"d":"-18,58r-4,-22v30,-3,43,-15,47,-36r-22,0r15,-58r58,0v-12,56,-31,123,-94,116"},"-":{"d":"16,-85r14,-53r111,0r-14,53r-111,0","w":148},".":{"d":"3,0r15,-58r58,0r-15,58r-58,0"},"\/":{"d":"-49,46r246,-333r51,0r-245,333r-52,0","w":190},"0":{"d":"121,4v-59,0,-99,-41,-99,-104v0,-73,50,-156,135,-156v59,0,99,41,99,104v0,73,-50,156,-135,156xm125,-46v45,0,74,-59,74,-106v0,-36,-18,-54,-46,-54v-45,0,-74,59,-74,106v0,36,18,54,46,54","w":262},"1":{"d":"34,0r52,-195r-45,10r-1,-47v38,-9,67,-26,117,-22r-68,254r-55,0","w":156},"2":{"d":"-11,0r12,-45r128,-88v24,-17,37,-31,37,-47v0,-17,-13,-26,-32,-26v-22,0,-40,12,-60,31r-34,-35v24,-28,56,-46,96,-46v52,0,86,29,86,70v0,59,-94,105,-137,138r106,0r-13,48r-189,0","w":221},"3":{"d":"87,4v-47,0,-76,-20,-93,-48r41,-30v13,18,29,29,55,29v27,0,47,-18,47,-36v0,-24,-31,-32,-65,-30r-2,-34r74,-59r-95,0r13,-48r170,0r-11,42r-82,62v32,8,54,25,54,62v0,51,-46,90,-106,90","w":217},"4":{"d":"113,0r15,-54r-117,0r-5,-41r174,-159r54,0r-42,155r34,0r-12,45r-34,0r-14,54r-53,0xm76,-99r64,0r22,-81","w":237},"5":{"d":"90,4v-36,0,-76,-19,-93,-45r39,-33v25,39,105,36,110,-11v3,-30,-54,-42,-81,-25r-28,-22r39,-120r153,0r-13,49r-103,0r-14,42v57,-11,105,18,104,70v0,50,-44,95,-113,95","w":219},"6":{"d":"21,-90v0,-83,52,-167,141,-166v32,0,59,11,78,29r-32,40v-24,-25,-76,-27,-100,0v-10,12,-21,27,-26,44v39,-38,135,-22,135,49v0,51,-46,98,-104,98v-58,0,-92,-35,-92,-94xm123,-119v-56,-4,-67,78,-10,77v53,3,67,-78,10,-77","w":231},"7":{"d":"3,0r157,-204r-116,0r13,-48r181,0r-11,42r-159,210r-65,0","w":219},"8":{"d":"108,4v-52,0,-96,-29,-96,-72v0,-39,27,-59,64,-68v-62,-38,-27,-120,64,-120v98,0,121,113,34,131v23,9,39,27,39,54v0,38,-39,75,-105,75xm136,-150v23,0,41,-13,41,-31v0,-16,-13,-29,-39,-29v-23,0,-42,13,-42,31v0,17,16,29,40,29xm111,-41v27,0,48,-13,48,-33v0,-18,-18,-31,-46,-31v-28,0,-47,14,-47,33v0,18,18,31,45,31","w":238},"9":{"d":"226,-157v0,77,-55,162,-139,161v-31,0,-59,-11,-82,-32r32,-40v28,28,74,32,103,2v11,-11,19,-26,24,-41v-39,38,-134,23,-134,-50v0,-55,47,-99,105,-99v58,1,91,33,91,99xm125,-130v56,4,68,-82,10,-80v-55,-4,-68,82,-10,80","w":231},":":{"d":"39,-135r15,-58r59,0r-16,58r-58,0xm3,0r15,-58r58,0r-15,58r-58,0"},";":{"d":"39,-135r15,-58r59,0r-16,58r-58,0xm-18,58r-4,-22v30,-3,43,-15,47,-36r-22,0r15,-58r58,0v-12,56,-31,123,-94,116"},"<":{"d":"180,-26r-154,-76r13,-50r195,-76r-15,53r-135,50r109,50","w":230},"=":{"d":"45,-149r13,-49r171,0r-14,49r-170,0xm19,-55r14,-50r170,0r-13,50r-171,0","w":230},">":{"d":"12,-26r14,-53r135,-50r-108,-50r13,-49r154,76r-14,50","w":230},"?":{"d":"64,-86v4,-19,2,-44,9,-60v46,-3,72,-16,72,-37v0,-35,-62,-22,-81,-1r-29,-36v42,-54,168,-43,168,30v0,42,-32,70,-92,79r-11,25r-36,0xm31,0r15,-58r59,0r-16,58r-58,0","w":195},"@":{"d":"249,38v-102,51,-229,-11,-229,-122v0,-93,77,-173,175,-173v90,0,146,57,146,123v0,76,-42,111,-85,111v-24,0,-42,-11,-50,-28v-30,42,-116,38,-116,-33v0,-79,95,-132,138,-74r6,-22r40,11r-28,89v-8,26,2,40,21,40v26,0,59,-33,59,-94v0,-58,-50,-109,-131,-109v-90,0,-160,74,-160,159v0,101,115,155,208,110xm166,-59v39,7,78,-85,18,-88v-39,-7,-75,84,-18,88","w":352},"A":{"d":"-21,0r177,-254r53,0r40,254r-57,0r-8,-57r-107,0r-38,57r-60,0xm111,-105r66,0r-11,-84","w":275},"B":{"d":"4,0r68,-252r98,0v105,-7,108,108,31,124v21,10,36,25,36,51v0,45,-39,77,-109,77r-124,0xm99,-150v41,-1,101,8,101,-31v0,-28,-56,-21,-87,-22xm71,-49v43,-1,110,9,110,-31v0,-34,-61,-22,-95,-24","w":258},"C":{"d":"238,-34v-60,69,-214,40,-214,-71v0,-80,68,-151,153,-151v48,0,81,20,101,53r-45,32v-42,-69,-151,-22,-151,63v0,65,83,78,120,36","w":261},"D":{"d":"271,-146v-3,90,-73,149,-173,146r-94,0r68,-252v108,-6,202,6,199,106xm214,-144v0,-51,-42,-61,-100,-58r-41,152v78,7,141,-24,141,-94","w":279},"E":{"d":"4,0r68,-252r188,0r-13,49r-133,0r-14,52r117,0r-13,48r-117,0r-15,54r136,0r-14,49r-190,0","w":239},"F":{"d":"4,0r68,-252r192,0r-14,50r-136,0r-15,54r121,0r-14,50r-120,0r-26,98r-56,0","w":238},"G":{"d":"234,-19v-76,44,-211,28,-210,-86v0,-78,66,-151,157,-151v53,0,85,20,103,43r-41,37v-15,-16,-34,-30,-66,-30v-54,0,-96,46,-96,99v0,58,67,73,110,51r12,-41r-56,0r13,-48r109,0","w":280},"H":{"d":"4,0r68,-252r55,0r-26,100r101,0r26,-100r56,0r-68,252r-55,0r27,-101r-101,0r-27,101r-56,0","w":272},"I":{"d":"7,0r68,-252r55,0r-68,252r-55,0","w":120},"J":{"d":"143,-23v-40,42,-127,35,-157,-16r39,-34v40,45,84,24,101,-40r37,-139r57,0v-24,73,-32,182,-77,229","w":207},"K":{"d":"4,0r68,-252r55,0r-29,112r124,-112r75,0r-123,105r60,147r-61,0r-43,-113r-52,44r-18,69r-56,0","w":261},"L":{"d":"4,0r68,-252r55,0r-54,202r126,0r-14,50r-181,0","w":225},"M":{"d":"4,0r68,-252r58,0r36,107r94,-107r64,0r-68,252r-56,0r44,-165r-100,108r-40,-106r-44,163r-56,0","w":312},"N":{"d":"4,0r68,-252r51,0r74,160r43,-160r54,0r-67,252r-47,0r-77,-165r-44,165r-55,0","w":282},"O":{"d":"139,4v-69,0,-115,-48,-115,-111v0,-75,62,-149,152,-149v69,0,115,48,115,111v0,75,-62,149,-152,149xm146,-47v53,0,87,-50,87,-94v0,-37,-23,-64,-64,-64v-53,0,-87,50,-87,94v0,37,23,64,64,64","w":299},"P":{"d":"72,-252v87,-2,179,-6,179,77v0,79,-79,107,-171,99r-20,76r-56,0xm131,-125v66,9,87,-78,19,-77r-36,0r-21,77r38,0","w":244},"Q":{"d":"222,16r-16,-27v-80,42,-182,-7,-182,-96v0,-75,62,-149,152,-149v120,0,147,146,72,215r20,27xm82,-111v0,48,48,77,95,58r-32,-44r46,-31r25,41v32,-45,18,-118,-47,-118v-53,0,-87,50,-87,94","w":299},"R":{"d":"72,-252v89,-1,191,-12,191,76v0,45,-27,77,-81,90r43,86r-63,0r-39,-81r-42,0r-21,81r-56,0xm205,-171v0,-40,-52,-30,-91,-31r-19,72v49,1,110,3,110,-41","w":261},"S":{"d":"206,-80v1,103,-167,105,-210,37r42,-35v20,22,42,33,71,33v22,0,38,-10,38,-26v0,-12,-9,-19,-43,-33v-33,-13,-62,-31,-62,-68v0,-92,151,-108,195,-46r-38,38v-19,-18,-37,-27,-61,-27v-23,0,-36,13,-36,26v0,13,10,19,44,33v35,14,60,31,60,68","w":228},"T":{"d":"57,0r54,-201r-76,0r13,-51r209,0r-14,51r-76,0r-54,201r-56,0","w":223},"U":{"d":"209,-27v-49,54,-190,38,-180,-54v6,-62,28,-114,41,-171r56,0v-13,55,-34,104,-41,163v-5,44,61,54,85,26v37,-44,42,-128,63,-189r55,0v-25,75,-32,174,-79,225","w":275},"V":{"d":"78,2r-33,-254r59,0r18,176r111,-176r63,0r-169,254r-49,0","w":260},"W":{"d":"65,2r-18,-254r57,0r7,171r101,-172r48,0r11,172r98,-171r63,0r-154,254r-52,0r-12,-162r-98,162r-51,0","w":398},"X":{"d":"-18,0r121,-131r-54,-121r63,0r31,81r71,-81r71,0r-119,127r56,125r-62,0r-34,-85r-73,85r-71,0","w":252},"Y":{"d":"61,0r26,-99r-52,-153r62,0r29,104r87,-104r67,0r-138,158r-26,94r-55,0","w":234},"Z":{"d":"-7,0r11,-42r177,-161r-129,0r13,-49r205,0r-12,42r-177,161r135,0r-13,49r-210,0","w":248},"[":{"d":"-4,47r81,-299r116,0r-12,43r-63,0r-58,213r64,0r-11,43r-117,0","w":167},"\\":{"d":"117,46r-75,-333r46,0r75,333r-46,0","w":190},"]":{"d":"-22,47r11,-43r64,0r57,-213r-64,0r12,-43r116,0r-80,299r-116,0","w":167},"^":{"d":"30,-177r74,-75r37,0r33,75r-35,0r-22,-43r-44,43r-43,0","w":180},"_":{"d":"-41,58r11,-42r217,0r-11,42r-217,0","w":216},"`":{"d":"125,-214r-35,-43r49,-21r23,64r-37,0","w":180},"a":{"d":"140,-109v7,-23,3,-40,-33,-40v-19,0,-38,5,-52,11r-9,-43v49,-24,158,-21,150,45v-6,50,-23,91,-33,136r-52,0r5,-22v-29,41,-113,32,-113,-26v0,-65,80,-83,137,-61xm82,-34v25,0,46,-19,50,-44v-25,-12,-78,-9,-75,24v0,12,10,20,25,20","w":211},"b":{"d":"228,-114v0,95,-115,159,-167,86r-8,28r-54,0r70,-263r54,0r-24,91v46,-49,129,-22,129,58xm114,-42v30,0,57,-29,57,-68v0,-25,-16,-40,-40,-40v-54,0,-87,108,-17,108","w":242},"c":{"d":"179,-26v-48,55,-164,31,-164,-57v0,-63,52,-114,114,-114v42,0,66,20,79,43r-42,29v-25,-50,-99,-17,-97,42v2,47,56,51,81,22","w":201},"d":{"d":"143,-21v-45,50,-129,21,-129,-58v0,-95,115,-159,167,-86r26,-98r55,0r-70,263r-55,0xm111,-42v54,0,89,-106,17,-108v-30,0,-57,28,-57,67v0,25,16,41,40,41","w":242},"e":{"d":"66,-77v1,41,57,48,87,22r25,34v-17,14,-41,25,-74,25v-55,0,-89,-32,-89,-85v0,-56,45,-116,114,-116v68,-1,95,63,69,120r-132,0xm71,-112r84,0v6,-21,-3,-41,-30,-41v-25,0,-45,17,-54,41","w":218},"f":{"d":"8,0r40,-146r-23,0r12,-47r23,0v10,-59,58,-85,118,-67r-12,45v-23,-10,-48,-2,-52,22r47,0r-13,47r-45,0r-40,146r-55,0","w":147},"g":{"d":"167,32v-37,41,-136,29,-179,-1r29,-37v46,34,127,27,131,-35v-43,45,-129,29,-133,-42v-5,-91,121,-155,165,-80r8,-30r54,0v-23,70,-34,179,-75,225xm109,-59v52,7,86,-91,18,-92v-52,-6,-82,91,-18,92","w":241},"h":{"d":"-1,0r70,-263r54,0r-23,90v30,-38,115,-29,109,33v-5,50,-24,94,-34,140r-55,0v10,-41,31,-78,31,-123v0,-15,-9,-24,-26,-24v-22,0,-36,16,-42,39r-29,108r-55,0","w":223},"i":{"d":"57,-214r14,-49r57,0r-13,49r-58,0xm1,0r52,-193r55,0r-52,193r-55,0","w":108},"j":{"d":"57,-214r13,-49r58,0r-13,49r-58,0xm57,-5v-17,59,-51,70,-103,61r11,-43v20,6,33,-3,39,-25r49,-181r55,0","w":108},"k":{"d":"-1,0r70,-263r55,0r-37,136r79,-66r71,0r-93,75r42,118r-61,0r-28,-82r-28,23r-15,59r-55,0","w":212},"l":{"d":"1,0r71,-263r54,0r-70,263r-55,0","w":108},"m":{"d":"-1,0r51,-193r55,0r-5,20v25,-31,90,-33,102,11v28,-47,131,-51,125,22v-4,49,-24,94,-34,140r-55,0r31,-123v0,-15,-9,-24,-26,-24v-22,0,-35,16,-41,39r-29,108r-55,0v10,-41,31,-78,31,-123v0,-15,-8,-24,-25,-24v-22,0,-35,16,-41,39r-29,108r-55,0","w":341},"n":{"d":"-1,0r51,-193r55,0r-5,20v30,-38,115,-29,109,33v-5,50,-24,94,-34,140r-55,0v10,-41,31,-78,31,-123v0,-15,-9,-24,-26,-24v-22,0,-36,16,-42,39r-29,108r-55,0","w":222},"o":{"d":"108,4v-57,0,-93,-38,-93,-89v0,-58,50,-112,112,-112v57,0,93,39,93,90v0,58,-50,111,-112,111xm111,-42v58,1,80,-108,13,-108v-58,-1,-80,108,-13,108","w":234},"p":{"d":"-17,58r67,-251r55,0r-6,21v46,-49,129,-22,129,58v0,95,-115,159,-167,86r-23,86r-55,0xm114,-42v30,0,57,-29,57,-68v0,-25,-16,-40,-40,-40v-54,0,-87,108,-17,108","w":242},"q":{"d":"118,72r25,-93v-45,50,-129,21,-129,-58v0,-95,115,-159,167,-86r8,-28r54,0r-70,265r-55,0xm111,-42v54,0,89,-106,17,-108v-30,0,-57,28,-57,67v0,25,16,41,40,41","w":242},"r":{"d":"-1,0r51,-193r55,0r-10,39v19,-28,41,-46,73,-43r-15,58v-65,-9,-86,79,-99,139r-55,0","w":150},"s":{"d":"79,-139v11,28,80,31,78,75v-4,81,-120,86,-166,33r32,-32v20,20,42,26,59,26v14,0,23,-6,23,-17v0,-7,-9,-12,-22,-18v-30,-13,-56,-26,-56,-57v0,-39,29,-68,77,-68v31,0,60,14,76,28r-30,35v-19,-15,-34,-21,-50,-21v-13,0,-21,6,-21,16","w":180},"t":{"d":"109,-5v-31,17,-93,6,-89,-30v5,-41,19,-74,27,-111r-23,0r12,-47r23,0r14,-49r54,0r-13,49r45,0r-12,47r-45,0r-24,89v1,18,30,12,43,6","w":149},"u":{"d":"124,-20v-30,38,-115,29,-109,-33v5,-50,24,-94,34,-140r55,0v-10,41,-31,78,-31,123v0,15,9,24,26,24v22,0,36,-16,42,-39r29,-108r55,0r-51,193r-55,0","w":223},"v":{"d":"54,1r-23,-194r56,0r8,129r77,-129r59,0r-127,194r-50,0","w":213},"w":{"d":"39,1r-7,-194r55,0r0,117r68,-118r47,0r5,118r63,-117r55,0r-113,194r-49,0r-5,-118r-70,118r-49,0","w":308},"x":{"d":"-18,0r94,-101r-42,-92r59,0r21,54r45,-54r66,0r-91,98r43,95r-59,0r-22,-57r-49,57r-65,0","w":208},"y":{"d":"110,5v-31,55,-76,67,-124,40r29,-39v15,8,30,12,42,-5r-24,-194r56,0r9,131r73,-131r59,0","w":213},"z":{"d":"-10,0r11,-39r126,-110r-94,0r12,-44r164,0r-11,39r-126,110r98,0r-12,44r-168,0","w":200},"{":{"d":"78,-99v75,12,-29,102,51,116r-18,34v-81,-12,-70,-57,-54,-112v5,-16,-16,-23,-41,-21r11,-42v43,1,57,-4,63,-55v7,-54,35,-77,101,-78r4,36v-45,4,-54,19,-58,55v-5,50,-23,63,-59,67","w":176},"|":{"d":"48,46r0,-333r43,0r0,333r-43,0","w":126},"}":{"d":"69,-257v81,12,71,56,54,111v-4,16,15,24,41,22r-11,42v-43,-1,-57,4,-63,55v-7,54,-35,77,-101,78r-4,-37v45,-4,54,-18,58,-54v5,-50,23,-64,59,-68v-75,-12,29,-102,-51,-116","w":176},"~":{"d":"121,-81v-20,0,-33,-19,-47,-19v-11,0,-18,9,-25,21r-29,-15v13,-28,32,-47,55,-47v20,0,33,19,47,19v11,0,19,-9,26,-21r28,14v-13,28,-32,48,-55,48","w":183},"\u00a0":{"w":108}}});






// JCAROUSELLITE 1.0.1
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}('(6($){$.1g.1w=6(o){o=$.1f({r:n,x:n,N:n,17:q,J:n,L:1a,16:n,y:q,u:12,H:3,B:0,k:1,K:n,I:n},o||{});8 G.R(6(){p b=q,A=o.y?"15":"w",P=o.y?"t":"s";p c=$(G),9=$("9",c),E=$("10",9),W=E.Y(),v=o.H;7(o.u){9.1h(E.D(W-v-1+1).V()).1d(E.D(0,v).V());o.B+=v}p f=$("10",9),l=f.Y(),4=o.B;c.5("1c","H");f.5({U:"T",1b:o.y?"S":"w"});9.5({19:"0",18:"0",Q:"13","1v-1s-1r":"S","z-14":"1"});c.5({U:"T",Q:"13","z-14":"2",w:"1q"});p g=o.y?t(f):s(f);p h=g*l;p j=g*v;f.5({s:f.s(),t:f.t()});9.5(P,h+"C").5(A,-(4*g));c.5(P,j+"C");7(o.r)$(o.r).O(6(){8 m(4-o.k)});7(o.x)$(o.x).O(6(){8 m(4+o.k)});7(o.N)$.R(o.N,6(i,a){$(a).O(6(){8 m(o.u?o.H+i:i)})});7(o.17&&c.11)c.11(6(e,d){8 d>0?m(4-o.k):m(4+o.k)});7(o.J)1p(6(){m(4+o.k)},o.J+o.L);6 M(){8 f.D(4).D(0,v)};6 m(a){7(!b){7(o.K)o.K.Z(G,M());7(o.u){7(a<=o.B-v-1){9.5(A,-((l-(v*2))*g)+"C");4=a==o.B-v-1?l-(v*2)-1:l-(v*2)-o.k}F 7(a>=l-v+1){9.5(A,-((v)*g)+"C");4=a==l-v+1?v+1:v+o.k}F 4=a}F{7(a<0||a>l-v)8;F 4=a}b=12;9.1o(A=="w"?{w:-(4*g)}:{15:-(4*g)},o.L,o.16,6(){7(o.I)o.I.Z(G,M());b=q});7(!o.u){$(o.r+","+o.x).1n("X");$((4-o.k<0&&o.r)||(4+o.k>l-v&&o.x)||[]).1m("X")}}8 q}})};6 5(a,b){8 1l($.5(a[0],b))||0};6 s(a){8 a[0].1k+5(a,\'1j\')+5(a,\'1i\')};6 t(a){8 a[0].1t+5(a,\'1u\')+5(a,\'1e\')}})(1x);',62,96,'||||curr|css|function|if|return|ul|||||||||||scroll|itemLength|go|null||var|false|btnPrev|width|height|circular||left|btnNext|vertical||animCss|start|px|slice|tLi|else|this|visible|afterEnd|auto|beforeStart|speed|vis|btnGo|click|sizeCss|position|each|none|hidden|overflow|clone|tl|disabled|size|call|li|mousewheel|true|relative|index|top|easing|mouseWheel|padding|margin|200|float|visibility|append|marginBottom|extend|fn|prepend|marginRight|marginLeft|offsetWidth|parseInt|addClass|removeClass|animate|setInterval|0px|type|style|offsetHeight|marginTop|list|jCarouselLite|jQuery'.split('|'),0,{}))












/**
 * --------------------------------------------------------------------
 * jQuery-Plugin "toggleElements"
 * Version: 1.3, 11.09.2007
 * by Andreas Eberhard, andreas.eberhard@gmail.com
 *                      http://jquery.andreaseberhard.de/
 *
 * Copyright (c) 2007 Andreas Eberhard
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 */
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}('N g=7;(4($){2.U.10=4(a){a=2.Y({9:"m",f:"T",6:"Z",L:n,J:7,H:E,k:E,h:E},a);N b=a.H,k=a.k,h=a.h;5((a.9!=\'m\')&&(a.9!=\'q\')&&(a.9!=\'z\'))a.9=\'m\';3.r(4(){5(2(3).o(\'t\').M("e")==-1){2(3).K()}});3.r(4(){w=\'\';v=2(3).o(\'u\');5(a.J==n)w=v;5(a.L==n)2(3).o(\'u\',\'\');5(2(3).o(\'t\').M("e")!=-1){2(3).I(\'<a t="\'+a.6+\' \'+a.6+\'-e" G="#" u="\'+w+\'">\'+v+\'</a>\');2(3).j(a.6+\'-c-e\')}F{2(3).I(\'<a t="\'+a.6+\' \'+a.6+\'-i" G="#" u="\'+w+\'">\'+v+\'</a>\');2(3).j(a.6+\'-c-i\')}2(3).D(\'a.\'+a.6).X(4(){5(g)s 7;8=3;2(8)[0].C();5(8.l||g)s 7;g=n;8.l=n;5(B b==\'4\'&&b(8)===7){g=7;8.l=7;s 7}5(2(3).A().W(\'V\')==\'S\'){2(3).A().r(4(){5(a.9==\'m\')2(3).R(a.f,4(){2.p(3,a.6,k,8)});5(a.9==\'q\')2(3).K(a.f,4(){2.p(3,a.6,k,8)});5(a.9==\'z\')2(3).Q(a.f,4(){2.p(3,a.6,k,8)})})}F{2(3).A().r(4(){5(a.9==\'m\')2(3).P(a.f,4(){2.x(3,a.6,h,8)});5(a.9==\'q\')2(3).q(a.f,4(){2.x(3,a.6,h,8)});5(a.9==\'z\')2(3).O(a.f,4(){2.x(3,a.6,h,8)})})}s 7})})};2.p=4(a,b,c,d){2(a).D(\'a.\'+b).y(b+\'-e\').j(b+\'-i\').C();5(B c==\'4\')c(3);2(a).y(b+\'-c-e\').j(b+\'-c-i\');g=7;d.l=7};2.x=4(a,b,c,d){2(a).D(\'a.\'+b).y(b+\'-i\').j(b+\'-e\').C();5(B c==\'4\')c(3);2(a).y(b+\'-c-i\').j(b+\'-c-e\');g=7;d.l=7}})(2);',62,63,'||jQuery|this|function|if|className|false|thelink|fxAnimation|||||opened|fxSpeed|toggleElements_animating|onShow|closed|addClass|onHide|animating|slide|true|attr|toggleElementsHidden|show|each|return|class|title|wlinktext|wtitle|toggleElementsShown|removeClass|fade|next|typeof|blur|prev|null|else|href|onClick|before|showTitle|hide|removeTitle|indexOf|var|fadeIn|slideDown|fadeOut|slideUp|block|normal|fn|display|css|click|extend|toggler|toggleElements'.split('|'),0,{}))






//** Animated Collapsible DIV v2.0- (c) Dynamic Drive DHTML code library: http://www.dynamicdrive.com.
//** May 24th, 08'- Script rewritten and updated to 2.0.
//** June 4th, 08'- Version 2.01: Bug fix to work with jquery 1.2.6 (which changed the way attr() behaves).
//** March 5th, 09'- Version 2.2, which adds the following:
			//1) ontoggle($, divobj, state) event that fires each time a DIV is expanded/collapsed, including when the page 1st loads
			//2) Ability to expand a DIV via a URL parameter string, ie: index.htm?expanddiv=jason or index.htm?expanddiv=jason,kelly

//** March 9th, 09'- Version 2.2.1: Optimized ontoggle event handler slightly.
//** July 3rd, 09'- Version 2.4, which adds the following:
			//1) You can now insert rel="expand[divid] | collapse[divid] | toggle[divid]" inside arbitrary links to act as DIV togglers
			//2) For image toggler links, you can insert the attributes "data-openimage" and "data-closedimage" to update its image based on the DIV state

var animatedcollapse={
divholders: {}, //structure: {div.id, div.attrs, div.$divref, div.$togglerimage}
divgroups: {}, //structure: {groupname.count, groupname.lastactivedivid}
lastactiveingroup: {}, //structure: {lastactivediv.id}
preloadimages: [],

show:function(divids){ //public method
	if (typeof divids=="object"){
		for (var i=0; i<divids.length; i++)
			this.showhide(divids[i], "show")
	}
	else
		this.showhide(divids, "show")
},

hide:function(divids){ //public method
	if (typeof divids=="object"){
		for (var i=0; i<divids.length; i++)
			this.showhide(divids[i], "hide")
	}
	else
		this.showhide(divids, "hide")
},

toggle:function(divid){ //public method
	if (typeof divid=="object")
		divid=divid[0]
	this.showhide(divid, "toggle")
},

addDiv:function(divid, attrstring){ //public function
	this.divholders[divid]=({id: divid, $divref: null, attrs: attrstring})
	this.divholders[divid].getAttr=function(name){ //assign getAttr() function to each divholder object
		var attr=new RegExp(name+"=([^,]+)", "i") //get name/value config pair (ie: width=400px,)
		return (attr.test(this.attrs) && parseInt(RegExp.$1)!=0)? RegExp.$1 : null //return value portion (string), or 0 (false) if none found
	}
	this.currentid=divid //keep track of current div object being manipulated (in the event of chaining)
	return this
},

showhide:function(divid, action){
	var $divref=this.divholders[divid].$divref //reference collapsible DIV
	if (this.divholders[divid] && $divref.length==1){ //if DIV exists
		var targetgroup=this.divgroups[$divref.attr('groupname')] //find out which group DIV belongs to (if any)
		if ($divref.attr('groupname') && targetgroup.count>1 && (action=="show" || action=="toggle" && $divref.css('display')=='none')){ //If current DIV belongs to a group
			if (targetgroup.lastactivedivid && targetgroup.lastactivedivid!=divid) //if last active DIV is set
				this.slideengine(targetgroup.lastactivedivid, 'hide') //hide last active DIV within group first
				this.slideengine(divid, 'show')
			targetgroup.lastactivedivid=divid //remember last active DIV
		}
		else{
			this.slideengine(divid, action)
		}
	}
},

slideengine:function(divid, action){
	var $divref=this.divholders[divid].$divref
	var $togglerimage=this.divholders[divid].$togglerimage
	if (this.divholders[divid] && $divref.length==1){ //if this DIV exists
		var animateSetting={height: action}
		if ($divref.attr('fade'))
			animateSetting.opacity=action
		$divref.animate(animateSetting, $divref.attr('speed')? parseInt($divref.attr('speed')) : 500, function(){
			if ($togglerimage){
				$togglerimage.attr('src', ($divref.css('display')=="none")? $togglerimage.data('srcs').closed : $togglerimage.data('srcs').open)
			}
			if (animatedcollapse.ontoggle){
				try{
					animatedcollapse.ontoggle(jQuery, $divref.get(0), $divref.css('display'))
				}
				catch(e){
					alert("An error exists inside your \"ontoggle\" function:\n\n"+e+"\n\nAborting execution of function.")
				}
			}
		})
		return false
	}
},

generatemap:function(){
	var map={}
	for (var i=0; i<arguments.length; i++){
		if (arguments[i][1]!=null){ //do not generate name/value pair if value is null
			map[arguments[i][0]]=arguments[i][1]
		}
	}
	return map
},

init:function(){
	var ac=this
	jQuery(document).ready(function($){
		animatedcollapse.ontoggle=animatedcollapse.ontoggle || null
		var urlparamopenids=animatedcollapse.urlparamselect() //Get div ids that should be expanded based on the url (['div1','div2',etc])
		var persistopenids=ac.getCookie('acopendivids') //Get list of div ids that should be expanded due to persistence ('div1,div2,etc')
		var groupswithpersist=ac.getCookie('acgroupswithpersist') //Get list of group names that have 1 or more divs with "persist" attribute defined
		if (persistopenids!=null) //if cookie isn't null (is null if first time page loads, and cookie hasnt been set yet)
			persistopenids=(persistopenids=='nada')? [] : persistopenids.split(',') //if no divs are persisted, set to empty array, else, array of div ids
		groupswithpersist=(groupswithpersist==null || groupswithpersist=='nada')? [] : groupswithpersist.split(',') //Get list of groups with divs that are persisted
		jQuery.each(ac.divholders, function(){ //loop through each collapsible DIV object
			this.$divref=$('#'+this.id)
			if ((this.getAttr('persist') || jQuery.inArray(this.getAttr('group'), groupswithpersist)!=-1) && persistopenids!=null){ //if this div carries a user "persist" setting, or belong to a group with at least one div that does
				var cssdisplay=(jQuery.inArray(this.id, persistopenids)!=-1)? 'block' : 'none'
			}
			else{
				var cssdisplay=this.getAttr('hide')? 'none' : null
			}
			if (urlparamopenids[0]=="all" || jQuery.inArray(this.id, urlparamopenids)!=-1){ //if url parameter string contains the single array element "all", or this div's ID
				cssdisplay='block' //set div to "block", overriding any other setting
			}
			else if (urlparamopenids[0]=="none"){
				cssdisplay='none' //set div to "none", overriding any other setting
			}
			this.$divref.css(ac.generatemap(['height', this.getAttr('height')], ['display', cssdisplay]))
			this.$divref.attr(ac.generatemap(['groupname', this.getAttr('group')], ['fade', this.getAttr('fade')], ['speed', this.getAttr('speed')]))
			if (this.getAttr('group')){ //if this DIV has the "group" attr defined
				var targetgroup=ac.divgroups[this.getAttr('group')] || (ac.divgroups[this.getAttr('group')]={}) //Get settings for this group, or if it no settings exist yet, create blank object to store them in
				targetgroup.count=(targetgroup.count||0)+1 //count # of DIVs within this group
				if (jQuery.inArray(this.id, urlparamopenids)!=-1){ //if url parameter string contains this div's ID
					targetgroup.lastactivedivid=this.id //remember this DIV as the last "active" DIV (this DIV will be expanded). Overrides other settings
					targetgroup.overridepersist=1 //Indicate to override persisted div that would have been expanded
				}
				if (!targetgroup.lastactivedivid && this.$divref.css('display')!='none' || cssdisplay=="block" && typeof targetgroup.overridepersist=="undefined") //if this DIV was open by default or should be open due to persistence								
					targetgroup.lastactivedivid=this.id //remember this DIV as the last "active" DIV (this DIV will be expanded)
				this.$divref.css({display:'none'}) //hide any DIV that's part of said group for now
			}
		}) //end divholders.each
		jQuery.each(ac.divgroups, function(){ //loop through each group
			if (this.lastactivedivid && urlparamopenids[0]!="none") //show last "active" DIV within each group (one that should be expanded), unless url param="none"
				ac.divholders[this.lastactivedivid].$divref.show()
		})
		if (animatedcollapse.ontoggle){
			jQuery.each(ac.divholders, function(){ //loop through each collapsible DIV object and fire ontoggle event
				animatedcollapse.ontoggle(jQuery, this.$divref.get(0), this.$divref.css('display'))
			})
		}
 		//Parse page for links containing rel attribute
		var $allcontrols=$('a[rel]').filter('[rel^="collapse["], [rel^="expand["], [rel^="toggle["]') //get all elements on page with rel="collapse[]", "expand[]" and "toggle[]"
		$allcontrols.each(function(){ //loop though each control link
			this._divids=this.getAttribute('rel').replace(/(^\w+)|(\s+)/g, "").replace(/[\[\]']/g, "") //cache value 'div1,div2,etc' within identifier[div1,div2,etc]
			if (this.getElementsByTagName('img').length==1 && ac.divholders[this._divids]){ //if control is an image link that toggles a single DIV (must be one to one to update status image)
				animatedcollapse.preloadimage(this.getAttribute('data-openimage'), this.getAttribute('data-closedimage')) //preload control images (if defined)
				$togglerimage=$(this).find('img').eq(0).data('srcs', {open:this.getAttribute('data-openimage'), closed:this.getAttribute('data-closedimage')}) //remember open and closed images' paths
				ac.divholders[this._divids].$togglerimage=$(this).find('img').eq(0) //save reference to toggler image (to be updated inside slideengine()
				ac.divholders[this._divids].$togglerimage.attr('src', (ac.divholders[this._divids].$divref.css('display')=="none")? $togglerimage.data('srcs').closed : $togglerimage.data('srcs').open)
			}
			$(this).click(function(){ //assign click behavior to each control link
				var relattr=this.getAttribute('rel')
				var divids=(this._divids=="")? [] : this._divids.split(',') //convert 'div1,div2,etc' to array 
				if (divids.length>0){
					animatedcollapse[/expand/i.test(relattr)? 'show' : /collapse/i.test(relattr)? 'hide' : 'toggle'](divids) //call corresponding public function
					return false
				}
			}) //end control.click
		})// end control.each

		$(window).bind('unload', function(){
			ac.uninit()
		})
	}) //end doc.ready()
},

uninit:function(){
	var opendivids='', groupswithpersist=''
	jQuery.each(this.divholders, function(){
		if (this.$divref.css('display')!='none'){
			opendivids+=this.id+',' //store ids of DIVs that are expanded when page unloads: 'div1,div2,etc'
		}
		if (this.getAttr('group') && this.getAttr('persist'))
			groupswithpersist+=this.getAttr('group')+',' //store groups with which at least one DIV has persistance enabled: 'group1,group2,etc'
	})
	opendivids=(opendivids=='')? 'nada' : opendivids.replace(/,$/, '')
	groupswithpersist=(groupswithpersist=='')? 'nada' : groupswithpersist.replace(/,$/, '')
	this.setCookie('acopendivids', opendivids)
	this.setCookie('acgroupswithpersist', groupswithpersist)
},

getCookie:function(Name){ 
	var re=new RegExp(Name+"=[^;]*", "i"); //construct RE to search for target name/value pair
	if (document.cookie.match(re)) //if cookie found
		return document.cookie.match(re)[0].split("=")[1] //return its value
	return null
},

setCookie:function(name, value, days){
	if (typeof days!="undefined"){ //if set persistent cookie
		var expireDate = new Date()
		expireDate.setDate(expireDate.getDate()+days)
		document.cookie = name+"="+value+"; path=/; expires="+expireDate.toGMTString()
	}
	else //else if this is a session only cookie
		document.cookie = name+"="+value+"; path=/"
},

urlparamselect:function(){
	window.location.search.match(/expanddiv=([\w\-_,]+)/i) //search for expanddiv=divid or divid1,divid2,etc
	return (RegExp.$1!="")? RegExp.$1.split(",") : []
},

preloadimage:function(){
	var preloadimages=this.preloadimages
	for (var i=0; i<arguments.length; i++){
		if (arguments[i] && arguments[i].length>0){
			preloadimages[preloadimages.length]=new Image()
			preloadimages[preloadimages.length-1].src=arguments[i]
		}
	}
}

}
