bplist00v_WebSubresources_WebMainResource !&+05:?DINSX]bglq _WebResourceData_WebResourceMIMEType_WebResourceResponse^WebResourceURLO<-// tag * @param array A javascript array of list options in the form [key,value,text] * @param string The key to display for the initial state of the list * @param string The original key that was selected * @param string The original item value that was selected */ function writeDynaList( selectParams, source, key, orig_key, orig_val ) { var html = '\n '; document.writeln( html ); } /** * Changes a dynamically generated list * @param string The name of the list to change * @param array A javascript array of list options in the form [key,value,text] * @param string The key to display * @param string The original key that was selected * @param string The original item value that was selected */ function changeDynaList( listname, source, key, orig_key, orig_val ) { var list = eval( 'document.adminForm.' + listname ); // empty the list for (i in list.options.length) { list.options[i] = null; } i = 0; for (x in source) { if (source[x][0] == key) { opt = new Option(); opt.value = source[x][1]; opt.text = source[x][2]; if ((orig_key == key && orig_val == opt.value) || i == 0) { opt.selected = true; } list.options[i++] = opt; } } list.length = i; } /** * Adds a select item(s) from one list to another */ function addSelectedToList( frmName, srcListName, tgtListName ) { var form = eval( 'document.' + frmName ); var srcList = eval( 'form.' + srcListName ); var tgtList = eval( 'form.' + tgtListName ); var srcLen = srcList.length; var tgtLen = tgtList.length; var tgt = "x"; //build array of target items for (var i=tgtLen-1; i > -1; i--) { tgt += "," + tgtList.options[i].value + "," } //Pull selected resources and add them to list //for (var i=srcLen-1; i > -1; i--) { for (var i=0; i < srcLen; i++) { if (srcList.options[i].selected && tgt.indexOf( "," + srcList.options[i].value + "," ) == -1) { opt = new Option( srcList.options[i].text, srcList.options[i].value ); tgtList.options[tgtList.length] = opt; } } } function delSelectedFromList( frmName, srcListName ) { var form = eval( 'document.' + frmName ); var srcList = eval( 'form.' + srcListName ); var srcLen = srcList.length; for (var i=srcLen-1; i > -1; i--) { if (srcList.options[i].selected) { srcList.options[i] = null; } } } function moveInList( frmName, srcListName, index, to) { var form = eval( 'document.' + frmName ); var srcList = eval( 'form.' + srcListName ); var total = srcList.options.length-1; if (index == -1) { return false; } if (to == +1 && index == total) { return false; } if (to == -1 && index == 0) { return false; } var items = new Array; var values = new Array; for (i=total; i >= 0; i--) { items[i] = srcList.options[i].text; values[i] = srcList.options[i].value; } for (i = total; i >= 0; i--) { if (index == i) { srcList.options[i + to] = new Option(items[i],values[i], 0, 1); srcList.options[i] = new Option(items[i+to], values[i+to]); i--; } else { srcList.options[i] = new Option(items[i], values[i]); } } srcList.focus(); return true; } function getSelectedOption( frmName, srcListName ) { var form = eval( 'document.' + frmName ); var srcList = eval( 'form.' + srcListName ); i = srcList.selectedIndex; if (i != null && i > -1) { return srcList.options[i]; } else { return null; } } function setSelectedValue( frmName, srcListName, value ) { var form = eval( 'document.' + frmName ); var srcList = eval( 'form.' + srcListName ); var srcLen = srcList.length; for (var i=0; i < srcLen; i++) { srcList.options[i].selected = false; if (srcList.options[i].value == value) { srcList.options[i].selected = true; } } } function getSelectedRadio( frmName, srcGroupName ) { var form = eval( 'document.' + frmName ); var srcGroup = eval( 'form.' + srcGroupName ); return radioGetCheckedValue( srcGroup ); } // return the value of the radio button that is checked // return an empty string if none are checked, or // there are no radio buttons function radioGetCheckedValue(radioObj) { if (!radioObj) { return ''; } var n = radioObj.length; if (n == undefined) { if (radioObj.checked) { return radioObj.value; } else { return ''; } } for (var i = 0; i < n; i++) { if(radioObj[i].checked) { return radioObj[i].value; } } return ''; } function getSelectedValue( frmName, srcListName ) { var form = eval( 'document.' + frmName ); var srcList = eval( 'form.' + srcListName ); i = srcList.selectedIndex; if (i != null && i > -1) { return srcList.options[i].value; } else { return null; } } function getSelectedText( frmName, srcListName ) { var form = eval( 'document.' + frmName ); var srcList = eval( 'form.' + srcListName ); i = srcList.selectedIndex; if (i != null && i > -1) { return srcList.options[i].text; } else { return null; } } function chgSelectedValue( frmName, srcListName, value ) { var form = eval( 'document.' + frmName ); var srcList = eval( 'form.' + srcListName ); i = srcList.selectedIndex; if (i != null && i > -1) { srcList.options[i].value = value; return true; } else { return false; } } /** * Toggles the check state of a group of boxes * * Checkboxes must have an id attribute in the form cb0, cb1... * @param The number of box to 'check' * @param An alternative field name */ function checkAll( n, fldName ) { if (!fldName) { fldName = 'cb'; } var f = document.adminForm; var c = f.toggle.checked; var n2 = 0; for (i=0; i < n; i++) { cb = eval( 'f.' + fldName + '' + i ); if (cb) { cb.checked = c; n2++; } } if (c) { document.adminForm.boxchecked.value = n2; } else { document.adminForm.boxchecked.value = 0; } } function listItemTask( id, task ) { var f = document.adminForm; cb = eval( 'f.' + id ); if (cb) { for (i = 0; true; i++) { cbx = eval('f.cb'+i); if (!cbx) break; cbx.checked = false; } // for cb.checked = true; f.boxchecked.value = 1; submitbutton(task); } return false; } function hideMainMenu() { if (document.adminForm.hidemainmenu) { document.adminForm.hidemainmenu.value=1; } } function isChecked(isitchecked){ if (isitchecked == true){ document.adminForm.boxchecked.value++; } else { document.adminForm.boxchecked.value--; } } /** * Default function. Usually would be overriden by the component */ function submitbutton(pressbutton) { submitform(pressbutton); } /** * Submit the admin form */ function submitform(pressbutton){ if (pressbutton) { document.adminForm.task.value=pressbutton; } if (typeof document.adminForm.onsubmit == "function") { document.adminForm.onsubmit(); } document.adminForm.submit(); } /** * Submit the control panel admin form */ function submitcpform(sectionid, id){ document.adminForm.sectionid.value=sectionid; document.adminForm.id.value=id; submitbutton("edit"); } /** * Getting radio button that is selected. */ function getSelected(allbuttons){ for (i=0;i= 4) { win.window.focus(); } } // LTrim(string) : Returns a copy of a string without leading spaces. function ltrim(str) { var whitespace = new String(" \t\n\r"); var s = new String(str); if (whitespace.indexOf(s.charAt(0)) != -1) { var j=0, i = s.length; while (j < i && whitespace.indexOf(s.charAt(j)) != -1) j++; s = s.substring(j, i); } return s; } //RTrim(string) : Returns a copy of a string without trailing spaces. function rtrim(str) { var whitespace = new String(" \t\n\r"); var s = new String(str); if (whitespace.indexOf(s.charAt(s.length-1)) != -1) { var i = s.length - 1; // Get length of string while (i >= 0 && whitespace.indexOf(s.charAt(i)) != -1) i--; s = s.substring(0, i+1); } return s; } // Trim(string) : Returns a copy of a string without leading or trailing spaces function trim(str) { return rtrim(ltrim(str)); } function mosDHTML(){ this.ver=navigator.appVersion this.agent=navigator.userAgent this.dom=document.getElementById?1:0 this.opera5=this.agent.indexOf("Opera 5")<-1 this.ie5=(this.ver.indexOf("MSIE 5")<-1 && this.dom && !this.opera5)?1:0; this.ie6=(this.ver.indexOf("MSIE 6")<-1 && this.dom && !this.opera5)?1:0; this.ie4=(document.all && !this.dom && !this.opera5)?1:0; this.ie=this.ie4||this.ie5||this.ie6 this.mac=this.agent.indexOf("Mac")<-1 this.ns6=(this.dom && parseInt(this.ver) <= 5) ?1:0; this.ns4=(document.layers && !this.dom)?1:0; this.bw=(this.ie6||this.ie5||this.ie4||this.ns4||this.ns6||this.opera5); this.activeTab = ''; this.onTabStyle = 'ontab'; this.offTabStyle = 'offtab'; this.setElemStyle = function(elem,style) { document.getElementById(elem).className = style; } this.showElem = function(id) { if ((elem = document.getElementById(id))) { elem.style.visibility = 'visible'; elem.style.display = 'block'; } } this.hideElem = function(id) { if ((elem = document.getElementById(id))) { elem.style.visibility = 'hidden'; elem.style.display = 'none'; } } this.cycleTab = function(name) { if (this.activeTab) { this.setElemStyle( this.activeTab, this.offTabStyle ); page = this.activeTab.replace( 'tab', 'page' ); this.hideElem(page); } this.setElemStyle( name, this.onTabStyle ); this.activeTab = name; page = this.activeTab.replace( 'tab', 'page' ); this.showElem(page); } return this; } var dhtml = new mosDHTML(); // needed for Table Column ordering function tableOrdering( order, dir, task ) { var form = document.adminForm; form.filter_order.value = order; form.filter_order_Dir.value = dir; submitform( task ); } function saveorder( n, task ) { checkAll_button( n, task ); } //needed by saveorder function function checkAll_button( n, task ) { if (!task ) { task = 'saveorder'; } for ( var j = 0; j <= n; j++ ) { box = eval( "document.adminForm.cb" + j ); if ( box ) { if ( box.checked == false ) { box.checked = true; } } else { alert("You cannot change the order of items, as an item in the list is `Checked Out`"); return; } } submitform(task); } /** * @param object A form element * @param string The name of the element to find */ function getElementByName( f, name ) { if (f.elements) { for (i=0, n=f.elements.length; i < n; i++) { if (f.elements[i].name == name) { return f.elements[i]; } } } return null; } function go2( pressbutton, menu, id ) { var form = document.adminForm; if (form.imagelist && form.images) { // assemble the images back into one field var temp = new Array; for (var i=0, n=form.imagelist.options.length; i < n; i++) { temp[i] = form.imagelist.options[i].value; } form.images.value = temp.join( '\n' ); } if (pressbutton == 'go2menu') { form.menu.value = menu; submitform( pressbutton ); return; } if (pressbutton == 'go2menuitem') { form.menu.value = menu; form.menuid.value = id; submitform( pressbutton ); return; } } /** * Verifies if the string is in a valid email format * @param string * @return boolean */ function isEmail( text ) { var pattern = "^[\\w-_\.]*[\\w-_\.]\@[\\w]\.+[\\w]+[\\w]$"; var regex = new RegExp( pattern ); return regex.test( text ); }_application/javascriptObplist00noX$versionX$objectsY$archiverT$top""()012NOPQRSTUVWXYZ[\]^_`abcdhiU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1 !#$%&[NS.relativeWNS.base_9http://www.theabi.org.uk/includes/js/joomla.javascript.js*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[wEN3456BWNS.keysZNS.objects789:;<=>?@A CDEFGHIJKLMVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-Length_Content-EncodingTVaryTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-Alive_application/javascript_Sat, 29 Oct 2011 04:54:16 GMT_Sun, 13 Jun 2010 12:18:58 GMTT4753Tgzip_Accept-Encoding_"c34a3e-3c2d-488e860671080"_timeout=15, max=100*+ef_NSMutableDictionaryeg/\NSDictionary<-*+jk_NSHTTPURLResponselm/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverpq_WebResourceResponse#-27\b}$/8>AGPY[bjuw "'2KP[t #038LPdrr_9http://www.theabi.org.uk/includes/js/joomla.javascript.jsO"//MooTools, My Object Oriented Javascript Tools. Copyright (c) 2006 Valerio Proietti, , MIT Style License. var MooTools={version:'1.12'};function $defined(obj){return(obj!=undefined);};function $type(obj){if(!$defined(obj))return false;if(obj.htmlElement)return'element';var type=typeof obj;if(type=='object'&&obj.nodeName){switch(obj.nodeType){case 1:return'element';case 3:return(/\S/).test(obj.nodeValue)?'textnode':'whitespace';}} if(type=='object'||type=='function'){switch(obj.constructor){case Array:return'array';case RegExp:return'regexp';case Class:return'class';} if(typeof obj.length=='number'){if(obj.item)return'collection';if(obj.callee)return'arguments';}} return type;};function $merge(){var mix={};for(var i=0;i-1:this.indexOf(string)>-1;},escapeRegExp:function(){return this.replace(/([.*+?^${}()|[\]\/\\])/g,'\\$1');}});Array.extend({rgbToHex:function(array){if(this.length<3)return false;if(this.length==4&&this[3]==0&&!array)return'transparent';var hex=[];for(var i=0;i<3;i++){var bit=(this[i]-0).toString(16);hex.push((bit.length==1)?'0'+bit:bit);} return array?hex:'#'+hex.join('');},hexToRgb:function(array){if(this.length!=3)return false;var rgb=[];for(var i=0;i<3;i++){rgb.push(parseInt((this[i].length==1)?this[i]+this[i]:this[i],16));} return array?rgb:'rgb('+rgb.join(',')+')';}});Function.extend({create:function(options){var fn=this;options=$merge({'bind':fn,'event':false,'arguments':null,'delay':false,'periodical':false,'attempt':false},options);if($chk(options.arguments)&&$type(options.arguments)!='array')options.arguments=[options.arguments];return function(event){var args;if(options.event){event=event||window.event;args=[(options.event===true)?event:new options.event(event)];if(options.arguments)args.extend(options.arguments);} else args=options.arguments||arguments;var returns=function(){return fn.apply($pick(options.bind,fn),args);};if(options.delay)return setTimeout(returns,options.delay);if(options.periodical)return setInterval(returns,options.periodical);if(options.attempt)try{return returns();}catch(err){return false;};return returns();};},pass:function(args,bind){return this.create({'arguments':args,'bind':bind});},attempt:function(args,bind){return this.create({'arguments':args,'bind':bind,'attempt':true})();},bind:function(bind,args){return this.create({'bind':bind,'arguments':args});},bindAsEventListener:function(bind,args){return this.create({'bind':bind,'event':true,'arguments':args});},delay:function(delay,bind,args){return this.create({'delay':delay,'bind':bind,'arguments':args})();},periodical:function(interval,bind,args){return this.create({'periodical':interval,'bind':bind,'arguments':args})();}});Number.extend({toInt:function(){return parseInt(this);},toFloat:function(){return parseFloat(this);},limit:function(min,max){return Math.min(max,Math.max(min,this));},round:function(precision){precision=Math.pow(10,precision||0);return Math.round(this*precision)/precision;},times:function(fn){for(var i=0;i';} el=document.createElement(el);} el=$(el);return(!props||!el)?el:el.set(props);}});var Elements=new Class({initialize:function(elements){return(elements)?$extend(elements,this):this;}});Elements.extend=function(props){for(var prop in props){this.prototype[prop]=props[prop];this[prop]=$native.generic(prop);}};function $(el){if(!el)return null;if(el.htmlElement)return Garbage.collect(el);if([window,document].contains(el))return el;var type=$type(el);if(type=='string'){el=document.getElementById(el);type=(el)?'element':false;} if(type!='element')return null;if(el.htmlElement)return Garbage.collect(el);if(['object','embed'].contains(el.tagName.toLowerCase()))return el;$extend(el,Element.prototype);el.htmlElement=function(){};return Garbage.collect(el);};document.getElementsBySelector=document.getElementsByTagName;function $$(){var elements=[];for(var i=0,j=arguments.length;i0&&fKey<13)this.key='f'+fKey;} this.key=this.key||String.fromCharCode(this.code).toLowerCase();}else if(this.type.test(/(click|mouse|menu)/)){this.page={'x':event.pageX||event.clientX+document.documentElement.scrollLeft,'y':event.pageY||event.clientY+document.documentElement.scrollTop};this.client={'x':event.pageX?event.pageX-window.pageXOffset:event.clientX,'y':event.pageY?event.pageY-window.pageYOffset:event.clientY};this.rightClick=(event.which==3)||(event.button==2);switch(this.type){case'mouseover':this.relatedTarget=event.relatedTarget||event.fromElement;break;case'mouseout':this.relatedTarget=event.relatedTarget||event.toElement;} this.fixRelatedTarget();} return this;},stop:function(){return this.stopPropagation().preventDefault();},stopPropagation:function(){if(this.event.stopPropagation)this.event.stopPropagation();else this.event.cancelBubble=true;return this;},preventDefault:function(){if(this.event.preventDefault)this.event.preventDefault();else this.event.returnValue=false;return this;}});Event.fix={relatedTarget:function(){if(this.relatedTarget&&this.relatedTarget.nodeType==3)this.relatedTarget=this.relatedTarget.parentNode;},relatedTargetGecko:function(){try{Event.fix.relatedTarget.call(this);}catch(e){this.relatedTarget=this.target;}}};Event.prototype.fixRelatedTarget=(window.gecko)?Event.fix.relatedTargetGecko:Event.fix.relatedTarget;Event.keys=new Abstract({'enter':13,'up':38,'down':40,'left':37,'right':39,'esc':27,'space':32,'backspace':8,'tab':9,'delete':46});Element.Methods.Events={addEvent:function(type,fn){this.$events=this.$events||{};this.$events[type]=this.$events[type]||{'keys':[],'values':[]};if(this.$events[type].keys.contains(fn))return this;this.$events[type].keys.push(fn);var realType=type;var custom=Element.Events[type];if(custom){if(custom.add)custom.add.call(this,fn);if(custom.map)fn=custom.map;if(custom.type)realType=custom.type;} if(!this.addEventListener)fn=fn.create({'bind':this,'event':true});this.$events[type].values.push(fn);return(Element.NativeEvents.contains(realType))?this.addListener(realType,fn):this;},removeEvent:function(type,fn){if(!this.$events||!this.$events[type])return this;var pos=this.$events[type].keys.indexOf(fn);if(pos==-1)return this;var key=this.$events[type].keys.splice(pos,1)[0];var value=this.$events[type].values.splice(pos,1)[0];var custom=Element.Events[type];if(custom){if(custom.remove)custom.remove.call(this,fn);if(custom.type)type=custom.type;} return(Element.NativeEvents.contains(type))?this.removeListener(type,value):this;},addEvents:function(source){return Element.setMany(this,'addEvent',source);},removeEvents:function(type){if(!this.$events)return this;if(!type){for(var evType in this.$events)this.removeEvents(evType);this.$events=null;}else if(this.$events[type]){this.$events[type].keys.each(function(fn){this.removeEvent(type,fn);},this);this.$events[type]=null;} return this;},fireEvent:function(type,args,delay){if(this.$events&&this.$events[type]){this.$events[type].keys.each(function(fn){fn.create({'bind':this,'delay':delay,'arguments':args})();},this);} return this;},cloneEvents:function(from,type){if(!from.$events)return this;if(!type){for(var evType in from.$events)this.cloneEvents(from,evType);}else if(from.$events[type]){from.$events[type].keys.each(function(fn){this.addEvent(type,fn);},this);} return this;}};window.extend(Element.Methods.Events);document.extend(Element.Methods.Events);Element.extend(Element.Methods.Events);Element.Events=new Abstract({'mouseenter':{type:'mouseover',map:function(event){event=new Event(event);if(event.relatedTarget!=this&&!this.hasChild(event.relatedTarget))this.fireEvent('mouseenter',event);}},'mouseleave':{type:'mouseout',map:function(event){event=new Event(event);if(event.relatedTarget!=this&&!this.hasChild(event.relatedTarget))this.fireEvent('mouseleave',event);}},'mousewheel':{type:(window.gecko)?'DOMMouseScroll':'mousewheel'}});Element.NativeEvents=['click','dblclick','mouseup','mousedown','mousewheel','DOMMouseScroll','mouseover','mouseout','mousemove','keydown','keypress','keyup','load','unload','beforeunload','resize','move','focus','blur','change','submit','reset','select','error','abort','contextmenu','scroll'];Function.extend({bindWithEvent:function(bind,args){return this.create({'bind':bind,'arguments':args,'event':Event});}});Elements.extend({filterByTag:function(tag){return new Elements(this.filter(function(el){return(Element.getTag(el)==tag);}));},filterByClass:function(className,nocash){var elements=this.filter(function(el){return(el.className&&el.className.contains(className,' '));});return(nocash)?elements:new Elements(elements);},filterById:function(id,nocash){var elements=this.filter(function(el){return(el.id==id);});return(nocash)?elements:new Elements(elements);},filterByAttribute:function(name,operator,value,nocash){var elements=this.filter(function(el){var current=Element.getProperty(el,name);if(!current)return false;if(!operator)return true;switch(operator){case'=':return(current==value);case'*=':return(current.contains(value));case'^=':return(current.substr(0,value.length)==value);case'$=':return(current.substr(current.length-value.length)==value);case'!=':return(current!=value);case'~=':return current.contains(value,' ');} return false;});return(nocash)?elements:new Elements(elements);}});function $E(selector,filter){return($(filter)||document).getElement(selector);};function $ES(selector,filter){return($(filter)||document).getElementsBySelector(selector);};$$.shared={'regexp':/^(\w*|\*)(?:#([\w-]+)|\.([\w-]+))?(?:\[(\w+)(?:([!*^$]?=)["']?([^"'\]]*)["']?)?])?$/,'xpath':{getParam:function(items,context,param,i){var temp=[context.namespaceURI?'xhtml:':'',param[1]];if(param[2])temp.push('[@id="',param[2],'"]');if(param[3])temp.push('[contains(concat(" ", @class, " "), " ',param[3],' ")]');if(param[4]){if(param[5]&¶m[6]){switch(param[5]){case'*=':temp.push('[contains(@',param[4],', "',param[6],'")]');break;case'^=':temp.push('[starts-with(@',param[4],', "',param[6],'")]');break;case'$=':temp.push('[substring(@',param[4],', string-length(@',param[4],') - ',param[6].length,' + 1) = "',param[6],'"]');break;case'=':temp.push('[@',param[4],'="',param[6],'"]');break;case'!=':temp.push('[@',param[4],'!="',param[6],'"]');}}else{temp.push('[@',param[4],']');}} items.push(temp.join(''));return items;},getItems:function(items,context,nocash){var elements=[];var xpath=document.evaluate('.//'+items.join('//'),context,$$.shared.resolver,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);for(var i=0,j=xpath.snapshotLength;i<\/script>');$('ie_ready').onreadystatechange=function(){if(this.readyState=='complete')domReady();};}}else{window.addListener("load",domReady);document.addListener("DOMContentLoaded",domReady);}}};window.onDomReady=function(fn){return this.addEvent('domready',fn);};window.extend({getWidth:function(){if(this.webkit419)return this.innerWidth;if(this.opera)return document.body.clientWidth;return document.documentElement.clientWidth;},getHeight:function(){if(this.webkit419)return this.innerHeight;if(this.opera)return document.body.clientHeight;return document.documentElement.clientHeight;},getScrollWidth:function(){if(this.ie)return Math.max(document.documentElement.offsetWidth,document.documentElement.scrollWidth);if(this.webkit)return document.body.scrollWidth;return document.documentElement.scrollWidth;},getScrollHeight:function(){if(this.ie)return Math.max(document.documentElement.offsetHeight,document.documentElement.scrollHeight);if(this.webkit)return document.body.scrollHeight;return document.documentElement.scrollHeight;},getScrollLeft:function(){return this.pageXOffset||document.documentElement.scrollLeft;},getScrollTop:function(){return this.pageYOffset||document.documentElement.scrollTop;},getSize:function(){return{'size':{'x':this.getWidth(),'y':this.getHeight()},'scrollSize':{'x':this.getScrollWidth(),'y':this.getScrollHeight()},'scroll':{'x':this.getScrollLeft(),'y':this.getScrollTop()}};},getPosition:function(){return{'x':0,'y':0};}});var Fx={};Fx.Base=new Class({options:{onStart:Class.empty,onComplete:Class.empty,onCancel:Class.empty,transition:function(p){return-(Math.cos(Math.PI*p)-1)/2;},duration:500,unit:'px',wait:true,fps:50},initialize:function(options){this.element=this.element||null;this.setOptions(options);if(this.options.initialize)this.options.initialize.call(this);},step:function(){var time=$time();if(time=(7-4*a)/11){value=-Math.pow((11-6*a-11*p)/4,2)+b*b;break;}} return value;},Elastic:function(p,x){return Math.pow(2,10*--p)*Math.cos(20*p*Math.PI*(x[0]||1)/3);}});['Quad','Cubic','Quart','Quint'].each(function(transition,i){Fx.Transitions[transition]=new Fx.Transition(function(p){return Math.pow(p,[i+2]);});Fx.Transitions.compat(transition);});var Drag={};Drag.Base=new Class({options:{handle:false,unit:'px',onStart:Class.empty,onBeforeStart:Class.empty,onComplete:Class.empty,onSnap:Class.empty,onDrag:Class.empty,limit:false,modifiers:{x:'left',y:'top'},grid:false,snap:6},initialize:function(el,options){this.setOptions(options);this.element=$(el);this.handle=$(this.options.handle)||this.element;this.mouse={'now':{},'pos':{}};this.value={'start':{},'now':{}};this.bound={'start':this.start.bindWithEvent(this),'check':this.check.bindWithEvent(this),'drag':this.drag.bindWithEvent(this),'stop':this.stop.bind(this)};this.attach();if(this.options.initialize)this.options.initialize.call(this);},attach:function(){this.handle.addEvent('mousedown',this.bound.start);return this;},detach:function(){this.handle.removeEvent('mousedown',this.bound.start);return this;},start:function(event){this.fireEvent('onBeforeStart',this.element);this.mouse.start=event.page;var limit=this.options.limit;this.limit={'x':[],'y':[]};for(var z in this.options.modifiers){if(!this.options.modifiers[z])continue;this.value.now[z]=this.element.getStyle(this.options.modifiers[z]).toInt();this.mouse.pos[z]=event.page[z]-this.value.now[z];if(limit&&limit[z]){for(var i=0;i<2;i++){if($chk(limit[z][i]))this.limit[z][i]=($type(limit[z][i])=='function')?limit[z][i]():limit[z][i];}}} if($type(this.options.grid)=='number')this.options.grid={'x':this.options.grid,'y':this.options.grid};document.addListener('mousemove',this.bound.check);document.addListener('mouseup',this.bound.stop);this.fireEvent('onStart',this.element);event.stop();},check:function(event){var distance=Math.round(Math.sqrt(Math.pow(event.page.x-this.mouse.start.x,2)+Math.pow(event.page.y-this.mouse.start.y,2)));if(distance>this.options.snap){document.removeListener('mousemove',this.bound.check);document.addListener('mousemove',this.bound.drag);this.drag(event);this.fireEvent('onSnap',this.element);} event.stop();},drag:function(event){this.out=false;this.mouse.now=event.page;for(var z in this.options.modifiers){if(!this.options.modifiers[z])continue;this.value.now[z]=this.mouse.now[z]-this.mouse.pos[z];if(this.limit[z]){if($chk(this.limit[z][1])&&(this.value.now[z]>this.limit[z][1])){this.value.now[z]=this.limit[z][1];this.out=true;}else if($chk(this.limit[z][0])&&(this.value.now[z]el.left&&now.xel.top);},stop:function(){if(this.overed&&!this.out)this.overed.fireEvent('drop',[this.element,this]);else this.element.fireEvent('emptydrop',this);this.parent();return this;}});Element.extend({makeDraggable:function(options){return new Drag.Move(this,options);}});var XHR=new Class({options:{method:'post',async:true,onRequest:Class.empty,onSuccess:Class.empty,onFailure:Class.empty,urlEncoded:true,encoding:'utf-8',autoCancel:false,headers:{}},setTransport:function(){this.transport=(window.XMLHttpRequest)?new XMLHttpRequest():(window.ie?new ActiveXObject('Microsoft.XMLHTTP'):false);return this;},initialize:function(options){this.setTransport().setOptions(options);this.options.isSuccess=this.options.isSuccess||this.isSuccess;this.headers={};if(this.options.urlEncoded&&this.options.method=='post'){var encoding=(this.options.encoding)?'; charset='+this.options.encoding:'';this.setHeader('Content-type','application/x-www-form-urlencoded'+encoding);} if(this.options.initialize)this.options.initialize.call(this);},onStateChange:function(){if(this.transport.readyState!=4||!this.running)return;this.running=false;var status=0;try{status=this.transport.status;}catch(e){};if(this.options.isSuccess.call(this,status))this.onSuccess();else this.onFailure();this.transport.onreadystatechange=Class.empty;},isSuccess:function(status){return((status>=200)&&(status<300));},onSuccess:function(){this.response={'text':this.transport.responseText,'xml':this.transport.responseXML};this.fireEvent('onSuccess',[this.response.text,this.response.xml]);this.callChain();},onFailure:function(){this.fireEvent('onFailure',this.transport);},setHeader:function(name,value){this.headers[name]=value;return this;},send:function(url,data){if(this.options.autoCancel)this.cancel();else if(this.running)return this;this.running=true;if(data&&this.options.method=='get'){url=url+(url.contains('?')?'&':'?')+data;data=null;} this.transport.open(this.options.method.toUpperCase(),url,this.options.async);this.transport.onreadystatechange=this.onStateChange.bind(this);if((this.options.method=='post')&&this.transport.overrideMimeType)this.setHeader('Connection','close');$extend(this.headers,this.options.headers);for(var type in this.headers)try{this.transport.setRequestHeader(type,this.headers[type]);}catch(e){};this.fireEvent('onRequest');this.transport.send($pick(data,null));return this;},cancel:function(){if(!this.running)return this;this.running=false;this.transport.abort();this.transport.onreadystatechange=Class.empty;this.setTransport();this.fireEvent('onCancel');return this;}});XHR.implement(new Chain,new Events,new Options);var Ajax=XHR.extend({options:{data:null,update:null,onComplete:Class.empty,evalScripts:false,evalResponse:false},initialize:function(url,options){this.addEvent('onSuccess',this.onComplete);this.setOptions(options);this.options.data=this.options.data||this.options.postBody;if(!['post','get'].contains(this.options.method)){this._method='_method='+this.options.method;this.options.method='post';} this.parent();this.setHeader('X-Requested-With','XMLHttpRequest');this.setHeader('Accept','text/javascript, text/html, application/xml, text/xml, */*');this.url=url;},onComplete:function(){if(this.options.update)$(this.options.update).empty().setHTML(this.response.text);if(this.options.evalScripts||this.options.evalResponse)this.evalScripts();this.fireEvent('onComplete',[this.response.text,this.response.xml],20);},request:function(data){data=data||this.options.data;switch($type(data)){case'element':data=$(data).toQueryString();break;case'object':data=Object.toQueryString(data);} if(this._method)data=(data)?[this._method,data].join('&'):this._method;return this.send(this.url,data);},evalScripts:function(){var script,scripts;if(this.options.evalResponse||(/(ecma|java)script/).test(this.getHeader('Content-type')))scripts=this.response.text;else{scripts=[];var regexp=/]*>([\s\S]*?)<\/script>/gi;while((script=regexp.exec(this.response.text)))scripts.push(script[1]);scripts=scripts.join('\n');} if(scripts)(window.execScript)?window.execScript(scripts):window.setTimeout(scripts,0);},getHeader:function(name){try{return this.transport.getResponseHeader(name);}catch(e){};return null;}});Object.toQueryString=function(source){var queryString=[];for(var property in source)queryString.push(encodeURIComponent(property)+'='+encodeURIComponent(source[property]));return queryString.join('&');};Element.extend({send:function(options){return new Ajax(this.getProperty('action'),$merge({data:this.toQueryString()},options,{method:'post'})).request();}});var Cookie=new Abstract({options:{domain:false,path:false,duration:false,secure:false},set:function(key,value,options){options=$merge(this.options,options);value=encodeURIComponent(value);if(options.domain)value+='; domain='+options.domain;if(options.path)value+='; path='+options.path;if(options.duration){var date=new Date();date.setTime(date.getTime()+options.duration*24*60*60*1000);value+='; expires='+date.toGMTString();} if(options.secure)value+='; secure';document.cookie=key+'='+value;return $extend(options,{'key':key,'value':value});},get:function(key){var value=document.cookie.match('(?:^|;)\\s*'+key.escapeRegExp()+'=([^;]*)');return value?decodeURIComponent(value[1]):false;},remove:function(cookie,options){if($type(cookie)=='object')this.set(cookie.key,'',$merge(cookie,{duration:-1}));else this.set(cookie,'',$merge(options,{duration:-1}));}});var Json={toString:function(obj){switch($type(obj)){case'string':return'"'+obj.replace(/(["\\])/g,'\\$1')+'"';case'array':return'['+obj.map(Json.toString).join(',')+']';case'object':var string=[];for(var property in obj)string.push(Json.toString(property)+':'+Json.toString(obj[property]));return'{'+string.join(',')+'}';case'number':if(isFinite(obj))break;case false:return'null';} return String(obj);},evaluate:function(str,secure){return(($type(str)!='string')||(secure&&!str.test(/^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/)))?null:eval('('+str+')');}};Json.Remote=XHR.extend({initialize:function(url,options){this.url=url;this.addEvent('onSuccess',this.onComplete);this.parent(options);this.setHeader('X-Request','JSON');},send:function(obj){return this.parent(this.url,'json='+Json.toString(obj));},onComplete:function(){this.fireEvent('onComplete',[Json.evaluate(this.response.text,this.options.secure)]);}});var Asset=new Abstract({javascript:function(source,properties){properties=$merge({'onload':Class.empty},properties);var script=new Element('script',{'src':source}).addEvents({'load':properties.onload,'readystatechange':function(){if(this.readyState=='complete')this.fireEvent('load');}});delete properties.onload;return script.setProperties(properties).inject(document.head);},css:function(source,properties){return new Element('link',$merge({'rel':'stylesheet','media':'screen','type':'text/css','href':source},properties)).inject(document.head);},image:function(source,properties){properties=$merge({'onload':Class.empty,'onabort':Class.empty,'onerror':Class.empty},properties);var image=new Image();image.src=source;var element=new Element('img',{'src':source});['load','abort','error'].each(function(type){var event=properties['on'+type];delete properties['on'+type];element.addEvent(type,function(){this.removeEvent(type,arguments.callee);event.call(this);});});if(image.width&&image.height)element.fireEvent('load',element,1);return element.setProperties(properties);},images:function(sources,options){options=$merge({onComplete:Class.empty,onProgress:Class.empty},options);if(!sources.push)sources=[sources];var images=[];var counter=0;sources.each(function(source){var img=new Asset.image(source,{'onload':function(){options.onProgress.call(this,counter);counter++;if(counter==sources.length)options.onComplete();}});images.push(img);});return new Elements(images);}});var Hash=new Class({length:0,initialize:function(object){this.obj=object||{};this.setLength();},get:function(key){return(this.hasKey(key))?this.obj[key]:null;},hasKey:function(key){return(key in this.obj);},set:function(key,value){if(!this.hasKey(key))this.length++;this.obj[key]=value;return this;},setLength:function(){this.length=0;for(var p in this.obj)this.length++;return this;},remove:function(key){if(this.hasKey(key)){delete this.obj[key];this.length--;} return this;},each:function(fn,bind){$each(this.obj,fn,bind);},extend:function(obj){$extend(this.obj,obj);return this.setLength();},merge:function(){this.obj=$merge.apply(null,[this.obj].extend(arguments));return this.setLength();},empty:function(){this.obj={};this.length=0;return this;},keys:function(){var keys=[];for(var property in this.obj)keys.push(property);return keys;},values:function(){var values=[];for(var property in this.obj)values.push(this.obj[property]);return values;}});function $H(obj){return new Hash(obj);};Hash.Cookie=Hash.extend({initialize:function(name,options){this.name=name;this.options=$extend({'autoSave':true},options||{});this.load();},save:function(){if(this.length==0){Cookie.remove(this.name,this.options);return true;} var str=Json.toString(this.obj);if(str.length>4096)return false;Cookie.set(this.name,str,this.options);return true;},load:function(){this.obj=Json.evaluate(Cookie.get(this.name),true)||{};this.setLength();}});Hash.Cookie.Methods={};['extend','set','merge','empty','remove'].each(function(method){Hash.Cookie.Methods[method]=function(){Hash.prototype[method].apply(this,arguments);if(this.options.autoSave)this.save();return this;};});Hash.Cookie.implement(Hash.Cookie.Methods);var Color=new Class({initialize:function(color,type){type=type||(color.push?'rgb':'hex');var rgb,hsb;switch(type){case'rgb':rgb=color;hsb=rgb.rgbToHsb();break;case'hsb':rgb=color.hsbToRgb();hsb=color;break;default:rgb=color.hexToRgb(true);hsb=rgb.rgbToHsb();} rgb.hsb=hsb;rgb.hex=rgb.rgbToHex();return $extend(rgb,Color.prototype);},mix:function(){var colors=$A(arguments);var alpha=($type(colors[colors.length-1])=='number')?colors.pop():50;var rgb=this.copy();colors.each(function(color){color=new Color(color);for(var i=0;i<3;i++)rgb[i]=Math.round((rgb[i]/100*(100-alpha))+(color[i]/100*alpha));});return new Color(rgb,'rgb');},invert:function(){return new Color(this.map(function(value){return 255-value;}));},setHue:function(value){return new Color([value,this.hsb[1],this.hsb[2]],'hsb');},setSaturation:function(percent){return new Color([this.hsb[0],percent,this.hsb[2]],'hsb');},setBrightness:function(percent){return new Color([this.hsb[0],this.hsb[1],percent],'hsb');}});function $RGB(r,g,b){return new Color([r,g,b],'rgb');};function $HSB(h,s,b){return new Color([h,s,b],'hsb');};Array.extend({rgbToHsb:function(){var red=this[0],green=this[1],blue=this[2];var hue,saturation,brightness;var max=Math.max(red,green,blue),min=Math.min(red,green,blue);var delta=max-min;brightness=max/255;saturation=(max!=0)?delta/max:0;if(saturation==0){hue=0;}else{var rr=(max-red)/delta;var gr=(max-green)/delta;var br=(max-blue)/delta;if(red==max)hue=br-gr;else if(green==max)hue=2+rr-br;else hue=4+gr-rr;hue/=6;if(hue<0)hue++;} return[Math.round(hue*360),Math.round(saturation*100),Math.round(brightness*100)];},hsbToRgb:function(){var br=Math.round(this[2]/100*255);if(this[1]==0){return[br,br,br];}else{var hue=this[0]%360;var f=hue%60;var p=Math.round((this[2]*(100-this[1]))/10000*255);var q=Math.round((this[2]*(6000-this[1]*f))/600000*255);var t=Math.round((this[2]*(6000-this[1]*(60-f)))/600000*255);switch(Math.floor(hue/60)){case 0:return[br,t,p];case 1:return[q,br,p];case 2:return[p,br,t];case 3:return[p,q,br];case 4:return[t,p,br];case 5:return[br,p,q];}} return false;}});var Scroller=new Class({options:{area:20,velocity:1,onChange:function(x,y){this.element.scrollTo(x,y);}},initialize:function(element,options){this.setOptions(options);this.element=$(element);this.mousemover=([window,document].contains(element))?$(document.body):this.element;},start:function(){this.coord=this.getCoords.bindWithEvent(this);this.mousemover.addListener('mousemove',this.coord);},stop:function(){this.mousemover.removeListener('mousemove',this.coord);this.timer=$clear(this.timer);},getCoords:function(event){this.page=(this.element==window)?event.client:event.page;if(!this.timer)this.timer=this.scroll.periodical(50,this);},scroll:function(){var el=this.element.getSize();var pos=this.element.getPosition();var change={'x':0,'y':0};for(var z in this.page){if(this.page[z]<(this.options.area+pos[z])&&el.scroll[z]!=0) change[z]=(this.page[z]-this.options.area-pos[z])*this.options.velocity;else if(this.page[z]+this.options.area>(el.size[z]+pos[z])&&el.scroll[z]+el.size[z]!=el.scrollSize[z]) change[z]=(this.page[z]-el.size[z]+this.options.area-pos[z])*this.options.velocity;} if(change.y||change.x)this.fireEvent('onChange',[el.scroll.x+change.x,el.scroll.y+change.y]);}});Scroller.implement(new Events,new Options);var Slider=new Class({options:{onChange:Class.empty,onComplete:Class.empty,onTick:function(pos){this.knob.setStyle(this.p,pos);},mode:'horizontal',steps:100,offset:0},initialize:function(el,knob,options){this.element=$(el);this.knob=$(knob);this.setOptions(options);this.previousChange=-1;this.previousEnd=-1;this.step=-1;this.element.addEvent('mousedown',this.clickedElement.bindWithEvent(this));var mod,offset;switch(this.options.mode){case'horizontal':this.z='x';this.p='left';mod={'x':'left','y':false};offset='offsetWidth';break;case'vertical':this.z='y';this.p='top';mod={'x':false,'y':'top'};offset='offsetHeight';} this.max=this.element[offset]-this.knob[offset]+(this.options.offset*2);this.half=this.knob[offset]/2;this.getPos=this.element['get'+this.p.capitalize()].bind(this.element);this.knob.setStyle('position','relative').setStyle(this.p,-this.options.offset);var lim={};lim[this.z]=[-this.options.offset,this.max-this.options.offset];this.drag=new Drag.Base(this.knob,{limit:lim,modifiers:mod,snap:0,onStart:function(){this.draggedKnob();}.bind(this),onDrag:function(){this.draggedKnob();}.bind(this),onComplete:function(){this.draggedKnob();this.end();}.bind(this)});if(this.options.initialize)this.options.initialize.call(this);},set:function(step){this.step=step.limit(0,this.options.steps);this.checkStep();this.end();this.fireEvent('onTick',this.toPosition(this.step));return this;},clickedElement:function(event){var position=event.page[this.z]-this.getPos()-this.half;position=position.limit(-this.options.offset,this.max-this.options.offset);this.step=this.toStep(position);this.checkStep();this.end();this.fireEvent('onTick',position);},draggedKnob:function(){this.step=this.toStep(this.drag.value.now[this.z]);this.checkStep();},checkStep:function(){if(this.previousChange!=this.step){this.previousChange=this.step;this.fireEvent('onChange',this.step);}},end:function(){if(this.previousEnd!==this.step){this.previousEnd=this.step;this.fireEvent('onComplete',this.step+'');}},toStep:function(position){return Math.round((position+this.options.offset)/this.max*this.options.steps);},toPosition:function(step){return this.max*step/this.options.steps;}});Slider.implement(new Events);Slider.implement(new Options);var SmoothScroll=Fx.Scroll.extend({initialize:function(options){this.parent(window,options);this.links=(this.options.links)?$$(this.options.links):$$(document.links);var location=window.location.href.match(/^[^#]*/)[0]+'#';this.links.each(function(link){if(link.href.indexOf(location)!=0)return;var anchor=link.href.substr(location.length);if(anchor&&$(anchor))this.useLink(link,anchor);},this);if(!window.webkit419)this.addEvent('onComplete',function(){window.location.hash=this.anchor;});},useLink:function(link,anchor){link.addEvent('click',function(event){this.anchor=anchor;this.toElement(anchor);event.stop();}.bindWithEvent(this));}});var Sortables=new Class({options:{handles:false,onStart:Class.empty,onComplete:Class.empty,ghost:true,snap:3,onDragStart:function(element,ghost){ghost.setStyle('opacity',0.7);element.setStyle('opacity',0.7);},onDragComplete:function(element,ghost){element.setStyle('opacity',1);ghost.remove();this.trash.remove();}},initialize:function(list,options){this.setOptions(options);this.list=$(list);this.elements=this.list.getChildren();this.handles=(this.options.handles)?$$(this.options.handles):this.elements;this.bound={'start':[],'moveGhost':this.moveGhost.bindWithEvent(this)};for(var i=0,l=this.handles.length;i0);var prev=this.active.getPrevious();var next=this.active.getNext();if(prev&&up&&nownext.getCoordinates().top)this.active.injectAfter(next);this.previous=now;},serialize:function(converter){return this.list.getChildren().map(converter||function(el){return this.elements.indexOf(el);},this);},end:function(){this.previous=null;document.removeListener('mousemove',this.bound.move);document.removeListener('mouseup',this.bound.end);if(this.options.ghost){document.removeListener('mousemove',this.bound.moveGhost);this.fireEvent('onDragComplete',[this.active,this.ghost]);} this.fireEvent('onComplete',this.active);}});Sortables.implement(new Events,new Options);var Tips=new Class({options:{onShow:function(tip){tip.setStyle('visibility','visible');},onHide:function(tip){tip.setStyle('visibility','hidden');},maxTitleChars:30,showDelay:100,hideDelay:100,className:'tool',offsets:{'x':16,'y':16},fixed:false},initialize:function(elements,options){this.setOptions(options);this.toolTip=new Element('div',{'class':this.options.className+'-tip','styles':{'position':'absolute','top':'0','left':'0','visibility':'hidden'}}).inject(document.body);this.wrapper=new Element('div').inject(this.toolTip);$$(elements).each(this.build,this);if(this.options.initialize)this.options.initialize.call(this);},build:function(el){el.$tmp.myTitle=(el.href&&el.getTag()=='a')?el.href.replace('http://',''):(el.rel||false);if(el.title){var dual=el.title.split('::');if(dual.length>1){el.$tmp.myTitle=dual[0].trim();el.$tmp.myText=dual[1].trim();}else{el.$tmp.myText=el.title;} el.removeAttribute('title');}else{el.$tmp.myText=false;} if(el.$tmp.myTitle&&el.$tmp.myTitle.length>this.options.maxTitleChars)el.$tmp.myTitle=el.$tmp.myTitle.substr(0,this.options.maxTitleChars-1)+"…";el.addEvent('mouseenter',function(event){this.start(el);if(!this.options.fixed)this.locate(event);else this.position(el);}.bind(this));if(!this.options.fixed)el.addEvent('mousemove',this.locate.bindWithEvent(this));var end=this.end.bind(this);el.addEvent('mouseleave',end);el.addEvent('trash',end);},start:function(el){this.wrapper.empty();if(el.$tmp.myTitle){this.title=new Element('span').inject(new Element('div',{'class':this.options.className+'-title'}).inject(this.wrapper)).setHTML(el.$tmp.myTitle);} if(el.$tmp.myText){this.text=new Element('span').inject(new Element('div',{'class':this.options.className+'-text'}).inject(this.wrapper)).setHTML(el.$tmp.myText);} $clear(this.timer);this.timer=this.show.delay(this.options.showDelay,this);},end:function(event){$clear(this.timer);this.timer=this.hide.delay(this.options.hideDelay,this);},position:function(element){var pos=element.getPosition();this.toolTip.setStyles({'left':pos.x+this.options.offsets.x,'top':pos.y+this.options.offsets.y});},locate:function(event){var win={'x':window.getWidth(),'y':window.getHeight()};var scroll={'x':window.getScrollLeft(),'y':window.getScrollTop()};var tip={'x':this.toolTip.offsetWidth,'y':this.toolTip.offsetHeight};var prop={'x':'left','y':'top'};for(var z in prop){var pos=event.page[z]+this.options.offsets[z];if((pos+tip[z]-scroll[z])>win[z])pos=event.page[z]-this.options.offsets[z]-tip[z];this.toolTip.setStyle(prop[z],pos);};},show:function(){if(this.options.timeout)this.timer=this.hide.delay(this.options.timeout,this);this.fireEvent('onShow',[this.toolTip]);},hide:function(){this.fireEvent('onHide',[this.toolTip]);}});Tips.implement(new Events,new Options);var Group=new Class({initialize:function(){this.instances=$A(arguments);this.events={};this.checker={};},addEvent:function(type,fn){this.checker[type]=this.checker[type]||{};this.events[type]=this.events[type]||[];if(this.events[type].contains(fn))return false;else this.events[type].push(fn);this.instances.each(function(instance,i){instance.addEvent(type,this.check.bind(this,[type,instance,i]));},this);return this;},check:function(type,instance,i){this.checker[type][i]=true;var every=this.instances.every(function(current,j){return this.checker[type][j]||false;},this);if(!every)return;this.checker[type]={};this.events[type].each(function(event){event.call(this,this.instances,instance);},this);}});var Accordion=Fx.Elements.extend({options:{onActive:Class.empty,onBackground:Class.empty,display:0,show:false,height:true,width:false,opacity:true,fixedHeight:false,fixedWidth:false,wait:false,alwaysHide:false},initialize:function(){var options,togglers,elements,container;$each(arguments,function(argument,i){switch($type(argument)){case'object':options=argument;break;case'element':container=$(argument);break;default:var temp=$$(argument);if(!togglers)togglers=temp;else elements=temp;}});this.togglers=togglers||[];this.elements=elements||[];this.container=$(container);this.setOptions(options);this.previous=-1;if(this.options.alwaysHide)this.options.wait=true;if($chk(this.options.show)){this.options.display=false;this.previous=this.options.show;} if(this.options.start){this.options.display=false;this.options.show=false;} this.effects={};if(this.options.opacity)this.effects.opacity='fullOpacity';if(this.options.width)this.effects.width=this.options.fixedWidth?'fullWidth':'offsetWidth';if(this.options.height)this.effects.height=this.options.fixedHeight?'fullHeight':'scrollHeight';for(var i=0,l=this.togglers.length;i0));this.fireEvent(hide?'onBackground':'onActive',[this.togglers[i],el]);for(var fx in this.effects)obj[i][fx]=hide?0:el[this.effects[fx]];},this);return this.start(obj);},showThisHideOpen:function(index){return this.display(index);}});Fx.Accordion=Accordion;_application/javascriptObplist00noX$versionX$objectsY$archiverT$top""()012NOPQRSTUVWXYZ[\]^_`abcdhiU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1 !#$%&[NS.relativeWNS.base_4http://www.theabi.org.uk/media/system/js/mootools.js*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[w3456BWNS.keysZNS.objects789:;<=>?@A CDEFGHIJKLMVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-Length_Content-EncodingTVaryTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-Alive_application/javascript_Sat, 29 Oct 2011 04:54:16 GMT_Sun, 13 Jun 2010 12:17:47 GMTU20347Tgzip_Accept-Encoding_"c34d38-122c2-488e85c2bb0c0"_timeout=15, max=100*+ef_NSMutableDictionaryeg/\NSDictionary"*+jk_NSHTTPURLResponselm/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverpq_WebResourceResponse#-27\b}*39<BKTV]epr~"-FKVo -27KOcqr_4http://www.theabi.org.uk/media/system/js/mootools.jsO/** * @version $Id: caption.js 5263 2006-10-02 01:25:24Z webImagery $ * @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved. * @license GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ /** * JCaption javascript behavior * * Used for displaying image captions * * @package Joomla * @since 1.5 * @version 1.0 */ var JCaption = new Class({ initialize: function(selector) { this.selector = selector; var images = $$(selector); images.each(function(image){ this.createCaption(image); }, this); }, createCaption: function(element) { var caption = document.createTextNode(element.title); var container = document.createElement("div"); var text = document.createElement("p"); var width = element.getAttribute("width"); var align = element.getAttribute("align"); if(!width) { width = element.width; } //Windows fix if (!align) align = element.getStyle("float"); // Rest of the world fix if (!align) // IE DOM Fix align = element.style.styleFloat; if (align=="") { align="none"; } text.appendChild(caption); text.className = this.selector.replace('.', '_'); element.parentNode.insertBefore(container, element); container.appendChild(element); if ( element.title != "" ) { container.appendChild(text); } container.className = this.selector.replace('.', '_'); container.className = container.className + " " + align; container.setAttribute("style","float:"+align); container.style.width = width + "px"; } }); document.caption = null; window.addEvent('load', function() { var caption = new JCaption('img.caption') document.caption = caption }); _application/javascriptObplist00noX$versionX$objectsY$archiverT$top""()012NOPQRSTUVWXYZ[\]^_`abcdhiU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1 !#$%&[NS.relativeWNS.base_3http://www.theabi.org.uk/media/system/js/caption.js*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[wJ83456BWNS.keysZNS.objects789:;<=>?@A CDEFGHIJKLMVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-Length_Content-EncodingTVaryTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-Alive_application/javascript_Sat, 29 Oct 2011 04:54:16 GMT_Sun, 13 Jun 2010 12:17:46 GMTS921Tgzip_Accept-Encoding_"c34d33-7ab-488e85c1c6e80"_timeout=15, max=100*+ef_NSMutableDictionaryeg/\NSDictionary*+jk_NSHTTPURLResponselm/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverpq_WebResourceResponse#-27\b})28;AJSU\doq}!,EJUn(+0DH\j|r_3http://www.theabi.org.uk/media/system/js/caption.jsO2/*****************************/ /*** Core html setup stuff ***/ /*****************************/ html { height: 100%; margin-bottom: 1px; } form { margin: 0; padding: 0; } body { font-family: Helvetica,Arial,sans-serif; line-height: 1.3em; margin: 0px 0px 0px 0px; font-size: 12px; color: #333; } a:link, a:visited { text-decoration: none; font-weight: normal; } a:hover { text-decoration: underline; font-weight: normal; } input.button { cursor: pointer; } p { margin-top: 0; margin-bottom: 5px; } img { border: 0 none; } /*****************************************/ /*** Template specific layout elements ***/ /*****************************************/ #page_bg { padding: 10px 0; margin-bottom: 1px; } div.center { text-align: center; } div#wrapper { margin-left: auto; margin-right: auto; } body.width_medium div#wrapper { width: 950px; } body.width_small div#wrapper { width: 773px; } body.width_fmax div#wrapper { min-width: 750px; max-width: 1050px; } div#header_l { position: relative; } div#header_r { height: 90px; padding-left: 370px; padding-right: 60px; padding-top: 25px; overflow: hidden; text-align: right; } div#logo { position: absolute; left: 0; top: 0; float: left; width: 326px; height: 100px; background: url(../images/abi_logo.png) 0 0 no-repeat; margin-left: 30px; margin-top: 13px; } div#newsflash { width: auto; margin-left: 350px; margin-right: 30px; border: 1px solid #00f; } div#tabarea { background: #16325d url(../images/mw_header_b.png) 0 0 repeat-x; /* was f7f7f7*/ margin: 3px 10px; /* was 0 11px */ } div#tabarea_l { background: url(../images/mw_header_l_b.png) 0 0 no-repeat; padding-left: 32px; } div#tabarea_r { height: 26px; background: url(../images/mw_header_r_b.png) 100% 0 no-repeat; padding-right: 1px; } div#footer_r { padding-top: 10px; height: 82px; overflow: hidden; } div#footer_r div { text-align: center; font-size: .90em; color: #aaa; } div#footer_r a:link, div#footer_r a:visited { color: #666; font-size: 1.20em; } div#footerspacer { height: 10px; } #pathway { padding: 0px 10px 8px; width: auto; margin-top: -2px; margin-right: 250px; text-align: left; } #search { float: right; width:320px; margin-top: -20px; margin-right: 30px; height: 40px; overflow: hidden; text-align:right; } form#searchForm input { vertical-align: middle; } form#searchForm table { border-collapse: collapse; } form#searchForm td { padding:0; } #mod_search_searchword { padding-left: 3px; } #area { padding: 0; } #whitebox { margin: 0 21px 0px 21px; background: #fff; width: auto; } #whitebox div { text-align: left; } #whitebox_t { background: #fff url(../images/mw_content_t.png) 0 0 repeat-x; } #whitebox_tl { background: url(../images/mw_content_t_l.png) 0 0 no-repeat; } #whitebox_tr { height: 10px; overflow: hidden; background: url(../images/mw_content_t_r.png) 100% 0 no-repeat; } #whitebox_m { border-left: 1px solid #ccc; border-right: 1px solid #ccc; width: auto; padding: 1px 8px; } #whitebox_b { margin-top: -5px; background: url(../images/mw_content_b.png) 0 100% repeat-x; } #whitebox_bl { background: url(../images/mw_content_b_l.png) 0 100% no-repeat; } #whitebox_br { height: 13px; background: url(../images/mw_content_b_r.png) 100% 100% no-repeat; } /* horizontal pill menu */ table.pill { /*margin-left: auto;*/ /*margin-right: auto;*/ margin-left: auto; margin-right: auto; padding: 0; } td.pill_l { background: url(../images/mw_menu_cap_l.png) repeat-x; width: 20px; height: 32px; } td.pill_m { background: url(../images/mw_menu_normal_bg.png) repeat-x; padding: 0; margin: 0; width: auto; } td.pill_r { background: url(../images/mw_menu_cap_r.png) repeat-x; width: 19px; height: 32px; } #pillmenu { white-space: nowrap; height: 32px; float: left; } #pillmenu ul { margin: 0; padding: 0; list-style:none; } #pillmenu li { float: left; background: url(../images/mw_menu_separator.png) top right no-repeat; margin: 0; padding: 0; } #pillmenu a { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; float:left; display:block; height: 24px; line-height: 24px; padding: 0 20px; color: #ffffff; text-decoration: none; } #pillmenu a#active_menu-nav { margin-top:2px; height: 21px; line-height: 21px; background-position: 0 0; } #leftcolumn { padding: 0; margin: 0; width: 20%; float:left; } #maincolumn, #maincolumn_full { margin-left: 20%; padding-left: 15px; width: 75%; } #maincolumn_full { margin-left: 0; padding: 0; width: 100%; } table.nopad { width: 100%; border-collapse: collapse; padding: 0; margin: 0; margin-bottom: 15px; } table.nopad td.middle_pad { width: 20px; } /*****************************************/ /*** Joomla! specific content elements ***/ /*****************************************/ div.offline { background: #fffebb; width: 100%; position: absolute; top: 0; left: 0; font-size: 1.2em; padding: 5px; } span.pathway { display: block; margin: 0 20px; height: 16px; line-height: 16px; overflow: hidden; } /* headers */ div.componentheading { padding-left: 0px; } h1 { padding: 0; font-family:Helvetica ,Arial,sans-serif; font-size: 1.3em; font-weight: bold; vertical-align: bottom; color: #666; text-align: left; width: 100%; } h2, .contentheading { padding: 0; font-family: Arial, Helvetica,sans-serif; font-size: 1.4em; font-weight: normal; vertical-align: bottom; color: #333; text-align: left; width: 100%; } table.contentpaneopen h3 { margin-top: 25px; } h4 { font-family: Arial, Helvetica, sans-serif; color: #333; } h3, .componentheading, table.moduletable th, legend { margin: 0; font-weight: bold; font-family: Helvetica,Arial,sans-serif; font-size: 1.5em; padding-left: 0px; margin-bottom: 10px; text-align: left; } /* small text */ .small { font-size: .90em; color: #999; font-weight: normal; text-align: left; } .modifydate { height: 20px; vertical-align: bottom; font-size: .90em; color: #999; font-weight: normal; text-align: left; } .createdate { height: 20px; vertical-align: top; font-size: .90em; color: #999; font-weight: normal; vertical-align: top; padding-bottom: 5px; padding-top: 0px; } a.readon { margin-top: 10px; display: block; float: left; background: url(../images/mw_readon.png) top right no-repeat; padding-right: 20px; line-height: 14px; height: 16px; } /* form validation */ .invalid { border-color: #ff0000; } label.invalid { color: #ff0000; } /** overlib **/ .ol-foreground { background-color: #f6f6f6; } .ol-background { background-color: #666; } .ol-textfont { font-family: Arial, Helvetica, sans-serif; font-size: 10px; } .ol-captionfont { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #f6f6f6; font-weight: bold; } .ol-captionfont a { color: #0B55C4; text-decoration: none; font-size: 12px; } .ol-closefont {} /* menu links */ a.mainlevel:link, a.mainlevel:visited { padding-left: 5px; } a.mainlevel:hover { } /* spacers */ span.article_separator { display: block; height: 0px; } .article_column { padding-right: 5px; } .column_separator { border-left: 1px dashed #e0e0e0; padding-left: 10px; } td.buttonheading { } td.buttonheading img { border:none; } .clr { clear: both; } td.greyline { width: 20px; background: url(../images/mw_line_grey.png) 50% 0 repeat-y; } div#maindivider { border-top: 1px solid #ddd; margin-bottom: 10px; overflow: hidden; height: 1px; } table.blog span.article_separator { display: block; height: 20px; } /* edit button */ .contentpaneopen_edit{ float: left; } /* table of contents */ table.contenttoc { margin: 5px; border: 1px solid #ccc; padding: 5px; float: right; } table.contenttoc td { padding: 0 5px; } /* content tables */ td.sectiontableheader { background: #efefef; color: #333; font-weight: bold; padding: 4px; border-right: 1px solid #fff; } tr.sectiontableentry0 td, tr.sectiontableentry1 td, tr.sectiontableentry2 td { padding: 4px; } td.sectiontableentry0, td.sectiontableentry1, td.sectiontableentry2 { padding: 3px; } /* content styles */ table.contentpaneopen, table.contentpane { margin: 0; padding: 0; width: 100%; } table.contentpaneopen li { margin-bottom: 5px; } table.contentpaneopen fieldset { border: 0; border-top: 1px solid #ddd; } table.contentpaneopen h3 { margin-top: 25px; } table.contentpaneopen h4 { font-family: Arial, Helvetica, sans-serif; color: #333; } .highlight { background-color: #fffebb; } /* module control elements */ table.user1user2 div.moduletable { margin-bottom: 0px; } div.moduletable, div.module { margin-bottom: 25px; } div.module_menu h3 { font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-weight: bold; color: #eee; margin: -23px -4px 5px -5px; padding-left: 10px; padding-bottom: 2px; } div.module_menu { margin: 0; padding: 0; margin-bottom: 15px; } div.module_menu div div div { padding: 10px; padding-top: 30px; padding-bottom: 15px; width: auto; } div.module_menu div div div div { background: none; padding: 0; } div.module_menu ul { margin: 10px 0; padding-left: 20px; } div.module_menu ul li a:link, div.module_menu ul li a:visited { font-weight: bold; } #leftcolumn div.module { padding: 0 10px; } #leftcolumn div.module table { width: auto; } /* forms */ table.adminform textarea { width: 540px; height: 400px; font-size: 1em; color: #000099; } div.search input { width: 145px; border: 1px solid #ccc; margin: 15px 0 10px 0; } form#form-login fieldset { border: 0 none; margin: 0em; padding: 0.2em;} form#form-login ul { padding-left: 20px; } form#com-form-login fieldset { border: 0 none; margin: 0em; padding: 0.2em;} form#com-form-login ul { padding-left: 20px; } /* thumbnails */ div.mosimage { margin: 5px; } div.mosimage_caption { font-size: .90em; color: #666; } div.caption { padding: 0 10px 0 10px; } div.caption img { border: 1px solid #CCC; } div.caption p { font-size: .90em; color: #666; text-align: center; } div.img_caption { padding: 0 10px 0 10px; } div.img_caption img { border: 1px solid #CCC; } div.img_caption p { font-size: .90em; color: #666; text-align: center; } /* Parameter Table */ table.paramlist { margin-top: 5px; } table.paramlist td.paramlist_key { width: 128px; text-align: left; height: 30px; } table.paramlist td.paramlist_value { } div.message { font-family : "Trebuchet MS", Arial, Helvetica, sans-serif; font-weight: bold; font-size : 14px; color : #c30; text-align: center; width: auto; background-color: #f9f9f9; border: solid 1px #d5d5d5; margin: 3px 0px 10px; padding: 3px 20px; } /* Banners module */ /* Default skyscraper style */ .bannergroup { } .banneritem img { display: block; margin-left: auto; margin-right: auto; } /* Text advert style */ .banneritem_text { padding: 4px; font-size: 11px; } .bannerfooter_text { padding: 4px; font-size: 11px; background-color: #F7F7F7; text-align: right; } /* System Messages */ /* see system general.css */ .pagination span { padding: 2px; } .pagination a { padding: 2px; } /* Polls */ .pollstableborder td { text-align: left; } /* WebLinks */ span.description { display:block; padding-left: 30px; } /* Frontend Editing*/ fieldset { border: 1px solid #ccc; margin-top: 15px; padding: 15px; } legend { margin: 0; padding: 0 10px; } td.key { border-bottom:1px solid #eee; color: #666; } /* Tooltips */ .tool-tip { float: left; background: #ffc; border: 1px solid #D4D5AA; padding: 5px; max-width: 200px; } .tool-title { padding: 0; margin: 0; font-size: 100%; font-weight: bold; margin-top: -15px; padding-top: 15px; padding-bottom: 5px; background: url(../../system/images/selector-arrow.png) no-repeat; } .tool-text { font-size: 100%; margin: 0; } /* System Standard Messages */ #system-message { margin-bottom: 20px; } #system-message dd.message ul { background: #C3D2E5 url(../../system/images/notice-info.png) 4px center no-repeat;border-top: 3px solid #DE7A7B; border-bottom: 3px solid #DE7A7B; margin:0px; padding-left: 40px; text-indent:0px;} /* System Error Messages */ #system-message dd.error ul { color: #c00; background: #E6C0C0 url(../../system/images/notice-alert.png) 4px center no-repeat; border-top: 3px solid #DE7A7B; border-bottom: 3px solid #DE7A7B; margin:0px; padding-left: 40px; text-indent:0px;} /* System Notice Messages */ #system-message dd.notice ul { color: #c00; background: #EFE7B8 url(../../system/images/notice-note.png) 4px center no-repeat; border-top: 3px solid #F0DC7E; border-bottom: 3px solid #F0DC7E; margin:0px; padding-left: 40px; text-indent:0px;} #syndicate{ float:left; padding-left: 25px; } #power_by{ float:right; padding-right: 25px; } /* Component Specific Fixes */ #component-contact table td { padding: 2px 0; }Xtext/cssObplist00noX$versionX$objectsY$archiverT$top""()012NOPQRSTUVWXYZ[\]^_`abcdhiU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1 !#$%&[NS.relativeWNS.base_Ahttp://www.theabi.org.uk/templates/rhuk_milkyway/css/template.css*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[x*3456BWNS.keysZNS.objects789:;<=>?@A CDEFGHIJKLMVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-Length_Content-EncodingTVaryTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveXtext/css_Sat, 29 Oct 2011 04:54:16 GMT_Fri, 20 May 2011 11:18:25 GMTT3367Tgzip_Accept-Encoding_"c382f9-32f7-4a3b347bec240"_timeout=15, max=99*+ef_NSMutableDictionaryeg/\NSDictionary2*+jk_NSHTTPURLResponselm/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverpq_WebResourceResponse#-27\b}',7@FIOXacjr}%*/:SXcl'*/CG[i{~r_Ahttp://www.theabi.org.uk/templates/rhuk_milkyway/css/template.css OqPNG  IHDRFdęy pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_FfIDATxuG>: < ēndqM6!D@upd܎uGW35͙o{]=LꪧW-4M(ҧҦ.GDog_þ}mQ0Ħ;@H|CQۛ}.]2Wx%&'䷉"+ 6{4{" ʠ0(m!PAtkR160Fc2xOBKop<vY+J4s(lԾǘ(jOc{5jPC;h'0ڟF|8>`vd:c1`YӎhaD> `$}:/ > (݀Rݶm+۷oe׎m+p8B|bC(b:HrT#Bfnfg-hu &)3ؐ3cj,NRĖ,6 e'>hvPV,[ƚU+ٴqaILH$9)\?KiY)q8>/#BUM e%lXJ\YYjv<]vt#w2HrE/fa(2&1? m$fN `{=a3)ڳ8zGBb"n=tؙa'&+/>eҲs{fL߂ sk)t֝J 7m+%dҥ0;RS.zN9팄m '{q0Ɔ=/2TVrֹ*Lzz&'|3~R}!%%%ٽ U[0x4\r15n̦ x;hѺz dvS?Rfn;T`0cFZ ݘz(sT @l gUU>H˘4q{Dž\ARB֭ݷ_lJJIMKPJJH@SݴnӞ>`*.hI^ܵ+%%{ҽ:vLM )ٷnݺsUג̳Oo^ׅ>L O6zHLqtCXˎIL!0F,;Zd{bjH"N6qVo)f3s7ѽG/6nXޒ"λn.dӆt M=wS[QXuy &v: 5-Vېŏ'sAtԅkVrb5oA~~Mr9K47s|8Nz gNO}3d0fݮXˎIL0:$`b,1UD@ISS1ywhڬ9LN9 ΘǞ]㏨FFFg{Dye$>.oDzMUE%M[Pa#:O>Hôi Ybў?Ub2ktQ?瘃(}^̘*.yٮrhH?&6'Jͮi Qڙcm6%8V҇_d1IL~?0:mrHNΖ&mmMIKW_~|9]@X~5N(UvhVnڵkpy$''3`6%? degPUUTV3o<-SYQΊKtޓVmЪEVXcȈ|0"A{QT r=u~?m۵u۶Z/~JvNZдWQM(2 FImm?cLb{šrdN1qߴi溺_Rv ~]>}E8ܼh.r3 UhѪ5UkXx6'!51L|q~PV^NyYP˖QSUCDCߗ :۷SVRO?@h٢dMdm|嗜0x$<\v.x<:l6FθiRZQ(V`]mb?:4M˔ xOiZP->|E EQ6Æ2_}iZМ]pߤ))G}Xn V-ޣ;3xpjjIMN%19E2 3iFN>4?>zmU9l:f׏s #>*XIL!c$(iKfya;ngw}ƪ%ҮCgvfϘ岫#11 @[63 ,]0!#GtsrofVYY <̳ώ\iiC@|"kƍ[wPYU㉵L96 L19ͦ -[Hy>|$ S&Odx.Ʌ_7_% ҾC'vΗc?ዱ*\w#zw=L([ÒEsigRVZ¤Xz%!#3 y뵗ۯ?fy W^Cٿعcҽg/3zEvsċy壯Řc-ve/ vHN aZ{bYlXˮ&tԙ/?Nضx` č7E_In~?am[zYU٧qjRSYj5֭?]ņuXh!tދ.ǐ#7ݻG٫vOaF+ʌQfƹKVݴ9h/$&KBl(vd qϮ\yt {N&MOrR*۶#%%UKѳwuÒE2iqzǝdeg Mܥ+eK8kg)?tF+sfӥ[w'}H0P}[@vn>/<$:vUD.-3g/<>$FO>|OJS%)u5=v=eԘm1&1#crh )y8nys撖FJJL:&nbg*ҭ{6nZǤx*C0ر3[mN|{t]ζ83A=#5̱Qkjfboc?SPSsĉ+-V|91\.JJKd>_:=zb?t/>Csi\|ٕ4mڌTŒSk4lK/+mڶךv.68 +`0KQ\e 'Md?]͔'1p0<UUDt^y~ 7oډ pFF223#P+ǰ&4dr 7ѣwo̞ ̚Fee15mΤ8a0~!Gx8cEԭ~.5KIY9iR.$&<0z*!%>oc1Dhɦ 4x(:'?ϐFb<,_x`-tO~QIWcl^Ćٹ0PUd?28~`gK"_**DuB.HA^6v'\]Ne7W \/>sŢEW_oػo7d4izm 8Q^չLD} o}6Ԕ($&`4}hz zNjOa_L+fXͼs8d?OUy o[l& 6Z CQRVŎ%ߴ{)YBuuE714bQ  l"+;^]w,4΃q kHT"ʕj,.yTF)ܵ&b*gasnJRrә)3&c*svgիVe.O̞3!--FҫWoivErιqܚC0".>@MIҨغ>z`v$}ɝqi۪)[KA T @n7PpBSu+%PS!s?֬{DM`Trs\df&g|W=+=?Nĉ bp/d';X|)^qi?DA|>#}>s΢kמ̝=N>ӧOFyr2˱pD+L(ra P4FW[@`X {hʱ?r[HrmZq#7VdCk)aed {qq(_ĉF&8o'ͧɹ1mb[F3_Pw=3{6%@XH=Dap0LqUGlOatntЃ⽸=FD#h.LWx5YA.ȁϑ7NZcΜ|>v>aRT|w%L6@M5g!,_!޹;w^oX92v旅2; {ާ^ߞX i[K s|[q`V4v` u+.Iab-(J{GMEJߛ 2~ QnQJ!N`70U ɲybQt9Qʕ  0*+tm^3ab*pFm@G1Ü{f/ M΍QJ+ٴy|2ݥd$St,"v݄oxH⌳Gǜ_fyhъM7`GT/qEYԮj4{ъ}u*r=&F}XGv*drk%-Mms`8~X0)YR{0R 0*0D/fK?=*@q%o/mrv[?=5d:x\{,x B q oR ;kedd@c?чgǎmhul[?DStRg ̚ ]>so'j;IUKF ?C.xՁZt]ՠ6&PFQ](+EUPT0PLJ&GP0݇G$p`7>6<(g*RRL9M2[w C)))|_|< C>~LٵsKӆۙeG\{wUf{> Q>m`_Ѿ 0O ^JfPDtO&ރǥcͦ 8\|p"5UlyN\~?FEE5~4kHC7QLq꩚Eetv*f͜/ٳkHMNfr14Vεф8g06./$ G<nhZ5&)]jZCP5/ln^lxV~G|_ ΃Qb9rhOs. _6A$ϊ([H;c W$rD/ +'.rQ^YNnYh 94iҔ&M2S2|>죲VmBs]&B8ulŪ{U8Y9o!#uM$^71f#&[9iDڴiS2}:** ԢyPMPA5#I0Xi#;2*vy/fuo~ϸ&pNSR +ڈĹ=d$$s8~۷l1Y<5ddy&8r3Q|䣣ˆ5JKQͯט$ p8ptbzNǢl3=q#&' C44`l UWDgayY`f{ojDpwCi2N.080NqI/hl0UT>-QPHNJs T_$ Y94iڜ+VW, 4M# **bLvmYvB6'P^kYSFtc7RzƁ/P2%jN#;h9nT$1n\-UNLaL#BZsP7ΤNn)s ,'@$BJY=w0SN?:@( :];nY΁ Ekq8Lph^+<3:N0Է PlKQY]Ra[+%v0Frcpnt[ >pEl 3@PxLz1WVaۅ>*I1]-68d.@Иl :qƿmL:&9:eK!q8"d%g6n@D}l)L^=b9"zCifٵ˲u9ux7zw@ӿI|83|VN'笻9=`n%c``M`I$&&1Tw/ ,eܗ p0Pt&a 'waㆵ\}M5kIR8?5ZJK̬jzGO 1^6u7 "~^iRaTUoo'|C$T9[_)_ {ԙcv#4ȶUƕn K0jo Xr&zy?ac)mZZZf'ӡ ڷ[wIA4 ºN40t SRIPT"8D$]ӴI))Ȉg9c}Z|=>8&v" PT`){?yBj)ܼ>Ju**+HktK64K#.OA,u5o֌[6Q]^u8HO!(SD6DiYQN%d7bUpu8[D-A4桢P)4rAHt,+kVpVx-Bm&8li(Cyc-mZ ]$V[#k0 uzT,sCO/Xq IbpvPt~m=+J(ujkjHOI4-`O?^MS9?x?Rf6F(*. 1W:!18/Ude%ӵi-Ҽy.y9׭tez`~4͑G1Jcfh.:WHs#fOQ붔G9t\@M!5-Srr);PLݹG)ܼKQдgu.iL6P(zaQqR0'fBbk8{*apa#Cg1z {a8x֘,TxxñթksF~\2tc*i3k ^~) Üu(2ذvb(MktܨMPpLTEZs|Vޖ$Euغ[1ofQBUc&' [oohq hJi`R4L:Inږڐwˎ֞uM$&2̠fLև'Q%5#~~CN1c7o/ I"RuM}Ooe-Bڅ})vm`y, zľNS׽K0é5B:]]JTgt+l' uoBݍ| SXwB+[!;sxF8ay;$˳`rt`+:a9wj(`ZdMcӗm;v` 8֭_piF09ľ<4ҹSyk0֔Cİ`(V!~[RQbyƑ'Y' plna6R_[0f@Ǹ-.`$ CQp8@zVq[ 4~<9;n닓*x47}J`WDv,.3FKz ּgSSUq0^EPLj[~E/\j Oo6̌t2O@6dׂ/ ,cZ`5.tTnp'&qkۻf[Ӻm{ Itڕ_~jZL0H0hL0[EM-Ovac,e`6R_`$PM6$Q:_0tQM_S:,%:sԟgQ.i>LTa:]n;$;.zŠHSEW# +6.? [tk;)tmFS0)*=ix<>ڷ@[ׅ,YPDFjA @8PK/Gsh"iXNP0< ׏$`h>P=(z#R^SaDpL<.T4QMrnE;ø No'ֵ-"W"\DP4+cb4gqQt;o 'bb|^7nmű5d +SNMFж K՘QZ^+t;@4`%Xc,knK C8}jۖ⽍Cvd&a !%IA넷P'#޸TL 1D" 4GgФ#)OzV~VBqW}p1tT\* DBuaI0|>:$xtƓ%HGi55D n nm$$'rYcS6Q:6@AUcYc0 tTEA蔗pig1HNIålZȾElشpAGtL"z4P@Ո{ Iړy8(."zlu;K)[BM0B0*i W]1tJI :.CyfM0QDTL #a~M0Q7'#%޶}wBZTBa` =CAfw4L|80O;]{椓 9% JKKِh`IuMyWyoL|$&1Q^঩cb}Mٳ ֑߬s`F_<^a#!tSGEC)8V:Ș ;YSu{ػ0ƥ(. e(TVVq$$'Q{3{'BƟ %9mEyWNĨĬދ(w\ <<ͺu0?@9VcB(p[ YnL7؏uq}LGOƨQJmE 4z7dIYK/rs]iqe%NGб= Š?u(-{ WLdgSMKcG@“yYyB(Ⱦ)\(p]{)-ˆۙd-;wVaLࡶm;ɖ?oK/AJY"Zm)$$%R l-WjvU±Z{X*Cԭ+87 GiX!Koay +B,[*>77qyS4ڐ갫mh4p]S bQcqU,ﶝ',@R8Ξpі.Ԁ:0uSS]wӮukZNz@ m[F˅qכ/=gxg*C&>oR~e4  Ռ ןEjb"E!im՛HMmRUªj XTF US!! ؽ};:ˋ '> .TF]Q0C{& kVdN:T&}7P HJZn +0 3QQ+!U42<.58ŋ@ +|eѠ_ŢAڞ)cE?IM9\.E'GD,5[ZWg1v▜G*N`{ PQfC aE@Sj$G$,|9V|`:uaA;@'ޓ.6+О.XnfJ(S bYbjH [+@7@?'|KwN*[6c{Us'6^nb`IX!Vf=X)lYZ5 mhCL&lذ&Mt.ZLNn.k֬a]tރٳaݚ57ji.7.b60/ =xA5#V(TQU rI&dz竗)Uz_Ng,\?OfDTPu44W]b"Ju |"o'_E0 pS]M «ZOB` ;dpus%NPzp(DL3Q_/eXb)]ޢ"/_Mx?i$%GH;nfKP-䴕9)dHž<9v(Ty҇M H)=;"a : Nź4Q2Nw;?w5Fmh`xh5w:NNf(\N?{]|bs\,+D nt#rH ILLDuTͤ 1":i9VZ&hleU\l#:PcR$0F~ 2f9vL~wv~r#ipe#'֌-n[dP'bͦ$T֎R]\$Fl!Rح>ڀ,pXnDcvǕ1̬,eK yY|1}LnN.֭AU5R2XWƨbQSi%51 iнC{U/=PUZeR死ylZL9dd$a(߁5zQ7˖mgŜzjoN:?Cj5i'|qz.=ϧi.0s,@Bv!b_hӮZg_ ױf*V,_Lvn>U nt]vGc&`aH6HM? w"wH ;ٻ,! \ x9ft,آms{ k35\&: vbBmMk򇱦-Cd} EmHdN3An&Lua@B٢^ 0P aDb ?SV@JINٮC;Y3Yv%7rݍ0h5j߾">z=zw ^4p4̰)TiS% P Ҿu JϞmH&7G)$;Soŗ۞y WɸYlV!3#EuE9fKs6 T \"PU5vŸ^uO5tBH:{>g=EFҦe>~ ;vr 7sP[[͂iߡ=bm$%SQZFӭ{O{SߺS6M8_/.QR^pE0hfoDcbWN*cv).33Gٶm+:1Oyl޸E1yWmR@͘2e2]ti}`LL@44E0 <!M584\?l{EL50 ʄ+굓TĒF',^_21|f;<`:}`^WY1KQgM+y^aȱs.P#m/pTŠވf1V2c :6#n~܀|ϩANn̦CNtѝořgc?3 1!-r) ˜TWUapgӹmS>˧sೇ168J2_/|4L_́[r놕G1I Pe%`]B!IYF:h \&"{ر{<ܓsLPܪ'oo&\zyfNFrBڶ/V+kݞ\ΞfΘ 7[K᪋Xn%m;wb :^=6JxИy\ߓdfрJxF=0fɍTYKJ"˰fuέn`w`E |vu8M8 d}|5S넭ShD/,qu/傣,|2өX=$]P\;Կ(Ƕ*jE?oz 7'>!4!3; 7ӼEKN:6[o<(x<B0b)^|}}RQVǙkhnn+3iM40]`&oW(T܌Y+o-MUnUP1E`AUMV-⥗'qm$)݆jm)dsdy*_v?,;oMvp\mfYf lI(^tuٮDm)`Is(a+">RDq);s 7iq^,E]tYN)OUb{,2p+~}vE;CZ F9 'l#hg"-h7oӎMB:PXb_K9.*M5;yu,_!C#OϞ} :?4}={1iDMˆ'z44Lة'G'Һ/f@-ť1ML@WL\{TSQpm. 0#!c PFq ;w6˭`bn.118fxQT3}W cD"|UZmG=hޢ9 Z{0r]lݎB~?|TUծ7POjhX y#gЗGc-싚0MNwn墳7\¡kR*FsSr+ a b"N;rONjw#Q[+qNi׈D\+l5uXq;%F'P~Z0S%"aհi2^oQ" Z8T 5wD{;M3*m=ws¢z {A/y`(P* /vm|E |5#*JTAcCe)@˼}'<$'%a0myUfBpӦOдiK^~ZiüYp7[?΋(Zd}h.jY秓BNV )iGHNJ ~|RY]!7I9ϼӧ#CGA5#b j .4ϢvtށOgY|eӇ&CVxwZ&X{ŶO_"~rg-0/MESUb{DVb4n1EԥO~//7_}i-h4k݊'sO>JѩKW^}㭄^/+WlKN")ǶJy~..<^Id$OVV޸Ƨ^?ͯ\us0xrRPR\Am0 (& qROeLڶ̥i\ZsaO3zZn/̚9RźE$$26̬lYb9a떭rF?^>*u=KQQU%1ի#4kьy?6g)lؼf1ɔr Cٲ;v٥kja3@X.2a.r0T Y ѯe<މٿ.ZmLboF}EAvC{IHJbHk 쳏ȡS' 0K:m: ;n#''R.O=A6-q=SQ^ѳmv`útѓ^={sյ7^[eT0ʬic'Mr(f$$12[v rO*7'7_}ṧhղ[w`8$EZfM2hP[Yz-M 33Bb,};n|>zˉ'Ž;ٳ{'G_}<k{mX&1E-K*=yA #߱=\5&1#iЇeOL IÊ ݱB|_~Ye„/yٹ}ҷ-Z8ٵe"^} 7obqWT];Yh1\zguNΙ37cwx̰JbvXJvhY9 k $/ƊC}Gvd8I^XobH+hct1yGӛX9_>OlG;)ckkknj2yhּU7 jn7L \sMnGz}ϘxKP?S>mAsaP, lP,UR?n1}vgO# [;bo|c3?%Q?%v ;Tݩb'+w0;ֱv܅﹃;5zS/ow?@bR2<|//<=۶(N6[r?~?SO9;@qrM2xZ-U^*tprNůQmK,:}n4oдo[(]$;8HکK}"qL *w/ŖĽJgC嶯?0!Ȕ0KuSz6[q=9>Ǿ]?,C-q-up>n8Q)uRєQF˝BRԔ{{L'qۍײn޼KnowsUPww'OyU+;g*8kz͌ mڴ‹/#-Ao*g-bJ/:H):OS%BbwK UNRRJ1oI ms+IT?.KlE9*{$qTQIu^R$\'s8~QR}Mٜ9 E{98~VR].8TҠpbψKF'8-.;gVJnn>6?汿sMij/гqȑгg6[˄o'+'ѷ_h[-VW~f<ŋh&Ce4m {DW{'?n=vƙ̺:K[QU%nn`4.I(ۿM;F[ 1F-lNmxSh+ŰY,IƈR+*DysHLY-+6S=M]nݺrx׊"--t5kΐ!ÉD"NYY # 0tׇrzo҄8?rS_mM >O?OoѳΧ@F[٢qE뎑XmzKRFHjmȣ0e&U<[JTRcKX:W>!'IMIM |OƉ^F *l{](85lߔ4S(GG,[JuSC~ҽ${iK zm)1iUZqc$|X@:|r?8?<\󧋸+INIEQl'UD Y7H$ŠKygٵkWN=쐦i6K 8>P]pȱ2(G*0RRa>Zx O7K6%{b̩ԡ΀6$|~a63PS%@*[T%簳6T?I;:P6J1gu`L~QJc!SmV/' X,/o"0*:7z$6"o7aEcOU ' %))UmM<&` )*؏>'0dPnmFfVNy>6eO֠h"x7$ͱkof"ѝYC10@g'M?IcOPSU}キ~EFz&w.GLJj*Q&H8X[[͛0ΞI~v.W_go~A b ˨$gDaG$G? V*ӡ!oq[fW/Xa8Xc8&^W۷?)?ȓOw4iR@bbzDglڰ9sf1c4sp橧lvxeXFxLL1"T>"i?"J+{ILb=+j8["^Re)F}X6wwgA٫/[&3#4|}$RRRBIi {aʕ̛?4mڔs=<PIjI5vje@Q>bH݈ )cLbcChgڱUkdIݶG=z8[SS3{:5+PT|ZhM#%9x|~?]'di!55TUWS^Z Y~;w爐 f>h۶=wf$hrƜ 1`ILTlec[L;-ݻǽ|2m[)..K##19x.iiTVURQQF8"j.|8 ҪMSz.]êkǀ1&1 No픱~ l ClUV6m.Tl)TKKRxQQ5UQ*efeg-[45oVkC۟O'^0VI>aƘ? 6sT8t w )Ƌc$9 ѾOu8TUl&"ҧ !Iu@U,${e'N}GK cCr$SBF(@K)Lk%PX=QY7΍( 1e(eL bLb0)ώ͐#N-:QG/טiGe;Eu4fhf^g%10p05H2+FRe`JN è}:ֱ$ Q>)⑦ILb0:RXӶgoAul/Tj'8jJ`-+(668m6(F,1:$&1`? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:17 GMT_Mon, 26 Jul 2010 11:38:41 GMTU29085_"c38300-719d-48c48d383b240"_timeout=15, max=99*+]^_NSMutableDictionary]_/\NSDictionaryq*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|&+6?EHNW`biq|~ .3>Hh  !/ADZj\_Dhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/abi_logo.png"#$%O MPNG  IHDR;T; pHYs  ~ OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_FxIDATxb?>@bg^b$d7E8N3!i1f1A? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:17 GMT_Tue, 15 Jun 2010 12:46:29 GMTT2893_"c38311-b4d-48910fe7e1340"_timeout=15, max=96*+]^_NSMutableDictionary]_/\NSDictionary M*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|).9BHKQZcelt 16AKk "0BE[j]_Ghttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_header_b.png'()*O @PNG  IHDRF < pHYs  ~ OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_FkIDATxb?2`b@bDV" bD׋d©dpJ:\MUM"+QF-RN: IENDB`Yimage/pngOSbplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_Ihttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_header_l_b.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[x3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:17 GMT_Tue, 15 Jun 2010 12:46:29 GMTT2880_"c38312-b40-48910fe7e1340"_timeout=15, max=95*+]^_NSMutableDictionary]_/\NSDictionary @*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|+0;DJMS\egnv 38CMm $2DG]j__Ihttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_header_l_b.png,-./O @PNG  IHDRF < pHYs  ~ OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_FkIDATxb?2`b@bDV" bD׋d©dpJ:\MUM"+QF-RN: IENDB`Yimage/pngOSbplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_Ihttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_header_r_b.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[x=W3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:17 GMT_Tue, 15 Jun 2010 12:46:29 GMTT2880_"c38313-b40-48910fe7e1340"_timeout=15, max=96*+]^_NSMutableDictionary]_/\NSDictionary @*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|+0;DJMS\egnv 38CMm $2DG]j__Ihttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_header_r_b.png1234OˉPNG  IHDR(0* sBITO pHYs  ~tEXtSoftwareMacromedia Fireworks 8hxtEXtCreation Time04/26/05S;@!IDAT(c<{,@Lbţ sIENDB`Yimage/pngOObplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_Hhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_content_t.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[y 3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:18 GMT_Sun, 13 Jun 2010 12:18:15 GMTS203_"c3830c-cb-488e85dd6efc0"_timeout=15, max=93*+]^_NSMutableDictionary]_/\NSDictionary*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|*/:CILR[dfmu 27BLl  .@CYj[_Hhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_content_t.png6789OIPNG  IHDR s+sBITO pHYs  ~tEXtSoftwareMacromedia Fireworks 8hxtEXtCreation Time04/26/05S;@IDAT(ѱ A 4BKY(xdEk 0s)NDķcs㽷֎㸟>Rr?%m[%Ƚ.䜝sD40RiRJݸGDƘ{@JퟹwOB(IENDB`Yimage/pngOSbplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_Jhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_content_t_l.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[y&N{3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:18 GMT_Sun, 13 Jun 2010 12:18:15 GMTS329_"c3830d-149-488e85dd6efc0"_timeout=15, max=94*+]^_NSMutableDictionary]_/\NSDictionaryI*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|,1<EKNT]fhow 49DNn $2DG]j__Jhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_content_t_l.png;<=>OVPNG  IHDR s+sBITO pHYs  ~tEXtSoftwareMacromedia Fireworks 8hxtEXtCreation Time04/26/05S;@IDAT(; 0F?$"bMX`R(3_uH) fcyQQwrm~Y(ztW8m4E@eu]w]yND0x,19SJq? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:18 GMT_Sun, 13 Jun 2010 12:18:15 GMTS342_"c3830e-156-488e85dd6efc0"_timeout=15, max=93*+]^_NSMutableDictionary]_/\NSDictionaryV*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|,1<EKNT]fhow 49DNn $2DG]j__Jhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_content_t_r.png@ABCO؉PNG  IHDR4 tjasBITO pHYs  ~tEXtSoftwareMacromedia Fireworks 8hxtEXtCreation Time04/26/05S;@.IDAT8c?`L|`qQǑ FG.Ԏc9{@'zjIENDB`Yimage/pngOObplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_Hhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_content_b.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[ymv3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:18 GMT_Sun, 13 Jun 2010 12:18:15 GMTS216_"c38309-d8-488e85dd6efc0"_timeout=15, max=91*+]^_NSMutableDictionary]_/\NSDictionary*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|*/:CILR[dfmu 27BLl  .@CYj[_Hhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_content_b.pngEFGHO@PNG  IHDR s+sBITO pHYs  ~tEXtSoftwareMacromedia Fireworks 8hxtEXtCreation Time04/26/05S;@IDAT(; EPa? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:18 GMT_Sun, 13 Jun 2010 12:18:15 GMTS320_"c3830a-140-488e85dd6efc0"_timeout=15, max=90*+]^_NSMutableDictionary]_/\NSDictionary@*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|,1<EKNT]fhow 49DNn $2DG]j__Jhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_content_b_l.pngJKLMOFPNG  IHDR s+sBITO pHYs  ~tEXtSoftwareMacromedia Fireworks 8hxtEXtCreation Time04/26/05S;@IDAT(1 PX(D;-"ͨ!j 1aYXnLJaZ+eYu]\ !? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:18 GMT_Sun, 13 Jun 2010 12:18:15 GMTS326_"c3830b-146-488e85dd6efc0"_timeout=15, max=98*+]^_NSMutableDictionary]_/\NSDictionaryF*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|,1<EKNT]fhow 49DNn $2DG]j__Jhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_content_b_r.pngOPQROPNG  IHDRPLTE2^.حtRNS@f pHYs  ~.IDATxcd``abNf@$& V$@:r(g"܀U~8 a;1(IENDB`Yimage/pngORbplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_Ihttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_menu_cap_l.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[y 93456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:17 GMT_Tue, 15 Jun 2010 13:33:57 GMTS917_"c38316-395-48911a83f1b40"_timeout=15, max=95*+]^_NSMutableDictionary]_/\NSDictionary*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|+0;DJMS\egnv 38CMm #1CF\j^_Ihttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_menu_cap_l.pngTUVWOPNG  IHDR VG pHYs  ~? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:17 GMT_Tue, 15 Jun 2010 13:33:57 GMTS138_"c38318-8a-48911a83f1b40"_timeout=15, max=94*+]^_NSMutableDictionary]_/\NSDictionary*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|/4?HNQW`ikrz7<GQq %3EH^j`_Mhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_menu_normal_bg.pngYZ[\OPNG  IHDRPLTE2^.حtRNS@f pHYs  ~.IDATxcd``abNf@$& V$@:r(g"܀U~8 a;1(IENDB`Yimage/pngORbplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_Ihttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_menu_cap_r.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[y3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:18 GMT_Tue, 15 Jun 2010 13:33:57 GMTS917_"c38317-395-48911a83f1b40"_timeout=15, max=94*+]^_NSMutableDictionary]_/\NSDictionary*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|+0;DJMS\egnv 38CMm #1CF\j^_Ihttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_menu_cap_r.png^_`aOPNG  IHDRL˧L pHYs  ~9IDATxc?˃0G!sш?F{߿ ,&&&xÉMIENDB`Yimage/pngOTbplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_Mhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_menu_separator.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[yq3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:17 GMT_Tue, 15 Jun 2010 13:33:57 GMTS135_"c38319-87-48911a83f1b40"_timeout=15, max=95*+]^_NSMutableDictionary]_/\NSDictionary*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|/4?HNQW`ikrz7<GQq %3EH^j`_Mhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_menu_separator.pngcdefOωPNG  IHDRK_sBITOPLTEӍv pHYs  ~%tEXtSoftwareMacromedia Fireworks MX 2004vtEXtCreation Time04/26/05S;@ IDATxc`Z= pIIENDB`Yimage/pngOObplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_Hhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_line_grey.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[y;3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 04:54:18 GMT_Sun, 13 Jun 2010 12:18:15 GMTS207_"c38315-cf-488e85dd6efc0"_timeout=15, max=92*+]^_NSMutableDictionary]_/\NSDictionary*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|*/:CILR[dfmu 27BLl  .@CYj[_Hhttp://www.theabi.org.uk/templates/rhuk_milkyway/images/mw_line_grey.pnghijkOJFIF XICC_PROFILE HLinomntrRGB XYZ  1acspMSFTIEC sRGB-HP cprtP3desclwtptbkptrXYZgXYZ,bXYZ@dmndTpdmddvuedLview$lumimeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ QXYZ XYZ o8XYZ bXYZ $descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view_. \XYZ L VPWmeassig CRT curv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)KmC   #*%,+)%((.4B8.1?2((:N:?DGJKJ-7QWQHVBIJGC ""G0(0GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?( J)PhQ@ 1@ E:m(SNE:m(RO?%kFmn@ǐnr\gA,P]0B'v;RxsXOiF vǏ@?}Wƙjv6p3_?ĺ}V)#ή?]4I?k0K 7=\^Cx~`jGM_x{{h?-?Ƽ|!O[;w?-4!i8(O|=A3ixBíi1HO&?",+UF+i ܸ=dPѰu=בNzO xd1գ?'$5]B",[">gKʼ>⟉m絭,t].5-.hOv@8@EsW7abC?B! F -K@ E6u)PhQ@ E6u)PhQ@ E2sShiE%(EQE!4: ( ( ( ( ) uCyD H߀zS_{J߈|M) yZᰧ {]z-<5ؿbSƾ%֟{#G8[|qMvG‹ TA 2bhHPVxhV!MnL?^y?N=[Up{YǛ+^ƅ5ImLu~h&lX\Ko:d2`hogSq?*9ŊBkj\ĿvMM#$vQkgNj}Cq8gԠ]5d Ȭ? 7EZjٞ5U|T]8 > SSƀ,x]4"Q12*|C]Wd@6:tLo )x}q#V1 >= M:$X5K1i:(_prQH`h7cwG[Ls"TG;+ȚT-W@ jeeUt=o>oMs+,A'ɦH&~JOy'3('n'=u|q\F'7SE}8?Wym|4K Z wSgJΰ4u; [˽Z13O!,ւ Y8VǺ?aEu/ _i ߁m_x%H91+J}J(ȍPh+l&e HtP!]ER շ.~FϱMs'dfmYN쉀31\nEa^}?+\6%oݓPoE1$W@TE;>Rfh4QEQEQEQEQEM56 J))E0(((((BqLd&GUY`ܓ@c7A7BS9jYRrUpn?^c1ՙM{pH&Tx :|Ou&xtjx =αk$O-k>ի|1GF提U=O+PnҀ8|44^(>]a@Ož)x=6mjZ^DRBN:cm7DEZW1dON% enֳh:LP [dO^(/LӠKgC88]IYR? #1?u xz-& *gxb,f;!}@y4,'qk̼ [-3bX!班{>zǃ/;Fhȯc2G[{{<,2GOҀ x?8̧^F ZOxm%dgt?OjOf󗃤w$ޣހ;O˻w<+(q)Я|{ikA4 d~`k]h ]JqRP1h:ҼlAŜ1~_[Kb2g]s^7Ov{b4r#`:g|onXx<Z#iu"pv<7_@'n>3xFv@߯ aی۫׈ax}=E~^5է߃ŖXpǸduh1d !Lh3ImHVTm=v\Wo|-o5I"]B 3~:_Yeryj? ]|P\RAVxVҮ.0E.q\]3\6X#zUct:4-K&DT-޵XӜ4@g:Lzׇ|;y&puV3±&\3p?4{ F]B!1ߟʽkQKi FF=A,~ ˆ5w"@-OK]%o¹ 9U&,#^N1U?l<=ͪ} RA 뜏ʀhI.gE 'Zؒ8s^}ȼoxKiiY{Xw`R4]f ʰ; 8?kż],~ h扜*l| J]Onk:<[K={~i<;k{yHY̍!@Ԥm.j?lCH%\MkoM 牑p|%#->z3gZ `lA@,5[n}zp+7os_E*Q\w01Σ,[GyYƀ; 7OW}ΗG1^) 7V#ŖLLm ^j~[9ŶO TGA:믄VA9b1֧E{(4]F!cIHF$tEOg;Ru,x#:55`:ybbt<]X0-׎u [m>@_:U|[|_I0G- 0?]> ^JOfc~ ӡ#g+0tz⼇\_dhv_*<zImwhI q\5RO@N@\|<`2;W^kfEw)Q8^ 73_EGokC Ƶ2|I;ֽ@`Qb @@=yZC`q^,s{lv$.#sҏ?הpo,nXr/ר|Q-tWO>,Rq46:mj}6JpoTnG,𖗡-5~IO'ڻ@s^ >CRutx9($讌XeYOzxEPFi1KE&(#Phbi4dRQIJ)QE#tzP/JZ( B}:;4i\ -#Fy5t*l积J('cȑF#**1S\~),4_n~_4Dv0(X≤FY݂>o~OWeSFO k_`t|?=k&& Tźrڟ/k}ͪp١.\~Ěľ~E%X⽓L4*+N?P @{$Ѡڍk|+{~ť[Fq95E0Ԙ斊Lފ(}ih^U)c V3Saܘa$'d~XKVG 3i7)Woϡ+) 1ڀ<;x.QjxQ#G]nuzP Ǐ5Erta2 r_ꁞ?os?,R[?<G4s/X,2|srz^i]wǐc.#{'ᦍoIzy&t{›##T#;~57׶mJُ9xk6^d?goNl??(Yy֌dOQs~9T(M]1 s^I< #n䓅y׃}xtGe8^~1a}8M{^Y|w `pt="_|5Q]CB)o;g# #ys\G?V8@nlxzQEPu{-kLM?="֘ EPEPEP56@-(Z(!9N8}czwK0O +|>pBo;o ݴ1d_ϐޟy߂|'sUlmj ~놑urǜ 'LtlaATw>&%%TEWhC;8v%WX \ QbPyޠrPO@g/7eulVTB51ּ;ߍ~|Ki6Iֽ t9qr yoG GFH'?τKUJmfe{`3kƔ^y)PR?w>V吴҆8۞ڗ5MJiVH\f>ֺS¿m jq77nJċ̰|mkxOZ$ )qoq=_^#@cZ[h{OJ+VL.f-oݯǫnZt]M,l0޴p0"X-aaR5 *\ Z(EPEPEPEPEPEPEPEPAn3_hnK89QH@4zE]Ao"5o;CioVem|Bk1 o^$hQ20T=9wk{f8>uVuImsȽzה>CaF6˺_<}<]:e{dmF{=}$Þ=\$Gv .,4G )UEyN}J ,z{ ~hrG_O.~FrS":MCo1d=ɠ#h׺ncHnKw=zgÈ|B\y|4cV~gc{ M_5yQ@O=O>:&.\#4A@>o~qfS~oF. |>[?^'R0u0kdӴχWdRq穠-<%$kfm6ǂ1ԁم{ΝmXC{e2o*Gם)җĞQ%&cOn;q\c/ou:{4$8tu A%0 ( (iE%(SM'44:PHayuHR:`g[4y +do?m{w;3-}j`I޿2Ǩ+/D(^ P5pT};#V>cX1lyħ;㠮UB:S\'ŝu,<;pwȖ𼲶K1=kj>06IQ ˞?Ɛ)=bc 2,!4^iCߟZmCK]8DN᜿sP^H]e4 mq`{gހ8?/H99\~%Yj-5E[KǙ,J!g!P E{yocg-܋ gv8 Pƿ-m7`~SB!Bl/aGMoX-ԵIW(\qN(|O a%>p;u_H+ :< J0쵛63vO1;)'-0 ( ( ( ( ( ( ( ( ( ( ( ( ( PmBQF^_x'\Oų>k֪jmc{ ->;@8+2y:W:NG5v{8{_Q^MoYYa'>[ۿҀ8,{m gpy# ksqˮk7q A=Uĺ><<%bIO2E㣎:[C,MGЎ^.[[>(nmsU::4I1moáPijZ|7ot{U>&6-]>#\׮OL(Njm pӻP֔v!:88DO ?yׁF'" FIp$8 ?LP"$2i* נ>?f]Nn>Tӌ\dD&00Cş5rnQ~~W'ҷC<>WtA%Xut{BK2t[RX9? [JO3)$8+⯋Gúd1@.^=.xxk@6kVy}&/_믴kq4)9'P? GR=[E[KjS^|3p7RӒ?1yv:3Gk嵺eĢHp@YxNw熊#^?:/k~ Mn3\`[ۣqלsN_ͥv4Bm@}CE+kMZ&IGJ#JҬӠ[xP}IhڎIQE0 ( ( ('Z)z?룅nMصEs^>*/V|̀+>O@Q@?jU{DioEqv&?Nf@{SS_ikI\?vBl{Lxk.[Mў8H$&*FQEQEQEQERBRUmw63%P,3Sx4w6pץW,{̶4=i 8M-(.kK hayuMG^, a#f_g j%xEu,٠еL?֠שz`e T2:`iheUԲ~bSƼk᷌aNl ,X5Nh5ci觸4Z[yڍU:y7~%:=8iZ&LR3~y[_]O~okfKWq@q7%K0c]gmQ<aGExMŒz*IoM/,67|NYa-Z'>jn q'd>+ d[{iy cQwLo}d}d}q@E "sSiSSiݨ:׋]5o؏B9Yu(}Q_5d/-&A,{?3~}?@O XtKOQ(y?*-SŞ<*tCcFڣ=MtoB)p|0]?eQW1#x^hX\dFgƇpv\O|eZKyĖ eFt#׎O3ޥ^@3j288w?u8S:/4INJ_Pn5 *RD[8oV5m&ٯ3q@7[x8,4e4g$~_Z1Ҁ3GR>N9W^qAt7$GB^)}.%qMgQO[u?AvC{HԿTٱd~^m2(} *} c9u^HGH8'd[-q\h,RG bнwɡfIys ֛eknJwS0CyAsK akDqvkSƺ ,?\}?Zxy7ϡIs gh.#xCIR? hP-osJٚ5D;P#? ؿ'RKXORI$h\^i:$s7sjQZ!.,5aiWgj_A,a[Lui+yxQ5琽瀼tUż\pQ#H>hΣ7R:1tdWx@Ot6TqX_<>$_i$ F JGKSרQx` M56;6L@iWhl晼@66zĊ7LDQ~g\?u6ּkx};㏩k/c<֑*"y 2I z4#]dF_"I3FGЯN[Tdrkڲ~8./t~Eƻ4ּ1OZҒ"i|eaٮLxcξyRW?qᏈ7-:}G_vW4Su^!}{l[]([?=*c%}~n,In\[AunDr xp[hϢfp5jzlk)6;7A5-gM(~4??|-{d%/9(퍏lkq5: ׬׳^g_#K2??suPgnl?rwzQ>*ÏJ{ )Q]XRG$JE!Z[Kywm,TA׳xSpxM\34{ o gS*Lhiep$ڼl^'[i[:uW.w}yڇuH,cV!iƣya-, Oaݍwo xg*9m.gYm䉴2H[kT#۹5_Ě4.V5}RH佻oG=ŵb\^DhkὣG+ Ե NK ydzjQH~Nq$v//۾3;z4u2[B֦@a ?O뚵}i ֗ #Z(~kPd'lb@=Lg#w rI^ i|f7ܱJk⦝sb.ݮTS+\0dfh~!Mkg[ԗ F1\­KOO+<5\^kZEӑ Qn+HtڬVPEn8؍}ɠ?i0 l.󯢭f+[trtoPFAk2i_fmH*]ǵ?*j>ld?꿡@SiO<xQOoɁsݱ~O°ن]G]_4_%!sq#u8vu]?új<2P3Ե7t?%č:ij.&{i ?h :PĞ$-RC]>gT*7qs+|?*o %o2y5|8";l HIGxOCV7[B>fRND^c߇w~Q.mQFFp>./E\j]Q+P}w&ԙ㓏Wz|zNkō*q܁Nkiͫx$g'qPECɯjL_.:Wo2s)cyN GH=Oa_ ?L?A8Jٞ(F#~W|VCYQ D:\W=$yc"i"m>n9VxP);Gcו 0)ª*mTMUב>,4FUo: %cJth,i'Q!Ozae4vJQvg+x&ȼkInD34g 㟽V.?XMUuLɈW]/xX-n}vʓFFFASkuF!7BO2?诶2Aa~yAGˡZޅaۘo akIGD-<`Y|h^'lune慸aZdr+ա5NJg8MY<뢽[\,NIP1Go5&18P{׳G <Ӕ y^ۨ<*jKg1\E ~5[B Oɷ7f_ yĴƣfލGbW#2+ɜeQ^Qŝ9jV:G½zxt R'Uk v"^7]Yq WW]Ņƣ`ޱ0G #}Lj `$' /8i0Fy*^iG0P?Ӹb3ڸqxg4zb$כ^\M3MVxV]O/5۶@qZ |oQWVSu%ю k/{KZ:6Uy>AZuWRqF2><$48TPK1k|cy5$,DhF7FohDžmn핼S+jY7Gnß=O^; }(EAYSnN*ij*:g>.Icg;m0Op} MxHԛB?˩ ֝46WFwRP54׈HP"Kc5j_ l8otڛW?\O>"xNO [?^K09f;/D"[DOBO\K֞NjCd=?"dK7x0 \Iɥ;E/ J;Q@ W Ss䟭z׽xīQ;,LmhҾ[^I[Ϡι/z6_R5`$JBA[|uH?E@?ּ~":|zA(܏$\ N->+hIV0ϭZ~ŷO98 t6p/mm ӊhpG}:yf2+K~h[ tJ [Qt/??{W21^ Ygwx C3*b<x)QEcRA<,4R*pA<>"%Eוakh扇r+ZѵGDLg=pVF^4gM:i#שּׂZ%6nL#,}=t>񮟬fY?ҺpIOcU;zv-&v_?WRB"K>ã_Դ1ŬcKم\ߎ4%5`+Í|jy1F`@<#/OAϖ?ƦMX|5WòkWf?O?yj6 }&N'Hrσ|7 F:`{W`jlqGKH`8xݭ-I{*`<}}؞n;,DEot#!Aםg9ėrĒǫg%}JyQNnnEVkOkP#\KI? ֽOL;tϨ ?5Ɍ-mE^gl)iកPr3OQ^ >  [1o1( 5gb^3bU%veOLm]6h!9 pPi>&,nHIa-J=q̯!_Rk{H{ *FVhbTb:i {oWSaD\]=Ԙ?5W==?]ԬoR{@W‹F1-kdtQ2k<#O_RF}>Y 9ۋi|o(1ЭEyHQIڦm+.Cex/ /lR0AZ-6k sWD pq%͝f;xna5^cW?n!+sRt&#&y ;3 ípś(,|S@x’:dhf52A,8q{Vu[ s(I}^H4=Q՛奯O坱ѯ[֫ɢݞV[UWHGr]H+S^gm vqF6T:Noi[U^STMMkp7 }ݿUР֋Vs sM +kkoMfsy̠y?JOW^fYe:K{_MxWmff,@}"SV Xe"9;OC@k&i#?v#Iϭs0滣CymJ9]/m#ͬiyQʀ0|+x_:w# 4Uc¸3sDק뺅K)X$c9*K}&>P-`QE!>1'oڿJ^-/?-< 6~H,\Z_-я sjo_-Ȋ?R4ۼ(uO7L`[F]p9>+4Uӛԑ34l%~Wd5CfߐLٮ.$"sdHUnK&8Jڦ2TE\Oд4eaDt`y|w nO+G\SC=J9N*в=tFdDqȮE]7u 6Vkۤvs5ilRTjG=ܝ+6ǚ4Gcyˢ;iuI, OW @>#K opuNRpi|?G ~M`=VP^ ܪhiUBe%kz>2Х8hB{zkK^[x(|Ҽc+bU߉mo:~pd?cYuMܐ}mPɬ5I>g;8y &u}eIe=A%gĻcv Cרꊧpw\ĿXͤM%͸" d^Shz+`*> ?$uykƾ u^ #g ȡׄ- U7mdWOP_:xOڼNJ8Ҁ==3F9^,KlcCD ^}q^:=wZF MF@?T֓͝y,s.&@6ޟ6a?XPү[;KK2x0_ 4z0|`7XkU?2¶{ς[)W&qX?'dlZ- zZ`QE!^-y~6q{IcR7l~NHS2?k+g7Co+cjDt0kuPS[:zV}R^ iv餼˭rZnMӺ ?k>iv{Xl #p+#вAE-q6|C`?:QbV/YHҘeb8uz`GԫǗE «($Ӯc? ҬUM^O+H7>1_ⷐJ_o$*a۠ʕoqQki|A=^۶zK5w1k^(`3ndw ya⃍(y~iW't#Z F:>"g@%CqlOu? { Reuk#yBt6{YK|n+<j u^/#g-#}xgxڼ܂?ʤ̳u^i<)"x¹L~>Pp$Y'PE]eIyw3Tu]oz5hzR;K>?Xwč/T`m.+( Ԋ_5_RMokOqm,DΩ }+y=3\7|MǭW>n hG1 btdcir6z7r*~>i 4֧jOD1^M;3$_B=׹zs֖Q@+>6gN[vJo !RQ?֐?}A \Ι/q2OF=[G~VkߺW:#M?V5 >N(k)%3hz"N?Z< ېF[a>s7n%碢'LFwi, kM>?.(WWLfSggesz{|^6?mvi gc MQ~C>&i7 "ϟһi"xU*;ԛ3 +H_b/kSk"\K6GghNkSRo$sFdnQEV_[g5f@5\xT_ h~ |SvݲaUxA$bT)dޏۯ5[q#{?|)6yx@(^0HHӽm2lP`񧇡Ӽuiakin2r6'ⶴk];Ŷo*tY;LV73Xbzʼ֬h[ ˔{AS dJA*ς7׋k> Wx}^wn8ij lr4)k{n;Ok-}HgLnܿ(mji"%N@9*<3M C%LO&2YgӚb ŻN?ïx]`A2 Ȑ$1;cW0Eq2I8 [}Kb/LlxoXl>9 em_FZ Ŕzlg?r>,ݪj35t-fXuYrT&ûV'y43ܮ#/={,nRxE>2?CS(+.݇?]zyΝIdH#%-75]f=N?"- Qx? H 3$1/Wv jQ\GePUӏ#>z!4'%GI'GI,  6JppN_ `FVKI$ .Dz&M[$cib_A.[,͟og'mofyj:,_JʿkUz=IlRBMvãy+ռoj[n> qֹɣV:) ijrYRO&2uSP.dh^Y^( 0G3h@+t`|pH{[]8(|K*= P+7;pf#>ʣ'.pگ [LcAqGp1Vlë-ˆh^rpİ(|cKv4xZmq _-_9uZ:ư9Q [NMvGM:v?G5i(];O'@5[Ki[oU|V{[s in"FUQ3^_iv@3@y9(wzs\_+—,0gl{纻^k¾,}37P(oJJ5mgnQ5v^[i% nhߨ5~)qiwq$6ܥ=J _cn Xd~hTdր>p/HL3.x(z0kM`ut,5@U;[^$xԯ|cZG,Wlh2Iǹ5tjfF̿ɿ:紏A3m.#SœZ݉ =T€,|,~{U'/jn߁J[^KORsinȫ4F_'O/vV|kڂzچv ~zp>?U/i@όq\DŽ?uåq[z:V?| Q{Q_DyEPE{+;敺" ޕՍ& Mt^6 S;죿ץuKdD*rtnQU@ ^e|o٦tӡ}dg-h-ac15j +GEHrOF̘؁}y֡j~#e^Vfv׍Zv{u<.$νp!Ymb8W=xC¢-]^_^𷄡^z; ($*)msհG+2 1@$y'O|vl~ ޿A>g2mHVI(g'AR۟̉ǹ׹ri3*|$aG`p2$? w&D݇wbY,o#+>'ωFƽDt3rE'k^~lo$GsWE`x kLՠ= ֶ)7Pi,sq9obOcҺ֮/10G$"HeCTBͦ50n"y_ZkE\aeO+5 j;eJ;}kPI/Cbyy++K?RYΒrEKuoݻAsKExŕń5~񍶣< ϷoGўN;'AsCމxSXѕ-WA?_q$WO,rV{m/$_C{X|eٟ7VXEE[._BH90:׭[z?/:GW&3,ևƏCҊ@CҼs>{X?;O'. tŭN$ Y?܄kbG29\2=~\x-WAnɧ:2奐D7+}ƗOח"ϡmb=ؼ F -kA [C Q\ĭ7KW2[p驳ē#V@1{R/evTc7WqWTOG {VèO$𷌔ɻ~wc?zūS}o-ǘLnс@^yZ O(3שYivGd@+7)-NȕX [Y#@uM2T7;8? &ּ3; mqpp0yWYi|N8WKZ8'!g9x/0W$Gku '?Z`9u&ϣ컳c_P`n7jk/9?('1UE x{swf=ּVU_,T8|})]iZ6ܙc,U繓$ϵzFYmt|7jҊch*R5?E2/,AkjXtU1 b".v8 +k'&[} l7+}Undn1}؏5ӈ6cI^h.6M+׬1O^+Zpr$} Sk^S슔QEy#l.d n+c7cWz7v8 7[ 4|u+%$5R6dNk|'ԚJNR>UIWGh>#uAB:QdR)+gu Z)]>!)iqWB^]| QO'asc#[kkY)Tૌ^O $nVSG֨k:˨ȸܵék t}4ڎDn-Y#aT漟]7F &5hKW+uM1Ye\}ƏcٛkD0^So_hRUZ{2~YQrW^xZʜ ,~aZΫ$lP:zT|# (j^GU_q_jy描 EhUYN55= RQMlZì}Ñio漟~u>.Gq/̇Xm pOOzx'ܱ)o/ޑr@8aU݌n#w^#N5K+|7=A|M-3{}՝f"&ךN4vQK(H2T{:[G,ğҏgaȼ yG@QE-/ZJQLå}İ1>}0Vwl6!#/:GRN!#͈uc* 8ה|0[D[i7E}9 [-rV:}9WΈtG ^įEzcjI뫯j|Ǥ4Z)~j"Y\ Lz*7"@d|mo_@C\t[>OKOc2Nyʼnj0 ?'-zh+vG#"FrGsoB>fgR<Ǖh5W˷< >^iz"+bN|ݟoJ@UWY!/& 胖ovAGy(]X׉!JK/0d{ 5_6G~uKC֡ʀwws(1k*?XN1 asSUeͤ 4O D`g[ڵ}q޳w"kqxH +Eҡ en.~Ψ($\ڔ݅J( qFz7h62`P7u c>kbF ͎?LT_'<yB?o 'NlEIyƇOƊ^'ms(lO?OC^{I@ p#޼6K9PYO?OrWƮڝg'++XFA<7wKmգ?[-5ׇO !dWcaMʒDr8"1Kz,WY¿^žKj*\utמH4nNa5^t%}bmFI}%; iZY]\\#io~& uqukFF*8+FnZ jκ4 \]!w.GV^#G]mk˦ٱ#^wx8_fXEhkrj0p)H{Sxi2ac6wS|a_+ʮu9<#FHfbx.Z-f<`>[zfi٥ޟ2yT6o2H Ӏ^j hpힿqͱK!_85Ecw7W|?@w&Ώq:v?e{y_kgs?V2/>kנini]byf=*QҲ|Ul^PʨJNҔT'g1t:Bc; (! eԬq4Q](j(^~ydHw`=I_@Xۭ1z WxJ?E~i';DKO˟k;Ld?f#ֺ]IJ9XF>Ozb3A>@Gz}ZC̡rAY]wՒ%'[=U?\ %b.ik(9Ѕw =yg;7_ ?x8^Qf"m'w ( 1EGCmokrWُqG@эXٗ eeH \<1]vo@Ƹ_}t$Z/u'!{yVHgvKCbN\ݚ1|kqgf9c)ڐpIꮭ[i:l bU+Tufg31Ok8Iй?@\}+Qᣩj[Rm_[/P\W5+j3vB]3ҽS_ 6O,H"F=\'dg\xkXW+rqn8>!8.J%*p5H+xL]J?$hF>|'.Jm>msډ\)H> tVE;%[92ハҽVAE5U]CKoMZ#`:h5o]>#r6QZ.54+f6P p?u\"Px'x>asS9g;.w1|#ΟԦ]_dʻM(!GUP%-(Z-dQ#Rހ>s,%'+%H$SZF?[sl(cn둂.j:Ɗ^L#M3߁ҽIy,#v֟ tIzQ?ybOk[+iYyʹ' <ހZgwVMMK r~ ޝ3k˵7ȧݿtZhmeR'|3f`]X/Ee{k& $J0+|;{皷- ^_7єצt WF?^yfw~ x~ҭ j^>K#ģGW5k}vNr3к8nMu(*\ Y‹Xu՞Kk\;[ql[|/sw;Aqz(w*G'o.;b s|:6DSa1 Zb;z' Ua >ղ q׵>Rrwl}^+'HdF|89=0y?{΅&$C]rXw nV{qW<+n6} UWAH)ϖߦ?j=BZd^*c*炼;}wF! l?:Νag-ZӳWx>/dBW1’zcxkԮnGߟv&}CR+F{Q׬qQO(WR{Dql@4hz'\Vݔ'9oצX|1LBYulZ :l,ãH7ֹgM>(mBH)pSڢQ KF?$d}q\fG xKBi<2>>M`?- u^ +I7gQof}S](%tz֥2L)@NLtD %}Eu4QZmsyQmM݆=Mz'fАıL|0Unm/s;HGbM< O^%'Ek󭵥q.9\:_^0,SD6_Mp<2{ֵ:@}"`9> YaЭrےV?usJ?}FXO^dr#+μ1\ ; u1 ЖEmm HP@Ji)€M56RR`-Q@#dK[)[Kea'WX~1~#f%q#H ksYIr0`x2z̉)h>=A5hoxGwV {/^Kk6eOPGxdq^n-/!KNt ۴B& J]3GtLZmVz^O֮1A@=%3DGGI_x5mWKel"_/E)Ryϥtj6nr1[_$Εwn7}=GZo` -ic78?s:YK9#|A8c^ͬjZ׷cLr~x*]{B3tcqcs_#EͦxusYcax?K?jݙvn"a NN{U㾲MѺ8?xr?)@.q!0Ɛ‘DUQҹoVuv7eb15T䢶FTmXbEsZ((EPEPEPF( (h֌R@ E&J0r_?9&8?k¤(npt_(ct7x_95j1>Nց՞I ״·f:@95*%VrݍS X* ::RVe@=hc \/a[7Mq*|=G})|yt${ 4ډ'ooҸBźzlěw'uds:Skk_*6y~[#ib!u;A4 9ou7M ݯMr-HҦgY$ +Ծ&xK4찠s@꒡UVV\{s+w$MJS)PB;UO|J]B+M~_A3YP㨯\0G=8x̷N.Fȟk>"_19k\|,WoKD"t$=\ 6fP0Y?p*xgZq}u'8x?Mu`IӁqK`!uJ(Njm RR`-Q@gPS-NM Q̨;2.4?.[bx~maW|Mѯ4.X 8=HmeWM@d x]$z(y?VUۙ$l ?k+7znn.]h=N9jF∵ ߯@{#ҵS0Wn?LkúN 6)3^j5S)v5 MW 0o(8ɯ8hĺf*ur+?7/W;FYmstߝk+DW$LYB'_jɑ, nڽm x(cP0اFQ`O W/>"#Xֺ)%mTœ=~sO9J3] 7[\F)Pz^?χzu&DE !ծÑ1`PvGxe֐{Z|W%8|yhϹW@[I$nO)b@r)h(((((((&Sڌ-/hz\9 Ax+0Jv{L8$r @z>#){K7y>'\m< ?3]/K6˿>v + ]>-`*F0o̻n2f+;}z+ǽb1ESBq@{uUm2kV+xTCԟJMCQl亾c1?Jެ0+ŧߺ۶i_'n4mZڨHX~x)<=f//_S>nJmaG1DH? b:QECIN(Njm SA`QEQEQEfk:EIcBDU>>~Ͼ+=M\4o6INqXW|=J$ }LxFZu]BKKh%t~Aׇ7~MoQ= 9%OׄG/:Q=GE2MK WVaE0$({xn"h%GPTL,үKOI9dnQ~U\i.MK[<c{wE{7b8/!*Ւ\X>VW+|kkjߤrc?Cxú^kc-ϖR{v`cϧ` =1N'<,KFiL~8u|Xm6>e1G{]t]''l|L路c2ր:+?xvU ٮOMY^ZC@Uueܷ0;EE&POQh&;4Cwu ZN}"F| b:j p_4-noTĜ|aHt?ߞC'ZSԵ;I˨lz6 FOLcYT jΟ$XюYN~kEIx㤲f8_xž,;{8ʏk4OzjM.(vGG?PD:$h!@O߄s^*uy[Ҵ⶷H-HaR1 t-QL((((jm9ZQIJ)QEQEQE!I3@9b (*:}fqQF}}yW\[Cl_NZL}hZCX=^ψ+κl.c}~=? m8Sh9أl}; =6 A#xe?F~4QQ[Eu m,r*۔")QEQEQEQEQEQEQEQEQEQHI+&M}(d1rw,B߅o➡hv2ea/o<+Cj͗8oz?>hfٵ,W#b }4E @=<9H|ے02ߠPsފ(EPEPEPEPEP56@-(Z( ( ( ( ( ( (;c3I|3kԬGȿF˥yƹش%]'_&|#ҽCwAfBV:7_z_ZV:N~?`扺Ok~wR%Ol)~+ZU?rG2u6Vp֓jKDt@ױ/SMOCLMڛ@1 _?OT^!3WQ@/ ??|uM"E{-8t4F XoZ <;U 4@> Ն>ϣ9E[5$h4TQ(P=q4@@@@@@@Fifhfh'4Q@Zimage/jpegOBbplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_4http://www.theabi.org.uk/images/stories/Logo_ABI.jpg*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[U&c3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveZimage/jpeg_Sat, 29 Oct 2011 06:00:51 GMT_Wed, 19 Oct 2011 16:05:59 GMTU45254_"c34057-b0c6-4afa9040ae7c0"_timeout=15, max=100*+]^_NSMutableDictionary]_/\NSDictionary*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|&/58>GPRYalnxz|~#.9Yy!36LjN_4http://www.theabi.org.uk/images/stories/Logo_ABI.jpgmnopOPNG  IHDRf^'NPtEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp Tony Imossi Certificate of Full Membership 6jPLTE  $$$&&& )))"""!!!%%%풒---嘘333***###444+++ɭDDD(((666,,,վrrr'''fff{{{KKK[[[BBB000777555ުsss}}}ǡ222LLL///Ђّˍ>>>lll???JJJ888vvvIII@@@111̇kkkqqq===Ʋ<<{fZasu1ӁA=#~g.='>̚;t;c'N?Z<,|n:F  n|e>tԗ8qMs:79l E([گyp|߰7؋z ܪ+ u6~3rڦ c̈́Q Uк4''^ϻ?X{ڷ^_ϥ:2(Aܷ:ܜso٦xӍ6i罇m׋w\qgQy^ Q0B(eL; Y&7x/iJCp$0 aX& 1 A 3ƍ Զ,kA ƅ'hbZ;v?pKΏ\&7m{^Y{TF^2!0 w8 IpwW@Jmi"a<04%%42@QJ1׸ ^_EA8&47v2gb}:uĶ9nߍﭒjҚ?2{NOw*Nۺ7jUԶ[l7mm.n57ӐV^.->>'Ѝ|C{E7tk8 a @%z9(`+l:V ݗg*Qƒ}SN[T2tdç 3ՄD7St5罛_kypw9Ż4Z3aRڳpj0_VJAqI S?qw myaCi}gS,?6d-\G"ް?_ǵ.rlX Pr]mWn<9fp87hA涺ֻ1 H~z'?milt S7d7KmϰJB0 w kRo1r1lPκ$&h([Z.y[*>֐!.#vXw12AN(~=!'pWH.LR6xi!uѷ7IXq,sԛwPp4^W(G?`aW..tsgP<Z]o=>q8qQwٓ#EC[xo(0pF x X.'t/cva{Xq`޵<룮QklǑ?(Cj-<q$NѮCtjP'׋IԮTNAX(7`.i `iHkk}T_:E[i bP6$o ;6ݶf'`#:ZG@ޭiExLs.XVV:6z2(Ȥ?iV{(cm0:'A ~P6\! <+,hq@KV*փ(FbWk$PQcƘ},v4z5^geʗۅCq׾i>$W"D]҅K#b%Qf.9_uͱ\˴veLѣ ]p.VtQ>d%j0  #8M_;2QW=W=F$w.dE D&TΠIu:N. pk/?hj~$ Şm5OzɳWV"tKXN߮.bH29Az̛b}'gi2{v@Fk8{AE8Pwvq: $qD| pa- 0/|EWos(NGEm`mCQx O4bc'02 +@<׎$.p)@H@pL?,L?))9s_jsӺ?oTiS"DeYL7B!2̳T0R|`Y)%*$\_G]kr8H^)2^3c~gczs6T"jLoH_VS@1 2R.V]㬚o;|`̷Xu$| x ֎`D9k7]t|*P 4*iGJRM-OplŅ  ߜQ-겴p&c(lp(94_!x'pFזoa=j6]~,6﹅a!=o740Y&Q/QK.\O%$zgm8 [a*fM+@.yA ]treQ&$h[s O8@ ,l9j:K=?s̒N"}%z#Q2 q=GCl0R&W /R(ӱ(4ɁB"W}V8V޽. L~B4>=8\t P&S Mb oM=(Jn^bbD{u*Ic|cl4kW 1Hc_(L+Ġt+ O>exi}$6l{wLb 3#kCjGTOA^AL2!!ɔ* ʔ*iPŢrobk9=+6,Đg-V_K@4 ()0K '>i F$oٚc@/G\eaV_sqPzШqCB0IReakS *s5}VGtW ҝ0N6"`|WsZU9ʒ>CL5QaQyd  zNn9sg5ǼQ:!+?I`OG+'G褌[O)c񞻖>dQb)1n+4lS^$1$9שP l2ʹ<~֛='~8&%#cr`$lU.4]RF\ia7}_E?|D=b/A0DL9)5ywugHqBBx)7Dr֞ J_MQ` İYv4ѣ2>W-E_fbL)"~5ev+qi'X]7f%-j5G}W.Q'zދ_(_,+~w0r^.=#=W8"jJ( a$OѴ6X>L}ɠRp>wяJxNv޷4]ˉ,Y_,2]kk6in֐Y` 6S2`lB Q8VYie$F`w#yZB-HXMnO$aztyor1 Udă"#ey%ʿc" <_\7q(Őtb6u /&p(57;^W|zeg&10MC Q)T=nF|E|>6$F-fWN#hN=| g?2("KV/wۗ: \D^֡eC q',K DwV}>9߯%lfoec?9c۔ۅp|`!npDe)\Gp-( EC|sUSWx&8TJjzZ!Q>U>ZE}z9qGFip I{5'rf.\;exIY 6eO46Giu҃k͜3IR|6q >\Q3it,lzn=ڵk7#8V*7!srԨ:_qE ۷z[HUu )*//It}Js1VtSzHΤzd?L'BlmOT$D2D?tlѢ7[yh"4H [|"rxqbB S*0َP~SkBh6ax?*ts'Ð89YZu{RKz\" ^qJKCۢ6@oWV riQJ_qIak>>Rݦ0k4QZz4L{*vno!H֢ϺP&-OjcGllwwh-9t* 1;/wCځb[,~7j6C&;>"ߵ_Y <Q\ ?[< UP;:@|p w/ѾZb0 \F8;HiGuG-m2k{n ^ kk ɳOH.o^T ڕ,JN¾,'ӝZXsuvOߋxׁWx1]k^psdhnj^&ᝅe^`'#+F/<>Vꞛt'`p~";&}UtO;ĻP;ܩ>j`费NIENDB`Yimage/pngO=bplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_1http://www.theabi.org.uk/images/stories/tisig.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[^-3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 06:00:51 GMT_Tue, 18 Oct 2011 16:29:20 GMTT6828_"c35347-1aac-4af9539b51800"_timeout=15, max=100*+]^_NSMutableDictionary]_/\NSDictionary*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|#,25;DMOV^ikuwy{} +5Uuz.1GjI_1http://www.theabi.org.uk/images/stories/tisig.pngrstuOPNG  IHDRnntEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp )PLTEpp(*&&JJ浵IIת33xxjjͺddWWڵzRS i WW뫪++ SS |::kjvw׊&&Qz%&頣33wwg2387 CC89''EDz{ˣ䇇ZYCB񰮜@A ]]w-. ``䛛ٝ'&֬y<<:9k,,̭ˌ   utë_78ıpѯaas 񍥦pp 񲲈 🞍TTHI` {]^om !00῿on??󐐗23䏎| ʐ׎ ȯON?@IDATxڴ \W(: HCA4PD3h'qlB@7Z [тWEMZ|J%RjZp[Bbwk} []yZyۮok}VZk!&x? s=c\ 1}r/] _VW5w.?YZF#Dȅ\ۍavA_naՅa27 ^/VpQS\Ʋ?cp\l\Tqn7,~j-.Fbز).waiyTZ0''sm| Oq wЋ{.Q^f|IײZTkpmA].# Ӹf`qfpyctI/1&H6I>6sɆ-dBnN%[W ^D" ڙcMHT?u;jwcF6Jh±F<}gӎ\PGD"c$ڻ8[޽}]Y Wޭ{gǎSׄ\ >⍄ж6.Rba8qPIl64rRC"∋:]~gk++i3喈gMhQ8.bcc۳x<`$Їf-^|.?þ?+v?t*J+;_%TO]h/H|"5&*i8 .Cw/df<RgӮVL:v(~BF#% Sk08C;w3{P84bigis:˝tt̨S) "TjX~N|o˱'ʡ(MLDG;*IV]\}u=[]U1v +P98T Rμ/fVr`87 i TM&ShE~>|JSQ6os3\KJƻE"_ H0Of51S¢0@p ڑБZpo2k+F#}n-.  =>a/‚ÃQ Uv<E}ʁtЕ:2w#CNa>푙:ŗF FQ@p4]Rܲx wnf#۽SVKUt{3Z?WG]e E 0# ΏK9PfN(w7)AP}^EPL}5~ngA96/A1BazY&p;ZpSw &px=cM~ 8X\.ik^\tEKc2w̏Jl_թ v8z xU7$:1^t!-aUBBf_q_>\L"wA8^+ǦvH$Xz?\7{(  „&/MѮ<)xL g~;7z0qU:3%k)y<M4v;ʀ/QFh1=҉Aa[nI$cqv©\%{?MYeIzE^U6yϔd2iBCZg xTa\'0<,O߆Sz1Ɉ%Y⃃3LF7%3$ C~8 WsFg?Bfű550A`z(;Mhm&:v^ݫŧh| eW)ݻ%""f?L03R?xy/Dzx,,0abpXX!98F: D@ N>ؗ.Bw7#rh|RCJ9sbhэy_I -cXƔ!xqk;{? TuD̬͂+˾<ONy&'#&l? wwa4ߜeZJWٹwǩSq+2A=@޵aY7ɺ@( ?jgIi\.`Cͻ?V|xxJ8ѓEvGtnyN}k@QTWN }oHB(]Wc4A 3p- WN\wfOM;rk7{CxPɵX$s']jkro @(:Ƴ-i{p`G5Kc2x>IFsqh qw+˘}ln99O. T8hz~:C$N"`9pyqkSJGoSg*<ţVv 5M",O\H{Blg) T ?fSRsVn'qR<RxGӎ͝;y*8fֺ6Z _.ӁM~XgYG/%ԁ>'_gX\cbc/4 PCكP A5)RgG/ĽX3= m,NF\Wg-2MD a vcك+[27;Ljy˧ j.>R:NG0ozp!Htx9#+bpiscY-hq8>-3:-# M^s8#8)-C8֫ǽ5ѣ'U.fE&Syzaveac~o~+ }pJ/w ))-D H{mxxK$jk̈ĉ>X)/Q i1[8Ygه[\V\W8rH855Z.|8fc6?4>CN,WBtZNٌF{6ץ;I{qP7p6o i¶Fu2l<ڕKR -޺`VI.;ap˯ :LܟZ2Y\i@8qjHfsӲzG ?znG 7oCi5`!%`' 9Ɗ Iߍ-d|)pB`Wh @Utu g8 955aRߋl6,o- X[ٲU`0)2;[-?G~BT3/(qs!m;mߕH.\ȋ߻dsqԂZ|ewZsq_|6FgL,|q3øRjEU9i^Q㘁; LAyb׵YMSFrzkvPgF)im%\2-o0* GcÅD‰=Z* -h(оtB]zwp8y2]) !xk aߝo5C.~$BOJɼVY}'y[mVVUn8;LnHkTZ&rNiNN>o,y rِqP +lXQK;\)&CJFKtP [.l(nj m1-DV`[FcF!G6 cgppK{8T8o7r(̃]$`o#TQ+/#01NV;L$YX_>փ!4@\4MQ*Xqrrr7{km]f]InAexEo.>.R`dq#\a&3ޡl93uqG|5[etpA_ijIENDB`Yimage/pngO?bplist00fgX$versionX$objectsY$archiverT$top"()012JKLMNOPQRSTUVWXYZ[\`aU$null  !R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1#$%&[NS.relativeWNS.base_4http://www.theabi.org.uk/images/stories/red-seal.png*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#A[3456@WNS.keysZNS.objects789:;<=>? ABCDEFGHIVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-LengthTEtagZKeep-Alive_Apache/2.2.16 (Debian)TnoneZKeep-AliveYimage/png_Sat, 29 Oct 2011 06:00:51 GMT_Wed, 19 Oct 2011 16:07:57 GMTT6032_"c34058-1790-4afa90b137140"_timeout=15, max=99*+]^_NSMutableDictionary]_/\NSDictionary*+bc_NSHTTPURLResponsede/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverhi_WebResourceResponse#-27X^y|&/58>GPRYalnxz|~#.8Xx}03IjK_4http://www.theabi.org.uk/images/stories/red-seal.pngwxyz{|}_WebResourceFrameName_WebResourceTextEncodingNameTwin2UUTF-8O$ ABI Certificate - The Association of British Investigators
| Print |
Logo ABI


Certificate of Member Accreditation



THE ASSOCIATION OF BRITISH INVESTIGATORS



This is to Certify that



Mike Lacorte -- F/1582

 

 

 


Is a Member of The Association of British Investigators and has satisfied the

following requirements


 

  • In depth vetting to include financial probity and annual criminality check


  • Is Data Protection Registered and Notified


  • Demonstrated during examination competence and knowledge of laws, procedures and rules which apply to "members field of operations"


  • Holds a current certificate of Professional Indemnity Insurance 


     

As a member of The Association, the above is required to adhere to the strict Code of Ethics and Professional Standards (see: www.theabi.org.uk/about-the-association/code-of-ethics); a breach of which can result in disciplinary action and possible expulsion.


 Valid to: 31st January 2012


To confirm the authenticity or currency of this certificate of membership, you are advised to contact the General Secretary on 01253 297 502 or email: info@theabi.org.ukThis e-mail address is being protected from spambots. You need JavaScript enabled to view it

tisig 
Tony Imossi
President, The Association of British Investigators

29 October 2011
red-seal

 

  

"The Association of British Investigators is sector exclusively accredited by The Drivers & Vehicle Licensing Agency, The Law Society of England & Wales and The Law Society of Scotland, each endorse The Association recognising the extent to which The Association has gone to protect members' clients including many law practitioners".

 

(A company limited by Guarantee) Registered in England no 998568

 


  Ytext/html_.http://www.theabi.org.uk/abi-certificate/print 1JSe{<<AAAddi]iiqLqevv:vC>G)2$1$x$//414{4??D)DuD~OOT#ToTxUFUPYYY[D[N___aUa_eff ffkDkkllq=qqrrw>ww{-{7oy!*#ox d7@I IM[MMhKhUlllgq +06T^~